Instance of Symbol 102 MovieClip in Frame 2
on (release) {
getURL ("http://www.popethos.net", "_blank");
}
Frame 3
function __com_mochibot__(swfid, mc, lv, trk) {
var x;
var g;
var s;
var fv;
var sb;
var u;
var res;
var mb;
var mbc;
mb = "__mochibot__";
mbc = "mochibot.com";
g = (_global ? (_global) : (_level0._root));
if (g[mb + swfid]) {
return(g[mb + swfid]);
}
s = System.security;
x = mc._root.getSWFVersion;
fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5)));
if (!s) {
s = {};
}
sb = s.sandboxType;
if (sb == "localWithFile") {
return(null);
}
x = s.allowDomain;
if (x) {
s.allowDomain(mbc);
}
x = s.allowInsecureDomain;
if (x) {
s.allowInsecureDomain(mbc);
}
u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : "");
lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv))));
g[mb + "level"] = lv;
if (fv == 5) {
res = "_level" + lv;
if (!eval (res)) {
loadMovieNum (u, lv);
}
} else {
res = mc.createEmptyMovieClip(mb + swfid, lv);
res.loadMovie(u);
}
return(res);
}
__com_mochibot__("205efedc", this, 10301, true);
Frame 4
function NextLevel() {
switch (Level) {
case 1 :
InfoFader.gotoAndPlay("EatMicrobes");
Particle(10);
break;
case 2 :
Particle(10);
Worm(5);
break;
case 3 :
Particle(10);
Worm(10);
break;
case 4 :
InfoFader.gotoAndPlay("Viruses");
Particle(10);
Worm(10);
Virus1(1);
break;
case 5 :
InfoFader.gotoAndPlay("DNA");
MakeDNA(1);
Particle(10);
Worm(10);
Virus1(2);
break;
case 6 :
MakeDNA(0.25);
Worm(20);
Virus1(4);
break;
case 7 :
InfoFader.gotoAndPlay("NewVirus");
MakeDNA(0.25);
Worm(10);
Virus2(4);
break;
case 8 :
MakeDNA(0.25);
Worm(10);
Virus1(2);
Virus2(3);
break;
case 9 :
MakeDNA(0.25);
Particle(5);
Virus2(5);
break;
case 10 :
MakeDNA(0.25);
Worm(6);
Virus1(4);
Virus2(3);
break;
case 11 :
MakeDNA(0.25);
Worm(6);
Particle(2);
Virus1(8);
break;
case 12 :
MakeDNA(0.25);
Particle(5);
Worm(5);
Virus2(6);
break;
case 13 :
MakeDNA(0.25);
Particle(5);
Worm(5);
Virus1(4);
Virus2(6);
break;
case 14 :
MakeDNA(0.25);
Worm(10);
Virus1(4);
Virus2(5);
break;
case 15 :
MakeDNA(0.25);
Particle(5);
Worm(5);
Virus2(9);
break;
case 16 :
MakeDNA(0.5);
Worm(10);
Virus2(15);
break;
case 17 :
MakeDNA(0.25);
Particle(10);
Virus1(5);
Virus2(5);
break;
case 18 :
MakeDNA(0.25);
Worm(13);
Virus1(5);
Virus2(5);
break;
case 19 :
MakeDNA(0.25);
Worm(15);
Virus1(6);
Virus2(6);
break;
case 20 :
MakeDNA(0.25);
Particle(15);
Virus1(8);
Virus2(5);
break;
case 21 :
MakeDNA(0.25);
Particle(5);
Worm(15);
Virus1(8);
Virus2(8);
break;
case 22 :
InfoFader.gotoAndPlay("Prepare");
Particle(5);
Worm(2);
break;
case 23 :
InfoFader.gotoAndPlay("EatCilia");
CreateBoss();
Worm(2);
Virus1(2);
break;
case 24 :
GameComplete = true;
LevelClip.gotoAndPlay("Start");
InfoFader.gotoAndStop("Blank");
LevelClip.LevelClip2.LevelText.text = "Cleared!";
EndGameMenu._x = Stage.width / 2;
Score = Score + 100;
Objectives = 1;
}
if (GameComplete == false) {
LevelClip.gotoAndPlay("Start");
LevelClip.LevelClip2.LevelText.text = (("Level " + Level) + " of ") + MaxLevel;
}
LastLevel = Level;
LastVolume = Volume;
Level++;
}
function CreateBoss() {
TempClip = Particles.attachMovie("Boss", Particles.getNextHighestDepth(), Particles.getNextHighestDepth());
TempClip._x = Stage.width * Math.random();
TempClip._y = Stage.height * Math.random();
while (Amoeba.hitTest(TempClip._x, TempClip._y, false) || (Mask.hitTest(TempClip._x, TempClip._y, true))) {
TempClip._x = Stage.width * Math.random();
TempClip._y = Stage.height * Math.random();
}
}
function CreateMicrobes(Num, Score, Head, Trail, Virus) {
a = 0;
while (a < Num) {
TempClip = Particles.attachMovie("Microbe", Particles.getNextHighestDepth(), Particles.getNextHighestDepth());
TempClip._x = Stage.width * Math.random();
TempClip._y = Stage.height * Math.random();
while (Amoeba.hitTest(TempClip._x, TempClip._y, false) || (Mask.hitTest(TempClip._x, TempClip._y, true))) {
TempClip._x = Stage.width * Math.random();
TempClip._y = Stage.height * Math.random();
}
TempClip.Score = Score;
TempClip.Trail = Trail;
TempClip.Head = Head;
TempClip.Virus = Virus;
if (Virus == true) {
TempClip.SpeedCap = 2;
} else {
Objectives++;
TempClip.SpeedCap = 5;
}
a++;
}
}
function Particle(Num) {
CreateMicrobes(Num, 0.05, "Particle", "none", false);
}
function Worm(Num) {
CreateMicrobes(Num, 0.05, "WormHead", "WormSegment", false);
}
function Virus1(Num) {
CreateMicrobes(Num, 0, "Virus1", "none", true);
}
function Virus2(Num) {
CreateMicrobes(Num, 0, "Virus2", "none", true);
}
function MicrobeDeath(Microbe, VolAdd) {
_root.Volume = _root.Volume + VolAdd;
Pop.start();
if (Microbe.virus == true) {
Score = Score + 20;
} else {
Score = Score + 10;
}
a = 0;
while (a < 5) {
TempClip = Particles.attachMovie("ShootingParticle", Particles.getNextHighestDepth(), Particles.getNextHighestDepth());
TempClip._x = Microbe._x;
TempClip._y = Microbe._y;
TempClip._rotation = Math.random() * 359;
TempClip._xscale = 50 + (Math.random() * 50);
TempClip._yscale = TempClip._xscale;
a++;
}
Microbe.removeMovieClip();
}
function HitBoss() {
Volume = Volume - 0.1;
Hit.start();
if (Volume < 10) {
LevelClip.gotoAndPlay("Start");
LevelClip.LevelClip2.LevelText.text = "Eaten Alive!";
InfoFader.gotoAndStop("Blank");
Objectives = 20;
Level = -1;
Active = -1;
Alpha = 0;
DeathCine = true;
RestartMenu._x = Stage.width / 2;
stopDrag();
}
}
function VirusDeath() {
LevelClip.gotoAndPlay("Start");
LevelClip.LevelClip2.LevelText.text = "Infected!";
InfoFader.gotoAndStop("Blank");
CenterPush = 1;
Volume = 50;
Objectives = 20;
Level = -1;
Active = -1;
DeathCine = true;
RestartMenu._x = Stage.width / 2;
stopDrag();
}
function DNA() {
DNATimer = DNAPowerupTime;
DNATimerBar._visible = true;
DNATimerBar.Bar._xscale = 100;
}
function MakeDNA(Prob) {
if (Math.random() < Prob) {
TempClip = Particles.attachMovie("DNAPowerup", Particles.getNextHighestDepth(), Particles.getNextHighestDepth());
TempClip._x = Stage.width * Math.random();
TempClip._y = Stage.height * Math.random();
while (Amoeba.hitTest(TempClip._x, TempClip._y, false) || (Mask.hitTest(TempClip._x, TempClip._y, true))) {
TempClip._x = Stage.width * Math.random();
TempClip._y = Stage.height * Math.random();
}
}
}
function StartGame() {
MenuFader.gotoAndPlay("FadeOutMenu");
Volume = 10;
Level = 1;
Score = 0;
Objectives = 0;
GameComplete = false;
}
function GotoMenu() {
MenuFader.gotoAndStop("Start");
InfoFader.gotoAndPlay("ClickAndDrag");
LevelClip.gotoAndStop("Blank");
DeathCine = false;
Volume = 30;
Level = 0;
Score = 0;
Objectives = 20;
RestartMenu._x = -500;
EndGameMenu._x = -500;
GameComplete = false;
a = 0;
while (a < 20) {
Points[a]._x = (Stage.width / 2) + (Math.cos((a * 18) * Radians) * 50);
Points[a]._y = (Stage.height / 2) - (Math.sin((a * 18) * Radians) * 50);
a++;
}
Alpha = 100;
CenterPush = 5;
}
function Restart() {
InfoFader.gotoAndStop("Blank");
LevelClip.gotoAndStop("Blank");
DeathCine = false;
Volume = LastVolume;
Level = LastLevel;
Score = 0;
Objectives = 0;
RestartMenu._x = -500;
a = 0;
while (a < 20) {
Points[a]._x = (Stage.width / 2) + (Math.cos((a * 18) * Radians) * 50);
Points[a]._y = (Stage.height / 2) - (Math.sin((a * 18) * Radians) * 50);
a++;
}
Alpha = 100;
CenterPush = 5;
}
var Skin = 5;
var Stretch = 2;
var CenterPush = 5;
var Radians = (Math.PI/180);
var MaxLevel = "23";
var DNAPowerupTime = 150;
var Pop = new Sound();
Pop.attachSound("PopSound");
var Firework = new Sound();
Firework.attachSound("FireworkSound");
var Splast = new Sound();
Splast.attachSound("SplastSound");
var Hit = new Sound();
Hit.attachSound("HitSound");
var Volume = 30;
var Active = -1;
var Points = new Array();
var Center;
var Objectives = 1;
var Level = 0;
var GameComplete = false;
var DeathCine = false;
var Alpha = 100;
var DNATimer = 0;
var Score = 0;
var BossHit = 0;
var LastVolume = 0;
var LastLevel = 0;
var a = 0;
var Temp = 0;
var Temp2 = 0;
var Temp3 = 0;
var Temp4 = 0;
var TempX = 0;
var TempY = 0;
var TempClip;
var ColorTemp;
a = 0;
while (a < 20) {
Points[a] = Amoeba.attachMovie("Node", Amoeba.getNextHighestDepth(), Amoeba.getNextHighestDepth());
Points[a]._x = (Stage.width / 2) + (Math.cos((a * 18) * Radians) * 50);
Points[a]._y = (Stage.height / 2) - (Math.sin((a * 18) * Radians) * 50);
Points[a].ID = a;
a++;
}
Center = _root.attachMovie("Center", "Center", _root.getNextHighestDepth());
Center._x = Stage.width / 2;
Center._y = Stage.height / 2;
DNATimerBar._visible = false;
RestartMenu._x = -500;
EndGameMenu._x = -500;
onMouseUp = function () {
stopDrag();
};
Frame 5
Temp3 = 0;
Temp4 = 0;
Amoeba.clear();
if (DeathCine == true) {
if (Alpha > 0) {
Alpha--;
}
Amoeba.lineStyle(10, 13413017, 0);
} else {
Amoeba.lineStyle(10, 13413017, 100);
}
Amoeba.beginFill(13413017, Alpha);
a = 0;
while (a < Points.length) {
if (Points[a].ID != Active) {
if (a == (Points.length - 1)) {
Temp = 0;
} else {
Temp = a + 1;
}
if (a == 0) {
Temp2 = Points.length - 1;
} else {
Temp2 = a - 1;
}
TempX = Points[a]._x;
TempY = Points[a]._y;
if (Math.sqrt(Math.pow(Points[a]._x - Points[Temp2]._x, 2) + Math.pow(Points[a]._y - Points[Temp2]._y, 2)) > Skin) {
TempX = TempX + ((Points[Temp2]._x - Points[a]._x) / Stretch);
TempY = TempY + ((Points[Temp2]._y - Points[a]._y) / Stretch);
}
if (Math.sqrt(Math.pow(Points[a]._x - Points[Temp]._x, 2) + Math.pow(Points[a]._y - Points[Temp]._y, 2)) > Skin) {
TempX = TempX + ((Points[Temp]._x - Points[a]._x) / Stretch);
TempY = TempY + ((Points[Temp]._y - Points[a]._y) / Stretch);
}
if (Math.sqrt(Math.pow(TempX - Center._x, 2) + Math.pow(TempY - Center._y, 2)) < Volume) {
TempX = TempX - ((Center._x - TempX) / (Stretch * CenterPush));
TempY = TempY - ((Center._y - TempY) / (Stretch * CenterPush));
}
if (!Mask.hitTest(TempX, TempY, true)) {
Points[a]._x = TempX;
Points[a]._y = TempY;
}
}
Temp3 = Temp3 + Points[a]._x;
Temp4 = Temp4 + Points[a]._y;
if (a == 0) {
Amoeba.moveTo(Points[a]._x, Points[a]._y);
} else {
Amoeba.lineTo(Points[a]._x, Points[a]._y);
}
a++;
}
Amoeba.lineTo(Points[0]._x, Points[0]._y);
Amoeba.endFill();
Center._x = (Temp3 / Points.length) - 1;
Center._y = (Temp4 / Points.length) - 1;
if (Objectives <= 0) {
NextLevel();
}
if ((DNATimer > 0) && (DNATimerBar.Bar._xscale > 0)) {
DNATimer--;
DNATimerBar.Bar._xscale = (DNATimer * 100) / DNAPowerupTime;
if (DNATimer == 0) {
DNATimerBar.Bar._xscale = 0;
DNATimer = 15;
}
} else {
DNATimer--;
if (DNATimer <= 0) {
DNATimer = 0;
DNATimerBar._visible = false;
}
}
ScoreText.text = Score;
if (BossHit > 0) {
BossHit--;
}
if ((GameComplete == true) && (Math.random() < 0.2)) {
TempClip = Particles.attachMovie("Firework", Particles.getNextHighestDepth(), Particles.getNextHighestDepth());
TempClip._x = Math.random() * Stage.width;
TempClip._y = Stage.height;
ColorTemp = new Color(TempClip);
Temp = Math.ceil(Math.random() * 6);
switch (Temp) {
case 1 :
ColorTemp.setRGB("0xFF0000");
break;
case 2 :
ColorTemp.setRGB("0x00FF00");
break;
case 3 :
ColorTemp.setRGB("0x0000FF");
break;
case 4 :
ColorTemp.setRGB("0xFFFF00");
break;
case 5 :
ColorTemp.setRGB("0xFF00FF");
break;
case 6 :
ColorTemp.setRGB("0x00FFFF");
}
TempClip._rotation = (Math.random() * 15) - (Math.random() * 15);
TempClip._xscale = 25 + (Math.random() * 75);
TempClip._yscale = TempClip._xscale;
}
Frame 6
gotoAndPlay ("Main");
Symbol 12 MovieClip Frame 1
_root.stop();
Symbol 12 MovieClip Frame 19
var Total = _root.getBytesTotal();
var Loaded = 0;
Symbol 12 MovieClip Frame 20
Loaded = _root.getBytesLoaded();
Loadbar._xscale = (Loaded * 100) / Total;
if (Loaded >= Total) {
gotoAndPlay ("Start");
}
Symbol 12 MovieClip Frame 21
gotoAndPlay ("Main");
Symbol 12 MovieClip Frame 40
_root.play();
stop();
Symbol 99 MovieClip Frame 76
stop();
Symbol 102 MovieClip Frame 1
_root.stop();
Symbol 102 MovieClip Frame 153
_root.play();
stop();
Symbol 105 MovieClip [ShootingParticle] Frame 21
this.removeMovieClip();
Symbol 108 MovieClip [Node] Frame 1
var ID;
this.onPress = function () {
if (_root.Level >= 0) {
this._x = _root._xmouse;
this._y = _root._ymouse;
this.startDrag();
_root.Active = ID;
}
};
Symbol 108 MovieClip [Node] Frame 2
if (_root.NoneActive == true) {
Active = false;
}
Symbol 108 MovieClip [Node] Frame 3
gotoAndPlay ("Main");
Symbol 113 MovieClip [WormSegment] Frame 6
this.removeMovieClip();
Symbol 116 MovieClip [Virus2] Frame 1
if (Math.random() < 0.5) {
this._xscale = -100;
}
Symbol 116 MovieClip [Virus2] Frame 51
gotoAndPlay ("Start");
Symbol 119 MovieClip [Virus1] Frame 1
if (Math.random() < 0.5) {
this._xscale = -100;
}
Symbol 119 MovieClip [Virus1] Frame 61
gotoAndPlay ("Start");
Symbol 122 MovieClip [DNAPowerup] Frame 2
if (_root.Amoeba.hitTest(this._x, this._y, true) && (_root.Level > 0)) {
_root.DNA();
this.removeMovieClip();
}
if (_root.Level <= 0) {
this.removeMovieClip();
}
Symbol 122 MovieClip [DNAPowerup] Frame 3
gotoAndPlay ("Main");
Symbol 124 MovieClip [Microbe] Frame 1
var Angle = (Math.random() * 359);
var Speed = (Math.random() * 5);
var SpeedCap;
var TempClip;
var Trail;
var Score;
var Head;
var Virus;
var Level = _root.Level;
var TempX = 0;
var TempY = 0;
HeadPoint.attachMovie(Head, this.getNextHighestDepth(), this.getNextHighestDepth());
Symbol 124 MovieClip [Microbe] Frame 30
if (Virus == false) {
gotoAndPlay ("Main");
}
Symbol 124 MovieClip [Microbe] Frame 51
Angle = Angle + ((Math.random() * 10) - (Math.random() * 10));
Speed = Speed + (Math.random() - Math.random());
TempX = this._x + (Math.cos(Angle * _root.Radians) * Speed);
TempY = this._y + (Math.sin(Angle * _root.Radians) * Speed);
if (_root.Amoeba.hitTest(TempX, TempY, true)) {
Angle = Angle + 180;
Speed = (Math.abs(Speed) / Speed) * SpeedCap;
TempX = this._x + (Math.cos(Angle * _root.Radians) * Speed);
TempY = this._y + (Math.sin(Angle * _root.Radians) * Speed);
}
if (_root.Mask.hitTest(TempX, TempY, true)) {
if (_root.Anchor._x > TempX) {
Angle = Math.atan((TempY - _root.Anchor._y) / (TempX - _root.Anchor._x)) / (Math.PI/180);
} else {
Angle = (Math.atan((TempY - _root.Anchor._y) / (TempX - _root.Anchor._x)) / (Math.PI/180)) + 180;
}
Speed = SpeedCap;
TempX = this._x + (Math.cos(Angle * _root.Radians) * Speed);
TempY = this._y + (Math.sin(Angle * _root.Radians) * Speed);
}
this._x = TempX;
this._y = TempY;
if (Speed > SpeedCap) {
Speed = SpeedCap;
}
if (Speed < (-SpeedCap)) {
Speed = -SpeedCap;
}
if (_root.Amoeba.hitTest(this._x, this._y, true)) {
if ((Virus == false) || (_root.DNATimer > 0)) {
if (Virus == false) {
_root.Objectives--;
}
_root.MicrobeDeath(this, Score);
} else {
_root.VirusDeath();
}
}
if (Level != _root.Level) {
gotoAndPlay ("FadeOut");
}
TempClip = _root.Particles.attachMovie(Trail, _root.Particles.getNextHighestDepth(), _root.Particles.getNextHighestDepth());
TempClip._x = this._x;
TempClip._y = this._y;
Symbol 124 MovieClip [Microbe] Frame 52
gotoAndPlay ("Main");
Symbol 124 MovieClip [Microbe] Frame 66
this.removeMovieClip();
Symbol 127 MovieClip [Firework] Frame 30
a = 0;
while (a < 30) {
TempClip = this.attachMovie("ShootingParticle", this.getNextHighestDepth(), this.getNextHighestDepth());
TempClip._x = Graphic._x;
TempClip._y = Graphic._y;
TempClip._rotation = Math.random() * 359;
TempClip._xscale = 100 + (Math.random() * 100);
TempClip._yscale = TempClip._xscale;
a++;
}
_root.Firework.start();
Symbol 127 MovieClip [Firework] Frame 55
this.removeMovieClip();
Symbol 138 MovieClip Frame 1
Graphic.gotoAndPlay(Math.ceil(Math.random() * 7));
_root.Objectives = _root.Objectives + 1;
Symbol 138 MovieClip Frame 2
a = 0;
while (a < 20) {
if (_root.Points[a].hitTest(Hit) && (_root.BossHit <= 0)) {
_root.BossHit = _root.BossHit + 30;
_root.Objectives = _root.Objectives - 1;
_root.Splast.start();
this.gotoAndStop("Blank");
}
a++;
}
Graphic._yscale = (((30 - _root.BossHit) * 100) / 30) * 0.5;
Symbol 138 MovieClip Frame 3
gotoAndPlay ("Main");
Symbol 142 MovieClip [Boss] Frame 1
var Angle = (Math.random() * 359);
var Speed = (Math.random() * 5);
var SpeedCap = 6;
var TempClip;
var Score;
var TempX = 0;
var TempY = 0;
var ColorTemp = new Color();
Symbol 142 MovieClip [Boss] Frame 51
Angle = Angle + ((Math.random() * 2) - (Math.random() * 2));
Speed = Speed + (Math.random() - Math.random());
TempX = this._x + (Math.cos(Angle * _root.Radians) * Speed);
TempY = this._y + (Math.sin(Angle * _root.Radians) * Speed);
if (_root.Mask.hitTest(TempX, TempY, true)) {
if (_root.Anchor._x > TempX) {
Angle = Math.atan((TempY - _root.Anchor._y) / (TempX - _root.Anchor._x)) / (Math.PI/180);
} else {
Angle = (Math.atan((TempY - _root.Anchor._y) / (TempX - _root.Anchor._x)) / (Math.PI/180)) + 180;
}
Speed = SpeedCap;
TempX = this._x + (Math.cos(Angle * _root.Radians) * Speed);
TempY = this._y + (Math.sin(Angle * _root.Radians) * Speed);
}
this._x = TempX;
this._y = TempY;
this.Graphic._rotation = Angle;
if (Speed > SpeedCap) {
Speed = SpeedCap;
}
if (Speed < (-SpeedCap)) {
Speed = -SpeedCap;
}
if ((_root.Objectives <= 0) || (_root.Level != 24)) {
gotoAndPlay ("FadeOut");
}
a = 0;
while (a < 20) {
if (_root.Points[a].hitTest(Graphic.Hit1) || (_root.Points[a].hitTest(Graphic.Hit2))) {
_root.HitBoss();
b = 0;
while (b < 3) {
TempClip = _root.Particles.attachMovie("ShootingParticle", _root.Particles.getNextHighestDepth(), _root.Particles.getNextHighestDepth());
TempClip._x = _root.Points[a]._x;
TempClip._y = _root.Points[a]._y;
ColorTemp = new Color(TempClip);
ColorTemp.setRGB(5635993);
TempClip._rotation = Math.random() * 359;
TempClip._xscale = 50 + (Math.random() * 50);
TempClip._yscale = TempClip._xscale;
b++;
}
}
a++;
}
Symbol 142 MovieClip [Boss] Frame 52
gotoAndPlay ("Main");
Symbol 142 MovieClip [Boss] Frame 54
this._rotation = Angle;
Symbol 142 MovieClip [Boss] Frame 67
this.removeMovieClip();
Symbol 157 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 70
if ((_root.Level < 0) || (_root.GameComplete == true)) {
stop();
}
Symbol 157 MovieClip Frame 83
stop();
Symbol 164 Button
on (release) {
_root.StartGame();
}
Symbol 168 Button
on (release) {
getURL ("http://www.popethos.net", "_blank");
}
Symbol 170 MovieClip Frame 1
stop();
Symbol 170 MovieClip Frame 2
MenuGfx.PlayButton.enabled = false;
Symbol 170 MovieClip Frame 13
stop();
Symbol 185 MovieClip Frame 2
stop();
Symbol 185 MovieClip Frame 123
stop();
Symbol 185 MovieClip Frame 243
stop();
Symbol 185 MovieClip Frame 369
stop();
Symbol 185 MovieClip Frame 495
stop();
Symbol 185 MovieClip Frame 621
stop();
Symbol 185 MovieClip Frame 829
stop();
Symbol 185 MovieClip Frame 830
stop();
Symbol 188 Button
on (release) {
_root.GotoMenu();
}
Symbol 191 Button
on (release) {
_root.Restart();
}