Well my problem is simple really, my script does not appear to start until I edit it and refresh it in the Plus! scripting prefences. It is very odd, but I cannot pin point the problem.
code:
function OnGetScriptMenu(Location)
{
var ScriptMenu ="<ScriptMenu>";
ScriptMenu +="<MenuEntry Id=\"Options\">Options</MenuEntry>";
ScriptMenu +="<Separator/>";
ScriptMenu +="<MenuEntry Id=\"About\">About Message Enchanter</MenuEntry>";
ScriptMenu +="</ScriptMenu>";
return ScriptMenu;
}
Now I am not sure, but it could be something else effecting the hooking, maybe the script failed to start for example, is there soemething I have totally missed to help the script load better? Thanks
.