Frame 1
function doSomething() {
}
function doSomething2() {
}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
_root.menu = MENU;
stop();
Instance of Symbol 23 MovieClip in Frame 1
onClipEvent (keyDown) {
key_ascii = Key.getAscii();
if ((key_ascii == 113) || (key_ascii == 81)) {
toggleHighQuality();
}
}
Frame 2
firstTime = 1;
firstTime2 = 1;
stop();
Instance of Symbol 58 MovieClip "amoeba" in Frame 2
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (enterFrame) {
this._x = _parent._xmouse;
this._y = _parent._ymouse;
}
onClipEvent (unload) {
Mouse.show();
}
Instance of Symbol 23 MovieClip in Frame 2
onClipEvent (keyDown) {
key_ascii = Key.getAscii();
if ((key_ascii == 113) || (key_ascii == 81)) {
toggleHighQuality();
}
}
Frame 3
stop();
Instance of Symbol 23 MovieClip in Frame 3
onClipEvent (keyDown) {
key_ascii = Key.getAscii();
if ((key_ascii == 113) || (key_ascii == 81)) {
toggleHighQuality();
}
}
Instance of Symbol 58 MovieClip "amoeba" in Frame 3
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (enterFrame) {
this._x = _parent._xmouse;
this._y = _parent._ymouse;
}
onClipEvent (unload) {
Mouse.show();
}
Frame 4
stop();
Instance of Symbol 58 MovieClip "amoeba" in Frame 4
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (enterFrame) {
this._x = _parent._xmouse;
this._y = _parent._ymouse;
}
onClipEvent (unload) {
Mouse.show();
}
Instance of Symbol 23 MovieClip in Frame 4
onClipEvent (keyDown) {
key_ascii = Key.getAscii();
if ((key_ascii == 113) || (key_ascii == 81)) {
toggleHighQuality();
}
}
Frame 5
stop();
Instance of Symbol 58 MovieClip "amoeba" in Frame 5
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (enterFrame) {
this._x = _parent._xmouse;
this._y = _parent._ymouse;
}
onClipEvent (unload) {
Mouse.show();
}
Instance of Symbol 23 MovieClip in Frame 5
onClipEvent (keyDown) {
key_ascii = Key.getAscii();
if ((key_ascii == 113) || (key_ascii == 81)) {
toggleHighQuality();
}
}
Frame 6
stop();
Instance of Symbol 58 MovieClip "amoeba" in Frame 6
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (enterFrame) {
this._x = _parent._xmouse;
this._y = _parent._ymouse;
}
onClipEvent (unload) {
Mouse.show();
}
Instance of Symbol 23 MovieClip in Frame 6
onClipEvent (keyDown) {
key_ascii = Key.getAscii();
if ((key_ascii == 113) || (key_ascii == 81)) {
toggleHighQuality();
}
}
Frame 7
level = 1;
lives = 3;
score = 0;
score2 = 0;
shieldOn = 0;
_root.amoeba._width = 20;
_root.amoeba._height = 20;
_root.amoeba.gotoAndPlay(1);
stopAllSounds();
stop();
Instance of Symbol 109 MovieClip "shieldTimer" in Frame 7
onClipEvent (load) {
timeLeft = 10;
a = 0;
}
onClipEvent (enterFrame) {
if (_root.shieldOn == 1) {
this._x = 140;
a++;
if (a == 50) {
a = 0;
timeLeft--;
}
} else {
a = 0;
timeLeft = 10;
this._x = -200;
}
if (timeLeft == -1) {
timeLeft = 0;
this._x = -200;
a = 0;
timeLeft = 10;
}
}
Instance of Symbol 117 MovieClip "acid" in Frame 7
onClipEvent (enterFrame) {
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
if (this.hitTest(_root.amoeba)) {
if (_root.shieldOn == 1) {
_root.sizzleSound.gotoAndPlay(2);
_root.score = _root.score + 500;
_root.score2 = _root.score2 + 500;
this.removeMovieClip();
} else {
_root.deadSound.gotoAndPlay(2);
_root.lives--;
_root.score = _root.score - 500;
_root.score2 = _root.score2 - 500;
this.removeMovieClip();
}
}
if (this.hitTest(_root["powerUp" + bombs])) {
this.removeMovieClip();
}
if ((((this._x > 500) || (this._x < -100)) || (this._y > 370)) || (this._y < -70)) {
this.removeMovieClip();
}
}
Instance of Symbol 119 MovieClip "food" in Frame 7
onClipEvent (enterFrame) {
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
if (this.hitTest(_root.amoeba)) {
_root.yippeeSound.gotoAndPlay(2);
_root.score = _root.score + 50;
_root.score2 = _root.score2 + 50;
this.removeMovieClip();
}
if ((((this._x > 500) || (this._x < -100)) || (this._y > 370)) || (this._y < -70)) {
this.removeMovieClip();
}
}
Instance of Symbol 121 MovieClip "pill" in Frame 7
onClipEvent (load) {
hitAlready = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
if (this.hitTest(_root.amoeba)) {
_root.shrinkSound.gotoAndPlay(2);
_root.amoeba._width = _root.amoeba._width - 2;
_root.amoeba._height = _root.amoeba._height - 2;
this.removeMovieClip();
}
if ((((this._x > 500) || (this._x < -100)) || (this._y > 370)) || (this._y < -70)) {
this.removeMovieClip();
}
}
Instance of Symbol 123 MovieClip "pill2" in Frame 7
onClipEvent (load) {
hitAlready = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
if (this.hitTest(_root.amoeba)) {
_root.growSound.gotoAndPlay(2);
_root.amoeba._width = _root.amoeba._width + 2;
_root.amoeba._height = _root.amoeba._height + 2;
this.removeMovieClip();
}
if ((((this._x > 500) || (this._x < -100)) || (this._y > 370)) || (this._y < -70)) {
this.removeMovieClip();
}
}
Instance of Symbol 125 MovieClip "shield" in Frame 7
onClipEvent (load) {
}
onClipEvent (enterFrame) {
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
if (this.hitTest(_root.amoeba)) {
_root.blingSound.gotoAndPlay(2);
_root.shieldOn = 0;
_root.shieldOn = 1;
_root.shieldTimer.timeLeft = 10;
_root.shieldTimer.a = 0;
_root.protection.timer = 0;
this.removeMovieClip();
}
if ((((this._x > 500) || (this._x < -100)) || (this._y > 370)) || (this._y < -70)) {
this.removeMovieClip();
}
}
Instance of Symbol 128 MovieClip "protection" in Frame 7
onClipEvent (load) {
this._width = _root.amoeba._width + 10;
this._height = _root.amoeba._height + 10;
timer = 0;
}
onClipEvent (enterFrame) {
if (_root.shieldOn == 1) {
timer++;
this._x = _root.amoeba._x - 1;
this._y = _root.amoeba._y;
this._width = _root.amoeba._width + 10;
this._height = _root.amoeba._height + 10;
a = 1;
while (a <= 50) {
if (this.hitTest(_root.acid + a)) {
_root["acid" + a].removeMovieClip();
}
a++;
}
} else {
this._x = -400;
this._y = -400;
}
if (timer == 500) {
_root.shieldOn = 0;
timer = 0;
}
}
Instance of Symbol 132 MovieClip "powerUp" in Frame 7
onClipEvent (load) {
hitAlready = 0;
removable = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
if (this.hitTest(_root.amoeba)) {
c = 1;
while (c <= 50) {
if (this.hitTest(_root["acid" + c])) {
_root.score = _root.score + 100;
_root.score2 = _root.score2 + 100;
_root["acid" + c].removeMovieClip();
}
c++;
}
xSpeed = 0;
ySpeed = 0;
if (hitAlready == 0) {
hitAlready = 1;
_root.bombSound.gotoAndPlay(2);
gotoAndPlay (8);
}
}
c = 1;
while (c <= 50) {
if (this.hitTest(_root["acid" + c])) {
_root["acid" + c].removeMovieClip();
}
c++;
}
if (removable == 1) {
this.removeMovieClip();
}
if ((((this._x > 500) || (this._x < -100)) || (this._y > 370)) || (this._y < -70)) {
this.removeMovieClip();
}
}
Instance of Symbol 23 MovieClip in Frame 7
onClipEvent (keyDown) {
key_ascii = Key.getAscii();
if ((key_ascii == 113) || (key_ascii == 81)) {
toggleHighQuality();
}
}
Instance of Symbol 58 MovieClip "amoeba" in Frame 7
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (enterFrame) {
this._x = _parent._xmouse;
this._y = _parent._ymouse;
}
onClipEvent (unload) {
Mouse.show();
}
Instance of Symbol 163 MovieClip "acidGen" in Frame 7
onClipEvent (load) {
function generateAcid() {
a = random(60);
if (a == 1) {
_root.acid.duplicateMovieClip("acid" + acidCounter, acidCounter);
_root["acid" + acidCounter]._x = -20 - random(30);
_root["acid" + acidCounter]._y = random(300);
_root["acid" + acidCounter].xSpeed = (5 - random(2)) + _root.level;
_root["acid" + acidCounter].ySpeed = 0;
if (_root["acid" + acidCounter]._x > 420) {
_root["acid" + acidCounter].removeMovieClip();
}
} else if (a == 2) {
_root.acid.duplicateMovieClip("acid" + acidCounter, acidCounter);
_root["acid" + acidCounter]._x = 420 + random(30);
_root["acid" + acidCounter]._y = random(300);
_root["acid" + acidCounter].xSpeed = (-5 + random(2)) - _root.level;
_root["acid" + acidCounter].ySpeed = 0;
setProperty(_root["acid" + acidCounter], _rotation , 180);
} else if (a == 3) {
_root.acid.duplicateMovieClip("acid" + acidCounter, acidCounter);
_root["acid" + acidCounter]._x = random(400);
_root["acid" + acidCounter]._y = -5 - random(10);
_root["acid" + acidCounter].xSpeed = 0;
_root["acid" + acidCounter].ySpeed = (5 - random(2)) + _root.level;
setProperty(_root["acid" + acidCounter], _rotation , 90);
} else if (a == 4) {
_root.acid.duplicateMovieClip("acid" + acidCounter, acidCounter);
_root["acid" + acidCounter]._x = random(400);
_root["acid" + acidCounter]._y = 305 + random(10);
_root["acid" + acidCounter].xSpeed = 0;
_root["acid" + acidCounter].ySpeed = (-5 + random(2)) - _root.level;
setProperty(_root["acid" + acidCounter], _rotation , 270);
}
acidCounter++;
}
acidCounter = 1;
}
onClipEvent (enterFrame) {
generateAcid();
if (acidCounter == 50) {
acidCounter = 0;
}
}
Instance of Symbol 165 MovieClip "foodGen" in Frame 7
onClipEvent (load) {
function generateFood() {
a = random(100);
if (a == 1) {
_root.food.duplicateMovieClip("food" + foodCounter, foodCounter);
_root["food" + foodCounter]._x = -20 - random(30);
_root["food" + foodCounter]._y = 20 + random(270);
_root["food" + foodCounter].xSpeed = 5 - random(2);
_root["food" + foodCounter].ySpeed = 0;
if (_root["food" + foodCounter]._x > 420) {
_root["food" + foodCounter].removeMovieClip();
}
} else if (a == 2) {
_root.food.duplicateMovieClip("food" + foodCounter, foodCounter);
_root["food" + foodCounter]._x = 420 + random(30);
_root["food" + foodCounter]._y = 20 + random(270);
_root["food" + foodCounter].xSpeed = -5 + random(2);
_root["food" + foodCounter].ySpeed = 0;
setProperty(_root["food" + foodCounter], _rotation , 180);
if (_root["food" + foodCounter]._x < -20) {
_root["food" + foodCounter].removeMovieClip();
}
} else if (a == 3) {
_root.food.duplicateMovieClip("food" + foodCounter, foodCounter);
_root["food" + foodCounter]._x = 20 + random(360);
_root["food" + foodCounter]._y = -5 - random(10);
_root["food" + foodCounter].xSpeed = 0;
_root["food" + foodCounter].ySpeed = 5 - random(2);
setProperty(_root["food" + foodCounter], _rotation , 90);
if (_root["food" + foodCounter]._y > 330) {
_root["food" + foodCounter].removeMovieClip();
}
} else if (a == 4) {
_root.food.duplicateMovieClip("food" + foodCounter, foodCounter);
_root["food" + foodCounter]._x = 20 + random(360);
_root["food" + foodCounter]._y = 305 + random(10);
_root["food" + foodCounter].xSpeed = 0;
_root["food" + foodCounter].ySpeed = -5 + random(2);
setProperty(_root["food" + foodCounter], _rotation , 270);
if (_root["food" + foodCounter]._x < -30) {
_root["food" + foodCounter].removeMovieClip();
}
}
foodCounter++;
if (foodCounter == 50) {
foodCounter = 0;
}
}
foodCounter = 1;
}
onClipEvent (enterFrame) {
generateFood();
}
Instance of Symbol 168 MovieClip "scoreCount" in Frame 7
onClipEvent (enterFrame) {
_root.score++;
_root.score2++;
if (_root.score2 > 10000) {
_root.successSound.gotoAndPlay(2);
_root.score2 = _root.score2 - 10000;
_root.lives++;
}
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (_root.lives == -1) {
_root.lives = 0;
a = 1;
while (a <= 50) {
_root["acid" + a].removeMovieClip();
_root["food" + a].removeMovieClip();
_root["pill" + a].removeMovieClip();
_root["pill2" + a].removeMovieClip();
_root["powerUp" + a].removeMovieClip();
_root["shield" + a].removeMovieClip();
a++;
}
_root.gotoAndStop(8);
}
}
Instance of Symbol 174 MovieClip "level" in Frame 7
onClipEvent (load) {
a = 0;
}
onClipEvent (enterFrame) {
a++;
if (a == 1800) {
_root.level++;
a = 0;
}
}
Instance of Symbol 177 MovieClip "powerupGen" in Frame 7
onClipEvent (load) {
function generatepowerUp() {
a = random(600);
if (a == 1) {
_root.powerUp.duplicateMovieClip("powerUp" + powerUpCounter, powerUpCounter);
_root["powerUp" + powerUpCounter]._x = -20 - random(30);
_root["powerUp" + powerUpCounter]._y = 20 + random(270);
_root["powerUp" + powerUpCounter].xSpeed = 5 - random(2);
_root["powerUp" + powerUpCounter].ySpeed = 0;
if (_root["powerUp" + powerUpCounter]._x > 420) {
_root["powerUp" + powerUpCounter].removeMovieClip();
}
} else if (a == 2) {
_root.powerUp.duplicateMovieClip("powerUp" + powerUpCounter, powerUpCounter);
_root["powerUp" + powerUpCounter]._x = 420 + random(30);
_root["powerUp" + powerUpCounter]._y = 20 + random(270);
_root["powerUp" + powerUpCounter].xSpeed = -5 + random(2);
_root["powerUp" + powerUpCounter].ySpeed = 0;
setProperty(_root["powerUp" + powerUpCounter], _rotation , 180);
if (_root["powerUp" + powerUpCounter]._x < -20) {
_root["powerUp" + powerUpCounter].removeMovieClip();
}
} else if (a == 3) {
_root.powerUp.duplicateMovieClip("powerUp" + powerUpCounter, powerUpCounter);
_root["powerUp" + powerUpCounter]._x = 20 + random(360);
_root["powerUp" + powerUpCounter]._y = -5 - random(10);
_root["powerUp" + powerUpCounter].xSpeed = 0;
_root["powerUp" + powerUpCounter].ySpeed = 5 - random(2);
setProperty(_root["powerUp" + powerUpCounter], _rotation , 90);
if (_root["powerUp" + powerUpCounter]._y > 330) {
_root["powerUp" + powerUpCounter].removeMovieClip();
}
} else if (a == 4) {
_root.powerUp.duplicateMovieClip("powerUp" + powerUpCounter, powerUpCounter);
_root["powerUp" + powerUpCounter]._x = 20 + random(360);
_root["powerUp" + powerUpCounter]._y = 305 + random(10);
_root["powerUp" + powerUpCounter].xSpeed = 0;
_root["powerUp" + powerUpCounter].ySpeed = -5 + random(2);
setProperty(_root["powerUp" + powerUpCounter], _rotation , 270);
if (_root["powerUp" + powerUpCounter]._x < -30) {
_root["powerUp" + powerUpCounter].removeMovieClip();
}
}
powerUpCounter++;
if (powerUpCounter == 50) {
powerUpCounter = 0;
}
}
powerUpCounter = 1;
}
onClipEvent (enterFrame) {
generatepowerUp();
}
Instance of Symbol 179 MovieClip "pillGen" in Frame 7
onClipEvent (load) {
function generatepill() {
a = random(800);
if (a == 1) {
_root.pill.duplicateMovieClip("pill" + pillCounter, pillCounter);
_root["pill" + pillCounter]._x = -20 - random(30);
_root["pill" + pillCounter]._y = 20 + random(270);
_root["pill" + pillCounter].xSpeed = 5 - random(2);
_root["pill" + pillCounter].ySpeed = 0;
if (_root["pill" + pillCounter]._x > 420) {
_root["pill" + pillCounter].removeMovieClip();
}
} else if (a == 2) {
_root.pill.duplicateMovieClip("pill" + pillCounter, pillCounter);
_root["pill" + pillCounter]._x = 420 + random(30);
_root["pill" + pillCounter]._y = 20 + random(270);
_root["pill" + pillCounter].xSpeed = -5 + random(2);
_root["pill" + pillCounter].ySpeed = 0;
setProperty(_root["pill" + pillCounter], _rotation , 180);
if (_root["pill" + pillCounter]._x < -20) {
_root["pill" + pillCounter].removeMovieClip();
}
} else if (a == 3) {
_root.pill.duplicateMovieClip("pill" + pillCounter, pillCounter);
_root["pill" + pillCounter]._x = 20 + random(360);
_root["pill" + pillCounter]._y = -5 - random(10);
_root["pill" + pillCounter].xSpeed = 0;
_root["pill" + pillCounter].ySpeed = 5 - random(2);
setProperty(_root["pill" + pillCounter], _rotation , 90);
if (_root["pill" + pillCounter]._y > 330) {
_root["pill" + pillCounter].removeMovieClip();
}
} else if (a == 4) {
_root.pill.duplicateMovieClip("pill" + pillCounter, pillCounter);
_root["pill" + pillCounter]._x = 20 + random(360);
_root["pill" + pillCounter]._y = 305 + random(10);
_root["pill" + pillCounter].xSpeed = 0;
_root["pill" + pillCounter].ySpeed = -5 + random(2);
setProperty(_root["pill" + pillCounter], _rotation , 270);
if (_root["pill" + pillCounter]._x < -30) {
_root["pill" + pillCounter].removeMovieClip();
}
}
pillCounter++;
if (pillCounter == 50) {
pillCounter = 0;
}
}
pillCounter = 1;
}
onClipEvent (enterFrame) {
generatepill();
}
Instance of Symbol 182 MovieClip "pill2Gen" in Frame 7
onClipEvent (load) {
function generatepill2() {
a = random(600);
if (a == 1) {
_root.pill2.duplicateMovieClip("pill2" + pill2Counter, pill2Counter);
_root["pill2" + pill2Counter]._x = -20 - random(30);
_root["pill2" + pill2Counter]._y = 20 + random(270);
_root["pill2" + pill2Counter].xSpeed = 5 - random(2);
_root["pill2" + pill2Counter].ySpeed = 0;
if (_root["pill2" + pill2Counter]._x > 420) {
_root["pill2" + pill2Counter].removeMovieClip();
}
} else if (a == 2) {
_root.pill2.duplicateMovieClip("pill2" + pill2Counter, pill2Counter);
_root["pill2" + pill2Counter]._x = 420 + random(30);
_root["pill2" + pill2Counter]._y = 20 + random(270);
_root["pill2" + pill2Counter].xSpeed = -5 + random(2);
_root["pill2" + pill2Counter].ySpeed = 0;
setProperty(_root["pill2" + pill2Counter], _rotation , 180);
if (_root["pill2" + pill2Counter]._x < -20) {
_root["pill2" + pill2Counter].removeMovieClip();
}
} else if (a == 3) {
_root.pill2.duplicateMovieClip("pill2" + pill2Counter, pill2Counter);
_root["pill2" + pill2Counter]._x = 20 + random(360);
_root["pill2" + pill2Counter]._y = -5 - random(10);
_root["pill2" + pill2Counter].xSpeed = 0;
_root["pill2" + pill2Counter].ySpeed = 5 - random(2);
setProperty(_root["pill2" + pill2Counter], _rotation , 90);
if (_root["pill2" + pill2Counter]._y > 330) {
_root["pill2" + pill2Counter].removeMovieClip();
}
} else if (a == 4) {
_root.pill2.duplicateMovieClip("pill2" + pill2Counter, pill2Counter);
_root["pill2" + pill2Counter]._x = 20 + random(360);
_root["pill2" + pill2Counter]._y = 305 + random(10);
_root["pill2" + pill2Counter].xSpeed = 0;
_root["pill2" + pill2Counter].ySpeed = -5 + random(2);
setProperty(_root["pill2" + pill2Counter], _rotation , 270);
if (_root["pill2" + pill2Counter]._x < -30) {
_root["pill2" + pill2Counter].removeMovieClip();
}
}
pill2Counter++;
if (pill2Counter == 50) {
pill2Counter = 0;
}
}
pill2Counter = 1;
}
onClipEvent (enterFrame) {
generatepill2();
}
Instance of Symbol 185 MovieClip "shieldGen" in Frame 7
onClipEvent (load) {
function generateShield() {
a = random(3000);
if (a == 1) {
_root.shield.duplicateMovieClip("shield" + shieldCounter, shieldCounter);
_root["shield" + shieldCounter]._x = -20 - random(30);
_root["shield" + shieldCounter]._y = 20 + random(270);
_root["shield" + shieldCounter].xSpeed = 5 - random(2);
_root["shield" + shieldCounter].ySpeed = 0;
if (_root["shield" + shieldCounter]._x > 420) {
_root["shield" + shieldCounter].removeMovieClip();
}
} else if (a == 2) {
_root.shield.duplicateMovieClip("shield" + shieldCounter, shieldCounter);
_root["shield" + shieldCounter]._x = 420 + random(30);
_root["shield" + shieldCounter]._y = 20 + random(270);
_root["shield" + shieldCounter].xSpeed = -5 + random(2);
_root["shield" + shieldCounter].ySpeed = 0;
if (_root["shield" + shieldCounter]._x < -20) {
_root["shield" + shieldCounter].removeMovieClip();
}
} else if (a == 3) {
_root.shield.duplicateMovieClip("shield" + shieldCounter, shieldCounter);
_root["shield" + shieldCounter]._x = 20 + random(360);
_root["shield" + shieldCounter]._y = -5 - random(10);
_root["shield" + shieldCounter].xSpeed = 0;
_root["shield" + shieldCounter].ySpeed = 5 - random(2);
if (_root["shield" + shieldCounter]._y > 330) {
_root["shield" + shieldCounter].removeMovieClip();
}
} else if (a == 4) {
_root.shield.duplicateMovieClip("shield" + shieldCounter, shieldCounter);
_root["shield" + shieldCounter]._x = 20 + random(360);
_root["shield" + shieldCounter]._y = 305 + random(10);
_root["shield" + shieldCounter].xSpeed = 0;
_root["shield" + shieldCounter].ySpeed = -5 + random(2);
if (_root["shield" + shieldCounter]._x < -30) {
_root["shield" + shieldCounter].removeMovieClip();
}
}
shieldCounter++;
}
shieldCounter = 1;
}
onClipEvent (enterFrame) {
generateShield();
}
Frame 8
_root.amoeba._width = 20;
_root.amoeba._height = 20;
_root.amoeba.gotoAndStop(26);
if (score < 0) {
rank = "sad";
} else if (score < 10000) {
rank = "poor";
} else if (score < 25000) {
rank = "fair";
} else if (score < 50000) {
rank = "average";
} else if (score < 100000) {
rank = "good";
} else if (score < 200000) {
rank = "excellent";
} else if (score < 400000) {
rank = "expert";
} else {
rank = "addict";
}
stop();
Instance of Symbol 23 MovieClip in Frame 8
onClipEvent (keyDown) {
key_ascii = Key.getAscii();
if ((key_ascii == 113) || (key_ascii == 81)) {
toggleHighQuality();
}
}
Symbol 9 Button
on (press) {
_root.gotoAndPlay(2);
}
Symbol 19 MovieClip Frame 60
gotoAndStop ("stallTeaser");
Symbol 34 Button
on (press) {
gotoAndPlay (3);
}
Symbol 36 Button
on (press) {
_root.gotoAndStop(7);
}
Symbol 37 Button
on (release) {
getURL ("http://www.addictinggames.com/", (window = "_blank"));
}
Symbol 58 MovieClip Frame 25
gotoAndPlay (1);
Symbol 58 MovieClip Frame 26
stop();
Symbol 62 Button
on (press) {
gotoAndPlay (6);
}
Symbol 65 Button
on (press) {
gotoAndStop (4);
}
Symbol 68 Button
on (press) {
_root.gotoAndStop(5);
}
Symbol 71 Button
on (press) {
stopAllSounds();
_root.gotoAndStop(2);
}
Symbol 76 Button
on (press) {
_root.gotoAndStop(3);
}
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 14
removable = 1;
stop();
Symbol 136 MovieClip Frame 1
stop();
Symbol 136 MovieClip Frame 26
gotoAndStop (1);
Symbol 139 MovieClip Frame 1
stop();
Symbol 139 MovieClip Frame 100
gotoAndStop (1);
Symbol 143 MovieClip Frame 1
stop();
Symbol 143 MovieClip Frame 32
gotoAndStop (1);
Symbol 146 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 50
gotoAndStop (1);
Symbol 149 MovieClip Frame 1
stop();
Symbol 149 MovieClip Frame 38
gotoAndStop (1);
Symbol 152 MovieClip Frame 1
stop();
Symbol 152 MovieClip Frame 26
gotoAndStop (1);
Symbol 156 MovieClip Frame 1
stop();
Symbol 156 MovieClip Frame 45
gotoAndStop (1);
Symbol 161 MovieClip Frame 1
stop();
Symbol 161 MovieClip Frame 70
gotoAndStop (1);
Symbol 193 Button
on (press) {
_root.amoeba.gotoAndPlay(1);
_root.amoeba._width = 20;
_root.amoeba._height = 20;
_root.gotoAndStop(7);
}
Symbol 197 Button
on (press) {
_root.gotoAndStop(2);
}