quote:
Originally posted by Leroux
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.
Well firstly, that script is really bad, say you want to log off WLM, it will just log you back on again which could get really annoying.
Maybe, on signout, you could display a box which says signing back in in 5, 4, 3, 2, 1 or whatever, and unless the user clicks cancell on that box, it will automatically sign them back in