Ayla Wrote:Oh no! what about my 2 questions?
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!

Haven't forgot about your question

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

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:
<!--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:
<!--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:
-->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


Search
Help