Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make title window (pop up) in flex .. which contains some buttons if i click on any button then another button has to add outside the title window can anyone help me out. Thanking you

share|improve this question

1 Answer

Pop ups can be achieved using the Alert class. Say for showing a pop up below code might work

Alert.show("Alert Text", "Title", Alert.OK, this, start_app);

The Alert.OK specifies the buttons to be included. You can include more by using OR operator. The labels of these button can also be changed to meet your requirements. The start_app is called the closeHandler which will be triggered if any button in the Alert is pressed. Further logic can be put in the closeHanlder. For detailed information see http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/controls/Alert.html

share|improve this answer
thanks for your ans.. but i want new window to open in button click ..(which is inside in popup window.) – Aniket s Nov 12 '12 at 9:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.