Vi har lavet en lineær lydcollage i actionscript, og bruger 3 lydfiler. De looper allesammen ved:

var channel1:SoundChannel = sound1.play(0, int.MAX_VALUE);
var channel2:SoundChannel = sound2.play(0, int.MAX_VALUE);
var channel3:SoundChannel = sound3.play(0, int.MAX_VALUE);

Vi har desuden også benyttet kodning til at lave echo og blend. Vores problem er, at vi gerne vil have at al lyd skal stoppe efter ca. 1 minut. Da vores lydfiler looper, kan vi ikke bruge position til at sige hvornår de skal stoppe, da de har loopet igen før den ønskede position opnås.
Vi er ude i noget i denne stil (men ved ikke hvad vi skal sætte ind efter if:

this.addEventListener(Event.ENTER_FRAME, stopAltLyd);

function stopAltLyd(evt:Event):void {
if(??) {
SoundMixer.stopAll();
}
}