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

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

Frogger Game.swf

This is the info page for
Flash #31275

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


Text
Lives:       Level:        Score:

Time:

LEVEL UP

GAME OVER

REPLAY

GAME OVER

Frogger
Made by LightForce & X-Girl
http://www.freestuff.gr/lightforce
http://users.freestuff.gr/helen
Contact us:
kouvaraki@yahoo.gr
click GAMEOVER to restart

ActionScript [AS1/AS2]

Frame 1
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 () { var _local1 = _root; x = 0; while (x < 3) { duplicateMovieClip (firstLane, "firstLane" + i, i); _local1["firstLane" + i]._x = x * 150; _local1["firstLane" + i]._y = 350; i++; duplicateMovieClip (secondLane, "secondLane" + i, i); _local1["secondLane" + i]._x = x * 170; _local1["secondLane" + i]._y = 315; i++; duplicateMovieClip (firstlogLane, "firstlogLane" + i, i); _local1["firstlogLane" + i]._x = x * 170; _local1["firstlogLane" + i]._y = 170; i++; duplicateMovieClip (secondlogLane, "secondlogLane" + i, i); _local1["secondlogLane" + i]._x = x * 200; _local1["secondlogLane" + i]._y = 135; i++; x++; } x = 0; while (x < 2) { duplicateMovieClip (thirdLane, "thirdLane" + i, i); _local1["thirdLane" + i]._x = x * 200; _local1["thirdLane" + i]._y = 280; i++; duplicateMovieClip (fourthLane, "fourthLane" + i, i); _local1["fourthLane" + i]._x = x * 200; _local1["fourthLane" + i]._y = 245; i++; duplicateMovieClip (thirdlogLane, "thirdlogLane" + i, i); _local1["thirdlogLane" + i]._x = x * 220; _local1["thirdlogLane" + i]._y = 100; i++; duplicateMovieClip (fourthlogLane, "fourthlogLane" + i, i); _local1["fourthlogLane" + i]._x = x * 240; _local1["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 + 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; }; resetGame(); startGame(); placeFrog(); stop();
Instance of Symbol 18 MovieClip "firstLane" in Frame 1
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 30 MovieClip "secondLane" in Frame 1
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 41 MovieClip "thirdLane" in Frame 1
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 50 MovieClip "fourthLane" in Frame 1
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 53 MovieClip "frog" in Frame 1
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 3 MovieClip [log0] "firstlogLane" in Frame 1
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 1
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 3 MovieClip [log0] "thirdlogLane" in Frame 1
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 3 MovieClip [log0] "fourthlogLane" in Frame 1
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 65 MovieClip "timeGraph" in Frame 1
onClipEvent (enterFrame) { if (_root.timer) { this._width = this._width - ((0.1 * _root.level) / 2); if (this._width < 1) { _root.looseLife(); } } }
Instance of Symbol 71 MovieClip "firstCheck" in Frame 1
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 + 100; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 71 MovieClip "secondCheck" in Frame 1
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 + 100; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 71 MovieClip "thirdCheck" in Frame 1
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 + 100; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 71 MovieClip "fourthCheck" in Frame 1
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 + 100; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 71 MovieClip "fifthCheck" in Frame 1
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 + 100; _root.levelUp(); } else { _root.looseLife(); } } }
Instance of Symbol 93 MovieClip "gameSound" in Frame 1
onClipEvent (enterFrame) { _root.mySound.setVolume(_root.myslider.ratio); }
Symbol 18 MovieClip Frame 1
stop();
Symbol 30 MovieClip Frame 1
stop();
Symbol 41 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 1
stop();
Symbol 57 MovieClip Frame 1
stop();
Symbol 57 MovieClip Frame 35
if (_root.lives > 0) { _root.timeGraph._width = 100; _root.timer = true; _root.placeFrog(); } else { _root.gameOverClip.gotoAndStop(2); }
Symbol 67 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 74 MovieClip Frame 1
stop();
Symbol 81 Button
on (press) { this.gotoAndStop(1); _root.resetGame(); _root.resetCheckPoints(); _root.timer = true; _root.placeFrog(); }
Symbol 86 MovieClip Frame 1
stop();
Symbol 91 MovieClip Frame 1
this.ratio = 100; dragger.onPress = function () { var _local1 = this; _local1.startDrag(true, 0, 0, line._width, 0); _local1.onEnterFrame = function () { ratio = Math.round(this._x); _root.ratiovalue = ratio; }; }; dragger.onRelease = (dragger.onreleaseOutside = stopDrag);
Symbol 93 MovieClip Frame 2
stop();
Symbol 93 MovieClip Frame 3
stop();

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:3
Symbol 3 MovieClip [log0]Uses:2Used by:Timeline
Symbol 4 BitmapUsed by:5
Symbol 5 GraphicUses:4Used by:Timeline
Symbol 6 BitmapUsed by:7
Symbol 7 GraphicUses:6Used by:18
Symbol 8 BitmapUsed by:9 29
Symbol 9 GraphicUses:8Used by:18
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:18
Symbol 12 BitmapUsed by:13
Symbol 13 GraphicUses:12Used by:18
Symbol 14 BitmapUsed by:15
Symbol 15 GraphicUses:14Used by:18
Symbol 16 BitmapUsed by:17 42
Symbol 17 GraphicUses:16Used by:18
Symbol 18 MovieClipUses:7 9 11 13 15 17Used by:Timeline
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:30
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:30
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:30
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:30
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:30
Symbol 29 GraphicUses:8Used by:30
Symbol 30 MovieClipUses:20 22 24 26 28 29Used by:Timeline
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:41
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:41
Symbol 35 BitmapUsed by:36 49
Symbol 36 GraphicUses:35Used by:41
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:41
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:41
Symbol 41 MovieClipUses:32 34 36 38 40Used by:Timeline
Symbol 42 GraphicUses:16Used by:50
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:50
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:50
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:50
Symbol 49 GraphicUses:35Used by:50
Symbol 50 MovieClipUses:42 44 46 48 49Used by:Timeline
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:53 69
Symbol 53 MovieClipUses:52Used by:Timeline
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:57
Symbol 56 SoundUsed by:57
Symbol 57 MovieClipUses:55 56Used by:Timeline
Symbol 58 FontUsed by:59 63
Symbol 59 TextUses:58Used by:Timeline
Symbol 60 FontUsed by:61 62 72 75
Symbol 61 EditableTextUses:60Used by:Timeline
Symbol 62 EditableTextUses:60Used by:Timeline
Symbol 63 TextUses:58Used by:Timeline
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:Timeline
Symbol 66 SoundUsed by:67
Symbol 67 MovieClipUses:66Used by:Timeline
Symbol 68 GraphicUsed by:71
Symbol 69 MovieClipUses:52Used by:71
Symbol 70 SoundUsed by:71
Symbol 71 MovieClipUses:68 69 70Used by:Timeline
Symbol 72 TextUses:60Used by:73
Symbol 73 MovieClipUses:72Used by:74
Symbol 74 MovieClipUses:73Used by:Timeline
Symbol 75 EditableTextUses:60Used by:Timeline
Symbol 76 FontUsed by:77 78 80
Symbol 77 TextUses:76Used by:81
Symbol 78 TextUses:76Used by:81
Symbol 79 GraphicUsed by:81
Symbol 80 TextUses:76Used by:81
Symbol 81 ButtonUses:77 78 79 80Used by:86
Symbol 82 FontUsed by:83
Symbol 83 TextUses:82Used by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:83 84Used by:86
Symbol 86 MovieClipUses:81 85Used by:Timeline
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:91
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:91
Symbol 91 MovieClipUses:88 90Used by:Timeline
Symbol 92 SoundUsed by:93
Symbol 93 MovieClipUses:92Used by:Timeline

Instance Names

"firstLane"Frame 1Symbol 18 MovieClip
"secondLane"Frame 1Symbol 30 MovieClip
"thirdLane"Frame 1Symbol 41 MovieClip
"fourthLane"Frame 1Symbol 50 MovieClip
"frog"Frame 1Symbol 53 MovieClip
"death"Frame 1Symbol 57 MovieClip
"firstlogLane"Frame 1Symbol 3 MovieClip [log0]
"secondlogLane"Frame 1Symbol 3 MovieClip [log0]
"thirdlogLane"Frame 1Symbol 3 MovieClip [log0]
"fourthlogLane"Frame 1Symbol 3 MovieClip [log0]
"timeGraph"Frame 1Symbol 65 MovieClip
"frogSound"Frame 1Symbol 67 MovieClip
"firstCheck"Frame 1Symbol 71 MovieClip
"secondCheck"Frame 1Symbol 71 MovieClip
"thirdCheck"Frame 1Symbol 71 MovieClip
"fourthCheck"Frame 1Symbol 71 MovieClip
"fifthCheck"Frame 1Symbol 71 MovieClip
"levelUpClip"Frame 1Symbol 74 MovieClip
"gameOverClip"Frame 1Symbol 86 MovieClip
"mySlider"Frame 1Symbol 91 MovieClip
"gameSound"Frame 1Symbol 93 MovieClip
"line"Symbol 91 MovieClip Frame 1Symbol 88 MovieClip
"dragger"Symbol 91 MovieClip Frame 1Symbol 90 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$C1$K9j/KBmfpciNPd6r48F0W1."
ExportAssets (56)Timeline Frame 1Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 1Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 1Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 1Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 1Symbol 3 as "log0"

Dynamic Text Variables

livesSymbol 61 EditableText""
levelSymbol 62 EditableText""
scoreSymbol 75 EditableText""




http://swfchan.com/7/31275/info.shtml
Created: 18/5 -2019 18:53:58 Last modified: 18/5 -2019 18:53:58 Server time: 29/04 -2024 05:08:00