[Asterisk-Users] Wait(n) -v- Background(silence/n) ?

2005-01-17 Thread Howard Lowndes
Will Wait(n) still listen for DTMF input from the caller after there has been a Background(some-message) prompt, or do I need to use Background(silence/n) to still listen for DTMF? -- Howard. LANNet Computing Associates; Your Linux people http://www.lannetlinux.com

Re: [Asterisk-Users] Wait(n) -v- Background(silence/n) ?

2005-01-17 Thread Sergey Kuznetsov
In my AGI script I made the next trick: $digit = $AGI-get_data(vm-enter-num-to-call-then-pound, 15000, 1); while ( $digit eq 0 or $digit ) { $phoneNum .= $digit; $digit = $AGI-get_data(empty, 7000, 1); } where file empty.gsm have 0 byte length. It works like a charm for

Re: [Asterisk-Users] Wait(n) -v- Background(silence/n) ?

2005-01-17 Thread Trevor Peirce
Howard Lowndes wrote: Will Wait(n) still listen for DTMF input from the caller after there has been a Background(some-message) prompt, or do I need to use Background(silence/n) to still listen for DTMF? WaitExten(n) will ___ Asterisk-Users mailing

Re: [Asterisk-Users] Wait(n) -v- Background(silence/n) ?

2005-01-17 Thread Eric Wieling
Howard Lowndes wrote: Will Wait(n) still listen for DTMF input from the caller after there has been a Background(some-message) prompt, or do I need to use Background(silence/n) to still listen for DTMF? The WaitExten and Read applications won't work for you?

Re: [Asterisk-Users] Wait(n) -v- Background(silence/n) ?

2005-01-17 Thread Howard Lowndes
On Tue, 2005-01-18 at 13:18, Eric Wieling wrote: Howard Lowndes wrote: Will Wait(n) still listen for DTMF input from the caller after there has been a Background(some-message) prompt, or do I need to use Background(silence/n) to still listen for DTMF? The WaitExten and Read

Re: [Asterisk-Users] Wait(n) -v- Background(silence/n) ?

2005-01-17 Thread Steven Critchfield
On Tue, 2005-01-18 at 10:44 +1100, Howard Lowndes wrote: Will Wait(n) still listen for DTMF input from the caller after there has been a Background(some-message) prompt, or do I need to use Background(silence/n) to still listen for DTMF? You don't need anything but a proper gap. You need to