What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Skinning » [Help] Group bars

Pages: (3): « First « 1 [ 2 ] 3 » Last »
[Help] Group bars
Author: Message:
LuckyMe
Skinning Contest Winner
***

Avatar

Posts: 147
Reputation: 7
– / Male / Flag
Joined: Feb 2008
Status: Away
RE: [Help] Group bars
Thanks Stu, im gonna check it and then i get back to comments results.

This post was edited on 05-06-2008 at 10:37 PM by LuckyMe.
04-09-2008 05:10 PM
Profile E-Mail PM Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
RE: [Help] Group bars
it can be replaced with a custom image using the process i stated above, let me know how you get on.
04-09-2008 05:14 PM
Profile E-Mail PM Web Find Quote Report
blessedguy
Skinning Contest Winner
*****


Posts: 1762
Reputation: 25
31 / Male / Flag
Joined: Jan 2008
RE: [Help] Group bars
tks stuart!
i'll try that on aurora live
[Image: Empty.png]
04-09-2008 05:17 PM
Profile PM Web Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
RE: [Help] Group bars
your welcome blessedguy im glad i could help, so many skins have inspired me and the features i have put into 365, it is nice that for once my skin is one of the skins that inspires others and helps them to improve their skins bringing about a continuous circle of "inspirational evolution" which i hope will help us all to push the boundaries of skinning further and further and in turn inspire patchou to extend skinnings functionallity so as to inspire the creation of even better skins in a never ending cycle of constantly improving developement.
04-09-2008 06:01 PM
Profile E-Mail PM Web Find Quote Report
vikke
Senior Member
****

Avatar

Posts: 900
Reputation: 28
31 / Male / Flag
Joined: May 2006
RE: RE: [Help] Group bars
quote:
Originally posted by Basilis
I fixed that but now an another problem occurred. The pictures are not displayed properly. They get stretched. I put Willz's bar to check if it happens with every bar and with Willz's bar it was working great. I made the dimensions the same as Willz's and the problem continues. See the screenshot


Use the <Metadata> tag for your picture in your SkinInfo.xml, it handles stretching and colorization. More information about the tag in the skinning documentation, good luck!
4 8 15 16 23 42
04-09-2008 07:15 PM
Profile E-Mail PM Find Quote Report
blessedguy
Skinning Contest Winner
*****


Posts: 1762
Reputation: 25
31 / Male / Flag
Joined: Jan 2008
RE: [Help] Group bars
well...basilis...
as you will already read this, i'll ask you sth
why don't you use custom code with the group bars "expand/collapse" shortcut?
[Image: Empty.png]
04-09-2008 07:20 PM
Profile PM Web Find Quote Report
Basilis
Veteran Member
*****

Avatar
Olympiacos CFP

Posts: 1366
Reputation: 46
30 / Male / Flag
Joined: Dec 2007
O.P. RE: [Help] Group bars
Can you explain further what expand/collapse code is? I have never heard of it.*-)
[Image: logo1nu1.png]
04-09-2008 07:23 PM
Profile PM Find Quote Report
LuckyMe
Skinning Contest Winner
***

Avatar

Posts: 147
Reputation: 7
– / Male / Flag
Joined: Feb 2008
Status: Away
RE: RE: [Help] Group bars
quote:
Originally posted by stuartbennett
it can be replaced with a custom image using the process i stated above, let me know how you get on.

The code you gave me works pretty fine, you´re AWESOME, but i really want to put an image herE, so i hope you tell me how to do it.
Thanks a lot
04-09-2008 08:21 PM
Profile E-Mail PM Find Quote Report
stuartbennett
Senior Member
****

Avatar

Posts: 952
Reputation: 1
43 / Male / Flag
Joined: Nov 2003
RE: RE: RE: [Help] Group bars
quote:
Originally posted by LuckyMe
quote:
Originally posted by stuartbennett
it can be replaced with a custom image using the process i stated above, let me know how you get on.

The code you gave me works pretty fine, you´re AWESOME, but i really want to put an image herE, so i hope you tell me how to do it.
Thanks a lot

ok i haven't tried this yet however change

quote:
Background:rgb(0,0,0);


to

quote:
Background:rcbkd(59020);


or maybe to

quote:
Background:rcimg(59020);


where 59020 is the resource number of the image to be used for the replace, then define 59020 in your skininfo file so it refers to the desired image, im not sure if its supposed to be rcbkd or rcimg but one of them should work, remember when setting your replace in skininfo it goes under new as its a 59xxx numbered resource and you need to set some ummargins which are

UMLeft
UMTop
UMRight
UMBottom

they must be set in that order under your metadata part of your replace for example

quote:
<New>
<Pictures>
<Picture Id="59020">
<File>59020.png</File>
<Metadata>
<UMLeft>5</UMLeft>
<UMTop>5</UMTop>
<UMRight>5</UMRight>
<UMBottom>5</UMBottom>
</Metadata>
</Picture>
</Pictures>
</New>


i hope this helps, please remember i havent actually tested it but that should work.
04-09-2008 08:59 PM
Profile E-Mail PM Web Find Quote Report
blessedguy
Skinning Contest Winner
*****


Posts: 1762
Reputation: 25
31 / Male / Flag
Joined: Jan 2008
RE: [Help] Group bars
quote:
Originally posted by Basilis
Can you explain further what expand/collapse code is? I have never heard of it.*-)
Under line 32 (of the unchanged styles 1004/1009), you'll find:
code:
Element[Class="ExpandCollapseIcon"]
{
ContentAlign:MiddleCenter;
Content:rcimg(1382);
}
Element[Class="ExpandCollapseIcon"][MouseFocused]
{
Content:rcimg(1383);
}

then replace it (on both 1004/1009), with your custom code:
code:
Element[Class="ExpandCollapseIcon"][ContentIndex=0]
{
ContentAlign:MiddleCenter;
Content:rcimg(59001);
}
Element[Class="ExpandCollapseIcon"][ContentIndex=1]
{
ContentAlign:MiddleCenter;
Content:rcimg(59002);
}
Element[Class="ExpandCollapseIcon"][MouseFocused][ContentIndex=0]
{
Content:rcimg(59003);
}
Element[Class="ExpandCollapseIcon"][MouseFocused][ContentIndex=1]
{
Content:rcimg(59004);
}

of course, with your pic ids...i used them as an example!
here's the result:[Image: screeniemr4.jpg]


By the way...thanks stuart!
the bar img worked!

This post was edited on 04-09-2008 at 09:31 PM by blessedguy.
[Image: Empty.png]
04-09-2008 09:14 PM
Profile PM Web Find Quote Report
Pages: (3): « First « 1 [ 2 ] 3 » Last »
« 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