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,356
Threads: 84,986
Posts: 1,031,253
Top Poster: Karky (9,545)
Welcome to our newest member, ankkaewrae
» 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 12-16-2005, 01:17 PM   moving logos over abit [help] Post #1
Newb
 
Join Date: Jan 2008
Posts: 0
Rep Power: 0
retired_charityjayne is an unknown quantity at this point
Default moving logos over abit [help]

how do you move the rotated logos over a bit im using remix skin just wanna move them over cause the writing over laps them,what xml do i do & how do u do it.
retired_charityjayne is offline   Reply With Quote
Old 12-16-2005, 03:16 PM   moving logos over abit [help] Post #2
Registered User
 
Join Date: May 2007
Posts: 0
Rep Power: 0
retired_vpoorni is an unknown quantity at this point
Default

You need to open header.xml in either notepad/worpad or web page editor.

Located in:
\Football Manager 2006\data\skins\SKIN_NAME\panels

I suggest you back up the file before editing it. You also may need to unread-only it.

This bit of code controls the placement of the right hand logo (usualy the club one):

<pre class="ip-ubbcode-code-pre"> &lt;widget class="picture" id="logo" auto_size="all"&gt;&lt;layout class="stick_to_sides_attachment" alignment="right" inset="220" /&gt;&lt;layout class="stick_to_sides_attachment" alignment="top" inset="8" /&gt;&lt;attachment class="get_global_attachment" get_property="mnpc" set_property="file" skip_if_null="false"/&gt;&lt;/widget&gt; </pre>

alignment="right" inset="220" - controls how far from the right of the screen the logo appears (bigger number moves it to the centre/left, smaller number to the right.

alignment="top" inset="8" - How far from the top of the screen it appears, small number top of the screen.

Numbers are in pixels.

This code controls the placement of the left logo (comp logo):

<pre class="ip-ubbcode-code-pre">&lt;widget class="picture" id="logo" auto_size="all"&gt;&lt;layout class="stick_to_sides_attachment" alignment="left" inset="220" /&gt;&lt;layout class="stick_to_sides_attachment" alignment="top" inset="8" /&gt;&lt;attachment class="get_global_attachment" get_property="scpc" set_property="file" skip_if_null="false"/&gt;&lt;/widget&gt; </pre>

I suggest you give them both the same top alignment, and you'll never be able to get it so that no club or players position info covers the logo - as some stretch right to the date and user name.
retired_vpoorni is offline   Reply With Quote
Old 12-16-2005, 05:10 PM   moving logos over abit [help] Post #3
Newb
 
Join Date: Jan 2008
Posts: 0
Rep Power: 0
retired_charityjayne is an unknown quantity at this point
Default

next task michael how do i move my name in the titlebar at the top so it sits in centre with my logos at each side.

i would like 2 put the logos beside each other and have the names or clubs beside it like the aurora skin.can u help with that.
retired_charityjayne is offline   Reply With Quote
Old 12-16-2005, 06:33 PM   moving logos over abit [help] Post #4
Registered User
 
Join Date: May 2007
Posts: 0
Rep Power: 0
retired_vpoorni is an unknown quantity at this point
Default

Your name and your team name (the bits to the far right of the screen) should be controled by this lot of code, found near the bottom of the header.xml file:

<pre class="ip-ubbcode-code-pre"> &lt;container id="ZDr1"&gt; &lt;layout class="arrange_vertical_attachment" alignment="top" offset="16"/&gt; &lt;layout class="stick_to_sides_attachment" alignment="horizontal" layout_children="true" inset="16"/&gt; &lt;widget class="text" id="pers" text="" standard_spec="text" style="embossed" alignment="right" auto_size="vertical" multiline="false"&gt; &lt;attachment class="get_global_attachment" get_property="user" set_property="text"/&gt; &lt;/widget&gt; &lt;widget class="text" id="team" text="" standard_spec="text" style="embossed" alignment="right" auto_size="vertical"&gt; &lt;attachment class="get_global_attachment" get_property="Tnam" set_property="text"/&gt; &lt;/widget&gt; &lt;/container&gt;</pre>

These two lines of the above code should control the placement:

<pre class="ip-ubbcode-code-pre"> &lt;layout class="arrange_vertical_attachment" alignment="top" offset="16"/&gt; &lt;layout class="stick_to_sides_attachment" alignment="horizontal" layout_children="true" inset="16"/&gt;</pre>

You may need to change the aligment from horizontal to left or right, and change inset to offset. Leaving it how it is, increasing the inset value should shift the data to the left, decreasing should shift it to the right. (I haven't changed this myself, but that should be right).

And incase you ask . The date on the left side is controled by this code in the header file:

<pre class="ip-ubbcode-code-pre"> &lt;container&gt; &lt;layout class="arrange_vertical_attachment" alignment="top" offset="16"/&gt; &lt;layout class="stick_to_sides_attachment" alignment="horizontal" inset="16" layout_children="true"/&gt; &lt;widget class="date_cell" id="date" text="date" standard_spec="text" style="embossed" alignment="top, left" auto_size="vertical"&gt; &lt;attachment class="get_global_attachment" get_property="date" set_property="valu"/&gt; &lt;attachment class="test_global_attachment" get_property="cont" value="-8" set_property="hidn" skip_if_null="false" skip_if_resetting="false" priority="1"/&gt; &lt;string id="format"&gt; [%date#1-day] [%date#1-time] &lt;/string&gt; &lt;/widget&gt; &lt;widget class="date_cell" id="date" text="date" standard_spec="text" style="embossed" alignment="top, left" auto_size="vertical"&gt;&lt;attachment class="get_global_attachment" get_property="date" set_property="valu"/&gt;&lt;attachment class="test_global_attachment" get_property="cont" value="-8" set_property="hidn" skip_if_null="false" skip_if_resetting="false" priority="1"/&gt;&lt;string id="format"&gt;[%date#1-long_no_day]&lt;/string&gt;&lt;/widget&gt; &lt;/container&gt;</pre>

Which is located around the middle of the file. And is coded the same way as your user name, above.

The main title, flag, subtitle etc... is controled by this load of code, located inbetween the date and user code:

<pre class="ip-ubbcode-code-pre"> &lt;container id="tita"&gt; &lt;container height="48"&gt; &lt;layout class="arrange_vertical_attachment" alignment="bottom,extend" offset="0" gap="0"/&gt; &lt;layout class="stick_to_sides_attachment" alignment="horizontal" layout_children="true"/&gt; &lt;layout class="stick_to_sides_attachment" alignment="top,horizontal" inset="10"/&gt;&lt;!-- title area --&gt; &lt;widget class="text" id="sect" standard_spec="title,large" alignment="centre"&gt; &lt;attachment class="get_global_attachment" get_property="titl" set_property="text"/&gt; &lt;attachment class="get_global_attachment" get_property="fcol" set_property="colr"/&gt; &lt;/widget&gt; &lt;!-- subtitle area --&gt; &lt;container height="20"&gt;&lt;layout class="stick_to_sides_attachment" alignment="vertical" inset="0" layout_children="true"/&gt;&lt;layout class="centre_in_parent_attachment" alignment="horizontal" layout_children="true"/&gt; &lt;!-- hide when no subtitle --&gt;&lt;attachment class="test_global_attachment" get_property="subt" skip_if_null="false" set_property="hidn"/&gt; &lt;container&gt;&lt;layout class="arrange_horizontal_attachment" alignment="left" offset="0" gap="8"/&gt; &lt;layout class="fit_children_attachment" alignment="horizontal,fill" offset="0" gap="8"/&gt;&lt;layout class="stick_to_sides_attachment" alignment="vertical" inset="0" layout_children="true"/&gt;&lt;!-- flag --&gt;&lt;widget class="nation_button" id="stfl" auto_size="horizontal" icon_alignment="right,can_scale" dspf="4"&gt;&lt;attachment class="test_global_attachment" get_property="stfl" skip_if_null="false" set_property="hidn"/&gt;&lt;attachment class="get_global_attachment" get_property="stfl" set_property="valu"/&gt; &lt;/widget&gt;&lt;!-- description --&gt; &lt;widget class="text" id="subs" standard_spec="text" alignment="centre" mlti="false" auto_size="horizontal"&gt;&lt;attachment class="get_global_attachment" get_property="subt" set_property="text"/&gt; &lt;attachment class="get_global_attachment" get_property="fcol" set_property="colr"/&gt;&lt;/widget&gt; &lt;/container&gt; &lt;/container&gt; &lt;/container&gt; &lt;/container&gt;</pre>

If you want your header to look like Auora, your best off opening the header file for the Auroa skin and seeing how the above code is different.

All the code I've posted is from the Metallic skin, just so you know what the above code looks like in game. The code in the header for the remix skin, may look slightly different depending on how much the skin maker has edited the skin.
retired_vpoorni is offline   Reply With Quote
Old 12-16-2005, 09:40 PM   moving logos over abit [help] Post #5
Newb
 
Join Date: Jun 2007
Posts: 0
Rep Power: 0
retired_prettygirl9156 is an unknown quantity at this point
Default

I'm trying the above with the Turnstyle skin to cure this problem

http://community.sigames.com/eve/forums/a/tpc/f/420...292065581#1292065581

Unfortunately - I cannot seem to find the relevant bit that I need to edit.

(methinks down to shoddy coding by the person who designed it)

Can you help at all?
retired_prettygirl9156 is offline   Reply With Quote
Old 12-17-2005, 12:57 AM   moving logos over abit [help] Post #6
Registered User
 
Join Date: May 2007
Posts: 0
Rep Power: 0
retired_vpoorni is an unknown quantity at this point
Default

Quote:
Originally posted by Bóithéimeach:
I'm trying the above with the Turnstyle skin to cure this problem

http://community.sigames.com/eve/forums/a/tpc/f/420...292065581#1292065581

Unfortunately - I cannot seem to find the relevant bit that I need to edit.

(methinks down to shoddy coding by the person who designed it)

Can you help at all?
MY Turnstyle skin has a gap between the logos, though these may be due to me using rotated logos rather than the standard ones.

You may be able to introduce a gap by changing this code in the header.xml file for Turnstyle:

<pre class="ip-ubbcode-code-pre">&lt;!-- Logo --&gt;&lt;widget class="picture" id="logo" auto_size="all"&gt;&lt;attachment class="get_global_attachment" get_property="scpc" set_property="file" skip_if_null="false"/&gt;&lt;/widget&gt;&lt;widget class="picture" id="logo" auto_size="all"&gt;&lt;attachment class="get_global_attachment" get_property="mnpc" set_property="file" skip_if_null="false"/&gt;&lt;/widget&gt;</pre>

To this:

<pre class="ip-ubbcode-code-pre"> &lt;!-- Logo --&gt;&lt;widget class="picture" id="logo" auto_size="all"&gt;&lt;attachment class="get_global_attachment" get_property="scpc" set_property="file" skip_if_null="false"/&gt;&lt;/widget&gt;&lt;!-- Spacer - hidden if no logo --&gt;&lt;container width="10"&gt;&lt;attachment class="test_global_attachment" get_property="mnpc" skip_if_null="false" set_property="hidn"/&gt;&lt;/container&gt;&lt;widget class="picture" id="logo" auto_size="all"&gt;&lt;attachment class="get_global_attachment" get_property="mnpc" set_property="file" skip_if_null="false"/&gt;&lt;/widget&gt;</pre>

The italiced is whats been changed, if thats not enough, try increasing the container width. This should work, though I haven't tested it.
retired_vpoorni is offline   Reply With Quote
Old 12-17-2005, 12:58 AM   moving logos over abit [help] Post #7
Registered User
 
Join Date: May 2007
Posts: 0
Rep Power: 0
retired_vpoorni is an unknown quantity at this point
Default

Ok so italic text doesn't work inside the code, the second lot of code should be this:

<pre class="ip-ubbcode-code-pre"> &lt;!-- Logo --&gt;&lt;widget class="picture" id="logo" auto_size="all"&gt;&lt;attachment class="get_global_attachment" get_property="scpc" set_property="file" skip_if_null="false"/&gt;&lt;/widget&gt;&lt;!-- Spacer - hidden if no logo --&gt;&lt;container width="10"&gt;&lt;attachment class="test_global_attachment" get_property="mnpc" skip_if_null="false" set_property="hidn"/&gt;&lt;/container&gt;&lt;widget class="picture" id="logo" auto_size="all"&gt;&lt;attachment class="get_global_attachment" get_property="mnpc" set_property="file" skip_if_null="false"/&gt;&lt;/widget&gt; </pre>
retired_vpoorni is offline   Reply With Quote
Old 12-17-2005, 01:39 AM   moving logos over abit [help] Post #8
Newb
 
Join Date: Jun 2007
Posts: 0
Rep Power: 0
retired_prettygirl9156 is an unknown quantity at this point
Default

it works \o/

thanks :thup:
retired_prettygirl9156 is offline   Reply With Quote
Reply

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

Bookmarks

Thread Tools
Display Modes


Similar threads to moving logos over abit [help]
Thread Thread Starter Forum Replies Last Post
Abit stuck with tutoring, help please
Abit stuck with tutoring, help please: IM abit stuck with tutoring my younger players. ...
chibbydude Tactics & Training Tips 1 01-18-2008 07:30 PM
National Team Logos and Intl Competition Logos
National Team Logos and Intl Competition Logos: Anyone know where I can get National Team Logos...
Bradl11 Skinning Hideout 0 11-13-2007 11:02 AM
Moving On
Moving On: Are there any players that you normally sign who...
arsenal_2111 Scout Report 5 10-02-2007 08:32 PM
where do i put facepacks , competition logos , team logos , and skins, would appreciate a quick answer , thanks
where do i put facepacks , competition logos , team logos , and skins, would appreciate a quick answer , thanks: as i asked in the subject title , anyone got any...
kenichan Skinning Hideout 8 01-15-2007 12:10 AM
FM2K5 Competition Logos & Team Logos Question
FM2K5 Competition Logos & Team Logos Question: The other day I downloaded and installed the...
Young Jimlad Skinning Hideout 0 09-26-2005 05:48 PM

More threads of Willz
Thread Date Forum Replies Last Post
what is...Carnegie Premier League
what is...Carnegie Premier League: whats the Carnegie Premier League????anyone have...
04-14-2006 Skinning Hideout 2 04-17-2006 06:53 PM
is royal league in fm06
is royal league in fm06: is the royal league in fm06 but under another name
04-02-2006 Skinning Hideout 5 04-03-2006 06:26 PM
changing size of players name in tactic screen
changing size of players name in tactic screen: i wanna change size of the players names in the...
03-25-2006 Skinning Hideout 0 03-25-2006 03:51 AM
moving stuff on titlebar (HELP)
moving stuff on titlebar (HELP): how do you move stuff about on the titlebar at...
03-22-2006 Skinning Hideout 0 03-22-2006 12:17 AM
HELP change menu color?
HELP change menu color?: how do u change color of drop down menu color...
03-21-2006 Skinning Hideout 1 03-21-2006 01:26 AM

Other threads in forum Skinning Hideout
Thread Date Thread Starter Replies Last Post
+/- buttons on the editor.
+/- buttons on the editor.: What happened to those 2 very usefull buttons on...
05-05-2007 Erocco 0 05-05-2007 11:29 PM
HELP - Where do i get facepacks/diff skins from?
HELP - Where do i get facepacks/diff skins from?: HELP!!!!!!!!!!!! I'm a dunce when it come to...
11-15-2006 Fletch1980 2 11-15-2006 09:51 PM
Harchester United (playable) patch For FM2006 to be released soon
Harchester United (playable) patch For FM2006 to be released soon: The makers of the harchester united patches...
10-20-2005 Weegie 27 11-02-2005 01:58 PM
How do I post screenshots of results/match stats etc?
How do I post screenshots of results/match stats etc?: I have developed a tactic and would like to share...
08-12-2005 King_Coopa 1 08-12-2005 06:01 PM
newgame with unreal players
newgame with unreal players:
01-01-1970 problemchild 0 01-01-1970 01:00 AM

» Online Users: 33
0 members and 33 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 07:26 PM.


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 moving logos over abit [help].