I'm trying to put together a skin for the new search screen and am having trouble with the @controlSelected option.
Here is a simple skin that I've used for this example:
What should happen when I tab between the 3 different columns of the "First letter", "Show Title" and "Show Time" is that the unselected columns should be all green. Unfortunately, only about the last 2/3 of each of the unselected columns are green, the rest has no coloring at all.
Attached is some screen shots and the zipped skin.
Thanks.
Here is a simple skin that I've used for this example:
Code:
<Skin>
<Element name="FirstLetterListView" location="0,0" size="100,100" alpha="255" visibleRows="10"/>
<Element name="FirstLetterListItemNormal" location="4,5" size="5,5" alpha="255" alphaFade="true">
<Text text="@letter" location="0,0" size="100,100" font="Default" align="Center" valign="Center"/>
</Element>
<Element name="FirstLetterListItemSelected" location="4,5" size="5,5" alpha="255" alphaFade="true">
<Rect visible="@controlSelected" location="0.25,0.25" size="98,96" fillColor="Blue"/>
<Text visible="@controlSelected" text="@letter" location="0,0" size="100,100" font="Default" align="Center" valign="Center"/>
<Rect visible="@controlNotSelected" location="25.5,0.25" size="98,96" fillColor="Green"/>
<Text visible="@controlNotSelected" text="@letter" location="0,0" size="100,100" font="Default" align="Center" valign="Center"/>
</Element>
<Element name="ShowNameListView" location="0,0" size="100,100" alpha="255" visibleRows="10"/>
<Element name="ShowNameListItemNormal" location="10,5" size="45,5" alpha="255" alphaFade="true">
<Text text="@showName" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/>
</Element>
<Element name="ShowNameListItemSelected" location="10,5" size="45,5" alpha="255" alphaFade="true">
<Rect visible="@controlSelected" location="0.25,0.25" size="98,96" fillColor="Blue"/>
<Text visible="@controlSelected" text="@showName" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/>
<Rect visible="@controlNotSelected" location="25.5,0.25" size="98,96" fillColor="Green"/>
<Text visible="@controlNotSelected" text="@showName" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/>
</Element>
<Element name="ShowTimeListView" location="0,0" size="100,100" alpha="255" visibleRows="10"/>
<Element name="ShowTimeListItemNormal" location="56,5" size="42,5" alpha="255" alphaFade="true">
<Text text="@showTime" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/>
</Element>
<Element name="ShowTimeListItemSelected" location="56,5" size="42,5" alpha="255" alphaFade="true">
<Rect visible="@controlSelected" location="0.25,0.25" size="98,96" fillColor="Blue"/>
<Text visible="@controlSelected" text="@showTime" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/>
<Rect visible="@controlNotSelected" location="25.5,0.25" size="98,96" fillColor="Green"/>
<Text visible="@controlNotSelected" text="@showTime" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/>
</Element>
<Element name="ShowTimeListSelectionMetaData" location="0,0" size="100,100" alpha="255">
<Text text="@title" location="5,60" size="90,5" font="Default" align="Left" valign="Center"/>
<Text text="@period" location="5,65" size="90,5" font="Default" align="Left" valign="Center"/>
<Text text="@subtitle" location="5,70" size="90,5" font="Default" align="Left" valign="Center"/>
<Text text="@channel" location="5,75" size="90,5" font="Default" align="Left" valign="Center"/>
<Text text="@description" location="5,80" size="90,15" font="Default" align="Left" wrap="true"/>
</Element>
</Skin>
What should happen when I tab between the 3 different columns of the "First letter", "Show Title" and "Show Time" is that the unselected columns should be all green. Unfortunately, only about the last 2/3 of each of the unselected columns are green, the rest has no coloring at all.
Attached is some screen shots and the zipped skin.
Thanks.