Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/08/2008, 13:07
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: Aumentar velocidad desplazamiento objeto

hola

prueba asi

Código PHP:
var vel:Number 1;

   
objeto.onEnterFrame = function() {
            
this._x += this.speed;
            
            
//si sale de la pantalla
            
if (this._x>Stage.width) {
                
this.removeMovieClip();
            }
            
}

boton.onPress = function() {
 
    
    
vel += vel;
    
objeto.speed vel;
    
_root.salida vel;
    

__________________
Sobran las ideas cuando faltan ganas de trabajar en ellas
Lynxcraft