VoiceGuide IVR Software Main Page
Jump to content

Load Module In Vbs

Recommended Posts

How do I go to a menu option from a VB Script module?

 

What I am trying to do is add a # onto the end of an input to go down a particular path.

 

Currently I have a menu selection using a Get Numbers. If you press 1 it goes down 1 path, 2 goes down another path. This is fine except if you press 1# or 2# it fails and replays menu selection WAV.

 

What I want is a way to either ignore # for that selection or failing that, have it always go to a VB Script module and in that check the $RV[] of the previous menu input (eg. 1# or 2#). Then go down a different path for each.

 

Hope you can help. Ideally ignoring the # would be easiest.

 

Simon

Share this post


Link to post
Currently I have a menu selection using a Get Numbers. If you press 1 it goes down 1 path, 2 goes down another path. This is fine except if you press 1# or 2# it fails and replays menu selection WAV.

If you have a "1" path defined then that path will be taken as soon as the 1 is pressed. The "#" would then be received by the following module.

 

If you still have problems then please post the script which you are using, and a trace capturing the call.

 

What I want is a way to either ignore # for that selection

Is the next module a Get Numbers module as well? You have to make sure the next module ignores the "#".

 

Ideally ignoring the # would be easiest.

A Get Numbers module uses # to indicate end of number being entered.

 

If you just require to get a single digit then using a Play module may be more appropriate.

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
×