PDA

View Full Version : Showcase Information request


MrTourettes
2009-06-25, 20:15
Just wondered how easy it would be to add some text to the showcase view.

At the moment on the bottom of the screen when I am browsing my music library I have band name and album name ( when scrolling through albums )

How easy is it to add the album year in front of the album name?

If some kind modder knows how to do this could you post up what I need to change in teh view_showcase.xml to do this.

Thanks

Aenima99x
2009-06-25, 21:14
In the Viewtype_Showcase.xml you'll need to change the following -

In mine, it's line 2637 at almost the end of the file
Original

<control type="label">
<label>$INFO[ListItem.Label][/UPPERCASE]</label>
<include>ShowcaseMainLabelWide</include>
<visible>[!Container.Content(movies) | Window.IsActive(24)] | [Container.Content(movies) + Skin.HasSetting(nomediaflags)]</visible>


Modified

<control type="label">
<label>$INFO[ListItem.Year,, - ] $INFO[ListItem.Label]</label>
<include>ShowcaseMainLabelWide</include>
<visible>[!Container.Content(movies) | Window.IsActive(24)] | [Container.Content(movies) + Skin.HasSetting(nomediaflags)]</visible>

MrTourettes
2009-06-25, 21:31
Yup that worked a treat thanks