Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/08/2008, 13:13
Proguri
 
Fecha de Ingreso: abril-2008
Ubicación: Montevideo - Uruguay
Mensajes: 156
Antigüedad: 16 años
Puntos: 5
Respuesta: Aumentar velocidad desplazamiento objeto

Hi !

A no ser que quieras seguir utilizando tantas variables (Quizas tienen más de un proposito) puedes hacer lo siguiente:

Código PHP:
var speed:Number 0;

ball.onEnterFrame = function() {
    
this._x += speed;
    
    if (
this._x>Stage.width) {
        
this.removeMovieClip();
    } 
}

boton.onRelease = function() {
    
speed++;

Con eso seria más que suficiente.

-ByE-
__________________
--
Mi Portfolio Online! Visitalo!
--