- March 17, 2008
- 1,353
- 306
- Home Country
-
Netherlands
I was trying to make some adjustments to my Aeon wide skin. I'd like to have the icons for the classification for the selected program. In the US you have classification like PG-13 etc. same here (ofcourse with different names)
When I browse the TVDatabase I see the classification's been added and I can access them with the following bit of xml
<control>
<description>Kijkwijzer</description>
<type>label</type>
<id>32</id>
<posX>750</posX>
<posY>135</posY>
<align>right</align>
<font>font13</font>
<label>#TV.Guide.Classification</label>
<textcolor>ffffffff</textcolor>
</control>
This is offcourse not what I want, it just spits out some horribly formed string my TVGuide provider is giving me. This was just for testing purposes. Then I tried (couple of different forms) :
<control>
<description>Kijkwijzer</description>
<type>image</type>
<id>32</id>
<posX>750</posX>
<posY>135</posY>
<texture>#TV.Guide.Classification</texture>
<width>100</width>
<height>100</height>
</control>
still no luck. This "<texture>#TV.Guide.Classification</texture>" was just a wild shot. Wasn't expecting it to work.
When I look in the XML I see the following
<rating system="Kijkwijzer">
<value>seks</value>
<icon src="http:\\static.tvgids.nl\gfx\kw\seks.gif"/>
</rating>
So I can access the value of the rating, but not the icon that's associated with it. Anyway to get this to work?
When I browse the TVDatabase I see the classification's been added and I can access them with the following bit of xml
<control>
<description>Kijkwijzer</description>
<type>label</type>
<id>32</id>
<posX>750</posX>
<posY>135</posY>
<align>right</align>
<font>font13</font>
<label>#TV.Guide.Classification</label>
<textcolor>ffffffff</textcolor>
</control>
This is offcourse not what I want, it just spits out some horribly formed string my TVGuide provider is giving me. This was just for testing purposes. Then I tried (couple of different forms) :
<control>
<description>Kijkwijzer</description>
<type>image</type>
<id>32</id>
<posX>750</posX>
<posY>135</posY>
<texture>#TV.Guide.Classification</texture>
<width>100</width>
<height>100</height>
</control>
still no luck. This "<texture>#TV.Guide.Classification</texture>" was just a wild shot. Wasn't expecting it to work.
When I look in the XML I see the following
<rating system="Kijkwijzer">
<value>seks</value>
<icon src="http:\\static.tvgids.nl\gfx\kw\seks.gif"/>
</rating>
So I can access the value of the rating, but not the icon that's associated with it. Anyway to get this to work?