Can anyone explain how to resize the you tube player from with actionscript3.0 code. I can get the you tube player swf to load into my application with the following code, however I am having trouble resizing the player.
var request = new URLRequest("http://www.youtube.com/v/_UNgokP71tw");
request.method = URLRequestMethod.GET;
youTubeLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoaded);
Security.allowDomain("*");
youTubeLoader.load(request);