Kodi Community Forum
Skin Helper and Top250 - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Arctic: Zephyr - Reloaded (https://forum.kodi.tv/forumdisplay.php?fid=221)
+---- Thread: Skin Helper and Top250 (/showthread.php?tid=267579)



Skin Helper and Top250 - Edworld - 2016-04-06

Need some help.

I want to take advantage of the recent change in skin helper to display the top250 tvshows but haven't been successful in changing the script to display this data on tv shows.

I know I need to change includes furniture.xml but I am not able to display the position the show has in top250

Below is the changes I have made with no success:

<control type="image">
<width>64</width>
<centertop>50%</centertop>
<height>64</height>
<texture colordiffuse="White100">flags/imdb.png</texture>
<visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.IMDB.Top250), 0)</visible>
</control>

<control type="label">
<left>-12</left>
<width>auto</width>
<centertop>50%</centertop>
<height>64</height>
<align>left</align>
<aligny>center</aligny>
<label>IntegerGreaterThan(Window(Home).Property(SkinHelper.IMDB.Top250), 0)</label>
<font>Flag</font>
<textcolor>White100</textcolor>
<visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.IMDB.Top250), 0)</visible>
</control>

Thanks for helping!


RE: Skin Helper and Top250 - Edworld - 2016-04-06

I believe this works:

<control type="image">
<width>64</width>
<centertop>50%</centertop>
<height>64</height>
<texture colordiffuse="White100">flags/imdb.png</texture>
<visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.IMDB.Top250), 0)</visible>
</control>

<control type="label">
<left>-12</left>
<width>auto</width>
<centertop>50%</centertop>
<height>64</height>
<align>left</align>
<aligny>center</aligny>
<label>$INFO[Window(Home).Property(SkinHelper.IMDB.Top250,#]</label>
<font>Flag</font>
<textcolor>White100</textcolor>
<visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.IMDB.Top250), 0)</visible>