What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Help » contact is always writing in CAPS... annoying

contact is always writing in CAPS... annoying
Author: Message:
Fredzz
Full Member
***

Avatar

Posts: 409
Reputation: 12
37 / Male / –
Joined: Apr 2004
Status: Away
O.P. contact is always writing in CAPS... annoying
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
Fredzz rox00rz
10-31-2006 08:50 PM
Profile E-Mail PM Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: contact is always writing in CAPS... annoying
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

This post was edited on 10-31-2006 at 09:17 PM by Ezra.
[Image: 1-0.png]
             
10-31-2006 09:16 PM
Profile PM Web Find Quote Report
rob_botch
Full Member
***

Avatar

Posts: 180
Reputation: 4
33 / Male / Flag
Joined: Apr 2006
RE: contact is always writing in CAPS... annoying
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
11-01-2006 04:26 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On