quote:
Originally posted by Mattike
If I understand correctly, you want to make a script which only works when you're the user who signed in.
Well, you could make the OnEvent_SignIn to check the e-mail address of the user who signed in, like so:
code:
function OnEvent_SignIn(Email) {
if(Email == "someone@hotmail.com") {
StartScript(); //Some function which should start the script, just to give you an example.
}
}
And then, you should do something similar with OnEvent_SignOut, so that it stops before anyone else signs in.
No.
With the new protocol used in Windows Live Messenger 9, you will be able to stay signed in at different PCs.
Before, when you signed in on PC1 and then you sign in on PC2, you would be singed out of Messenger on PC1 (showing a popup that states something like "
you've signed in on another computer, click here to sign back in here").
With the new protocol this isn't so anymore; both the Messengers will have you signed in.
--------------------------------
With Plus! scripting this can not be detected.
Also note that WLM9 is still in private beta and things can change until it is publically available.