Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. import components.popups.MyPopup;
  2. public var pop:MyPopup;
  3. public function Show_Pop():void
  4. {
  5.  
  6. pop= PopUpManager.createPopUp(this,MyPopup,true) as MyPopup;
  7. PopUpManager.centerPopUp(pop);
  8.  
  9. }
  10.  
  11. <mx:Button click="Show_Pop()" id="btn1" label="show Popup"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement