Container Flex


    
    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark"
    creationComplete="callLater(showInitTime)">
    
        
    

     
        import flash.utils.Timer; 
        [Bindable] 
        public var t:String; 
        private function showInitTime():void { 
            // Record the number of ms since the player was initialized. 
            t = "App startup: " + getTimer() + " ms"; 
        }