What is event flow in term of event handling in flash action script 3.0? : adobe flex action script
Answer Posted / Desh Deepak
Event flow in Flash ActionScript 3.0 refers to the order in which events are handled by display objects. The event flow can be divided into two phases: dispatch phase and capture phase. During the dispatch phase, events are dispatched up the display list tree from the event target to its immediate parent, until it reaches a display object with an enabled `mouseEnabled` or `mouseChildren` property. After that, the event is captured by the event listener of the display object. Then, during the capture phase, events are captured down the display list tree from the root display object to the event target. The purpose of the capture phase is to handle events before they reach the target display object.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers