Shoutbox

[How-to]Change the Contact Search bar background - WLM 8.5 - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Skinning (/forumdisplay.php?fid=41)
+----- Thread: [How-to]Change the Contact Search bar background - WLM 8.5 (/showthread.php?tid=80913)

[How-to]Change the Contact Search bar background - WLM 8.5 by blessedguy on 01-13-2008 at 09:13 PM

One of the things you may want to do in your skin is make that contact search bar have another color, or even being transparent. It isn't hard to do, but it may be hard to find how to do it all by yourself, so, I'll tell a simple way for you to do it.
First of all, of course, you have to have the extracted resources from WLM 8.5 and your SkinInfo.xml, then search for the file "msgres_4005_1001.txt" in your extracted resources styles folder, open it, search for ai550, you will find this:

Element[ID=Atom(ai550)]
{
BorderColor:rcclr(20023);
}

Add a background color, or image, for example "Background:argb(100,145,206,242);" it should be like this:

Element[ID=Atom(ai550)]
{
Background:argb(100,145,206,242);
BorderColor:rcclr(20023);
}

Then, change the BorderColor to a color of your choice, for example:

Element[ID=Atom(ai550)]
{
Background:argb(100,145,206,242);
BorderColor:argb(100,145,206,242);
}

For better results, in the same file, search for ai558, you will find this:

Element[ID=Atom(ai558)]
{
Background:rcbkd(6);
}
Element[ID=Atom(ai559)]
{
Background:rcbkd(45717);
}

Change both rcbkd to a color of your choice, or to the same color as the contact search bar background, for example:

Element[ID=Atom(ai558)]
{
Background:argb(100,145,206,242);
}
Element[ID=Atom(ai559)]
{
Background:argb(100,145,206,242);
}

Then save the file in your Skin's folder.

Next, also open 44103 style file.Search for:

Element[id=atom(wordWheelTextBackground)]
{
MinSize: size(0,37);
Background:rcclr(20232);
AccName:rcstr(46364);
AccDesc:rcstr(46363);
Tooltip:true;
}
Element[id=atom(wordWheelTextContainer1)]
{
MinSize: size(0,37);
Background:rcclr(20232);
}

And edit it adding the colours of your choice, for example:

Element[id=atom(wordWheelTextBackground)]
{
MinSize: size(0,37);
Background:argb(100,145,206,242);
AccName:rcstr(46364);
AccDesc:rcstr(46363);
Tooltip:true;
}
Element[id=atom(wordWheelTextContainer1)]
{
MinSize: size(0,37);
Background:argb(100,145,206,242);
}


Now, we've gotta replace the old style 1001 and 44103 style with the new ones.
For example:

<Windows>
<Styles>
<Style Id="1001"><File>1001 Style.txt</File></Style>
<Style Id="44103"><File>44103 Style.txt</File></Style>
</Styles>
</Windows>

Save your SkinInfo.xml, restart your Windows Live Messenger 8.5, and your contac search bar should look like this:
[Image: imagemgh0.th.jpg]

Any problems, just reply. Enjoy!!


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Nagamasa on 02-17-2008 at 09:23 PM

It's not working...help?

code:
Element[ID=Atom(ai550)]
{
Background:argb(126,255,255,255);
BorderColor:argb(126,255,255,255);
}
Element[ID=Atom(ai558)]
{
Background:argb(126,255,255,255);
}
Element[ID=Atom(ai559)]
{
Background:argb(126,255,255,255);
}

RE: [How-to]Change the Contact Search bar background - WLM 8.5 by blessedguy on 02-17-2008 at 09:33 PM

could you send a screenshot please??
is there any Skin Trace.txt?
Did you see if you replaced ai550, then skiped ai551-ai557 and then replaced ai558-ai559?
Are you sure you replaced the Style in the skin info.xml?


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Nagamasa on 02-17-2008 at 09:52 PM

[Image: 84649099oa7.png]

quote:
Originally posted by blessedguy
is there any Skin Trace.txt?
There is, but that's from doing other things, which have already been fixed :P
quote:
Originally posted by blessedguy
Did you see if you replaced ai550, then skiped ai551-ai557 and then replaced ai558-ai559?
quote:
Originally posted by Nagamasa
code:
Element[ID=Atom(ai550)]
{
Background:argb(126,255,255,255);
BorderColor:argb(126,255,255,255);
}
Element[ID=Atom(ai558)]
{
Background:argb(126,255,255,255);
}
Element[ID=Atom(ai559)]
{
Background:argb(126,255,255,255);
}

quote:
Originally posted by blessedguy
Are you sure you replaced the Style in the skin info.xml?
Yes.
RE: [How-to]Change the Contact Search bar background - WLM 8.5 by blessedguy on 02-17-2008 at 10:12 PM

H'mm...I guess it's with the style 923.
Open it and search for

IMInput[id=atom(idSearchText)]

You should find this:

"element[id=atom(idmetoolbarcontainer)]
{
foreground:rcclr(639);
background:rcbkd(636);
}
IMInput[id=atom(idSearchText)]
{
foreground:rgb(51,51,51);
richeditstyle:PlainText|SaveSelection|AllowBeep;   
contentalign:middleleft;.....

Now add background:argb(0,0,0,0); to it, like this:

IMInput[id=atom(idSearchText)]
{
foreground:rgb(51,51,51);
richeditstyle:PlainText|SaveSelection|AllowBeep;   
contentalign:middleleft;
background:argb(0,0,0,0);
(...and more codes down here...)
Down there, there will be something like this(mine is already changed)

element[id=atom(idSearchTextBackground)]
{
contentalign:middleleft;
Foreground:argb(0,172,168,153);
background:argb(0,0,0,0);
}

I don't know if the foreground and background will be there, if they are, put background to argb:(0,0,0,0); and foreground to a colour of your choice, if there aren't just add them.


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Nagamasa on 02-17-2008 at 10:33 PM

Nope not working...:(


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by blessedguy on 02-17-2008 at 10:38 PM

Could you send me your 1001 style file please?


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Nagamasa on 02-17-2008 at 10:48 PM

Here it is. I dont quite remember if I took out your code or not.

Thanks :P


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by blessedguy on 02-20-2008 at 09:33 PM

ToolbarButton[ID=Atom(AbTbContactAdd)]
{
AccName:rcstr(49110);
AccDesc:rcstr(49110);
AccDefAction:rcstr(20068);
}


add an argb code inside this element

If it doesnt work, it is with another file...I'll post mine here, if you want to test anything
Good luck


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Nagamasa on 02-20-2008 at 10:46 PM

quote:
Originally posted by blessedguy
ToolbarButton[ID=Atom(AbTbContactAdd)]
{
AccName:rcstr(49110);
AccDesc:rcstr(49110);
AccDefAction:rcstr(20068);
}


add an argb code inside this element
Nope :( all that does is transparentize the button beside what I wanted to transparentize.
quote:
Originally posted by blessedguy

If it doesnt work, it is with another file...
Probably is...Willz, wanna shine some light here?
RE: RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Willz on 02-20-2008 at 11:28 PM

quote:
Originally posted by Nagamasa
quote:
Originally posted by blessedguy
ToolbarButton[ID=Atom(AbTbContactAdd)]
{
AccName:rcstr(49110);
AccDesc:rcstr(49110);
AccDefAction:rcstr(20068);
}


add an argb code inside this element
Nope :( all that does is transparentize the button beside what I wanted to transparentize.
quote:
Originally posted by blessedguy

If it doesnt work, it is with another file...
Probably is...Willz, wanna shine some light here?

ok naga, is it not working in the sense that it stuffs up your contact list entirely or in the sense that the contact list shows but the effect is not there?

If its the latter then please post a screen of what is happening. If it is the first one the post then SkinTrace results here.
RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Nagamasa on 02-20-2008 at 11:47 PM

quote:
Originally posted by Willz
ok naga, is it not working in the sense that it stuffs up your contact list entirely or in the sense that the contact list shows but the effect is not there?
Everything is fine, except I am not getting the intended affect. The Word Wheel is not transparentizing. Instead, the "Add a Contact" button beside the word wheel is being transparentized. Sorry being unclear before. As for the screenshot, I will if this still is confusing.
RE: RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Willz on 02-20-2008 at 11:53 PM

quote:
Originally posted by Nagamasa
quote:
Originally posted by Willz
ok naga, is it not working in the sense that it stuffs up your contact list entirely or in the sense that the contact list shows but the effect is not there?
Everything is fine, except I am not getting the intended affect. The Word Wheel is not transparentizing. Instead, the "Add a Contact" button beside the word wheel is being transparentized. Sorry being unclear before. As for the screenshot, I will if this still is confusing.

no, I get it I was guessing you were gonna say something like that. He just didn't write the tutorial properly :P

Its not complete.

Like yes 1001, makes the list transparent but for the word wheel itself you need to also edit the 44103 style to make the actual word wheel transparent.

find

Element[id=atom(wordWheelTextBackground)]
{
MinSize: size(0,37);
Background:rcclr(20232);
AccName:rcstr(46364);
AccDesc:rcstr(46363);
Tooltip:true;
}
Element[id=atom(wordWheelTextContainer1)]
{
MinSize: size(0,37);
Background:rcclr(20232);
}

And edit it accordingly

Blessedguy you should add this into your tutorial and always make sure that the tutorial works as promised. :)


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by blessedguy on 02-20-2008 at 11:55 PM

quote:
Originally posted by Willz
should add this into your tutorial and always make sure that the tutorial works as promised
It is now fixed. Thanks Willz.
And Nagamasa, did you get the effect you wanted now?
RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Nagamasa on 02-21-2008 at 01:30 AM

quote:
Originally posted by blessedguy
quote:
Originally posted by Willz
should add this into your tutorial and always make sure that the tutorial works as promised
It is now fixed. Thanks Willz.
And Nagamasa, did you get the effect you wanted now?
Yes I did. Thanks Willz, you've saved my skin for the millionth time. blessedguy, thanks to you too.
RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Basilis on 02-21-2008 at 04:17 PM

How can the wordwheel be moved below the contact list. I managed to make it go in the lower part of the contact list but there is a problem. when the contact list's background is white, the bar's background gets white also. But I want it to have the color that the sign in window has. So, when I make the contact list transparent, the wheel is for example red, but when it the CL background is white, the bar's background gets white, although the style file says it should be transparent.  So I figured out that the bar and the buttons must go below the contact list. How can this be done?


RE: [How-to]Change the Contact Search bar background - WLM 8.5 by blessedguy on 02-21-2008 at 05:17 PM

quote:
Originally posted by Basilis
How can the wordwheel be moved below the contact list. I managed to make it go in the lower part of the contact list but there is a problem. when the contact list's background is white, the bar's background gets white also. But I want it to have the color that the sign in window has. So, when I make the contact list transparent, the wheel is for example red, but when it the CL background is white, the bar's background gets white, although the style file says it should be transparent.  So I figured out that the bar and the buttons must go below the contact list. How can this be done?
This I can't tell you...but I wanted to ask one thing...how did you move that to the lower part of the buddy list?!?!
RE: [How-to]Change the Contact Search bar background - WLM 8.5 by Basilis on 02-22-2008 at 01:16 PM

quote:
Originally posted by me
How can the wordwheel be moved below the contact list. I managed to make it go in the lower part of the contact list but there is a problem. when the contact list's background is white, the bar's background gets white also. But I want it to have the color that the sign in window has. So, when I make the contact list transparent, the wheel is for example red, but when it the CL background is white, the bar's background gets white, although the style file says it should be transparent.  So I figured out that the bar and the buttons must go below the contact list. How can this be done?
quote:

See attached screenshot above