I have an Apollo app that I want to make open another window and load a module into it.
I'm following the instructions from this page... http://labs.adobe.com/wiki/index.php/Apollo:Documentation:Working_with_windows#Creating_windows I can make the new window appear, but nothing ever shows up in it. I then used the createNewWindow() method from the page above and that worked fine. It created a new window and showed a nice graphic in it. I then tried just adding a Label to that window by doing the following bit of code: var label:Label = new Label(); label.text = "Test Label"; label.x = 10; label.y = 10; newWindow.stage.addChild(label); However, that didn't add the Label to the window. I had previously tried adding a new ModuleLoader to the new window. I added event listeners to the ModuleLoader and it seemed to be loading the module, and then added the module to the child property of the ModuleLoader. However, just like the label, nothing appeared in the new Apollo window. Any help on this would be GREATLY appreciated. Cheers, Mark

