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

Getting all my contacts
Author: Message:
whiz
Senior Member
****


Posts: 568
Reputation: 8
– / – / Flag
Joined: Nov 2008
RE: Getting all my contacts
You need to enumerate the contact list like this.
js code:
var enum = new Enumerator(Messenger.MyContacts);
var contacts = new Array();
for (; !enum.atEnd(); enum.moveNext())
{
    contacts.push(enum.item().Email);
}
Debug.Trace(contacts.join(", "));
05-09-2010 06:48 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Getting all my contacts - by Riko15 on 05-09-2010 at 12:40 PM
RE: Getting all my contacts - by Riko15 on 05-09-2010 at 06:45 PM
RE: Getting all my contacts - by whiz on 05-09-2010 at 06:48 PM
RE: Getting all my contacts - by Spunky on 05-09-2010 at 07:13 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