■ 外部MP3ファイルを再生するには
//メインタイムラインフレームアクション
this._sound
= new Sound();
this.stream_btn.onRelease
= function(){
_sound.loadSound("bgm01.mp3",
true);
onEnterFrame = function(){
var loadedper_num = Math.floor(_sound.getBytesLoaded()
/ _sound.getBytesTotal()
* 100);
_txt.text = loadedper_num
+ "%";
if (loadedper_num >=
100){
delete onEnterFrame;
}
};
};

