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:
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
« Next Oldest Return to Top Next Newest »

Messages In This Thread
contact is always writing in CAPS... annoying - by Fredzz on 10-31-2006 at 08:50 PM
RE: contact is always writing in CAPS... annoying - by Ezra on 10-31-2006 at 09:16 PM
RE: contact is always writing in CAPS... annoying - by rob_botch on 11-01-2006 at 04:26 PM


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