PDA

View Full Version : mp3 file too big to loop?



Inflicted
March 26th, 2004, 12:54 PM
I've searched and found this code:

intro = new Sound();
intro.attachSound("loop");
intro.start(0, 6);

But my 558 K mp3 file has a delay in the loop.
Is the file too big?

Is there another way of doing this, to get a perfect loop?

thanks

kode
March 26th, 2004, 04:36 PM
It has nothing to do with the file size, don't worry about that... see http://www.macromedia.com/support/flash/ts/documents/loops_pause.htm.

Inflicted
March 26th, 2004, 06:39 PM
Read it, and tried this with an .aif file:

[code]id = setInterval(attach, 1000);
intro = new Sound();
intro.attachSound("loop", false);
intro.start(0, 999);

Doesn't work.

thanks anyway, nice weekend.