Showcase Information request
#1
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
Reply
#2
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
Code:
<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
Code:
<control type="label">
<label>[UPPERCASE]$INFO[ListItem.Year,, - ] $INFO[ListItem.Label][/UPPERCASE]</label>
<include>ShowcaseMainLabelWide</include>
<visible>[!Container.Content(movies) | Window.IsActive(24)] | [Container.Content(movies) + Skin.HasSetting(nomediaflags)]</visible>
Reply
#3
Yup that worked a treat thanks
Reply

Logout Mark Read Team Forum Stats Members Help
Showcase Information request1