VoiceGuide IVR Software Main Page
Jump to content

If I Have Two Objects In Script Designer And A Vbscrip In Each One, So

Recommended Posts

Dear Gentlemen,

 

We company's MOBLINK mobile solutions installed in Brazil, my name is

Clésio. Install the version 6.0.3386 Working Trial Version, but when we are

modeling our application, using the Script Designer, it does not run script

written by more than an object(module).

 

 

Example: If you write an object in script "Capture Entered Number" and

another script object in the "Run VB Script," he runs just one of them.

 

When this script runs...

 

"Capture Entered Number"

Const ForReading = 1

Const ForWriting = 2

Const ForAppending = 8

set fso = CreateObject("Scripting.FileSystemObject")

set tsFile = fso.OpenTextFile("c:\output1.txt", ForAppending, True)

tsFile.WriteLine "FILE LOGIN 1: $RV[PEDE LOGIN]"

tsFile.Close

set tsFile = Nothing

set fso = Nothing

 

 

This one does not run...

 

Const ForReading = 1

Const ForWriting = 2

Const ForAppending = 8

set fso = CreateObject("Scripting.FileSystemObject")

set tsFile = fso.OpenTextFile("c:\output2.txt", ForAppending, True)

tsFile.WriteLine "FILE LOGIN 2: $RV[PEDE LOGIN]"

tsFile.Close

set tsFile = Nothing

set fso = Nothing

 

Only a script runs at a time when we use two scripts at the same time, he always runs the first.

 

We'd like to know whether the registered version does not have this problem.

 

 

MOBLINK mobile solutions

 

Thank you.

Clésio de Miranda - Systems Analyst.

clesio@moblink.com.br

 

Share this post


Link to post

Could you please post a copy of VoiceGuide's Trace Logs which captures the problem, this will allow us to see what happened.

 

Enable logging by setting the log levels to 10 in VG.INI as per below:

[Log]

 

VoiceGuide=10

CallLoader=0

VoicemailManager=0

EmailSender=0

ktTel=0

ktTts=0

Then restart VG and make a test call which demonstrates the problem.

 

Trace files will be created in VG's \log\ subdirectory.

 

Please post the traces and the VoiceGuide script used.

 

When posting traces/scripts please .ZIP them up and post them as attachments.

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
×