(2012-11-29 01:57)ArieS Wrote: In Landscape view for Movies, I'm trying to display the Runtime instead of the Tagline.
What I did was open Viewtype_Landscape.xml and try to figure out what to edit, as I have no clue 
So I changed:
<control type="image">
<posy>-130</posy>
<width>1920</width>
<height>220</height>
<texture>views/logo_tagline_gradient.png</texture>
<colordiffuse>ffffffff</colordiffuse>
<visible>![Container.Content(movies) + IsEmpty(ListItem.TagLine)]</visible>
<visible>Skin.HasSetting(Nox.landscapeonelogo) + [Container.Content(tvshows) | Container.Content(movies)]</visible>
<include>Animation_CommonFade</include>
</control>
to
<control type="image">
<posy>-130</posy>
<width>1920</width>
<height>220</height>
<texture>views/logo_tagline_gradient.png</texture>
<colordiffuse>ffffffff</colordiffuse>
<visible>![Container.Content(movies) + IsEmpty(ListItem.RunTime)]</visible>
<visible>Skin.HasSetting(Nox.landscapeonelogo) + [Container.Content(tvshows) | Container.Content(movies)]</visible>
<include>Animation_CommonFade</include>
</control>
Of course, it's not working 
I'm sure it's fairly easy to do if you know what you are doing...
Anyone can help me with that?
Thanks!
In Viewtype_Landscape.xml replace the two occurances of:
Code:
$VAR[LandscapeLogoLabelVar]
with this:
Code:
$INFO[ListItem.Duration,, $LOCALIZE[12391]]
or, if you want a bit more info, with this:
Code:
$VAR[InfoWallBottomLabel2Var]