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

Yahoo contacts
Author: Message:
questsin
New Member
*


Posts: 14
Joined: Jan 2007
O.P. RE: Yahoo contacts
the code is as follows. My observations is MSN contacts work, yahoo contacts don't. I use the GUID to identify then 4 now.

function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message,MessageKind) {

     // get contact
     var Contact = null;
     var e = new Enumerator(ChatWnd.Contacts);
     for(; !e.atEnd(); e.moveNext())
     {
          if(e.item().Name == Origin) {
               Contact = e.item();
          }
     }

     if (Origin != Messenger.MyName ) {
         
          if (Contact != null) {
               Debug.Trace(Contact.Email);
          } else {
               Debug.Trace('unknown');
               Debug.Trace( new ActiveXObject("Scriptlet.TypeLib").GUID.substr(1,36));
          }
    }
}
01-17-2007 12:30 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Yahoo contacts - by questsin on 01-15-2007 at 06:16 PM
RE: Yahoo contacts - by CookieRevised on 01-15-2007 at 09:08 PM
RE: Yahoo contacts - by questsin on 01-17-2007 at 12:30 AM
RE: RE: Yahoo contacts - by CookieRevised on 01-17-2007 at 03:43 AM
RE: Yahoo contacts - by matty on 01-17-2007 at 01:32 AM
RE: Yahoo contacts - by questsin on 01-20-2007 at 02:32 AM
RE: Yahoo contacts - by CookieRevised on 01-20-2007 at 02:34 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