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

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

All Your Candy.swf

This is the info page for
Flash #32603

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


Text
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>&gt;</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 1
stopAllSounds(); Stage.showMenu = false;
Instance of Symbol 23 MovieClip "preloader" in Frame 1
onClipEvent (load) { _root.stop(); }
Frame 2
stop();
Frame 3
stop();
Instance of Symbol 58 MovieClip "SFC" in Frame 3
onClipEvent (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 4
stop();
Frame 5
stop(); _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 5
onClipEvent (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 5
onClipEvent (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 5
onClipEvent (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 5
onClipEvent (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 5
onClipEvent (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 5
onClipEvent (enterFrame) { this._x = (_root.bio._x / 10) + 60; }
Frame 6
stopAllSounds(); 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 7
onClipEvent (enterFrame) { if (this._y >= -1225) { this._y = this._y - 1.5; } }
Instance of Symbol 12 MovieClip "SBC" in Symbol 13 MovieClip Frame 1
onClipEvent (enterFrame) { this.SBC._alpha = 100 - Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); }
Symbol 16 MovieClip Frame 1
this._xscale = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
Symbol 16 MovieClip Frame 2
gotoAndPlay (1);
Symbol 20 Button
on (release) { _root.gotoAndStop(5); }
Symbol 22 Button
on (release) { _root.gotoAndStop(2); }
Symbol 23 MovieClip Frame 1
percent = "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 3
gotoAndPlay (2);
Symbol 29 Button
on (release) { _root.gotoAndStop(1); }
Symbol 32 Button
on (release) { nextFrame(); }
Instance of Symbol 49 MovieClip in Symbol 50 MovieClip Frame 1
onClipEvent (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 1
stop();
Symbol 58 MovieClip Frame 19
gotoAndPlay (2);
Symbol 58 MovieClip Frame 30
_root.deathText.play();
Symbol 58 MovieClip Frame 60
stop();
Symbol 73 Button
on (release) { prevFrame(); }
Symbol 111 MovieClip Frame 1
stop();
Instance of Symbol 116 MovieClip in Symbol 117 MovieClip Frame 1
on (rollOver) { this.nextFrame(); } on (rollOut) { this.prevFrame(); }
Symbol 117 MovieClip Frame 105
stop();
Symbol 118 MovieClip Frame 1
stop();
Symbol 118 MovieClip Frame 19
if (_currentframe == 19) { gotoAndPlay (1); }
Symbol 118 MovieClip Frame 28
stop();
Instance of Symbol 117 MovieClip in Symbol 118 MovieClip Frame 28
onClipEvent (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 1
stop();
Symbol 124 MovieClip Frame 19
if (_currentframe == 19) { gotoAndPlay (1); }
Symbol 124 MovieClip Frame 25
stop();
Instance of Symbol 117 MovieClip in Symbol 124 MovieClip Frame 25
onClipEvent (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 1
mydate = new date(); setProperty(this, _rotation , mydate.getMinutes() * "6");
Symbol 129 MovieClip Frame 1
rj = new date(); setProperty(this, _rotation , rj.getHours() * "30"); gotoAndPlay (2);
Symbol 130 MovieClip Frame 1
mydate = new date(); setProperty(this, _rotation , mydate.getSeconds() * "6");
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 27
if (_currentframe == 27) { gotoAndPlay (1); }
Symbol 132 MovieClip Frame 33
stop();
Instance of Symbol 117 MovieClip in Symbol 132 MovieClip Frame 33
onClipEvent (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 1
stop();
Symbol 135 MovieClip Frame 19
if ((_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 22
if (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 35
stop();
Symbol 145 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 45
stopAllSounds(); _root.gotoAndStop(6);
Symbol 150 Button
on (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 GraphicUsed by:13
Symbol 8 FontUsed by:9
Symbol 9 TextUses:8Used by:13
Symbol 10 GraphicUsed by:11 12
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:10 11Used by:13
Symbol 13 MovieClipUses:7 9 12Used by:23
Symbol 14 GraphicUsed by:23
Symbol 15 GraphicUsed by:16 20 22  Timeline
Symbol 16 MovieClipUses:15Used by:23
Symbol 17 FontUsed by:18 21 136 137 138 139 140 141 142 143 144 148 153 154 155 156 158
Symbol 18 EditableTextUses:17Used by:23
Symbol 19 GraphicUsed by:20
Symbol 20 ButtonUses:15 19Used by:23
Symbol 21 TextUses:17Used by:22
Symbol 22 ButtonUses:15 21Used by:23
Symbol 23 MovieClipUses:13 14 16 18 20 22Used by:Timeline
Symbol 24 FontUsed by:25 26 27 30 69 70 71 97 137 138 139 140 141 142 143 144
Symbol 25 TextUses:24Used by:Timeline
Symbol 26 TextUses:24Used by:Timeline
Symbol 27 TextUses:24Used by:29
Symbol 28 GraphicUsed by:29
Symbol 29 ButtonUses:27 28Used by:Timeline
Symbol 30 TextUses:24Used by:32
Symbol 31 GraphicUsed by:32
Symbol 32 ButtonUses:30 31Used by:Timeline
Symbol 33 GraphicUsed by:Timeline
Symbol 34 GraphicUsed by:39
Symbol 35 GraphicUsed by:39
Symbol 36 GraphicUsed by:39
Symbol 37 GraphicUsed by:39
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:34 35 36 37 38Used by:58
Symbol 40 GraphicUsed by:50
Symbol 41 GraphicUsed by:50
Symbol 42 GraphicUsed by:43 129 130
Symbol 43 MovieClipUses:42Used by:49
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:49
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:49
Symbol 48 GraphicUsed by:49 131
Symbol 49 MovieClipUses:43 45 47 48Used by:50
Symbol 50 MovieClipUses:40 41 49Used by:58
Symbol 51 GraphicUsed by:55 56 57
Symbol 52 FontUsed by:53 54 96
Symbol 53 TextUses:52Used by:55 56 57
Symbol 54 TextUses:52Used by:55 56 57
Symbol 55 MovieClipUses:51 53 54 SS1Used by:57
Symbol 56 MovieClipUses:51 53 54 SS2Used by:57
Symbol 57 MovieClipUses:51 53 54 55 56Used by:58
Symbol 58 MovieClipUses:39 50 57Used by:Timeline
Symbol 59 GraphicUsed by:Timeline
Symbol 60 GraphicUsed by:63 66  Timeline
Symbol 61 FontUsed by:62 65
Symbol 62 TextUses:61Used by:63
Symbol 63 MovieClipUses:60 62Used by:64
Symbol 64 MovieClipUses:63Used by:Timeline
Symbol 65 TextUses:61Used by:66
Symbol 66 MovieClipUses:60 65Used by:67
Symbol 67 MovieClipUses:66Used by:Timeline
Symbol 68 GraphicUsed by:Timeline
Symbol 69 TextUses:24Used by:Timeline
Symbol 70 TextUses:24Used by:Timeline
Symbol 71 TextUses:24Used by:73
Symbol 72 GraphicUsed by:73
Symbol 73 ButtonUses:71 72Used by:Timeline
Symbol 74 GraphicUsed by:Timeline
Symbol 75 GraphicUsed by:78
Symbol 76 GraphicUsed by:78
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:75 76 77Used by:135 147  Timeline
Symbol 79 GraphicUsed by:90
Symbol 80 GraphicUsed by:90
Symbol 81 GraphicUsed by:90
Symbol 82 GraphicUsed by:90
Symbol 83 GraphicUsed by:90
Symbol 84 GraphicUsed by:90
Symbol 85 GraphicUsed by:90
Symbol 86 GraphicUsed by:90
Symbol 87 GraphicUsed by:90
Symbol 88 GraphicUsed by:90
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:79 80 81 82 83 84 85 86 87 88 89Used by:91
Symbol 91 MovieClipUses:90Used by:135 147  Timeline
Symbol 92 BitmapUsed by:93
Symbol 93 GraphicUses:92Used by:135 147  Timeline
Symbol 94 GraphicUsed by:135 147  Timeline
Symbol 95 GraphicUsed by:135 147  Timeline
Symbol 96 TextUses:52Used by:135 147  Timeline
Symbol 97 TextUses:24Used by:Timeline
Symbol 98 GraphicUsed by:Timeline
Symbol 99 GraphicUsed by:Timeline
Symbol 100 GraphicUsed by:Timeline
Symbol 101 GraphicUsed by:Timeline
Symbol 102 GraphicUsed by:111
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:111
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:111
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:111
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:109Used by:111
Symbol 111 MovieClipUses:102 104 106 108 110Used by:Timeline
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:118
Symbol 114 GraphicUsed by:118
Symbol 115 GraphicUsed by:116 118 124 132
Symbol 116 MovieClipUses:115Used by:117
Symbol 117 MovieClipUses:116Used by:118 124 132
Symbol 118 MovieClipUses:113 114 115 117Used by:Timeline
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:124
Symbol 121 GraphicUsed by:124
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:124
Symbol 124 MovieClipUses:120 121 115 123 117Used by:Timeline
Symbol 125 GraphicUsed by:132
Symbol 126 GraphicUsed by:132
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127Used by:131
Symbol 129 MovieClipUses:42Used by:131
Symbol 130 MovieClipUses:42Used by:131
Symbol 131 MovieClipUses:128 129 130 48Used by:132
Symbol 132 MovieClipUses:125 126 131 115 117Used by:Timeline
Symbol 133 GraphicUsed by:135
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:78 91 93 94 95 96 133 134Used by:Timeline
Symbol 136 EditableTextUses:17Used by:Timeline
Symbol 137 EditableTextUses:17 24Used by:145
Symbol 138 EditableTextUses:17 24Used by:145
Symbol 139 EditableTextUses:17 24Used by:145
Symbol 140 EditableTextUses:17 24Used by:145
Symbol 141 EditableTextUses:17 24Used by:145
Symbol 142 EditableTextUses:17 24Used by:145
Symbol 143 EditableTextUses:17 24Used by:145
Symbol 144 EditableTextUses:17 24Used by:145
Symbol 145 MovieClipUses:137 138 139 140 141 142 143 144Used by:Timeline
Symbol 146 GraphicUsed by:Timeline
Symbol 147 MovieClipUses:78 91 93 94 95 96Used by:Timeline
Symbol 148 TextUses:17Used by:150
Symbol 149 GraphicUsed by:150
Symbol 150 ButtonUses:148 149Used by:Timeline
Symbol 151 SoundUsed by:Timeline
Symbol 152 GraphicUsed by:Timeline
Symbol 153 TextUses:17Used by:157
Symbol 154 TextUses:17Used by:157
Symbol 155 TextUses:17Used by:157
Symbol 156 TextUses:17Used by:157
Symbol 157 MovieClipUses:153 154 155 156Used by:Timeline
Symbol 158 EditableTextUses:17Used by:Timeline
Symbol 159 SoundUsed by:Timeline
Streaming Sound 1Used by:Symbol 55 MovieClip
Streaming Sound 2Used by:Symbol 56 MovieClip

Instance Names

"preloader"Frame 1Symbol 23 MovieClip
"SFC"Frame 3Symbol 58 MovieClip
"walk"Frame 5Symbol 111 MovieClip
"bomb"Frame 5Symbol 118 MovieClip
"apple"Frame 5Symbol 124 MovieClip
"golden"Frame 5Symbol 132 MovieClip
"bio"Frame 5Symbol 135 MovieClip
"SFC"Frame 5Symbol 58 MovieClip
"score"Frame 5Symbol 136 EditableText
"deathText"Frame 5Symbol 145 MovieClip
"finScore"Frame 7Symbol 158 EditableText
"SBC"Symbol 12 MovieClip Frame 1Symbol 11 MovieClip
"SBC"Symbol 13 MovieClip Frame 1Symbol 12 MovieClip
"bar"Symbol 23 MovieClip Frame 1Symbol 16 MovieClip
"box"Symbol 23 MovieClip Frame 1Symbol 18 EditableText
"hour"Symbol 49 MovieClip Frame 1Symbol 43 MovieClip
"sec"Symbol 49 MovieClip Frame 1Symbol 45 MovieClip
"min"Symbol 49 MovieClip Frame 1Symbol 47 MovieClip
"GSwing"Symbol 57 MovieClip Frame 2Symbol 55 MovieClip
"OSwing"Symbol 57 MovieClip Frame 3Symbol 56 MovieClip
"bat"Symbol 58 MovieClip Frame 1Symbol 57 MovieClip
"clock"Symbol 58 MovieClip Frame 40Symbol 50 MovieClip
"leaves"Symbol 111 MovieClip Frame 1Symbol 104 MovieClip
"trunk"Symbol 111 MovieClip Frame 1Symbol 106 MovieClip
"leaves"Symbol 111 MovieClip Frame 1Symbol 104 MovieClip
"trunk"Symbol 111 MovieClip Frame 1Symbol 106 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "batHit"
ExportAssets (56)Timeline Frame 1Symbol 2 as "whistle"
ExportAssets (56)Timeline Frame 1Symbol 3 as "cry"
ExportAssets (56)Timeline Frame 1Symbol 4 as "collect"
ExportAssets (56)Timeline Frame 1Symbol 5 as "AtAtPanic"
ExportAssets (56)Timeline Frame 1Symbol 6 as "AtAt"

Labels

"loaded"Symbol 23 MovieClip Frame 4




http://swfchan.com/7/32603/info.shtml
Created: 17/5 -2019 22:22:30 Last modified: 17/5 -2019 22:22:30 Server time: 10/05 -2024 20:15:06