Shoutbox

Replace standard smilies? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Skype & Live Messenger (/forumdisplay.php?fid=10)
+----- Thread: Replace standard smilies? (/showthread.php?tid=65168)

Replace standard smilies? by Scorp-X on 08-20-2006 at 08:28 PM

Hello
is there any way to replace the standard smilies ( :), :(, :P,..) with own smilies, but enter the same combi ( :) , :( ,...)

sry for bad english ^^ i'm from austria :P


RE: Replace standard smilies? by Panachiba on 08-20-2006 at 08:31 PM

you can't .

edit : I speaking/speaked /speak about the window live messenger , and sorry for not give you much info 


RE: Replace standard smilies? by Zahid™ on 08-20-2006 at 08:32 PM

quote:
Originally posted by Panachiba
you can't .
Yes you can, but not for Windows Live Messsenger only for MSN Messenger, first get plus: http://old.msgplus.net and then get Stuffplug [ http://www.stuffplug.com ]
RE: Replace standard smilies? by Scorp-X on 08-21-2006 at 06:26 AM

thx for answers..

but, i can edit the tones linke RING! also (in the Live Messenger Folder) why not the emoticons


RE: Replace standard smilies? by hmaster on 08-21-2006 at 10:05 AM

You could do it in a script by replacing the standard ones with a custom one before the message is sent.


RE: Replace standard smilies? by CookieRevised on 08-21-2006 at 10:12 AM

quote:
Originally posted by Scorp-X
thx for answers..

but, i can edit the tones linke RING! also (in the Live Messenger Folder) why not the emoticons
You can change the sounds because they are seperate files.

The standard emoticons are embedded inside Messenger itself. You could change them, but this will involve patching Messenger. And of course, only you will see the changes, your contacts will still see the default ones.

RE: Replace standard smilies? by hmaster on 08-21-2006 at 10:25 AM

You could do this:

code:
function OnEvent_ChatWndSendMessage(ChatWnd, sMessage) {
    sMessage = sMessage.replace(/:\)/gi,'=)');
    sMessage = sMessage.replace(/:\(/gi,'=(');
    sMessage = sMessage.replace(/:P/gi,'=P');
    return sMessage;
}
The first being the emoticon you want to change and the second the custom emoticon you want to replace it with :).
RE: RE: Replace standard smilies? by Scorp-X on 08-21-2006 at 11:07 AM

quote:
Originally posted by hmaster
You could do this:
code:
function OnEvent_ChatWndSendMessage(ChatWnd, sMessage) {
    sMessage = sMessage.replace(/:\)/gi,'=)');
    sMessage = sMessage.replace(/:\(/gi,'=(');
    sMessage = sMessage.replace(/:P/gi,'=P');
    return sMessage;
}
The first being the emoticon you want to change and the second the custom emoticon you want to replace it with :).



YEAH! Thanks!! :D
RE: Replace standard smilies? by CookieRevised on 08-21-2006 at 11:54 AM

Nice but I'm not quite sure it is this what he wants as it does change the shortcuts. What he wants is like skinning the emoticons, (i think).


EDIT: didn't saw his reply before replying... stupid me... oh well... (Y)


RE: Replace standard smilies? by hmaster on 08-21-2006 at 11:58 AM

Hmm thats what I thought initially but he just wanted to use the standard shortcuts to display different emoticons. He seems to be happy with it!