| » Stats |
Members: 103,321
Threads: 84,992
Posts: 1,031,312
Top Poster: Karky (9,543) | | Welcome to our newest member, linockahxurl | |
If you register for free, you will be able to post threads, vote on polls and lots more. If you have problems with the registration or logging in, please contact the administrator.
 | |
04-18-2006, 03:51 PM
|
[[help]] with colour-changing Post #1 | | Newb
Join Date: Jan 2008
Posts: 0
Rep Power: 0 | [[help]] with colour-changing
was wondering if i could get some help with something im trying to do.
im trying too recolour side panel (sections)
so its colour changing too the team you go...just wanna know how you do this?
secondly...how do you move the side panel up & down like re-size it?
just working on a skin wanna do those couple things be great if anyone could help me out on this...thxs
|
| |
04-18-2006, 05:45 PM
|
[[help]] with colour-changing Post #2 | | Registered User
Join Date: May 2007
Posts: 0
Rep Power: 0 | Giving Side Panel Changing Colours
The shade of red doesn't really matter (R=255, or R=227 with G=0 and B=0 are the common reds in the game).
You need to add an extra bit of code to the line that calls the graphic you want recolouring.
For a good example of how to do team coloured panels check out the chameleon2006 skin included with the game.
You need to adjust the code so it looks something like this (This is for the header as the clubs colour):
<pre class="ip-ubbcode-code-pre"> <widget class="picture" id="pict" auto_size="vertical" file="navigation/titlebar" cached="true" rthr="68"> <layout class="stick_to_sides_attachment" alignment="horizontal" inset="0"/> <layout class="stick_to_sides_attachment" alignment="top" inset="0"/> <attachment class="get_global_attachment" get_property="bkcl" set_property="colr"/> </widget></pre>
The important bit is adding the rthr="68" to the first line, and the final line where bkcl - tells the game to get the teams background colour, middle lines just control the positioning. Replacing bkcl with fcol will use the teams text colour. (You can not add trim or away/third colours.)
You need to adjust the code in the sections.xml file located in the panels folder.
The default sections code looks something like this:
<pre class="ip-ubbcode-code-pre"> <!-- top of the sections area --> <widget class="picture" id="pict" auto_size="horizontal" file="navigation/tree" cached="true" > <layout class="stick_to_sides_attachment" alignment="all" inset="0"/></pre>
Change it to something like:
<pre class="ip-ubbcode-code-pre"> <!-- top of the sections area --> <widget class="picture" id="pict" auto_size="horizontal" file="navigation/tree" cached="true" rthr="68"> <layout class="stick_to_sides_attachment" alignment="all" inset="0"/> <attachment class="get_global_attachment" get_property="bkcl" set_property="colr"/></pre>
You also need to adjust the lower part of the tree controlled by the bit of code starting:
<pre class="ip-ubbcode-code-pre"> <!-- bottom of the sections area --> <widget class="picture" id="bott" auto_size="horizontal" file="navigation/treelower" cached="true" group="1"></pre>
|
| |
04-18-2006, 06:51 PM
|
[[help]] with colour-changing Post #3 | | Registered User
Join Date: May 2007
Posts: 17
Rep Power: 0 |
There are so many issues with this I think it's very difficult to get something looking good.
Obviously you need to make the text colour change too (which means altering not only sections but also 'team actions' and 'match controls' where text is set) setting the colour to 'fcol' the same way you do for a picture with 'bkcl'. However I think with some teams it is far too hard to make out - Like the blue and red of barca. It's ok for the small area in the header but not for a side menu full of options.
Probably the biggest problem - the highlighted colour for the side menu is not configurable on its own (it is the same colour as the title of boxes for instance - default = yellow). No matter what colour you have it it will always clash with one team or another.
You can add a coloured outline to text which might make a difference however. Add:
<pre class="ip-ubbcode-code-pre"> <flags id="style" value="outlined"/><flags id="outline_colour" value="black"/></pre>
within the text widget to get a black outline.
|
| |
04-18-2006, 06:57 PM
|
[[help]] with colour-changing Post #4 | | Newb
Join Date: Jan 2008
Posts: 0
Rep Power: 0 |
THANKS FOR HELPING but was wondering if you could make it sound easier michael...only side panel i wanna do? anymore help would be apreciated...also do u know how too transparent logos like itune skin???
|
| |
04-18-2006, 07:15 PM
|
[[help]] with colour-changing Post #5 | | Registered User
Join Date: May 2007
Posts: 0
Rep Power: 0 |
The side panel is the hardest screen to have recolouring due to the factors stated by radestock (India are the worst - blue background with light blue text).
If you really want to do it you just need to change the code from the sections.xml file - adding the rthr bit and also adding the final line with the bkcl bit in - adjusting the code for the top of the sections menu and bottom bit.
Also depending on what you are doing you may also need to adjust the text so it appears as the clubs text colour rather than the default white.
For the transparent logos, look at the header.xml file for the itunes skin. (I expect it's either done through adding a semi-transparent layer over the top of the logos, or I think I've seen a setting/code that can reduce the opacity of bits of the screen?)
|
| |
04-18-2006, 07:31 PM
|
[[help]] with colour-changing Post #6 | | Newb
Join Date: Jan 2008
Posts: 0
Rep Power: 0 |
michael thanks for your help i got panel changing color just want transparent logo just wish there was a indepth guide
|
| |
04-18-2006, 08:05 PM
|
[[help]] with colour-changing Post #7 | | Registered User
Join Date: May 2007
Posts: 17
Rep Power: 0 |
the faded logo is done by having a semi transparent graphic over the top of the logo - so you can see the logo through it but it appears faded.
|
| |
04-18-2006, 08:10 PM
|
[[help]] with colour-changing Post #8 | | Newb
Join Date: Jan 2008
Posts: 0
Rep Power: 0 |
how do you do this rad...not very good with xml files could u show me please..thsx
|
| |
04-18-2006, 08:14 PM
|
[[help]] with colour-changing Post #9 | | Newb
Join Date: Jan 2008
Posts: 0
Rep Power: 0 |
rad...wanna do it like u done ur in the itune skin so when the club changes its still faded
|
| |
04-18-2006, 09:21 PM
|
[[help]] with colour-changing Post #10 | | Newb
Join Date: Jan 2008
Posts: 0
Rep Power: 0 |
why is is the part at the bottom not changed with the rest...part with...release comments,team selection etc...any help???
|
| |  | | | Thread Tools | | | | Display Modes | Linear Mode |
Similar threads to [[help]] with colour-changing | | Thread | Thread Starter | Forum | Replies | Last Post | Skin changing colour?!
Skin changing colour?!: Hi, whichever skin i try, i've downloaded a few,... | cdeacon | Skinning Hideout | 3 | 01-19-2008 02:30 PM | Changing the colour of your custom kit...
Changing the colour of your custom kit...: How do you do it because i am on paintshop pro... | Ben5ive | Skinning Hideout | 4 | 05-28-2007 10:14 PM | Changing competitions colour
Changing competitions colour: I want to change the competitions colour, e.g.... | Indy B | Skinning Hideout | 0 | 10-22-2006 06:24 PM | Panel Colour Changing
Panel Colour Changing: Hey People how do i change the colours of the... | Alan Key | Skinning Hideout | 0 | 08-16-2006 12:24 AM | Colour changing breadcrumb?
Colour changing breadcrumb?: Right, Ive just started making a skin and Ive... | Geordie_Gaz | Skinning Hideout | 5 | 04-25-2006 07:38 PM |
More threads of Willz | | Thread | Date | Forum | Replies | Last Post | removing my league logo from squad screen
removing my league logo from squad screen: how can i take the league logo off my titlebar on...
| 03-03-2006 | Skinning Hideout | 5 | 03-04-2006 03:07 PM | change fonts size score
change fonts size score: how can i change fonts size in match screen for...
| 03-02-2006 | Skinning Hideout | 1 | 03-02-2006 07:23 PM | TLSS,MNSS - etc,etc what they mean in XML
TLSS,MNSS - etc,etc what they mean in XML: TITLE PROPERTIES
"tlss" value="23"
"tlsn"...
| 03-01-2006 | Skinning Hideout | 1 | 03-01-2006 07:02 PM | wanna become coach ater playing
wanna become coach ater playing: i edited myself in game editor...but i wanted to...
| 02-15-2006 | Skinning Hideout | 2 | 02-16-2006 04:29 PM | what attributes do i need for those players inside
what attributes do i need for those players inside: what attibutes would i need for a player to be...
| 01-18-2006 | Skinning Hideout | 1 | 01-18-2006 11:31 AM |
Other threads in forum Skinning Hideout | | Thread | Date | Thread Starter | Replies | Last Post | Montenegro league - download!
Montenegro league - download!: www.fm-serbia.net created unplayable Montenegro...
| 01-22-2007 | rosoner | 2 | 01-22-2007 09:36 PM | where to download patch 6.0.3
where to download patch 6.0.3: please help and tell me where to download the...
| 04-10-2006 | dabrettster | 1 | 04-10-2006 07:03 PM | Where have my Comp name's Gone
Where have my Comp name's Gone: Before starting the game i put all the real names...
| 01-01-2006 | jaylg | 14 | 01-03-2006 06:54 PM | Does anyone know...
Does anyone know...: I heard there is a program for fm 06 that clears...
| 12-22-2005 | whatagawn | 0 | 12-22-2005 04:50 AM | Manchester city skin
Manchester city skin: i have posted on the skin request for one,...
| 03-27-2005 | ms1983 | 1 | 03-27-2005 12:25 PM | | » Online Users: 17 | | 0 members and 17 guests | | No Members online | | Most users ever online was 2,128, 07-21-2008 at 08:27 PM. | |