/Test/flex_only_mxml.mxml

http://github.com/fishman/ctags · Macromedia eXtensible Markup Language · 29 lines · 25 code · 4 blank · 0 comment · 0 complexity · ca27b51b8c0ce5cf460f016e09edb311 MD5 · raw file

  1. <!--?xml version="1.0" encoding="utf-8"?-->
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" >
  3. <mx:Label x="162" y="176" text="Username:"/>
  4. <mx:Array id="forms">
  5. <mx:Object label="Issue Tracking" data="12" custom="issueTracking" />
  6. </mx:Array>
  7. <mx:ViewStack x="149" y="55" id="viewstack1" width="831" height="605" change="onChangeViewStack(event);" >
  8. <mx:Form label="{logInOut}" width="100%" height="100%" id="form_login_screen">
  9. <mx:FormItem>
  10. <mx:Canvas width="623" height="511">
  11. <mx:Label x="162" y="176" text="Username:"/>
  12. <mx:Label x="162" y="208" text="Password"/>
  13. <mx:TextInput id="ls_ti_username" x="240" y="174" text="admin"/>
  14. <mx:TextInput id="ls_ti_passwd" x="240" y="206" displayAsPassword="true" text="Demo05"/>
  15. <mx:Button id="ls_bt_log_in_out" x="240" y="238" label="{logInOut}" enabled="true" click="onButtonClick(event)"/>
  16. <mx:Label x="194" y="287" width="315" id="ls_lb_welcome" fontSize="16" fontWeight="bold"/>
  17. </mx:Canvas>
  18. </mx:FormItem>
  19. </mx:Form>
  20. </mx:ViewStack>
  21. <mx:HTTPService
  22. id="myHTTPService"
  23. result="resultHandler(event);"
  24. />
  25. </mx:Application>