1
votes

I am creating a dummy mobile application in Flash Builder 4.5. In application code I am using a TextArea and I am adding and removing TextArea on rum time. Now I want to set TextArea background color to black and font color to white.

How can I do this?

1

1 Answers

2
votes

I must say it's not really straightforward, but the style you're looking for is not backgroundColor, but contentBackgroundColor. It is applicable to all components extending SkinnableTextBase.

<s:TextArea color="0xffffff" contentBackgroundColor="0x000000" />