I'm reading lot in kodi forum but usually not a forum poster.
I'm no coder, have no experience with anything, all i do is lots of hours try and error prinzip cause i'm huge fan of kodi.
I want to show movies with "Academy Award Best Picture" is showing an Oscar Statue Picture.
The Movies are tagged "award", the award.png Picture path is set, Code in the "Skin View.xml" is also set.
I tried all variations of the code line "<visible></visible>" (String conditions, brackets, spelling... tried all)
Definitely sure that this line is the only problem, in all variations i tried there are 2 resustls:
1) The award.png is shown i every Movie
2) The award.png is shown i no Movie
But the goal is to show the award.png only in tagged movies "award".
In the kodi developers guide under InfoLabels there is definitely a description that kodi Tags could be used as InfoLabel and could also set under a "visible" condition:-> "ListItem.Tag:Will return the name of the 'tag' this movie is part of."
But nothing works, please Help.
My Actual Code is:
<control type="image">
<left>250</left>
<top>595</top>
<width>450</width>
<height>230</height>
<height>500</height>
<include>FlagImage</include>
<texture>C:\Users\chris\AppData\Roaming\Kodi\media\resources\award.png</texture>
<visible>!String.Contains(Window(Home).Property(SkinHelper.ListItemTags),Award)</visible>
</control>