marduk Beginner
Joined: 05 Feb 2006 Posts: 14
|
Posted: Sun Feb 05, 2006 5:38 pm
vbscript error |
I have the following script set to run from a trigger...
dim cc
dim ss
dim myVar
Set cc = CreateObject( "Zmud.Application")
Set ss = cc.CurrentSession
myVar = ss.GetVar("dude", "General")
myVar.Value = "1"
set myVar = Nothing
set ss = Nothing
set cc = Nothing
...and I get the following error...
Error executing:dim cc
dim ss
dim myVar
Set cc = CreateObject( "Zmud.Application")
Set ss = cc.CurrentSession
myVar = ss.GetVar("dude", "General")
myVar.Value = "1"
set myVar = Nothing
set ss = Nothing
set cc = Nothing
Object required: 'dude' (error 424) on line 9, column 1
... dude is a variable in the General class ...
Any suggestions would be greatly appreciated. |
|