Frame 1
function BackgroundSound() {
sndCrickets = new Sound(this);
sndCrickets.attachSound("crickets");
sndCrickets.setVolume(50);
sndCrickets.start(0, 999);
sndCrickets.onSoundComplete = function () {
sndCrickets.start(0, 999);
};
}
function FlyPumpkin(thepumpkin) {
trace(thepumpkin);
if (_root.Try <= 9) {
_root["mcPumpkin" + thepumpkin].gotoAndPlay("out");
sndLaugh = new Sound(this);
sndLaugh.attachSound("laugh");
sndLaugh.setVolume(100);
sndLaugh.start();
}
if (_root.Try >= 9) {
_root.GameOver();
}
}
function Start() {
_root.Try = 0;
_root.TotalLetters = 0;
_root.mcGameOver._visible = false;
z = 65;
while (z <= 90) {
_root.aKeys[z] = false;
z++;
}
blankspaces = 0;
xpoint = 235;
_root.mcPumpkin1.gotoAndStop(40);
_root.mcPumpkin2.gotoAndStop(40);
_root.mcPumpkin3.gotoAndStop(40);
_root.mcPumpkin4.gotoAndStop(40);
_root.mcPumpkin5.gotoAndStop(40);
_root.mcPumpkin6.gotoAndStop(40);
_root.mcPumpkin7.gotoAndStop(40);
_root.mcPumpkin8.gotoAndStop(40);
_root.mcPumpkin9.gotoAndStop(40);
_root.mcCracks._visible = false;
_root.mcWin.gotoAndStop(1);
_root.mcPumpkin1.gotoAndPlay("in");
_root.mcPumpkin2.gotoAndPlay("in");
_root.mcPumpkin3.gotoAndPlay("in");
_root.mcPumpkin4.gotoAndPlay("in");
_root.mcPumpkin5.gotoAndPlay("in");
_root.mcPumpkin6.gotoAndPlay("in");
_root.mcPumpkin7.gotoAndPlay("in");
_root.mcPumpkin8.gotoAndPlay("in");
_root.mcPumpkin9.gotoAndPlay("in");
_root.attachMovie("mcBlack", "mcBlack", 30);
_root.mcBlack._x = 177;
_root.mcBlack._y = 7;
_root.thechoice = Math.floor(Math.random() * 327) + 1;
_root.theword = _root.aWords[_root.thechoice];
_root.wordsize = length(_root.theword);
trace(_root.theword);
_root.mcWord._visible = true;
z = 1;
while (z < (parseInt(_root.wordsize) + 1)) {
if ((substring(_root.theword, z, 1)) != " ") {
_root.attachMovie("mcLetter", "mcLetter" + z, z + 1);
_root["mcLetter" + z].txtLetter.text = substring(_root.theword, z, 1);
_root["mcLetter" + z].txtLetter.textColor = 0;
_root["mcLetter" + z]._y = 15;
_root["mcLetter" + z]._x = xpoint;
} else {
blankspaces++;
}
xpoint = xpoint + 14;
z++;
}
_root.TotalLetters = _root.TotalLetters + blankspaces;
}
function TryIt(theletter) {
trace(theletter);
_root.aKeys[z] = true;
if (_root.Try < 10) {
FlagLetter = false;
z = 1;
while (z < (_root.wordsize + 1)) {
if (_root["mcLetter" + z].txtLetter.text == theletter) {
FlagLetter = true;
_root["mcLetter" + z].txtLetter.textColor = 16763904 /* 0xFFCC00 */;
_root.TotalLetters++;
}
z++;
}
if (FlagLetter == false) {
_root.Try++;
_root.FlyPumpkin(_root.Try);
}
if (_root.TotalLetters == _root.wordsize) {
_root.mcKeyboard.gotoAndStop(1);
_root.mcWin.gotoAndPlay(2);
_root.GamesWon++;
_root.mcGameAnimation.mcGames.txtWon.text = _root.GamesWon;
_root.GamesPlayed++;
_root.mcGameAnimation.mcGames.txtPlayed.text = _root.GamesPlayed;
}
}
_root.EnableButtons();
}
function GameOver() {
z = 1;
while (z <= _root.wordsize) {
if (_root["mcLetter" + z].txtLetter.textColor == 0) {
_root["mcLetter" + z].txtLetter.textColor = 16711680 /* 0xFF0000 */;
}
z++;
}
_root.mcCracks._visible = true;
_root.mcKeyboard.gotoAndStop(1);
sndCrack = new Sound(this);
sndCrack.attachSound("crack");
sndCrack.setVolume(100);
sndCrack.start();
_root.mcGameOver._visible = true;
_root.GamesLost++;
_root.mcGameAnimation.mcGames.txtLost.text = _root.GamesLost;
_root.GamesPlayed++;
_root.mcGameAnimation.mcGames.txtPlayed.text = _root.GamesPlayed;
_root.mcRestart.gotoAndPlay(2);
}
function DisableButtons(theletter) {
z = 65;
while (z <= 90) {
_root.mcKeyboard["btnButton" + chr(z)].enabled = false;
z++;
}
_root.TryIt(theletter);
}
function EnableButtons() {
z = 65;
while (z <= 90) {
if (_root.aKeys[z] == false) {
_root.mcKeyboard["btnButton" + chr(z)].enabled = true;
}
z++;
}
}
function EnumWords() {
aWords = new Array();
aWords[0] = "abyss";
aWords[1] = "agony";
aWords[2] = "anguish";
aWords[3] = "apparition";
aWords[4] = "appear";
aWords[5] = "ax";
aWords[6] = "axe";
aWords[7] = "bane";
aWords[8] = "banshee";
aWords[9] = "bats";
aWords[10] = "beast";
aWords[11] = "beelzebub";
aWords[12] = "behead";
aWords[13] = "bite";
aWords[14] = "black";
aWords[15] = "black cat";
aWords[16] = "blood";
aWords[17] = "bloodsucker";
aWords[18] = "bloody";
aWords[19] = "body";
aWords[20] = "boil";
aWords[21] = "bones";
aWords[22] = "bonfire";
aWords[23] = "boo";
aWords[24] = "brains";
aWords[25] = "breezy";
aWords[26] = "brew";
aWords[27] = "brood";
aWords[28] = "broom";
aWords[29] = "broomstick";
aWords[30] = "brute";
aWords[31] = "burn";
aWords[32] = "bury";
aWords[33] = "cackle";
aWords[34] = "cadaver";
aWords[35] = "candy";
aWords[36] = "candy apple";
aWords[37] = "candy corn";
aWords[38] = "cape";
aWords[39] = "carnage";
aWords[40] = "carving";
aWords[41] = "casket";
aWords[42] = "cast";
aWords[43] = "catacomb";
aWords[44] = "cauldron";
aWords[45] = "cemetery";
aWords[46] = "chain";
aWords[47] = "chill";
aWords[48] = "cleaver";
aWords[49] = "clown";
aWords[50] = "clowns";
aWords[51] = "cobweb";
aWords[52] = "coffin";
aWords[53] = "corpse";
aWords[54] = "costume";
aWords[55] = "count dracula";
aWords[56] = "coven";
aWords[57] = "crazy";
aWords[58] = "creature";
aWords[59] = "creep";
aWords[60] = "cremate";
aWords[61] = "crow";
aWords[62] = "crypt";
aWords[63] = "cult";
aWords[64] = "curse";
aWords[65] = "cut";
aWords[66] = "dark";
aWords[67] = "dead";
aWords[68] = "deadly";
aWords[69] = "death";
aWords[70] = "decapitate";
aWords[71] = "decay";
aWords[72] = "demon";
aWords[73] = "despicable";
aWords[74] = "destroy";
aWords[75] = "devil";
aWords[76] = "disembodied";
aWords[77] = "doom";
aWords[78] = "dracula";
aWords[79] = "dread";
aWords[80] = "dreadful";
aWords[81] = "dungeon";
aWords[82] = "eek";
aWords[83] = "eerie";
aWords[84] = "electrocute";
aWords[85] = "entomb";
aWords[86] = "epitaph";
aWords[87] = "evil";
aWords[88] = "evil eye";
aWords[89] = "execute";
aWords[90] = "exhume";
aWords[91] = "exorcist";
aWords[92] = "fangs";
aWords[93] = "fear";
aWords[94] = "fester";
aWords[95] = "fiend";
aWords[96] = "fire";
aWords[97] = "flashlight";
aWords[98] = "fly";
aWords[99] = "fog";
aWords[100] = "frankenstein";
aWords[101] = "fright";
aWords[102] = "full moon";
aWords[103] = "funeral";
aWords[104] = "gallows";
aWords[105] = "gangrene";
aWords[106] = "gargoyle";
aWords[107] = "gash";
aWords[108] = "ghastly";
aWords[109] = "ghost";
aWords[110] = "ghost story";
aWords[111] = "ghosts";
aWords[112] = "ghoul";
aWords[113] = "ghoulish";
aWords[114] = "goblin";
aWords[115] = "goblins";
aWords[116] = "gore";
aWords[117] = "gory";
aWords[118] = "gourd";
aWords[119] = "gout";
aWords[120] = "grave";
aWords[121] = "gravestone";
aWords[122] = "graveyard";
aWords[123] = "grim";
aWords[124] = "grisly";
aWords[125] = "groan";
aWords[126] = "gruesome";
aWords[127] = "grunt";
aWords[128] = "guillotine";
aWords[129] = "guise";
aWords[130] = "hades";
aWords[131] = "hallow";
aWords[132] = "halloween";
aWords[133] = "halve";
aWords[134] = "hang";
aWords[135] = "happy halloween";
aWords[136] = "harvest";
aWords[137] = "haunt";
aWords[138] = "haunted house";
aWords[139] = "hayride";
aWords[140] = "headstone";
aWords[141] = "hearse";
aWords[142] = "heart";
aWords[143] = "hell";
aWords[144] = "henbane";
aWords[145] = "hex";
aWords[146] = "horrible";
aWords[147] = "horror";
aWords[148] = "howl";
aWords[149] = "hung";
aWords[150] = "hunt";
aWords[151] = "icky";
aWords[152] = "imp";
aWords[153] = "impale";
aWords[154] = "incubus";
aWords[155] = "iron maiden";
aWords[156] = "irrational";
aWords[157] = "jack o lantern";
aWords[158] = "jump out";
aWords[159] = "keep";
aWords[160] = "kill";
aWords[161] = "killer";
aWords[162] = "knife";
aWords[163] = "lacerate";
aWords[164] = "laceration";
aWords[165] = "lair";
aWords[166] = "lightning";
aWords[167] = "lucifer";
aWords[168] = "lunatics";
aWords[169] = "lycanthrope";
aWords[170] = "macabre";
aWords[171] = "maggots";
aWords[172] = "magic";
aWords[173] = "maim";
aWords[174] = "mar";
aWords[175] = "mask";
aWords[176] = "massacre";
aWords[177] = "master";
aWords[178] = "mausoleum";
aWords[179] = "mean";
aWords[180] = "miasma";
aWords[181] = "midnight";
aWords[182] = "mischief";
aWords[183] = "mist";
aWords[184] = "moan";
aWords[185] = "monster";
aWords[186] = "monstrosity";
aWords[187] = "moon";
aWords[188] = "moonlight";
aWords[189] = "morgue";
aWords[190] = "mummy";
aWords[191] = "murder";
aWords[192] = "mutation";
aWords[193] = "mutilation";
aWords[194] = "nervous";
aWords[195] = "night";
aWords[196] = "nightmare";
aWords[197] = "noose";
aWords[198] = "nosferatu";
aWords[199] = "occult";
aWords[200] = "occultism";
aWords[201] = "october";
aWords[202] = "owl";
aWords[203] = "owls";
aWords[204] = "pain";
aWords[205] = "pentacle";
aWords[206] = "pentagram";
aWords[207] = "pestilence";
aWords[208] = "petrify";
aWords[209] = "phantasm";
aWords[210] = "phantom";
aWords[211] = "pit";
aWords[212] = "plague";
aWords[213] = "poltergeist";
aWords[214] = "possessed";
aWords[215] = "prowl";
aWords[216] = "pumpkin";
aWords[217] = "pumpkin carving";
aWords[218] = "pumpkin patch";
aWords[219] = "pumpkin pie";
aWords[220] = "pumpkins";
aWords[221] = "purgatory";
aWords[222] = "pyre";
aWords[223] = "quail";
aWords[224] = "quake";
aWords[225] = "queasy";
aWords[226] = "rack";
aWords[227] = "rampage";
aWords[228] = "ravage";
aWords[229] = "raven";
aWords[230] = "reaper";
aWords[231] = "rest";
aWords[232] = "revenge";
aWords[233] = "rip";
aWords[234] = "rot";
aWords[235] = "safe";
aWords[236] = "satan";
aWords[237] = "scab";
aWords[238] = "scar";
aWords[239] = "scare";
aWords[240] = "scarecrow";
aWords[241] = "scary";
aWords[242] = "scourge";
aWords[243] = "scream";
aWords[244] = "screech";
aWords[245] = "sepulcher";
aWords[246] = "serpent";
aWords[247] = "sever";
aWords[248] = "severed hand";
aWords[249] = "shade";
aWords[250] = "shadow";
aWords[251] = "shock";
aWords[252] = "shred";
aWords[253] = "shriek";
aWords[254] = "skeleton";
aWords[255] = "skull";
aWords[256] = "slab";
aWords[257] = "slain";
aWords[258] = "slash";
aWords[259] = "slaughter";
aWords[260] = "slay";
aWords[261] = "smell my feet";
aWords[262] = "sorcerer";
aWords[263] = "sorcery";
aWords[264] = "specter";
aWords[265] = "spell";
aWords[266] = "spider";
aWords[267] = "spider web";
aWords[268] = "spiders";
aWords[269] = "spike";
aWords[270] = "spirit";
aWords[271] = "spook";
aWords[272] = "spooky";
aWords[273] = "squeaky";
aWords[274] = "stab";
aWords[275] = "stalk";
aWords[276] = "stench";
aWords[277] = "stitches";
aWords[278] = "storm";
aWords[279] = "stretch";
aWords[280] = "suffer";
aWords[281] = "superstition";
aWords[282] = "swamp";
aWords[283] = "tear";
aWords[284] = "terrify";
aWords[285] = "terror";
aWords[286] = "terrorize";
aWords[287] = "thunder";
aWords[288] = "tomb";
aWords[289] = "tombstone";
aWords[290] = "torch";
aWords[291] = "torment";
aWords[292] = "torture";
aWords[293] = "treat";
aWords[294] = "trick";
aWords[295] = "trick or treat";
aWords[296] = "triskaidekaphobia";
aWords[297] = "ugly";
aWords[298] = "undead";
aWords[299] = "undertaker";
aWords[300] = "urn";
aWords[301] = "vampire";
aWords[302] = "vault";
aWords[303] = "vex";
aWords[304] = "vile";
aWords[305] = "villain";
aWords[306] = "wail";
aWords[307] = "warlocks";
aWords[308] = "weapon";
aWords[309] = "web";
aWords[310] = "werewolf";
aWords[311] = "wicked";
aWords[312] = "witch";
aWords[313] = "witchcraft";
aWords[314] = "wizard";
aWords[315] = "wolf";
aWords[316] = "wolfs bane";
aWords[317] = "wolves";
aWords[318] = "woods";
aWords[319] = "worm";
aWords[320] = "wound";
aWords[321] = "wraith";
aWords[322] = "wretched";
aWords[323] = "xenophobia";
aWords[324] = "yell";
aWords[325] = "yelp";
aWords[326] = "yikes";
aWords[327] = "zombie";
}
EnumWords();
_root.mcPumpkin1.gotoAndStop(40);
_root.mcPumpkin2.gotoAndStop(40);
_root.mcPumpkin3.gotoAndStop(40);
_root.mcPumpkin4.gotoAndStop(40);
_root.mcPumpkin5.gotoAndStop(40);
_root.mcPumpkin6.gotoAndStop(40);
_root.mcPumpkin7.gotoAndStop(40);
_root.mcPumpkin8.gotoAndStop(40);
_root.mcPumpkin9.gotoAndStop(40);
_root.mcWord._visible = false;
_root.mcCracks._visible = false;
_root.mcGameOver._visible = false;
_root.FlagFirst = true;
_root.GamesPlayed = 0;
_root.GamesWon = 0;
_root.GamesLost = 0;
_root.aKeys = new Array();
BackgroundSound();
stop();
Symbol 11 MovieClip [mcBlack] Frame 15
this.removeMovieClip();
Symbol 17 Button
on (release) {
getURL ("http://www.lostjungle.com");
}
Symbol 18 Button
on (release) {
getURL ("http://www.lostjungle.com/add.php?game=hangman-halloween");
}
Symbol 22 MovieClip Frame 31
gotoAndPlay(Math.floor(Math.random() * 31));
Symbol 32 MovieClip Frame 1
stop();
Symbol 32 MovieClip Frame 2
play();
Symbol 32 MovieClip Frame 10
stop();
Symbol 32 MovieClip Frame 11
play();
Symbol 33 Button
on (rollOver) {
_root.mcGameAnimation.gotoAndPlay("in");
}
on (rollOut, dragOut) {
_root.mcGameAnimation.gotoAndPlay("out");
}
Symbol 36 MovieClip Frame 40
stop();
Symbol 36 MovieClip Frame 41
play();
Symbol 36 MovieClip Frame 80
stop();
Symbol 36 MovieClip Frame 111
stop();
Symbol 38 MovieClip Frame 40
stop();
Symbol 38 MovieClip Frame 41
play();
Symbol 38 MovieClip Frame 80
stop();
Symbol 38 MovieClip Frame 111
stop();
Symbol 40 MovieClip Frame 40
stop();
Symbol 40 MovieClip Frame 41
play();
Symbol 40 MovieClip Frame 80
stop();
Symbol 40 MovieClip Frame 111
stop();
Symbol 42 MovieClip Frame 40
stop();
Symbol 42 MovieClip Frame 41
play();
Symbol 42 MovieClip Frame 80
stop();
Symbol 42 MovieClip Frame 111
stop();
Symbol 44 MovieClip Frame 40
stop();
Symbol 44 MovieClip Frame 41
play();
Symbol 44 MovieClip Frame 80
stop();
Symbol 44 MovieClip Frame 111
stop();
Symbol 46 MovieClip Frame 40
stop();
Symbol 46 MovieClip Frame 41
play();
Symbol 46 MovieClip Frame 80
stop();
Symbol 46 MovieClip Frame 111
stop();
Symbol 48 MovieClip Frame 40
stop();
Symbol 48 MovieClip Frame 41
play();
Symbol 48 MovieClip Frame 80
stop();
Symbol 48 MovieClip Frame 111
stop();
Symbol 50 MovieClip Frame 40
stop();
Symbol 50 MovieClip Frame 41
play();
Symbol 50 MovieClip Frame 80
stop();
Symbol 50 MovieClip Frame 111
stop();
Symbol 52 MovieClip Frame 40
stop();
Symbol 52 MovieClip Frame 41
play();
Symbol 52 MovieClip Frame 80
_root.mcKeyboard.gotoAndPlay("in");
stop();
Symbol 52 MovieClip Frame 111
stop();
Symbol 56 Button
on (release) {
_root.aKeys[72] = true;
_root.DisableButtons("h");
this.btnButtonH._alpha = 50;
this.btnButtonH.enabled = false;
}
Symbol 57 Button
on (release) {
_root.aKeys[67] = true;
_root.DisableButtons("c");
this.btnButtonC._alpha = 50;
this.btnButtonC.enabled = false;
}
Symbol 58 Button
on (release) {
_root.aKeys[66] = true;
_root.DisableButtons("b");
this.btnButtonB._alpha = 50;
this.btnButtonB.enabled = false;
}
Symbol 59 Button
on (release) {
_root.aKeys[65] = true;
_root.DisableButtons("a");
this.btnButtonA._alpha = 50;
this.btnButtonA.enabled = false;
}
Symbol 60 Button
on (release) {
_root.aKeys[70] = true;
_root.DisableButtons("f");
this.btnButtonF._alpha = 50;
this.btnButtonF.enabled = false;
}
Symbol 61 Button
on (release) {
_root.aKeys[69] = true;
_root.DisableButtons("e");
this.btnButtonE._alpha = 50;
this.btnButtonE.enabled = false;
}
Symbol 62 Button
on (release) {
_root.aKeys[68] = true;
_root.DisableButtons("d");
this.btnButtonD._alpha = 50;
this.btnButtonD.enabled = false;
}
Symbol 63 Button
on (release) {
_root.aKeys[73] = true;
_root.DisableButtons("i");
this.btnButtonI._alpha = 50;
this.btnButtonI.enabled = false;
}
Symbol 64 Button
on (release) {
_root.aKeys[71] = true;
_root.DisableButtons("g");
this.btnButtonG._alpha = 50;
this.btnButtonG.enabled = false;
}
Symbol 65 Button
on (release) {
_root.aKeys[76] = true;
_root.DisableButtons("l");
this.btnButtonL._alpha = 50;
this.btnButtonL.enabled = false;
}
Symbol 66 Button
on (release) {
_root.aKeys[75] = true;
_root.DisableButtons("k");
this.btnButtonK._alpha = 50;
this.btnButtonK.enabled = false;
}
Symbol 67 Button
on (release) {
_root.aKeys[74] = true;
_root.DisableButtons("j");
this.btnButtonJ._alpha = 50;
this.btnButtonJ.enabled = false;
}
Symbol 68 Button
on (release) {
_root.aKeys[79] = true;
_root.DisableButtons("o");
this.btnButtonO._alpha = 50;
this.btnButtonO.enabled = false;
}
Symbol 69 Button
on (release) {
_root.aKeys[78] = true;
_root.DisableButtons("n");
this.btnButtonN._alpha = 50;
this.btnButtonN.enabled = false;
}
Symbol 70 Button
on (release) {
_root.aKeys[77] = true;
_root.DisableButtons("m");
this.btnButtonM._alpha = 50;
this.btnButtonM.enabled = false;
}
Symbol 71 Button
on (release) {
_root.aKeys[82] = true;
_root.DisableButtons("r");
this.btnButtonR._alpha = 50;
this.btnButtonR.enabled = false;
}
Symbol 72 Button
on (release) {
_root.aKeys[81] = true;
_root.DisableButtons("q");
this.btnButtonQ._alpha = 50;
this.btnButtonQ.enabled = false;
}
Symbol 73 Button
on (release) {
_root.aKeys[80] = true;
_root.DisableButtons("p");
this.btnButtonP._alpha = 50;
this.btnButtonP.enabled = false;
}
Symbol 74 Button
on (release) {
_root.aKeys[85] = true;
_root.DisableButtons("u");
this.btnButtonU._alpha = 50;
this.btnButtonU.enabled = false;
}
Symbol 75 Button
on (release) {
_root.aKeys[84] = true;
_root.DisableButtons("t");
this.btnButtonT._alpha = 50;
this.btnButtonT.enabled = false;
}
Symbol 76 Button
on (release) {
_root.aKeys[83] = true;
_root.DisableButtons("s");
this.btnButtonS._alpha = 50;
this.btnButtonS.enabled = false;
}
Symbol 77 Button
on (release) {
_root.aKeys[89] = true;
_root.DisableButtons("y");
this.btnButtonY._alpha = 50;
this.btnButtonY.enabled = false;
}
Symbol 78 Button
on (release) {
_root.aKeys[88] = true;
_root.DisableButtons("x");
this.btnButtonX._alpha = 50;
this.btnButtonX.enabled = false;
}
Symbol 79 Button
on (release) {
_root.aKeys[86] = true;
_root.DisableButtons("v");
this.btnButtonV._alpha = 50;
this.btnButtonV.enabled = false;
}
Symbol 80 Button
on (release) {
_root.aKeys[90] = true;
_root.DisableButtons("z");
this.btnButtonZ._alpha = 50;
this.btnButtonZ.enabled = false;
}
Symbol 81 Button
on (release) {
_root.aKeys[87] = true;
_root.DisableButtons("w");
this.btnButtonW._alpha = 50;
this.btnButtonW.enabled = false;
}
Symbol 109 MovieClip Frame 1
stop();
Symbol 109 MovieClip Frame 15
stop();
Symbol 115 MovieClip Frame 1
z = 1;
while (z < _root.wordsize) {
_root["mcLetter" + z].txtLetter.textColor = 16711680 /* 0xFF0000 */;
z++;
}
_root.FlagFirst = true;
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 2
play();
Symbol 121 MovieClip Frame 16
_root.mcGameAnimation.gotoAndPlay("in");
stop();
Instance of Symbol 119 MovieClip "mcBat" in Symbol 121 MovieClip Frame 16
on (release) {
_root.mcWord._visible = false;
z = 1;
while (z < 18) {
_root["mcLetter" + z].removeMovieClip();
z++;
}
_root.mcTitle._visible = false;
_parent.gotoAndPlay("out");
}
Symbol 121 MovieClip Frame 17
_root.mcGameAnimation.gotoAndPlay("out");
Symbol 121 MovieClip Frame 31
_root.Start();
Symbol 126 MovieClip Frame 29
_root.mcStart.gotoAndPlay("in");
stop();
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 2
play();
Symbol 132 MovieClip Frame 56
stop();
z = 1;
while (z <= 9) {
_root["mcPumpkin" + z].gotoAndPlay("flash");
z++;
}
_root.FlagFirst = true;
_root.mcRestart.gotoAndPlay(2);
Symbol 133 MovieClip Frame 1
stop();
Symbol 133 MovieClip Frame 60
_root.mcStart.gotoAndPlay("in");