How would I implement a Confirm-like dialog in Flex? Basically, a confirmation popup (modal) window so the application will wait (freeze) for the user's input and then will use it to continue its execution?
Another case would be a session timeout handling. I want to alert the user about it in an Alert popup, then after they click on OK, to present them with the Login screen. But I noticed if I'm popping up an Alert box, the process execution continues, that is, it does not wait for user to click the button (and in my case, the Login Window pops up while the alert box is still there, behind it). Thanks, Robert

