Relax Breath of Solution.Community tech blog of Sameera Thilakasiri - Consultant UI, UX, RWD Specialist/ Interactive Designer

Just I wanted.. Do you?…

Creating custom dialog boxes using the PopUpManager and TitleWindow classes

Posted on February 14, 2010 | No Comments

Here are a couple examples of using the TitleWindow container with the PopUpManager class to create custom viagra cheap levitra online sale pop-up windows and dialog boxes.

<?xml version="1.0"   encoding="utf-8"?> 
<mx:Application   xmlns:mx="http://www.adobe.com/2006/mxml" 
layout="vertical"           
verticalAlign="middle"   
backgroundColor="white"     
creationComplete="init()">   


<mx:Script> 
<![CDATA[ 
import mx.controls.Label;   
import mx.events.CloseEvent;     
import   mx.containers.TitleWindow;     
import   mx.managers.PopUpManager;   

private   var titleWindow:TitleWindow; 

private function init():void { 
var label:Label = new Label(); 
label.text = "Hello   world"; 

titleWindow = new TitleWindow(); 
titleWindow.title = "Custom   title";   
titleWindow.showCloseButton = true; 
titleWindow.width   = 240; 
titleWindow.height = 180; 
titleWindow.addEventListener(CloseEvent.CLOSE,     titleWindow_close);   
titleWindow.addChild(label); 

PopUpManager.addPopUp(titleWindow, this, true); 
PopUpManager.centerPopUp(titleWindow); 
} 

private function titleWindow_close(evt:CloseEvent):void     { 
PopUpManager.removePopUp(titleWindow);     
} 

]]> 

</mx:Script> 

<mx:Button label="Launch TitleWindow" click="init()" /> 

</mx:Application>

Author
Sameera Thilakasiri By Sameera Thilakasiri
,is a front-end developer based in Colombo, is a blogger and a lifestyle photographer.
Follow him Twitter and Google+. Check out him.

Comments

Leave a Reply

You must be logged in to post a comment.