Archive for July 17th, 2007
AIR Windows
Tuesday, July 17th, 2007There has been some confusion over windows within an AIR application. The original alpha had a class named NativeWindow that is in the flash.display package. The sample code to create a NativeWindow looks something like this:
123456789101112131415private function createNativeWindow():void{
var newWindow:NativeWindow =
new NativeWindow( true, new NativeWindowInitOptions());
newWindow.title = "My Window";
[...]







