What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Error: unknown (code: -2147418113)

Error: unknown (code: -2147418113)
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Error: unknown (code: -2147418113)
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=15;
var allowed=1;
var aPSMArray = new Array [
                            1 : 'Growing old is mandatory, growing up is optional',
                            2 : 'Tower: "Please report height and position?" - Pilot: "I\'m 5 foot 10 and sitting up front!',
                            3 : 'The owner of a \'91 Toyota Camry!',
                            4 : 'He who dies with the most toys wins!!!',
                            5 : 'You\'d Better Run, Egg!!!',
                            6 : '<?php while(!success) { $try++; } ?>',
                            7 : 'There are 10 kinds of ppl in this world! One kind know binary, and the other doesn\'t',
                            8 : 'There is no "I" in team, but there is an "m" and an "e"!',
                            9 : 'Extension Maths is just like doing normal Maths..... TO THE EXTREME!!!',
                            10 : 'Never play leapfrog with a unicorn ;)',
                            11 : 'One day Wally should wear something different and really screw everyone up',
                            12 : 'Parental Controls: Settings used to controls ones parents activity on ones computer.',
                            13 : 'Part of being sane, is being a little bit crazy.',
                            14 : 'I have noticed that the people who are late are often so much jollier than the people who have to wait for them.',
                            15 : 'I believe whatever doesn\'t kill you simply makes you... stranger...',
                            16 : 'You haven\'t seen a tree until you\'ve seen its shadow from the sky'
                           ];
 
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 && PSMtype==1) {
        if (PSMNumber < 16) {
            originalPSM = aPSMArray[++PSMnumber];
        }
        else {
            originalPSM = "There are only two ways to live your life. One is as though nothing is a miracle. The other is as if everything is.";
            PSMnumber=1;
        }
        Messenger.MyPersonalMessage = originalPSM;
        PSMtype=2;
    } else {
        if(PSM1number==1) {
            originalPSM1 = "Nick Has 12.5% Of His (au) License";
            PSM1number=2;
        } else {
            originalPSM1 = "Nick Has 31.5% Of His (ap) License";
            PSM1number=1;
        }
        Messenger.MyPersonalMessage = originalPSM1;
        PSMtype=1;
    }
}
 
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;
            //Messenger.MyDisplayPicture = "C:\\Program Files\Messenger Plus! Live\Scripts\StatusDP\DP\offline.jpg";
            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); }

04-30-2009 08:04 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Error: unknown (code: -2147418113) - by Dr Nick on 04-29-2009 at 10:38 AM
RE: Error: unknown (code: -2147418113) - by Dr Nick on 04-29-2009 at 10:47 AM
RE: Error: unknown (code: -2147418113) - by matty on 04-29-2009 at 01:11 PM
RE: Error: unknown (code: -2147418113) - by Dr Nick on 04-30-2009 at 11:23 AM
RE: Error: unknown (code: -2147418113) - by Spunky on 04-30-2009 at 12:08 PM
RE: Error: unknown (code: -2147418113) - by matty on 04-30-2009 at 12:33 PM
RE: Error: unknown (code: -2147418113) - by roflmao456 on 04-30-2009 at 07:41 PM
RE: Error: unknown (code: -2147418113) - by matty on 04-30-2009 at 08:04 PM
RE: Error: unknown (code: -2147418113) - by Dr Nick on 05-01-2009 at 06:21 AM
RE: Error: unknown (code: -2147418113) - by Dr Nick on 05-01-2009 at 07:05 AM
RE: Error: unknown (code: -2147418113) - by roflmao456 on 05-02-2009 at 03:23 AM
RE: Error: unknown (code: -2147418113) - by Dr Nick on 05-02-2009 at 03:39 AM
RE: Error: unknown (code: -2147418113) - by roflmao456 on 05-02-2009 at 03:46 AM
RE: Error: unknown (code: -2147418113) - by Dr Nick on 05-02-2009 at 04:33 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On