use PopUpManager. create an mxml component which is responsible for password changing (say Pass.mxml)
in your login mxml , in the onClick event of the change password button, use popUpManager to create a Pass.mxml var a:Pass = new Pass(); PopUpManager.addPopUp(a as IFlexDisplayObject , this); then in the close function of Pass.mxml PopUpManager.removePopUp(this); Tom Preet wrote On 01/16/2008 09:26 AM: > Hi All, > > > Iam working using login page in my app am using username, password to > give username and password, when I click on submit > button it will validate the user name and password upto here working fine. > > I am using another button for change password when I click on change > password button a new popup menu or window > is tobe displayed. can anyone suggest mw how to use popups for such > buttons. > > Thanks in Advance.. > > --Tomt > >

