Hello,
I would like to have an alert which shows a message and doesn't allow the user
to do anything more i.e. no way to close it.
After some research in Internet I found the following snippet:
var a:Alert = Alert.show("Final message...");
a.mx_internal::alertForm.mx_internal::defaultButton.visible = false;
a.mx_internal::alertForm.mx_internal::defaultButton.enabled = false;
It almost does it but the user still is able to press ESC right after the alert
is shown and this makes the alert box disappear.
Any ideas how to achieve the desired behavior are very welcome.
Thanks,
Rondo