Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/08/2008, 13:18
Avatar de Lynxcraft
Lynxcraft
 
Fecha de Ingreso: noviembre-2007
Ubicación: yecla murcia
Mensajes: 1.346
Antigüedad: 16 años, 5 meses
Puntos: 51
Respuesta: ayuda con % preload mp3 externo

Prueba lo así a ver si te sirve


Sonido = new Sound();
Sonido.loadSound("musica/eric Prydz_Fred Falke Mix.mp3",false);
this.onEnterFrame = function() {
total = Sonido.getBytesTotal();
cargado = Sonido.getBytesLoaded();
cant_carga = Math.floor(cargado/total*100);

_root.precarga.text = cant_carga +"%";
if (cargado == total && total>0) {
Sonido.start(0, 1);
delete this.onEnterFrame;}
};
__________________
Sobran las ideas cuando faltan ganas de trabajar en ellas
Lynxcraft