目前尝试在我的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?
感谢您的帮助
答案 0 :(得分:0)
您最初必须调用函数playSound()
。