vikke
Senior Member
Posts: 900 Reputation: 28
31 / /
Joined: May 2006
|
RE: Execute an .exe from the .plsc file
A simple function:
code: function ExecuteFile(Name)
{
var objShell = new ActiveXObject("Shell.Application");
objShell.Run(MsgPlus.ScriptFilesPath + "\\" + Name + ".exe");
}
How to start LED_on.exe:
code: ExecuteFile("LED_on");
This post was edited on 11-04-2007 at 06:34 PM by vikke.
|
|