15/12/2005, 09:26
|
| | | Fecha de Ingreso: noviembre-2002 Ubicación: Santiago de Chile
Mensajes: 558
Antigüedad: 22 años 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();
};
|