RE: One message to all online MSN contacts at once
if you open every single online msn contact box i think u can send to loads of messages. dno if this effects the 15 limit eaither.
use:
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() ).OpenChat;
}
}
this openes all windows (does not send message)
then go on 1 of the open boxes and type /all (your message) and it will send it too every window open. ive tested mine and it seems theres no limit but dnt hold me to that.
ive been trying to find out how to open all offline contacts by putting
if ( oContact.item().Status > STATUS_ONLINE && oContact.item().Blocked === false ) in where it said STATUS_OFFLINE but it just opens every msn box on my contacts and then crashes from overload of windows.
if anyone can find out how to make that work then please say
This post was edited on 03-29-2009 at 07:48 PM by mad_mark1.
|