Tag: mxml

  • See the code Flex generates for you

    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 […]

  • Embedding htmlText in your TextArea control

    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 […]