サウンドの再生時間を調べるには
//メインタイムラインのフレームアクション
this._sound = new Sound();
this._sound.attachSound("BGM01");
this._sound.start(0, 999);
onEnterFrame = function(){
_txt.text = Math.floor(_sound.position / _sound.duration * 100) + "%";
};
・サンプルを
実行
・サンプルを
ダウンロード
説明などは本書を参考にしてください。