Hola marioprieto,
Haz la prueba agregando el siguiente código a tu archivo:
Código:
MySound.onSoundComplete = function() {
if (AudioActual<AudioTotal) {
AudioActual += 1;
AudioPath = aPath[AudioActual-1];
tAuthor = asongTitle[AudioActual-1];
}
else
AudioActual = 1;
MySound = new Sound();
volume = 100;
MySound.setVolume(volume);
MySound.loadSound(AudioPath, StreamFlag);
FlagPausa = false;
_parent.onEnterFrame = function() {
TB = MySound.getBytesTotal();
BL = MySound.getBytesLoaded();
if (BL != TB) {
TheText2.text = Math.round((BL/TB)*100)+"% Cargando";
} else {
TheText2.text = "Tema Cargado";
delete _parent.onEnterFrame;
MySound.start();
}
};
}
Saludos.