What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [request]group online/offline

[request]group online/offline
Author: Message:
alexp2_ad
Scripting Contest Winner
****

Avatar
Who love the chocolate?

Posts: 691
Reputation: 26
36 / Male / –
Joined: May 2004
Status: Away
RE: [request]group online/offline
code:
function OnEvent_SigninReady(sEmail){
    var contacts = Messenger.MyContacts;
    var online = 0;
    var offline = 0;
    for(var e = new Enumerator(contacts); !e.atEnd(); e.moveNext()){
        item = e.item();
        if(item.Status != 1 && item.Status != 0){
            online++;
        }
        else{
            offline++;
        }
    }
    MsgPlus.DisplayToastContact('Online',online+' contacts are online',offline+' contacts are offline');
}

And in that near last line, with the "contacts are online" text you could add font tags to put online in bold, or green or something if you wanted. ;)

This post was edited on 08-06-2006 at 10:31 AM by alexp2_ad.
08-06-2006 10:29 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[request]group online/offline - by Jimbo on 08-06-2006 at 09:55 AM
RE: [request]group online/offline - by ddunk on 08-06-2006 at 09:57 AM
RE: [request]group online/offline - by Jimbo on 08-06-2006 at 09:58 AM
RE: [request]group online/offline - by ddunk on 08-06-2006 at 10:07 AM
RE: [request]group online/offline - by Jimbo on 08-06-2006 at 10:09 AM
RE: [request]group online/offline - by alexp2_ad on 08-06-2006 at 10:19 AM
RE: [request]group online/offline - by Jimbo on 08-06-2006 at 10:20 AM
RE: [request]group online/offline - by alexp2_ad on 08-06-2006 at 10:29 AM
RE: [request]group online/offline - by Jimbo on 08-06-2006 at 10:30 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