R – Styles that are not found in Flex documentation

actionscript-3apache-flex

today I wanted to change the border color of TextInput when user has a focus on it. I could not find any style that would allow me to change that. A little bit of Google searching and I found answer to be themeColor.

Why is it that there are some styles that work and which are not even mentioned in the Flex documentation? (and how can one find out about em, except doing some web searching?)

Thanx
Ladislav

Best Answer

As always I suggest while managing in color and properties use Flex Style Explorer create a stylesheet.css, put it into src folder and then call it by the following statement:

<mx:Style source="yourstylesheet.css" />
Related Topic