What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Help » Notifications : Auto-send message

Notifications : Auto-send message
Author: Message:
bpajak
New Member
*


Posts: 2
Joined: Oct 2006
O.P. Happy  Notifications : Auto-send message
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?
11-15-2006 02:02 PM
Profile E-Mail PM Find Quote Report
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
RE: Notifications : Auto-send message
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")
}
}
}
11-15-2006 02:20 PM
Profile E-Mail PM Web Find Quote Report
bpajak
New Member
*


Posts: 2
Joined: Oct 2006
O.P. RE: Notifications : Auto-send message
Thank you for your quick reply to this.  I really appreciate this.
-Brian
11-15-2006 02:23 PM
Profile E-Mail PM Find Quote Report
Asimo
New Member
*


Posts: 14
Joined: Nov 2006
RE: Notifications : Auto-send message
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
12-01-2006 01:17 AM
Profile E-Mail PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: Notifications : Auto-send message
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
<Eljay> "Problems encountered: shit blew up" :zippy:
12-01-2006 01:37 AM
Profile PM Find Quote Report
Asimo
New Member
*


Posts: 14
Joined: Nov 2006
RE: RE: Notifications : Auto-send message
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

This post was edited on 12-01-2006 at 01:41 AM by Asimo.
12-01-2006 01:39 AM
Profile E-Mail PM Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: Notifications : Auto-send message
This just says "Good Morning" to each contact as they sign in.

.plsc File Attachment: Hello.plsc (631 bytes)
This file has been downloaded 196 time(s).
<Eljay> "Problems encountered: shit blew up" :zippy:
12-01-2006 01:48 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