VoiceGuide IVR Software Main Page
Jump to content

Vbscript Runtime Error Class Doesnt Support Automation/invalid Proced

Recommended Posts

 

 

Hello Support team,

 

My engine is version 7

so I am following version 7 dialer_outdialerqueadd protocol

 

when i tried to do this

 

set vg = CreateObject("vgServices.CommandLink")

vg.Dialer_OutDialQueAdd "0768197898", "", "2009-03-04 4:45:00 PM", "9:00 AM", "5:00 PM", "", "", "Campaign a1", 1, "C:\temp\soundfiles\am.wav", "", "C:\project\sysgen\Faxsubject1.pdf","", "", "", 90, 2, 30, "", ""

 

adding the pdf a new column an error

 

"Class doesnt support automation : vg.Dialer_OutDialQUeAdd .."

 

but when I take out the pdf entry.. as in

 

set vg = CreateObject("vgServices.CommandLink")

vg.Dialer_OutDialQueAdd "0768197898", "", "2009-03-04 4:45:00 PM", "9:00 AM", "5:00 PM", "", "", "Campaign a1", 1, "C:\temp\soundfiles\am.wav", "", "", "", "", 90, 2, 30, "", ""

 

"it says Invalid procedure call or parameter : vg_Dialer_OutDialQueAdd.."

 

Ive gone back and forth with the parameters and all, its the same thing as posted in the Online Documentation

 

what am i missing? also if there was an invalid class error when i added pdf into the parameters, how can i add it into the parameters?

 

ANy response woul be greatly appreciated.

 

Thanks a lot!!!

 

 

 

 

 

 

Share this post


Link to post

Try this:

 

vg.Dialer_OutDialQueAdd "0768197898", "", "2009-03-04 4:45:00 PM", "1:00 AM", "11:00 PM", "", "", "Campaign a1", 1, "C:\temp\soundfiles\am.wav", "", "C:\project\sysgen\Faxsubject1.pdf", "", "", 90, 2, 30, "", "", ""

 

Looks like the example in Help file has a problem with it. We'll fix up the example in the next version update.

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
×