What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Auto Login to WLM when connection fails

Auto Login to WLM when connection fails
Author: Message:
ArkaneArkade
Full Member
***

Avatar
The One and Only

Posts: 193
Reputation: 5
38 / Male / Flag
Joined: Mar 2007
RE: Auto Login to WLM when connection fails
Heres a basic one, some of the guys might be able to give you a better script though.

code:
function OnEvent_Signout(email) {
    Debug.Trace(email);   
    if (email == "my@email.address") {
        MsgPlus.AddTimer("SignIn",10000);
    }
}

function OnEvent_Timer(TimerId) {
    if (TimerId == "SignIn")
    {
        Messenger.AutoSignin();
        MsgPlus.AddTimer("SignIn",10000);
    }
}

function OnEvent_Signin(email) {
    MsgPlus.CancelTimer("SignIn");
}
to use it you'll need to edit the email address and have your account set to sign in automatically.  I made this for when my wireless drops because msn trys when the network is connected to, but thats before the net is connected.

Why don't you want to use 8.5 though?  It's out of Beta, and intending to force and update very soon anyway, so it shouldn't make too much difference, I wouldn't think.
[Image: adsig.jpg]
02-24-2008 11:26 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Auto Login to WLM when connection fails - by sagagemini on 02-24-2008 at 10:49 PM
RE: Auto Login to WLM when connection fails - by ArkaneArkade on 02-24-2008 at 11:26 PM
RE: Auto Login to WLM when connection fails - by Jimbo on 02-25-2008 at 12:18 AM
RE: RE: Auto Login to WLM when connection fails - by ArkaneArkade on 02-25-2008 at 12:39 AM
RE: Auto Login to WLM when connection fails - by sagagemini on 02-25-2008 at 04:48 AM
RE: RE: Auto Login to WLM when connection fails - by sagagemini on 02-25-2008 at 03:39 PM
RE: Auto Login to WLM when connection fails - by ArkaneArkade on 02-25-2008 at 05:46 PM
RE: Auto Login to WLM when connection fails - by sagagemini on 02-25-2008 at 08: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