Shoutbox

contact is always writing in CAPS... annoying - 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: WLM Plus! Help (/forumdisplay.php?fid=12)
+----- Thread: contact is always writing in CAPS... annoying (/showthread.php?tid=67908)

contact is always writing in CAPS... annoying by Fredzz on 10-31-2006 at 08:50 PM

is there anything i can do to filter his letters to small? he's always writing in CAPS. I ask him but I think he has some dificulty pressing CAPS LOCK :P


RE: contact is always writing in CAPS... annoying by Ezra on 10-31-2006 at 09:16 PM

very simplistic script:

code:
var contact = "contact@hotmail.com";

function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
  if (Origin != Messenger.MyName && MessageKind == 1)
  {
    for (e = new Enumerator(ChatWnd.Contacts); !e.atEnd(); e.moveNext())
    {
      if (e.item().email == contact)
      {
        return Message.toLowerCase();
      }
    }
  }
}

But telling him you will block him if he continues is also a good way :P
RE: contact is always writing in CAPS... annoying by rob_botch on 11-01-2006 at 04:26 PM

Or if you want to do it to every message from anyone,

code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
          return Message.toLowerCase();
}


But there is a script that has been made, I think, do do this in a more complex way, ie keeping caps at the start of sentences.

Hope this helps

Robert