What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Help » Disabling my emoticons, but seeing other peoples emoticons.

Disabling my emoticons, but seeing other peoples emoticons.
Author: Message:
disappea
New Member
*


Posts: 3
Joined: Nov 2007
O.P. Disabling my emoticons, but seeing other peoples emoticons.
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?

This post was edited on 11-06-2007 at 11:11 PM by disappea.
11-06-2007 11:10 PM
Profile E-Mail PM Find Quote Report
scott2010_h
Full Member
***

Avatar

Posts: 187
Reputation: 10
32 / Male / Flag
Joined: Dec 2005
Status: Away
RE: Disabling my emoticons, but seeing other peoples emoticons.
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.
11-06-2007 11:23 PM
Profile E-Mail PM Web Find Quote Report
disappea
New Member
*


Posts: 3
Joined: Nov 2007
O.P. RE: Disabling my emoticons, but seeing other peoples emoticons.
can someone please help me and write a script like scott says? pretty pleaase ? :)
11-06-2007 11:30 PM
Profile E-Mail PM Find Quote Report
scott2010_h
Full Member
***

Avatar

Posts: 187
Reputation: 10
32 / Male / Flag
Joined: Dec 2005
Status: Away
RE: Disabling my emoticons, but seeing other peoples emoticons.
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;
}
}
}

11-07-2007 01:15 AM
Profile E-Mail PM Web Find Quote Report
GeorgeR
New Member
*


Posts: 4
Joined: Nov 2007
RE: Disabling my emoticons, but seeing other peoples emoticons.
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.
11-07-2007 06:14 AM
Profile E-Mail PM Find Quote Report
MattyRid
Veteran Member
*****

Avatar
Red Bull Racing Australia

Posts: 1321
Reputation: 21
– / Male / Flag
Joined: Jan 2006
Status: Away
RE: Disabling my emoticons, but seeing other peoples emoticons.
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
Red Bull Racing Australia - Triple Eight Race Engineering - Holden
11-07-2007 06:32 AM
Profile PM Find Quote Report
Volv
Skinning Contest Winner
*****

Avatar

Posts: 1233
Reputation: 31
34 / Male / Flag
Joined: Oct 2004
RE: Disabling my emoticons, but seeing other peoples emoticons.
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.

This post was edited on 11-07-2007 at 12:07 PM by Volv.
11-07-2007 12:06 PM
Profile PM Find Quote Report
disappea
New Member
*


Posts: 3
Joined: Nov 2007
O.P. RE: Disabling my emoticons, but seeing other peoples emoticons.
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 :)
11-07-2007 05:45 PM
Profile E-Mail 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