To remove custom emoticons you can use:
code:
function RemoveCustomEmot(sString)
var Emoticons = Messenger.CustomEmoticons;
var e = new Enumerator(Emoticons);
for(; !e.atEnd(); e.moveNext())
{
var Emoticon = e.item();
sString.replace(Emoticon.Shortcut, 0);
}
return sString;
}
Please note that this wont work in MP!L versions older than Messenger Plus! Live 4.10.
vikke