Flex弹出窗口请求Action函数示例
程序员文章站
2022-03-21 23:28:04
复制代码 代码如下: private function askquestion(event:mouseevent):void { var askquestions:askw...
复制代码 代码如下:
private function askquestion(event:mouseevent):void
{
var askquestions:askwindow = new askwindow();
popupmanager.addpopup(askquestions,this,true);
popupmanager.centerpopup(askquestions);
askquestions.title = "解决问题窗口";
askquestions.action = "askquestions.action"
}