Shoutbox

Login auto send - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Login auto send (/showthread.php?tid=62810)

Login auto send by Seanzy on 07-08-2006 at 12:20 PM

Ok another question. I would like to send a message to a user as soon as they log on. Possible?

Or maybe when they sign in, it only sends them a toast with a personal message instead of opening a window. If any of that makes sense :/


RE: Login auto send by Volv on 07-08-2006 at 12:36 PM

Read the official scripting documentation; http://www.msgpluslive.net/scripts/browse/index.php?act=view&id=13
It will help you with all of these problems.

code:
OnEvent_ContactSignin(strEmail) {
    Messenger.OpenChat(Messenger.MyContacts.GetContact(strEmail)).SendMessage("hello");
}