Home  >  Article  >  php教程  >  Flex pop-up window request Action function example

Flex pop-up window request Action function example

高洛峰
高洛峰Original
2016-12-27 17:32:181231browse

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" 
}

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

Statement:
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