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

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

Classic Frogger.swf

This is the info page for
Flash #38216

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


Text
INSTRUCTIONS

FLASH EDITION

Created by Coolboyman

INSERT COIN

X

BONUS!

RESTART

Try Again?

YES!

Try Again?

INSTRUCTIONS:

The main Object of this game is to get the frog
back home, as shown show.  To get there,
dodge the cars, and ride the logs and turtles,
and enter your home as shown below.

Then it will look like this:

Get frogs in all 5 of the spaces, and you
will advance to the next level!

BACK

ActionScript [AS1/AS2]

Frame 2
stop();
Frame 3
fscommand ("allowscale", "false"); fscommand ("showmenu", "false"); mySound = new Sound(_root.gameSound); resetGame = function () { i = 1; lives = 3; level = 1; score = 0; timer = true; lane1Speed = 1.5; lane2Speed = 1.5; lane3Speed = 2; lane4Speed = 2.5; log1Speed = 1; log2Speed = 1.5; log3Speed = 1; log4Speed = 1.5; checkPoints = 0; }; startGame = function () { x = 0; while (x < 3) { duplicateMovieClip (firstLane, "firstLane" + i, i); _root["firstLane" + i]._x = x * 150; _root["firstLane" + i]._y = 350; i++; duplicateMovieClip (secondLane, "secondLane" + i, i); _root["secondLane" + i]._x = x * 170; _root["secondLane" + i]._y = 315; i++; duplicateMovieClip (firstlogLane, "firstlogLane" + i, i); _root["firstlogLane" + i]._x = x * 170; _root["firstlogLane" + i]._y = 170; i++; duplicateMovieClip (secondlogLane, "secondlogLane" + i, i); _root["secondlogLane" + i]._x = x * 200; _root["secondlogLane" + i]._y = 135; i++; x++; } x = 0; while (x < 2) { duplicateMovieClip (thirdLane, "thirdLane" + i, i); _root["thirdLane" + i]._x = x * 200; _root["thirdLane" + i]._y = 280; i++; duplicateMovieClip (fourthLane, "fourthLane" + i, i); _root["fourthLane" + i]._x = x * 200; _root["fourthLane" + i]._y = 245; i++; duplicateMovieClip (thirdlogLane, "thirdlogLane" + i, i); _root["thirdlogLane" + i]._x = x * 220; _root["thirdlogLane" + i]._y = 100; i++; duplicateMovieClip (fourthlogLane, "fourthlogLane" + i, i); _root["fourthlogLane" + i]._x = x * 240; _root["fourthlogLane" + i]._y = 65; i++; x++; } }; placeFrog = function () { duplicateMovieClip (frog, "frogClip", 1000); _root.frogClip._x = 200; _root.frogClip._y = 380; }; looseLife = function () { timer = false; lives--; death._x = frogClip._x; death._y = frogClip._y; removeMovieClip(_root.frogClip); death.gotoAndPlay(2); }; levelUp = function () { if (checkPoints == 5) { checkPoints = 0; score = score + 1000; level++; levelUpClip.gotoAndPlay(2); lane1Speed = lane1Speed + 0.2; lane2Speed = lane2Speed + 0.2; lane3Speed = lane3Speed + 0.2; lane4Speed = lane4Speed + 0.2; log1Speed = log1Speed + 0.2; log2Speed = log2Speed + 0.2; log3Speed = log3Speed + 0.2; log4Speed = log4Speed + 0.2; resetCheckPoints(); } }; resetCheckPoints = function () { firstCheck.gotoAndStop(1); secondCheck.gotoAndStop(1); thirdCheck.gotoAndStop(1); fourthCheck.gotoAndStop(1); fifthCheck.gotoAndStop(1); firstCheck.flag = false; secondCheck.flag = false; thirdCheck.flag = false; fourthCheck.flag = false; fifthCheck.flag = false; }; resetGame(); startGame(); placeFrog(); stop();
Instance of Symbol 33 MovieClip "firstLane" in Frame 3
onClipEvent (enterFrame) { if (_name != "firstLane") { if (_root.timer) { this._x = this._x - _root.lane1Speed; if (this._x < -30) { this._x = 430 + random(30); this.gotoAndStop(random(6) + 1); } if (this.hitTest(_root.frogClip)) { _root.looseLife(); } } } }
Instance of Symbol 35 MovieClip "secondLane" in Frame 3
onClipEvent (enterFrame) { if (_name != "secondLane") { if (_root.timer) { this._x = this._x + _root.lane2Speed; if (this._x > 430) { this._x = -(30 + random(30)); this.gotoAndStop(random(6) + 1); } if (this.hitTest(_root.frogClip)) { _root.looseLife(); } } } }
Instance of Symbol 37 MovieClip "thirdLane" in Frame 3
onClipEvent (enterFrame) { if (_name != "thirdLane") { if (_root.timer) { this._x = this._x - _root.lane3Speed; if (this._x < -30) { this._x = 430 + random(30); this.gotoAndStop(random(5) + 1); } if (this.hitTest(_root.frogClip)) { _root.looseLife(); } } } }
Instance of Symbol 39 MovieClip "fourthLane" in Frame 3
onClipEvent (enterFrame) { if (_name != "fourthLane") { if (_root.timer) { this._x = this._x + _root.lane4Speed; if (this._x > 430) { this._x = -(30 + random(30)); this.gotoAndStop(random(5) + 1); } if (this.hitTest(_root.frogClip)) { _root.looseLife(); } } } }
Instance of Symbol 8 MovieClip "frog" in Frame 3
onClipEvent (load) { space = 1; } onClipEvent (enterFrame) { if (((_name != "frog") and (space == 1)) and (_root.timer == true)) { if (Key.isDown(38)) { _rotation = 0; _y = (_y - 35); space++; _root.frogSound.gotoAndPlay(2); } if (Key.isDown(39)) { _rotation = 90; _x = (_x + 35); space++; _root.frogSound.gotoAndPlay(2); } if (Key.isDown(40) and (_y < 380)) { _rotation = 180; _y = (_y + 35); space++; _root.frogSound.gotoAndPlay(2); } if (Key.isDown(37)) { _rotation = 270; _x = (_x - 35); space++; _root.frogSound.gotoAndPlay(2); } if ((this._x > 390) or (this._x < 10)) { _root.looseLife(); } switch (this._y) { case 170 : if (((!this.hitTest(_root.firstlogLane11)) and (!this.hitTest(_root.firstlogLane3))) and (!this.hitTest(_root.firstlogLane7))) { _root.looseLife(); } break; case 135 : if (((!this.hitTest(_root.secondlogLane4)) and (!this.hitTest(_root.secondlogLane12))) and (!this.hitTest(_root.secondlogLane8))) { _root.looseLife(); } break; case 100 : if ((!this.hitTest(_root.thirdlogLane19)) and (!this.hitTest(_root.thirdlogLane15))) { _root.looseLife(); } break; case 65 : if ((!this.hitTest(_root.fourthlogLane20)) and (!this.hitTest(_root.fourthlogLane16))) { _root.looseLife(); } break; case 30 : if (!(((((!this.hitTest(_root.firstCheck)) and (!this.hitTest(_root.secondCheck))) and (!this.hitTest(_root.thirdCheck))) and (!this.hitTest(_root.fourthCheck))) and (!this.hitTest(_root.fifthCheck)))) { break; } _root.looseLife(); } } } onClipEvent (keyUp) { space = 1; }
Instance of Symbol 51 MovieClip "firstlogLane" in Frame 3
onClipEvent (enterFrame) { if (_name != "firstlogLane") { if (_root.timer) { this._x = this._x - _root.log1Speed; if (this._x < -60) { this._x = 460 + random(30); } if (this.hitTest(_root.frogClip)) { _root.frogClip._x = _root.frogClip._x - _root.log1Speed; } } } }
Instance of Symbol 3 MovieClip [log0] "secondlogLane" in Frame 3
onClipEvent (enterFrame) { if (_name != "secondlogLane") { if (_root.timer) { this._x = this._x + _root.log2Speed; if (this._x > 460) { this._x = -(60 + random(30)); } if (this.hitTest(_root.frogClip)) { _root.frogClip._x = _root.frogClip._x + _root.log2Speed; } } } }
Instance of Symbol 56 MovieClip "thirdlogLane" in Frame 3
onClipEvent (enterFrame) { if (_name != "thirdlogLane") { if (_root.timer) { this._x = this._x - _root.log3Speed; if (this._x < -60) { this._x = 460 + random(30); } if (this.hitTest(_root.frogClip)) { _root.frogClip._x = _root.frogClip._x - _root.log3Speed; } } } }
Instance of Symbol 58 MovieClip "fourthlogLane" in Frame 3
onClipEvent (enterFrame) { if (_name != "fourthlogLane") { if (_root.timer) { this._x = this._x + _root.log4Speed; if (this._x > 460) { this._x = -(60 + random(30)); } if (this.hitTest(_root.frogClip)) { _root.frogClip._x = _root.frogClip._x + _root.log4Speed; } } } }
Instance of Symbol 61 MovieClip "timeGraph" in Frame 3
onClipEvent (enterFrame) { if (_root.timer) { this._width = this._width - ((0.1 * _root.level) / 2); if (this._width < 1) { _root.looseLife(); } } }
Instance of Symbol 66 MovieClip "firstCheck" in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 50; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 66 MovieClip "secondCheck" in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 50; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 66 MovieClip "thirdCheck" in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 50; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 66 MovieClip "fourthCheck" in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 50; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 66 MovieClip "fifthCheck" in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 50; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 74 MovieClip "gameSound" in Frame 3
onClipEvent (enterFrame) { _root.mySound.setVolume(_root.myslider.ratio); }
Instance of Symbol 83 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.score = _root.score + 300; _root.levelUp(); } else { _root.looseLife(); function () { if (checkPoints == 5) { gotoAndPlay (3); resetCheckPoints(); } }; } } }
Instance of Symbol 84 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.score = _root.score + 300; _root.levelUp(); } else { _root.looseLife(); } } } onClipEvent (load) { levelUp = function () { if (checkPoints == 5) { checkPoints = 0; score = score + 500; level++; levelUpClip.gotoAndPlay(1); lane1Speed = lane1Speed + 0.2; lane2Speed = lane2Speed + 0.2; lane3Speed = lane3Speed + 0.2; lane4Speed = lane4Speed + 0.2; log1Speed = log1Speed + 0.2; log2Speed = log2Speed + 0.2; log3Speed = log3Speed + 0.2; log4Speed = log4Speed + 0.2; resetCheckPoints(); } }; }
Instance of Symbol 85 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.score = _root.score + 300; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 86 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.score = _root.score + 300; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 87 MovieClip in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.score = _root.score + 300; _root.levelUp(); } else { _root.looseLife(); } } }
Frame 4
gotoAndStop (2);
Frame 5
_root.scoretable.filename = "scores/froggy.sco"; _root.scoretable.scoresize = 10; _root.scoretable.action = "INSERT"; _root.scoretable.viewtype = "FLASH"; _root.scoretable.winname = name; _root.scoretable.winscore = score; _root.scoretable.loadVariables("http://www.coolbm.com/scores.php", "GET"); stop(); fscommand ("allowscale", "false"); fscommand ("showmenu", "false"); mySound = new Sound(_root.gameSound); resetGame = function () { i = 1; lives = 3; level = 1; timer = true; lane1Speed = 1.5; lane2Speed = 1.5; lane3Speed = 2; lane4Speed = 2.5; log1Speed = 1; log2Speed = 1.5; log3Speed = 1; log4Speed = 1.5; checkPoints = 0; }; startGame = function () { x = 0; while (x < 3) { duplicateMovieClip (firstLane, "firstLane" + i, i); _root["firstLane" + i]._x = x * 1150; _root["firstLane" + i]._y = 1350; i++; duplicateMovieClip (secondLane, "secondLane" + i, i); _root["secondLane" + i]._x = x * 1170; _root["secondLane" + i]._y = 1315; i++; duplicateMovieClip (firstlogLane, "firstlogLane" + i, i); _root["firstlogLane" + i]._x = x * 1170; _root["firstlogLane" + i]._y = 1170; i++; duplicateMovieClip (secondlogLane, "secondlogLane" + i, i); _root["secondlogLane" + i]._x = x * 2100; _root["secondlogLane" + i]._y = 1135; i++; x++; } x = 0; while (x < 2) { duplicateMovieClip (thirdLane, "thirdLane" + i, i); _root["thirdLane" + i]._x = x * 2100; _root["thirdLane" + i]._y = 1280; i++; duplicateMovieClip (fourthLane, "fourthLane" + i, i); _root["fourthLane" + i]._x = x * 1200; _root["fourthLane" + i]._y = 1245; i++; duplicateMovieClip (thirdlogLane, "thirdlogLane" + i, i); _root["thirdlogLane" + i]._x = x * 1220; _root["thirdlogLane" + i]._y = 1100; i++; duplicateMovieClip (fourthlogLane, "fourthlogLane" + i, i); _root["fourthlogLane" + i]._x = x * 1240; _root["fourthlogLane" + i]._y = 1165; i++; x++; } }; placeFrog = function () { duplicateMovieClip (frog, "frogClip", 1000); _root.frogClip._x = 500; _root.frogClip._y = 800; }; looseLife = function () { timer = false; lives--; death._x = frogClip._x; death._y = frogClip._y; removeMovieClip(_root.frogClip); death.gotoAndPlay(2); }; levelUp = function () { if (checkPoints == 5) { checkPoints = 0; score = score + 500; level++; levelUpClip.gotoAndPlay(2); lane1Speed = lane1Speed + 0.2; lane2Speed = lane2Speed + 0.2; lane3Speed = lane3Speed + 0.2; lane4Speed = lane4Speed + 0.2; log1Speed = log1Speed + 0.2; log2Speed = log2Speed + 0.2; log3Speed = log3Speed + 0.2; log4Speed = log4Speed + 0.2; resetCheckPoints(); } }; resetCheckPoints = function () { firstCheck.gotoAndStop(1); secondCheck.gotoAndStop(1); thirdCheck.gotoAndStop(1); fourthCheck.gotoAndStop(1); fifthCheck.gotoAndStop(1); firstCheck.flag = false; secondCheck.flag = false; thirdCheck.flag = false; fourthCheck.flag = false; fifthCheck.flag = false; play(); }; resetGame(); startGame(); placeFrog(); stop(); stopAllSounds();
Symbol 13 Button
on (release) { _root.play(); }
Symbol 14 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop (3); }
Symbol 14 MovieClip Frame 2
gotoAndPlay (1);
Symbol 20 Button
on (release) { gotoAndStop (6); }
Symbol 29 Button
on (release) { gotoAndPlay (3); stopAllSounds(); }
Symbol 33 MovieClip Frame 1
stop();
Symbol 35 MovieClip Frame 1
stop();
Symbol 37 MovieClip Frame 1
stop();
Symbol 39 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 17
if (_root.lives > 0) { _root.timeGraph._width = 100; _root.timer = true; _root.placeFrog(); } else { _root.gameOverClip.gotoAndStop(2); }
Symbol 63 MovieClip Frame 1
stop();
Symbol 66 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 1
this.ratio = 100; dragger.onPress = function () { this.startDrag(true, 0, 0, line._width, 0); this.onEnterFrame = function () { ratio = Math.round(this._x); _root.ratiovalue = ratio; }; }; dragger.onRelease = (dragger.onreleaseOutside = stopDrag);
Symbol 74 MovieClip Frame 2
stop();
Symbol 74 MovieClip Frame 3
stop();
Symbol 83 MovieClip Frame 1
gotoAndPlay (31);
Symbol 83 MovieClip Frame 2
play();
Symbol 83 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 83 MovieClip Frame 398
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 82 MovieClip in Symbol 83 MovieClip Frame 1330
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Symbol 84 MovieClip Frame 1
gotoAndPlay (31);
Symbol 84 MovieClip Frame 2
play();
Symbol 84 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 84 MovieClip Frame 273
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 82 MovieClip in Symbol 84 MovieClip Frame 1119
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Symbol 85 MovieClip Frame 1
gotoAndPlay (31);
Symbol 85 MovieClip Frame 2
play();
Symbol 85 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 85 MovieClip Frame 113
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 82 MovieClip in Symbol 85 MovieClip Frame 959
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Symbol 86 MovieClip Frame 1
gotoAndPlay (31);
Symbol 86 MovieClip Frame 2
play();
Symbol 86 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 86 MovieClip Frame 1337
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 82 MovieClip in Symbol 86 MovieClip Frame 2183
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Symbol 87 MovieClip Frame 1
gotoAndPlay (31);
Symbol 87 MovieClip Frame 2
play();
Symbol 87 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 87 MovieClip Frame 643
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 82 MovieClip in Symbol 87 MovieClip Frame 1489
onClipEvent (enterFrame) { if (this.hitTest(_root.frogClip)) { if (!flag) { flag = true; this.gotoAndStop(2); _root.timeGraph._width = 100; _root.frogClip._x = 200; _root.frogClip._y = 380; _root.checkPoints++; _root.score = _root.score + 200; _root.levelUp(); } else { _root.looseLife(); } } }
Symbol 92 Button
on (release) { stopAllSounds(); gotoAndPlay (5); }
Symbol 109 Button
on (release) { gotoAndStop (6); }
Symbol 122 Button
on (release) { gotoAndStop (1); }

Library Items

Symbol 1 MovieClip [Empty]Used by:Timeline
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClip [log0]Uses:2Used by:Timeline
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:14
Symbol 6 GraphicUsed by:14
Symbol 7 GraphicUsed by:8 66  Timeline
Symbol 8 MovieClipUses:7Used by:14  Timeline
Symbol 9 GraphicUsed by:13
Symbol 10 GraphicUsed by:13
Symbol 11 GraphicUsed by:13
Symbol 12 GraphicUsed by:13
Symbol 13 ButtonUses:9 10 11 12Used by:14
Symbol 14 MovieClipUses:5 6 8 13Used by:Timeline
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:Timeline
Symbol 17 GraphicUsed by:20
Symbol 18 FontUsed by:19 21 22 24 59 67 78 79 93 97 98 99 100 101 102 103 104 105 106 112 114 115 118 119 121
Symbol 19 TextUses:18Used by:20
Symbol 20 ButtonUses:17 19Used by:Timeline
Symbol 21 TextUses:18Used by:Timeline
Symbol 22 TextUses:18Used by:Timeline
Symbol 23 GraphicUsed by:29
Symbol 24 TextUses:18Used by:29
Symbol 25 GraphicUsed by:29
Symbol 26 GraphicUsed by:29
Symbol 27 GraphicUsed by:29
Symbol 28 SoundUsed by:29  Timeline
Symbol 29 ButtonUses:23 24 25 26 27 28Used by:Timeline
Symbol 30 SoundUsed by:Timeline
Symbol 31 GraphicUsed by:Timeline
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:Timeline
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:Timeline
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:Timeline
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:Timeline
Symbol 40 GraphicUsed by:45
Symbol 41 GraphicUsed by:45
Symbol 42 GraphicUsed by:45
Symbol 43 GraphicUsed by:45
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:40 41 42 43 44 SS1Used by:Timeline
Symbol 46 GraphicUsed by:48
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:46 47Used by:51
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:51
Symbol 51 MovieClipUses:48 50Used by:Timeline
Symbol 52 GraphicUsed by:54
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:52 53Used by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:54 55Used by:Timeline
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:Timeline
Symbol 59 EditableTextUses:18Used by:Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:Timeline
Symbol 62 SoundUsed by:63
Symbol 63 MovieClipUses:62Used by:Timeline
Symbol 64 GraphicUsed by:66
Symbol 65 SoundUsed by:66
Symbol 66 MovieClipUses:64 7 65Used by:Timeline
Symbol 67 EditableTextUses:18Used by:Timeline
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:72
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:72
Symbol 72 MovieClipUses:69 71Used by:Timeline
Symbol 73 SoundUsed by:74
Symbol 74 MovieClipUses:73Used by:Timeline
Symbol 75 GraphicUsed by:Timeline
Symbol 76 GraphicUsed by:Timeline
Symbol 77 GraphicUsed by:Timeline
Symbol 78 EditableTextUses:18Used by:Timeline
Symbol 79 EditableTextUses:18Used by:83 84 85 86 87
Symbol 80 SoundUsed by:83 84 85 86 87
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:83 84 85 86 87
Symbol 83 MovieClipUses:79 80 82Used by:Timeline
Symbol 84 MovieClipUses:79 80 82Used by:Timeline
Symbol 85 MovieClipUses:79 80 82Used by:Timeline
Symbol 86 MovieClipUses:79 80 82Used by:Timeline
Symbol 87 MovieClipUses:79 80 82Used by:Timeline
Symbol 88 GraphicUsed by:Timeline
Symbol 89 GraphicUsed by:92
Symbol 90 GraphicUsed by:92
Symbol 91 GraphicUsed by:92
Symbol 92 ButtonUses:89 90 91Used by:Timeline
Symbol 93 TextUses:18Used by:Timeline
Symbol 94 GraphicUsed by:Timeline
Symbol 95 FontUsed by:96
Symbol 96 TextUses:95Used by:Timeline
Symbol 97 EditableTextUses:18Used by:107
Symbol 98 EditableTextUses:18Used by:107
Symbol 99 EditableTextUses:18Used by:107
Symbol 100 EditableTextUses:18Used by:107
Symbol 101 EditableTextUses:18Used by:107
Symbol 102 EditableTextUses:18Used by:107
Symbol 103 EditableTextUses:18Used by:107
Symbol 104 EditableTextUses:18Used by:107
Symbol 105 EditableTextUses:18Used by:107
Symbol 106 EditableTextUses:18Used by:107
Symbol 107 MovieClipUses:97 98 99 100 101 102 103 104 105 106Used by:Timeline
Symbol 108 GraphicUsed by:109
Symbol 109 ButtonUses:108Used by:Timeline
Symbol 110 FontUsed by:111
Symbol 111 TextUses:110Used by:Timeline
Symbol 112 TextUses:18Used by:Timeline
Symbol 113 GraphicUsed by:Timeline
Symbol 114 EditableTextUses:18Used by:Timeline
Symbol 115 TextUses:18Used by:Timeline
Symbol 116 BitmapUsed by:117
Symbol 117 GraphicUses:116Used by:Timeline
Symbol 118 EditableTextUses:18Used by:Timeline
Symbol 119 EditableTextUses:18Used by:Timeline
Symbol 120 GraphicUsed by:122
Symbol 121 TextUses:18Used by:122
Symbol 122 ButtonUses:120 121Used by:Timeline
Streaming Sound 1Used by:Symbol 45 MovieClip

Instance Names

"firstLane"Frame 3Symbol 33 MovieClip
"secondLane"Frame 3Symbol 35 MovieClip
"thirdLane"Frame 3Symbol 37 MovieClip
"fourthLane"Frame 3Symbol 39 MovieClip
"frog"Frame 3Symbol 8 MovieClip
"death"Frame 3Symbol 45 MovieClip
"firstlogLane"Frame 3Symbol 51 MovieClip
"secondlogLane"Frame 3Symbol 3 MovieClip [log0]
"thirdlogLane"Frame 3Symbol 56 MovieClip
"fourthlogLane"Frame 3Symbol 58 MovieClip
"timeGraph"Frame 3Symbol 61 MovieClip
"frogSound"Frame 3Symbol 63 MovieClip
"firstCheck"Frame 3Symbol 66 MovieClip
"secondCheck"Frame 3Symbol 66 MovieClip
"thirdCheck"Frame 3Symbol 66 MovieClip
"fourthCheck"Frame 3Symbol 66 MovieClip
"fifthCheck"Frame 3Symbol 66 MovieClip
"mySlider"Frame 3Symbol 72 MovieClip
"gameSound"Frame 3Symbol 74 MovieClip
"Poster"Frame 5Symbol 1 MovieClip [Empty]
"scoretable"Frame 5Symbol 107 MovieClip
"bar"Symbol 14 MovieClip Frame 1Symbol 5 MovieClip
"line"Symbol 72 MovieClip Frame 1Symbol 69 MovieClip
"dragger"Symbol 72 MovieClip Frame 1Symbol 71 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "Empty"
ExportAssets (56)Timeline Frame 1Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 3Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 5Symbol 1 as "Empty"

Labels

"loaded"Symbol 14 MovieClip Frame 3

Dynamic Text Variables

livesSymbol 59 EditableText""
scoreSymbol 67 EditableText""
NAME0Symbol 97 EditableText""
SCORE0Symbol 98 EditableText""
NAME1Symbol 99 EditableText""
SCORE1Symbol 100 EditableText""
NAME2Symbol 101 EditableText""
SCORE2Symbol 102 EditableText""
NAME3Symbol 103 EditableText""
SCORE3Symbol 104 EditableText""
NAME4Symbol 105 EditableText""
SCORE4Symbol 106 EditableText""




http://swfchan.com/8/38216/info.shtml
Created: 13/5 -2019 11:26:20 Last modified: 13/5 -2019 11:26:20 Server time: 11/05 -2024 13:45:59