Wow.

This is great. I was intending to build something like this for my
project. Not something that read MXML, just something that would allow
me to build simple UIs from XML. Supporting MXML would be much better
for me than my own slimmed down XML language but I dont have time to
implement it, so your solution would be very helpful.

Does your code operate in the development environment (like flex does)
so that it creates swfs or actionscript which you then compile, or is
you code written in actionscript, so that MXML user interfaces can be
built inside the flash player based on a download of the MXML?

Also, when do you intend to release this.

Regards
Hank

On 11/5/05, Igor Ageyev <[EMAIL PROTECTED]> wrote:
> hw> Does this mean you have re-implemented all of the flex components in as2?
>
> ************      Realized features:
>
> Containers        box, vbox, hbox (grid in plans).
> Controls          all (possible to use not only components from MM).
> Data modeling     data model (while without treelike hierarchy)
>                   and simple data validation (expansion in plans).
> Event model       almost all.
> Managers          ToolTipManager.
>
>
> ************      Working example of MXML:
>
> <?xml version="1.0"?>
> <mx:Application>
>
>         <mx:HBox>
>                 <mx:Label text='Name' textAlign='right' />
>                 <mx:TextInput id='user' />
>         </mx:HBox>
>         <mx:HBox>
>                 <mx:Label text='Subject' textAlign='right'/>
>                 <mx:ComboBox id='menu'>
>                         <mx:dataProvider>
>                                 <mx:Array>
>                                         <item label='question' data='1'/>
>                                         <item label='offer' data='2'/>
>                                         <item label='congratulation' 
> data='3'/>
>                                 </mx:Array>
>                         </mx:dataProvider>
>                 </mx:ComboBox>
>         </mx:HBox>
>         <mx:HBox>
>                 <mx:Label text='Message' textAlign='right' />
>                 <mx:VBox>
>                         <mx:TextArea width='200' height='60' id='mess' />
>                         <mx:Button label='Send' toolTip='Send your message' 
> click='clickMe()'/>
>                 </mx:VBox>
>         </mx:HBox>
>
>         <mx:Model id="contact">
>                 <user>user.text</user>
>                 <subject>menu.selectedItem.label</subject>
>                 <message>mess.text</message>
>         </mx:Model>
>
>         <mx:Validator field='contact.user' requiredFieldError='Please enter 
> your name.' />
>         <mx:Validator field='contact.message' requiredFieldError='Please 
> enter your message.' />
>
> </mx:Application>
>
>
> --
> Best regards,
> Igor                            mailto:[EMAIL PROTECTED]
>
>
>
>
> _______________________________________________
> osflash mailing list
> [email protected]
> http://osflash.org/mailman/listinfo/osflash_osflash.org
>

_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org

Reply via email to