07/04/2004, 09:56
|
| | | Fecha de Ingreso: noviembre-2003 Ubicación: Guatemala
Mensajes: 742
Antigüedad: 21 años Puntos: 4 | |
te puede servir:
Código:
stop();
el_objeto_sonido=new Sound();
el_objeto_sonido.loadSound("lamusica.mp3","false");
sonido_cargado=function(){
delete onEnterFrame;
el_objeto_sonido.start("",999);
el_objeto_sonido.setVolume(100);
trace("el sonido esta listo para ser manehado");
}
onEnterFrame=function(){
bl=el_objeto_sonido.getBytesLoaded();
bt=el_objeto_sonido.getBytesTotal();
perc=int((bl/bt)*100);
trace(perc);
if(bl==bt){
sonido_cargado();
}
}
__________________ '_' ... |