외부변수 받아 음악 플레이 시키기

작성자 정보

  • 작성자 관리자
  • 아이피 218.♡.76.37
  • 작성일

컨텐츠 정보

본문

태그에 붙여 사용하기


instance_31.jpg

① Instance Name : playbutton
② Instance Name : stopbutton
③ Instance Name : designer
④ Instance Name : moving
⑤ instance Name : pmusic

act_31.jpg

_root.onLoad=function() {
var mid = get("mid");
var user = get("cap");
pmusic.text=mid;
designer.text=cap;
//소스리스트 초기화
if (mid==Null) {
mid="http://초기음악파일주소";
pmusic.text=mid;
}
//라벨 초기화
if (cap==Null) {
cap="Web MP3 Player Ver1.0";
designer.text=cap;
}
}
_root.playbutton.onPress=function () {
stopAllSounds();
mySound=new Sound();
mySound.loadSound(pmusic.text,true);
_root.moving.gotoAndPlay(2);
mySound.onSoundComplete = function() {
_root.moving.gotoAndStop(1);
}
}
mySound.onSoundComplete = function(){
_root.moving.gotoAndStop(1);
}
_root.stopbutton.onPress=function() {
stopAllSounds();
_root.moving.gotoAndStop(1);
}

관련자료

댓글 0
등록된 댓글이 없습니다.
Total 35 / 3 Page
번호
제목
이름