이벤트를 등록한 다음 trace를 걸어보면 bubbles 라는 항목을 볼 수 있다.

[함수]
function addedHandler(event:Event):void {
 trace("addedHandler: " + event);
}

[결과]
addedHandler: [Event type="added" bubbles=true cancelable=false eventPhase=3]

bubbles : Boolean
[read-only] Indicates whether an event is a bubbling event. 버블링 이벤트인지 여부를 나타냄.

여기서 말하는 bubbles란 간단하게 말해서 연쇄 이벤트 발생을 뜻함.
해당 이벤트가 등록됨에 따라 연쇄적으로 다른 이벤트가 발생하는지의 여부를 알려준다.

+ Recent posts