Flex-like pop-up window in Flash?
I normally use Flex 3, and often create pop up windows using PopUpManager. However, I see no comparable way to do such a thing in Flash CS4, using AS3.
What I would like to do is create a library MovieClip element, export for Actionscript, and then call that as my "popup" window when the user clicks a button.
In Flex, I would simply call from an event handler something like:
[Bindable] private var intro:Intro;
intro = com.mycomponents.Intro(PopUpManager.createPopUp(this,com.mycomponents.Intro,true));
Where intro in the component I created to be the window. How is something like this done in Flash, please?
