Shoutbox

invisible 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: Scripting (/forumdisplay.php?fid=39)
+----- Thread: invisible message !!! (/showthread.php?tid=94315)

invisible message !!! by scripto on 04-06-2010 at 11:41 AM

can we send a text in a chat windows without letting the sender seeing it
i mean i send a txt to a contact but this text doesn't appear in my chat window but i does in my contact chat window


RE: invisible message !!! by matty on 04-06-2010 at 12:35 PM

Nope not possible.


RE: invisible message !!! by foaly on 04-06-2010 at 01:05 PM

well that depends, you could hide the message for example:

Javascript code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind){
    if (Message.charAt(0) == '#'){
        Debug.Trace("make invis" + Message);
        return "";
    }
}


The screen will still show you said something, just not what you said as long as you prefix it with #...
RE: invisible message !!! by matty on 04-06-2010 at 01:41 PM

I was under the impression the OP wanted something like an Action Message to appear on the contacts chat window.