What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] Custom Contact List Title

[Request] Custom Contact List Title
Author: Message:
Mnjul
forum super mod
******

Avatar
plz wub me

Posts: 5396
Reputation: 58
– / Other / Flag
Joined: Nov 2002
Status: Away
RE: [Request] Custom Contact List Title
Javascript code:
function OnEvent_Initialize(bMessengerStart) { OnEvent_ContactListWndCreated(); }
function OnEvent_SigninReady(sEmail) { OnEvent_ContactListWndCreated(); }
function OnEvent_ContactListWndCreated() {
    if (Messenger.ContactListWndHandle === 0) return;
    var title = getTitle();
    var lpsz = Interop.Allocate(2*title.length+2);
    lpsz.WriteString(0, title);
    Interop.Call('user32', 'SendMessageW', Messenger.ContactListWndHandle, 0xC /* WM_SETTEXT */, 0, lpsz.DataPtr);
}
 
function getTitle(){
    if(Messenger.MyEmail == "blah@live.com") return "Account 1";
    else if(Messenger.MyEmail == "moreblah@live.com") return "Account 2";
    else return "Your WLM has been hacked!";
}

01-11-2009 07:11 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Request] Custom Contact List Title - by Knucks on 01-11-2009 at 05:13 PM
RE: [Request] Custom Contact List Title - by warmth on 01-11-2009 at 05:20 PM
RE: [Request] Custom Contact List Title - by matty on 01-11-2009 at 05:39 PM
RE: [Request] Custom Contact List Title - by Knucks on 01-11-2009 at 06:22 PM
RE: [Request] Custom Contact List Title - by matty on 01-11-2009 at 06:30 PM
RE: RE: [Request] Custom Contact List Title - by warmth on 01-27-2009 at 12:06 AM
RE: [Request] Custom Contact List Title - by Knucks on 01-11-2009 at 06:40 PM
RE: [Request] Custom Contact List Title - by Mnjul on 01-11-2009 at 07:11 PM
RE: [Request] Custom Contact List Title - by matty on 01-11-2009 at 07:11 PM
RE: [Request] Custom Contact List Title - by Knucks on 01-11-2009 at 07:22 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