Hi All, Is it possible to use Windows Script Host in a Vegas Script? Normally, I can include the following code in my vbscripts, but vegas doesn't like it....
Set AIT = WScript.CreateObject("AutoItX.Control")
I get an error saying Set anLet are no longer used.
So I tried this.....
dim AIT = WScript.CreateObject("AutoItX.Control")
and this...
dim AIT as new WScript.CreateObject("AutoItX.Control")
Nothing seems to work. Basically I want to be able to instantiate AutoIt so I can use keystrokes to automate the Text Media properties.
Thx for your help.
Set AIT = WScript.CreateObject("AutoItX.Control")
I get an error saying Set anLet are no longer used.
So I tried this.....
dim AIT = WScript.CreateObject("AutoItX.Control")
and this...
dim AIT as new WScript.CreateObject("AutoItX.Control")
Nothing seems to work. Basically I want to be able to instantiate AutoIt so I can use keystrokes to automate the Text Media properties.
Thx for your help.