What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Can someone add something to this code

Can someone add something to this code
Author: Message:
whiz
Senior Member
****


Posts: 568
Reputation: 8
– / – / Flag
Joined: Nov 2008
RE: Can someone add something to this code
Javascript code:
// If we receive a message and the chat window exists in the object container
function OnEvent_ChatWndReceiveMessage(oChatWnd, sOrigin, sMessage, nMessageKind) {
    if (typeof oChatWnds[oChatWnd.Handle] === 'object') {
        // check which message was received
        switch (sMessage.toLowerCase()) {
            case "hai":
                oChatWnd.SendMessage('Hai');
                break;
            case "hello":
                oChatWnd.SendMessage('Hello');
                break;
            default: // anything else
                oChatWnd.SendMessage('Yo');
                break;
        }
        // Remove the chat window from the object container
        delete oChatWnds[oChatWnd.Handle];
    }
}

Something like that?
01-10-2010 11:56 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Can someone add something to this code - by Barathrum on 01-10-2010 at 11:28 AM
RE: Can someone add something to this code - by whiz on 01-10-2010 at 11:56 AM
RE: Can someone add something to this code - by Barathrum on 01-10-2010 at 12:53 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