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:
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
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Disabling my emoticons, but seeing other peoples emoticons. - by disappea on 11-06-2007 at 11:10 PM
RE: Disabling my emoticons, but seeing other peoples emoticons. - by scott2010_h on 11-06-2007 at 11:23 PM
RE: Disabling my emoticons, but seeing other peoples emoticons. - by disappea on 11-06-2007 at 11:30 PM
RE: Disabling my emoticons, but seeing other peoples emoticons. - by scott2010_h on 11-07-2007 at 01:15 AM
RE: Disabling my emoticons, but seeing other peoples emoticons. - by GeorgeR on 11-07-2007 at 06:14 AM
RE: Disabling my emoticons, but seeing other peoples emoticons. - by MattyRid on 11-07-2007 at 06:32 AM
RE: Disabling my emoticons, but seeing other peoples emoticons. - by Volv on 11-07-2007 at 12:06 PM
RE: Disabling my emoticons, but seeing other peoples emoticons. - by disappea on 11-07-2007 at 05: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