ウェブ学のすすめ

Study of Web Design & Programing

ActionScript 2.0で作るミュージックプレイヤー

プレビュー

作り方

【1】ボタン類などを作る
【2】再生ボタン、停止ボタンを「シンボルに変換」
【3】新規レイヤーを作りアクションを記述する
【4】サーバーにアップロードしたファイルパスを指定

コード

var snd1:Sound=new Sound();
var snd2:Sound=new Sound();
var snd3:Sound=new Sound();

play1_btn.onRelease = function() {
	snd1.loadSound("〜/menuettm.mp3",true);
	snd1.start();
}
play2_btn.onRelease = function() {
	snd2.loadSound("〜/eine.mp3",true);
	snd2.start();
}
play3_btn.onRelease = function() {
	snd3.loadSound("〜/sonatine1.mp3",true);
	snd3.start();
}
stop1_btn.onRelease = function() {
	snd1.stop();
}
stop2_btn.onRelease = function() {
	snd2.stop();
}
stop3_btn.onRelease = function() {
	snd3.stop();
}