728x90
반응형
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.currentTarget.parent.name].visible = false;
this[e.currentTarget.parent.name].gotoAndStop(1);
this[e.currentTarget.parent.name].visible = false;
}
3. 자식 객체에서 부모 객체에 전달
function clickHandler( e:MouseEvent ):void{
var parentObj:Object = this.parent;
parentObj
}
반응형
LIST
'전공 > 실무' 카테고리의 다른 글
[as2.0&3.0]volume (0) | 2012.12.06 |
---|---|
[as2.0&3.0]controlBar (0) | 2012.12.06 |
[as3.0] getChildAt, getChildByName (0) | 2012.12.06 |
xmlrpc [soap] 실 사용 방법 소스 바로 적용 가능~^^ (0) | 2011.08.17 |
mysql 조회 후 php로 xml 생성 소스 (0) | 2011.08.17 |