Shoutbox

Notifications : Auto-send message - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: WLM Plus! Help (/forumdisplay.php?fid=12)
+----- Thread: Notifications : Auto-send message (/showthread.php?tid=68470)

Notifications : Auto-send message by bpajak on 11-15-2006 at 02:02 PM

Is there currently a way to have a MSN message automatically sent to someone as soon as they sign on?  I know I can setup a notification for myself, but I would like to setup an auto "Good Morning" message for some of my contacts.  Is this possible?  If not, can I throw it on the enhancement list?


RE: Notifications : Auto-send message by Felu on 11-15-2006 at 02:20 PM

Here's a script to do that [Image: msn_wink.gif]

code:
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Good Morning")
}
}
}

RE: Notifications : Auto-send message by bpajak on 11-15-2006 at 02:23 PM

Thank you for your quick reply to this.  I really appreciate this.
-Brian


RE: Notifications : Auto-send message by Asimo on 12-01-2006 at 01:17 AM

can you make me this script so I can download and import it to msn..because I have problem to make this...

I am starter

http://shoutbox.menthix.net/showthread.php?tid=69030

thanks


RE: Notifications : Auto-send message by Spunky on 12-01-2006 at 01:37 AM

quote:
Originally posted by -!Felu!-
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Good Morning")
}
}
}

Can I ask where the ChatWnd is being defined?
code:
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_ContactSignin(Email){//Said someone else signs in, not him
    for(i in contacts){//easier for loop
        if(Email == contacts[i]){
            var chat = Messenger.OpenChat(Email)//Assign the ChatWnd to a variable
                chat.SendMessage("Good Morning")]//Send Message         
                //chat.SendMessage("/close")
                //Optional to close window after saying hello

        }
    }
}

This method is a bit impractical as it qequires you to edit the script when you want to add somebody
RE: RE: Notifications : Auto-send message by Asimo on 12-01-2006 at 01:39 AM

quote:
Originally posted by SpunkyLoveMuff
quote:
Originally posted by -!Felu!-
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Good Morning")
}
}
}

Can I ask where the ChatWnd is being defined?
code:
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
function OnEvent_ContactSignin(Email){//Said someone else signs in, not him
    for(i in contacts){//easier for loop
        if(Email == contacts[i]){
            var chat = Messenger.OpenChat(Email)//Assign the ChatWnd to a variable
                chat.SendMessage("Good Morning")]//Send Message         
                //chat.SendMessage("/close")
                //Optional to close window after saying hello

        }
    }
}

This method is a bit impractical as it qequires you to edit the script when you want to add somebody


hm...i can t understand you...is this new script or what...

can you make mi to download and import this...

i am begginer...

thanks
RE: Notifications : Auto-send message by Spunky on 12-01-2006 at 01:48 AM

This just says "Good Morning" to each contact as they sign in.