Jump to content

[FM18][skin] Milla skin dark & light v2.2 (updated 27.3.2018)


Jovovich

Recommended Posts

  • Replies 133
  • Created
  • Last Reply
  • 2 months later...
Il 25/3/2018 in 14:51 , Jovovich ha scritto:

 


Thanks for this beautiful skin!
Could you tell me how to hide these two panels?
I do not want to see them while I play.


2afikp0.png


Is it possible to remove the competition logo?

a9px7s.png


Here I would like to see the shirt numbers

28203dz.png

 

 

 

Link to post
Share on other sites

On 17/06/2018 at 22:45, Cizzu said:


Thanks for this beautiful skin!
Could you tell me how to hide these two panels?
I do not want to see them while I play.


2afikp0.png


Is it possible to remove the competition logo?

a9px7s.png


Here I would like to see the shirt numbers

28203dz.png

 

 

 

1. feet

panels/player/player personal details panel.xml

 

    <container>
          <layout class="arrange_horizontal_attachment" layout="25,-1,25" offset="0" gap="0" />
          <layout class="stick_to_sides_attachment" alignment="vertical" inset="0" apply_to_children="true" />

          <!-- left foot -->
          <widget class="attribute_label" size="10" alignment="centre" use_attribute_colour_as_bg="false" appearance="boxes/custom/footed/left foot">
            <record id="object_property">
              <integer id="get_property" value="Plft" />
            </record>
          </widget>

          <container>
            <layout class="arrange_vertical_attachment" layout="-1,-1" offset="0" gap="0" />
            <layout class="stick_to_sides_attachment" alignment="horizontal" inset="0" apply_to_children="true" />
            <!--footedness-->
            <widget class="foot_label" size="11" alignment="centre_x,bottom,auto_fit" >
              <record id="object_property">
                <integer id="get_property" value="Pfot" />
              </record>
            </widget>
            <!--footedness label-->
            <widget class="label" font="title" colour="faded text" alignment="centre_x,top,can_scale">
              <translation id="text" translation_id="227955" type="use" value="footed" />
            </widget>
          </container>

          <!-- right foot -->
          <widget class="attribute_label" size="10" alignment="centre" use_attribute_colour_as_bg="false" appearance="boxes/custom/footed/right foot">
            <record id="object_property">
              <integer id="get_property" value="Prft" />
            </record>
          </widget>     
         
        </container>

 

These lines are which you are looking for. 

 

2.  Find lines in panels/match/match preview panel.xml

  <!-- Expected Tactic -->
            <widget class="text" alignment="centre" auto_size="vertical" font="title">
              <translation id="text" translation_id="447657" type="use" value="Expected Tactic[COMMENT: oppositon team report; heading]" />
            </widget>
            <container height="300">
              <layout class="stick_to_sides_attachment" alignment="all" inset="0" apply_to_children="true" />
              <!--comp logo-->
              <container>
                <widget class="object_portrait_picture" id="cmlH" scale_picture="true" keep_aspect_ratio="true" image_alignment="centre" width="160" height="160" >                  
                  <record id="object_property">
                    <integer id="get_property" value="fxCo" />
                    <integer id="set_property" value="objt" />
                  </record>
                  <layout class="centre_in_parent_attachment" alignment="all" inset="0" />
                </widget>                
              </container>

              <container>
                <layout class="arrange_horizontal_attachment" layout="-1, -1" offset="0" />
                <layout class="stick_to_sides_attachment" alignment="vertical" apply_to_children="true" inset="0" />

                <container class="team_opposition_overview_report_panel" file="none">
                  <integer id="team_index" value="1" />
                  <record id="object_property">
                    <integer id="get_property" value="objt" />
                    <integer id="set_property" value="objt" />
                  </record>

 

Delete the red lines. 

 

3. I have no idea. Sorry. I have not tried yet. 

Link to post
Share on other sites

  • 4 weeks later...
En 11/3/2018 a las 18:16, ginobili20 dijo:

thanks man!now the familiarity is ok.

last question:

as u can see in the picture uploaded,i want players pictures aside the name in the tattics,can u tell me how i can?

43C2F914-F304-4695-AB6A-A016F79585C6.jpeg

 

+1

Link to post
Share on other sites

Does anybody know how to change fonts from capital to small letters on match scoreboard?

<!--home team name-->
<container class="bordered_box" appearance="boxes/custom/match/scoreboard/epl/name">
<layout class="stick_to_sides_attachment" alignment="all" apply_to_children="true" inset="0" />
<widget class="text_button" id="T1nm" size="18" alignment="centre,can_scale" click_event="htac" font="match colour white cap"/>
</container>
</container>

I suppose that I need to change something here

Link to post
Share on other sites

You need to find the "match colour white cap.xml"-File in /fonts in your Skin-Directory or extract it from sources. Then you will have to find the following line:

<string id="capitalisation" value="upper case" />

and delete it. 

That should do the trick, at least that works for me on other panels...

Link to post
Share on other sites

1 hour ago, dwood79 said:

You need to find the "match colour white cap.xml"-File in /fonts in your Skin-Directory or extract it from sources. Then you will have to find the following line:

<string id="capitalisation" value="upper case" />

and delete it. 

That should do the trick, at least that works for me on other panels...

I also have "black colour cap.xml" file

Should I do the same with it?

Link to post
Share on other sites

Since I'm not using this skin I can't tell you that... you might use something like notepad++ and search your skin-folder for the string "font=black colour cap" to see where it is used...

 

If you want to make sure you're not messing up other stuff in the skin you can also duplicate your "match colour white cap.xml" with a name like match_cap.xml, Delete the line as mentioned above and change your scoreboard-line to 

<widget class="text_button" id="T1nm" size="18" alignment="centre,can_scale" click_event="htac" font="match_cap"/>

 

Link to post
Share on other sites

On 20/07/2018 at 01:10, InSp1RaT0R1950 said:

Does anybody know how to change fonts from capital to small letters on match scoreboard?

<!--home team name-->
<container class="bordered_box" appearance="boxes/custom/match/scoreboard/epl/name">
<layout class="stick_to_sides_attachment" alignment="all" apply_to_children="true" inset="0" />
<widget class="text_button" id="T1nm" size="18" alignment="centre,can_scale" click_event="htac" font="match colour white cap"/>
</container>
</container>

I suppose that I need to change something here

 

 

Delete a line

<string id="capitalisation" value="upper case"/>

 

in fonts/match colour black cap.xml and match colour white cap.xml

 

 

Link to post
Share on other sites

  • 4 weeks later...
  • 3 weeks later...

Hey Jovovich, I want to remove the boxes on the right side of screen(whole column). I do not need much info and want to make screen simple. Is it possible? If yes, how? :)

Also It would be great if we can get an instant result button, or how we can add it?

Thanks in advance!

929859861_fmpanel.thumb.png.79101be672c6b9c0b3d852ed34033eb8.png

Link to post
Share on other sites

  • 1 month later...
  • 4 weeks later...
  • 2 months later...
Il 5/11/2018 in 20:51 , steveyisatard ha scritto:

Give the guy a break,  the game has only been out 4 days. Have a little patience or try to make your own skins.

I waited long enough :(


So... no update for FM19 ?!

Link to post
Share on other sites

  • 5 months later...
On 23/06/2019 at 01:45, Cizzu said:

Andy update? :(

As “wkdsoul” mentioned before, he is at “FMNation” and created a skin for FM 2019 which he released only there.

You might have to try him there.

Pretty obvious, as it is the middle of June, with no postings here from him on his new skin, that asking for updates here is pretty useless.

Link to post
Share on other sites

1 ora fa, a31632 ha scritto:

As “wkdsoul” mentioned before, he is at “FMNation” and created a skin for FM 2019 which he released only there.

You might have to try him there.

Pretty obvious, as it is the middle of June, with no postings here from him on his new skin, that asking for updates here is pretty useless. 

Yes, thanks. But it's very hard to read something to FMNation for me... :(

any useful links?
Link to post
Share on other sites

Il 25/6/2019 in 16:30 , a31632 ha scritto:

Google can translate most of Korean in English. It’s a Korean website so not many other options here.


oh no... It doesn't work...

Schermata-2019-06-27-alle-01-20-58.jpg

Link to post
Share on other sites

2 hours ago, Cizzu said:


oh no... It doesn't work...

Schermata-2019-06-27-alle-01-20-58.jpg

Seriously?!?

This is not the way to use Google Chrome LOL

You go to the website and when it  loaded you click in the top portion on the translate icon to translate the webpage. 

Link to post
Share on other sites

57 minuti fa, a31632 ha scritto:

Seriously?!?

This is not the way to use Google Chrome LOL

You go to the website and when it  loaded you click in the top portion on the translate icon to translate the webpage. 


Could you kindly send me the link to download the milla skin 19 directly?


Schermata-2019-06-27-alle-05-14-05.jpg
Link to post
Share on other sites

10 hours ago, Cizzu said:

Could you kindly send me the link to download the milla skin 19 directly?


Schermata-2019-06-27-alle-05-14-05.jpg

What you're asking for isn't right or allowed anyway. If the author wanted it published or made available to 'us' here he would have done so already.

 

You should PM the author directly yourself, end of discussion. 

Link to post
Share on other sites

Archived

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

  • Recently Browsing   0 members

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