Jump to content

[FM13][GUIDE] Re-enabling Background Logos for FM2013


michaeltmurrayuk

Recommended Posts

How to Re-enable Background Logos for Football Manager 2013

The coding to getting the background logos back on the header in FM2013 has changed a little bit.

There are two files that you need to edit: 'titlebar.xml' and 'team titlebar.xml' which should be located in the panels folder of the skin you are using if not you'll need to extract them from the this location in the skins.fmf file \skins\fm2013\panels

NOTE: This guide is based on the default files, so skinned files may look different and you'll need to contact the skinner in question if the file is vastly different.

Both files are edited in the same way first you need to locate these lines in the files (lines 28 through 31):

<!-- main logos container -->

<container id="MnLg">

<layout class="arrange_horizontal_attachment" alignment="left,extend" offset="0" gap="0"/>

<layout class="stick_to_sides_attachment" alignment="vertical" inset="0" layout_children="true"/>

and above those lines you paste in the following code:

<!-- container to handle the layout of the 'background' logos -->

<container id="BkLg">

<layout class="stick_to_sides_attachment" alignment="vertical" inset="0"/>

<!-- Right Side Logo -->

<widget class="picture" id="rgtB" auto_size="all" file="pictures/logos/background/default/left">

<layout class="stick_to_sides_attachment" alignment="top,right" inset="0"/>

<record id="object_property">

<integer id="get_property" value="sbpc" />

<integer id="set_property" value="file" />

</record>

</widget>

<!-- Left Side Background Logo -->

<widget class="picture" id="lftB" auto_size="all" file="pictures/logos/background/default/right">

<layout class="stick_to_sides_attachment" alignment="top,left" inset="0"/>

<record id="object_property">

<integer id="get_property" value="mbpc" />

<integer id="set_property" value="file" />

</record>

</widget>

</container>

That's it, save the files load FM and reload you skin if need be and you should now have background logos enabled as per the below screenshots:

backgroundlogos1.jpg

backgroundlogos2.jpg

If you don't want to edit the files yourself you can get downloadable versions here, just copy the two xml files into the panels folder for the skin you are using.

NOTE: I don't recommend using these files if the skin you are using has modified the titlebar as these files are based on the default titlebar, you'll need to adjust the code manually.

DOWNLOAD LINK

ALT DOWNLOAD LINK

---

You are free to do what you want with these provided:

1. You don't advertise them as being exclusive to your website.

2. At least one of the download links is free to access and download.

Link to post
Share on other sites

Background info for skinners:

FM13 now longer uses the following code to set the properties of various items:

<attachment class="get_global_attachment"
get_property
="
mbpc
"
set_property
="
file
" skip_if_null="false"/>

Instead it has been changed to:

<record id="object_property">

<integer id="
get_property
" value="
mbpc
" />

<integer id="
set_property
" value="
file
" />

</record>

With the coding on the integer lines changing depending on what is being called.

Link to post
Share on other sites

  • 3 weeks later...
  • 2 weeks later...
  • michaeltmurrayuk changed the title to [FM13][GUIDE] Re-enabling Background Logos for FM2013

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...