STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #231139 |
TOP 35 ANGLERS |
1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. |
START |
100 000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 |
Alishah Novin 2 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. |
To advance levels: Capture the required weight of fish To get points: Catch More fish than the required minimum or catch more than one fish in a single deployment KEYS: LEFT+RIGHT ARROWS = Move Boat SPACEBAR = Deploy Claw |
0 |
lbs. |
Score: 0 |
Level: 1 |
Goal: 30lbs |
Wonkeye'd Willie is no stranger to Claw Fishing! |
60 |
Goal: |
Catch 30lbs of fish in 60 seconds! |
GO! |
-2lbs |
-3lbs |
-4lbs |
-5lbs |
-6lbs |
-7lbs |
-8lbs |
Submit your score: |
FINAL SCORE: |
SUBMIT |
Name: |
12 |
GAMEOVER |
ActionScript [AS1/AS2]
Frame 1function xmlInit(success) { if (success == true) { rootNode = xmlVids.firstChild; totalVids = rootNode.childNodes.length; firstVidNode = rootNode.firstChild; currentIndex = 1; populateXMLArray(); } } function populateXMLArray() { currentVidNode = firstVidNode; vidPlayList[0] = currentVidNode; var _local1 = 1; while (_local1 <= totalVids) { vidPlayList[_local1] = currentVidNode.nextSibling; currentVidNode = currentVidNode.nextSibling; _local1++; } if (vidPlayList[_local1] == null) { vidPlayList.splice(-1); } randVidSelect(); } function randVidSelect() { if (totalVids == 0) { totalVids = rootNode.childNodes.length; populateXMLArray(); } else { vidRandIndex = random(totalVids); updateVid(vidRandIndex); } } function updateVid(newVidNode) { speechBubble.bubble.speech.text = vidPlayList[newVidNode].attributes.say; vidPlayList.splice(newVidNode, 1); totalVids--; } xmlVids = new XML(); xmlVids.load("http://www.wfn.tv/games/fishclaw/speech.xml"); xmlVids.ignoreWhite = true; xmlVids.onLoad = xmlInit; var vidPlayList = new Array(); _global.angRotate = 2; _global.fire = false; _global.clawDir = 1; _global.moveBoat = 0; _global.tR = 0; _global.startGame = false; _global.accel = 0; _global.maxAccel = 4; _global.numFish = 4; _global.clawCaught = new Array(); _global.fishes = new Array(); _global.dropDown = new Sound(this); _global.fishPop = new Sound(this); _global.bloop = new Sound(this); _global.music = new Sound(this); dropDown.setVolume(90); _global.gameTime = 1050; _global.send2HS; _global.timeStep; weightgoal = 20; glevel = 1; scoreListNames.text = "Loading High Scores..."; scoreListScores.text = ""; makeFishes(numFish); dropDown.attachSound("dropDown"); fishPop.attachSound("fishPop"); bloop.attachSound("bloop"); music.attachSound("bgmusic"); onLoad = function () { send2HS = false; makeFishes(numFish); dropDown.attachSound("dropDown"); music.attachSound("bgmusic"); fishPop.attachSound("fishPop"); bloop.attachSound("bloop"); }; startButton.onPress = function () { score = 0; gotoAndStop (2); }; if (send2HS) { uscore = score; loadVariables ((("http://www.wfn.tv/games/fishclaw/scores.php?uscore=" + uscore) + "&uname=") + uname, this); send2HS = false; } loadVariables ("http://www.wfn.tv/games/fishclaw/scores.php", this); stop(); function fishControl() { var _local1 = 0; while (_local1 <= numFish) { if (fishes[_local1].alive) { if ((fishes[_local1].fish._x > 660) && (fishes[_local1].speed > 0)) { endFish(_local1); } if ((fishes[_local1].fish._x < -180) && (fishes[_local1].speed < 0)) { endFish(_local1); } } if (fishes[_local1].alive && (!fishes[_local1].flip)) { fishes[_local1].fish._x = fishes[_local1].fish._x + (1 * fishes[_local1].speed); fishes[_local1].fish._y = (5 * Math.sin(fishes[_local1].fish._x / 50)) + fishes[_local1].depthInWater; } else if (!fishes[_local1].flip) { fishes[_local1].fish._rotation = claw._rotation; fishes[_local1].fish._x = claw._x + claw.hitZone._x; fishes[_local1].fish._y = (claw._y + claw.hitZone._y) - 40; } if (claw.hitZone.hitTest(fishes[_local1].fish.hitSpot) && (clawDir != 2)) { if (fishes[_local1].alive) { fishes[_local1].fish.fishy.gotoAndPlay(2); fishPop.start(0.2); claw.gotoAndStop(2); fishes[_local1].alive = false; clawCaught.push(_local1); } } _local1++; } } function makeFishes(i) { z = 0; while (z <= i) { genNewFish(z); z++; } } function genNewFish(i) { if (glevel < 7) { typeOfFishes = glevel; } else { typeOfFishes = 7; } typeOfFish = random(typeOfFishes) + 1; fishes[i] = new fishObject(); fishes[i].fish = fish.duplicateMovieClip("fish" + i, i); fishes[i].fish.attachMovie("fishType" + typeOfFish, "fishy", 0); fishes[i].fish.fishy._xscale = 30; fishes[i].fish.fishy._yscale = 30; fishes[i].depthInWater = 180 + ((Math.random() + 0.1) * 200); if (random(2) > 0) { fishes[i].speed = (2 / (2 / typeOfFish)) + 1; } else { fishes[i].speed = -1 * ((2 / (2 / typeOfFish)) + 1); } fishes[i].flip = false; fishes[i].weight = (((typeOfFish / 2) + 0.5) * 2) + (random(2) / 2); fishes[i].fish._xscale = fishes[i].fish._xscale + fishes[i].weight; fishes[i].fish._yscale = fishes[i].fish._yscale + fishes[i].weight; if (fishes[i].speed > 0) { fishes[i].fish._x = -180 - ((Math.random() + 0.1) * 200); } else { fishes[i].fish._xscale = fishes[i].fish._xscale * -1; fishes[i].fish._x = 692 + ((Math.random() + 0.1) * 200); } fishes[i].alive = true; } function fishObject() { this.setObject = function (o) { this.object = o; }; this.getObject = function () { return(this.object); }; this.setSpeed = function (s) { this.speed = s; }; this.getSpeed = function () { return(this.speed); }; this.setType = function (t) { this.type = t; }; this.getType = function () { return(this.type); }; this.setDep = function (d) { this.dep = d; }; this.getDep = function () { return(this.dep); }; this.setWeight = function (w) { this.weight = w; }; this.getWeight = function () { return(this.weight); }; this.setStatus = function (stat) { this.stat = stat; }; this.getStatus = function () { return(this.stat); }; this.setFlip = function (flp) { this.flp = flp; }; this.getFlip = function () { return(this.flp); }; this.addProperty("fish", this.getObject, this.setObject); this.addProperty("weight", this.getWeight, this.setWeight); this.addProperty("speed", this.getSpeed, this.setSpeed); this.addProperty("type", this.getType, this.setType); this.addProperty("depthInWater", this.getDep, this.setDep); this.addProperty("alive", this.getStatus, this.setStatus); this.addProperty("flip", this.getFlip, this.setFlip); } function flipFish(o) { fishes[o].flip = true; flipAnim(fishes[o].fish.fishy, fishes[o].fish, o); } function flipAnim(z, w, a) { var _local7 = new mx.transitions.Tween(z, "_y", mx.transitions.easing.None.easeInOut, z._y, -200, 15, false); var _local8 = new mx.transitions.Tween(z, "_x", mx.transitions.easing.None.easeInOut, z._x, z._x - 20, 15, false); var _local6 = new mx.transitions.Tween(z, "_xscale", mx.transitions.easing.None.easeInOut, z._xscale, z._xscale - 10, 15, false); var _local5 = new mx.transitions.Tween(z, "_yscale", mx.transitions.easing.None.easeInOut, z._yscale, z._yscale - 10, 15, false); var _local1 = new mx.transitions.Tween(z, "_rotation", mx.transitions.easing.None.easeInOut, z._rotation, z._rotation + 180, 15, false); _local1.onMotionFinished = function () { var _local2 = new mx.transitions.Tween(z, "_y", mx.transitions.easing.None.easeInOut, z._y, -160, 8, false); var _local3 = new mx.transitions.Tween(z, "_x", mx.transitions.easing.None.easeInOut, z._x, 0, 8, false); var _local1 = new mx.transitions.Tween(z, "_rotation", mx.transitions.easing.None.easeInOut, z._rotation, z._rotation + 180, 8, false); _local1.onMotionFinished = function () { maskFill._height = maskFill._height + (fishes[a].weight / 6); maskFill._y = maskFill._y - (fishes[a].weight / 6); poundstxt.text = parseInt(poundstxt.text) + fishes[a].weight; if (currentweight >= weightgoal) { score = score + (fishes[a].weight * 10); } endFish(a); }; }; } function endFish(o) { removeMovieClip(fishes[o].fish.fishy); removeMovieClip(fishes[o].fish); fishes[o] = ""; genNewFish(o); } function killFish(o) { e = random(2); if (e == 1) { fishes[o].fish._x = -190; } else { fishes[o].fish._x = 680; } } function removeFish(o) { removeMovieClip(fishes[o].fish.fishy); removeMovieClip(fishes[o].fish); fishes[o] = ""; }Frame 2function Drawing() { tL.text = parseInt(tL.text) - 1; randomSay = random(25); if ((parseInt(tL.text) < 10) && (parseInt(tL.text) > 0)) { bloop.start(); } if (step == 1) { drawCircle1(cx, cy, xpos, ypos, r); if (ypos > cy) { step = 2; } } if (step == 2) { drawCircle2(cx, cy, xpos, ypos, r); if (xpos > cx) { step = 3; } } if (step == 3) { drawCircle3(cx, cy, xpos, ypos, r); if (ypos < cy) { step = 4; } } if (step == 4) { if (xpos >= cx) { drawCircle4(cx, cy, xpos, ypos, r); } else { clearInterval(timeStep); } } } function drawCircle1(x1, y1, x2, y2, r) { this.createEmptyMovieClip("draw", this.getNextHighestDepth()); circ.setMask(draw); circ._alpha = 100; draw.beginFill(13158, 50); draw.lineStyle(1, 16711935, 50); draw.moveTo(x1, y1); draw.lineTo(x1, y1 - r); draw.lineTo(xpos, ypos); draw.endFill(); ypos = ypos + 4.3; xpos = xpos - 4.3; } function drawCircle2(x1, y1, x2, y2, r) { this.createEmptyMovieClip("draw", this.getNextHighestDepth()); circ.setMask(draw); draw.beginFill(13158, 50); draw.lineStyle(1, 16711935, 50); draw.moveTo(x1, y1); draw.lineTo(x1, y1 - r); draw.lineTo(x1 - r, y1); draw.lineTo(xpos, ypos); draw.endFill(); ypos = ypos + 4.3; xpos = xpos + 4.3; } function drawCircle3(x1, y1, x2, y2, r) { this.createEmptyMovieClip("draw", this.getNextHighestDepth()); circ.setMask(draw); draw.beginFill(13158, 50); draw.lineStyle(1, 16711935, 50); draw.moveTo(x1, y1); draw.lineTo(x1, y1 - r); draw.lineTo(x1 - r, y1); draw.lineTo(x1, y1 + r); draw.lineTo(xpos, ypos); draw.endFill(); ypos = ypos - 4.7; xpos = xpos + 4.7; } function drawCircle4(x1, y1, x2, y2, r) { this.createEmptyMovieClip("draw", this.getNextHighestDepth()); circ.setMask(draw); draw.beginFill(13158, 50); draw.lineStyle(1, 16711935, 50); draw.moveTo(x1, y1); draw.lineTo(x1, y1 - r); draw.lineTo(x1 - r, y1); draw.lineTo(x1, y1 + r); draw.lineTo(x1 + r, y1); draw.lineTo(xpos, ypos); draw.endFill(); ypos = ypos - 4.7; xpos = xpos - 4.7; } cx = circ._x; cy = circ._y + (circ._height / 2); r = circ._height; xpos = cx; ypos = cy - r; step = 1; circ._alpha = 0; function advance() { startGame = false; if (currentweight >= weightgoal) { gotoAndStop (4); } else { gotoAndStop (3); } } instructions.insTitle.text = ("Level " + glevel) + " - GOAL:"; instructions.insText.text = ("Catch " + weightgoal) + "lbs of fish\n in 60 seconds!"; poundstxt.text = 0; levelText.text = "Level: " + glevel; goalText.text = ("Goal: " + weightgoal) + "lbs"; speechBubble._y = -2000; speechBubble.gotoAndStop(120); var ng = new TextFormat(); ng.color = 16777215 /* 0xFFFFFF */; var hg = new TextFormat(); hg.color = 16771907 /* 0xFFEB43 */; goalText.setTextFormat(ng); music.start(0, 99); if (glevel < 8) { if (glevel >= 1) { instructions.fi1._alpha = 100; } if (glevel >= 2) { instructions.fi2._alpha = 100; } if (glevel >= 3) { instructions.fi3._alpha = 100; } if (glevel >= 4) { instructions.fi4._alpha = 100; } if (glevel >= 5) { instructions.fi5._alpha = 100; } if (glevel >= 6) { instructions.fi6._alpha = 100; } if (glevel >= 7) { instructions.fi7._alpha = 100; } } this.onEnterFrame = function () { if (startGame) { currentweight = parseInt(poundstxt.text); if (currentweight >= weightgoal) { goalText.setTextFormat(hg); } boatMovement(); fishControl(); } if (parseInt(tL.text) <= 0) { tL.text = 0; startGame = false; advance(); } clawControl(); scoreText.text = "Score: " + score; }; instructions.startLevel.onPress = function () { startGame = true; timeStep = setInterval(Drawing, gameTime); removeMovieClip(instructions); }; this.createEmptyMovieClip("blank", this.getNextHighestDepth()); claw.swapDepths(blank); removeMovieClip(blank); this.createEmptyMovieClip("murky", this.getNextHighestDepth()); removeMovieClip(murk); murky._x = 300; murky._y = 153.5; murky.attachMovie("murk", "murk", 0); this.createEmptyMovieClip("temp", this.getNextHighestDepth()); instructions.swapDepths(temp); removeMovieClip(temp); keyListener = new Object(); Key.addListener(keyListener); keyListener.onKeyDown = function () { if (Key.isDown(32) && (!fire)) { dropDown.start(0.1); fire = true; moveBoat = 0; fireClaw(claw._x, claw._y, (-300 * Math.sin((claw._rotation * Math.PI) / 180)) + claw._x, (300 * Math.cos((claw._rotation * Math.PI) / 180)) + claw._y); } if (Key.isDown(37) && (!Key.isDown(39))) { boat.propeller.propel._xscale = -59.4; moveBoat = 1; } if (Key.isDown(39) && (!Key.isDown(37))) { moveBoat = 2; boat.propeller.propel._xscale = 59.4; } }; function clawControl() { if ((!fire) && (clawDir == 1)) { claw._x = boat._x; } if (clawDir != 1) { if (Math.round(claw._x) != Math.round(boat._x)) { } else if (!fire) { clawDir = 1; accel = 0; } if (Math.round(claw._rotation) < 0) { claw._rotation++; } if (Math.round(claw._rotation) > 0) { claw._rotation--; } } if (claw._rotation >= 70) { angRotate = angRotate * -1; } if (claw._rotation <= -70) { angRotate = angRotate * -1; } if (!fire) { claw._rotation = claw._rotation + angRotate; } this.createEmptyMovieClip("rope", fishes[numFish].fish.getDepth() + 1); rope.lineStyle(1, 0, 100); rope.moveTo(boat._x - 1, boat._y + 48); rope.lineTo(claw._x - 1, claw._y); rope.lineStyle(2, 16776960, 100); rope.moveTo(boat._x + 1, boat._y + 48); rope.lineTo(claw._x + 1, claw._y); rope.lineStyle(1, 0, 100); rope.moveTo(boat._x + 2, boat._y + 48); rope.lineTo(claw._x + 2, claw._y); rope.endFill(); } function fireClaw(originX, originY, xDir, yDir) { clawDir = 1; var _local3 = new mx.transitions.Tween(claw, "_x", mx.transitions.easing.Regular.easeOut, originX, xDir, 1, true); var _local2 = new mx.transitions.Tween(claw, "_y", mx.transitions.easing.Regular.easeOut, originY, yDir, 1, true); _local2.onMotionFinished = function () { if (fishHit == 1) { clawDir = 3; } else { clawDir = 2; } correctiveDifference = originX - boat._x; claw.gotoAndStop(2); var _local2 = new mx.transitions.Tween(claw, "_x", mx.transitions.easing.Regular.easeIn, xDir, originX - correctiveDifference, 1, true); var _local1 = new mx.transitions.Tween(claw, "_y", mx.transitions.easing.Regular.easeIn, yDir, originY, 1, true); _local1.onMotionFinished = function () { fire = false; claw.gotoAndStop(1); fishHit = 0; if (clawCaught.length > 1) { score = score + (clawCaught.length * 10); } if (clawCaught.length > 0) { while (clawCaught.length > 0) { flipFish(clawCaught.pop()); } } clawDir = 1; }; }; } function boatMovement() { boatLeft = boat._x - 100; boatRight = boat._x + 100; if (((!Key.isDown(37)) && (!Key.isDown(39))) || (!((boatLeft > 0) && (boatRight < 650)))) { moveBoat = 0; } if (boatLeft <= 0) { accel = accel + 0.5; } if (boatRight >= 650) { accel = accel - 0.5; } if ((clawDir == 1) && ((boatLeft > 0) && (boatRight < 650))) { if ((moveBoat == 1) && (accel > (-maxAccel))) { accel = accel - 0.1; } if ((moveBoat == 2) && (accel < maxAccel)) { accel = accel + 0.1; } if ((moveBoat == 0) && (accel < 0)) { accel = accel + 0.1; } if ((moveBoat == 0) && (accel > 0)) { accel = accel - 0.1; } } else { if (accel > 0) { accel = accel - 0.2; } if (accel < 0) { accel = accel + 0.2; } } if (accel != 0) { boat.propeller.propel.play(); boat.propeller.ripples._alpha = 100; boat.propeller.ripples2._alpha = 100; } else { boat.propeller.propel.stop(); boat.propeller.ripples._alpha = 0; boat.propeller.ripples2._alpha = 0; } accel = Math.round(accel * 100) / 100; boat._x = boat._x + accel; if (boat._x < 317.9) { speechBubble.bubble._xscale = -100; speechBubble.bubble.speech._xscale = -100; speechBubble.bubble.speech._x = 66; speechBubble._x = boat._x + 100; } else { speechBubble.bubble._xscale = 100; speechBubble.bubble.speech._xscale = 100; speechBubble.bubble.speech._x = -66; speechBubble._x = boat._x - 80; } if (speechBubble._currentframe < 120) { speechBubble._y = 0; } if (speechBubble._currentframe == 120) { speechBubble._y = -2000; } if ((speechBubble._currentframe == 120) && (randomSay == 6)) { randVidSelect(); speechBubble.gotoAndPlay(1); } }Frame 3delete this.onEnterFrame; music.stop(); removeMovieClip(murky); removeMovieClip(claw); removeMovieClip(rope); removeMovieClip(draw); clearInterval(timeStep); startGame = false; q = 0; while (q <= numFish) { removeFish(q); q++; } finalScore.text = score; stop();Frame 4removeMovieClip(murk); removeMovieClip(claw); removeMovieClip(rope); removeMovieClip(draw); music.stop(); clearInterval(timeStep); weightgoal = weightgoal + 15; glevel++; startGame = false; q = 0; while (q <= numFish) { killFish(q); q++; } gotoAndStop (2);Symbol 16 MovieClip [fishType7] Frame 1stop();Symbol 16 MovieClip [fishType7] Frame 5stop();Symbol 20 MovieClip [fishType6] Frame 1stop();Symbol 20 MovieClip [fishType6] Frame 5stop();Symbol 28 MovieClip [fishType5] Frame 1stop();Symbol 28 MovieClip [fishType5] Frame 5stop();Symbol 43 MovieClip [fishType4] Frame 1stop();Symbol 43 MovieClip [fishType4] Frame 5stop();Symbol 55 MovieClip [fishType3] Frame 1stop();Symbol 55 MovieClip [fishType3] Frame 5stop();Symbol 86 MovieClip [fishType2] Frame 1stop();Symbol 86 MovieClip [fishType2] Frame 5stop();Symbol 102 MovieClip [fishType1] Frame 1stop();Symbol 102 MovieClip [fishType1] Frame 5stop();Symbol 130 MovieClip Frame 1stop();Symbol 233 MovieClip [__Packages.mx.transitions.OnEnterFrameBeacon] Frame 0class mx.transitions.OnEnterFrameBeacon { function OnEnterFrameBeacon () { } static function init() { var _local4 = _global.MovieClip; if (!_root.__OnEnterFrameBeacon) { mx.transitions.BroadcasterMX.initialize(_local4); var _local3 = _root.createEmptyMovieClip("__OnEnterFrameBeacon", 9876); _local3.onEnterFrame = function () { _global.MovieClip.broadcastMessage("onEnterFrame"); }; } } static var version = "1.1.0.52"; }Symbol 234 MovieClip [__Packages.mx.transitions.BroadcasterMX] Frame 0class mx.transitions.BroadcasterMX { var _listeners; function BroadcasterMX () { } static function initialize(o, dontCreateArray) { if (o.broadcastMessage != undefined) { delete o.broadcastMessage; } o.addListener = mx.transitions.BroadcasterMX.prototype.addListener; o.removeListener = mx.transitions.BroadcasterMX.prototype.removeListener; if (!dontCreateArray) { o._listeners = new Array(); } } function addListener(o) { removeListener(o); if (broadcastMessage == undefined) { broadcastMessage = mx.transitions.BroadcasterMX.prototype.broadcastMessage; } return(_listeners.push(o)); } function removeListener(o) { var _local2 = _listeners; var _local3 = _local2.length; while (_local3--) { if (_local2[_local3] == o) { _local2.splice(_local3, 1); if (!_local2.length) { broadcastMessage = undefined; } return(true); } } return(false); } function broadcastMessage() { var _local5 = String(arguments.shift()); var _local4 = _listeners.concat(); var _local6 = _local4.length; var _local3 = 0; while (_local3 < _local6) { _local4[_local3][_local5].apply(_local4[_local3], arguments); _local3++; } } static var version = "1.1.0.52"; }Symbol 235 MovieClip [__Packages.mx.transitions.Tween] Frame 0class mx.transitions.Tween { var obj, prop, begin, useSeconds, _listeners, addListener, prevTime, _time, looping, _duration, broadcastMessage, isPlaying, _fps, prevPos, _pos, change, _intervalID, _startTime; function Tween (obj, prop, func, begin, finish, duration, useSeconds) { mx.transitions.OnEnterFrameBeacon.init(); if (!arguments.length) { return; } this.obj = obj; this.prop = prop; this.begin = begin; position = (begin); this.duration = (duration); this.useSeconds = useSeconds; if (func) { this.func = func; } this.finish = (finish); _listeners = []; addListener(this); start(); } function set time(t) { prevTime = _time; if (t > duration) { if (looping) { rewind(t - _duration); update(); broadcastMessage("onMotionLooped", this); } else { if (useSeconds) { _time = _duration; update(); } stop(); broadcastMessage("onMotionFinished", this); } } else if (t < 0) { rewind(); update(); } else { _time = t; update(); } //return(time); } function get time() { return(_time); } function set duration(d) { _duration = (((d == null) || (d <= 0)) ? (_global.Infinity) : (d)); //return(duration); } function get duration() { return(_duration); } function set FPS(fps) { var _local2 = isPlaying; stopEnterFrame(); _fps = fps; if (_local2) { startEnterFrame(); } //return(FPS); } function get FPS() { return(_fps); } function set position(p) { setPosition(p); //return(position); } function setPosition(p) { prevPos = _pos; obj[prop] = (_pos = p); broadcastMessage("onMotionChanged", this, _pos); updateAfterEvent(); } function get position() { return(getPosition()); } function getPosition(t) { if (t == undefined) { t = _time; } return(func(t, begin, change, _duration)); } function set finish(f) { change = f - begin; //return(finish); } function get finish() { return(begin + change); } function continueTo(finish, duration) { begin = position; this.finish = (finish); if (duration != undefined) { this.duration = (duration); } start(); } function yoyo() { continueTo(begin, time); } function startEnterFrame() { if (_fps == undefined) { _global.MovieClip.addListener(this); } else { _intervalID = setInterval(this, "onEnterFrame", 1000 / _fps); } isPlaying = true; } function stopEnterFrame() { if (_fps == undefined) { _global.MovieClip.removeListener(this); } else { clearInterval(_intervalID); } isPlaying = false; } function start() { rewind(); startEnterFrame(); broadcastMessage("onMotionStarted", this); } function stop() { stopEnterFrame(); broadcastMessage("onMotionStopped", this); } function resume() { fixTime(); startEnterFrame(); broadcastMessage("onMotionResumed", this); } function rewind(t) { _time = ((t == undefined) ? 0 : (t)); fixTime(); update(); } function fforward() { time = (_duration); fixTime(); } function nextFrame() { if (useSeconds) { time = ((getTimer() - _startTime) / 1000); } else { time = (_time + 1); } } function onEnterFrame() { nextFrame(); } function prevFrame() { if (!useSeconds) { time = (_time - 1); } } function toString() { return("[Tween]"); } function fixTime() { if (useSeconds) { _startTime = getTimer() - (_time * 1000); } } function update() { position = (getPosition(_time)); } static var version = "1.1.0.52"; static var __initBeacon = mx.transitions.OnEnterFrameBeacon.init(); static var __initBroadcaster = mx.transitions.BroadcasterMX.initialize(mx.transitions.Tween.prototype, true); function func(t, b, c, d) { return(((c * t) / d) + b); } }Symbol 236 MovieClip [__Packages.mx.transitions.easing.None] Frame 0class mx.transitions.easing.None { function None () { } static function easeNone(t, b, c, d) { return(((c * t) / d) + b); } static function easeIn(t, b, c, d) { return(((c * t) / d) + b); } static function easeOut(t, b, c, d) { return(((c * t) / d) + b); } static function easeInOut(t, b, c, d) { return(((c * t) / d) + b); } static var version = "1.1.0.52"; }Symbol 237 MovieClip [__Packages.mx.transitions.easing.Regular] Frame 0class mx.transitions.easing.Regular { function Regular () { } static function easeIn(t, b, c, d) { t = t / d; return(((c * t) * t) + b); } static function easeOut(t, b, c, d) { t = t / d; return((((-c) * t) * (t - 2)) + b); } static function easeInOut(t, b, c, d) { t = t / (d / 2); if (t < 1) { return((((c / 2) * t) * t) + b); } t--; return((((-c) / 2) * ((t * (t - 2)) - 1)) + b); } static var version = "1.1.0.52"; }Symbol 177 MovieClip Frame 1stop();Symbol 182 MovieClip Frame 120stop();Symbol 228 MovieClip Frame 1goButton.onRelease = function () { _root.send2HS = true; _root.uname = _root.unm.text; _root.gotoAndStop(1); };
Library Items
Symbol 1 Sound [fishPop] | ||
Symbol 2 Sound [dropDown] | ||
Symbol 3 Sound [bloop] | ||
Symbol 4 Sound [bgmusic] | ||
Symbol 5 Graphic | Used by:6 | |
Symbol 6 MovieClip [murk] | Uses:5 | |
Symbol 7 Bitmap | Used by:15 | |
Symbol 8 Bitmap | Used by:15 | |
Symbol 9 Bitmap | Used by:15 | |
Symbol 10 Bitmap | Used by:15 | |
Symbol 11 Bitmap | Used by:15 | |
Symbol 12 Bitmap | Used by:15 | |
Symbol 13 Bitmap | Used by:15 | |
Symbol 14 Bitmap | Used by:15 | |
Symbol 15 Graphic | Uses:7 8 9 10 11 12 13 14 | Used by:16 |
Symbol 16 MovieClip [fishType7] | Uses:15 | Used by:218 |
Symbol 17 Bitmap | Used by:18 19 | |
Symbol 18 Graphic | Uses:17 | Used by:20 |
Symbol 19 Graphic | Uses:17 | Used by:20 |
Symbol 20 MovieClip [fishType6] | Uses:18 19 | Used by:216 |
Symbol 21 Bitmap | Used by:25 27 | |
Symbol 22 Bitmap | Used by:25 27 | |
Symbol 23 Bitmap | Used by:25 27 | |
Symbol 24 Bitmap | Used by:25 27 | |
Symbol 25 Graphic | Uses:21 22 23 24 | Used by:28 |
Symbol 26 Bitmap | Used by:27 | |
Symbol 27 Graphic | Uses:26 21 22 23 24 | Used by:28 |
Symbol 28 MovieClip [fishType5] | Uses:25 27 | Used by:214 |
Symbol 29 Bitmap | Used by:36 42 | |
Symbol 30 Bitmap | Used by:36 42 | |
Symbol 31 Bitmap | Used by:36 42 | |
Symbol 32 Bitmap | Used by:36 42 | |
Symbol 33 Bitmap | Used by:36 42 | |
Symbol 34 Bitmap | Used by:36 42 | |
Symbol 35 Bitmap | Used by:36 42 | |
Symbol 36 Graphic | Uses:29 30 31 32 33 34 35 | Used by:43 |
Symbol 37 Bitmap | Used by:42 | |
Symbol 38 Bitmap | Used by:42 | |
Symbol 39 Bitmap | Used by:42 | |
Symbol 40 Bitmap | Used by:42 | |
Symbol 41 Bitmap | Used by:42 | |
Symbol 42 Graphic | Uses:29 37 38 39 40 41 30 31 32 33 34 35 | Used by:43 |
Symbol 43 MovieClip [fishType4] | Uses:36 42 | Used by:212 |
Symbol 44 Bitmap | Used by:51 54 | |
Symbol 45 Bitmap | Used by:51 54 | |
Symbol 46 Bitmap | Used by:51 54 | |
Symbol 47 Bitmap | Used by:51 54 | |
Symbol 48 Bitmap | Used by:51 54 | |
Symbol 49 Bitmap | Used by:51 54 | |
Symbol 50 Bitmap | Used by:51 54 | |
Symbol 51 Graphic | Uses:44 45 46 47 48 49 50 | Used by:55 |
Symbol 52 Bitmap | Used by:54 | |
Symbol 53 Bitmap | Used by:54 | |
Symbol 54 Graphic | Uses:52 44 45 46 47 48 49 53 50 | Used by:55 |
Symbol 55 MovieClip [fishType3] | Uses:51 54 | Used by:210 |
Symbol 56 Bitmap | Used by:63 85 | |
Symbol 57 Bitmap | Used by:63 85 | |
Symbol 58 Bitmap | Used by:63 85 | |
Symbol 59 Bitmap | Used by:63 85 | |
Symbol 60 Bitmap | Used by:63 85 | |
Symbol 61 Bitmap | Used by:63 85 | |
Symbol 62 Bitmap | Used by:63 85 | |
Symbol 63 Graphic | Uses:56 57 58 59 60 61 62 | Used by:86 |
Symbol 64 Bitmap | Used by:85 | |
Symbol 65 Bitmap | Used by:85 | |
Symbol 66 Bitmap | Used by:85 | |
Symbol 67 Bitmap | Used by:85 | |
Symbol 68 Bitmap | Used by:85 | |
Symbol 69 Bitmap | Used by:85 | |
Symbol 70 Bitmap | Used by:85 | |
Symbol 71 Bitmap | Used by:85 | |
Symbol 72 Bitmap | Used by:85 | |
Symbol 73 Bitmap | Used by:85 | |
Symbol 74 Bitmap | Used by:85 | |
Symbol 75 Bitmap | Used by:85 | |
Symbol 76 Bitmap | Used by:85 | |
Symbol 77 Bitmap | Used by:85 | |
Symbol 78 Bitmap | Used by:85 | |
Symbol 79 Bitmap | Used by:85 | |
Symbol 80 Bitmap | Used by:85 | |
Symbol 81 Bitmap | Used by:85 | |
Symbol 82 Bitmap | Used by:85 | |
Symbol 83 Bitmap | Used by:85 | |
Symbol 84 Bitmap | Used by:85 | |
Symbol 85 Graphic | Uses:64 65 66 67 68 56 69 70 71 72 73 74 75 76 57 77 78 79 58 59 60 80 81 82 83 61 84 62 | Used by:86 |
Symbol 86 MovieClip [fishType2] | Uses:63 85 | Used by:208 |
Symbol 87 Bitmap | Used by:95 101 | |
Symbol 88 Bitmap | Used by:95 101 | |
Symbol 89 Bitmap | Used by:95 101 | |
Symbol 90 Bitmap | Used by:95 101 | |
Symbol 91 Bitmap | Used by:95 101 | |
Symbol 92 Bitmap | Used by:95 101 | |
Symbol 93 Bitmap | Used by:95 101 | |
Symbol 94 Bitmap | Used by:95 101 | |
Symbol 95 Graphic | Uses:87 88 89 90 91 92 93 94 | Used by:102 |
Symbol 96 Bitmap | Used by:101 | |
Symbol 97 Bitmap | Used by:101 | |
Symbol 98 Bitmap | Used by:101 | |
Symbol 99 Bitmap | Used by:101 | |
Symbol 100 Bitmap | Used by:101 | |
Symbol 101 Graphic | Uses:87 96 97 88 89 98 91 92 90 99 93 94 100 | Used by:102 |
Symbol 102 MovieClip [fishType1] | Uses:95 101 | Used by:206 |
Symbol 103 Bitmap | Used by:104 220 | |
Symbol 104 Graphic | Uses:103 | Used by:Timeline |
Symbol 105 Graphic | Used by:106 | |
Symbol 106 MovieClip | Uses:105 | Used by:Timeline |
Symbol 107 Graphic | Used by:108 | |
Symbol 108 MovieClip | Uses:107 | Used by:Timeline |
Symbol 109 Font | Used by:110 111 117 118 123 137 138 139 140 141 197 221 222 229 230 231 232 | |
Symbol 110 Text | Uses:109 | Used by:Timeline |
Symbol 111 EditableText | Uses:109 | Used by:Timeline |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 MovieClip | Uses:112 | Used by:116 |
Symbol 114 Font | Used by:115 200 201 203 205 207 209 211 213 215 217 227 | |
Symbol 115 Text | Uses:114 | Used by:116 |
Symbol 116 MovieClip | Uses:113 115 | Used by:Timeline |
Symbol 117 EditableText | Uses:109 | Used by:Timeline |
Symbol 118 EditableText | Uses:109 | Used by:Timeline |
Symbol 119 Graphic | Used by:120 | |
Symbol 120 MovieClip | Uses:119 | Used by:219 Timeline |
Symbol 121 Graphic | Used by:122 | |
Symbol 122 MovieClip | Uses:121 | Used by:219 Timeline |
Symbol 123 Text | Uses:109 | Used by:Timeline |
Symbol 124 Graphic | Used by:Timeline | |
Symbol 125 Bitmap | Used by:126 | |
Symbol 126 Graphic | Uses:125 | Used by:127 |
Symbol 127 MovieClip | Uses:126 | Used by:Timeline |
Symbol 128 Graphic | Used by:129 | |
Symbol 129 MovieClip | Uses:128 | Used by:130 |
Symbol 130 MovieClip | Uses:129 | Used by:Timeline |
Symbol 233 MovieClip [__Packages.mx.transitions.OnEnterFrameBeacon] | ||
Symbol 234 MovieClip [__Packages.mx.transitions.BroadcasterMX] | ||
Symbol 235 MovieClip [__Packages.mx.transitions.Tween] | ||
Symbol 236 MovieClip [__Packages.mx.transitions.easing.None] | ||
Symbol 237 MovieClip [__Packages.mx.transitions.easing.Regular] | ||
Symbol 131 Bitmap | Used by:132 | |
Symbol 132 Graphic | Uses:131 | Used by:Timeline |
Symbol 133 Graphic | Used by:134 | |
Symbol 134 MovieClip | Uses:133 | Used by:Timeline |
Symbol 135 Graphic | Used by:136 | |
Symbol 136 MovieClip | Uses:135 | Used by:Timeline |
Symbol 137 EditableText | Uses:109 | Used by:Timeline |
Symbol 138 Text | Uses:109 | Used by:Timeline |
Symbol 139 EditableText | Uses:109 | Used by:Timeline |
Symbol 140 EditableText | Uses:109 | Used by:Timeline |
Symbol 141 EditableText | Uses:109 | Used by:Timeline |
Symbol 142 Bitmap | Used by:153 | |
Symbol 143 Bitmap | Used by:153 | |
Symbol 144 Bitmap | Used by:153 | |
Symbol 145 Bitmap | Used by:153 | |
Symbol 146 Bitmap | Used by:153 | |
Symbol 147 Bitmap | Used by:153 | |
Symbol 148 Bitmap | Used by:153 | |
Symbol 149 Bitmap | Used by:153 | |
Symbol 150 Bitmap | Used by:153 | |
Symbol 151 Bitmap | Used by:153 | |
Symbol 152 Bitmap | Used by:153 | |
Symbol 153 Graphic | Uses:142 143 144 145 146 147 148 149 150 151 152 | Used by:168 |
Symbol 154 Graphic | Used by:155 | |
Symbol 155 MovieClip | Uses:154 | Used by:168 |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:156 | Used by:159 |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:157 158 | Used by:168 |
Symbol 160 Bitmap | Used by:161 | |
Symbol 161 Graphic | Uses:160 | Used by:162 |
Symbol 162 MovieClip | Uses:161 | Used by:163 |
Symbol 163 MovieClip | Uses:162 | Used by:166 |
Symbol 164 Graphic | Used by:165 | |
Symbol 165 MovieClip | Uses:164 | Used by:166 |
Symbol 166 MovieClip | Uses:163 165 | Used by:168 |
Symbol 167 Graphic | Used by:168 | |
Symbol 168 MovieClip | Uses:153 155 159 166 167 | Used by:Timeline |
Symbol 169 Graphic | Used by:170 | |
Symbol 170 MovieClip | Uses:169 | Used by:177 |
Symbol 171 Graphic | Used by:172 | |
Symbol 172 MovieClip | Uses:171 | Used by:177 |
Symbol 173 Graphic | Used by:174 | |
Symbol 174 MovieClip | Uses:173 | Used by:177 |
Symbol 175 Graphic | Used by:176 | |
Symbol 176 MovieClip | Uses:175 | Used by:177 |
Symbol 177 MovieClip | Uses:170 172 174 176 | Used by:Timeline |
Symbol 178 Graphic | Used by:181 | |
Symbol 179 Font | Used by:180 | |
Symbol 180 EditableText | Uses:179 | Used by:181 |
Symbol 181 MovieClip | Uses:178 180 | Used by:182 |
Symbol 182 MovieClip | Uses:181 | Used by:Timeline |
Symbol 183 Bitmap | Used by:192 | |
Symbol 184 Bitmap | Used by:192 | |
Symbol 185 Bitmap | Used by:192 | |
Symbol 186 Bitmap | Used by:192 | |
Symbol 187 Bitmap | Used by:192 | |
Symbol 188 Bitmap | Used by:192 | |
Symbol 189 Bitmap | Used by:192 | |
Symbol 190 Bitmap | Used by:192 | |
Symbol 191 Bitmap | Used by:192 | |
Symbol 192 Graphic | Uses:183 184 185 186 187 188 189 190 191 | Used by:193 |
Symbol 193 MovieClip | Uses:192 | Used by:Timeline |
Symbol 194 Graphic | Used by:Timeline | |
Symbol 195 Graphic | Used by:196 | |
Symbol 196 MovieClip | Uses:195 | Used by:Timeline |
Symbol 197 EditableText | Uses:109 | Used by:Timeline |
Symbol 198 Graphic | Used by:199 | |
Symbol 199 MovieClip | Uses:198 | Used by:219 |
Symbol 200 EditableText | Uses:114 | Used by:219 |
Symbol 201 EditableText | Uses:114 | Used by:219 |
Symbol 202 Graphic | Used by:204 | |
Symbol 203 Text | Uses:114 | Used by:204 |
Symbol 204 MovieClip | Uses:202 203 | Used by:219 |
Symbol 205 Text | Uses:114 | Used by:206 |
Symbol 206 MovieClip | Uses:205 102 | Used by:219 |
Symbol 207 Text | Uses:114 | Used by:208 |
Symbol 208 MovieClip | Uses:207 86 | Used by:219 |
Symbol 209 Text | Uses:114 | Used by:210 |
Symbol 210 MovieClip | Uses:209 55 | Used by:219 |
Symbol 211 Text | Uses:114 | Used by:212 |
Symbol 212 MovieClip | Uses:211 43 | Used by:219 |
Symbol 213 Text | Uses:114 | Used by:214 |
Symbol 214 MovieClip | Uses:213 28 | Used by:219 |
Symbol 215 Text | Uses:114 | Used by:216 |
Symbol 216 MovieClip | Uses:215 20 | Used by:219 |
Symbol 217 Text | Uses:114 | Used by:218 |
Symbol 218 MovieClip | Uses:217 16 | Used by:219 |
Symbol 219 MovieClip | Uses:199 200 201 204 206 208 210 212 214 216 218 120 122 | Used by:Timeline |
Symbol 220 Graphic | Uses:103 | Used by:Timeline |
Symbol 221 Text | Uses:109 | Used by:Timeline |
Symbol 222 Text | Uses:109 | Used by:Timeline |
Symbol 223 Graphic | Used by:224 | |
Symbol 224 MovieClip | Uses:223 | Used by:228 |
Symbol 225 Graphic | Used by:226 | |
Symbol 226 MovieClip | Uses:225 | Used by:228 |
Symbol 227 Text | Uses:114 | Used by:228 |
Symbol 228 MovieClip | Uses:224 226 227 | Used by:Timeline |
Symbol 229 Text | Uses:109 | Used by:Timeline |
Symbol 230 EditableText | Uses:109 | Used by:Timeline |
Symbol 231 EditableText | Uses:109 | Used by:Timeline |
Symbol 232 Text | Uses:109 | Used by:Timeline |
Instance Names
"nums" | Frame 1 | Symbol 111 EditableText |
"startButton" | Frame 1 | Symbol 116 MovieClip |
"scoreListScores" | Frame 1 | Symbol 117 EditableText |
"scoreListNames" | Frame 1 | Symbol 118 EditableText |
"fish" | Frame 1 | Symbol 130 MovieClip |
"bucket" | Frame 2 | Symbol 134 MovieClip |
"maskFill" | Frame 2 | Symbol 136 MovieClip |
"poundstxt" | Frame 2 | Symbol 137 EditableText |
"scoreText" | Frame 2 | Symbol 139 EditableText |
"levelText" | Frame 2 | Symbol 140 EditableText |
"goalText" | Frame 2 | Symbol 141 EditableText |
"boat" | Frame 2 | Symbol 168 MovieClip |
"claw" | Frame 2 | Symbol 177 MovieClip |
"speechBubble" | Frame 2 | Symbol 182 MovieClip |
"circ" | Frame 2 | Symbol 196 MovieClip |
"tL" | Frame 2 | Symbol 197 EditableText |
"instructions" | Frame 2 | Symbol 219 MovieClip |
"submitButton" | Frame 3 | Symbol 228 MovieClip |
"unm" | Frame 3 | Symbol 230 EditableText |
"finalScore" | Frame 3 | Symbol 231 EditableText |
"hitSpot" | Symbol 130 MovieClip Frame 1 | Symbol 129 MovieClip |
"wings" | Symbol 163 MovieClip Frame 1 | Symbol 162 MovieClip |
"propel" | Symbol 166 MovieClip Frame 1 | Symbol 163 MovieClip |
"ripples2" | Symbol 166 MovieClip Frame 1 | Symbol 165 MovieClip |
"ripples" | Symbol 166 MovieClip Frame 1 | Symbol 165 MovieClip |
"propeller" | Symbol 168 MovieClip Frame 1 | Symbol 166 MovieClip |
"hitZone" | Symbol 177 MovieClip Frame 1 | Symbol 170 MovieClip |
"hinge" | Symbol 177 MovieClip Frame 1 | Symbol 172 MovieClip |
"lClaw" | Symbol 177 MovieClip Frame 1 | Symbol 174 MovieClip |
"rClaw" | Symbol 177 MovieClip Frame 1 | Symbol 176 MovieClip |
"speech" | Symbol 181 MovieClip Frame 1 | Symbol 180 EditableText |
"bubble" | Symbol 182 MovieClip Frame 1 | Symbol 181 MovieClip |
"insTitle" | Symbol 219 MovieClip Frame 1 | Symbol 200 EditableText |
"insText" | Symbol 219 MovieClip Frame 1 | Symbol 201 EditableText |
"startLevel" | Symbol 219 MovieClip Frame 1 | Symbol 204 MovieClip |
"fi1" | Symbol 219 MovieClip Frame 1 | Symbol 206 MovieClip |
"fi2" | Symbol 219 MovieClip Frame 1 | Symbol 208 MovieClip |
"fi3" | Symbol 219 MovieClip Frame 1 | Symbol 210 MovieClip |
"fi4" | Symbol 219 MovieClip Frame 1 | Symbol 212 MovieClip |
"fi5" | Symbol 219 MovieClip Frame 1 | Symbol 214 MovieClip |
"fi6" | Symbol 219 MovieClip Frame 1 | Symbol 216 MovieClip |
"fi7" | Symbol 219 MovieClip Frame 1 | Symbol 218 MovieClip |
"goButton" | Symbol 228 MovieClip Frame 1 | Symbol 224 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "fishPop" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "dropDown" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "bloop" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "bgmusic" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "murk" |
ExportAssets (56) | Timeline Frame 1 | Symbol 16 as "fishType7" |
ExportAssets (56) | Timeline Frame 1 | Symbol 20 as "fishType6" |
ExportAssets (56) | Timeline Frame 1 | Symbol 28 as "fishType5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 43 as "fishType4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 55 as "fishType3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 86 as "fishType2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "fishType1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 233 as "__Packages.mx.transitions.OnEnterFrameBeacon" |
ExportAssets (56) | Timeline Frame 1 | Symbol 234 as "__Packages.mx.transitions.BroadcasterMX" |
ExportAssets (56) | Timeline Frame 1 | Symbol 235 as "__Packages.mx.transitions.Tween" |
ExportAssets (56) | Timeline Frame 1 | Symbol 236 as "__Packages.mx.transitions.easing.None" |
ExportAssets (56) | Timeline Frame 1 | Symbol 237 as "__Packages.mx.transitions.easing.Regular" |
Dynamic Text Variables
scorescores | Symbol 117 EditableText | "100 000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" |
scorenames | Symbol 118 EditableText | "Alishah Novin 2 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35." |
gT | Symbol 141 EditableText | "Goal: 30lbs" |
|