package com.zehfernando.ui { import flash.display.*; import flash.events.*; /** * @author Zeh Fernando - z at zeh.com.br */ public class SmartMovieClip extends MovieClip { // Private properties protected var inited:Boolean; public function SmartMovieClip() { addEventListener(Event.ADDED_TO_STAGE, onAddToStage); addEventListener(Event.REMOVED_FROM_STAGE, onRemoveFromStage); } protected function onAddToStage(e:Event = null): void { // This object has been added to the stage if (!inited) { inited = true; onInit(); } stage.addEventListener(Event.RESIZE, onResize); onResize(); } protected function onRemoveFromStage(e:Event = null): void { // This object has been removed from the stage stage.removeEventListener(Event.RESIZE, onResize); } protected function onResize(e:Event = null):void { // Resizes the object accordingly // Do something } protected function onInit(): void { // Initializes everything - how the document looks // This is done separately because this can be loaded by other movie // (.stage doesn't exist in the constructor and such) } } }