Shoutbox

Disabling my emoticons, but seeing other peoples emoticons. - 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: Disabling my emoticons, but seeing other peoples emoticons. (/showthread.php?tid=78819)

Disabling my emoticons, but seeing other peoples emoticons. by disappea on 11-06-2007 at 11:10 PM

Hi all,
Is it possible to disable my smileys in msn (like :)  ;) :D) but keep seeing the smileys which are sent to you by your friends. I mean i hate smileys, but my friends tend to use smileys excessively and when they talk, if i disable the smileys a text like this " i (a smiley with a dude walking trying to mean he went or something ) there and (a dude slapping another smiley) him" transforms into "i zzz12 there and bbb23 him". So i hope you got what i mean. If its not possible to disable smileys in one way, is it possible to somehow disable at least : and ) from making a smiling smiley? or other basic smileys?
ps: in another forum someone told me msgplus live has the option to send messages without emoticons but i cant find that options. anyone knows something about that?


RE: Disabling my emoticons, but seeing other peoples emoticons. by scott2010_h on 11-06-2007 at 11:23 PM

You can use "/noicon" to disable emoticons in a message. Or someone could make a script to place that command in front of every message sent to disable emoticons.


RE: Disabling my emoticons, but seeing other peoples emoticons. by disappea on 11-06-2007 at 11:30 PM

can someone please help me and write a script like scott says? pretty pleaase ? :)


RE: Disabling my emoticons, but seeing other peoples emoticons. by scott2010_h on 11-07-2007 at 01:15 AM

I made it for you.
Open Script prefrences > Click "Create New" > Name the file something like "NoParse" > Copy and Paste the code Below >
Change "YOUREMAIL@hotmail.com" to your email. > Click Save

code:
var OnOff = true;
function OnEvent_ChatWndSendMessage(ChatWnd, Message)
{
if (OnOff && Messenger.MyEmail == "YOUREMAIL@hotmail.com") {
Message = "/noicon " + Message;
return Message;
}
}

function OnGetScriptMenu(sLocation)
{
if (OnOff) {
OffOn = "Off";
}else{
OffOn = "On";
}

        var ScriptMenu = "<ScriptMenu>";
        ScriptMenu    +=     "<MenuEntry Id=\"OnOff\">Turn " + OffOn + "</MenuEntry>";
        ScriptMenu    += "</ScriptMenu>";
       
        return ScriptMenu;
}

function OnEvent_MenuClicked(sMenuId, nLocation, oChatWnd){
if(sMenuId == "OnOff"){
if (OnOff) {
OnOff = false;
}else{
OnOff = true;
}
}
}


RE: Disabling my emoticons, but seeing other peoples emoticons. by GeorgeR on 11-07-2007 at 06:14 AM

I think what he ants is thet option when u go into tools -> options -> messeges , and uncheck the box that says : show emoticons, the show custum emoticons box next to it should uncheck itself and turn grey.


RE: Disabling my emoticons, but seeing other peoples emoticons. by MattyRid on 11-07-2007 at 06:32 AM

but that disables it for both messages you send and messages sent by your contacts. he wants it to be disabled for his messages but not messages from his contacts


RE: Disabling my emoticons, but seeing other peoples emoticons. by Volv on 11-07-2007 at 12:06 PM

Scott, you may want to make a check on your script for messages which start with a "/", you don't want to be replacing messages which are meant to be other MsgPlus! commands.
That is, currently your script will convert "/away" to "/noicon /away" which doesn't yield the expected outcome.


RE: Disabling my emoticons, but seeing other peoples emoticons. by disappea on 11-07-2007 at 05:45 PM

hmm scott thank you very much mate, doesn't matter if its not perfect i won't use other msg plus commands if its hard to fix that in script :) thank you everyone :)