Código:
loadVariables("lista.txt", this);
var myMusic = new Sound();
mitemon.loadSound("01.mp3", true);
var poll = setInterval(checkProgress, 1000, mitemon);
onEnterFrame = function() {
bytes = (Math.round((mitemon.getBytesLoaded()/mitemon.getBytesTotal())*100) + " %");
}
mitemon.start(0, 99);
slider.control._y = -50;
slider.control.onEnterFrame = function() {
mitemon.setVolume(0-this._y);
};
slider.control.onPress = function() {
startDrag(this, false, this._x, -100, this._x, 0);
};
slider.control.onRelease = function() {
stopDrag();
};
stopButton.onPress = function() {
mitemon.stop();
};
playButton.onPress = function() {
mitemon.start(0, 99);
};
mitemon.onSoundComplete = function() {
gotoAndStop(3);
}//ese ultimo es el que detallaste mas arriba
stop();
entonces, en lista.txt tengo los temones que se van cargando a la radio, y este codigo lo tengo para el frame 3, 4, y 5, entonces... si adelanto rapidamente de tema, me da la impresion de que los anteriores se siguen cargando, me explico?
que hago
?