Action Script 2 - Flash

음악 파일 플레이시키기

작성자 정보

  • 작성자 김두호
  • 작성일

컨텐츠 정보

본문



사운드리스트를 선택하고 플레이버튼을 누르세요.

음악은 같은 폴더에 music1.mp3, music2.mp3의 이름으로 아무거나 가져오세요.(자료엔 미포함)

01.jpg
02.jpg
03.jpg
Instance Name : playbutton


Instance Name : stopbutton


Instance Name : pmusic
04.jpg
_root.onLoad=function() {
num=1;
}
_root.playbutton.onPress=function () {
stopAllSounds();
mySound=new Sound();
mySound.loadSound("music"+num+".mp3",true);
pmusic.text="music"+num+".mp3";
_root.moving.gotoAndPlay(2);
}
_root.stopbutton.onPress=function() {
stopAllSounds();
pmusic.text="";
_root.moving.gotoAndStop(1);
}

관련자료

댓글 0
등록된 댓글이 없습니다.
알림 0