2005-11-28, 05:04 PM
Hi and thanks in advance,
To make it easier to explain I took the default skin and made only small changes to "BaseSkin.xml". I changed the fillcolor for popup buttons to red, and the fillcolor for normal buttons to green:
This gives me the following result in the recordings screen:
(A) points to the normal buttons, which are displayed correctly in green.
(B) points to the popup buttons, which should be displayed in red, but show up in green, too.
I hope you can understand my problem now.
-alibert
sub Wrote:Attach some screenshots (not too large), with arrows pointing to the exact buttons your talking about and I'll try to help you.
To make it easier to explain I took the default skin and made only small changes to "BaseSkin.xml". I changed the fillcolor for popup buttons to red, and the fillcolor for normal buttons to green:
Code:
<!-- image used for a selected button (in this skin the main menu buttons are different size and shape, so these are defined separately in mainmenu\skin.xml) -->
<CompositeImage name="SelectedButtonImage" size="130,38">
<DrawRoundedRect loc="4,5" size="120,30" radius="10" borderWidth="4" borderColor="White" fillColor="DarkGreen"/>
<DrawText text="@buttonText" loc="15,9" size="115,34" textStyle="ButtonText" align="Left"/>
</CompositeImage>
<!-- image used for a normal button (in this skin the main menu buttons are different size and shape, so these are defined separately in mainmenu\skin.xml) -->
<CompositeImage name="NormalButtonImage" size="130,38">
<DrawRoundedRect loc="4,5" size="120,30" radius="10" borderWidth="4" borderColor="Black" fillColor="DarkGreen"/>
<DrawText text="@buttonText" loc="15,9" size="115,34" textStyle="ButtonText" align="Left"/>
</CompositeImage>
<!-- image used for a popup selected button -->
<CompositeImage name="PopupSelectedButtonImage" size="130,38">
<DrawRoundedRect loc="4,5" size="120,30" radius="10" borderWidth="4" borderColor="White" fillColor="DarkRed"/>
<DrawText text="@buttonText" loc="0,9" size="130,34" textStyle="ButtonText" align="Center"/>
</CompositeImage>
<!-- image used for a popup normal button -->
<CompositeImage name="PopupNormalButtonImage" size="130,38">
<DrawRoundedRect loc="4,5" size="120,30" radius="10" borderWidth="4" borderColor="Black" fillColor="DarkRed"/>
<DrawText text="@buttonText" loc="0,9" size="130,34" textStyle="ButtonText" align="Center"/>
</CompositeImage>
(A) points to the normal buttons, which are displayed correctly in green.
(B) points to the popup buttons, which should be displayed in red, but show up in green, too.
I hope you can understand my problem now.
-alibert