Search

 

July 2007
S M T W T F S
« Jun   Aug »
1234567
891011121314
15161718192021
22232425262728
293031  

Tags

Archives

Archive for July 17th, 2007

AIR Windows

Tuesday, July 17th, 2007

TweetThere 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 = [...]