hoony's web study

728x90
반응형

플렉스로 요즘 개발준비를 하면서 팝업창을 만드는 방법을 찾다가
답을 찾아서 이렇게 글을 올리게 되었다.
물론 내가 쓰는 글은 우리 팀원들을 위해서 하구 있지만 ㅋㅋ

팝업윈도우를 만들기 위해서는 아래와 같은 속성을 써야한다.

To create a pop-up window, use the PopUpManager's createPopUp() method. The createPopUp() method has the following signature:

public static createPopUp(parent:DisplayObject, class:Class,
    modal:Boolean = false) : IFlexDisplayObject

The method has the following arguments:

Argument

Description

parent

A reference to a window to pop-up over.

class

A reference to the class of object you want to create, typically a custom MXML component that implements a TitleWindow container.

modal

(Optional) A Boolean value that indicates whether the window is modal, and takes all mouse input until it is closed (true), or whether interaction is allowed with other controls while the window is displayed (false). The default value is false.

NOTE


Flex continues executing code in the parent even after you create a modal pop-up window



팝업창을 센터에 나타내게 하기 위해서는
PopUpManager.centerPopUp(this);
팝업창을 사라지게 하기 위해서는
PopUpManager.removePopUp(this);
물론 위의 내용은 adobe flex의 도움말을 약간의 번역을 첨가해서
정리를 하여 본것이다.


728x90

공유하기

facebook twitter kakaoTalk kakaostory naver band
loading