Guest u4910 Report post Posted 12/23/2008 02:55 PM 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
SupportTeam Report post Posted 12/23/2008 08:13 PM 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