VoiceGuide IVR Software Main Page
Jump to content

Script Question - Press Any Key

Recommended Posts

What is the right way to have a script allow press any key?

For example: on {19} goto [Play 2]

Should this allow pressing any number from 1-9 or just allow 1 or 9.

So if I want them to be able to press any number 0-9 or * or #, how do I do that?

Thanks!

Share this post


Link to post
What is the right way to have a script allow press any key? quote]

List all the paths that are valid. eg if all keypresses are valid the paths section would look like this:

 

on {1} goto [Play 2]

on {2} goto [Play 2]

on {3} goto [Play 2]

on {4} goto [Play 2]

on {5} goto [Play 2]

on {6} goto [Play 2]

on {7} goto [Play 2]

on {8} goto [Play 2]

on {9} goto [Play 2]

on {0} goto [Play 2]

on {*} goto [Play 2]

on {#} goto [Play 2]

 

 

A path "on {19} goto [Play 2]" can only be used in a Get Numbers module and be triggered if caller presses a "1" followed by a "9".

 

 

 

 

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×