1.부모 객체가 자식 객체의 Event 체크{var childInstance:ChildClass = new ChildClass();addChild( childInstance );childInstance.addEventListener( Event.COMPLETE, completeHandler);} 2. 부모 객체에서 컨트롤this["imageBox"].closeBtn.addEventListener(MouseEvent.CLICK, closeHandler2);function closeHandler( e:MouseEvent ):void{ trace(e.currentTarget.parent.name); this[e.currentTarget.parent.name].gotoAndStop(1); this[e.curre..