■ ライブラリ内のサウンドを再生するには

//メインタイムラインのフレームアクション
this._sound = new Sound();
this._sound.attachSound("BGM01");
this.play_btn.onRelease = function(){
_sound.start(0, 999);
};
this.stop_btn.onRelease = function(){
_sound.stop();
};