Código PHP:
///////////////////////////////////////////////////////////////////////////////
function randRange(min:Number, max:Number):Number {
var randomNum:Number = Math.floor(Math.random() * (max - min + 1)) + min;
return randomNum;
}
///////////////////////////////////////////////////////////////////////////////
i = _root.getNextHighestDepth();
_root.createEmptyMovieClip("control_mc",i);
///////////////////////////////////////////////////////////////////////////////
function MoveRain() {
if (this._y > 340) {
this.removeMovieClip();
}
this._y += this.speed;
}
///////////////////////////////////////////////////////////////////////////////
function CreateRain(){
i = _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(1, 40);
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