Combined Code
frame 1 {
ifFrameLoaded (74) {
gotoAndPlay('start');
}
}
movieClip 17 {
}
// unknown tag 88 length 45
frame 2 {
gotoAndPlay(1);
}
frame 3 {
k = 0;
while (k < 60) {
duplicateMovieClip(this.snow, 'snow' + k, k);
++k;
}
}
movieClip 23 {
}
instance snow of movieClip 23 {
onClipEvent (load) {
movieWidth = 600;
movieHeight = 400;
i = 1 + Math.random() * 2;
k = -Math.PI + Math.random() * Math.PI;
this._yscale = 50 + Math.random() * 100;
this._xscale = this._yscale;
this._alpha = 75 + Math.random() * 100;
this._x = -10 + Math.random() * movieWidth;
this._y = -10 + Math.random() * movieHeight;
}
onClipEvent (enterFrame) {
rad += (k / 180) * Math.PI;
this._x -= Math.cos(rad);
this._y += i;
if (this._y >= movieHeight) {
this._y = -5;
}
if (this._x >= movieWidth || this._x <= 0) {
this._x = -10 + Math.random() * movieWidth;
this._y = -5;
}
}
}
movieClip 240 {
}
// unknown tag 88 length 75