Ciao. Vorrei far caricare un file audio in streaming e fin qui tutto ok.
Il problema è che con la fuznione di streaming non funziona poi il loop. Come faccio?Ecco il codice:
var mySound = new Sound();
mySound.onLoad = function (loadedOK) {
if(loadedOK) {
mySound.start(0,9999);
}
}
mySound.loadSound("loop.mp3", true);
mySound.setVolume(25);
grazie a tutti