Hey guys I am trying to get my AIR app's window to resize to the
dimensions of the FLV that is being displayed. I am not finding what
properties i need to use to make this happen. Can some one point me in
the right direction?

I have been staring at this:
http://livedocs.adobe.com/labs/flex3/langref/flash/display/NativeWindowResize.html
trying to make sense of it. But not having much luck. Thanks in advance!


var meta:Object = new Object();
meta.onMetaData = function(meta:Object)
{
        video.width = meta.width;
        video.height = meta.height;
        NativeWindow.width = meta.width;
        NativeWindow.height = meta.height;
        
}

ns.client = meta;





-- 
Corban Baxter
http://blog.projectx4.com
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to