search for: pressed

Displaying 20 results from an estimated 8128 matches for "pressed".

2003 Jul 24
4
the 'pound' and '#' are the same?
Hi, I am translating the voice files of voicemail now. I don't know if the POUND and # are the same key in the telephone's keypad. If they are same, how could we understand the following message: %vm-msginstruct.gsm%To hear the next message press 6, to repeat this message press 5, to hear the previous message press 4, to delete or undelete this message press seven, to quite voicemail
2003 Dec 20
3
ivr key press?
I'm testing an ivr implementation (first time) using: exten => 620,1,Wait,1 exten => 620,2,Answer exten => 620,3,DigitTimeout,5 exten => 620,4,ResponseTimeout,10 exten => 620,5,Background(npi-greeting) ; "Thanks for calling press 1 for" exten => 1,1,Goto(npi-directory,s,1) For initial testing, I've arbitrarily mapped this onto ext 620 (will change that later
2010 May 10
1
Using Asterisk? Get on the press list!
I'll post my semi-annual request for press contacts. If you have an Asterisk installation that matches one or more of these adjectives: - enterprise-oriented - government-oriented - education-oriented - unique - clever - large - complex ...we would be interested in having you talk with the press! We at Digium keep a list of people who wouldn't mind talking to the
2016 Apr 10
0
R.squared in summary.lm with weights
> On Apr 10, 2016, at 9:38 AM, David Winsemius <dwinsemius at comcast.net> wrote: > >> >> On Apr 10, 2016, at 3:11 AM, Murray Efford <murray.efford at otago.ac.nz> wrote: >> >> Martin - >> Thanks, but although hatvalues() is useful for calculating PRESS, I can't find anything directly relevant to my question in the influence help pages. After
2016 Apr 10
2
R.squared in summary.lm with weights
> On Apr 10, 2016, at 3:11 AM, Murray Efford <murray.efford at otago.ac.nz> wrote: > > Martin - > Thanks, but although hatvalues() is useful for calculating PRESS, I can't find anything directly relevant to my question in the influence help pages. After some burrowing in the literature I'm doubting there is an answer out there (PRESS R^2 is always presented in a fairly
2006 Dec 07
1
Standardized IVR UI Pattern (was: Re: Is there any Asterisk controllable thermostat?)
...UI would work, without waiting to learn, or mistake it. If the server played a few touchtones, like "4-5-7" (keypad "IKR") while saying "IKR", smart automated clients could detect the system and use it. To complete the interactivity protocol, every spoken digit to be pressed in the numbered menus would also play the digits' DTMF. And the intro to the scope to which a client DTMF navigated would play the last digits that navigated there from the previous scope while saying the name of the new scope. This is the system that I used to use when I built dedicated IVR...
2009 Jun 21
2
Help on qpcR package
I am using R on a Windows XP professional platform. The following code is part of a bigger one CODE press=function(y,x){ library(qpcR) models.press=numeric(0) cat("\n") dep=y print(dep) indep=log(x) print(indep) yfit=dep-PRESS(lm(dep~indep))[[2]] cat("\n yfit\n") print(yfit) yfit.orig=yfit presid=y-yfit.orig press=sum(presid^2)
2004 Dec 10
8
Voice Prompt Info
I am trying to put together a list of 'departments' to request as voice prompts. I have the biggies (sales, accounting, shipping, etc...) but I want to make sure I do not miss any. If anyone anyone has some suggestions (Ha... that is like going to an NRA meeting ans asking if anybody has a gun :-) ) please forward them to me (and / or post here although, with the volume of this
2004 Aug 27
4
Queue Announcement not until after # accept call pressed
...=> s,2,background(custom/100) ; Sales exten => 1,1,ringing(2) exten => 1,2,playback(custom/101) exten => 1,3,queue(sales) [queue.conf] [default] ; ; Default settings for queues (currently unused) ; [sales] music = default announce = sales_queue ; This not played until after # pressed .. How can i get announce to play as soon as call answered? announce-frequency = 20 strategy = roundrobin timeout = 15 retry = 5 maxlen = 0 member => Agent/7001 member => Agent/7005
2009 Mar 30
3
[PATCH 0/3] v2: mbr: Ctrl-key press forces load from first hard disk
Version 2 of these patches includes optimisations suggested by H Peter Alvin to save bytes: * Use memory-mapped I/O register to read keyboard shift flags * Don't reload DX from memory; move immediate byte to register Tested using mbr.bin. TJ (3): mbr: Ctrl-key press forces load from first hard disk gptmbr: Ctrl-key press forces load from first hard disk isohdpfx: Ctrl-key press
2007 Dec 22
1
Sounds transscript / speech synthesis
Hi, in the earlier version there was a sounds.txt with the transcript of the soundfiles. Does this still exist somewhere? Is there a plan to make speech synthesis available the same way as soundfiles, ie. instead of playing language/soundfile.wav, send the text to the speechengine and play the output...? Jay... -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Aug 14
2
detecting a key press
Hi Folks, I'm relatively new to r. I'd like to have a user respond by pressing a 1 or a 2 and determining their choice and the time of response. Previous postings have indicated that keyboard responses can be processed using scan and readline but both seem to wait for the user to also press return. Is there a way to detect the initial key press without requiring them to hit return?
2007 Mar 16
2
Discriminating between experiments with xyplot (lattice)
Hi, suppose I have data from 3 experiments which show conversion as a function of time for different boundary conditions, e.g. pressure, temperature. I want to plot all experiments as conversion over time grouped according to the temperature. However, since I have more than one experiment performed at the same temperature (but different pressures) I end up figuring out which curve belongs
2006 Oct 10
10
Voicemail Press '0'
Crikey. I can't get this to work! Allegedly, you can press 0 while in the voicemail greeting and be dropped to the 'o' extension. For some reason, I can't get it to work. The 'docs' aren't clear about what context the o extension should be in. The voip wiki says "the context for the voicemail box that we're looking for in the dialplan for the jump to the
2007 Jun 21
3
identifying what a user pressed to reach my phone
I am a new trixbox user. One of the things I'd like to get working is being able to tell if a user is calling me by directly dialing my extension, or if they pressed 1 for sales. When they press 1, it rings a group of phones, and the call is almost always for someone else. So I'm always looking at my phone when it rings, trying to recognize the incoming number and decide if I should answer it. My idea was to setup line 2 on the phones as another exten...
2003 Oct 21
4
interactive prompts
Am using R on a Linux box and am currently writing an interactive R script. 1. How do I ask a user to press any key to continue ? I used a system call to read but this only works if the Enter key is pressed: print("Press any key to continue") system("read") 2. How do I get a string input from the user? Would like to see an R function, say askget(): delay = askget("Enter delay in seconds") system(paste( "sleep ", delay)) TIA, Ernie Adorio Math Depar...
2005 Oct 14
2
"Please Press Any Key to Accept a Call"
...d hears a voice "Please press any key to accept a call for extension 100." * Joe presses 1 and says "Hello this is Joe". Alternately, in the penultimate step * Cell voice mail picks up. * Voice says "Please press any key to accept a call for extension 100". No keys pressed since it's a voice mail * Call is routed to Asterisk voicemail. It seems straight forward to try multiple locations, but I'm not seeing how to only patch the call through if the user responds with a key press. Thanks, WILL -------------- next part -------------- An HTML attachment was scr...
2003 Apr 09
7
Caller press "0" in Voicemail
I would like to add the ability for our users to be able to press "0" whenever reaching someone's voicemail box to re-reroute them to the auto-attendant. Here's a sample extensions.conf: [incoming] include => ciscophones exten => s,1,Wait,1 exten => s,2,Answer exten => s,3,DigitTimeout,5 exten => s,4,ResponseTimeout,15 exten => s,5,BackGround(auto-greeting)
2005 Jan 17
3
callers who don't press any keys
I've noticed that some callers listen to our main menu and don't press any keys. I have it set up to restart the menu a few times and eventually hang up. I'm wondering if these are wrong numbers (in that case, why don't they hang up) or they really want to speak to someone here but don't understand the menu (what's so hard about "for the operator, press
2009 Dec 09
4
Need help/suggestions for DialPlan
...pport - Press 3 for customer service - Press 8 for a 'Dial by Name' list or enter the extension number at anytime to directly dial that extension. I am setting up extensions to be 3 digits long, all starting with 6 (ie. 601, 602, 603, etc.) My current setup requires a single digit to be pressed before going to that context in the Dialplan. Its all working fine with the exception of direct employee extension dialing. What I have done is to create a context for '6'. In other words, I wait for a single keypress at the main menu and if I get a 6, I then transfer to get the next...