The problem is this: the Spanish EPG grabber is designed so when there is a movie you get in the title field of the XML "Movie" and in the sub-title field the actual movie name. So with default skins you never know the movie name.
I've done a quick and dirty fix for the Blue Two skin which consists on always showing this information from the TVGuide database which is stored as TV.Guide.EpisodeName:
The problem is, except for movies, shows and some other programs, there is no TV.Guide.EpisodeName, and instead of a blank space, you get a nasty "Unknown".
Is there a way to create a condidion so the TV.Guide.EpisodeName is only showed when there is some data?
I've done a quick and dirty fix for the Blue Two skin which consists on always showing this information from the TVGuide database which is stored as TV.Guide.EpisodeName:
Code:
<control>
<description>Current program title</description>
<type>fadelabel</type>
<id>13</id>
<posX>250</posX>
<posY>420</posY>
<width>200</width>
<align>left</align>
<label>#TV.Guide.Title</label>
<font>font16</font>
<textcolor>FFFFFFFF</textcolor>
</control>
<control>
<description>Current program sub-title</description>
<type>fadelabel</type>
<id>13</id>
<posX>450</posX>
<posY>420</posY>
<width>200</width>
<align>left</align>
<label>#TV.Guide.EpisodeName</label>
<font>font16</font>
<textcolor>FFFFFFFF</textcolor>
</control>
The problem is, except for movies, shows and some other programs, there is no TV.Guide.EpisodeName, and instead of a blank space, you get a nasty "Unknown".
Is there a way to create a condidion so the TV.Guide.EpisodeName is only showed when there is some data?