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

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

Oldschool Frogger.swf

This is the info page for
Flash #46809

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


Text
Frogger

atch-co
ames

P

G

Lives:       Level:        Score:

Time:

LEVEL UP

GAME OVER

REPLAY

GAME OVER

Frogger
By: Patrick Coppolino
Patch-co Games
Press GAME OVER to Restart!

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
OnePercent = this.getBytesTotal() / 100; begTime = getTimer() / 1000; asize = getBytesTotal();
Frame 2
tellTarget ("Progress Bar") { with ("Progress Bar") { n = (getTimer() / 1000) - this.begTime; bps = Math.round(this.getBytesLoaded() / n); tr = (this.asize - this.getBytesLoaded()) / bps; trround = Math.floor(tr); trf = Math.round((tr - trround) * 100); trem = Math.floor(tr) + (trf / 100); } gotoAndStop(Math.round(this.getBytesLoaded() / _parent.OnePercent)); }; if (this.getBytesLoaded() >= this.getBytesTotal()) { gotoAndStop (5); }
Frame 3
gotoAndPlay ("CheckLoaded");
Frame 5
stop();
Frame 6
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 33 MovieClip "firstLane" in Frame 6
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 45 MovieClip "secondLane" in Frame 6
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 56 MovieClip "thirdLane" in Frame 6
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 65 MovieClip "fourthLane" in Frame 6
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 68 MovieClip "frog" in Frame 6
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 6
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 6
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 6
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 6
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 80 MovieClip "timeGraph" in Frame 6
onClipEvent (enterFrame) { if (_root.timer) { this._width = this._width - ((0.1 * _root.level) / 2); if (this._width < 1) { _root.looseLife(); } } }
Instance of Symbol 86 MovieClip "firstCheck" in Frame 6
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 86 MovieClip "secondCheck" in Frame 6
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 86 MovieClip "thirdCheck" in Frame 6
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 86 MovieClip "fourthCheck" in Frame 6
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 86 MovieClip "fifthCheck" in Frame 6
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 109 MovieClip "gameSound" in Frame 6
onClipEvent (enterFrame) { _root.mySound.setVolume(_root.myslider.ratio); }
Symbol 18 MovieClip Frame 92
_root.gotoAndStop("gamestart");
Symbol 33 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 1
stop();
Symbol 56 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 35
if (_root.lives > 0) { _root.timeGraph._width = 100; _root.timer = true; _root.placeFrog(); } else { _root.gameOverClip.gotoAndStop(2); }
Symbol 82 MovieClip Frame 1
stop();
Symbol 86 MovieClip Frame 1
stop();
Symbol 89 MovieClip Frame 1
stop();
Symbol 96 Button
on (press) { this.gotoAndStop(1); _root.resetGame(); _root.resetCheckPoints(); _root.timer = true; _root.placeFrog(); }
Symbol 102 MovieClip Frame 1
stop();
Symbol 107 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 109 MovieClip Frame 2
stop();
Symbol 109 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 FontUsed by:5
Symbol 5 TextUses:4Used by:Timeline
Symbol 6 GraphicUsed by:8
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:6 7Used by:Timeline
Symbol 9 GraphicUsed by:18
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:12
Symbol 12 MovieClipUses:11Used by:18
Symbol 13 FontUsed by:14 15 16
Symbol 14 TextUses:13Used by:17
Symbol 15 TextUses:13Used by:17
Symbol 16 TextUses:13Used by:17
Symbol 17 MovieClipUses:14 15 16Used by:18
Symbol 18 MovieClipUses:9 12 17 SS1Used by:Timeline
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:Timeline
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:33
Symbol 23 BitmapUsed by:24 44
Symbol 24 GraphicUses:23Used by:33
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:33
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:33
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:33
Symbol 31 BitmapUsed by:32 57
Symbol 32 GraphicUses:31Used by:33
Symbol 33 MovieClipUses:22 24 26 28 30 32Used by:Timeline
Symbol 34 BitmapUsed by:35
Symbol 35 GraphicUses:34Used by:45
Symbol 36 BitmapUsed by:37
Symbol 37 GraphicUses:36Used by:45
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:45
Symbol 40 BitmapUsed by:41
Symbol 41 GraphicUses:40Used by:45
Symbol 42 BitmapUsed by:43
Symbol 43 GraphicUses:42Used by:45
Symbol 44 GraphicUses:23Used by:45
Symbol 45 MovieClipUses:35 37 39 41 43 44Used by:Timeline
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:56
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:48Used by:56
Symbol 50 BitmapUsed by:51 64
Symbol 51 GraphicUses:50Used by:56
Symbol 52 BitmapUsed by:53
Symbol 53 GraphicUses:52Used by:56
Symbol 54 BitmapUsed by:55
Symbol 55 GraphicUses:54Used by:56
Symbol 56 MovieClipUses:47 49 51 53 55Used by:Timeline
Symbol 57 GraphicUses:31Used by:65
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:65
Symbol 60 BitmapUsed by:61
Symbol 61 GraphicUses:60Used by:65
Symbol 62 BitmapUsed by:63
Symbol 63 GraphicUses:62Used by:65
Symbol 64 GraphicUses:50Used by:65
Symbol 65 MovieClipUses:57 59 61 63 64Used by:Timeline
Symbol 66 BitmapUsed by:67
Symbol 67 GraphicUses:66Used by:68 84
Symbol 68 MovieClipUses:67Used by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:72
Symbol 71 SoundUsed by:72
Symbol 72 MovieClipUses:70 71Used by:Timeline
Symbol 73 FontUsed by:74 78
Symbol 74 TextUses:73Used by:Timeline
Symbol 75 FontUsed by:76 77 87 90
Symbol 76 EditableTextUses:75Used by:Timeline
Symbol 77 EditableTextUses:75Used by:Timeline
Symbol 78 TextUses:73Used by:Timeline
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79Used by:Timeline
Symbol 81 SoundUsed by:82
Symbol 82 MovieClipUses:81Used by:Timeline
Symbol 83 GraphicUsed by:86
Symbol 84 MovieClipUses:67Used by:86
Symbol 85 SoundUsed by:86
Symbol 86 MovieClipUses:83 84 85Used by:Timeline
Symbol 87 TextUses:75Used by:88
Symbol 88 MovieClipUses:87Used by:89
Symbol 89 MovieClipUses:88Used by:Timeline
Symbol 90 EditableTextUses:75Used by:Timeline
Symbol 91 FontUsed by:92 93 95
Symbol 92 TextUses:91Used by:96
Symbol 93 TextUses:91Used by:96
Symbol 94 GraphicUsed by:96
Symbol 95 TextUses:91Used by:96
Symbol 96 ButtonUses:92 93 94 95Used by:102
Symbol 97 FontUsed by:98 100
Symbol 98 TextUses:97Used by:101
Symbol 99 GraphicUsed by:101
Symbol 100 TextUses:97Used by:101
Symbol 101 MovieClipUses:98 99 100Used by:102
Symbol 102 MovieClipUses:96 101Used by:Timeline
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:107
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:107
Symbol 107 MovieClipUses:104 106Used by:Timeline
Symbol 108 SoundUsed by:109
Symbol 109 MovieClipUses:108Used by:Timeline
Streaming Sound 1Used by:Symbol 18 MovieClip

Instance Names

"Progress Bar"Frame 2Symbol 8 MovieClip
"firstLane"Frame 6Symbol 33 MovieClip
"secondLane"Frame 6Symbol 45 MovieClip
"thirdLane"Frame 6Symbol 56 MovieClip
"fourthLane"Frame 6Symbol 65 MovieClip
"frog"Frame 6Symbol 68 MovieClip
"death"Frame 6Symbol 72 MovieClip
"firstlogLane"Frame 6Symbol 3 MovieClip [log0]
"secondlogLane"Frame 6Symbol 3 MovieClip [log0]
"thirdlogLane"Frame 6Symbol 3 MovieClip [log0]
"fourthlogLane"Frame 6Symbol 3 MovieClip [log0]
"timeGraph"Frame 6Symbol 80 MovieClip
"frogSound"Frame 6Symbol 82 MovieClip
"firstCheck"Frame 6Symbol 86 MovieClip
"secondCheck"Frame 6Symbol 86 MovieClip
"thirdCheck"Frame 6Symbol 86 MovieClip
"fourthCheck"Frame 6Symbol 86 MovieClip
"fifthCheck"Frame 6Symbol 86 MovieClip
"levelUpClip"Frame 6Symbol 89 MovieClip
"gameOverClip"Frame 6Symbol 102 MovieClip
"mySlider"Frame 6Symbol 107 MovieClip
"gameSound"Frame 6Symbol 109 MovieClip
"line"Symbol 107 MovieClip Frame 1Symbol 104 MovieClip
"dragger"Symbol 107 MovieClip Frame 1Symbol 106 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$ow$lrJHA/4Lw1L4PmAIpLrDK1."
ExportAssets (56)Timeline Frame 1Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 6Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 6Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 6Symbol 3 as "log0"
ExportAssets (56)Timeline Frame 6Symbol 3 as "log0"

Labels

"CheckLoaded"Frame 2
"gamestart"Frame 6

Dynamic Text Variables

livesSymbol 76 EditableText""
levelSymbol 77 EditableText""
scoreSymbol 90 EditableText""




http://swfchan.com/10/46809/info.shtml
Created: 3/5 -2019 00:49:08 Last modified: 3/5 -2019 00:49:08 Server time: 17/05 -2024 10:38:59