我想知道您如何使用 AS3 在 Flash CS6 中一遍又一遍地重复歌曲?
目前我有这个代码:
var sound:Sound = new Sound(new URLRequest("YMCA.mp3"))
var soundChannel:SoundChannel = sound.play();
当这首歌一遍又一遍地完成时,我该如何重复?
非常感谢!
我想知道您如何使用 AS3 在 Flash CS6 中一遍又一遍地重复歌曲?
目前我有这个代码:
var sound:Sound = new Sound(new URLRequest("YMCA.mp3"))
var soundChannel:SoundChannel = sound.play();
当这首歌一遍又一遍地完成时,我该如何重复?
非常感谢!
将事件监听器添加到您的 soundChannel:
soundChannel.addEventListener(Event.SOUND_COMPLETE, soundCompleteHandler);
function soundCompleteHander(e:Event):void {
sound.play();
}
这将使声音以完美无间隙的播放方式循环多次
var sound:Sound = new Sound(new URLRequest("YMCA.mp3"))
var soundChannel:SoundChannel = sound.play(0,999999999);