Flex 101: Add skins to a Flex application

By maohao

Say you want to use FP drawing API to add some hand-coded vector graphics to your Flex containers, as you normally do in a Flash piece:

this.rawChildren.addChild(triangle);

The reason that Flex uses this.rawChildren property is to distinguish “style elements and skins” from the normal UIComponents that are accessible from addChild/getChildAt/numChildren, etc.

Leave a Reply