Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/10/2011, 02:20
txemaker
 
Fecha de Ingreso: octubre-2007
Mensajes: 74
Antigüedad: 17 años
Puntos: 1
Busqueda codigo actionscript efecto lluvia (no para)

Hola amigos tengo el siguiente codigo actionscript, es un efecto lluvia y me funciona de maravilla, pero no consigo hacer parar el efecto en determinado frame (y que la animacion continue):


Código PHP:
///////////////////////////////////////////////////////////////////////////////
function randRange(min:Numbermax:Number):Number {
    var 
randomNum:Number Math.floor(Math.random() * (max min 1)) + min;
    return 
randomNum;
}
///////////////////////////////////////////////////////////////////////////////
_root.getNextHighestDepth();
_root.createEmptyMovieClip("control_mc",i);
///////////////////////////////////////////////////////////////////////////////
function MoveRain() {
    if (
this._y 340) {
        
        
this.removeMovieClip();
    }
    
this._y += this.speed;
}

///////////////////////////////////////////////////////////////////////////////
function CreateRain(){
    
_root.getNextHighestDepth();
    
tmp _root.attachMovie("Rain","Rain_mc" +i,i);
    
tmp._x randRange(-70,500);
    
//tmp._x = randRange(150,200);
    //tmp._x = 150;
    
tmp._y = -10;
    
tmp._alpha randRange(140);
    
tmp.speed randRange(10,54);
    
tmp._yscale randRange(50,200);
    
tmp.onEnterFrame MoveRain;
}

///////////////////////////////////////////////////////////////////////////////
control_mc.onEnterFrame = function() {
        
CreateRain();
}
/////////////////////////////////////////////////////////////////////////////// 

¿alguien puede ayudarme por favor?


Muchas gracias, por la atencion