Fitness.com
Advertisement

Go Back   Sports Forum > Community > Football Manager > Skinning Hideout

Skinning Hideout

Use this forum to help edit the cosmetic side of Football Manager.


» Site Navigation
 > Shop
» Current Poll
Best 5 club teams in history of Football:
Liverpool 1977-1978 - 100.00%
1 Vote
Real Madrid 1956-1960 - 0%
0 Votes
Juventus 1985 - 0%
0 Votes
Milan 1989-1990 - 100.00%
1 Vote
Ajax 1971-1973 - 0%
0 Votes
Santos 1962-1963 - 0%
0 Votes
Torinho 1940's - 100.00%
1 Vote
Ajax 1995 - 0%
0 Votes
Flamengo 1981 - 100.00%
1 Vote
Benfica 1961-1962 - 100.00%
1 Vote
Total Votes: 1
You may not vote on this poll.
» Stats
Members: 103,321
Threads: 84,992
Posts: 1,031,312
Top Poster: Karky (9,543)
Welcome to our newest member, linockahxurl
» Fitness Shop
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.

Reply
 
LinkBack Thread Tools Display Modes
Old 04-18-2006, 03:51 PM   [[help]] with colour-changing Post #1
Newb
 
Join Date: Jan 2008
Posts: 0
Rep Power: 0
retired_charityjayne is an unknown quantity at this point
Default [[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
retired_charityjayne is offline   Reply With Quote
Old 04-18-2006, 05:45 PM   [[help]] with colour-changing Post #2
Registered User
 
Join Date: May 2007
Posts: 0
Rep Power: 0
retired_vpoorni is an unknown quantity at this point
Default

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"> &lt;widget class="picture" id="pict" auto_size="vertical" file="navigation/titlebar" cached="true" rthr="68"&gt; &lt;layout class="stick_to_sides_attachment" alignment="horizontal" inset="0"/&gt; &lt;layout class="stick_to_sides_attachment" alignment="top" inset="0"/&gt; &lt;attachment class="get_global_attachment" get_property="bkcl" set_property="colr"/&gt; &lt;/widget&gt;</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"> &lt;!-- top of the sections area --&gt; &lt;widget class="picture" id="pict" auto_size="horizontal" file="navigation/tree" cached="true" &gt; &lt;layout class="stick_to_sides_attachment" alignment="all" inset="0"/&gt;</pre>

Change it to something like:

<pre class="ip-ubbcode-code-pre"> &lt;!-- top of the sections area --&gt; &lt;widget class="picture" id="pict" auto_size="horizontal" file="navigation/tree" cached="true" rthr="68"&gt; &lt;layout class="stick_to_sides_attachment" alignment="all" inset="0"/&gt; &lt;attachment class="get_global_attachment" get_property="bkcl" set_property="colr"/&gt;</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"> &lt;!-- bottom of the sections area --&gt; &lt;widget class="picture" id="bott" auto_size="horizontal" file="navigation/treelower" cached="true" group="1"&gt;</pre>
retired_vpoorni is offline   Reply With Quote
Old 04-18-2006, 06:51 PM   [[help]] with colour-changing Post #3
Registered User
 
Join Date: May 2007
Posts: 17
Rep Power: 0
Norfolk_boy is an unknown quantity at this point
Default

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"> &lt;flags id="style" value="outlined"/&gt;&lt;flags id="outline_colour" value="black"/&gt;</pre>

within the text widget to get a black outline.
Norfolk_boy is offline   Reply With Quote
Old 04-18-2006, 06:57 PM   [[help]] with colour-changing Post #4
Newb
 
Join Date: Jan 2008
Posts: 0
Rep Power: 0
retired_charityjayne is an unknown quantity at this point
Default

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???
retired_charityjayne is offline   Reply With Quote
Old 04-18-2006, 07:15 PM   [[help]] with colour-changing Post #5
Registered User
 
Join Date: May 2007
Posts: 0
Rep Power: 0
retired_vpoorni is an unknown quantity at this point
Default

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?)
retired_vpoorni is offline   Reply With Quote
Old 04-18-2006, 07:31 PM   [[help]] with colour-changing Post #6
Newb
 
Join Date: Jan 2008
Posts: 0
Rep Power: 0
retired_charityjayne is an unknown quantity at this point
Default

michael thanks for your help i got panel changing color just want transparent logo just wish there was a indepth guide
retired_charityjayne is offline   Reply With Quote
Old 04-18-2006, 08:05 PM   [[help]] with colour-changing Post #7
Registered User
 
Join Date: May 2007
Posts: 17
Rep Power: 0
Norfolk_boy is an unknown quantity at this point
Default

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.
Norfolk_boy is offline   Reply With Quote
Old 04-18-2006, 08:10 PM   [[help]] with colour-changing Post #8
Newb
 
Join Date: Jan 2008
Posts: 0
Rep Power: 0
retired_charityjayne is an unknown quantity at this point
Default

how do you do this rad...not very good with xml files could u show me please..thsx
retired_charityjayne is offline   Reply With Quote
Old 04-18-2006, 08:14 PM   [[help]] with colour-changing Post #9
Newb
 
Join Date: Jan 2008
Posts: 0
Rep Power: 0
retired_charityjayne is an unknown quantity at this point
Default

rad...wanna do it like u done ur in the itune skin so when the club changes its still faded
retired_charityjayne is offline   Reply With Quote
Old 04-18-2006, 09:21 PM   [[help]] with colour-changing Post #10
Newb
 
Join Date: Jan 2008
Posts: 0
Rep Power: 0
retired_charityjayne is an unknown quantity at this point
Default

why is is the part at the bottom not changed with the rest...part with...release comments,team selection etc...any help???
retired_charityjayne is offline   Reply With Quote
Reply

Go Back   Sports Forum > Community > Football Manager > Skinning Hideout

Bookmarks

Thread Tools
Display Modes


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.

All times are GMT +1. The time now is 06:20 AM.


Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Fitness.com | Weight Loss | Training & Fitness | BodyBuilding | Chinese | Spanish | French | Germany | Italian | Friend Codes |
You are viewing [[help]] with colour-changing.