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

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

Super Fishing.swf

This is the info page for
Flash #29400

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


Text
API
1.1.1

onlinegames

presents

...loading...

score

TIME

TIME

score

X3

move

catch

SUPER-FISHING

SUPER-FISHING

PLAY

PLAY

download this game

download this game

view highscores

view highscores

more games

more games

Use your mouse to move the boat.

Hold the left mouse button to fish.

GAME CONTROLS

TIME OUT

TIME OUT

score: 1234545

You really have to
try harder!

OK

OK

Do you want to save your
score online?

YES

YES

NO

NO

score: 1234545

Your not going to win
with a score like that!
It's time to get serious...

PLAY AGAIN

PLAY AGAIN

Hey, you're good!
You've got a high enough score to enter
the competition. You can proudly say that
you are a Playaholic!

SUBMIT SCORE FOR A CHANCE TO WIN

SUBMIT SCORE FOR A CHANCE TO WIN

SUPER FISHING

(c) neodelight.com 2004
You are free to redistribute the game as long
as you don't make any changes to the game
files and don't restrict the access to the game to
paying users.
Visit neodelight.com for details...

sound is on

sound is off

ActionScript [AS1/AS2]

Frame 1
gameName = "superfishing"; version = "040624";
Frame 2
if (_level0.getBytesLoaded() < _level0.getBytesTotal()) { gotoAndPlay (1); title = ("loading " + int(_level0.getBytesTotal() / 1024)) + " kbyte..."; percent = int((_level0.getBytesLoaded() / _level0.getBytesTotal()) * 100) + " %"; }
Frame 4
this.timer = createEmptyMovieClip("timer", 99); this.timer.running = false; this.timer.speed = 6; timer.init = function (timeTotal) { this.maxTime = 100000 /* 0x0186A0 */; this.timeTotal = timeTotal * 1000; 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 * 33) * this.speed); } this.update(); }; timer.update = function () { if (_root.paused) { return(undefined); } _root.timeLeftDisplay = int(_root.timeLeft / 1000); var f = (int((_root.timeLeft / this.maxTime) * 200) + 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)); 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; fish.speed = ((Math.random() * (proto.vMax - proto.vMin)) + proto.vMin) * ((Math.random() > 0.5) ? 1 : -1); 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(); } }; cloud = new Object(); cloud.init = function () { this.mc = _root.cloudMc; this.x = this.mc._x; this.y = this.mc._y; this.randomizeTarget(); this.vx = 0; this.ax = 0.2; this.fx = 0.9; this.power = 0; }; cloud.randomizeTarget = function () { this.tx = Math.random() * 550; }; cloud.move = function () { if (this.tx > this.x) { this.vx = this.vx + this.ax; } else { this.vx = this.vx - this.ax; } if (Math.abs(this.x - this.tx) < this.vx) { this.randomizeTarget(); } this.vx = this.vx * this.fx; this.x = this.x + this.vx; this.mc._x = this.x; if (Math.abs(_root.boat.x - this.x) < 35) { this.power = Math.min(1, this.power + 0.05); } else { this.power = Math.max(-1, this.power - 0.05); } if (Math.random() < this.power) { this.power = -1; this.mc.gotoAndPlay("flash"); _root.boat.mc.gotoAndPlay("flash"); _root.snd.play("sndThunder", 0.7); _root.timer.alter(-10000); } }; score = function (points, id) { _root.actScore = _root.actScore + points; _root.actCatch = _root.actCatch + points; if (id ne "") { _root.actCatchHistory.push(id); } _root.timer.alter(points * 100); _root.actScoreDisplay = _root.actScore; }; init = function () { this.boat.init(); this.fish.init(); this.cloud.init(); this.showMenu(); _root.snd.playLoop("sndWater"); }; resetGame = function () { _root.actScore = 0; this.score(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.cloud.move(); 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); var multicatch = (_root.actCatchHistory.length > 1); var i = 1; while (i < _root.actCatchHistory.length) { if (_root.actCatchHistory[i] != _root.actCatchHistory[i - 1]) { multicatch = 0; break; } i++; } _root.actCatchDisplay = _root.actCatch; if (_root.actCatch > 0) { if (multicatch) { _root.actMultiCatchDisplay = _root.actCatchHistory.length; _root.catchDisplay.gotoAndPlay("multicatch"); _root.actScore = _root.actScore + (_root.actCatch * (_root.actCatchHistory.length - 1)); _root.actScoreDisplay = _root.actScore; _root.snd.play("sndBonus", 0.7); } else { _root.catchDisplay.gotoAndPlay("goodcatch"); _root.snd.play("sndScore", 0.4); } } else { _root.snd.play("sndMalus", 0.5); } if (_root.actCatch < 0) { _root.catchDisplay.gotoAndPlay("badcatch"); } _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(); } }; 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();
Symbol 8 MovieClip Frame 1
#initclip 1 _global.api = new Object(); _global.api.highscore = new Object(); _global.api.highscore.initSession = function () { this.session = ""; while (this.session.length < 20) { this.session = this.session + this.charTable.charAt(Math.round(Math.random() * (this.charTable.length - 1))); } this.charTableIndex = new Array(); var i = 0; while (i < this.charTable.length) { this.charTableIndex[this.charTable.charCodeAt(i)] = i; i++; } }; _global.api.highscore.submit = function (pGame, pDisciple, pScore0, pScore1) { var s = (("g=" + pGame) + "&"); s = s + (("d=" + pDisciple) + "&"); s = s + (("s0=" + pScore0) + "&"); s = s + (("s1=" + pScore1) + "&"); s = s + ("se=" + escape(session)); s = s + "&c=42"; var urlSubmit = ((this.urlSubmit + "?s=") + escape(this.encrypt(this.encrypt(s, this.keystring), this.keystring2))); getURL (urlSubmit, "_blank"); }; _global.api.highscore.encrypt = function (text, pKey) { var crypt = ""; var checkSum = 0; var shift; var code; var i = 0; while (i < text.length) { char = this.charTableIndex[text.charCodeAt(i)]; shift = this.charTableIndex[pKey.charCodeAt(i % pKey.length)]; code = (char + shift) + checkSum; code = code % this.charTable.length; crypt = crypt + this.charTable.charAt(code); checkSum = checkSum + code; i++; } checkSum = checkSum % this.charTable.length; return((crypt + "") + this.charTable.charAt(checkSum)); }; _global.api.highscore.charTable = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz&=."; _global.api.highscore.keystring = "whytheheckdoyouwasteyourtimehackingthishighscorelist"; _global.api.highscore.keystring2 = "AnotherKey4You2FindOut4815jiagIOm30JK"; _global.api.highscore.urlSubmit = "http://www.neodelight.com/v4/high_enter.php"; _global.api.highscore.initSession(); #endinitclip _visible = false;
Symbol 69 MovieClip Frame 1
stop();
Symbol 71 Button
on (release) { getURL ((("http://www.neodelight.com?ref=" + _root.gameName) + "&ref_loc=intro&ref_ver=") + _root.version, "_BLANK"); }
Symbol 77 MovieClip Frame 1
trace((_parent._currentframe + "/") + _parent._totalframes);
Symbol 77 MovieClip Frame 2
trace((_parent._currentframe + "/") + _parent._totalframes);
Symbol 83 MovieClip Frame 46
stop();
Symbol 89 MovieClip Frame 80
gotoAndPlay (22);
Symbol 90 MovieClip Frame 1
debug = false; if (!init) { init = true; if (_level0.getBytesLoaded() >= _level0.getBytesTotal()) { progress._visible = false; } } if ((_level0.getBytesLoaded() < _level0.getBytesTotal()) || (debug)) { _parent.stop(); percent = int((_level0.getBytesLoaded() / _level0.getBytesTotal()) * 100) + " %"; } else { _parent.play(); }
Symbol 91 MovieClip Frame 1
startFrame = _parent._currentframe;
Symbol 91 MovieClip Frame 2
vol = (1 - ((_parent._currentFrame - startFrame) / (_parent._totalFrames - startFrame))) * 100; if (vol < 0) { vol = 0; } _parent.snd.setVolume(vol);
Symbol 91 MovieClip Frame 3
gotoAndPlay (2);
Symbol 92 MovieClip Frame 1
snd = new Sound(this); snd.setVolume(100); _parent.stop();
Symbol 92 MovieClip Frame 123
stop(); _parent.play();
Symbol 118 MovieClip Frame 1
stop();
Symbol 118 MovieClip Frame 20
gotoAndStop (1);
Symbol 130 MovieClip Frame 1
stop();
Symbol 130 MovieClip Frame 20
gotoAndStop (1);
Symbol 146 MovieClip Frame 2
stop();
Symbol 146 MovieClip Frame 8
play(); display = "+" + _root.actCatchDisplay;
Symbol 146 MovieClip Frame 20
gotoAndStop (2);
Symbol 146 MovieClip Frame 21
play(); display = _root.actCatchDisplay;
Symbol 146 MovieClip Frame 33
gotoAndStop (2);
Symbol 146 MovieClip Frame 34
play(); display = "+" + _root.actCatchDisplay; display2 = "X" + _root.actMultiCatchDisplay;
Symbol 146 MovieClip Frame 59
gotoAndStop (2);
Symbol 161 Button
on (release) { _root.startGame(); }
Symbol 165 Button
on (release) { getURL (("http://www.neodelight.com/downloads/" + _root.gameName) + ".exe"); }
Symbol 168 Button
on (release) { if (_url.indexOf("playaholics") != -1) { getURL (("http://www.neodelight.com/highscores_" + _root.gameName) + "_.html", "_blank"); } else { getURL (("http://www.neodelight.com/highscores_" + _root.gameName) + "_.html", "_TOP"); } }
Symbol 171 Button
on (release) { if (_url.indexOf("playaholics") != -1) { getURL ("http://www.playaholics.com/games.php", "_TOP"); } else { getURL ((("http://www.neodelight.com?ref=" + _root.gameName) + "&ref_loc=moregames&ref_ver=") + _root.version, "_TOP"); } }
Symbol 182 Button
on (release) { _root.showMenu(); }
Symbol 186 Button
on (release) { _root.submitScore(); }
Symbol 189 Button
on (release) { _root.showMenu(); }
Symbol 195 Button
on (release) { _root.startGame(); }
Symbol 200 Button
on (release) { this.game = "superfishing"; this.score = _root.actScore; this.getURL("http://www.playaholics.com/comp_entry.php", "_top", "POST"); }
Symbol 201 MovieClip Frame 1
display = "score: " + _root.actScore; if (_url.indexOf("playaholics") != -1) { if (_root.actScore >= 1000) { gotoAndStop (4); } else { gotoAndStop (3); } } else if (_root.actScore <= 0) { stop(); }
Symbol 201 MovieClip Frame 2
stop();
Symbol 202 MovieClip Frame 1
stop();
Symbol 202 MovieClip Frame 6
stop();
Symbol 202 MovieClip Frame 37
gotoAndStop (6);
Symbol 202 MovieClip Frame 58
stop();
Symbol 215 Button
on (release) { var s = new Sound(); s.setVolume(0); _root.snd.active = 0; nextFrame(); }
Symbol 219 Button
on (release) { _root.snd.active = 1; prevFrame(); }
Symbol 221 Button
on (release) { var s = new Sound(); s.setVolume(100); _root.snd.active = 1; prevFrame(); }
Symbol 222 MovieClip Frame 1
stop();

Library Items

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

Instance Names

"boatMc"Frame 4Symbol 118 MovieClip
"fishMc"Frame 4Symbol 119 MovieClip
"threadMc"Frame 4Symbol 120 MovieClip
"hookMc"Frame 4Symbol 122 MovieClip
"bubblesMc"Frame 4Symbol 123 MovieClip
"cloudMc"Frame 4Symbol 130 MovieClip
"timeMc"Frame 4Symbol 138 MovieClip
"catchDisplay"Frame 4Symbol 146 MovieClip
"osd"Frame 4Symbol 202 MovieClip
"progress"Symbol 90 MovieClip Frame 1Symbol 89 MovieClip
"rod"Symbol 116 MovieClip Frame 1Symbol 115 MovieClip
"boatMc"Symbol 118 MovieClip Frame 1Symbol 116 MovieClip
"cloudMc"Symbol 130 MovieClip Frame 1Symbol 128 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 2 as "bubble"
ExportAssets (56)Timeline Frame 3Symbol 18 as "fish0"
ExportAssets (56)Timeline Frame 3Symbol 24 as "fish1"
ExportAssets (56)Timeline Frame 3Symbol 26 as "fish2"
ExportAssets (56)Timeline Frame 3Symbol 36 as "fish3"
ExportAssets (56)Timeline Frame 3Symbol 44 as "fish4"
ExportAssets (56)Timeline Frame 3Symbol 55 as "fish5"
ExportAssets (56)Timeline Frame 3Symbol 57 as "fish6"
ExportAssets (56)Timeline Frame 3Symbol 59 as "fish7"
ExportAssets (56)Timeline Frame 3Symbol 2 as "bubble"
ExportAssets (56)Timeline Frame 3Symbol 60 as "sndBell"
ExportAssets (56)Timeline Frame 3Symbol 61 as "sndWater"
ExportAssets (56)Timeline Frame 3Symbol 62 as "sndIntake"
ExportAssets (56)Timeline Frame 3Symbol 63 as "sndMalus"
ExportAssets (56)Timeline Frame 3Symbol 64 as "sndScore"
ExportAssets (56)Timeline Frame 3Symbol 65 as "neodelight_music"
ExportAssets (56)Timeline Frame 3Symbol 66 as "sndBonus"
ExportAssets (56)Timeline Frame 3Symbol 67 as "sndThunder"
ExportAssets (56)Timeline Frame 3Symbol 68 as "sndTicking"
ExportAssets (56)Timeline Frame 3Symbol 65 as "neodelight_music"
ExportAssets (56)Timeline Frame 3Symbol 65 as "neodelight_music"
ExportAssets (56)Timeline Frame 3Symbol 65 as "neodelight_music"

Labels

"loop"Symbol 89 MovieClip Frame 22
"loop"Symbol 91 MovieClip Frame 2
"default"Symbol 118 MovieClip Frame 1
"flash"Symbol 118 MovieClip Frame 10
"default"Symbol 130 MovieClip Frame 1
"flash"Symbol 130 MovieClip Frame 10
"default"Symbol 146 MovieClip Frame 2
"goodcatch"Symbol 146 MovieClip Frame 8
"badcatch"Symbol 146 MovieClip Frame 21
"multicatch"Symbol 146 MovieClip Frame 34
"playaBad"Symbol 201 MovieClip Frame 3
"playaGood"Symbol 201 MovieClip Frame 4
"menu"Symbol 202 MovieClip Frame 1
"invisible"Symbol 202 MovieClip Frame 6
"quickhelp"Symbol 202 MovieClip Frame 12
"gameover"Symbol 202 MovieClip Frame 51

Dynamic Text Variables

titleSymbol 4 EditableText""
percentSymbol 5 EditableText""
_parent._parent.percentSymbol 85 EditableText""
_root.actScoreDisplaySymbol 95 EditableText""
_parent._parent.displaySymbol 139 EditableText"score"
_parent._parent.display2Symbol 143 EditableText"X3"
displaySymbol 178 EditableText"score: 1234545"
displaySymbol 190 EditableText"score: 1234545"




http://swfchan.com/6/29400/info.shtml
Created: 19/5 -2019 23:11:08 Last modified: 19/5 -2019 23:11:08 Server time: 11/05 -2024 17:30:12