jasonbernett Report post Posted 12/23/2008 06:35 PM Is it possible to have a 0 to 10 scale entry and make the # repeat the question? I have a request to make an IVR script repeat the current question whenever the person hits #. However the problem I have is with a 0 to 10 scale, I need to make the # repeat the question. Is this possible in a get number? Share this post Link to post
SupportTeam Report post Posted 12/23/2008 08:19 PM Can you make scale from 0 to 9 ? Then caller would just press one digit and you can move onto next module immediately, with caller needing to press # after each number. You would then use a Play module, not a Get Numbers module. You can make a "Fail" path from the Get Number module loop back to itself. The fail path will be taken if just # is pressed. Share this post Link to post
jasonbernett Report post Posted 12/23/2008 08:59 PM They really really want the scale to be 0 to 10. Will the RV in the getnumber have the # in it? Share this post Link to post
SupportTeam Report post Posted 12/24/2008 12:36 AM They really really want the scale to be 0 to 10. OK, well you will need to use a Get Numbers module then with the caller pressing # after entering number (or waiting 5 seconds after last digit was pressed). Will the RV in the getnumber have the # in it? No. Share this post Link to post
jasonbernett Report post Posted 01/09/2009 06:10 PM Can the vg.ini or something be changed so the caller would not have to wait 5 seconds when not pressing "#" on getnumber? Share this post Link to post
SupportTeam Report post Posted 01/09/2009 08:14 PM It's better to have a scale which uses single digits, ie, a scale of 1-9 or 0-9. In a Get Numbers module you can specify paths like the below and these will be taken immediately when the particular key is pressed: on {2} goto [some next module] on {3} goto [some next module] on {4} goto [some next module] on {5} goto [some next module] on {6} goto [some next module] on {7} goto [some next module] on {8} goto [some next module] on {9} goto [some next module] Note that is using scale 1-10 pressing a "1" can mean a 1 or a start of a 10, so the system needs to wait to see which one of the two the caller is trying to enter. So you will have different system behavior when caller presses "1" then when caller presses "2" - which is sometimes confusing for caller - that is why scale of 1-9 is better. Share this post Link to post
jasonbernett Report post Posted 01/09/2009 10:52 PM Thanks. That is how I already have it set-up. So getting back to the question, can you change the 5 second delay when just a 1 is entered? Share this post Link to post
SupportTeam Report post Posted 01/09/2009 11:54 PM You can use a Timeout path or change the global timeout setting in VG.INI From http://www.voiceguide.com/vghelp/source/ht...odgetnumber.htm : Timeout Paths The timeout between key presses is set by default to 6 seconds. Default timeout values used by this module can be changed in VG.INI file - in the [moduleGetNbrs] section. If a ‘Timeout’ path is specified then that path overrides the default inter-digit key press timeout, and that path will be taken whenever a timeout occurs awaiting a key press. Share this post Link to post
jasonbernett Report post Posted 01/21/2009 07:52 PM Timeout_1stDigit=6 Timeout_Interdigit=6 Timeout_Confirm=6 Which one does what? Share this post Link to post