Ver Mensaje Individual
  #7 (permalink)  
Antiguo 23/04/2008, 08:53
Avatar de carlxime
carlxime
 
Fecha de Ingreso: marzo-2007
Ubicación: México
Mensajes: 180
Antigüedad: 17 años, 8 meses
Puntos: 6
Re: Miren este codigo

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.