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

Notify StatusChange 1.1
Author: Message:
diddy81
New Member
*


Posts: 1
Joined: Jul 2009
O.P. Notify StatusChange 1.1
hi im new to this scripting stuff

i downloaded Notify StatusChange 1.1 but its in french so i translated it to English

it works but it calls the email of contact in the notify box
i want it to show their display name

so i checked the Scripting Documentation which told me the string was "Name"

so i changed every "Email" in the script to "Name" it don't work
can anyone help by doing this for me or pointing me in the right direction

my translated version is below
code:
/*
       Notify statusChanges 1.1


  This script displays a popup with the Email address and the new status of your contact when it modifies.

  I distribute it freely, so please do not change the code, thank you.

  Bon courage! ;)

  WaLd39 (wald39@hotmail.com)

*/

function OnEvent_ContactStatusChange(Email, Status)
{
    switch(Status)
    {
        case 3:
        var MyStatus = "Online";
        break;
        case 4:
        var MyStatus = "Busy";
        break;
        case 5:
        var MyStatus = "Back in a minute";
        break;
        case 7:
        var MyStatus = "Away";
        break;
        case 8:
        var MyStatus = "On the phone";
        break;
        case 9:
        var MyStatus = "out to lunch";
        break;
        default:
        var MyStatus = "Idle";
    }   

    var Message = Email + " has changed his status to " + MyStatus;
    Message = MsgPlus.RemoveFormatCodes(Message);
    MsgPlus.DisplayToast("", Message, "newalert.wma", "OnClick", Email);
}

function OnClick(Email)
{
    Messenger.OpenChat(Email);
}
07-30-2009 04:45 PM
Profile E-Mail PM Find Quote Report
SmokingCookie
Senior Member
****

Avatar

Posts: 815
Reputation: 15
30 / Male / Flag
Joined: Jul 2007
RE: Notify StatusChange 1.1
Replace the code after the switch-case block (until the end of the function) with this:

JScript code:
var sName = Messenger.MyContacts.GetContact(Email).Name; // Retrieve the contact's display name
var Message = sName + " has changed their status to " + MyStatus;// Generate the message
Message = MsgPlus.RemoveFormatCodes(Message); // Remove formatting
MsgPlus.DisplayToast("",Message,"newalert.wma","OnClick",Email); // Display the toast and send the email address along with it

07-31-2009 12:51 PM
Profile PM 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