Shoutbox

contacts caps off - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: contacts caps off (/showthread.php?tid=79654)

contacts caps off by Jarrod on 12-05-2007 at 09:56 AM

could i use a script to turn my contacts caps off
they turn mine off but wats the point i'm not the one being stupid enough to type in caps


RE: contacts caps off by Oxy on 12-05-2007 at 11:13 AM

It would seem possible, if you just replace every capital letter with the corresponding lower case letter.


RE: contacts caps off by markee on 12-05-2007 at 11:17 AM

code:
OnEvent_ChatWndReceiveMessage(Wnd,Origin,msg,Kind){
return msg.toLowerCase();
}

This will change all messages to lowercase, but this will on appear on your computer.  If you send something with caps it will be sent with caps but displayed in lowercase.
RE: contacts caps off by Jarrod on 12-05-2007 at 11:55 AM

awesome that's exactly what i wanted
i never use caps anyways surely u've noticed that

plus says it's defective and won't work


RE: contacts caps off by Matti on 12-05-2007 at 12:29 PM

Add "function" in front of it. :P

code:
function OnEvent_ChatWndReceiveMessage(Wnd,Origin,msg,Kind){
   return msg.toLowerCase();
}

RE: contacts caps off by markee on 12-06-2007 at 11:34 AM

Thanks Matti for fixing that quickly. I've been working and been very tired and I wrote that straight into the text ox.  I appologise for not getting it right.