How to force flex to buble default event
开发者_StackOverflow社区subj, i need to listen for TooltipEvent of my far child. Is that possible without manual re-dispatching ?
You can try listening at the capture phrase. When adding the event listener in ActionScript there is an option to do so. If you do this your event listener will fire before the handlers that fire during the target phase.
Read a bit more about the event flow.
精彩评论