ActionScript 3.0;循环的音频文件

时间:2016-05-24 09:38:30

标签: actionscript-3 loops flash audio actionscript

目前尝试在我的Actionscript 3项目中无休止地循环声音片段(导入的mp3到库)。这是我目前的设置:

var sound:Sound = new bgm();
function playSound():void
{
    var channel:SoundChannel = sound.play(80);
    channel.addEventListener(Event.SOUND_COMPLETE, onComplete);
}

function onComplete(event:Event):void
{
    SoundChannel(event.target).removeEventListener(event.type, onComplete);
    playSound();
}
 //end loop

这不会报告任何错误;但它也没有播放任何声音。我错过了什么吗?在注册声音之前,是否需要将某些内容导入.fla?

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

您最初必须调用函数playSound()