What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [request] report feature (paying $$$)

[request] report feature (paying $$$)
Author: Message:
saralk
Veteran Member
*****

Avatar

Posts: 2598
Reputation: 38
35 / Male / Flag
Joined: Feb 2003
RE: RE: [request] report feature (paying $$$)
I haven't tested this out, but it should work.

code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
    {
    Pattern = /^report/i
    OK = Pattern.exec(Message)
    if (OK) {
    var Contacts = ChatWnd.Contacts
    var e = new Enumerator(Contacts);
    for (; !e.atEnd(); e.moveNext())
    {
    var Contact = e.item();
    Debug.Trace(" " + Contact.Email);
    if (Origin === Contact.Name) {
    var From = "From : " + Contact.Email;
    var Message = "\n\nMessage : " + Message;
    var MyStatus = GetContact("myemail");
    if (MyStatus.Status === '1')
        Messenger.OpenChat(Contact.Email).SendMessage("ENTEROFFLINEMESSAGE");
    else
        Messenger.OpenChat("myemail").SendMessage(From+Message);
    return;
    }
    }
    }
    }
The Artist Formerly Known As saralk
London · New York · Paris
Est. 1989
08-23-2006 11:43 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[request] report feature (paying $$$) - by icepick66 on 08-22-2006 at 11:21 AM
RE: [request] report feature (paying $$$) - by saralk on 08-22-2006 at 12:32 PM
RE: [request] report feature (paying $$$) - by Felu on 08-22-2006 at 12:37 PM
RE: [request] report feature (paying $$$) - by CookieRevised on 08-22-2006 at 12:45 PM
RE: [request] report feature (paying $$$) - by saralk on 08-22-2006 at 01:01 PM
RE: RE: [request] report feature (paying $$$) - by CookieRevised on 08-22-2006 at 01:37 PM
RE: [request] report feature (paying $$$) - by icepick66 on 08-23-2006 at 08:54 AM
RE: [request] report feature (paying $$$) - by icepick66 on 08-23-2006 at 09:33 AM
RE: RE: [request] report feature (paying $$$) - by saralk on 08-23-2006 at 11:43 AM
RE: RE: [request] report feature (paying $$$) - by CookieRevised on 08-24-2006 at 09:05 AM
RE: [request] report feature (paying $$$) - by saralk on 08-23-2006 at 09:47 AM
RE: [request] report feature (paying $$$) - by Sunshine on 08-23-2006 at 09:48 AM
RE: [request] report feature (paying $$$) - by icepick66 on 08-23-2006 at 10:35 AM
RE: [request] report feature (paying $$$) - by icepick66 on 08-24-2006 at 10:33 AM
RE: [request] report feature (paying $$$) - by saralk on 08-24-2006 at 10:48 AM
RE: [request] report feature (paying $$$) - by icepick66 on 08-24-2006 at 12:35 PM
RE: [request] report feature (paying $$$) - by saralk on 08-24-2006 at 12:49 PM
RE: [request] report feature (paying $$$) - by icepick66 on 08-24-2006 at 12:58 PM
RE: RE: [request] report feature (paying $$$) - by Matti on 08-24-2006 at 03:45 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