Hola amigos!! por fis encesito su ayuda!!! no me manejo mucho con actionscript, necesito hacer lo siguiente:
Tengo una animacion con copos de nieve cayendo lentamente, necesito que los copos bajen rapidamente y de abajo hacia arriba, como si alguien los esta tirando desde abajo..¿entienden?
aca va el codigo, ¿que debo cambiar de esto? (snow se llama el objeto copo de nieve)
Muchas gracias!!!
 
w = Stage.width;
h = Stage.height + 100;
max_snowsize = 10;
snowflakes = 40;
 
init = function () 
{
	for( i = 0; i < snowflakes; i++ ) 
	{
		t = attachMovie("snow", "snow"+i, i);
		t._alpha = 50 + Math.random()*50;
		t._x = -(w*0.5) + Math.random()*(1.5*w);
		t._y = -(h*0.5) + Math.random()*(1.5*h);
		t._xscale = t._yscale = 50 + Math.random()*(max_snowsize*10);
		t.k = Math.random()*1.5 + 1;
		t.wind = Math.random()*3.5 - 1.5;
		t.onEnterFrame = mover;
	}
}
mover = function () 
{
	this._y += this.k;
	this._x += this.wind;
	if(this._y > h+10) 
	{
		this._y = -20;
	}
	if(this._x > w+20) 
	{
		this._x = -(w*0.5) + Math.random()*(1.5*w);
		this._y = -20;
	} 
	else if(this._x < -20) 
	{
		this._x = -(w*0.5) + Math.random()*(1.5*w);
		this._y = -20;
	}
}
init(); 
  
 
