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>
Category: Flex 3 Action Script 3 Tutorial
Tags: addChild() | addEventListener() | CloseEvent.CLOSE | PopUpManager | PopUpManager.centerPopUp() | PopUpManager.removePopUp() | TitleWindow
Tags: addChild() | addEventListener() | CloseEvent.CLOSE | PopUpManager | PopUpManager.centerPopUp() | PopUpManager.removePopUp() | TitleWindow
Comments
Leave a Reply
You must be logged in to post a comment.
Sameera at LinkedIn
