■ 外部FLVファイルのダウンロード状況を調べるには
//メインタイムラインのフレームアクション
this._nc
= new NetConnection();
this._nc.connect(null);
this._ns = new NetStream(this._nc);
this._video.attachVideo(this._ns);
this._ns.play("video01.flv");
this.onEnterFrame = function(){
this._txt.text = this._ns.bytesLoaded
+ "/" + this._ns.bytesTotal;
};

