What is event flow in term of event handling in flash action script 3.0? : adobe flex action script
Answer / 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 |
What is state? What is the difference between states and viewstack in flex? : adobe flex action script
What does calling preventdefault() on an event do? How is this enforced? : adobe flex action script
Explain Life cycle of flex appln/component?
How do you implement push on a flex applications? : adobe flex action script
Can I still purchase flex charting?
What does calling preventdefault() on an event do? : adobe flex action script
How does item renderer work? How do we add item renderer at runtime in flex? : adobe flex action script
Can I load css style sheets dynamically at runtime? : adobe flex action script
What is interface or benefit of interface in term of oop?
What is interface in term of oop (flash actionscript)? : adobe flex action script
When I add or modify an item in my dataprovider, why does not it show up in my datagrid? : adobe flex action script
What is the difference between graphical skinning and stateful skinning?