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.