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

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

Darts.swf

This is the info page for
Flash #24060

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


Text
L

LOADING

STORAGE

-

00000

00000

Darts

Play

Play

How to play

How to play

www.terrypaton.com

www.terrypaton.com

Your highest score:

Darts

Player

Aiming for

SCORE

Computer

Shots taken

0

0

0

0

0

0

DARTSHOLDER

DARTSHOLDER

shadowHolder

MUSIC:

oN

off

PRESS SPACE TO TOGGLE MUSIC

GAME OVER

The computer beat you.

Final Score

Score:

0

0

Bonus:

500

0

Enter your name
in the highscores

type your name

(MAXIMUM 15 LETTERS)

CLICK TO SUBMIT

CLICK TO SUBMIT

Main Menu

Main Menu

In this version of darts you play the computer, each player
takes turns to throw 3 darts and is required to throw a dart
in every segment starting from 1 up to 20 and then to finish
with the 25 and bullseye.  Players must start with 1 and
cannot proceed to the next number until a dart has been
successfully thrown at the current target segment.  You score
the points of a succesful target, and getting a double or a
triple will boost your score.  First player to hit all the targets
and then finish with the bullseye wins.
First move your mouse into the horixontal position you want,
then click and hold the mouse button. When the power bar is
at the amount you want, release the mouse button.

How to play

Controls

ActionScript [AS1/AS2]

Frame 1
function gameMenu(menu, obj) { getURL (_root.authorsSite, "_blank"); } this._lockroot = true; var gameName = "darts"; vNum = "Version 1.0 b-7"; flashVersionsNeeded = 8; legalDomain = "http://www.terrypaton.com"; authorName = "Terry Paton"; authorContact = "terry@terrypaton.com"; authorsSite = "http://www.terrypaton.com"; gameLocation = _root._url.substr(0, legalDomain.length); gameQuality = "AUTO"; var menu_cm = new ContextMenu(); menu_cm.customItems.push(new ContextMenuItem(authorsSite, gameMenu)); menu_cm.hideBuiltInItems(); _root.menu = menu_cm; this._lockroot = true; if (gameLocation != legalDomain) { }
Frame 2
loadingClip.onLoad = function () { }; loadingClip.onEnterFrame = function () { pL = Math.floor((this._parent.getBytesLoaded() / this._parent.getBytesTotal()) * 100); if (pL < 100) { this.mask._xscale = (pL / 100) * 100; this._parent.stop(); } else { i = 0; while (i < stringLength) { removeMovieClip(eval ("loadingHolder.l" + i)); i++; } this._parent.play(); } }; wordString = "DARTS"; stringLength = wordString.length; wordOffset = (stringLength * 20) / 2; this.createEmptyMovieClip("loadingHolder", 1); loadingHolder._x = (320 - wordOffset) + 10; loadingHolder._y = 175; i = 0; while (i < stringLength) { loadingHolder.attachMovie("letter", "l" + i, i); eval ("loadingHolder.l" + i)._x = i * 20; eval ("loadingHolder.l" + i)._y = 0; eval ("loadingHolder.l" + i).angle = i; eval ("loadingHolder.l" + i).Lvar.text = wordString.charAt(i); i++; } stop();
Frame 4
function attachSoundFromLibrary(idname) { var _local2 = new Sound(this); _local2.attachSound(idname); return(_local2); } dartsStorage = SharedObject.getLocal("dartsStore"); yourhigh = dartsStorage.data.myhighscore; trace(yourhigh); if (yourhigh == undefined) { trace("yo"); dartsStorage.data.myhighscore = 0; yourhigh = 0; dartsStorage.flush(); } musicstate = dartsStorage.data.musicsetting; if ((musicstate == undefined) || (musicstate == 2)) { musicstate = 1; dartsStorage.data.musicsetting = 1; } var dartHit1 = attachSoundFromLibrary("dartHit1.wav"); var dartHit2 = attachSoundFromLibrary("dartHit2.wav"); var dartHit3 = attachSoundFromLibrary("dartHit3.wav"); var dartHit4 = attachSoundFromLibrary("dartHit4.wav"); var throwDartSnd1 = attachSoundFromLibrary("throwDart1.wav"); var throwDartSnd2 = attachSoundFromLibrary("throwDart2.wav"); var throwDartSnd3 = attachSoundFromLibrary("throwDart3.wav"); var missBoardSnd1 = attachSoundFromLibrary("missBoard.wav"); var missBoardSnd2 = attachSoundFromLibrary("missBoard2.wav"); var missBoardSnd3 = attachSoundFromLibrary("missBoard3.wav"); var cheeringCrowd = attachSoundFromLibrary("cheeringCrowd.wav"); var booCrowd = attachSoundFromLibrary("booCrowd.wav"); var targetHitSnd = attachSoundFromLibrary("targetHit.wav"); var musicSnd = attachSoundFromLibrary("musicSnd.wav");
Frame 5
if (false) { }
Frame 6
if (false) { }
Frame 18
playBtn.onRelease = function () { gotoAndPlay (20); }; howToBtn.onRelease = function () { gotoAndPlay (61); }; websiteBtn.onRelease = function () { getURL ("http://www.terrypaton.com", "_blank"); };
Frame 19
stop();
Frame 20
function calcScore() { this.shadowHolder.attachMovie("dartHole", "dh" + dartHoleNum, dartHoleNum); with (eval ("this.shadowHolder.dh" + dartHoleNum)) { _x = eval ("dart" + dartNum)._x; _y = eval ("dart" + dartNum)._y; gotoAndStop(random(5) + 1); } dartHoleNum++; px = dartBoardCenterX - eval ("dart" + dartNum)._x; py = dartBoardCenterY - eval ("dart" + dartNum)._y; radians = Math.atan2(py, px); rotVal = (radians * 180) / Math.PI; dx = px; dy = py; dist = Math.floor(Math.sqrt((dx * dx) + (dy * dy))); missedBoard = false; missedTargets = false; hitBullseye = false; hitDouble = false; hitTriple = false; if (dist > 94) { missedTargets = true; } if (dist > 118) { trace("you missed the board"); missedBoard = true; switch (random(3)) { case 0 : missBoardSnd1.start(); case 1 : missBoardSnd2.start(); break; case 2 : missBoardSnd3.start(); break; default : missBoardSnd1.start(); } } else { switch (random(4)) { case 0 : dartHit1.start(); case 1 : dartHit2.start(); break; case 2 : dartHit3.start(); break; case 3 : dartHit4.start(); break; default : dartHit1.start(); } } if (dist < 5) { trace("you hit a bullseye!"); hitBullseye = true; } if ((dist > 4) && (dist < 10)) { trace("you hit an outer bullseye!"); hitouterBullseye = true; } if ((dist > 84) && (dist < 95)) { trace("you got a double"); hitDouble = true; } if ((dist > 48) && (dist < 54)) { trace("you got a triple"); hitTriple = true; } youHit = 0; if (rotVal < 0) { angleWithin = Math.floor((rotVal + 8) / 18); } else { angleWithin = Math.floor((rotVal - 8) / 18); } dx = eval ("dart" + dartNum)._x; dy = eval ("dart" + dartNum)._y; if ((((!missedTargets) && (!missedBoard)) && (!hitBullseye)) && (!hitouterBullseye)) { i = 1; while (i < 21) { if (eval ("hitSpot." + i).hitTest(dx, dy, true)) { trace("hit number " + i); youHit = i; } i++; } } if (whosturn == "computer") { if (youHit == computerTarget) { targetHitSnd.start(); compScoreAlert.gotoAndPlay(1); computerTarget++; tempScore = 0; if (hitBullseye) { tempScore = tempScore + 50; } else if (hitouterBullseye) { tempScore = tempScore + 25; } else if (youHit > 0) { tempScore = tempScore + youHit; if (hitDouble) { tempScore = tempScore + youHit; attachMovie("tellPlayerClip", "tellPlayer2", 1001); tellPlayer2._x = 320; tellPlayer2._y = 240; tellPlayer2.clip.textBox.text = "Hits a double!"; } if (hitTriple) { tempScore = tempScore + (youHit + youHit); attachMovie("tellPlayerClip", "tellPlayer2", 1001); tellPlayer2._x = 320; tellPlayer2._y = 240; tellPlayer2.clip.textBox.text = "Hits a triple!"; } } computerScore = computerScore + tempScore; } } else if (youHit == playerTarget) { targetHitSnd.start(); playerScoreAlert.gotoAndPlay(1); playerTarget++; tempScore = 0; if (hitBullseye) { tempScore = tempScore + 50; } else if (hitouterBullseye) { tempScore = tempScore + 25; } else if (youHit > 0) { tempScore = tempScore + youHit; if (hitDouble) { attachMovie("tellPlayerClip", "tellPlayer2", 1001); tellPlayer2._x = 320; tellPlayer2._y = 240; tellPlayer2.clip.textBox.text = "You hit a double!"; tempScore = tempScore + youHit; } if (hitTriple) { tempScore = tempScore + (youHit + youHit); attachMovie("tellPlayerClip", "tellPlayer2", 1001); tellPlayer2._x = 320; tellPlayer2._y = 240; tellPlayer2.clip.textBox.text = "You hit a triple!"; } } score = score + tempScore; } gameState = "next dart"; } function computerAim() { powerAmount = 51; computerX = 320; powerAmount = random(39) + 30; computerX = random(200) + 220; aimFor = computerTarget; aimdegrees = computerAimArray[aimFor]; aimdegrees = aimdegrees + (random(16) - 8); trace(aimdegrees); distanceFromCenter = 20 + random(75); tmpAngle = (aimdegrees * Math.PI) / 180; bx = distanceFromCenter * Math.cos(tmpAngle); by = distanceFromCenter * Math.sin(tmpAngle); trace("by = " + by); powerAmount = (52 + ((by / 90) * 17)) + (random(6) - 3); computerX = 320 + bx; trace(testY); currentMouse = 630; } computerAimArray = new Array(0, 72.5, -54, -90, 36, 108, 0, -127, -163, 144, -18, -180, 126, 17, 163, -36, -144, -73, 54, -108, 90); function setup() { startPower = false; trace("musicstate = " + musicstate); if (musicstate == 1) { musicSnd.start(0, 100); } else { on_off.gotoAndStop(2); } compShotsTaken = 0; playerShotsTaken = 0; playerTarget = 1; computerTarget = 1; dartHoleNum = 50; roundNumber = 1; round1Score = 0; round2Score = 0; round3Score = 0; compRound1Score = 0; compRound2Score = 0; compRound3Score = 0; computerScore = 0; score = 0; lastPower = 0; dartBoardCenterX = 320; dartBoardCenterY = 207; gravity = 3; angle = 300; dartspeed = 5; draggingY = false; draggingX = true; pwrDir = "up"; pwrMove = 2; maxPwr = 100; whosturn = "player"; onMouseDown = function () { if ((gameState == "playing") && (whosturn == "player")) { powerAmount = 0; startYMouse = 370; startXMouse = _xmouse; draggingX = false; draggingY = true; attachMovie("powerBar", "powerBar", 900); powerBar._x = startXMouse - 40; powerBar._y = 370; powerBar._yscale = 100; startPower = true; } }; onMouseUp = function () { if (((startPower == true) && (gameState == "playing")) && (whosturn == "player")) { gameState = "start throw"; playerShotsTaken++; startPower = false; } }; websiteBtn.onRelease = function () { getURL ("http://www.terrypaton.com", "_blank"); }; var _local1 = new Object(); _local1.onKeyDown = function () { trace("sdfdfg"); if (gameState == "playing") { if (!(Key.getCode() === 32)) { } else { trace("jump"); if (musicstate == 1) { musicstate = 0; dartsStorage.data.musicsetting = 0; trace("music off"); musicSnd.stop(); on_off.gotoAndStop(2); } else { trace("music on"); musicstate = 1; dartsStorage.data.musicsetting = 1; musicSnd.start(0, 100); on_off.gotoAndStop(1); } } } }; Key.addListener(_local1); } function convertToRadians(tempAngle) { return((tempAngle * Math.PI) / 180); } gameState = "setup"; onEnterFrame = function () { switch (gameState) { case "setup" : setup(); gameState = "start next round"; return; case "playing" : if (whosturn == "player") { if (draggingX) { currentMouse = _xmouse; if (currentMouse < 50) { currentMouse = 50; } else if (currentMouse > 590) { currentMouse = 590; } eval ("dart" + dartNum)._x = currentMouse; } if (draggingY) { if (pwrDir == "up") { powerAmount = powerAmount + pwrMove; if (powerAmount > maxPwr) { pwrDir = "down"; } } if (pwrDir == "down") { powerAmount = powerAmount - pwrMove; if (powerAmount < 1) { pwrDir = "up"; } } powerBar.pwrClip._yscale = powerAmount; powerBar.lastpwrClip._yscale = lastPower; } } else { if (currentMouse < computerX) { currentMouse = currentMouse + ((computerX - currentMouse) / 10); } if (currentMouse > computerX) { currentMouse = currentMouse - ((currentMouse - computerX) / 10); } eval ("dart" + dartNum)._x = currentMouse; if (Math.abs(computerX - currentMouse) < 1) { gameState = "start throw"; compShotsTaken++; } } return; case "start throw" : switch (random(3)) { case 0 : throwDartSnd1.start(); case 1 : throwDartSnd2.start(); break; case 2 : throwDartSnd3.start(); break; default : throwDartSnd1.start(); } lastPower = powerAmount; trace("powerAmount = " + powerAmount); attachMovie("throwndart", "dart" + dartNum, dartNum + 100); with (eval ("dart" + dartNum)) { gotoAndStop(dartPos); _x = currentMouse; _y = 400; } if (whosturn == "computer") { matrix = [-0.574, 1.43, 0.144, 0, 0, 0.426, 0.43, 0.144, 0, 0, 0.426, 1.43, -0.856, 0, 0, 0, 0, 0, 1, 0]; var filter = (new flash.filters.ColorMatrixFilter(matrix)); eval ("dart" + dartNum).cacheAsBitmap = true; eval ("dart" + dartNum).filters = new Array(filter); } shadowHolder.attachMovie("dartshadow", "dartshadow" + dartNum, dartNum); eval ("shadowHolder.dartshadow" + dartNum)._x = 500; eval ("shadowHolder.dartshadow" + dartNum)._y = 640; draggingX = true; draggingY = false; throwSpeed = 20; dartspeed = 16 + (powerAmount / 2); angle = 300; angle = 330 - (powerAmount / 5); centerScale = 480; removeMovieClip(powerBar); throwD = 0; gameState = "throwing dart"; dartX = 0; dartY = 400; eval ("dart" + dartNum).play(); return; case "throwing dart" : tmpAngle = _root.convertToRadians(angle); bx = dartspeed * Math.cos(tmpAngle); by = dartspeed * Math.sin(tmpAngle); angle = angle + gravity; if (angle > 360) { angle = angle - 360; } dartX = dartX + bx; dartY = dartY + by; eval ("dart" + dartNum)._y = dartY; if (eval ("dart" + dartNum)._y > 470) { eval ("dart" + dartNum)._y = 470; } with (eval ("shadowHolder.dartshadow" + dartNum)) { _y = eval ("dart" + dartNum)._y; _x = (eval ("dart" + dartNum)._x + 150) - (dartX / 4); _alpha = (dartX / 640) * 100; _xscale = (_yscale = 100 - (dartX / 12)); } eval ("dart" + dartNum)._xscale = (eval ("dart" + dartNum)._yscale = 100 - (dartX / 12)); powerLine.lineTo(dartX, dartY); if ((dartX > 600) || (dartY > 480)) { gameState = "find target"; eval ("shadowHolder.dartshadow" + dartNum)._alpha = 100; eval ("dart" + dartNum).stop(); } return; case "find target" : calcScore(); return; case "next dart" : if (whosturn == "computer") { if ((computerTarget > 20) || (playerTarget > 20)) { gameState = "game over"; return; } computerAim(); glowSpots.gotoAndStop(computerTarget); } else { glowSpots.gotoAndStop(playerTarget); } dartNum++; dartPos = random(26) + 1; attachMovie("helddart", "dart" + dartNum, dartNum + 100); eval ("dart" + dartNum).gotoAndStop(dartPos); eval ("dart" + dartNum)._x = -50; eval ("dart" + dartNum)._y = 370; var matrix = new Array(); if (dartNum >= 4) { gameState = "end of round"; } else { if (whosturn == "player") { remainingDarts.gotoAndStop(4 - dartNum); if (playerTarget > 20) { gameState = "game over"; return; } } else { matrix = [-0.574, 1.43, 0.144, 0, 0, 0.426, 0.43, 0.144, 0, 0, 0.426, 1.43, -0.856, 0, 0, 0, 0, 0, 1, 0]; var filter = (new flash.filters.ColorMatrixFilter(matrix)); eval ("dart" + dartNum).cacheAsBitmap = true; eval ("dart" + dartNum).filters = new Array(filter); compRemainingDarts.gotoAndStop(4 - dartNum); } draggingY = false; draggingX = true; pwrDir = "up"; gameState = "playing"; } return; case "end of round" : attachMovie("tellPlayerClip", "tellPlayer", 1000); tellPlayer._x = 320; tellPlayer._y = 390; tellPlayer.clip.textBox.text = "End of turn"; roundWaitCount = 60; if (whosturn == "player") { whosturn = "computer"; } else { whosturn = "player"; powerAmount = 0; roundNumber++; } gameState = "end of round wait"; return; case "end of round wait" : roundWaitCount--; if (roundWaitCount < 1) { i = 0; while (i < 10) { removeMovieClip(eval ("dart" + i)); removeMovieClip(eval ("shadowHolder.dartshadow" + i)); i++; } removeMovieClip(tellPlayer); gameState = "start next round"; } return; case "start next round" : attachMovie("tellPlayerClip", "tellPlayer", 1000); tellPlayer._x = 320; tellPlayer._y = 390; if (whosturn == "player") { glowSpots.gotoAndStop(playerTarget); dartNum = 0; playerScorePanel.gotoAndStop(roundNumber); remainingDarts.gotoAndStop(4 - dartNum); tellPlayer.clip.textBox.text = "Your Turn"; } else { glowSpots.gotoAndStop(computerTarget); tellPlayer.clip.textBox.text = "Computers Turn"; compScorePanel.gotoAndStop(roundNumber); compRemainingDarts.gotoAndStop(4 - dartNum); dartNum = 0; } roundStartCount = 60; gameState = "round start wait"; return; case "round start wait" : roundStartCount--; if (roundStartCount < 1) { removeMovieClip(tellPlayer); gameState = "next dart"; } return; case "game over" : computerWins = false; if (computerTarget > 20) { computerWins = true; } gameOverWait = 60; gameState = "game over wait"; return; case "game over wait" : gameOverWait--; if (gameOverWait < 1) { i = 0; while (i < 10) { removeMovieClip("dart" + i); i++; } gotoAndPlay (41); } return; case "lose life" : return; case "lose life wait" : return; } };
Frame 21
if (false) { }
Frame 40
stop();
Frame 41
function goMain() { gotoAndPlay (5); } delete gameState; musicSnd.stop(); playerShotsTaken = 12; bonusEquation = ("500 - (" + playerShotsTaken) + " Throws x 20)"; if (computerWins) { BonusPoints = 0; } else { BonusPoints = 500 - (playerShotsTaken * 20); } if (BonusPoints < 0) { BonusPoints = 0; } finalScore = score + BonusPoints; if ((finalScore > yourhigh) || (playerScore > 2000)) { yourhigh = finalScore; dartsStorage.data.myhighscore = finalScore; if (gameLocation == legalDomain) { mainMenuBtn._x = 500; enterHigh._visible = true; } else { enterHigh._visible = false; mainMenuBtn._x = 320; } } else { enterHigh._visible = false; mainMenuBtn._x = 320; } if (computerWins) { bonusClip._visible = false; winMessage = "The computer beat you."; booCrowd.start(); } else { winMessage = "You beat the computer!"; cheeringCrowd.start(); }
Frame 60
stop();
Frame 61
mainMenuBtn.onRelease = function () { gotoAndPlay (5); };
Frame 68
stop();
Symbol 266 MovieClip [__Packages.letterClass] Frame 0
class letterClass extends MovieClip { var centerY, radiusY, speed, y, _y, x, _x, angle; function letterClass () { super(); } function onLoad() { centerY = 48; radiusY = 5; speed = 0.05; y = _y; x = _x; } function onEnterFrame() { if (angle != undefined) { y = centerY + (Math.sin(angle) * radiusY); angle = angle + speed; _x = x; _y = y; } } }
Symbol 13 MovieClip [letter] Frame 1
#initclip 2 Object.registerClass("letter", letterClass); #endinitclip
Symbol 137 MovieClip [tellPlayerClip] Frame 79
stop();
Symbol 153 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 1
_root.stop();
Symbol 159 MovieClip Frame 75
_root.play();
Symbol 187 MovieClip Frame 26
stop();
Symbol 200 MovieClip Frame 17
stop();
Symbol 216 MovieClip Frame 4
stop();
Symbol 218 MovieClip Frame 4
stop();
Symbol 224 MovieClip Frame 1
stop();
Symbol 232 MovieClip Frame 1
stop();
Symbol 256 Button
on (release) { sendHighscore(); }
Symbol 257 MovieClip [highscore_entry] Frame 1
function sendHighscore() { if (!submitted) { if ((typeYourName != "type your name") && (typeYourName != "t")) { tempName = ""; i = 0; while (i < typeYourName.length) { if (((typeYourName.charAt(i) == ",") || (typeYourName.charAt(i) == "%")) || (typeYourName.charAt(i) == "&")) { } else { tempName = tempName + typeYourName.charAt(i); } i++; } submitURL = (((("http://www.terrypaton.com/highscores/testScore.php?game=" + _root.gameName) + "&score=") + _root.finalScore) + "&name=") + tempName; loadVariablesNum (submitURL, 0, "GET"); _root.mainMenu(); this.gotoAndPlay("loadingResult"); this._visible = false; submitted = true; } } } typeYourName = "type your name"; nameEntry.onSetFocus = function () { this.text = ""; }; nameEntry.onKillFocus = function () { if (this.text == "") { this.text = "type your name"; } }; _root.yourPos = undefined; submitted = false;
Symbol 257 MovieClip [highscore_entry] Frame 5
stop();
Symbol 260 Button
on (release) { _root.goMain(); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip [dot]Uses:1
Symbol 3 GraphicUsed by:Timeline
Symbol 266 MovieClip [__Packages.letterClass]
Symbol 4 GraphicUsed by:10
Symbol 5 GraphicUsed by:6 76
Symbol 6 MovieClipUses:5Used by:10
Symbol 7 GraphicUsed by:9
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:7 8Used by:10
Symbol 10 MovieClipUses:4 6 9Used by:Timeline
Symbol 11 FontUsed by:12
Symbol 12 EditableTextUses:11Used by:13
Symbol 13 MovieClip [letter]Uses:12Used by:153  Timeline
Symbol 14 FontUsed by:15 228
Symbol 15 TextUses:14Used by:Timeline
Symbol 16 FontUsed by:17
Symbol 17 EditableTextUses:16Used by:153
Symbol 18 BitmapUsed by:19 22
Symbol 19 GraphicUses:18Used by:20
Symbol 20 MovieClipUses:19Used by:21
Symbol 21 MovieClip [dartshadow]Uses:20Used by:153
Symbol 22 GraphicUses:18Used by:73
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:73
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:73
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:73
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:73
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:73
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:73
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:73
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:73
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:73
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:73
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:73
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:73
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:73
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:73
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:73
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:73
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:73
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:73
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:73
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:73
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:73
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:73
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:73
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:73
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:73
Symbol 73 MovieClip [helddart]Uses:22 24 26 28 30 32 34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70 72Used by:153
Symbol 74 GraphicUsed by:78
Symbol 75 GraphicUsed by:78
Symbol 76 MovieClipUses:5Used by:78
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClip [powerBar]Uses:74 75 76 77Used by:153
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:131
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:131
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:131
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:131
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:131
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:131
Symbol 91 BitmapUsed by:92
Symbol 92 GraphicUses:91Used by:131
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:131
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:131
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:131
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:131
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:131
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:131
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:131
Symbol 107 BitmapUsed by:108
Symbol 108 GraphicUses:107Used by:131
Symbol 109 BitmapUsed by:110
Symbol 110 GraphicUses:109Used by:131
Symbol 111 BitmapUsed by:112
Symbol 112 GraphicUses:111Used by:131
Symbol 113 BitmapUsed by:114
Symbol 114 GraphicUses:113Used by:131
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:131
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:131
Symbol 119 BitmapUsed by:120
Symbol 120 GraphicUses:119Used by:131
Symbol 121 BitmapUsed by:122
Symbol 122 GraphicUses:121Used by:131
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:131
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:131
Symbol 127 BitmapUsed by:128
Symbol 128 GraphicUses:127Used by:131
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:131
Symbol 131 MovieClip [throwndart]Uses:80 82 84 86 88 90 92 94 96 98 100 102 104 106 108 110 112 114 116 118 120 122 124 126 128 130Used by:153
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:136
Symbol 134 FontUsed by:135 166 194 206 207 208 209 210 211
Symbol 135 EditableTextUses:134Used by:136
Symbol 136 MovieClipUses:133 135Used by:137
Symbol 137 MovieClip [tellPlayerClip]Uses:136Used by:153
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:140
Symbol 140 MovieClip [dartHole]Uses:139Used by:153
Symbol 141 Sound [missBoard.wav]Used by:153
Symbol 142 Sound [missBoard2.wav]Used by:153
Symbol 143 Sound [missBoard3.wav]Used by:153
Symbol 144 Sound [dartHit1.wav]Used by:153
Symbol 145 Sound [dartHit2.wav]Used by:153
Symbol 146 Sound [dartHit3.wav]Used by:153
Symbol 147 Sound [dartHit4.wav]Used by:153
Symbol 148 Sound [throwDart1.wav]Used by:153
Symbol 149 Sound [throwDart2.wav]Used by:153
Symbol 150 Sound [throwDart3.wav]Used by:153
Symbol 151 Sound [targetHit.wav]Used by:153
Symbol 152 Sound [musicSnd.wav]Used by:153
Symbol 153 MovieClipUses:17 21 73 13 78 131 137 140 141 142 143 144 145 146 147 148 149 150 151 152Used by:Timeline
Symbol 154 GraphicUsed by:159
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:155Used by:159 227  Timeline
Symbol 157 GraphicUsed by:159 225
Symbol 158 SoundUsed by:159
Symbol 159 MovieClipUses:154 156 157 158 SS1Used by:Timeline
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:Timeline
Symbol 162 FontUsed by:163 167 169 176 178 185 201 202 203 204 205 236 237 238 239 240 241 242 243 244 258 259 263 264
Symbol 163 EditableTextUses:162Used by:Timeline
Symbol 164 FontUsed by:165
Symbol 165 EditableTextUses:164Used by:Timeline
Symbol 166 TextUses:134Used by:Timeline
Symbol 167 TextUses:162Used by:174
Symbol 168 GraphicUsed by:174
Symbol 169 TextUses:162Used by:174
Symbol 170 GraphicUsed by:174
Symbol 171 GraphicUsed by:174
Symbol 172 SoundUsed by:174 179 227 260 265
Symbol 173 SoundUsed by:174 179 227 260 265
Symbol 174 ButtonUses:167 168 169 170 171 172 173Used by:Timeline
Symbol 175 GraphicUsed by:179 260 265
Symbol 176 TextUses:162Used by:179
Symbol 177 GraphicUsed by:179 260 265
Symbol 178 TextUses:162Used by:179
Symbol 179 ButtonUses:175 176 177 178 172 173Used by:Timeline
Symbol 180 FontUsed by:181 182
Symbol 181 TextUses:180Used by:184
Symbol 182 TextUses:180Used by:184
Symbol 183 GraphicUsed by:184
Symbol 184 ButtonUses:181 182 183Used by:Timeline
Symbol 185 TextUses:162Used by:Timeline
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:186Used by:Timeline
Symbol 188 GraphicUsed by:Timeline
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189Used by:191
Symbol 191 MovieClipUses:190Used by:Timeline
Symbol 192 BitmapUsed by:193 235
Symbol 193 GraphicUses:192Used by:Timeline
Symbol 194 TextUses:134Used by:Timeline
Symbol 195 GraphicUsed by:198
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:196Used by:198
Symbol 198 MovieClipUses:195 197Used by:Timeline
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:199Used by:Timeline
Symbol 201 TextUses:162Used by:Timeline
Symbol 202 TextUses:162Used by:Timeline
Symbol 203 TextUses:162Used by:Timeline
Symbol 204 TextUses:162Used by:Timeline
Symbol 205 TextUses:162Used by:Timeline
Symbol 206 EditableTextUses:134Used by:Timeline
Symbol 207 EditableTextUses:134Used by:Timeline
Symbol 208 EditableTextUses:134Used by:Timeline
Symbol 209 EditableTextUses:134Used by:Timeline
Symbol 210 EditableTextUses:134Used by:Timeline
Symbol 211 EditableTextUses:134Used by:Timeline
Symbol 212 FontUsed by:213 217 219
Symbol 213 EditableTextUses:212Used by:216
Symbol 214 BitmapUsed by:215
Symbol 215 GraphicUses:214Used by:216 218
Symbol 216 MovieClipUses:213 215Used by:Timeline
Symbol 217 EditableTextUses:212Used by:218
Symbol 218 MovieClipUses:217 215Used by:Timeline
Symbol 219 EditableTextUses:212Used by:220
Symbol 220 MovieClipUses:219Used by:Timeline
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:221Used by:223
Symbol 223 MovieClipUses:222Used by:224
Symbol 224 MovieClipUses:223Used by:Timeline
Symbol 225 MovieClipUses:157Used by:227
Symbol 226 Graphic
Symbol 227 ButtonUses:156 225 172 173Used by:Timeline
Symbol 228 TextUses:14Used by:Timeline
Symbol 229 FontUsed by:230 231
Symbol 230 TextUses:229Used by:232
Symbol 231 TextUses:229Used by:232
Symbol 232 MovieClipUses:230 231Used by:Timeline
Symbol 233 FontUsed by:234 249 262
Symbol 234 TextUses:233Used by:Timeline
Symbol 235 GraphicUses:192Used by:Timeline
Symbol 236 TextUses:162Used by:Timeline
Symbol 237 EditableTextUses:162Used by:Timeline
Symbol 238 TextUses:162Used by:Timeline
Symbol 239 TextUses:162Used by:Timeline
Symbol 240 EditableTextUses:162Used by:Timeline
Symbol 241 EditableTextUses:162Used by:Timeline
Symbol 242 TextUses:162Used by:245
Symbol 243 EditableTextUses:162Used by:245
Symbol 244 EditableTextUses:162Used by:245
Symbol 245 MovieClipUses:242 243 244Used by:Timeline
Symbol 246 GraphicUsed by:257
Symbol 247 FontUsed by:248
Symbol 248 TextUses:247Used by:257
Symbol 249 EditableTextUses:233Used by:257
Symbol 250 FontUsed by:251
Symbol 251 TextUses:250Used by:257
Symbol 252 FontUsed by:253 254
Symbol 253 TextUses:252Used by:256
Symbol 254 TextUses:252Used by:256
Symbol 255 GraphicUsed by:256
Symbol 256 ButtonUses:253 254 255Used by:257
Symbol 257 MovieClip [highscore_entry]Uses:246 248 249 251 256Used by:Timeline
Symbol 258 TextUses:162Used by:260 265
Symbol 259 TextUses:162Used by:260 265
Symbol 260 ButtonUses:175 258 177 259 172 173Used by:Timeline
Symbol 261 Font
Symbol 262 TextUses:233Used by:Timeline
Symbol 263 TextUses:162Used by:Timeline
Symbol 264 TextUses:162Used by:Timeline
Symbol 265 ButtonUses:175 258 177 259 172 173Used by:Timeline
Streaming Sound 1Used by:Symbol 159 MovieClip

Instance Names

"loadingClip"Frame 2Symbol 10 MovieClip
"playBtn"Frame 5Symbol 174 Button
"howToBtn"Frame 5Symbol 179 Button
"websiteBtn"Frame 5Symbol 184 Button
"hitSpot"Frame 20Symbol 191 MovieClip
"playerScoreAlert"Frame 20Symbol 200 MovieClip
"compScoreAlert"Frame 20Symbol 200 MovieClip
"remainingDarts"Frame 20Symbol 216 MovieClip
"compRemainingDarts"Frame 20Symbol 218 MovieClip
"shadowHolder"Frame 20Symbol 220 MovieClip
"glowSpots"Frame 20Symbol 224 MovieClip
"websiteBtn"Frame 20Symbol 227 Button
"on_off"Frame 20Symbol 232 MovieClip
"bonusClip"Frame 41Symbol 245 MovieClip
"enterHigh"Frame 41Symbol 257 MovieClip [highscore_entry]
"mainMenuBtn"Frame 41Symbol 260 Button
"websiteBtn"Frame 41Symbol 227 Button
"mainMenuBtn"Frame 61Symbol 265 Button
"mask"Symbol 10 MovieClip Frame 1Symbol 6 MovieClip
"Lvar"Symbol 13 MovieClip [letter] Frame 1Symbol 12 EditableText
"shadClip"Symbol 21 MovieClip [dartshadow] Frame 1Symbol 20 MovieClip
"pwrClip"Symbol 78 MovieClip [powerBar] Frame 1Symbol 76 MovieClip
"lastpwrClip"Symbol 78 MovieClip [powerBar] Frame 1Symbol 76 MovieClip
"textBox"Symbol 136 MovieClip Frame 1Symbol 135 EditableText
"clip"Symbol 137 MovieClip [tellPlayerClip] Frame 1Symbol 136 MovieClip
"12"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"5"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"20"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"1"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"9"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"16"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"8"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"11"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"14"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"7"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"2"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"17"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"3"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"19"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"15"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"4"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"13"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"6"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"10"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"18"Symbol 191 MovieClip Frame 1Symbol 190 MovieClip
"1"Symbol 224 MovieClip Frame 1Symbol 223 MovieClip
"nameEntry"Symbol 257 MovieClip [highscore_entry] Frame 1Symbol 249 EditableText

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 2 as "dot"
ExportAssets (56)Timeline Frame 1Symbol 266 as "__Packages.letterClass"
ExportAssets (56)Timeline Frame 2Symbol 13 as "letter"
ExportAssets (56)Timeline Frame 3Symbol 21 as "dartshadow"
ExportAssets (56)Timeline Frame 3Symbol 73 as "helddart"
ExportAssets (56)Timeline Frame 3Symbol 78 as "powerBar"
ExportAssets (56)Timeline Frame 3Symbol 131 as "throwndart"
ExportAssets (56)Timeline Frame 3Symbol 137 as "tellPlayerClip"
ExportAssets (56)Timeline Frame 3Symbol 140 as "dartHole"
ExportAssets (56)Timeline Frame 3Symbol 141 as "missBoard.wav"
ExportAssets (56)Timeline Frame 3Symbol 142 as "missBoard2.wav"
ExportAssets (56)Timeline Frame 3Symbol 143 as "missBoard3.wav"
ExportAssets (56)Timeline Frame 3Symbol 144 as "dartHit1.wav"
ExportAssets (56)Timeline Frame 3Symbol 145 as "dartHit2.wav"
ExportAssets (56)Timeline Frame 3Symbol 146 as "dartHit3.wav"
ExportAssets (56)Timeline Frame 3Symbol 147 as "dartHit4.wav"
ExportAssets (56)Timeline Frame 3Symbol 148 as "throwDart1.wav"
ExportAssets (56)Timeline Frame 3Symbol 149 as "throwDart2.wav"
ExportAssets (56)Timeline Frame 3Symbol 150 as "throwDart3.wav"
ExportAssets (56)Timeline Frame 3Symbol 151 as "targetHit.wav"
ExportAssets (56)Timeline Frame 3Symbol 152 as "musicSnd.wav"
ExportAssets (56)Timeline Frame 41Symbol 257 as "highscore_entry"
Tag 0x0FF (255)Timeline Frame 11 bytes "."

Dynamic Text Variables

tellPlayerTextSymbol 135 EditableText"-"
yourhighSymbol 163 EditableText"00000"
vNumSymbol 165 EditableText"00000"
playerTargetSymbol 206 EditableText"0"
playerShotsTakenSymbol 207 EditableText"0"
scoreSymbol 208 EditableText"0"
computerTargetSymbol 209 EditableText"0"
compShotsTakenSymbol 210 EditableText"0"
computerScoreSymbol 211 EditableText"0"
winMessageSymbol 237 EditableText"The computer beat you."
scoreSymbol 240 EditableText"0"
finalScoreSymbol 241 EditableText"0"
_root.BonusPointsSymbol 243 EditableText"500"
_root.bonusEquationSymbol 244 EditableText"0"
typeYourNameSymbol 249 EditableText"type your name"




http://swfchan.com/5/24060/info.shtml
Created: 2/9 -2023 15:41:50 Last modified: 2/9 -2023 15:41:50 Server time: 15/05 -2024 07:49:47