Sound looping problem

is there an easier way to do INF. loops instead putting the numbers of loops that is going to play?

how is it hard typing a number in a box??? or maybe im misunderstanding the question.

the only way is to fill the box with 9’s.

/unflux
:goatee:

Hi Cripple Guy,

This should loop infinitely. You must think people are going to listen to your loop more than 999 times:P


myLoop = new Sound();
myLoop.loadSound("myLoop.mp3", false);
myLoop.start();

myLoop.onSoundComplete = function() {
    myLoop.start();
}