Home Articles Flex Open popup in flex

Tips and tricks

Site statistics

Members : 19
Content : 104
Content View Hits : 18415

Who's Online

We have 308 guests online
Open popup in flex PDF Print E-mail
User Rating: / 0
PoorBest 
Articles - Flex
Written by Agile   
Saturday, 11 July 2009 12:00

You can use import mx.managers.PopUpManager to manage popups in your flex applications. 

Import popup manager  class by importing it. 

import mx.managers.PopUpManager; 

 

To open the poup first you have to  create the instance of the control you want to show on popup and add it to the popup manager. 

Here is the code to do so. Here i have created a custom control where all the child controls are wrapped into.

//Decalre the custom control

var myControl:MyCustomControl;

//Open up the custom control in the popup. 

 var myControl:MyCustomContro = new MyCustomControl();

//Add control to the popup manager to show

 PopUpManager.addPopUp(myControl,this,true);

//Center the popup control 

 PopUpManager.centerPopUp(myControl);