What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » One message to all online MSN contacts at once

One message to all online MSN contacts at once
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: One message to all online MSN contacts at once
A script doesn't exist for this. You would have to write one.

Javascript code:
for ( var oContact = new Enumerator(Messenger.MyContacts); !oContact.atEnd(); oContact.moveNext() ) {
    if ( oContact.item().Status > STATUS_OFFLINE && oContact.item().Blocked === false ) {
        Messenger.OpenChat( oContact.item() ).SendMessage( 'happy new year' );
    }
}


Now you will run into issues with the 15 message limit. What you could do is store the contacts in an array and every 30 seconds send a message to first 15 contacts in the array removing them after a message has been sent.

This post was edited on 12-30-2008 at 06:28 PM by matty.
12-30-2008 03:04 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
One message to all online MSN contacts at once - by Dj_Jelak on 12-28-2008 at 02:00 PM
RE: One message to all online MSN contacts at once - by Spunky on 12-28-2008 at 04:38 PM
RE: One message to all online MSN contacts at once - by Dj_Jelak on 12-30-2008 at 10:56 AM
RE: One message to all online MSN contacts at once - by Chris4 on 12-30-2008 at 01:07 PM
RE: One message to all online MSN contacts at once - by matty on 12-30-2008 at 03:04 PM
RE: One message to all online MSN contacts at once - by Dj_Jelak on 12-30-2008 at 09:30 PM
RE: One message to all online MSN contacts at once - by davidp on 12-31-2008 at 04:41 PM
RE: One message to all online MSN contacts at once - by matty on 12-31-2008 at 04:53 PM
RE: One message to all online MSN contacts at once - by mad_mark1 on 03-29-2009 at 07:46 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