What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! General » Msg Evry1 at once

Msg Evry1 at once
Author: Message:
dumb_nelby2
New Member
*


Posts: 5
Joined: Sep 2006
O.P. Msg Evry1 at once
how do i message evry1 in my contact list at once, (even the people who are offline)
09-30-2006 08:33 PM
Profile E-Mail PM Find Quote Report
Steven
Senior Member
****

Avatar
Phillup you little devil you/..

Posts: 616
Reputation: 34
30 / Male / –
Joined: Mar 2005
RE: Msg Evry1 at once
You would have to open all of the conversations, select one of them and type /all  and your message after all, so for example /all moving to florida

This post was edited on 09-30-2006 at 08:35 PM by Steven.
[Image: sig2ni2.gif] 
09-30-2006 08:34 PM
Profile E-Mail PM Find Quote Report
dumb_nelby2
New Member
*


Posts: 5
Joined: Sep 2006
O.P. RE: Msg Evry1 at once
is there a fast way to open evry single one?
09-30-2006 09:32 PM
Profile E-Mail PM Find Quote Report
Jimbo
Veteran Member
*****

Avatar

Posts: 1650
Reputation: 18
31 / Male / Flag
Joined: Jul 2006
RE: Msg Evry1 at once
There is using scripts but you would need to post in the script forum.
10-01-2006 07:29 AM
Profile E-Mail PM Find Quote Report
NanaFreak
Scripting Contest Winner
*****


Posts: 1476
Reputation: 53
32 / Male / Flag
Joined: Jul 2006
RE: Msg Evry1 at once
but this would aslo MAJORLY lag  your WLM and computer so i dont think this is the best way of doing it sorry
10-01-2006 07:31 AM
Profile PM Find Quote Report
markee
Veteran Member
*****

Avatar

Posts: 1621
Reputation: 50
35 / Male / Flag
Joined: Jan 2006
RE: Msg Evry1 at once
There is also a limit of how many people you can send a message to at once.  This is defined by the messenger protocol so there is no way around it.
[Image: markee.png]
10-01-2006 07:37 AM
Profile PM Find Quote Report
riahc4
Veteran Member
*****


Posts: 1073
Reputation: -18
– / Male / Flag
Joined: Aug 2004
Status: Away
RE: Msg Evry1 at once
quote:
Originally posted by markee
There is also a limit of how many people you can send a message to at once.  This is defined by the messenger protocol so there is no way around it.
Nope because this limit would intefer with large group conversations.

This post was edited on 10-02-2006 at 11:22 PM by riahc4.
10-02-2006 11:22 PM
Profile PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Msg Evry1 at once
When you send something to a group convo you still send it to 1 open session, not to all contacts (sessions) individually.
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-02-2006 11:24 PM
Profile PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Msg Evry1 at once
code:
function OnEvent_Initialize(bMessengerStart){
    for(var enumerator = new Enumerator(Messenger.MyContacts) ; !enumerator.atEnd(); enumerator.moveNext()){
        var sContact = enumerator.item();
        Messenger.OpenChat(sContact.Email).SendMessage('hi');
    }
}

Don't see why you would wan't to do this but here it is.
10-03-2006 01:15 AM
Profile E-Mail PM Find Quote Report
markee
Veteran Member
*****

Avatar

Posts: 1621
Reputation: 50
35 / Male / Flag
Joined: Jan 2006
RE: RE: Msg Evry1 at once
quote:
Originally posted by Matty
code:
function OnEvent_Initialize(bMessengerStart){
    for(var enumerator = new Enumerator(Messenger.MyContacts) ; !enumerator.atEnd(); enumerator.moveNext()){
        var sContact = enumerator.item();
        Messenger.OpenChat(sContact.Email).SendMessage('hi');
    }
}

Don't see why you would wan't to do this but here it is.

Wouldn't it be better not to include the ones that are offline, it's just an extra if statement.  Maybe there's something else I missed but heres my adaptation of Matty's code.
code:
function OnEvent_Initialize(bMessengerStart){
    for(var enumerator = new Enumerator(Messenger.MyContacts) ; !enumerator.atEnd(); enumerator.moveNext()){
        var sContact = enumerator.item();
        if (sContact.Status != 1){
            Messenger.OpenChat(sContact.Email).SendMessage('hi');
        }
    }
}
[Image: markee.png]
10-03-2006 02:31 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »


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