My Flex application is required to load a SWF file externally. This SWF file has a popup. How could I ensure the popup is at the middle of my Flex application and modal?
Thanks.
Edit:
The popup component is owned by SWF file (through a “Show more” button) and is not just an Alert. The SWF file is provided by third party. Any update on the SWF file and its popup component do not require re-compilation.
Create a new component let’s say MyExternalPopup.xml
and then you can show and center the popup like this:
I hope this can help you.