suppose using sound.start(0,999) will loop the sound for 999 times.
when i load mp3 externally and want it to loop for many time by using below code:
bgSound = new Sound(this);
bgSound.loadSound(“song.mp3”, true);
bgsound.start(0, 99);
why the song do not loop? it only play for one time.