Click here to ask Question NowIts free No registration required. Flash, Flex, Flash
Media Server, ActionScript,Adobe Air. Most questions receive a response in an hour.
you can use below code to create new window in flex
private function openNewWin():void
{
myWindow = new MyWindow();
myWindow.title = "This is New Window Adobe AIR!";
myWindow.maximizable=false;
myWindow.open();
}