BrianCloughALegend
17 years ago
1 month ago
224
Sorry if there is a thread but im looking for the match overview panel that somebody made for fm13 last year,i want kits instead of logos to show please
BrianCloughALegend
17 years ago
1 month ago
224
Anybody please
VP.
13 years ago
1 month ago
25,271
Found this from FM11 though...

It is now possible to get Logos to show on the Match Overview Screen
I don't think this has been announced anywhere with the new features for FM2011, but after looking in the 'match incidents.xml' file it looks like you can now choose whether to display logos or kits on the Match Overview Screen.

This is a fairly simple change, first you'll need to extract the 'match incidents.xml' file from the panels.fmf file located in the data folder of where you installed FM2011.

After you have extracted the file copy it to the panels folder for the skin you are using.

Now open the file in notepad or similar and locate these lines:
<!-- team kit picture -->
<!-- comment out to show logos instead of kits -->
<container height="100" width="100">
<layout class="stick_to_sides_attachment" alignment="all" inset="4" layout_children="true"/>

<container class="kit_picture" id="mikp" scale_picture="true"/>
</container>

<!-- team logo -->
<!-- uncomment to show logos instead of kits -->
<!-- <container height="80" width="80" col="0" row="0">
<layout class="stick_to_sides_attachment" alignment="all" inset="4" layout_children="true"/>

<widget class="picture" id="milp" scale_picture="true" keep_aspect_ratio="true" height="80" width="80" image_alignment="centre"/>
</container> -->

To get the logos to display, uncomment the logo code and comment out the kit code so the above lines should now look like this:

<!-- team kit picture -->
<!-- comment out to show logos instead of kits -->
<!-- <container height="100" width="100">
<layout class="stick_to_sides_attachment" alignment="all" inset="4" layout_children="true"/>

<container class="kit_picture" id="mikp" scale_picture="true"/>
</container> -->

<!-- team logo -->
<!-- uncomment to show logos instead of kits -->
<container height="80" width="80" col="0" row="0">
<layout class="stick_to_sides_attachment" alignment="all" inset="4" layout_children="true"/>

<widget class="picture" id="milp" scale_picture="true" keep_aspect_ratio="true" height="80" width="80" image_alignment="centre"/>
</container>

If you want to change the size of the logo you'll need to change the values of the red bold text above and change the red bolded values in these lines aswell:
<container id="tntb" height="100">

<layout class="arrange_horizontal_attachment" layout="100,-1"/>

If you want to enable the logo on the split view overview screen you'll need to extract the 'match incidents small.xml' file from the panels.fmf file and change this code:

<!-- team kit picture -->
<!-- comment out to show logos instead of kits -->
<container class="kit_picture" id="mikp" scale_picture="true"/>
<!-- team logo -->
<!-- uncomment to show logos instead of kits -->
<!--<widget class="picture" id="milp" scale_picture="true" keep_aspect_ratio="true" height="60" width="60" image_alignment="centre"/>-->
</container>

To this:
<!-- team kit picture -->
<!-- comment out to show logos instead of kits -->
<!-- <container class="kit_picture" id="mikp" scale_picture="true"/> -->
<!-- team logo -->
<!-- uncomment to show logos instead of kits -->
<widget class="picture" id="milp" scale_picture="true" keep_aspect_ratio="true" height="60" width="60" image_alignment="centre"/>
</container>


Make sure you first make a copy of any files your going to be editing in case something goes wrong!

You'll need to Login to comment