Ho ricevuto il file e...
è come dicevo io...
oltre al codice da te postato, che si trova sul 1° frame
c'è anche questo codice associato al movieclip snow:
codice:
onClipEvent (load) {
flakeScale = 20+Math.random()*130;
//flakeAlpha = 30+Math.random()*130;
this._xscale = flakeScale;
this._yscale = flakeScale;
//this._alpha = flakeAlpha;
xpos = this._x;
this._x = 30+Math.random()*520;
i = 1+Math.random()*1.7;
this._y = 5+Math.random()*590;
k = -Math.PI+Math.random()*Math.PI;
// _parent.windeffect=0.3;
}
onClipEvent (enterFrame) {
// snow horizontal movement
radius += (k/180)*Math.PI;
this._x -= Math.cos(radius);
// snow vertical movement
this._y += i;
if (this._y>=670) {
this._y = -55;
}
if ((this._x>=665) || (this._x<=5)) {
this._x = 5+Math.random()*550;
}
}
Per eliminare ingrandimento e rimpicciolimento devi togliere le due istruzioni evidenziate in rosso