Home > php教程 > PHP开发 > Flex pop-up window request Action function example

Flex pop-up window request Action function example

高洛峰
Release: 2016-12-27 17:32:18
Original
1310 people have browsed it

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" 
}
Copy after login

For more Flex pop-up window request Action function examples and related articles, please pay attention to the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template