ライブラリ内のサウンドを再生するには
//メインタイムラインのフレームアクション
this._sound = new Sound();
this._sound.attachSound("BGM01");
this.play_btn.onRelease = function(){
_sound.start(0, 999);
};
this.stop_btn.onRelease = function(){
_sound.stop();
};
・サンプルを
実行
・サンプルを
ダウンロード
説明などは本書を参考にしてください。