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

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

speedfishing.swf

This is the info page for
Flash #31427

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


Text
FLASH

FUN

PAGES

.COM

loading, please wait...

PLAY

INSTRUCTIONS

Speed Fishing

Speed Fishing

FINAL SCORE

1234

Betty has been challenged by her friends to prove her skills in fishing.

The goal is to catch as many fish as possible in 5 minutes.

Quickness and the hand eye coordination comes into play in this game.

Objective

Controls

Move the mouse Right & left to move the boat.

Click on the mouse to lower the fishing string into the water.

Click and hold the mouse to move the string as low as you want.

ActionScript [AS1/AS2]

Frame 1
stop();
Instance of Symbol 126 MovieClip in Frame 1
onClipEvent (enterFrame) { if (_root.getBytesLoaded() >= _root.getBytesTotal()) { _root.gotoAndPlay(2); } else { this.gotoAndStop(Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * this._totalframes)); } }
Frame 3
fishnum = 0; this.timer = createEmptyMovieClip("timer", 400); this.timer.running = false; this.timer.speed = 1; var f; timer.init = function (timeTotal) { this.maxTime = 100000 /* 0x0186A0 */; this.timeTotal = timeTotal * 3280; this.timeStart = getTimer(); _root.timeLeft = this.timeTotal; this.running = false; this.update(); }; timer.onEnterFrame = function () { if (_root.paused) { this.timestamp = getTimer(); return(undefined); } _global.dt = (((getTimer() - this.timestamp) / 33) * 0.3) + (_global.dt * 0.7); this.timestamp = getTimer(); if (this.running) { _root.timeLeft = _root.timeLeft - ((_global.dt * 36) * this.speed); } this.update(); }; fishspeed = function () { if (timer.running) { var s = (((Math.random() * (proto.vMax - proto.vMin)) + proto.vMin) * ((Math.random() > 0.5) ? 2 : 0)); s++; } }; timer.update = function () { if (_root.paused) { return(undefined); } _root.timeLeftDisplay = int(_root.timeLeft / 1000); f = int((_root.timeLeft / this.maxTime) * 400) + 1; _root.timeMc.gotoAndStop(f); if ((_root.timeLeft < 30000) && (_root.timeLeft > 0)) { _root.snd.playLoop("sndTicking", 1); } else { _root.snd.stop("sndTicking"); } if ((_root.timeLeft <= -0.5) && (this.running)) { _root.snd.stop("sndTicking"); this.running = false; _root.timeOut(); } }; timer.alter = function (d) { _root.timeLeft = Math.min(this.maxTime, Math.max(0, _root.timeLeft + d)); fishspeed(); this.update(); }; timer.timestamp = getTimer(); snd = new Object(); snd.lib = new Array(); snd.libMc = new Array(); snd.mcCount = 0; snd.active = 1; snd.mc = _root.createEmptyMovieClip("sndMc", 97); s = new Sound(); s.setVolume(100); snd.load = function (id) { this.libMc[id] = this.mc.createEmptyMovieClip("snd" + this.mcCount, 15 + this.mcCount); this.mcCount++; this.lib[id] = new Sound(this.libMc[id]); this.lib[id].attachSound(id); }; snd.play = function (id, volume) { if (volume === undefined) { volume = 1; } volume = Math.max(0, Math.min(1, volume)); this.lib[id].start(id); this.lib[id].setVolume(volume * 100); }; snd.playLoop = function (id, volume) { if (_root.snd.libMc[id].playing == 1) { return(undefined); } if (volume === undefined) { volume = 1; } volume = Math.max(0, Math.min(1, volume)); this.lib[id].start(id, 99999); this.lib[id].setVolume(volume * 100); this.libMc[id].playing = 1; }; snd.playEvent = function (id, volume) { if (volume === undefined) { volume = 1; } volume = Math.max(0, Math.min(1, volume)); var s = new Sound(); s.attachSound(id); s.setVolume(volume * 100); s.start(); }; snd.stop = function (id) { this.lib[id].stop(); this.libMc[id].playing = 0; }; snd.load("sndWater"); snd.load("sndIntake"); snd.load("sndThunder"); snd.load("sndScore"); snd.load("sndBonus"); snd.load("sndMalus"); snd.load("sndTicking"); snd.load("sndBell"); hook = new Object(); hook.init = function () { this.x = 0; this.vy = 8; this.maxY = 370; this.minY = 60; this.y = this.minY; this.mc = _root.hookMc; }; hook.redraw = function () { this.mc._x = this.x; this.mc._y = this.y; }; hook.move = function () { if (_root.mouseIsDown) { this.y = this.y + (this.vy * _global.dt); if (this.y > this.maxY) { this.y = this.maxY; _root.handlerMouseUp(); } } else { this.y = this.y - (this.vy * _global.dt); } if (this.y <= this.minY) { this.y = this.minY; this.clearFish = true; } else { this.clearFish = false; } }; boat = new Object(); boat.init = function () { this.mc = _root.boatMc; this.vx = 7; this.x = 275; this.maxX = 560; this.minX = 30; _root.hook.init(); }; boat.move = function () { if ((Key.isDown(37) || (Key.isDown(39))) || (Key.isDown(32))) { _root.osd.gotoAndPlay("quickhelp"); } if (Math.abs(this.x - _root._xmouse) < this.vx) { this.x = _root._xmouse; } else { if (this.x < _root._xmouse) { this.x = this.x + (this.vx * _global.dt); } if (this.x > _root._xmouse) { this.x = this.x - (this.vx * _global.dt); } if (this.x > this.maxX) { this.x = this.maxX; } if (this.x < this.minX) { this.x = this.minX; } } }; boat.redraw = function () { this.mc._x = this.x; this.mc._y = this.y; var point = {x:this.mc.boatMc.rod._x, y:this.mc.boatMc.rod._y}; this.mc.boatMc.localToGlobal(point); _root.hook.x = point.x; _root.hook.redraw(); var mc = _root.threadMc; mc.clear(); mc.lineStyle(1, 16777215, 100); mc.moveTo(point.x, point.y); mc.lineTo(hook.x, hook.y); }; fish = new Object(); fish.protos = new Array(); fish.protos[0] = {vMax:5, vMin:2, score:2.1}; fish.protos[1] = {vMax:5, vMin:2, score:1.9}; fish.protos[2] = {vMax:5, vMin:2, score:1.5}; fish.protos[3] = {vMax:5, vMin:2, score:1.7}; fish.protos[4] = {vMax:5, vMin:2, score:2.3}; fish.protos[5] = {vMax:5, vMin:2, score:2.5, ground:1}; fish.protos[6] = {vMax:2.5, vMin:1, score:2.5}; fish.protos[7] = {vMax:2, vMin:0.5, score:2.5}; fish.typesAmount = fish.protos.length; fish.borderX0 = -100; fish.borderX1 = 650; fish.init = function () { this.mc = _root.fishMc; this.mc.clear(); for (var i in this.mc) { this.mc[i].removeMovieClip(); } this.fishCount = 0; this.bubbleCount = 0; var amount = (5 + random(3)); var i = 0; while (i < amount) { this.create({freePos:1}); i++; } }; fish.create = function (params) { var id = random(this.typesAmount); var proto = this.protos[id]; var fish = this.mc.attachMovie("fish" + id, "fish" + this.fishCount, this.fishCount); fish.proto = proto; fish.proto.id = id; fish.onEnterFrame = _root.fishMover; if (f >= 1000) { fish.speed = 10; } else if ((f >= 740) && (f < 1000)) { fish.speed = 13; } else if ((f >= 480) && (f < 740)) { fish.speed = 16; } else if ((f >= 220) && (f < 480)) { fish.speed = 18; } else { fish.speed = 21; } trace(fish.speed); trace("f" + f); var scale = ((Math.random() * 50) + 50); fish._xscale = scale * ((fish.speed > 0) ? -1 : 1); fish._yscale = scale; if (proto.score < 0) { fish._rotation = random(360); } else { _root.fishAmount++; } fish.hookRotation = ((fish.speed > 0) ? -10 : 10); fish.hookRotationSteps = 9; this.fishCount++; fish._y = 130 + (Math.random() * 220); if (proto.ground) { fish._y = 370; } if (params.freePos) { fish._x = Math.random() * 550; } else { fish._x = ((fish.speed > 0) ? (this.borderX0) : (this.borderX1)); } }; fishMover = function () { if (this.hooked) { this._x = _root.hook.x; this._y = _root.hook.y + 10; if ((this.hookRotationSteps--) > 0) { this._rotation = this._rotation + this.hookRotation; } if (_root.hook.clearFish) { _root.score(int(this.proto.score * Math.abs(this._xscale)), this.proto.id); if (this.proto.score > 0) { _root.fishAmount--; } this.removeMovieClip(); } } else { if ((this.proto.score > 0) && (Math.random() < 0.02)) { var mc = _root.bubblesMc.attachMovie("bubble", "bubble" + _root.fish.bubbleCount, _root.fish.bubbleCount); mc._x = this._x + (this.vx * 3); mc._y = this._y; mc.onEnterFrame = _root.bubbleMover; mc._xscale = 50 + random(50); mc._yscale = mc._xscale; mc.x = mc._x; mc.actAge = 0; _root.fish.bubbleCount++; } this._x = this._x + this.speed; if ((this._x > _root.fish.borderX1) || (this._x < _root.fish.borderX0)) { this.removeMovieClip(); if (this.proto.score > 0) { _root.fishAmount--; } } } }; bubbleMover = function () { this.actAge = this.actAge + _global.dt; this._y = this._y - (this._xscale / 30); this._x = this.x + (((Math.sin((this.actAge * 10) / this._xscale) * 2) * this._xscale) / 50); if (this._y < 100) { this.removeMovieClip(); } }; score = function (points, id) { _root.actScore = _root.actScore + points; _root.actCatch = _root.actCatch + points; if (id ne "") { _root.actCatchHistory.push(id); } }; init = function () { this.boat.init(); this.fish.init(); this.showMenu(); _root.snd.playLoop("sndWater"); }; resetGame = function () { _root.actScore = 0; this.score(0); fishnum = 0; this.timer.init(100); }; showMenu = function () { this.resetGame(); _root.osd.gotoAndStop("menu"); }; submitScore = function () { _global.api.highscore.submit(_root.gameName, "", _root.actScore, 0); }; startGame = function () { this.resetGame(); this.cleanUp(); this.boat.init(); _root.osd.gotoAndStop("invisible"); this.actScore = 0; _root.actCatch = 0; _root.actCatchHistory = new Array(); this.timer.running = true; this.onEnterFrame = stepMain; this.onMouseDown = handlerMouseDown; this.onMouseUp = handlerMouseUp; }; stepMain = function () { this.boat.move(); this.hook.move(); this.boat.redraw(); if ((!_root.mouseIsDown) && (_root.fishMc.hitTest(this.hook.x, this.hook.y + 10, true))) { for (var i in _root.fishMc) { if ((_root.fishMc[i].hitTest(this.hook.x, this.hook.y + 10, true) || (_root.fishMc[i].hitTest(this.hook.x, this.hook.y + 8, true))) || (_root.fishMc[i].hitTest(this.hook.x, this.hook.y + 6, true))) { var fish = _root.fishMc[i]; fish.hooked = true; } } } if (int(_root.actCatch) != 0) { trace("? " + _root.actCatchHistory.length); fishnum = fishnum + _root.actCatchHistory.length; var multicatch = (_root.actCatchHistory.length > 1); var i = 1; while (i < _root.actCatchHistory.length) { if (_root.actCatchHistory[i] != _root.actCatchHistory[i - 1]) { multicatch = 0; fishnum + _root.actCatchHistory.length; break; } i++; } _root.actCatchDisplay = _root.actCatch; _root.actCatch = 0; _root.actCatchHistory = new Array(); _root.catchDisplay._x = _root.boatMc._x; } var resource = 0; for (var i in _root.fishMc) { if (_root.fishMc[i].proto.score > 0) { resource++; } } if ((Math.random() < 0.04) || (resource < 3)) { fish.create(f); } }; timeOut = function () { _root.snd.stop("sndIntake"); _root.snd.stop("sndTicking"); _root.snd.play("sndBell", 1); _root.onEnterFrame = undefined; _root.osd.gotoAndPlay("gameover"); }; cleanUp = function () { for (var i in _root.fishMc) { var fish = _root.fishMc[i]; if (fish.hooked) { fish.removeMovieClip(); } } }; handlerMouseDown = function () { if (_root.onEnterFrame == _root.stepMain) { _root.snd.playLoop("sndIntake", 0.3); } _root.mouseIsDown = true; }; handlerMouseUp = function () { if (_root.onEnterFrame == _root.stepMain) { _root.snd.stop("sndIntake"); } _root.mouseIsDown = false; }; startPhase = function (f) { f.init(); this.onEnterFrame = f; this.phase = 0; this.phaseDelay = 0; }; stop(); init();
Frame 4
stop();
Symbol 117 MovieClip Frame 14
stop();
Symbol 127 MovieClip Frame 1
stop();
Symbol 150 Button
on (release) { _root.startGame(); }
Symbol 154 Button
on (release) { _root.gotoAndPlay("ins"); }
Symbol 155 MovieClip Frame 120
stop();
Symbol 177 Button
on (release) { _root.startGame(); }
Symbol 180 MovieClip Frame 1
stop();
Symbol 182 MovieClip Frame 1
stop();
Symbol 182 MovieClip Frame 14
stop();
Symbol 182 MovieClip Frame 20
stop();
Symbol 182 MovieClip Frame 45
gotoAndStop (6);
Symbol 182 MovieClip Frame 66
stop();
Symbol 187 Button
on (release) { getURL ("http://www.Flashfunpages.com/", "_top"); }
Symbol 196 MovieClip Frame 1
stop();
Symbol 226 Button
on (release) { gotoAndPlay (2); }

Library Items

Symbol 1 GraphicUsed by:9
Symbol 2 GraphicUsed by:9
Symbol 3 GraphicUsed by:9
Symbol 4 GraphicUsed by:9
Symbol 5 GraphicUsed by:9
Symbol 6 GraphicUsed by:9
Symbol 7 GraphicUsed by:9
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClip [fish7]Uses:1 2 3 4 5 6 7 8
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClip [bubble]Uses:10Used by:127
Symbol 12 GraphicUsed by:21
Symbol 13 GraphicUsed by:21 43
Symbol 14 GraphicUsed by:21
Symbol 15 GraphicUsed by:21 42
Symbol 16 GraphicUsed by:21
Symbol 17 GraphicUsed by:21
Symbol 18 GraphicUsed by:21
Symbol 19 GraphicUsed by:21
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClip [fish6]Uses:12 13 14 15 16 17 18 19 20Used by:127 155
Symbol 22 GraphicUsed by:31
Symbol 23 GraphicUsed by:31
Symbol 24 GraphicUsed by:31
Symbol 25 GraphicUsed by:31
Symbol 26 GraphicUsed by:31
Symbol 27 GraphicUsed by:31
Symbol 28 GraphicUsed by:31
Symbol 29 GraphicUsed by:31
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:22 23 24 25 26 27 28 29 30Used by:32
Symbol 32 MovieClipUses:31Used by:34
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClip [fish5]Uses:32 33Used by:127
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:43
Symbol 37 GraphicUsed by:42
Symbol 38 GraphicUsed by:42
Symbol 39 GraphicUsed by:42
Symbol 40 GraphicUsed by:42
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:37 15 38 39 40 41Used by:43
Symbol 43 MovieClip [fish4]Uses:13 36 42Used by:127 171
Symbol 44 GraphicUsed by:51 53
Symbol 45 GraphicUsed by:51
Symbol 46 GraphicUsed by:51
Symbol 47 GraphicUsed by:51
Symbol 48 GraphicUsed by:51
Symbol 49 GraphicUsed by:51
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:44 45 46 47 48 49 50Used by:53
Symbol 52 GraphicUsed by:53 62
Symbol 53 MovieClip [fish3]Uses:51 52 44Used by:127
Symbol 54 GraphicUsed by:61 62
Symbol 55 GraphicUsed by:61
Symbol 56 GraphicUsed by:61
Symbol 57 GraphicUsed by:61
Symbol 58 GraphicUsed by:61
Symbol 59 GraphicUsed by:61
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:54 55 56 57 58 59 60Used by:62
Symbol 62 MovieClipUses:61 52 54Used by:65
Symbol 63 GraphicUsed by:65
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClip [fish2]Uses:62 63 64Used by:127
Symbol 66 GraphicUsed by:76
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:76
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:76
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:76
Symbol 73 GraphicUsed by:76
Symbol 74 GraphicUsed by:76
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:66 68 70 72 73 74 75Used by:77
Symbol 77 MovieClip [fish1]Uses:76Used by:127
Symbol 78 GraphicUsed by:87
Symbol 79 GraphicUsed by:87
Symbol 80 GraphicUsed by:87
Symbol 81 GraphicUsed by:87
Symbol 82 GraphicUsed by:87
Symbol 83 GraphicUsed by:87
Symbol 84 GraphicUsed by:87
Symbol 85 GraphicUsed by:87
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:78 79 80 81 82 83 84 85 86Used by:88
Symbol 88 MovieClip [fish0]Uses:87Used by:127
Symbol 89 GraphicUsed by:Timeline
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:92
Symbol 92 MovieClipUses:91Used by:Timeline
Symbol 93 GraphicUsed by:101
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:101
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:101
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:101
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:93 95 97 99 100Used by:Timeline
Symbol 102 GraphicUsed by:108
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:108
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:108
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:102 104 106 107Used by:Timeline
Symbol 109 GraphicUsed by:116
Symbol 110 FontUsed by:111 112 113
Symbol 111 EditableTextUses:110Used by:116
Symbol 112 EditableTextUses:110Used by:116
Symbol 113 EditableTextUses:110Used by:116
Symbol 114 FontUsed by:115 118
Symbol 115 EditableTextUses:114Used by:116
Symbol 116 MovieClipUses:109 111 112 113 115Used by:117
Symbol 117 MovieClipUses:116Used by:Timeline
Symbol 118 EditableTextUses:114Used by:Timeline
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:Timeline
Symbol 121 GraphicUsed by:126
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:126
Symbol 124 ShapeTweeningUsed by:126
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:121 123 124 125Used by:Timeline
Symbol 127 MovieClipUses:88 77 65 53 43 34 21 11Used by:Timeline
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:182  Timeline
Symbol 130 GraphicUsed by:182
Symbol 131 GraphicUsed by:144 155
Symbol 132 GraphicUsed by:144 155
Symbol 133 GraphicUsed by:144 155
Symbol 134 GraphicUsed by:144 155
Symbol 135 GraphicUsed by:144 155
Symbol 136 MovieClipUsed by:144 155
Symbol 137 GraphicUsed by:144 155
Symbol 138 GraphicUsed by:144 155
Symbol 139 GraphicUsed by:144 155
Symbol 140 GraphicUsed by:144 155
Symbol 141 GraphicUsed by:144 155
Symbol 142 GraphicUsed by:144 155
Symbol 143 GraphicUsed by:144 155
Symbol 144 MovieClipUses:131 132 133 134 135 136 137 138 139 140 141 142 143Used by:155 196
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:155
Symbol 147 FontUsed by:148 151 169 170
Symbol 148 TextUses:147Used by:150
Symbol 149 GraphicUsed by:150
Symbol 150 ButtonUses:148 149Used by:155
Symbol 151 TextUses:147Used by:153 154
Symbol 152 GraphicUsed by:153 154
Symbol 153 ButtonUses:151 152Used by:155
Symbol 154 ButtonUses:151 152Used by:155
Symbol 155 MovieClipUses:144 21 131 132 133 134 135 136 137 138 139 140 141 142 143 146 150 153 154Used by:156
Symbol 156 MovieClipUses:155Used by:182
Symbol 157 GraphicUsed by:182
Symbol 158 GraphicUsed by:168
Symbol 159 ShapeTweeningUsed by:168 192
Symbol 160 SoundUsed by:168
Symbol 161 GraphicUsed by:168
Symbol 162 GraphicUsed by:168
Symbol 163 ShapeTweeningUsed by:168 192
Symbol 164 GraphicUsed by:168
Symbol 165 GraphicUsed by:168
Symbol 166 GraphicUsed by:168
Symbol 167 GraphicUsed by:168 192
Symbol 168 MovieClipUses:158 159 160 161 162 163 164 165 166 167Used by:182  Timeline
Symbol 169 TextUses:147Used by:171
Symbol 170 TextUses:147Used by:171
Symbol 171 MovieClipUses:169 170 43Used by:182
Symbol 172 GraphicUsed by:180
Symbol 173 GraphicUsed by:180
Symbol 174 GraphicUsed by:177
Symbol 175 GraphicUsed by:177
Symbol 176 GraphicUsed by:177
Symbol 177 ButtonUses:174 175 176Used by:180
Symbol 178 FontUsed by:179 181
Symbol 179 EditableTextUses:178Used by:180
Symbol 180 MovieClipUses:172 173 177 179Used by:182
Symbol 181 TextUses:178Used by:182
Symbol 182 MovieClipUses:129 130 156 157 168 171 180 181Used by:Timeline
Symbol 183 GraphicUsed by:187
Symbol 184 GraphicUsed by:187
Symbol 185 GraphicUsed by:187
Symbol 186 GraphicUsed by:187
Symbol 187 ButtonUses:183 184 185 186Used by:Timeline
Symbol 188 GraphicUsed by:Timeline
Symbol 189 GraphicUsed by:191
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:189 190Used by:Timeline
Symbol 192 MovieClipUses:159 163 167Used by:Timeline
Symbol 193 FontUsed by:194
Symbol 194 EditableTextUses:193Used by:Timeline
Symbol 195 GraphicUsed by:Timeline
Symbol 196 MovieClipUses:144Used by:Timeline
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:Timeline
Symbol 199 MovieClipUsed by:Timeline
Symbol 200 MovieClipUsed by:Timeline
Symbol 201 MovieClipUsed by:Timeline
Symbol 202 GraphicUsed by:208
Symbol 203 GraphicUsed by:208
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:208
Symbol 206 GraphicUsed by:208
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:202 203 205 206 207Used by:Timeline
Symbol 209 FontUsed by:210
Symbol 210 EditableTextUses:209Used by:Timeline
Symbol 211 GraphicUsed by:Timeline
Symbol 212 FontUsed by:213 214 215 219 220 221
Symbol 213 TextUses:212Used by:Timeline
Symbol 214 TextUses:212Used by:Timeline
Symbol 215 TextUses:212Used by:Timeline
Symbol 216 FontUsed by:217 218
Symbol 217 TextUses:216Used by:Timeline
Symbol 218 TextUses:216Used by:Timeline
Symbol 219 TextUses:212Used by:Timeline
Symbol 220 TextUses:212Used by:Timeline
Symbol 221 TextUses:212Used by:Timeline
Symbol 222 GraphicUsed by:226
Symbol 223 GraphicUsed by:226
Symbol 224 GraphicUsed by:226
Symbol 225 GraphicUsed by:226
Symbol 226 ButtonUses:222 223 224 225Used by:Timeline

Instance Names

"osd"Frame 2Symbol 182 MovieClip
"boatMc"Frame 3Symbol 196 MovieClip
"hookMc"Frame 3Symbol 198 MovieClip
"fishMc"Frame 3Symbol 199 MovieClip
"threadMc"Frame 3Symbol 200 MovieClip
"bubblesMc"Frame 3Symbol 201 MovieClip
"timeMc"Frame 3Symbol 208 MovieClip
"osd"Frame 3Symbol 182 MovieClip
"rod"Symbol 144 MovieClip Frame 1Symbol 136 MovieClip
"rod"Symbol 155 MovieClip Frame 51Symbol 136 MovieClip
"abc"Symbol 156 MovieClip Frame 1Symbol 155 MovieClip
"boatMc"Symbol 196 MovieClip Frame 1Symbol 144 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 9 as "fish7"
ExportAssets (56)Timeline Frame 1Symbol 11 as "bubble"
ExportAssets (56)Timeline Frame 1Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 1Symbol 34 as "fish5"
ExportAssets (56)Timeline Frame 1Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 1Symbol 53 as "fish3"
ExportAssets (56)Timeline Frame 1Symbol 65 as "fish2"
ExportAssets (56)Timeline Frame 1Symbol 77 as "fish1"
ExportAssets (56)Timeline Frame 1Symbol 88 as "fish0"
ExportAssets (56)Timeline Frame 2Symbol 88 as "fish0"
ExportAssets (56)Timeline Frame 2Symbol 77 as "fish1"
ExportAssets (56)Timeline Frame 2Symbol 65 as "fish2"
ExportAssets (56)Timeline Frame 2Symbol 53 as "fish3"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 34 as "fish5"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 11 as "bubble"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 21 as "fish6"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"
ExportAssets (56)Timeline Frame 2Symbol 43 as "fish4"

Labels

"start"Frame 2
"ins"Frame 4
"11"Symbol 155 MovieClip Frame 120
"menu"Symbol 182 MovieClip Frame 1
"invisible"Symbol 182 MovieClip Frame 14
"gameover"Symbol 182 MovieClip Frame 66
"default"Symbol 196 MovieClip Frame 1

Dynamic Text Variables

_root.fishnumSymbol 179 EditableText""
fishnumSymbol 194 EditableText"1234"
fishnumSymbol 210 EditableText""




http://swfchan.com/7/31427/info.shtml
Created: 18/5 -2019 15:47:47 Last modified: 18/5 -2019 15:47:47 Server time: 13/05 -2024 03:42:20