Frame 106
Frame 107
function doSomething() {
}
function doSomething2() {
getURL ("http://www.addictinggames.com", _blank);
}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Virus", doSomething);
Functioned2 = new ContextMenuItem("---Visit addictinggames.com---", doSomething2);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
_root.menu = MENU;
Frame 108
stopAllSounds();
sSound = new Sound();
sSound.attachSound("intro");
sSound.start(0, 99);
play();
Frame 125
stop();
Frame 142
stop();
Frame 157
stop();
Frame 158
stop();
score = 0;
stopAllSounds();
fourthSound = new Sound();
fourthSound.attachSound("game");
fourthSound.start(0, 100000000000000);
Instance of Symbol 65 MovieClip in Frame 158
onClipEvent (enterFrame) {
score = "0";
}
Frame 159
delete onEnterFrame;
stop();
Frame 160
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
fulldiff = 1;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 1000) {
gotoAndPlay ("level1complete");
}
}
};
Instance of Symbol 31 MovieClip "sprite" in Frame 160
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 42 MovieClip in Frame 160
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 160
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 160
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 160
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 161
score = 0;
delete onEnterFrame;
stop();
Frame 162
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 1500) {
gotoAndPlay ("level2complete");
}
}
};
Instance of Symbol 31 MovieClip "sprite" in Frame 162
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 42 MovieClip in Frame 162
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 162
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 162
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 162
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 163
score = 0;
delete onEnterFrame;
stop();
Frame 164
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 2000) {
gotoAndPlay ("level3complete");
}
}
};
Instance of Symbol 88 MovieClip in Frame 164
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 164
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 42 MovieClip in Frame 164
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 164
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 165
score = 0;
delete onEnterFrame;
stop();
Frame 166
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 3000) {
gotoAndPlay ("level4complete");
}
}
};
Instance of Symbol 88 MovieClip in Frame 166
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 95 MovieClip in Frame 166
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 98 MovieClip in Frame 166
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 166
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 42 MovieClip in Frame 166
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 166
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 167
score = 0;
delete onEnterFrame;
stop();
Frame 168
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 3500) {
gotoAndPlay ("level5complete");
}
}
};
Instance of Symbol 98 MovieClip in Frame 168
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 168
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 42 MovieClip in Frame 168
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 42 MovieClip in Frame 168
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 168
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 168
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 168
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 168
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 169
score = 0;
delete onEnterFrame;
stop();
Frame 170
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 4000) {
gotoAndPlay ("level6complete");
}
}
};
Instance of Symbol 95 MovieClip in Frame 170
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 170
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 42 MovieClip in Frame 170
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 170
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 170
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 170
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 170
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 171
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 172
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 4000) {
gotoAndPlay ("level7complete");
}
}
};
Instance of Symbol 95 MovieClip in Frame 172
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 115 MovieClip in Frame 172
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 172
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 42 MovieClip in Frame 172
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 172
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 173
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 174
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 4000) {
gotoAndPlay ("level8complete");
}
}
};
Instance of Symbol 95 MovieClip in Frame 174
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 115 MovieClip in Frame 174
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 115 MovieClip in Frame 174
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 119 MovieClip in Frame 174
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 174
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 105 MovieClip in Frame 174
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 174
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 175
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 176
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 2000) {
gotoAndPlay ("level9complete");
}
}
};
Instance of Symbol 115 MovieClip in Frame 176
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 115 MovieClip in Frame 176
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 176
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Frame 177
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 178
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 3000) {
gotoAndPlay ("level10complete");
}
}
};
Instance of Symbol 115 MovieClip in Frame 178
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 95 MovieClip in Frame 178
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 95 MovieClip in Frame 178
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 95 MovieClip in Frame 178
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 178
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 178
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 178
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 178
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Frame 179
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 180
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 1000) {
gotoAndPlay ("level11complete");
}
}
};
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 31 MovieClip "sprite" in Frame 180
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 105 MovieClip in Frame 180
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 181
stop();
score = 0;
delete onEnterFrame;
stop();
Symbol 17 Button
on (release) {
getURL ("http://www.addictinggames.com", _blank);
}
Symbol 27 Button
on (release) {
gotoAndPlay ("pass");
}
Symbol 31 MovieClip Frame 24
gotoAndPlay (1);
Symbol 33 MovieClip Frame 79
stop();
Symbol 40 Button
on (release) {
play();
}
Symbol 44 MovieClip Frame 75
stop();
Symbol 52 Button
on (release) {
play();
}
Symbol 60 Button
on (release) {
if (password == "madcow") {
gotoAndStop ("level2");
}
if (password == "epidemic") {
gotoAndStop ("level3");
}
if (password == "cancer") {
gotoAndStop ("level4");
}
if (password == "disease") {
gotoAndStop ("level5");
}
if (password == "vaccine") {
gotoAndStop ("level6");
}
if (password == "eczema") {
gotoAndStop ("level7");
}
if (password == "redbloodcell") {
gotoAndStop ("level8");
}
if (password == "bluefinger") {
gotoAndStop ("level9");
}
if (password == "freezeburn") {
gotoAndStop ("level10");
}
if (password == "blindingpain") {
gotoAndStop ("level11");
}
if (password == "blackandblue") {
gotoAndStop ("level12");
}
}
Symbol 61 Button
on (release) {
gotoAndPlay ("level1");
}
Symbol 69 Button
on (release) {
gotoAndPlay ("pass");
}
Symbol 76 Button
on (release) {
gotoAndPlay ("level2");
}
Symbol 82 Button
on (release) {
gotoAndPlay ("level3");
}
Symbol 90 Button
on (release) {
gotoAndPlay ("level4");
}
Symbol 100 Button
on (release) {
gotoAndPlay ("level5");
}
Symbol 106 Button
on (release) {
gotoAndPlay ("level6");
}
Symbol 110 Button
on (release) {
gotoAndPlay ("level7");
}
Symbol 116 Button
on (release) {
gotoAndPlay ("level8");
}
Symbol 120 Button
on (release) {
gotoAndPlay ("level9");
}
Symbol 123 Button
on (release) {
gotoAndPlay ("level10");
}
Symbol 126 Button
on (release) {
gotoAndPlay ("level11");
}
Symbol 131 Button
on (release) {
gotoAndPlay (158);
}
Symbol 133 Button
on (press) {
getURL ("http://www.addictinggames.com", _blank);
}