이벤트를 등록한 다음 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란 간단하게 말해서 연쇄 이벤트 발생을 뜻함.
해당 이벤트가 등록됨에 따라 연쇄적으로 다른 이벤트가 발생하는지의 여부를 알려준다.
[함수]
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란 간단하게 말해서 연쇄 이벤트 발생을 뜻함.
해당 이벤트가 등록됨에 따라 연쇄적으로 다른 이벤트가 발생하는지의 여부를 알려준다.
'etc > old' 카테고리의 다른 글
고쿠센3 [Aqua Timez - 虹] (0) | 2008.05.08 |
---|---|
메인타임라인에 정의된 함수 호출하는 방법. (0) | 2008.05.07 |
배열의 shift(), unshift() 활용 (0) | 2008.05.07 |
Bitmap 처리속도 (0) | 2008.05.02 |
스크립트를 통한 컴퓨터 재부팅하기 (0) | 2008.05.02 |