Frame 1
function mochibot(swfid, mc, lv) {
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=5&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "");
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);
}
g[n] = res;
return(res);
}
max = 100;
i = 0;
while (i < max) {
zufall = random(200);
attachMovie("bot", "bot" + i, i);
_root["bot" + i]._x = random(600);
_root["bot" + i]._y = random(450);
_root["bot" + i]._xscale = zufall;
_root["bot" + i]._yscale = zufall;
_root["bot" + i]._alpha = zufall;
i++;
}
mochibot("74fc081f", this, 10301);
stop();
_global.snow = true;
_global.difficulty = "medium";
_root.medium_mc.gotoAndStop(2);
_root.easy_mc.onRelease = function () {
_root.easy_mc.gotoAndStop(2);
_root.medium_mc.gotoAndStop(1);
_root.hard_mc.gotoAndStop(1);
_global.difficulty = "easy";
};
_root.medium_mc.onRelease = function () {
_root.easy_mc.gotoAndStop(1);
_root.medium_mc.gotoAndStop(2);
_root.hard_mc.gotoAndStop(1);
_global.difficulty = "medium";
};
_root.hard_mc.onRelease = function () {
_root.easy_mc.gotoAndStop(1);
_root.medium_mc.gotoAndStop(1);
_root.hard_mc.gotoAndStop(2);
_global.difficulty = "hard";
};
_root.play_btn.onRelease = function () {
_root.gotoAndStop(3);
};
_root.howtoplay_btn.onRelease = function () {
_root.gotoAndStop(2);
};
_root.hiscores_btn.onRelease = function () {
_root.gotoAndStop(15);
};
_root.checkbox_mc.onRelease = function () {
if (this._currentframe == 1) {
this.gotoAndStop(2);
_global.snow = false;
} else {
this.gotoAndStop(1);
_global.snow = true;
}
};
Frame 2
stop();
_root.home_btn.onRelease = function () {
_root.gotoAndStop(1);
};
Frame 3
function DistanceBetween(mc1, mc2) {
var _local2 = mc2._x - mc1._x;
var _local1 = mc2._y - mc1._y;
return(Math.sqrt((_local2 * _local2) + (_local1 * _local1)));
}
function RotationFromTo(mc1, mc2) {
var _local1 = mc2._x - mc1._x;
var _local2 = mc2._y - mc1._y;
return((Math.atan2(_local2, _local1) * 180) / Math.PI);
}
function snowballEnterFrame() {
this.life++;
this.vector_y = this.vector_y + gravity;
this._x = this._x + this.vector_x;
this._y = this._y + this.vector_y;
if ((this.hitTest(_root.santa_mc.hitzone_mc) && (_root.santa_mc._x > 0)) && (_root.santa_mc._x < 600)) {
dropPresent();
var soundChooser = Math.floor(Math.random() * 8);
if (soundChooser == 1) {
urghSound();
} else if (soundChooser == 2) {
raspberrySound();
} else {
hitSound();
}
if (higraphics) {
var ssplat = attachMovie("splat", ("splat" + depth) + "_mc", (depth = depth + 3));
ssplat._x = _root.santa_mc._x;
ssplat._y = _root.santa_mc._y;
}
_root.santa_mc._y = _root.santa_mc._y + dropamount;
if (_root.santa_mc._y > 300) {
crashSound();
timeOfDeath = getTimer();
isSantaDead = true;
gameLive = false;
_root.machine_mc.removeMovieClip();
}
this.removeMovieClip();
}
if (this.hitTest(_root.machine_mc)) {
_global.score = _global.score - 25;
this.removeMovieClip();
if (higraphics) {
var mm25 = attachMovie("minus25", ("minus25" + depth) + "_mc", (depth = depth + 7));
mm25._x = _root.machine_mc._x;
mm25._y = _root.machine_mc._y;
}
lives--;
if (lives == 0) {
loserSound();
_root.gotoAndStop(5);
}
}
if ((this._x < snowball_bounds.xMin) || (this._x > snowball_bounds.xMax)) {
this.removeMovieClip();
} else if ((this._y < snowball_bounds.yMin) || (this._y > snowball_bounds.yMax)) {
this.removeMovieClip();
}
var i = 0;
while (i <= snowmanCount) {
if (this.hitTest(eval (("_root.snowman" + i) + "_mc"))) {
if (higraphics) {
var ssplat = attachMovie("splat", ("splat" + depth) + "_mc", (depth = depth + 3));
ssplat._x = eval (("_root.snowman" + i) + "_mc._x");
ssplat._y = eval (("_root.snowman" + i) + "_mc._y");
var pplusfifty = attachMovie("plus50", ("plus50" + depth) + "_mc", (depth = depth + 7));
pplusfifty._x = eval (("_root.snowman" + i) + "_mc._x");
pplusfifty._y = eval (("_root.snowman" + i) + "_mc._y");
}
_global.score = _global.score + 50;
hitSound();
this.removeMovieClip();
eval (("_root.snowman" + i) + "_mc").removeMovieClip();
}
i++;
}
var i = 0;
while (i <= coalCount) {
if (this.hitTest(eval (("_root.coal" + i) + "_mc"))) {
if (higraphics) {
var ssplat = attachMovie("splat", ("splat" + depth) + "_mc", (depth = depth + 4));
ssplat._x = eval (("_root.coal" + i) + "_mc._x");
ssplat._y = eval (("_root.coal" + i) + "_mc._y");
var pplusfifty = attachMovie("plus50", ("plus50" + depth) + "_mc", (depth = depth + 6));
pplusfifty._x = eval (("_root.coal" + i) + "_mc._x");
pplusfifty._y = eval (("_root.coal" + i) + "_mc._y");
}
_global.score = _global.score + 50;
hit1Sound();
this.removeMovieClip();
eval (("_root.coal" + i) + "_mc").removeMovieClip();
}
i++;
}
}
function snowmanEnterFrame() {
this.degree = this.degree + this.speed;
this.radian = (this.degree / 180) * Math.PI;
this._x = this._x + this.xdirection;
this._y = 340 - (Math.sin(this.radian) * this.radius);
if (this.hitTest(_root.machine_mc)) {
dinkSound();
if (higraphics) {
var _local4 = attachMovie("splat", ("splat" + depth) + "_mc", (depth = depth + 3));
_local4._x = _root.machine_mc._x;
_local4._y = _root.machine_mc._y;
var _local3 = attachMovie("minus25", ("minus25" + depth) + "_mc", (depth = depth + 7));
_local3._x = _root.machine_mc._x;
_local3._y = _root.machine_mc._y;
}
lives--;
if (lives == 0) {
loserSound();
_root.gotoAndStop(5);
}
this.removeMovieClip();
}
if (isSantaDead) {
this.removeMovieClip();
}
}
function makeSnowman() {
var leftOrRight = Math.floor(Math.random() * 2);
var ssman = attachMovie("snowman", ("snowman" + snowmanCount) + "_mc", (snowmanCount = snowmanCount + 5));
if (leftOrRight == 0) {
ssman._x = 0;
ssman._y = 340;
ssman.xdirection = 3;
} else {
ssman._x = 600;
ssman._y = 340;
ssman.xdirection = -3;
eval (("_root.snowman" + snowmanCount) + "_mc").gotoAndStop(2);
}
ssman.radius = 20;
ssman.speed = 10;
ssman.degree = 0;
ssman.radian = 0;
ssman.onEnterFrame = snowmanEnterFrame;
}
function onEnterFrame() {
if (_root._currentframe == 3) {
_root.score_txt.text = _global.score;
_root.lives_txt.text = lives;
if ((_global.score > 150) && (difficulty > 1)) {
difficulty--;
}
if ((_global.score > 300) && (difficulty > 1)) {
difficulty--;
}
elapsedS = Math.floor(getTimer() / 1000);
var _local3 = elapsedS / difficulty;
if ((((_local3 - Math.floor(_local3)) == 0) && (oldSeconds != elapsedS)) && (isSantaDead == false)) {
var _local4 = Math.floor(Math.random() * 4);
switch (_local4) {
case 0 :
dropCoal();
break;
case 1 :
makeSnowman();
break;
case 2 :
makeSnowman();
dropCoal();
break;
case 3 :
if (turkeyBlocked == false) {
dropTurkey();
} else {
dropCoal();
}
}
}
oldSeconds = elapsedS;
if (gameLive) {
if (Key.isDown(37) || (Key.isDown(65))) {
if (_root.machine_mc._x > 20) {
_root.launcher_mc._x = _root.launcher_mc._x - carspeed;
_root.machine_mc._x = _root.machine_mc._x - carspeed;
_root.machine_mc.wheel1_mc._rotation = _root.machine_mc.wheel1_mc._rotation - (carspeed * 3);
_root.machine_mc.wheel2_mc._rotation = _root.machine_mc.wheel2_mc._rotation - (carspeed * 3);
}
}
if (Key.isDown(39) || (Key.isDown(68))) {
if (_root.machine_mc._x < 580) {
_root.launcher_mc._x = _root.launcher_mc._x + carspeed;
_root.machine_mc._x = _root.machine_mc._x + carspeed;
_root.machine_mc.wheel1_mc._rotation = _root.machine_mc.wheel1_mc._rotation + (carspeed * 3);
_root.machine_mc.wheel2_mc._rotation = _root.machine_mc.wheel2_mc._rotation + (carspeed * 3);
}
}
launcher_mc._rotation = RotationFromTo(launcher_mc, crosshair_mc);
crosshair_mc._x = _xmouse;
crosshair_mc._y = _ymouse;
}
}
}
function onMouseDown() {
if ((_root._currentframe == 3) && (isSantaDead == false)) {
if ((oldTime + 200) < getTimer()) {
if (turkeyBlocked == false) {
shootSound();
depth++;
var _local3 = this.attachMovie("snowball", ("snowball" + depth) + "_mc", depth);
var _local4 = (launcher_mc._rotation * Math.PI) / 180;
var _local6 = Math.cos(_local4);
var _local7 = Math.sin(_local4);
_local3._x = launcher_mc._x + (_local6 * launcher_length);
_local3._y = launcher_mc._y + (_local7 * launcher_length);
_local3.vector_x = (_local6 * DistanceBetween(launcher_mc, crosshair_mc)) / power_reduction;
_local3.vector_y = (_local7 * DistanceBetween(launcher_mc, crosshair_mc)) / power_reduction;
_local3.life = 0;
_local3.onEnterFrame = snowballEnterFrame;
oldTime = getTimer();
} else {
thumpSound();
_root.launcher_mc.turkey_mc.gotoAndStop(_root.launcher_mc.turkey_mc._currentframe + 1);
if (_root.launcher_mc.turkey_mc._currentframe == 10) {
_root.launcher_mc.turkey_mc.gotoAndStop(1);
turkeyBlocked = false;
popSound();
var _local4 = (launcher_mc._rotation * Math.PI) / 180;
var _local6 = Math.cos(_local4);
var _local7 = Math.sin(_local4);
var _local5 = attachMovie("redsplat", ("redsplat" + depth) + "_mc", (depth = depth + 3));
_local5._x = launcher_mc._x + (_local6 * launcher_length);
_local5._y = launcher_mc._y + (_local7 * launcher_length);
}
}
}
}
}
function dropPresent() {
var _local2 = attachMovie("present", ("present" + depth) + "_mc", (depth = depth + 4));
_local2._x = _root.santa_mc._x;
if (_local2._x <= 1) {
_local2._x = 5;
} else if (_local2._x >= 597) {
_local2._x = 590;
}
_local2._y = _root.santa_mc._y;
_local2.gotoAndStop(Math.round(Math.random() * 4) + 1);
if ((Math.round(Math.random() * 4) + 1) <= 3) {
_local2.gotoAndStop(1);
}
_local2.speed = 1;
if (_root.machine_mc._x < _root.santa_mc._x) {
_local2.pxspeed = -5;
} else {
_local2.pxspeed = 5;
}
_local2.onEnterFrame = presentEnterFrame;
}
function presentEnterFrame() {
this._y = this._y + this.speed;
this._x = this._x + this.pxspeed;
this.speed = this.speed + 0.2;
this._rotation++;
if (this.hitTest(_root.machine_mc)) {
_global.score = _global.score + 50;
if (this._currentframe == 4) {
extralifeSound();
if (higraphics) {
var _local4 = attachMovie("extralife", ("extralife" + depth) + "_mc", (depth = depth + 7));
_local4._x = _root.machine_mc._x;
_local4._y = _root.machine_mc._y;
}
lives++;
} else {
if (higraphics) {
var _local5 = attachMovie("plus50", ("plus50" + depth) + "_mc", (depth = depth + 7));
_local5._x = _root.machine_mc._x;
_local5._y = _root.machine_mc._y;
}
bellSound();
}
this.removeMovieClip();
}
if ((this._x < snowball_bounds.xMin) || (this._x > snowball_bounds.xMax)) {
this.pxspeed = this.pxspeed * -1;
} else if ((this._y < snowball_bounds.yMin) || (this._y > snowball_bounds.yMax)) {
this.removeMovieClip();
}
}
function dropCoal() {
var _local2 = attachMovie("coal", ("coal" + coalCount) + "_mc", coalCount++);
_local2._x = _root.santa_mc._x;
_local2._y = _root.santa_mc._y;
_local2.speed = 1;
if (_local2._x <= 1) {
_local2._x = 5;
} else if (_local2._x >= 597) {
_local2._x = 590;
}
if (_root.machine_mc._x < _root.santa_mc._x) {
_local2.cxspeed = -5;
} else {
_local2.cxspeed = 5;
}
_local2.onEnterFrame = coalEnterFrame;
}
function coalEnterFrame() {
this._y = this._y + this.speed;
this._x = this._x + this.cxspeed;
this.speed = this.speed + 0.2;
this._rotation++;
if ((this._x < snowball_bounds.xMin) || (this._x > snowball_bounds.xMax)) {
this.cxspeed = this.cxspeed * -1;
} else if ((this._y < snowball_bounds.yMin) || (this._y > snowball_bounds.yMax)) {
this.removeMovieClip();
}
if (this.hitTest(_root.machine_mc)) {
dinkSound();
_global.score = _global.score - 25;
this.removeMovieClip();
if (higraphics) {
var _local4 = attachMovie("minus25", ("minus25" + depth) + "_mc", (depth = depth + 7));
_local4._x = _root.machine_mc._x;
_local4._y = _root.machine_mc._y;
}
lives--;
if (lives == 0) {
loserSound();
_root.gotoAndStop(5);
}
}
}
function shootSound() {
shoot = new Sound(this);
shoot.attachSound("shoot.mp3");
shoot.start();
}
function raspberrySound() {
rasp = new Sound(this);
rasp.attachSound("bugger.wav");
rasp.start();
}
function urghSound() {
urgh = new Sound(this);
urgh.attachSound("urgh.wav");
urgh.start();
}
function dinkSound() {
dink = new Sound(this);
dink.attachSound("dink.wav");
dink.start();
}
function thumpSound() {
thump = new Sound(this);
thump.attachSound("thump.mp3");
thump.start();
}
function crashSound() {
crashed = new Sound(this);
crashed.attachSound("crash.wav");
crashed.start();
}
function hitSound() {
hitsound = new Sound(this);
hitsound.attachSound("hit.wav");
hitsound.start();
}
function popSound() {
popsound = new Sound(this);
popsound.attachSound("pop.wav");
popsound.start();
}
function chickenSound() {
chickensound = new Sound(this);
chickensound.attachSound("turkey.wav");
chickensound.start();
}
function loserSound() {
losersound = new Sound(this);
losersound.attachSound("loser.wav");
losersound.start();
}
function bellSound() {
bells = new Sound(this);
bells.attachSound("bells.aif");
bells.start();
}
function extralifeSound() {
extralife = new Sound(this);
extralife.attachSound("1up.wav");
extralife.start();
}
function hit1Sound() {
hitsound1 = new Sound(this);
hitsound1.attachSound("hit1.wav");
hitsound1.start();
}
function turkeystuckSound() {
turkeystuck = new Sound(this);
turkeystuck.attachSound("turkeystuck.wav");
turkeystuck.start();
}
function sunshineSound() {
sunshine = new Sound(this);
sunshine.attachSound("sunshine.wav");
sunshine.start();
sunshine.onSoundComplete = function () {
_root.gotoAndStop(10);
};
}
function dropTurkey() {
var _local2 = attachMovie("turkey", ("turkey" + depth) + "_mc", (depth = depth + 4));
_local2._x = _root.santa_mc._x;
_local2._y = _root.santa_mc._y;
_local2.gotoAndStop(2);
chickenSound();
_local2._width = 50;
_local2._height = 60;
if (_local2._x <= 1) {
_local2._x = 5;
} else if (_local2._x >= 597) {
_local2._x = 590;
}
_local2.speed = 1;
if (_root.machine_mc._x < _root.santa_mc._x) {
_local2.pxspeed = -5;
} else {
_local2.pxspeed = 5;
}
_local2.onEnterFrame = turkeyEnterFrame;
}
function turkeyEnterFrame() {
this._y = this._y + this.speed;
this._x = this._x + this.pxspeed;
this.speed = this.speed + 0.2;
this._rotation++;
if (this.hitTest(_root.machine_mc)) {
_root.launcher_mc.turkey_mc.gotoAndStop(2);
turkeyBlocked = true;
_global.score = _global.score + 50;
turkeystuckSound();
this.removeMovieClip();
}
if ((this._x < snowball_bounds.xMin) || (this._x > snowball_bounds.xMax)) {
this.pxspeed = this.pxspeed * -1;
} else if ((this._y < snowball_bounds.yMin) || (this._y > snowball_bounds.yMax)) {
this.removeMovieClip();
}
}
stop();
Mouse.hide();
var launcher_length = 40;
var santaspeed = -4;
var power_reduction = 6;
var gravity = 3;
var depth = 0;
var carspeed = 16;
_global.score = 0;
var timerCounter = 0;
var oldTime = getTimer();
var lives = 5;
var snowmanCount = 0;
var coalCount = 0;
var oldSeconds = 0;
var difficulty = 3;
var isSantaDead = false;
var timeOfDeath;
var expdelay = 10;
var numexplosions = 10;
var gameLive = true;
var turkeyBlocked = false;
if (_global.snow == true) {
var higraphics = true;
} else {
var higraphics = false;
}
if (_global.difficulty == "easy") {
var dropamount = 9;
} else if (_global.difficulty == "medium") {
var dropamount = 6;
} else if (_global.difficulty == "hard") {
var dropamount = 3;
}
snowball_bounds = {xMin:0, xMax:600, yMin:-300, yMax:400};
_root.santa_mc.onEnterFrame = function () {
if (isSantaDead == false) {
_root.santa_mc._x = _root.santa_mc._x + santaspeed;
if (_root.santa_mc._x > 650) {
santaspeed = santaspeed * -1;
_root.santa_mc._xscale = _root.santa_mc._xscale * -1;
}
if (_root.santa_mc._x < -50) {
santaspeed = santaspeed * -1;
_root.santa_mc._xscale = _root.santa_mc._xscale * -1;
}
} else if (((timeOfDeath + expdelay) < getTimer()) && (numexplosions > 1)) {
var _local2 = attachMovie("explosion", ("explosion" + depth) + "_mc", (i = i + 3));
var _local3 = Math.floor(Math.random() * 100);
if (santaspeed > 0) {
_local2._x = _root.santa_mc._x + _local3;
} else {
_local2._x = _root.santa_mc._x - _local3;
}
_local2._y = _root.santa_mc._y;
timeOfDeath = timeOfDeath + 200;
numexplosions--;
if (numexplosions == 1) {
sunshineSound();
_root.santa_mc._visible = false;
}
}
};
Frame 5
stop();
Mouse.show();
_root.score_txt.text = ("you scored " + _global.score) + " points";
_root.playagain_btn.onRelease = function () {
_root.gotoAndStop(1);
};
Frame 10
stop();
Mouse.show();
var contact = 0;
_root.score_txt.text = ("congratulations! you won \n you scored " + _global.score) + " points";
_root.viewhiscores_btn._visible = false;
_root.viewhiscores_btn.onRelease = function () {
_root.gotoAndStop(15);
};
_root.checkbox_mc.onRelease = function () {
if (this._currentframe == 1) {
this.gotoAndStop(2);
contact = 1;
} else {
this.gotoAndStop(1);
contact = 0;
}
};
_root.playagain_btn.onRelease = function () {
_root.gotoAndStop(1);
};
Selection.setFocus(_root.name_txt);
serverURL = "http://www.scenta.co.uk/minisites/flash/santaslay/";
_root.submit_btn.onRelease = function () {
lv = new LoadVars();
lvresponse = new LoadVars();
lv.onLoad = function (state) {
};
if (name_txt.text == "") {
} else {
lv.gameID = "slay";
lv.userID = name_txt.text;
lv.email = email_txt.text;
lv.score = _global.score;
lv.contact = contact;
lv.action = "addNew";
lv.sendAndLoad("http://www.scenta.co.uk/minisites/flash/santaslay/addscore.cfm", lvresponse, "POST");
result_txt.text = "Submitting...";
submit_btn._visible = false;
}
lvresponse.onLoad = function () {
if (this.result == "success") {
result_txt.text = "Hi-score added successfully";
_root.viewhiscores_btn._visible = true;
}
};
};
Frame 15
function updateScores() {
scores = new LoadVars();
scores.load("http://www.scenta.co.uk/minisites/flash/santaslay/getscores.cfm");
scores.onLoad = function () {
for (var prop in this) {
eval ("_root.hiscore_mc." + prop).text = this[prop];
}
};
}
_root.home_btn.onRelease = function () {
_root.gotoAndStop(1);
};
stop();
updateScores();
_root.viewfullhiscores_btn.onRelease = function () {
getURL ("http://www.scenta.co.uk/minisites/flash/santaslay/hiscore.cfm");
};
Symbol 18 MovieClip [bot] Frame 1
if (_global.snow == true) {
this._visible = true;
if (this._x > 597) {
this._x = 3;
}
if (this._x < 3) {
this._x = 597;
}
if (this._y < 3) {
this._y = 397;
}
if (this._y > 390) {
this._y = 3;
}
ZielX = random(4);
ZielY = random(4);
this._x = ZielX + this._x;
this._y = ZielY + this._y;
} else {
this._visible = false;
}
Symbol 18 MovieClip [bot] Frame 2
gotoAndPlay (1);
Symbol 25 MovieClip [present] Frame 1
stop();
Symbol 25 MovieClip [present] Frame 2
stop();
Symbol 25 MovieClip [present] Frame 3
stop();
Symbol 25 MovieClip [present] Frame 4
stop();
Symbol 28 MovieClip [redsplat] Frame 10
this.removeMovieClip();
Symbol 31 MovieClip [splat] Frame 10
this.removeMovieClip();
Symbol 35 MovieClip [minus25] Frame 20
this.removeMovieClip();
Symbol 38 MovieClip [extralife] Frame 20
this.removeMovieClip();
Symbol 41 MovieClip [plus50] Frame 20
this.removeMovieClip();
Symbol 44 MovieClip [explosion] Frame 20
this.removeMovieClip();
Symbol 78 MovieClip [snowman] Frame 1
stop();
Symbol 78 MovieClip [snowman] Frame 2
stop();
Symbol 87 MovieClip [turkey] Frame 1
stop();
Symbol 87 MovieClip [turkey] Frame 2
stop();
Symbol 87 MovieClip [turkey] Frame 3
stop();
Symbol 87 MovieClip [turkey] Frame 4
stop();
Symbol 87 MovieClip [turkey] Frame 5
stop();
Symbol 87 MovieClip [turkey] Frame 6
stop();
Symbol 87 MovieClip [turkey] Frame 7
stop();
Symbol 87 MovieClip [turkey] Frame 8
stop();
Symbol 87 MovieClip [turkey] Frame 9
stop();
Symbol 87 MovieClip [turkey] Frame 10
stop();
Symbol 87 MovieClip [turkey] Frame 11
stop();
Symbol 108 MovieClip Frame 1
stop();
Symbol 108 MovieClip Frame 2
stop();
Symbol 113 MovieClip Frame 1
stop();
Symbol 113 MovieClip Frame 2
stop();