What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Skype & Live Messenger » change font colour in main msn window

change font colour in main msn window
Author: Message:
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
32 / Male / Flag
Joined: Apr 2004
RE: change font colour in main msn window
Sure you can, by ResHacking msnmsgr.exe! That's some sort of skinning. ;)

When you say
quote:
Originally posted by the topic title
...in main msn window
I guess you're talking about the list where your contacts are in (note me if not). Here comes a small tutorial:
  1. Download and open Resource Hacker.
  2. Make sure MSN Messenger is completly closed, this means there's no MSN icon in the system tray anymore.
  3. In the menu, go to File > Open and browse to C:\Program Files\MSN Messenger\msnmsgr.exe.
  4. You'll now see a bunch of folders in the left panel. Dubble-click UIFILE and then 936.
  5. There, you can choose what to change. If you want to edit...
    • ...the color of the contact's name: look at line 138 for
      code:
      emoticontext[id=atom(buddyname)]
      {
      layoutpos:left;
      fontweight:normal;
      contentalign:bottomleft|endellipsis;
      padding:rect(0,0,0,0);
      richeditstyle:PlainText|HideSelection|DisableDrag|ReadOnly;
      }
      and add the following line to it:
      code:
      emoticontext[id=atom(buddyname)]
      {
      layoutpos:left;
      fontweight:normal;
      contentalign:bottomleft|endellipsis;
      padding:rect(0,0,0,0);
      richeditstyle:PlainText|HideSelection|DisableDrag|ReadOnly;
      foreground:rgb(r,g,b);
      }
      where r is the red amount, g is the green amount and b is the amount of blue.

    • ...the color of the statusses: look at line 146 and change:
      code:
      element[id=atom(buddystatus)]
      {
      layoutpos:left;
      fontweight:normal;
      foreground:graytext;
      contentalign:middleleft|endellipsis;
      padding:rect(0,0,0,0);
      }
      element[id=atom(buddystatus)][dropfocus]
      {
      foreground:rgb(255,128,0);
      }
      to:
      code:
      element[id=atom(buddystatus)]
      {
      layoutpos:left;
      fontweight:normal;
      foreground:rgb(r,g,b);
      contentalign:middleleft|endellipsis;
      padding:rect(0,0,0,0);
      }
      element[id=atom(buddystatus)][dropfocus]
      {
      foreground:rgb(r,g,b);
      }
      again with r, g, b representing their respective color amounts.

    • ...the color of the personal messages: look at line 168 and change:
      code:
      emoticontext[id=atom(idPSMText)]
      {
      layoutpos:left;
      fontweight:normal;
      fontstyle:rcint(2007);
      foreground:windowtext;
      contentalign:bottomleft|endellipsis;
      padding:rect(1,0,2,0);
      richeditstyle:PlainText|HideSelection|DisableDrag|ReadOnly;
      }
      emoticontext[id=atom(idPSMText)][selected]
      {
      foreground:ifhc(highlighttext,black);
      }
      emoticontext[id=atom(idPSMText)][dropfocus]
      {
      foreground:rgb(255,128,0);
      }
      to:
      code:
      emoticontext[id=atom(idPSMText)]
      {
      layoutpos:left;
      fontweight:normal;
      fontstyle:rcint(2007);
      foreground:rgb(r,g,b);
      contentalign:bottomleft|endellipsis;
      padding:rect(1,0,2,0);
      richeditstyle:PlainText|HideSelection|DisableDrag|ReadOnly;
      }
      emoticontext[id=atom(idPSMText)][selected]
      {
      foreground:rgb(r,g,b);
      }
      emoticontext[id=atom(idPSMText)][dropfocus]
      {
      foreground:rgb(r,g,b);
      }
      with the same thing for r, g and b.
  6. When you're finished editting, press Compile Script and then go File > Save to save your changes. Now run MSN Messenger and see what happened!
I hope that helped. :)

This post was edited on 05-21-2006 at 06:47 AM by Matti.
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
05-21-2006 06:42 AM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
change font colour in main msn window - by vaiper on 05-20-2006 at 11:35 PM
RE: change font colour in main msn window - by qgroessl on 05-21-2006 at 05:10 AM
RE: change font colour in main msn window - by Matti on 05-21-2006 at 06:42 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