有人可以简单解释Flash事件框架中的3个阶段吗?
按事件阶段,我的意思是:
> CAPTURING_PHASE
> AT_TARGET
> BUBBLING_PHASE
要清楚,我在谈论flash.events.Event和子类.
一个深入的例子太棒了.单击嵌套的MovieClip会发生什么?
解决方法
With event propagation you’re dealing with three “phases” of an event (see Figure 2). Each phase represents a path or the location of an event as it works itself through the display objects in Flash that relate to that event. The three phases of an event are capturing,at target,and bubbling:
>捕获阶段:这代表了
目标对象的父对象
事件起源于此.任何
传播事件始于
最顶级的父母(舞台)和工作
向下显示对象层次结构
直到达到原始目标.
>目标阶段:目标阶段是
事件发生的阶段
目标对象或来自的对象
事件起源于哪个.不像
捕获和冒泡阶段,
这个阶段总是只涉及到
一个对象,即目标对象.
>冒泡阶段:当一个事件
“泡沫”它反过来
捕获阶段的路径和
以父母的方式工作
直到目标对象的层次结构
到达最顶级的父母或
阶段.