Hey Sebastien/Gordon
I'm not sure I understand what you're asking… mxml compilation at runtime? Are you going to compile a page when a request comes in? As for the dynamic creation of content based on custom xml, that is quite nice. It's a big part of my current "spare time" project. The only real issue so far I have had, is that in order for me to generate the UI, all custom components needed to be referenced once inside my code. So even though I have this: import dc.digr.ui.comp.*; I still need this: *var* a:digrButton = *new* digrButton (); *var* b:digrButtonLarge = *new* digrButtonLarge(); *var* c:digrButtonIconOnly = *new* digrButtonIconOnly(); *var* d:digrButtonMini = *new* digrButtonMini(); for all the custom ui components in the beginning of my code to avoid a runtime error…. Gordon, if you have some wisdom on this…. Spread the joy! J

