Jump to content

yd1882

Members+
  • Posts

    54
  • Joined

  • Last visited

Posts posted by yd1882

  1. 23 minutes ago, Vakzin_QPR said:

    In FM Touch, the xml-file which controls Season Stats is not "player additional stats small.xml" but "player season stats table panel.xml". (I've not edited this file.)
    And you can't display the logos by editing that file. (I confirmed it.)

    Instead, you could change the code of "player overview panel.xml" to use "player additional stats small.xml".
    In detail, as follows.

    1) The following is the code on the lines 39 to 43 of "player overview panel.xml" in this skin.
            <!--Playing stats-->
            <widget class="player_season_stats_table_panel" id="ssts">
              <translation id="title" translation_id="247412" type="use" value="Stats"/>
              <record id="object_property" get_property="objt" set_property="objt"/>
            </widget>

    2) You could change it to the following.
            <container id="ssts" navigation_container="true" >
                <translation id="title" translation_id="247412" type="use" value="Stats"/>
                <layout class="stick_to_sides_attachment" alignment="all" apply_to_children="true" inset="0" />

                <widget class="player_additional_stats_panel" id="pcsp" file="player/player additional stats small">
                    <record id="object_property">
                        <list id="get_properties">
                            <!-- Hide this panel if player is in inactive league-->
                            <record id="object_property" get_property="objt" set_property="objt"/>
                            <record id="object_property" get_property="Pila" set_property="hidn"/>
                        </list>
                    </record>
                </widget>

                <widget class="player_stats_panel" id="pssp" file="player/player stats small">
                    <record id="object_property">
                        <list id="get_properties">
                            <!-- Show this panel if player is in inactive league-->
                            <record id="object_property" get_property="Pila" set_property="Shwn"/>
                            <record id="object_property" get_property="objt" set_property="objt"/>
                        </list>
                    </record>
                </widget>
            </container>

    3) Then, Season Stats will become like the screenshots. (the two are the players in active & inactive league.)

    stats 1.jpg

    stats 2.jpg

    This one had been bugging me for sometime.  

    Thank you so much for taking the time (and also the super quick response)!

    Thank you!!

  2. Hi,

    Great FMT skins!

    I'm trying to add an additional folder/panels i.e 'match' folder (taken from the FMT base skin) and including it in these skins. But it doesn't appear to work.

    I've followed the exact file pathway - as it appears in the FMT base skin i.e ...\panels\match.

    Cleared cache etc, but doesn't seem to make any difference.

    Grateful for some help.

    Thank you in advance

     

×
×
  • Create New...