quote:
Originally posted by pollolibredegrasa
In addition to the above, check the registry at HKEY_CURRENT_USER\Software\Patchou\Messenger Plus! Live\GlobalSettings\Scripts\<scriptname>
as there may be one or two settings left over after removing the script. Try removing these (if any) and reinstall the script.
If that still doesn't work, look at the script debugger to see if there are errors that are stopping it from starting properly.
These are the errors I get from the debug:
Script is starting
Script is now loaded and ready
Function called: OnEvent_Initialize
Function called: OnEvent_ContactListWndCreated
Function called: OnGetScriptMenu
Error: 'sEmails' is null or not an object (code: -2146823281)
File: _MenuFunctions.js. Line: 11.
Function OnGetScriptMenu returned an error. Code: -2147352567
Function called: OnEvent_Uninitialize
Script has been stopped
Script is starting
Script is now loaded and ready
Function called: OnEvent_Initialize
Error: unknown (code: -2147319779)
File: _RegObject.js. Line: 26.
Error: unknown (code: -2147319779)
File: _RegObject.js. Line: 26.
Error: unknown (code: -2147319779)
File: _RegObject.js. Line: 26.
Function OnEvent_Initialize returned an error. Code: -2147352567
Function called: OnGetScriptMenu
Error: 'sEmails' is null or not an object (code: -2146823281)
File: _MenuFunctions.js. Line: 11.
Function OnGetScriptMenu returned an error. Code: -2147352567
Function called: OnGetScriptMenu
Error: 'sEmails' is null or not an object (code: -2146823281)
File: _MenuFunctions.js. Line: 11.
Function OnGetScriptMenu returned an error. Code: -2147352567
Function called: OnGetScriptMenu
Error: 'sEmails' is null or not an object (code: -2146823281)
File: _MenuFunctions.js. Line: 11.
Function OnGetScriptMenu returned an error. Code: -2147352567
Function called: OnGetScriptMenu
Error: 'sEmails' is null or not an object (code: -2146823281)
File: _MenuFunctions.js. Line: 11.
Function OnGetScriptMenu returned an error. Code: -2147352567
Found the nasty bugger!
In script file:
_MenuFunctions.js
Line: 6
if(sEmails != false)
Should be:
if(sEmails != null)
I remember fixing this bug the first time i used this script, but damn that was ages ago!