[MOD] Multiplex Mod with more and smaller posters, also smaller night infopanel

  Thread Rating:
  • 1 Votes - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
clep Offline
Member
Posts: 53
Joined: Apr 2009
Reputation: 0
Location: Germany
Post: #21
Ayla Wrote:Oh no! what about my 2 questions? Smile

1. Could you tell me how I make the black bit, behind the "Press down to watch trailer", wider?

I need to make it as wide as the text.

2. And also, how do I change the Studio icon, in the lower left corner, with the numeric IMDB rating instead?

Thanks! Big Grin

Smile
Haven't forgot about your question Wink

1:
I don't know yet, but if I find out what needs to be changed I'll post it here Wink

2:
You can delete the part for the studioflags in the Includes_MediaFlags.xml or mark it as comment, so you could easily get those back.
Put
Code:
<!--
in front of the part and close the comment with
Code:
-->
.

The part for studio flags start around row 448 with this code:
Code:
                <control type="image">
                    <include>Furniture_ShowcaseMediaFlagsVars</include>
                    <texture>flags/default.png</texture>
                    <visible>!Control.IsVisible(81) + !Skin.HasSetting(nodefaultflags)</visible>
                </control>                
                <control type="image" id="81">
                    <include>Furniture_ShowcaseMediaFlagsVars</include>
                    <texture>flags/studios/walden_media.png</texture>
                    <visible>substring(listitem.studio,Walden Media)</visible>
                </control>

Put the
Code:
<!--
in front of it and look for the last studio flag in the code with "<include>Furniture_ShowcaseMediaFlagsVars</include>". Should be around row 1592.

It should look like this:
Code:
                <control type="image" id="81">
                    <include>Furniture_ShowcaseMediaFlagsVars</include>
                    <texture>flags/studios/toho.png</texture>
                    <visible>substring(listitem.studio,Toho)</visible>
                </control>

Put
Code:
-->
behind this part and the studio flags should disappear.


To let the IMDB rating appear on this location you have to open the Viewtype_Multiplex.xml and the Viewtype_Showcase.xml.
If I remember correctly, you have to add this code:
Code:
            <control type="label" id="72">
                <label>[UPPERCASE]$INFO[ListItem.Rating][/UPPERCASE]</label>
                <include>ShowcaseRatingLabel</include>
                <visible>Container.Content(movies)</visible>
            </control>

underneath (or or at least in the same group) this part in the Viewtype_Multiplex.xml:

Code:
            <control type="label" id="72">
                <label>[UPPERCASE]$INFO[ListItem.Genre][/UPPERCASE]</label>
                <include>ShowcaseDetailLabel</include>
                <visible>Container.Content(movies) + !IsEmpty(ListItem.Genre)</visible>
            </control>

Now open the Viewtype_Showcase.xml and look for
Code:
<include name="ShowcaseDetailLabel">
        <include>ShowcaseLabelVars</include>
        <posx>340</posx>
        <posy>691</posy>
        <width>600</width>
        <font>Font_ShowcaseDetailLabel</font>
        <visible>!ControlGroup(7000).HasFocus()</visible>        
        <include condition="!Skin.HasSetting(darkshowcase)">Colour_ShowcaseLabelLightShade</include>
        <include condition="Skin.HasSetting(darkshowcase)">Colour_ShowcaseLabelNightShade</include>
    </include>

Below this part add this:

Code:
<include name="ShowcaseRatingLabel">
        <include>ShowcaseLabelVars</include>
        <posx>68</posx>
        <posy>682</posy>
        <width>100</width>
        <font>Font_ShowcaseMainLabel</font>
        <visible>!ControlGroup(7000).HasFocus()</visible>        
        <include condition="!Skin.HasSetting(darkshowcase)">Colour_ShowcaseLabelLightShade</include>
        <include condition="Skin.HasSetting(darkshowcase)">Colour_ShowcaseLabelNightShade</include>
    </include>

I've already changed the position to the one of the studio flags. Hope this helps Wink
find quote
cyrus_mc Offline
Aeon Group
Posts: 35
Joined: Mar 2009
Post: #22
I like this MOD. Can you update it to do the same for the TV shows section?

Thanks
find quote
Imaginos Offline
xbmcstuff.com admin
Posts: 459
Joined: Nov 2008
Reputation: 11
Location: Calvados, France
Post: #23
My flag mod allows users to select in the advanced settings what flag must be displayed and in wich position
Imaginos flags mod

Find TV/seasons Thumbs and clearARTs and cdARTs on http://www.xbmcstuff.com infos on the local forum thread
scraping informations and other on the dedicated forum : xbmcstuff forum
(This post was last modified: 2009-06-17 09:07 by Imaginos.)
find quote
Ayla Offline
Fan
Posts: 578
Joined: Feb 2008
Reputation: 0
Post: #24
Clep - Thanks a lot !

Imaginos - Do you have a thread where you're mod is discussed?

/Martin
find quote
cyrus_mc Offline
Aeon Group
Posts: 35
Joined: Mar 2009
Post: #25
Clep, any chance you can outline the specific changes you made here. I am not a modder by any means and would like to merge what you have with the current setup I am using.

I love the smaller posters and the smaller info panel (not crazy about your dark scheme though).

Thanks
find quote
Post Reply