Visible tag for certain playlist?
#1
Hi

I have playlist setup with the following label showing the movie count of a certain playlist.

Code:
<label>Movies: $INFO[Window(0).Property(Widget15.Count)] </label>

Whats the visible tag code so this info only shows when this playlist is active.

Tried
Code:
<visible>Skin.HasSetting($INFO[Window(0).Property(Widget15))</visible>
<visible>Container.content(Widget15)</visible>

Thanks for any info
Reply
#2
If you change it to this it will only be visible if the property isn't empty -

PHP Code:
<label>$INFO[Window(0).Property(Widget15.Count),Movies: ]</label
Reply
#3
(2016-02-18, 00:51)Hitcher Wrote: If you change it to this it will only be visible if the property isn't empty -

PHP Code:
<label>$INFO[Window(0).Property(Widget15.Count),Movies: ]</label

Yeah its displaying fine but when enter all other playlists its showing the movie count for the above playlist.

Eg. As im using the same skin view for each playlist need count only be visible to that playlist. Widget1=60 movies. Widget2=20 movies etc.

Seems need visible tag for each playlist, widget 1,2,3 etc.

Is there no way to put that INFO boolean in visible tag someway?

Hope im making sense. Thanks again for help
Reply
#4
In that case use a variable and use the current playlist as a condition for each value.
Reply

Logout Mark Read Team Forum Stats Members Help
Visible tag for certain playlist?0