 |
_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); }
|