What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Help » Hide Contact's Email

Hide Contact's Email
Author: Message:
Dex Luther
Junior Member
**

Avatar

Posts: 88
38 / Male / Flag
Joined: Jan 2006
O.P. Hide Contact's Email
Unfortunately, I have a few friends that still find it funny to look over someone's shoulder to see who they're talking to, and then add that person to their own list once you're gone (especially if it's a good looking girl). I was wondering if there was a patch/script out there that would hide your contact's email in the conversation window's title bar?

Thanks in advance for the help.
05-27-2010 02:54 AM
Profile PM Find Quote Report
Chris4
Elite Member
*****

Avatar

Posts: 4461
Reputation: 84
32 / Male / Flag
Joined: Dec 2004
RE: Hide Contact's Email
There isn't a patch or script to do it afaik.

The only way would be with Resource Hacker (most likely opening C:\Program Files\Windows Live\Messenger\msgslang.<version number>.dll)

Tried looking for ages but I can't find what exactly you need to edit.

Source: rename title bar - Mess.be Forum
Twitter: @ChrisLozeau
05-27-2010 03:46 PM
Profile PM Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
RE: Hide Contact's Email
I created a script a while ago that does exactly what you're asking for:

djdannyp's reply to View Contact Name only (no e-mail) on Tab

There's a little flaw in it given that WLM updates the name occasionally by itself to take name changes into account, but closing and re-opening the window would cause the e-mail address to disappear again

This post was edited on 05-27-2010 at 07:37 PM by djdannyp.
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5216 days, 8 hours, 21 minutes, 30 seconds ago
05-27-2010 07:36 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Hide Contact's Email
Doing something like this will update the Chat Windows every 10 seconds and when they are opened as well.

Javascript code:
MsgPlus.AddTimer('update_names', 10000);
 
function OnEvent_ChatWndCreated(pChatWnd) {
    var s;
 
    for (oContact = new Enumerator(pChatWnd.Contacts); !oContact.atEnd(); oContact.moveNext())
        s+=oContact.item().Name+(!oContact.atEnd()?', ':'');
 
    Interop.Call('user32', 'SetWindowTextW', pChatWnd.Handle, MsgPlus.RemoveFormatCodes(s));
}
 
function OnEvent_Timer(sTimerId) {
    for (var oChatWnd = new Enumerator(Messenger.CurrentChats); !oChatWnd.atEnd(); oChatWnd.moveNext()) {
        OnEvent_ChatWndCreated(oChatWnd.item());
    }
    MsgPlus.AddTimer(sTimerId, 10000);
}


Cheers

This post was edited on 05-27-2010 at 07:58 PM by matty.
05-27-2010 07:53 PM
Profile E-Mail PM Find Quote Report
djdannyp
Elite Member
*****

Avatar
Danny <3 Sarah

Posts: 3546
Reputation: 31
37 / Male / Flag
Joined: Mar 2006
RE: Hide Contact's Email
I hadn't changed it to add a timer because Cookie said it would be pretty resource intensive adding that in, forcing it to check every 10 seconds for changes?

But I dunno
[Image: 1ftt0hpk-signature.png]
AutoStatus Script || Facebook Status Script
5216 days, 8 hours, 21 minutes, 30 seconds ago
05-27-2010 09:13 PM
Profile E-Mail 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