windowPupUp.mxml //부모형 참조변수 팝업창에서 메인창의 메소드를 사용할때 public var ac:ArrayCollection; private function returnInfo():void { //3가지 정보 입력후 버튼을 누르면 실행되는 함수 ac.addItem({name:userName.text, phone:userPhone.text, email:userEmail.text}); //p.부모메소드(); PopUpManager.removePopUp(this); } ]]> windowMain.mxml private var point1:Point = new Point(); [Bindable]public var ac:ArrayCollection = new ArrayCollection(); pr..