Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Problem
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): Mac
Affected OS(s): Mac OS 10.5
Language Found: English
Description
I'm using build 4.0.0.8864, not 4.0.0.8847 (didn't see it in the list)
Steps to reproduce:
1. Create a TextArea
2. Set backgroundColor in CSS or in MXML
Actual Results:
The TextArea has a white backgroundColor
Expected Results:
The TextArea has the backgroundColor that you specified
Example code:
<mx:TextArea text="This is a TextArea." backgroundColor="#FF0000"/>
or
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" width="600" height="600" layout="absolute">
<mx:Style>
@namespace mx "library://ns.adobe.com/flex/halo";
mx|TextArea
</mx:Style>
<mx:TextArea text="This is a TextArea."/>
</mx:WindowedApplication>