RG1967
RG1967

Reputation: 378

Creating non-interfering window in flex

We are building a project in Flash Builder 4(flex) and to optimize on screen space, looking to move some display content to a separate window, while the animation runs

We cannot use a pop-up as it takes control and will not allow anything else to be viewed till it is closed. Any way we can create a"read only" window that can be moved around but does not prevent the base animation from running...Thanks for any pointers

I know the title is lame- couldn't think of a better description...

Upvotes: 1

Views: 140

Answers (1)

Jason Towne
Jason Towne

Reputation: 8050

You should still be able to use a pop-up. When you pop up the window, just set the modal property to false. That way you can still interact with the rest of your application.

Example:

PopUpManager.addPopUp(myPopUpWindow, DisplayObject(FlexGlobals.topLevelApplication), false);

Upvotes: 2

Related Questions