Flash sound
// 외부 파일 로드후 실행 _root.loadSoundbtn.onRelease = function(){ _root.click_loadSoundBtn(); } var my_sound:Sound = new Sound(); my_sound.onLoad = function(success:Boolean) { if (success) { my_sound.start(); status_txt.text = "Sound loaded"; } else { status_txt.text = "Sound failed"; } trace( success ); }; function click_loadSoundBtn(){ my_sound.loadSound("song2.mp3", true); } ////////////////////////..