Skin Helper and Top250
#1
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!
Reply
#2
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>
Reply

Logout Mark Read Team Forum Stats Members Help
Skin Helper and Top2500