■ ビデオのサイズを調べるには
//メインタイムラインのフレームアクション
xShowSize("開始時");
this._nc
= new NetConnection();
this._nc.connect(null);
this._ns = new NetStream(this._nc);
this._ns.onStatus = function(infoObject)
{
xShowSize(infoObject.code);
};
this._video.attachVideo(this._ns);
this._ns.play("video01.flv");
function xShowSize(theCode){
this._txt.text += theCode
+ ":" + "\n";
this._txt.text += " _width:" +
_video._width + "\n";
this._txt.text += " _height:" +
_video._height + "\n";
this._txt.text += " width:" +
_video.width + "\n";
this._txt.text += " height:" +
_video.height + "\n\n";
}

