This is what I've done so far.
<!-- fill -->
<!--- Defines the appearance of drop-down list's background fill. -->
<s:Rect id="background" left="1" right="1" top="1" bottom="1" >
<s:fill>
<!---
The color of the drop down's background fill.
The default color is 0xFFFFFF.
-->
<s:SolidColor id="bgFill" color="#DB9E36"/>
</s:fill>
</s:Rect>
If you look closely you'll see that I've changed the default value for the bgFill
color. However, when I run my application, the background color for the dropdownlist is still the default white.
Am I doing anything wrong here?
Thanks in advance.