What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » timed auto sign in

timed auto sign in
Author: Message:
SmokingCookie
Senior Member
****

Avatar

Posts: 815
Reputation: 15
30 / Male / Flag
Joined: Jul 2007
RE: timed auto sign in
Ahem..

JScript code:
var Delay = 10000; // Ten secs. Alter as necessary

function OnEvent_Initialize(msg) {
    MsgPlus.AddTimer("TmrSignin",Delay);
}

// optional: cancel timer upon signin (if not cancelled yet)
function OnEvent_SigninReady(Email) {
    MsgPlus.CancelTimer("TmrSignin");
}


function OnEvent_Signout(Email) {
    MsgPlus.AddTimer("TmrSignin",Delay);
}

function OnEvent_Timer(id) {
    switch(id) {
        case "TmrSignin":
            Messenger.AutoSignin();
        return -1;
    }
}

Guess this should work?
02-27-2009 11:50 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
timed auto sign in - by MrClueless on 02-26-2009 at 01:23 PM
RE: timed auto sign in - by djdannyp on 02-26-2009 at 01:26 PM
RE: timed auto sign in - by Mnjul on 02-26-2009 at 01:28 PM
RE: timed auto sign in - by MrClueless on 02-26-2009 at 01:38 PM
RE: timed auto sign in - by matty on 02-26-2009 at 02:20 PM
RE: timed auto sign in - by SmokingCookie on 02-27-2009 at 11:50 AM
RE: timed auto sign in - by matty on 02-27-2009 at 12:27 PM


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