STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
A Very Merry Christmas! |
This is the info page for Flash #32603 |
2 0 0 3 |
Instructions |
Welcome to the game! The object of this game is to steal Cadny from the unsuspecting children of your neighborhood. You will take on the role of StarFruitClock as he wields his mighty EATER! With it you shall beat down the little kids and steil their cadny! The more candy you get the more points you will receive. Very simple, right? Well Biological Clock is patrolling the area in his Policaman Costume and he feels the need to play the role. He will try to stop you if he sees you trying to steal the candy. |
B |
Back |
Next |
B |
eater |
A |
S |
To play this game you will use only the arrow keys and the A and S keys. The arrow keys will move StarFruitClock in that direction. The A key will cause him to do a full swing of his bat. The S key will allow him to do a quuick overhead hit. The overhead hit is not as powerful as the Full Swing but you can preform it faster than the Full Swing. |
Try it! |
Previous |
B |
This is your greatest ally. This is you BioMeter! It will tell you where Bio is so that you don't get BUSTED! The green areas are safe zones and the yellow means that he is drawing nearer and the red means DON'T SWING THAT BAT!! So take care and if you pay attention to this meter you should be able to get lots of Candy! |
<P ALIGN="LEFT"><FONT FACE="Chiller" SIZE="92" COLOR="#990000"><B>B</B></FONT></P> |
<P ALIGN="LEFT"><FONT FACE="Chiller" SIZE="92" COLOR="#990000"><B>i</B></FONT></P> |
<P ALIGN="LEFT"><FONT FACE="Chiller" SIZE="92" COLOR="#990000"><B>o</B></FONT></P> |
<P ALIGN="LEFT"><FONT FACE="Chiller" SIZE="92" COLOR="#990000"><B>></B></FONT></P> |
<P ALIGN="LEFT"><FONT FACE="Chiller" SIZE="92" COLOR="#990000"><B>j</B></FONT></P> |
<P ALIGN="LEFT"><FONT FACE="Chiller" SIZE="92" COLOR="#990000"><B>o</B></FONT></P> |
<P ALIGN="LEFT"><FONT FACE="Chiller" SIZE="92" COLOR="#990000"><B>o</B></FONT></P> |
<P ALIGN="LEFT"><FONT FACE="Chiller" SIZE="92" COLOR="#990000"><B>i</B></FONT></P> |
Q |
Credits |
Programming: Me Concept: Inspired by Josh Bedn Steils Cadny Sound and Music: Remisser Art: Me |
Special Thanks |
BombClock GoldenClock AppleClock BiologicalClock Remisser NegativeONE Newgrounds The Clock Crew Pie Pi The Club-a-Club Club Macromedia And viewers like you! |
ActionScript [AS1/AS2]
Frame 1stopAllSounds(); Stage.showMenu = false;Instance of Symbol 23 MovieClip "preloader" in Frame 1onClipEvent (load) { _root.stop(); }Frame 2stop();Frame 3stop();Instance of Symbol 58 MovieClip "SFC" in Frame 3onClipEvent (load) { scale = this._xscale; swing = false; } onClipEvent (enterFrame) { if (Key.isDown(38)) { this.play(); } else if (Key.isDown(40)) { this.play(); } if (Key.isDown(39)) { this.play(); this._xscale = scale; } else if (Key.isDown(37)) { this.play(); this._xscale = -scale; } if ((((!Key.isDown(37)) && (!Key.isDown(38))) && (!Key.isDown(40))) && (!Key.isDown(39))) { this.gotoAndStop(1); } if (this.swing == false) { if (Key.isDown(65)) { this.bat.gotoAndStop(2); } if (Key.isDown(83)) { this.bat.gotoAndStop(3); } } if (Key.isDown(65) && (Key.isDown(83))) { } if (this.bat((GSwing._currentframe == 20) || (OSwing._currentframe == 20))) { _global.swing = false; } if (this.bat((OSwing._currentframe == 2) || (GSwing._currentframe == 2))) { swing = true; } }Frame 4stop();Frame 5stop(); _global.batHit = new Sound(); _global.batHit.attachSound("batHit"); _global.counterWalk = 8.5; _global.walkAdd = 0; _global.moveSpeed = 4; _global.CadnyScore = 0; _global.GoldCounter = 0; _global.BombCounter = 0; _global.AppleCounter = 0; _global.credits = false; _global.cry = new Sound(); _global.cry.attachSound("cry"); _global.collect = new Sound(); _global.collect.attachSound("collect");Instance of Symbol 118 MovieClip "bomb" in Frame 5onClipEvent (load) { startPoint = 3000; this._x = startPoint; this.swapDepths(20); norm = this._xscale; flip = this._xscale * -1; panic = false; myRand = function () { rand = Math.round(Math.random() * 10); }; setInterval(myRand, 1000); hit = false; myHealth = 100; } onClipEvent (enterFrame) { if ((myHealth > 0) && (myHealth <= 100)) { if (panic == false) { this._x = this._x - (moveSpeed + walkAdd); this._xscale = norm; } this.play(); if (((this.hitTest(_root.SFC.bat.GSwing) && (hit == false)) && (bombDistance >= -35)) && (bombDistance <= -5)) { myHealth = myHealth - 20; _global.cry.start(0, 0); batHit.start(0.3125, 0); hit = true; panic = true; if (direction == "left") { this._x = this._x - 25; } else if (direction == "right") { this._x = this._x + 25; } } else if (((this.hitTest(_root.SFC.bat.OSwing) && (hit == false)) && (bombDistance >= -35)) && (bombDistance <= -5)) { batHit.start(0.3125, 0); _global.cry.start(0, 0); myHealth = myHealth - 10; hit = true; panic = true; if (direction == "left") { this._x = this._x - 25; } else if (direction == "right") { this._x = this._x + 25; } } if (panic == true) { if (rand > 5) { this._x = this._x - ((moveSpeed * 2) + walkAdd); this._xscale = norm; } else { this._x = this._x + ((moveSpeed * 2) - walkAdd); this._xscale = flip; } } if (this._x <= -1000) { this._x = startPoint; myHealth = 100; panic = false; this._xscale = norm; } } else if (myHealth <= 0) { this.gotoAndPlay(20); myHealth = 101; _global.BombCounter++; } else { if (this._x < -500) { this._x = startPoint; myHealth = 100; panic = false; this._xscale = norm; } this._x = this._x - walkAdd; } }Instance of Symbol 124 MovieClip "apple" in Frame 5onClipEvent (load) { AtAtPanic = new Sound(); AtAtPanic.attachSound("AtAtPanic"); AtAt = new Sound(); AtAt.attachSound("AtAt"); startPoint = 1000; this._x = startPoint; this.swapDepths(10); norm = this._xscale; flip = this._xscale * -1; panic = false; myRand = function () { rand = Math.round(Math.random() * 10); }; setInterval(myRand, 1000); hit = false; myHealth = 100; soundPlay = false; soundPanic = false; } onClipEvent (enterFrame) { if (onScreen == false) { panic = false; } if ((this._x <= 700) && (this._x >= -90)) { onScreen = true; } else { onScreen = false; } if ((myHealth > 0) && (myHealth <= 100)) { if ((soundPlay == false) && (onScreen == true)) { AtAt.start(0, 10); soundPlay = true; } if (onScreen == false) { AtAt.stop("AtAt"); soundPlay = false; } if (panic == false) { this._x = this._x - (moveSpeed + walkAdd); this._xscale = norm; } this.play(); if (((this.hitTest(_root.SFC.bat.GSwing) && (hit == false)) && (appleDistance >= -30)) && (appleDistance <= 0)) { hit = true; myHealth = myHealth - 20; batHit.start(0.3125, 0); panic = true; if (direction == "left") { this._x = this._x - 25; } else if (direction == "right") { this._x = this._x + 25; } } else if (((this.hitTest(_root.SFC.bat.OSwing) && (hit == false)) && (appleDistance >= -30)) && (appleDistance <= 0)) { hit = true; batHit.start(0.3125, 0); myHealth = myHealth - 10; panic = true; if (direction == "left") { this._x = this._x - 25; } else if (direction == "right") { this._x = this._x + 25; } } if (panic == true) { soundPlay = false; AtAt.stop("AtAt"); if ((soundPanic == false) && (onScreen == true)) { AtAtPanic.start(0, 10); soundPanic = true; } if (onScreen == false) { AtAtPanic.stop("AtAtPanic"); soundPanic = false; } if (rand > 5) { this._x = this._x - ((moveSpeed * 2) + walkAdd); this._xscale = norm; } else { this._x = this._x + ((moveSpeed * 2) - walkAdd); this._xscale = flip; } } else if (panic == false) { AtAtPanic.stop("AtAtPanic"); } if (this._x <= -1000) { this._x = startPoint; myHealth = 100; panic = false; this._xscale = norm; } } else if (myHealth <= 0) { AtAt.stop("AtAt"); AtAtPanic.stop("AtAtPanic"); this.gotoAndPlay(20); myHealth = 101; _global.AppleCounter++; } else { if (this._x < -500) { this._x = startPoint; myHealth = 100; panic = false; this._xscale = norm; } this._x = this._x - walkAdd; } }Instance of Symbol 132 MovieClip "golden" in Frame 5onClipEvent (load) { startPoint = 2000; this._x = startPoint; this.swapDepths(1); norm = this._xscale; flip = this._xscale * -1; panic = false; myRandX = function () { randX = Math.round(Math.random() * 10); }; setInterval(myRandX, 1000); hit = false; myHealth = 100; } onClipEvent (enterFrame) { if ((myHealth > 0) && (myHealth <= 100)) { if (panic == false) { this._x = this._x - (moveSpeed + walkAdd); this._xscale = norm; } this.play(); if (((this.hitTest(_root.SFC.bat.GSwing) && (hit == false)) && (goldDistance >= -15)) && (goldDistance <= 15)) { myHealth = myHealth - 20; batHit.start(0.3125, 0); _global.cry.start(0, 0); hit = true; panic = true; if (direction == "left") { this._x = this._x - 25; } else if (direction == "right") { this._x = this._x + 25; } } else if (((this.hitTest(_root.SFC.bat.OSwing) && (hit == false)) && (goldDistance >= -15)) && (goldDistance <= 15)) { batHit.start(0.3125, 0); _global.cry.start(0, 0); myHealth = myHealth - 10; hit = true; panic = true; if (direction == "left") { this._x = this._x - 25; } else if (direction == "right") { this._x = this._x + 25; } } if (panic == true) { if (randX > 5) { this._x = this._x - ((moveSpeed * 2) + walkAdd); this._xscale = norm; } else { this._x = this._x + ((moveSpeed * 2) - walkAdd); this._xscale = flip; } } if (this._x <= -1000) { this._x = startPoint; myHealth = 100; panic = false; this._xscale = norm; } } else if (myHealth <= 0) { this.gotoAndPlay(28); myHealth = 101; _global.GoldCounter++; } else { if (this._x < -500) { this._x = startPoint; myHealth = 100; panic = false; this._xscale = norm; } this._x = this._x - walkAdd; } }Instance of Symbol 135 MovieClip "bio" in Frame 5onClipEvent (load) { _global.whistle = new Sound(); _global.whistle.attachSound("whistle"); beatDown = false; moveSpeed = 2; startPoint = 4000; norm = 100; flip = -100; this.swapDepths(101); _global.busted = false; this._x = startPoint; whistle = false; } onClipEvent (enterFrame) { if (busted == false) { this._x = this._x - (moveSpeed + walkAdd); this.play(); } if ((this._x <= 643.5) && (this._x >= -87.5)) { onScreen = true; } else { onScreen = false; } _global.distance = _root.SFC._x - this._x; yDistance = _root.SFC._y - this._y; AbsDistance = Math.abs(distance); if ((onScreen == true) && (((_root.golden.hit == true) || (_root.bomb.hit == true)) || (_root.apple.hit == true))) { _global.busted = true; _global.moveSpeed = 0; } if (this._x <= -600) { this._x = startPoint; this._xscale = norm; } if ((busted == true) && (credits == false)) { if (distance < 0) { this._xscale = norm; _root.SFC._xscale = 100; } else if (distance > 0) { this._xscale = flip; _root.SFC._xscale = -100; } if (AbsDistance > 100) { this._y = this._y + (yDistance / 10); this._x = this._x + (distance / 25); this.play(); } else if (AbsDistance < 100) { _root.bomb.panic = false; _root.golden.panic = false; _root.apple.panic = false; beatDown = true; } if (whistle == false) { _global.whistle.start(0, 20); whistle = true; } } if (this.hitTest(_root.golden)) { if ((this._y - _root.golden._y) <= 9) { this.swapDepths(-101); } else if ((this._y - _root.golden._y) > 9) { this.swapDepths(101); } } else if (this.hitTest(_root.bomb)) { if ((this._y - _root.bomb._y) <= -30) { this.swapDepths(-101); } else if ((this._y - _root.bomb._y) > -30) { this.swapDepths(101); } } else if (this.hitTest(_root.apple)) { if ((this._y - _root.apple._y) <= -30) { this.swapDepths(-101); } else if ((this._y - _root.apple._y) > -30) { this.swapDepths(101); } } }Instance of Symbol 58 MovieClip "SFC" in Frame 5onClipEvent (load) { _global.direction = "right"; this.swapDepths(100); move = 8; scale = this._xscale; _global.swing = false; rBound = 325; _global.walk = false; BBound = 340; TBound = 295; } onClipEvent (enterFrame) { _global.goldDistance = this._y - _root.golden._y; _global.bombDistance = this._y - _root.bomb._y; _global.appleDistance = this._y - _root.apple._y; _global.scoreAdd = 10; _root.score.text = "Cadny = " + CadnyScore; if (busted == false) { if (Key.isDown(38) && (this._y >= TBound)) { this._y = this._y - 5; this.play(); } else if (Key.isDown(40) && (this._y <= BBound)) { this._y = this._y + 5; this.play(); } if (Key.isDown(39)) { _global.direction = "right"; this.play(); this._xscale = scale; if (this._x <= rBound) { this._x = this._x + move; } if (this._x >= rBound) { _root.walk.play(); _global.walk = true; _global.walkAdd = counterWalk; } } else if (Key.isDown(37) && (this._x >= 80)) { this.play(); this._x = this._x - move; this._xscale = -scale; _global.direction = "left"; } if (!Key.isDown(39)) { _root.walk.stop(); _global.walk = false; _global.walkAdd = 0; if (((!Key.isDown(37)) && (!Key.isDown(38))) && (!Key.isDown(40))) { this.gotoAndStop(1); } } if (swing == false) { if (Key.isDown(65)) { this.bat.gotoAndStop(2); } if (Key.isDown(83)) { this.bat.gotoAndStop(3); } } if (Key.isDown(65) && (Key.isDown(83))) { } if (this.bat((GSwing._currentframe == 20) || (OSwing._currentframe == 20))) { _global.swing = false; } if (this.bat((OSwing._currentframe == 2) || (GSwing._currentframe == 2))) { _global.swing = true; } if (this.hitTest(_root.golden)) { if (goldDistance <= 9) { this.swapDepths(-100); } else if (goldDistance > 9) { this.swapDepths(100); } } else if (this.hitTest(_root.bomb)) { if (bombDistance <= -30) { this.swapDepths(-100); } else if (bombDistance > -30) { this.swapDepths(100); } } else if (this.hitTest(_root.apple)) { if (appleDistance <= -20) { this.swapDepths(-100); } else if (appleDistance > -20) { this.swapDepths(100); } } } if (busted == true) { _root.walk.stop(); _global.walkAdd = 0; } }Instance of Symbol 147 MovieClip in Frame 5onClipEvent (enterFrame) { this._x = (_root.bio._x / 10) + 60; }Frame 6stopAllSounds(); nextFrame();Frame 7_root.bio._x = 50; _root.SFC._x = 250; _root.Bomb._x = 500; _root.golden._x = 50; _root.golden._y = 50; _root.apple._x = 525; _root.apple._y = 50; _global.busted = true; _root.golden.gotoAndPlay(1); _root.apple.gotoAndPlay(1); _root.bomb.gotoAndPlay(1); _root.bio.gotoAndPlay(1); _root.SFC.gotoAndStop(29); _root.bio.beatDown = false; _root.bio.moveSpeed = 0; _root.apple.AtAt.stop("AtAt"); _global.credits = true; _root._quality = "HIGH"; _root.finScore.text = "Cadny you stole = " + CadnyScore;Instance of Symbol 157 MovieClip in Frame 7onClipEvent (enterFrame) { if (this._y >= -1225) { this._y = this._y - 1.5; } }Instance of Symbol 12 MovieClip "SBC" in Symbol 13 MovieClip Frame 1onClipEvent (enterFrame) { this.SBC._alpha = 100 - Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); }Symbol 16 MovieClip Frame 1this._xscale = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;Symbol 16 MovieClip Frame 2gotoAndPlay (1);Symbol 20 Buttonon (release) { _root.gotoAndStop(5); }Symbol 22 Buttonon (release) { _root.gotoAndStop(2); }Symbol 23 MovieClip Frame 1percent = "0%";Symbol 23 MovieClip Frame 2_global.percent = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) + "%"; if (_root.getBytesLoaded() == _root.getBytesTotal()) { _global.percent = "100%"; gotoAndStop (4); } box.text = _global.percent;Symbol 23 MovieClip Frame 3gotoAndPlay (2);Symbol 29 Buttonon (release) { _root.gotoAndStop(1); }Symbol 32 Buttonon (release) { nextFrame(); }Instance of Symbol 49 MovieClip in Symbol 50 MovieClip Frame 1onClipEvent (enterFrame) { myDate = new Date(); m = myDate.getMinutes() * 6; h = myDate.getHours() * 30; s = myDate.getSeconds() * 6; min._rotation = m; hour._rotation = h; sec._rotation = s; }Symbol 55 MovieClip Frame 20_root.apple.hit = false; _root.golden.hit = false; _root.bomb.hit = false; _parent.gotoAndStop(1);Symbol 56 MovieClip Frame 15_root.apple.hit = false; _root.golden.hit = false; _root.bomb.hit = false; _parent.gotoAndStop(1);Symbol 57 MovieClip Frame 1stop();Symbol 58 MovieClip Frame 19gotoAndPlay (2);Symbol 58 MovieClip Frame 30_root.deathText.play();Symbol 58 MovieClip Frame 60stop();Symbol 73 Buttonon (release) { prevFrame(); }Symbol 111 MovieClip Frame 1stop();Instance of Symbol 116 MovieClip in Symbol 117 MovieClip Frame 1on (rollOver) { this.nextFrame(); } on (rollOut) { this.prevFrame(); }Symbol 117 MovieClip Frame 105stop();Symbol 118 MovieClip Frame 1stop();Symbol 118 MovieClip Frame 19if (_currentframe == 19) { gotoAndPlay (1); }Symbol 118 MovieClip Frame 28stop();Instance of Symbol 117 MovieClip in Symbol 118 MovieClip Frame 28onClipEvent (enterFrame) { if (((this.hitTest(_root.SFC) && (this._currentframe != 105)) && (_global.bombDistance <= 0)) && (_global.bombDistance >= -30)) { _global.CadnyScore = _global.CadnyScore + scoreAdd; this.gotoAndStop(105); } }Symbol 124 MovieClip Frame 1stop();Symbol 124 MovieClip Frame 19if (_currentframe == 19) { gotoAndPlay (1); }Symbol 124 MovieClip Frame 25stop();Instance of Symbol 117 MovieClip in Symbol 124 MovieClip Frame 25onClipEvent (enterFrame) { if (((this.hitTest(_root.SFC) && (this._currentframe != 105)) && (_global.appleDistance <= 0)) && (_global.appleDistance >= -30)) { _global.CadnyScore = _global.CadnyScore + scoreAdd; this.gotoAndStop(105); } }Symbol 128 MovieClip Frame 1mydate = new date(); setProperty(this, _rotation , mydate.getMinutes() * "6");Symbol 129 MovieClip Frame 1rj = new date(); setProperty(this, _rotation , rj.getHours() * "30"); gotoAndPlay (2);Symbol 130 MovieClip Frame 1mydate = new date(); setProperty(this, _rotation , mydate.getSeconds() * "6");Symbol 132 MovieClip Frame 1stop();Symbol 132 MovieClip Frame 27if (_currentframe == 27) { gotoAndPlay (1); }Symbol 132 MovieClip Frame 33stop();Instance of Symbol 117 MovieClip in Symbol 132 MovieClip Frame 33onClipEvent (enterFrame) { if (((this.hitTest(_root.SFC) && (this._currentframe != 105)) && (_global.goldDistance <= 15)) && (_global.goldDistance >= -15)) { _global.CadnyScore = _global.CadnyScore + scoreAdd; _global.collect.start(0, 0); this.gotoAndStop(105); } }Symbol 135 MovieClip Frame 1stop();Symbol 135 MovieClip Frame 19if ((_currentframe == 19) && (beatDown == false)) { this.gotoAndPlay(1); } else { this.swapDepths(_root.SFC.getDepth() - 1); this.play(); }Symbol 135 MovieClip Frame 20_global.whistle.stop("whistle");Symbol 135 MovieClip Frame 22if (distance < 0) { _root.SFC._x = _root.SFC._x - 50; } else if (distance > 0) { _root.SFC._x = _root.SFC._x + 50; } batHit.start(0.3125, 0); _root.SFC.gotoAndPlay(20);Symbol 135 MovieClip Frame 35stop();Symbol 145 MovieClip Frame 1stop();Symbol 145 MovieClip Frame 45stopAllSounds(); _root.gotoAndStop(6);Symbol 150 Buttonon (press) { if (_root._quality == "HIGH") { _root._quality = "MEDIUM"; } else if (_root._quality == "MEDIUM") { _root._quality = "LOW"; } else if (_root._quality == "LOW") { _root._quality = "HIGH"; } } on (keyPress "q") { if (_root._quality == "HIGH") { _root._quality = "MEDIUM"; } else if (_root._quality == "MEDIUM") { _root._quality = "LOW"; } else if (_root._quality == "LOW") { _root._quality = "HIGH"; } }
Library Items
Symbol 1 Sound [batHit] | ||
Symbol 2 Sound [whistle] | ||
Symbol 3 Sound [cry] | ||
Symbol 4 Sound [collect] | ||
Symbol 5 Sound [AtAtPanic] | ||
Symbol 6 Sound [AtAt] | ||
Symbol 7 Graphic | Used by:13 | |
Symbol 8 Font | Used by:9 | |
Symbol 9 Text | Uses:8 | Used by:13 |
Symbol 10 Graphic | Used by:11 12 | |
Symbol 11 MovieClip | Uses:10 | Used by:12 |
Symbol 12 MovieClip | Uses:10 11 | Used by:13 |
Symbol 13 MovieClip | Uses:7 9 12 | Used by:23 |
Symbol 14 Graphic | Used by:23 | |
Symbol 15 Graphic | Used by:16 20 22 Timeline | |
Symbol 16 MovieClip | Uses:15 | Used by:23 |
Symbol 17 Font | Used by:18 21 136 137 138 139 140 141 142 143 144 148 153 154 155 156 158 | |
Symbol 18 EditableText | Uses:17 | Used by:23 |
Symbol 19 Graphic | Used by:20 | |
Symbol 20 Button | Uses:15 19 | Used by:23 |
Symbol 21 Text | Uses:17 | Used by:22 |
Symbol 22 Button | Uses:15 21 | Used by:23 |
Symbol 23 MovieClip | Uses:13 14 16 18 20 22 | Used by:Timeline |
Symbol 24 Font | Used by:25 26 27 30 69 70 71 97 137 138 139 140 141 142 143 144 | |
Symbol 25 Text | Uses:24 | Used by:Timeline |
Symbol 26 Text | Uses:24 | Used by:Timeline |
Symbol 27 Text | Uses:24 | Used by:29 |
Symbol 28 Graphic | Used by:29 | |
Symbol 29 Button | Uses:27 28 | Used by:Timeline |
Symbol 30 Text | Uses:24 | Used by:32 |
Symbol 31 Graphic | Used by:32 | |
Symbol 32 Button | Uses:30 31 | Used by:Timeline |
Symbol 33 Graphic | Used by:Timeline | |
Symbol 34 Graphic | Used by:39 | |
Symbol 35 Graphic | Used by:39 | |
Symbol 36 Graphic | Used by:39 | |
Symbol 37 Graphic | Used by:39 | |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:34 35 36 37 38 | Used by:58 |
Symbol 40 Graphic | Used by:50 | |
Symbol 41 Graphic | Used by:50 | |
Symbol 42 Graphic | Used by:43 129 130 | |
Symbol 43 MovieClip | Uses:42 | Used by:49 |
Symbol 44 Graphic | Used by:45 | |
Symbol 45 MovieClip | Uses:44 | Used by:49 |
Symbol 46 Graphic | Used by:47 | |
Symbol 47 MovieClip | Uses:46 | Used by:49 |
Symbol 48 Graphic | Used by:49 131 | |
Symbol 49 MovieClip | Uses:43 45 47 48 | Used by:50 |
Symbol 50 MovieClip | Uses:40 41 49 | Used by:58 |
Symbol 51 Graphic | Used by:55 56 57 | |
Symbol 52 Font | Used by:53 54 96 | |
Symbol 53 Text | Uses:52 | Used by:55 56 57 |
Symbol 54 Text | Uses:52 | Used by:55 56 57 |
Symbol 55 MovieClip | Uses:51 53 54 SS1 | Used by:57 |
Symbol 56 MovieClip | Uses:51 53 54 SS2 | Used by:57 |
Symbol 57 MovieClip | Uses:51 53 54 55 56 | Used by:58 |
Symbol 58 MovieClip | Uses:39 50 57 | Used by:Timeline |
Symbol 59 Graphic | Used by:Timeline | |
Symbol 60 Graphic | Used by:63 66 Timeline | |
Symbol 61 Font | Used by:62 65 | |
Symbol 62 Text | Uses:61 | Used by:63 |
Symbol 63 MovieClip | Uses:60 62 | Used by:64 |
Symbol 64 MovieClip | Uses:63 | Used by:Timeline |
Symbol 65 Text | Uses:61 | Used by:66 |
Symbol 66 MovieClip | Uses:60 65 | Used by:67 |
Symbol 67 MovieClip | Uses:66 | Used by:Timeline |
Symbol 68 Graphic | Used by:Timeline | |
Symbol 69 Text | Uses:24 | Used by:Timeline |
Symbol 70 Text | Uses:24 | Used by:Timeline |
Symbol 71 Text | Uses:24 | Used by:73 |
Symbol 72 Graphic | Used by:73 | |
Symbol 73 Button | Uses:71 72 | Used by:Timeline |
Symbol 74 Graphic | Used by:Timeline | |
Symbol 75 Graphic | Used by:78 | |
Symbol 76 Graphic | Used by:78 | |
Symbol 77 Graphic | Used by:78 | |
Symbol 78 MovieClip | Uses:75 76 77 | Used by:135 147 Timeline |
Symbol 79 Graphic | Used by:90 | |
Symbol 80 Graphic | Used by:90 | |
Symbol 81 Graphic | Used by:90 | |
Symbol 82 Graphic | Used by:90 | |
Symbol 83 Graphic | Used by:90 | |
Symbol 84 Graphic | Used by:90 | |
Symbol 85 Graphic | Used by:90 | |
Symbol 86 Graphic | Used by:90 | |
Symbol 87 Graphic | Used by:90 | |
Symbol 88 Graphic | Used by:90 | |
Symbol 89 Graphic | Used by:90 | |
Symbol 90 MovieClip | Uses:79 80 81 82 83 84 85 86 87 88 89 | Used by:91 |
Symbol 91 MovieClip | Uses:90 | Used by:135 147 Timeline |
Symbol 92 Bitmap | Used by:93 | |
Symbol 93 Graphic | Uses:92 | Used by:135 147 Timeline |
Symbol 94 Graphic | Used by:135 147 Timeline | |
Symbol 95 Graphic | Used by:135 147 Timeline | |
Symbol 96 Text | Uses:52 | Used by:135 147 Timeline |
Symbol 97 Text | Uses:24 | Used by:Timeline |
Symbol 98 Graphic | Used by:Timeline | |
Symbol 99 Graphic | Used by:Timeline | |
Symbol 100 Graphic | Used by:Timeline | |
Symbol 101 Graphic | Used by:Timeline | |
Symbol 102 Graphic | Used by:111 | |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 MovieClip | Uses:103 | Used by:111 |
Symbol 105 Graphic | Used by:106 | |
Symbol 106 MovieClip | Uses:105 | Used by:111 |
Symbol 107 Graphic | Used by:108 | |
Symbol 108 MovieClip | Uses:107 | Used by:111 |
Symbol 109 Graphic | Used by:110 | |
Symbol 110 MovieClip | Uses:109 | Used by:111 |
Symbol 111 MovieClip | Uses:102 104 106 108 110 | Used by:Timeline |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 MovieClip | Uses:112 | Used by:118 |
Symbol 114 Graphic | Used by:118 | |
Symbol 115 Graphic | Used by:116 118 124 132 | |
Symbol 116 MovieClip | Uses:115 | Used by:117 |
Symbol 117 MovieClip | Uses:116 | Used by:118 124 132 |
Symbol 118 MovieClip | Uses:113 114 115 117 | Used by:Timeline |
Symbol 119 Graphic | Used by:120 | |
Symbol 120 MovieClip | Uses:119 | Used by:124 |
Symbol 121 Graphic | Used by:124 | |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip | Uses:122 | Used by:124 |
Symbol 124 MovieClip | Uses:120 121 115 123 117 | Used by:Timeline |
Symbol 125 Graphic | Used by:132 | |
Symbol 126 Graphic | Used by:132 | |
Symbol 127 Graphic | Used by:128 | |
Symbol 128 MovieClip | Uses:127 | Used by:131 |
Symbol 129 MovieClip | Uses:42 | Used by:131 |
Symbol 130 MovieClip | Uses:42 | Used by:131 |
Symbol 131 MovieClip | Uses:128 129 130 48 | Used by:132 |
Symbol 132 MovieClip | Uses:125 126 131 115 117 | Used by:Timeline |
Symbol 133 Graphic | Used by:135 | |
Symbol 134 Graphic | Used by:135 | |
Symbol 135 MovieClip | Uses:78 91 93 94 95 96 133 134 | Used by:Timeline |
Symbol 136 EditableText | Uses:17 | Used by:Timeline |
Symbol 137 EditableText | Uses:17 24 | Used by:145 |
Symbol 138 EditableText | Uses:17 24 | Used by:145 |
Symbol 139 EditableText | Uses:17 24 | Used by:145 |
Symbol 140 EditableText | Uses:17 24 | Used by:145 |
Symbol 141 EditableText | Uses:17 24 | Used by:145 |
Symbol 142 EditableText | Uses:17 24 | Used by:145 |
Symbol 143 EditableText | Uses:17 24 | Used by:145 |
Symbol 144 EditableText | Uses:17 24 | Used by:145 |
Symbol 145 MovieClip | Uses:137 138 139 140 141 142 143 144 | Used by:Timeline |
Symbol 146 Graphic | Used by:Timeline | |
Symbol 147 MovieClip | Uses:78 91 93 94 95 96 | Used by:Timeline |
Symbol 148 Text | Uses:17 | Used by:150 |
Symbol 149 Graphic | Used by:150 | |
Symbol 150 Button | Uses:148 149 | Used by:Timeline |
Symbol 151 Sound | Used by:Timeline | |
Symbol 152 Graphic | Used by:Timeline | |
Symbol 153 Text | Uses:17 | Used by:157 |
Symbol 154 Text | Uses:17 | Used by:157 |
Symbol 155 Text | Uses:17 | Used by:157 |
Symbol 156 Text | Uses:17 | Used by:157 |
Symbol 157 MovieClip | Uses:153 154 155 156 | Used by:Timeline |
Symbol 158 EditableText | Uses:17 | Used by:Timeline |
Symbol 159 Sound | Used by:Timeline | |
Streaming Sound 1 | Used by:Symbol 55 MovieClip | |
Streaming Sound 2 | Used by:Symbol 56 MovieClip |
Instance Names
"preloader" | Frame 1 | Symbol 23 MovieClip |
"SFC" | Frame 3 | Symbol 58 MovieClip |
"walk" | Frame 5 | Symbol 111 MovieClip |
"bomb" | Frame 5 | Symbol 118 MovieClip |
"apple" | Frame 5 | Symbol 124 MovieClip |
"golden" | Frame 5 | Symbol 132 MovieClip |
"bio" | Frame 5 | Symbol 135 MovieClip |
"SFC" | Frame 5 | Symbol 58 MovieClip |
"score" | Frame 5 | Symbol 136 EditableText |
"deathText" | Frame 5 | Symbol 145 MovieClip |
"finScore" | Frame 7 | Symbol 158 EditableText |
"SBC" | Symbol 12 MovieClip Frame 1 | Symbol 11 MovieClip |
"SBC" | Symbol 13 MovieClip Frame 1 | Symbol 12 MovieClip |
"bar" | Symbol 23 MovieClip Frame 1 | Symbol 16 MovieClip |
"box" | Symbol 23 MovieClip Frame 1 | Symbol 18 EditableText |
"hour" | Symbol 49 MovieClip Frame 1 | Symbol 43 MovieClip |
"sec" | Symbol 49 MovieClip Frame 1 | Symbol 45 MovieClip |
"min" | Symbol 49 MovieClip Frame 1 | Symbol 47 MovieClip |
"GSwing" | Symbol 57 MovieClip Frame 2 | Symbol 55 MovieClip |
"OSwing" | Symbol 57 MovieClip Frame 3 | Symbol 56 MovieClip |
"bat" | Symbol 58 MovieClip Frame 1 | Symbol 57 MovieClip |
"clock" | Symbol 58 MovieClip Frame 40 | Symbol 50 MovieClip |
"leaves" | Symbol 111 MovieClip Frame 1 | Symbol 104 MovieClip |
"trunk" | Symbol 111 MovieClip Frame 1 | Symbol 106 MovieClip |
"leaves" | Symbol 111 MovieClip Frame 1 | Symbol 104 MovieClip |
"trunk" | Symbol 111 MovieClip Frame 1 | Symbol 106 MovieClip |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "batHit" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "whistle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "cry" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "collect" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "AtAtPanic" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "AtAt" |
Labels
"loaded" | Symbol 23 MovieClip Frame 4 |
|