i’m using this to load a streaming sound into my site
loop = new Sound();
loop.loadSound("niceLoop.mp3", true);
Is there any way to make it loop?
how come:
On(release) {
loop.stop();
}
works, but:
on(release) {
loop.start();
}
does not??
i just want a simple streaming loop with a play/stop button for the bkg on my site…