What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » EMAIL VERIFICATION

EMAIL VERIFICATION
Author: Message:
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: EMAIL VERIFICATION
Or use a fancy function like this:

code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind){
  var Contacts = ChatWnd.Contacts;
  var e = new Enumerator(Contacts);
  if (Contacts.Count == 1)
  {
    for (;!e.atEnd();e.moveNext())
    {
      var Contact = e.item();
      switch (Contact.Email)
      {
        case "xxx@yyy.zzz":
          run(ChatWnd, Message);
          break;
        case "xxx2@yyy.zzz":
          run(ChatWnd, Message);
          break;
      }
    }
  }
}

function run(ChatWnd, Message)
{
  //PROGRAMAS
  if (Message == "!runNotepad")
  {
    ChatWnd.SendMessage("/run c:\\windows\\notepad.exe");
    ChatWnd.SendMessage("Notepad open");
  }
  if (Message == "!runMusic")
  {
    ChatWnd.SendMessage("/run c:\\music.mp3");
    ChatWnd.SendMessage("Listenning music");
  }
  if (Message == "!runNudge")
  {
    ChatWnd.SendMessage("/nudge");
  }
}

This post was edited on 06-28-2006 at 03:16 PM by Ezra.
[Image: 1-0.png]
             
06-28-2006 03:15 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
EMAIL VERIFICATION - by novolo on 06-28-2006 at 12:49 PM
RE: EMAIL VERIFICATION - by novolo on 06-28-2006 at 01:08 PM
RE: EMAIL VERIFICATION - by Bmw1000c on 06-28-2006 at 01:13 PM
RE: EMAIL VERIFICATION - by novolo on 06-28-2006 at 01:21 PM
RE: EMAIL VERIFICATION - by Bmw1000c on 06-28-2006 at 01:23 PM
RE: EMAIL VERIFICATION - by Ezra on 06-28-2006 at 01:37 PM
RE: EMAIL VERIFICATION - by Bmw1000c on 06-28-2006 at 01:43 PM
RE: RE: EMAIL VERIFICATION - by Mr. Bougo on 06-28-2006 at 03:02 PM
RE: EMAIL VERIFICATION - by novolo on 06-28-2006 at 01:46 PM
RE: EMAIL VERIFICATION - by Ezra on 06-28-2006 at 03:15 PM
RE: EMAIL VERIFICATION - by RaceProUK on 06-28-2006 at 03:39 PM
RE: EMAIL VERIFICATION - by novolo on 06-29-2006 at 02:31 AM
RE: EMAIL VERIFICATION - by rob_botch on 06-29-2006 at 09:41 AM


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