> Is there a more precise date than early 2008 ? I think that's still the guidance. Gordon Smith Adobe Flex SDK Team
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of bouiaw Sent: Sunday, December 02, 2007 6:03 PM To: [email protected] Subject: [flexcoders] Re: Runtime MXML compiler Hi, Yes, I will compile mxml at runtime. After some testing, MXMLCompilerServlet from Graniteds works well with simple mxml file, so with an open source Flex3 compiler, it should be ok. Is there a more precise date than early 2008 ? Allan, if it is possible, can you give more details on how you implemented it ? If it is possible, could you give a look on the org.granite.messaging.webapp.MXMLCompilerServlet implementation (http://www.graniteds.org <http://www.graniteds.org> ) and say us how different yours is ? --- In [email protected] <mailto:flexcoders%40yahoogroups.com> , DreamCode <[EMAIL PROTECTED]> wrote: > > 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 >

