Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/12/2005, 09:26
Avatar de Mauri1
Mauri1
 
Fecha de Ingreso: noviembre-2002
Ubicación: Santiago de Chile
Mensajes: 558
Antigüedad: 21 años, 4 meses
Puntos: 0
Código:
i = 0;
function progreso() {
 _root.onEnterFrame = function() {
  if (i != 100) {
   i++;
  } else {
   i = 100;
  }
  sonido.setVolume(i);
 };
}
boton.onRelease = function() {
 progreso();
};