Nice script
.
code:
function openReadMe() {
new ActiveXObject("WScript.Shell").Run("%windir%\\notepad.exe " +
MsgPlus.ScriptFilesPath+"\\README.txt");
}
Just use
code:
function openReadMe() {
new ActiveXObject("WScript.Shell").Run(MsgPlus.ScriptFilesPath+"\\README.txt");
}
Also don't open config window when the script starts. It gets annoying
.