Hi All.

I create simple AS project:

package {
        import flash.display.Sprite;
        
        import mx.events.FlexEvent;

        public class S01_CreationCompleteHandle extends Sprite
        {
                public function S01_CreationCompleteHandle()
                {
                        super()
                        addEventListener(FlexEvent.CREATION_COMPLETE,init);
                }
                
                public function init():void
                {
                        trace("init()");
                }
        }
}

but function init() doesnt call. Where I mistake?



-- 
pazaal

Reply via email to