Application creationComplete event : Application Event « Container « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Container » Application EventScreenshots 
Application creationComplete event
            

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    creationComplete="trace(ObjectUtil.toString(myAC))">
    <mx:Script>
        
        import mx.collections.ArrayCollection;
        import mx.utils.ObjectUtil;
        public var myAC:ArrayCollection = new ArrayCollection([
            {label:"J", data:"j"},
            {label:"T", data:"t"},
            {label:"F", data:"f"}
        ]);
      
    </mx:Script>
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
    
  
Related examples in the same category
1.Add event handler for applicationAdd event handler for application
2.Application initialize eventApplication initialize event
3.Use Application control's initialize eventUse Application control's initialize event
4.preinitialize, initialize, creationComplete events for Applicationpreinitialize, initialize, creationComplete events for Application
5.Application complete eventApplication complete event
6.Application click eventApplication click event
w__w__w___.ja__va2___s___._c_o__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.