Well that is what the function is for... when you sign in. When other people sign in the function is:
quote:
Originally posted by Messenger Plus! live Scripting Documentation
OnEvent_ContactSignin(
[string] Email
);
To get it to do what you want, you would use this code:
code:
function OnEvent_ContactSignin(Email)
{
Debug.Trace(Email + " entrou!");
MsgPlus.DisplayToast("", Email + " entrou!");
}
Cloudy
Edit: Why do I always get beaten to a reply