Kodi Community Forum

Full Version: Current Item Label Issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am hoping someone can assist with the label I am trying to create.

I have a homepage that contains several wraplists with 10 items that can scroll even when not focused (just like xperience1080). What I want is a label beneath them that will show the current item. I can get the total number of items to display but not the current item. Any suggestions or is this not possible? I am on helix 14.1. My label is below...

<control type="label">
<posx>20</posx>
<posy>518</posy>
<width>240</width>
<height>54</height>
<label>$INFO[Container(6032).CurrentItem]</label>
<font>Font-Condensed-S29-B2</font>
<textcolor>aawhite</textcolor>
<align>left</align>
<aligny>center</aligny>
<scroll>false</scroll>
</control>
CurrentItem returns the item in the list. Have you tried $INFO[Container(6032).CurrentItem.Label]?
Only available in I* not Helix.
(2015-02-12, 08:58)Sranshaft Wrote: [ -> ]CurrentItem returns the item in the list. Have you tried $INFO[Container(6032).CurrentItem.Label]?

not 100% sure, but I think $INFO[Container(xx).CurrentItem.Label] does not exist, also not in I*. The new infolabel for I* is just $INFO[Container(xx).CurrentItem] and returns in integer with the actual position in the list. (someone correct me if I´m wrong)
(2015-02-12, 09:16)Hitcher Wrote: [ -> ]Only available in I* not Helix.

Thanks Hitcher. Completely missed it was only implemented in I*

Looks like to will need to upgrade to continue. Thanks for the help!