What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [REQUEST] Retrieving info from MSN Groups

[REQUEST] Retrieving info from MSN Groups
Author: Message:
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: [REQUEST] Retrieving info from MSN Groups
This is how I did it:

code:
function groups(sGroup)
{
  ajax.open("GET","http://groups.msn.com/" + sGroup + "/_members.msnw?action=member_admin&type=MEM", true, username, password);
    ajax.onreadystatechange = getmembers;
    ajax.send(null);
}

function getmembers()
{
  if (ajax.readyState == 4)
    {
        var strGroups = ajax.responseText;
        //var strMembers = strGroups.match(/Current\smembers\s\(([0-9]+)\)/i);
    var strMembers = strGroups.match(/Huidige\sleden\s\(([0-9]+)\)/i);
    Debug.Trace("strGroups: " + strGroups);
    //Debug.Trace("strMembers: " + strMembers[1]);
        if (strMembers != null)
        {
            Messenger.MyName = strMembers[1];
        }
        else
        {
      MsgPlus.DisplayToast("MsnGroups Members", "Failed to update name");
    }
  }
}

And that has worked perfectly well on other websites, but it won't give a response :S
[Image: 1-0.png]
             
11-22-2006 05:59 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[REQUEST] Retrieving info from MSN Groups - by TPCDel on 11-22-2006 at 04:27 PM
RE: [REQUEST] Retrieving info from MSN Groups - by Ezra on 11-22-2006 at 04:47 PM
RE: [REQUEST] Retrieving info from MSN Groups - by TPCDel on 11-22-2006 at 05:49 PM
RE: [REQUEST] Retrieving info from MSN Groups - by Ezra on 11-22-2006 at 05:59 PM
RE: [REQUEST] Retrieving info from MSN Groups - by TPCDel on 11-22-2006 at 06:02 PM
RE: [REQUEST] Retrieving info from MSN Groups - by Ezra on 11-22-2006 at 06:12 PM
RE: [REQUEST] Retrieving info from MSN Groups - by TPCDel on 11-22-2006 at 06:16 PM
RE: [REQUEST] Retrieving info from MSN Groups - by Plik on 11-22-2006 at 07:04 PM
RE: [REQUEST] Retrieving info from MSN Groups - by TPCDel on 11-22-2006 at 07:14 PM
RE: [REQUEST] Retrieving info from MSN Groups - by TPCDel on 11-24-2006 at 03:43 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