Hi,
I’m trying to attach a sound loop to a flash-site.
Code I’m using is here:
var playing = 0;
mySound = new Sound(this);
mySound.loadSound(“sound.mp3”, false);
mySound.onLoad = function(ok) {
if (ok) {
mySound.start(0, 999);
mySound.setVolume(50);
//set playing true
playing = 1;
}
};
It actually loads the track but plays it at higher speed or some other tracks, I’ve tested, at lower speed. I’m out of ideas, can someone give a bit of advise, please…
Thanks,