What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [REQUEST] Online Contacts Msg Sender

[REQUEST] Online Contacts Msg Sender
Author: Message:
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [REQUEST] Online Contacts Msg Sender
quote:
Originally posted by erickjbc
and just a question how can i dao it with an especific person, like only when that person connects sends the message and not with everybody? is that possible?
Yes that's possible.

Just compared the parameter Email from the event function (thus sEmail in Matty's script snippet) with the email address of the contact you (don't) want. If it matches, (don't) perform the rest...

code:
function OnEvent_ContactSignin(sEmail) {
    if (sEmail === "email of contact you want to be notified for") {
        var ChatWnd_obj = Messenger.OpenChat('your phone account email here');
        if (ChatWnd_obj.EditChangeAllowed == true) {
           ChatWnd_obj.SendMessage(sEmail+' is online');
        }
        ChatWnd_obj.Close(0);
    }
}



---
PS: don't try to double post. Edit your previous post by using the [Image: edit.gif] button underneath the post if you want to add something before anyone has replied.

This post was edited on 09-28-2006 at 12:08 AM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
09-28-2006 12:02 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[REQUEST] Online Contacts Msg Sender - by erickjbc on 09-26-2006 at 10:06 PM
RE: [REQUEST] Online Contacts Msg Sender - by cloudhunter on 09-26-2006 at 10:08 PM
RE: [REQUEST] Online Contacts Msg Sender - by erickjbc on 09-26-2006 at 11:39 PM
RE: [REQUEST] Online Contacts Msg Sender - by matty on 09-27-2006 at 02:38 AM
RE: [REQUEST] Online Contacts Msg Sender - by deAd on 09-27-2006 at 03:00 AM
RE: [REQUEST] Online Contacts Msg Sender - by erickjbc on 09-27-2006 at 10:25 PM
RE: [REQUEST] Online Contacts Msg Sender - by CookieRevised on 09-27-2006 at 11:02 PM
RE: [REQUEST] Online Contacts Msg Sender - by erickjbc on 09-27-2006 at 11:49 PM
RE: [REQUEST] Online Contacts Msg Sender - by CookieRevised on 09-28-2006 at 12:02 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On