VoiceGuide IVR Software Main Page
Jump to content

Graphical Output To Caller

Recommended Posts

Is it possible that a vbScript can display the prompts to the user on their pc screen as well as through audio files?

Share this post


Link to post

Yes. Plz see VBScript's MsgBox function. This will display a dialog box on the computer on which the VBScript is ran.

 

To send a message to another computer use WshShell.Run method to issue command:

 

net send [computername] [message text]

 

To determine to which computer to send the message to you will need to determine who is calling first - if Caller ID is not supplied then you will first need caller to enter an ID number first - then you will be able to determine which computer to send the message to...

 

Plz see VBScript docs for more info.

 

Another info page on MsgBox function is here:

http://www.netzone.ch/caspdoc/html/vbscrip...ox_function.htm

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
×