PDA

View Full Version : loading mp3's dynamically



jagreen78
September 23rd, 2003, 01:56 PM
SO I have a mp3 that I'm loading dynamically like so:

amnesiaLoop = new Sound(loopMC);
amnesiaLoop.loadSound("http://www.amnesiasc.com/assets/club0.mp3", true);
amnesiaLoop.start(0, 999);

The loop loads just fine but it stops after playing once even though I tell it to loop 999 times?????

ANY help on this would be great.

Voetsjoeba
September 23rd, 2003, 02:13 PM
That's funny, that shouldn't happen ... can we see the fla ?

jagreen78
September 23rd, 2003, 02:26 PM
Go here http://www.amnesiasc.com/help.fla

kode
September 23rd, 2003, 03:06 PM
http://www.kirupaforum.com/forums/showthread.php?s=&threadid=34948

Voetsjoeba
September 23rd, 2003, 03:10 PM
Ok, that will work, but what I'm wondering about is why that doesn't work. Has it something to do with the streaming ?

jagreen78
September 23rd, 2003, 05:52 PM
What kode posted did work but it still skips at the end of the loop and isn't really producing the same effect of continous loops....

Digitalosophy
September 24th, 2003, 02:54 AM
Originally posted by Voetsjoeba
Ok, that will work, but what I'm wondering about is why that doesn't work. Has it something to do with the streaming ?




mySound.start(0,999);


doesnt work when streaming mp3's. you can't loop them like that