Frame 1
i = 0;
while (i < 50) {
duplicateMovieClip (lex, "lol" + i, i);
_root["lol" + i]._x = 275;
_root["lol" + i]._y = 200;
scale = 600 - (i * 8);
_root["lol" + i]._xscale = scale;
_root["lol" + i]._yscale = scale;
_root["lol" + i].deg = (Math.PI * i) / 50;
i++;
}
loop = new Sound(this);
begin = new Sound(this);
begin.attachSound("wipeout_begin.wav");
loop.attachSound("wipeout_loop.wav");
begin.start(0, 0);
begin.onSoundComplete = function () {
loop.start(0, 999999);
};
_quality = "low";
Symbol 5 MovieClip Frame 1
col = new Color(this);
trans = new Object();
this.onEnterFrame = function () {
deg = deg + 0.261799387799149;
_rotation = (Math.cos(deg) * 20);
trans.ra = 100;
trans.rb = (((Math.sin(deg - 0) / 1.5) + 0.333333333333333) * 100) + 20;
trans.ga = 0;
trans.gb = (((Math.sin(deg - 2.0943951023932) / 1.5) + 0.333333333333333) * 100) + 20;
trans.ba = 0;
trans.bb = (((Math.sin(deg - 4.18879020478639) / 1.5) + 0.333333333333333) * 100) + 20;
trans.aa = 100;
trans.ab = 0;
col.setTransform(trans);
};