Dr Nick
Junior Member
Firefox > IE
Posts: 59 Reputation: 1
31 / /
Joined: Dec 2008
|
O.P. RE: Error: unknown (code: -2147418113)
Made a few changes to the script - it wasn't working properly, so i fixed it
javascript code: var originalPSM='';
var originalPSM1='';
var idleSeconds=0;
var isIdle=0;
var isBusy=0;
var PSMnumber=0;
var PSM1number=0;
var PSMtype=1;
var seconds=3;
var allowed=1;
var aPSMArray = new Array();
aPSMArray[1]='Tower: "Please report height and position?" - Pilot: "I\'m 5 foot 10 and sitting up front!';
aPSMArray[2]='The owner of a \'91 Toyota Camry!';
aPSMArray[3]='He who dies with the most toys wins!!!';
aPSMArray[4]='You\'d Better Run, Egg!!!';
aPSMArray[5]='<?php while(!success) { $try++; } ?>';
aPSMArray[6]='There are 10 kinds of ppl in this world! One kind know binary, and the other doesn\'t';
aPSMArray[7]='There is no "I" in team, but there is an "m" and an "e"!';
aPSMArray[8]='Extension Maths is just like doing normal Maths..... TO THE EXTREME!!!';
aPSMArray[9]='Never play leapfrog with a unicorn ;)';
aPSMArray[10]='One day Wally should wear something different and really screw everyone up';
aPSMArray[11]='Parental Controls: Settings used to controls ones parents activity on ones computer.';
aPSMArray[12]='Part of being sane, is being a little bit crazy.';
aPSMArray[13]='I have noticed that the people who are late are often so much jollier than the people who have to wait for them.';
aPSMArray[14]='I believe whatever doesn\'t kill you simply makes you... stranger...';
aPSMArray[15]='You haven\'t seen a tree until you\'ve seen its shadow from the sky';
aPSMArray[16]='There are only two ways to live your life. One is as though nothing is a miracle. The other is as if everything is.';
aPSMArray[17]='Growing old is mandatory, growing up is optional';
var bPSMArray = new Array();
bPSMArray[1]='Nick Has 18% Of His (au) License';
bPSMArray[2]='Nick Has 31.5% Of His (ap) License';
function OnEvent_Initialize(MessengerStart) {
if (Messenger.MyStatus < STATUS_INVISIBLE) return false;
MsgPlus.DisplayToast("Nick,","You're so awesome!");
idleSeconds = 0;
isIdle = false;
isBusy = false;
MsgPlus.AddTimer('rotate', seconds * 1000);
}
function OnEvent_SigninReady( sEmail ) { OnEvent_Initialize(); }
function updateMessage() {
if(allowed==1) {
if(PSMtype==1) {
if (PSMnumber < 17) {
originalPSM = aPSMArray[++PSMnumber];
if(PSMnumber==17) {
PSMnumber=0;
}
}
PSMtype=2;
} else {
if (PSM1number < 2) {
originalPSM = bPSMArray[++PSM1number];
if(PSM1number==2) {
PSM1number=0;
}
}
PSMtype=1;
}
Messenger.MyPersonalMessage = originalPSM;
}
}
function OnEvent_MyStatusChange(NewStatus) {
if(allowed==1) {
if( NewStatus == 7 || NewStatus == 6 ) {
Messenger.MyPersonalMessage = "Text/ ring me and I'll be back ASAP! 0hrs:0mins:0secs";
MsgPlus.AddTimer( "incIdle", 1000 );
MsgPlus.AddTimer( "updateDisplay", 6000 );
isIdle = true;
isBusy = false;
MsgPlus.DisplayToast("Status Checker","Idle/Away State Activated");
} else if(NewStatus == 4) {
Messenger.MyPersonalMessage = "Text me! I'm in a full screen app and msngr alerts are off! :)";
isBusy = true;
isIdle = false;
idleSeconds = 0;
MsgPlus.DisplayToast("Status Checker","Busy State Activated");
} else {
isIdle = false;
isBusy = false;
idleSeconds = 0;
updateMessage();
MsgPlus.DisplayToast("Status Checker","Normal State Activated");
MsgPlus.AddTimer('rotate', seconds * 1000);
}
}
}
function OnEvent_Timer(sTimerId) {
if( isIdle == false && isBusy == false) {
updateMessage();
MsgPlus.AddTimer('rotate', seconds * 1000);
return 0;
} else if( sTimerId == "incIdle" ) {
if(isIdle==true) {
idleSeconds ++;
MsgPlus.AddTimer( "incIdle", 1000 );
}
}
else if( sTimerId == "updateDisplay" ) {
if(isIdle==true) {
var cIdleSeconds = idleSeconds;
var idleHours = 0;
var idleMinutes = 0;
while( cIdleSeconds > 59 ) {
cIdleSeconds -= 60;
idleMinutes ++;
}
while( idleMinutes > 59 ) {
idleMinutes -= 60;
idleHours ++;
}
Messenger.MyPersonalMessage = "Text/ ring me and I'll be back ASAP! "+idleHours+"hrs:"+idleMinutes+"mins:"+cIdleSeconds+"secs";
MsgPlus.AddTimer( "updateDisplay", 6000 );
}
}
}
function OnGetScriptCommands(){
var oCommand = new Commands();
with (oCommand) {
AddCommand('pmrotate', 'Rotate your Personal Message');
AddCommand('pmtoggle', (allowed === 1 ? 'Disable' : 'Enable')+' Automatic PM Changes'); }
return oCommand.ExportCommands();
}
function OnEvent_ChatWndSendMessage(oChatWnd, sMessage) {
if (/^\/([^\s\/]+)\s*([\s\S]*)$/.exec(sMessage) !== null) {
var _command = RegExp.$1.toLowerCase();
var _param = RegExp.$2;
switch (_command) {
case 'pmrotate':
if ( _param !== '' ) {
seconds = _param;
} else {
updateMessage();
}
return '';
break;
case 'pmtoggle':
if(allowed==1) {
allowed=0;
MsgPlus.DisplayToast("Status Checker","Disabled");
} else if(allowed==0) {
allowed=1;
MsgPlus.DisplayToast("Status Checker","Enabled");
}
return '';
break;
}
}
}
function OnGetScriptMenu(nLocation) {
var oMenu = new ScriptMenu();
with (oMenu) {
AddItem('/pmtoggle', (allowed === 1 ? 'Disable' : 'Enable') );
AddItem('/pmrotate', 'Rotate PM');
}
return oMenu.ExportMenu();
}
function OnEvent_MenuClicked(sMenuId, nLocation, oChatWnd) { OnEvent_ChatWndSendMessage(0, sMenuId); }
This post was edited on 05-01-2009 at 07:09 AM by Dr Nick.
<?
while(!success) { $try++; }
?>
-----------------
Windows 7 Ultimate (6.1.7000)
Windows Live Messenger 14.0.0206
Messenger Plus! Live 4.81.0.358
|
|