Combined Code
frame 1 {
stop();
}
movieClip 6 {
}
button 9 {
on (release) {
_root.gotoAndPlay(4);
}
}
movieClip 10 {
frame 7 {
this.stop();
}
}
movieClip 253 {
}
movieClip 254 {
frame 1 {
var i = 0;
while (i < 10) {
snow.duplicateMovieClip('snow' + i, i);
++i;
}
}
instance snow of movieClip 253 {
onClipEvent (load) {
th = this._height;
speed = Math.random() * 4 + 1;
flick = Math.random() * 4 - 2;
rotate = Math.random() * 5 - 3;
this._yscale = Math.random() * 20 + 20;
this._xscale = this._yscale;
}
onClipEvent (enterFrame) {
this._y += speed;
this._x += flick;
this._rotation += rotate;
}
}
}
movieClip 255 {
}
movieClip 259 {
}
movieClip 284 {
frame 1 {
var i = 0;
while (i < 20) {
snow.duplicateMovieClip('snow' + i, i);
++i;
}
}
instance snow of movieClip 253 {
onClipEvent (load) {
speed = Math.random() * 8 + 1;
flick = Math.random() * 10 - 2;
rotate = Math.random() * 9 - 3;
this._yscale = Math.random() * 20 + 20;
this._xscale = this._yscale;
}
onClipEvent (enterFrame) {
this._y += -speed;
this._x += -flick;
this._rotation += -rotate;
}
}
}
frame 1004 {
stop();
}
button 338 {
on (release) {
gotoAndPlay(4);
}
}