Combined Code
movieClip 2 {
}
movieClip 3 {
}
movieClip 4 {
}
movieClip 5 {
}
movieClip 6 {
}
movieClip 7 starMc {
}
movieClip 13 {
frame 25 {
stopAllSounds();
_root.lol9.nextFrame();
}
}
movieClip 15 {
frame 1 {
amount = 100;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie('starMc', 'starMc' + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_alpha = 40 + Math.random() * 60;
_yscale = _alpha;
_xscale = _yscale;
}
thisFlake.yspeed = Math.random() * 2 + 0.1;
thisFlake.increment = -0.025 + Math.random() * 0.05;
thisFlake.onEnterFrame = function () {
this.radians += this.increment;
this._y += this.yspeed;
this._x += Math.sin(this.radians);
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + Math.random() * mWidth;
}
if (this._x >= mWidth || this._x <= 0) {
this._y = -10;
this._x = -10 + Math.random() * mWidth;
}
};
++i;
}
}
}
movieClip 22 {
}
movieClip 23 {
}
movieClip 24 {
}
movieClip 26 {
frame 1 {
stop();
}
}