hi guys! I need some help with this code!
code:
...
var shell = new ActiveXObject("WScript.shell");
shell.run("C:\\Program Files\\Messenger Plus! Live\\Scripts\\ScriptFolder\\MSN.exe");
...
that path works only in Windows 7 32 bit... so I tried...
code:
...
var shell = new ActiveXObject("WScript.shell");
var MSNexe = MsgPlus.ScriptFilesPath + "\\MSN.exe"
shell.run(MSNexe);
...
but it doesn't works! why??