mickael9
Full Member
Posts: 117 Reputation: 3
33 / /
Joined: Jul 2005
|
RE: RE: RE: MSN Plus Feature/Script suggestion
quote: Originally posted by Adrian DX
quote: Originally posted by Jesus
code: function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
return Message.toLowerCase()
}
this removes all capitals from all messages in the conversation window.
Thats a pretty good start ^_^
The only thing that would make it perfect is if it would only activate if there is one or more words that is written in capitals
Thanks =)
code: function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
if (Origin != Messenger.MyName && Message == Message.toUpperCase())
return Message.toLowerCase();
return Message;
}
This post was edited on 08-27-2006 at 12:41 AM by mickael9.
|
|