What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Welcome Window

Welcome Window
Author: Message:
Jimbo
Veteran Member
*****

Avatar

Posts: 1650
Reputation: 18
31 / Male / Flag
Joined: Jul 2006
RE: Welcome Window
code:
    function OnEvent_Signin(Email) {
    Debug.Trace("Contacts in the user's contact list:");
    var Contacts = Messenger.MyContacts;
    var e = new Enumerator(Contacts);
    for(; !e.atEnd(); e.moveNext())
    {
    var Contact = e.item();
    if (Contact.Status != 1) {
                        var ChatWnd = Messenger.OpenChat(Contact);
                        if (ChatWnd.EditChangeAllowed) ChatWnd.SendMessage("Hello" + Contact::Name + "!");
           }
    }
    }


What that does is, when you open a conversation with some one it automaticcaly sends hello + contact name

This post was edited on 03-17-2007 at 08:23 AM by Jimbo.
03-17-2007 08:22 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Welcome Window - by JustMe0507 on 03-17-2007 at 05:58 AM
RE: Welcome Window - by Jimbo on 03-17-2007 at 08:22 AM
RE: Welcome Window - by Felu on 03-17-2007 at 08:29 AM
RE: Welcome Window - by Jimbo on 03-17-2007 at 10:02 AM
RE: Welcome Window - by JustMe0507 on 03-17-2007 at 02:41 PM


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