See the code Flex generates for you

Thaylin | September 24, 2009

A fascinating way of seeing all the code that the mxmlc compiler generates from your flex apps is to set a compiler flag for your project.
-keep
This takes all the generated code from your mxml files and places it in a “generated” folder in your src folder. This is great because it gives you the option [...]

Embedding htmlText in your TextArea control

Thaylin | October 23, 2008

So I’m currently working on my first mxml project at work (I’ve done other stuff but not at work so they were much less involved).
I realized a little in to the project that using the TextArea control can be a bit of a pain the ass at times. Namely, I couldn’t find a way to [...]