Is there an event dispatched when a modal is brought to the front in Flex? Basically there are two times when I would want to listen for this event:
- When the modal is first created (although in theory creationComplete / show / etc.. could suffice here)
- When the user brings a modal that is not in the front to the front by clicking on it.
In my case the popups I am working with are descendants of TitleWindow and listening for focusIn does not seem to work reliably.
I ended up listening for “focusIn” and “focusOut”. Flex Builder’s intellisense doesn’t offer these up as events you can listen for but it turns out that you can. Thanks for the help.