Poster View Mod - Do Not Display Movie Tagline below title
#1
Has anybody Managed to Modify the views, that the Tagline will Not Be displayed?
Reply
#2
You can do it in the MyVideoNav.xml file, just remove these two parts :

Code:
<control type="label">
    <posx>30</posx>
    <posy>50</posy>
    <width>750</width>
    <height>25</height>
    <font>Font_19</font>
    <label>$INFO[ListItem.Tagline]</label>
    <textcolor>90FFFFFF</textcolor>
    <scroll>true</scroll>
    <scrollout>false</scrollout>
    <visible>!IsEmpty(Window(2003).Property(AudioLanguage.1))</visible>
</control>

and

Code:
<control type="label">
    <posx>30</posx>
    <posy>50</posy>
    <width>1100</width>
    <height>25</height>
    <font>Font_19</font>
    <label>$INFO[ListItem.Tagline]</label>
    <textcolor>90FFFFFF</textcolor>
    <scroll>true</scroll>
    <scrollout>false</scrollout>
    <visible>IsEmpty(Window(2003).Property(AudioLanguage.1))</visible>
</control>

That will remove the tagline in every video view that uses it.
Reply

Logout Mark Read Team Forum Stats Members Help
Poster View Mod - Do Not Display Movie Tagline below title0