quote:
Originally posted by SmokingCookie
About the scripts' folder: I use this method:
JScript code:
function GetScriptFolder() {
var fso = new ActiveXObject("Scripting.FileSystemObject");
var ret = fso.GetFolder(MsgPlus.ScriptFilesPath + "\\..").Path;
fso = null; // Clean up
return ret;
}
Works for me..
Or you could do it the proper way...