flex4 如何做出弹出窗口 ,并且能在里面填写东西并提交。。

flex4 的,最好能 给点实例或代码 谢谢各位了
2024-12-31 22:28:15
推荐回答(1个)
回答1:

在弹出的windows中 使用回调, 设置主页面的参数时,在使用Object对象:
1. 在父窗口中打开的时候增加owner参数为this:
var childWin:ChildWin = new ChildWin();
childWin.owner = this; // this 即为当前窗口
PopUpManager.addPopUp(childWin, this, false);
2. 在子窗口中调用方式
var pModule:Object = owner;
pModul.回调主页面方法();
// 关闭 pop windows
PopUpManager.removePopUp(this);

方法使用的是 public function 回调主页面方法()

--------------------------------------------------------------------
打开窗口方式二: 居中打开
var childWin : ChildWin = ChildWin(PopUpManager.createPopUp(this, ChildWin, true));
childWin.owner = this;
PopUpManager.centerPopUp(childWin);
--------------------------------------------------------------------

打开窗口方式三: 居中打开
var childWin:ChildWin = new ChildWin();
childWin.owner = this; // this 即为当前窗口
PopUpManager.addPopUp(childWin, this, false);
PopUpManager.centerPopUp(childWin);

这个是我写的