STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228113
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/63082729?noj=FRM63082729-9DC" width="1" height="1"></div>

651379093.swf

This is the info page for
Flash #13540

(Click the ID number above for more basic data on this flash file.)


Text
-25

extra
life

+50

name:

score:

1
2
3
4
5
6
7
8
9
10

santa

slay

play

play

how to play

how to play

hi scores

hi scores

turn off snow
(if game is too jerky)

difficulty

easy
medium
hard

© 2005 mobasher iqbal for scenta.co.uk

avoid hazards such as
coal, evil snowmen,
and flying turkeys

how to play

home

home

f g

use the snowball launcher to shoot snowballs at
santa's sleigh and pick up the presents he drops.
the arrow keys move the launcher left and right,
and the mouse is used to aim the snowballs.
the greater the distance from the crosshairs to
the launcher, the further your shot will go

every time you hit santa's sleigh,
his altitude will slightly decrease.
to win the game, you simply need
to crash santa's sleigh

collect any golden presents
that fall from santa's sleigh
to get an extra life

score:

0

lives:

0

you scored 0 points

play again

play again

to enter your score in the hi scores table, you need to
crash santa's sleigh

name:

email:

submit

submit

enter your details below to appear on
the hi-score table

view hi scores

view hi scores

cross here to hear about other
great new games and competitions

high
scores

full hi-score
list

full hi-score
list

ActionScript [AS1/AS2]

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();

Library Items

Symbol 1 Sound [urgh.wav]
Symbol 2 Sound [turkeystuck.wav]
Symbol 3 Sound [turkey.wav]
Symbol 4 Sound [thump.mp3]
Symbol 5 Sound [sunshine.wav]
Symbol 6 Sound [shoot.mp3]
Symbol 7 Sound [raspberry.wav]
Symbol 8 Sound [pop.wav]
Symbol 9 Sound [bugger.wav]
Symbol 10 Sound [loser.wav]
Symbol 11 Sound [hit1.wav]
Symbol 12 Sound [hit.wav]
Symbol 13 Sound [dink.wav]
Symbol 14 Sound [crash.wav]
Symbol 15 Sound [bells.aif]
Symbol 16 Sound [1up.wav]
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClip [bot]Uses:17
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClip [snowball]Uses:19
Symbol 21 GraphicUsed by:25
Symbol 22 GraphicUsed by:25
Symbol 23 GraphicUsed by:25
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClip [present]Uses:21 22 23 24
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:28
Symbol 28 MovieClip [redsplat]Uses:27
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:31
Symbol 31 MovieClip [splat]Uses:30
Symbol 32 FontUsed by:33 36 39
Symbol 33 TextUses:32Used by:34
Symbol 34 MovieClipUses:33Used by:35
Symbol 35 MovieClip [minus25]Uses:34
Symbol 36 TextUses:32Used by:37
Symbol 37 MovieClipUses:36Used by:38
Symbol 38 MovieClip [extralife]Uses:37
Symbol 39 TextUses:32Used by:40
Symbol 40 MovieClipUses:39Used by:41
Symbol 41 MovieClip [plus50]Uses:40
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:44
Symbol 44 MovieClip [explosion]Uses:43
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClip [champagne]Uses:45
Symbol 47 GraphicUsed by:73
Symbol 48 FontUsed by:49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 89 94 95 98 99 101 102 109 114 115 116 118 119 120 121 131 134 137 147 148 149 150 151 152 153 155 156 157 158 159 160 161 162 163 165 166 167 170 171 172 173
Symbol 49 TextUses:48Used by:73
Symbol 50 TextUses:48Used by:73
Symbol 51 EditableTextUses:48Used by:73
Symbol 52 EditableTextUses:48Used by:73
Symbol 53 EditableTextUses:48Used by:73
Symbol 54 EditableTextUses:48Used by:73
Symbol 55 EditableTextUses:48Used by:73
Symbol 56 EditableTextUses:48Used by:73
Symbol 57 EditableTextUses:48Used by:73
Symbol 58 EditableTextUses:48Used by:73
Symbol 59 EditableTextUses:48Used by:73
Symbol 60 EditableTextUses:48Used by:73
Symbol 61 EditableTextUses:48Used by:73
Symbol 62 EditableTextUses:48Used by:73
Symbol 63 EditableTextUses:48Used by:73
Symbol 64 EditableTextUses:48Used by:73
Symbol 65 EditableTextUses:48Used by:73
Symbol 66 EditableTextUses:48Used by:73
Symbol 67 EditableTextUses:48Used by:73
Symbol 68 EditableTextUses:48Used by:73
Symbol 69 EditableTextUses:48Used by:73
Symbol 70 EditableTextUses:48Used by:73
Symbol 71 TextUses:48Used by:72
Symbol 72 MovieClipUses:71Used by:73
Symbol 73 MovieClip [hiscore_mc]Uses:47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72Used by:Timeline
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClip [coal]Uses:74Used by:Timeline
Symbol 76 GraphicUsed by:78
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClip [snowman]Uses:76 77Used by:Timeline
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClip [crosshair]Uses:79Used by:Timeline
Symbol 81 GraphicUsed by:87
Symbol 82 GraphicUsed by:87
Symbol 83 GraphicUsed by:87
Symbol 84 GraphicUsed by:87
Symbol 85 GraphicUsed by:87
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClip [turkey]Uses:81 82 83 84 85 86Used by:124
Symbol 88 GraphicUsed by:Timeline
Symbol 89 TextUses:48Used by:91
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:89 90Used by:Timeline
Symbol 92 FontUsed by:93
Symbol 93 TextUses:92Used by:Timeline
Symbol 94 TextUses:48Used by:97
Symbol 95 TextUses:48Used by:97
Symbol 96 GraphicUsed by:97 100 103 122 154 164
Symbol 97 ButtonUses:94 95 96Used by:Timeline
Symbol 98 TextUses:48Used by:100
Symbol 99 TextUses:48Used by:100
Symbol 100 ButtonUses:98 99 96Used by:Timeline
Symbol 101 TextUses:48Used by:103
Symbol 102 TextUses:48Used by:103
Symbol 103 ButtonUses:101 102 96Used by:Timeline
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:Timeline
Symbol 106 GraphicUsed by:108
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:106 107Used by:Timeline
Symbol 109 TextUses:48Used by:Timeline
Symbol 110 GraphicUsed by:113
Symbol 111 GraphicUsed by:113
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:110 111 112Used by:Timeline
Symbol 114 TextUses:48Used by:Timeline
Symbol 115 TextUses:48Used by:Timeline
Symbol 116 TextUses:48Used by:Timeline
Symbol 117 GraphicUsed by:Timeline
Symbol 118 TextUses:48Used by:Timeline
Symbol 119 TextUses:48Used by:Timeline
Symbol 120 TextUses:48Used by:122
Symbol 121 TextUses:48Used by:122
Symbol 122 ButtonUses:120 121 96Used by:Timeline
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:123 87Used by:Timeline
Symbol 125 GraphicUsed by:128
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:128
Symbol 128 MovieClipUses:125 127Used by:Timeline
Symbol 129 FontUsed by:130
Symbol 130 TextUses:129Used by:Timeline
Symbol 131 TextUses:48Used by:Timeline
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:Timeline
Symbol 134 TextUses:48Used by:Timeline
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:135Used by:Timeline
Symbol 137 TextUses:48Used by:Timeline
Symbol 138 GraphicUsed by:Timeline
Symbol 139 GraphicUsed by:Timeline
Symbol 140 GraphicUsed by:Timeline
Symbol 141 GraphicUsed by:146
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:146
Symbol 144 GraphicUsed by:146
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:141 143 144 145Used by:Timeline
Symbol 147 TextUses:48Used by:Timeline
Symbol 148 EditableTextUses:48Used by:Timeline
Symbol 149 TextUses:48Used by:Timeline
Symbol 150 EditableTextUses:48Used by:Timeline
Symbol 151 EditableTextUses:48Used by:Timeline
Symbol 152 TextUses:48Used by:154
Symbol 153 TextUses:48Used by:154
Symbol 154 ButtonUses:152 153 96Used by:Timeline
Symbol 155 TextUses:48Used by:Timeline
Symbol 156 EditableTextUses:48Used by:Timeline
Symbol 157 EditableTextUses:48Used by:Timeline
Symbol 158 TextUses:48Used by:Timeline
Symbol 159 TextUses:48Used by:Timeline
Symbol 160 EditableTextUses:48Used by:Timeline
Symbol 161 EditableTextUses:48Used by:Timeline
Symbol 162 TextUses:48Used by:164
Symbol 163 TextUses:48Used by:164
Symbol 164 ButtonUses:162 163 96Used by:Timeline
Symbol 165 TextUses:48Used by:Timeline
Symbol 166 TextUses:48Used by:169
Symbol 167 TextUses:48Used by:169
Symbol 168 GraphicUsed by:169
Symbol 169 ButtonUses:166 167 168Used by:Timeline
Symbol 170 TextUses:48Used by:Timeline
Symbol 171 TextUses:48Used by:Timeline
Symbol 172 TextUses:48Used by:175
Symbol 173 TextUses:48Used by:175
Symbol 174 GraphicUsed by:175
Symbol 175 ButtonUses:172 173 174Used by:Timeline

Instance Names

"play_btn"Frame 1Symbol 97 Button
"howtoplay_btn"Frame 1Symbol 100 Button
"hiscores_btn"Frame 1Symbol 103 Button
"checkbox_mc"Frame 1Symbol 108 MovieClip
"medium_mc"Frame 1Symbol 113 MovieClip
"hard_mc"Frame 1Symbol 113 MovieClip
"easy_mc"Frame 1Symbol 113 MovieClip
"home_btn"Frame 2Symbol 122 Button
"crosshair_mc"Frame 3Symbol 80 MovieClip [crosshair]
"launcher_mc"Frame 3Symbol 124 MovieClip
"machine_mc"Frame 3Symbol 128 MovieClip
"santa_mc"Frame 3Symbol 146 MovieClip
"score_txt"Frame 3Symbol 148 EditableText
"lives_txt"Frame 3Symbol 150 EditableText
"score_txt"Frame 5Symbol 151 EditableText
"playagain_btn"Frame 5Symbol 154 Button
"result_txt"Frame 10Symbol 156 EditableText
"score_txt"Frame 10Symbol 157 EditableText
"name_txt"Frame 10Symbol 160 EditableText
"email_txt"Frame 10Symbol 161 EditableText
"submit_btn"Frame 10Symbol 164 Button
"viewhiscores_btn"Frame 10Symbol 169 Button
"checkbox_mc"Frame 10Symbol 108 MovieClip
"hiscore_mc"Frame 15Symbol 73 MovieClip [hiscore_mc]
"home_btn"Frame 15Symbol 122 Button
"viewfullhiscores_btn"Frame 15Symbol 175 Button
"NAME1"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 51 EditableText
"NAME2"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 52 EditableText
"NAME3"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 53 EditableText
"NAME4"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 54 EditableText
"NAME5"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 55 EditableText
"NAME6"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 56 EditableText
"NAME7"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 57 EditableText
"NAME8"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 58 EditableText
"NAME9"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 59 EditableText
"NAME10"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 60 EditableText
"SCORE1"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 61 EditableText
"SCORE2"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 62 EditableText
"SCORE3"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 63 EditableText
"SCORE4"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 64 EditableText
"SCORE5"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 65 EditableText
"SCORE6"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 66 EditableText
"SCORE7"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 67 EditableText
"SCORE8"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 68 EditableText
"SCORE9"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 69 EditableText
"SCORE10"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 70 EditableText
"scorenumbers_mc"Symbol 73 MovieClip [hiscore_mc] Frame 1Symbol 72 MovieClip
"turkey_mc"Symbol 124 MovieClip Frame 1Symbol 87 MovieClip [turkey]
"wheel1_mc"Symbol 128 MovieClip Frame 1Symbol 127 MovieClip
"wheel2_mc"Symbol 128 MovieClip Frame 1Symbol 127 MovieClip
"hitzone_mc"Symbol 146 MovieClip Frame 1Symbol 143 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$XT$FXs4YWkgPoVhsfND3wUQC.."
ExportAssets (56)Timeline Frame 1Symbol 1 as "urgh.wav"
ExportAssets (56)Timeline Frame 1Symbol 2 as "turkeystuck.wav"
ExportAssets (56)Timeline Frame 1Symbol 3 as "turkey.wav"
ExportAssets (56)Timeline Frame 1Symbol 4 as "thump.mp3"
ExportAssets (56)Timeline Frame 1Symbol 5 as "sunshine.wav"
ExportAssets (56)Timeline Frame 1Symbol 6 as "shoot.mp3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "raspberry.wav"
ExportAssets (56)Timeline Frame 1Symbol 8 as "pop.wav"
ExportAssets (56)Timeline Frame 1Symbol 9 as "bugger.wav"
ExportAssets (56)Timeline Frame 1Symbol 10 as "loser.wav"
ExportAssets (56)Timeline Frame 1Symbol 11 as "hit1.wav"
ExportAssets (56)Timeline Frame 1Symbol 12 as "hit.wav"
ExportAssets (56)Timeline Frame 1Symbol 13 as "dink.wav"
ExportAssets (56)Timeline Frame 1Symbol 14 as "crash.wav"
ExportAssets (56)Timeline Frame 1Symbol 15 as "bells.aif"
ExportAssets (56)Timeline Frame 1Symbol 16 as "1up.wav"
ExportAssets (56)Timeline Frame 1Symbol 18 as "bot"
ExportAssets (56)Timeline Frame 1Symbol 20 as "snowball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "present"
ExportAssets (56)Timeline Frame 1Symbol 28 as "redsplat"
ExportAssets (56)Timeline Frame 1Symbol 31 as "splat"
ExportAssets (56)Timeline Frame 1Symbol 35 as "minus25"
ExportAssets (56)Timeline Frame 1Symbol 38 as "extralife"
ExportAssets (56)Timeline Frame 1Symbol 41 as "plus50"
ExportAssets (56)Timeline Frame 1Symbol 44 as "explosion"
ExportAssets (56)Timeline Frame 1Symbol 46 as "champagne"
ExportAssets (56)Timeline Frame 1Symbol 73 as "hiscore_mc"
ExportAssets (56)Timeline Frame 1Symbol 75 as "coal"
ExportAssets (56)Timeline Frame 1Symbol 78 as "snowman"
ExportAssets (56)Timeline Frame 1Symbol 80 as "crosshair"
ExportAssets (56)Timeline Frame 1Symbol 87 as "turkey"
ExportAssets (56)Timeline Frame 2Symbol 87 as "turkey"
ExportAssets (56)Timeline Frame 2Symbol 80 as "crosshair"
ExportAssets (56)Timeline Frame 2Symbol 78 as "snowman"
ExportAssets (56)Timeline Frame 2Symbol 75 as "coal"
ExportAssets (56)Timeline Frame 3Symbol 80 as "crosshair"
ExportAssets (56)Timeline Frame 15Symbol 73 as "hiscore_mc"




http://swfchan.com/3/13540/info.shtml
Created: 4/6 -2019 16:50:37 Last modified: 4/6 -2019 16:50:37 Server time: 09/05 -2024 07:51:17