Re: [flexcoders] Re: AIR - NativeWindow Resizing

2008-02-19 Thread Corban Baxter
So i tried to get it to correct scope but still no go. this code is just sitting on the first frame of my movie BTW. Has anyone else tried to resize the stage on the fly? var video:Video = new Video(320, 240); addChild(video); var nc:NetConnection = new NetConnection(); nc.connect(null); var ns:

Re: [flexcoders] Re: AIR - NativeWindow Resizing

2008-02-19 Thread Corban Baxter
i hate to be a n00b but I can't seem to apply this to my app. I am guessing most likely that it has to do with scope but I'm not sure. anyway what I've done below doesn't seem to work either? Thanks for the help! var video:Video = new Video(320, 240); addChild(video); var nc:NetConnection = ne

[flexcoders] Re: AIR - NativeWindow Resizing

2008-02-19 Thread jmfillman
NativeWindowResize triggers when the application window is resized, via dragging or the Maximize/Restore Down button in MS Windows, and I don't think this is what you are wanting to use. Once you find the video size, you should be able to set the application size. Try out this simple code: h