[FLEX] PopUp 띄우기

출처 : Flext Popup 띄우기
http://lagrima.tistory.com/
==================================================================

<mx:Script>
        <![CDATA[
            import mx.core.IFlexDisplayObject;
            import mx.managers.PopUpManager;
            private function login():void
            {
                  var flexPopup:IFlexDisplayObject = PopUpManager.createPopUp(this as DisplayObject, PopIn, true);
                  //popupmanager에 "flexpopup"이라는 popup창을 띄운다.
                  //PopIn은 띄울 팝업창에 대한 정의가 되어 있는 mxml이름이다.
                  (flexPopup as PopIn).myid = this.insert.text;
                  //혹시 팝업창에 넘길 인자가 있다면 이런 식으로 넘겨주면 된다.
                  PopUpManager.centerPopUp(flexPopup);   
                  //팝업창이 띄워지는 위치를 정중앙으로 옮긴다.
            }
        ]]>
</mx:Script>

 

0 Shares:
Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.