Kodi Community Forum

Full Version: Static Content Lists
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm using a wraplist for my home menu to display icons of each section. Of course the list is using static content defined in the <content> tags.

I'm trying to get a ListItem.Label to appear outsite of the Wraplist Control. This seems to work everywhere but not with static content lists.

I need it outside the wraplist control so that the text doesn't scroll along with the focused item. I've tried to mask it with animations but its not perfect.
Is there any plan to add this funcionality or is there something I may not be doing right?
Would a <scroll>false<scroll> work?

I use this for info in Recently added I wanted outside the list, I assume it'll work for you also:

Quote:<label fallback="-">$INFO[Container(8001).ListItem.Label]</label>
I use this in Revisited for the secondary labels in the Horizontal Home List that are static -

<label>$INFO[Container(300).ListItem.Label2]</label>

So changing the container to whatever you're using and Label2 to Label should do the trick.
thanks guys, I got it working Smile