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

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

dolphin.swf

This is the info page for
Flash #73641

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


Text
000

STORAGE

BONUS
ENERGY!

DAMAGE!

HOOP
JUMP!

DISTANCE TRAVELLED

HOOPS

SCORE

0

0

0

MAIN MENU

MAIN MENU

TRY AGAIN

TRY AGAIN

GAME OVER

GAME OVER

© 2005 Terry Paton's

DOLPHIN

DOLPHIN

start

or press space

start

CONTROLS

CONTROLS

KEYTESTER

WAVES HOLDER

FRAMEACTION

ENERGY

DISTANCE

0m

HOOPS

0

TIPS

MOVE: ARROW KEYS

SPEED: SPACE

MOVE: ARROW KEYS

SPEED: SPACE

BACK

BACK

BACK

Help Dolphin swim as far as she can before her energy runs out.
Dolphin will jump if you press up while near the surface and she is
swimming fast enough
TIPS
Leap through the hoops for points
Eat fish for more energy
Jumping through the air uses no energy
Sharks will slow dolphin and sap her energy

ActionScript [AS1/AS2]

Frame 1
Frame 3
function frontbubbleClass() { } frontbubbleClass.prototype = new MovieClip(); frontbubbleClass.prototype.onLoad = function () { this.ty = 140 + random(40); this._x = 640 + random(640); this._y = random(480); }; frontbubbleClass.prototype.onEnterFrame = function () { this._x = this._x - 10; this.m = (this._y - this.ty) / 100; this._y = this._y - this.m; this._alpha = this._alpha - 0.5; this.life--; this._xscale = this._xscale - 0.5; this._yscale = this._yscale - 0.5; if (this._x < -20) { this._xscale = 100; this._yscale = 100; this._x = 640 + random(640); this._y = random(480); this._alpha = 100; } }; Object.registerClass("bubble_start", frontbubbleClass);
Frame 4
function startgame() { gotoAndPlay (9); } i = 0; while (i < 5) { front.attachMovie("bubble_start", "b" + i, i + 100); i++; } i = 0; while (i < 5) { back.attachMovie("bubble_start", "b" + i, i + 100); i++; }
Instance of Symbol 364 MovieClip in Frame 4
onClipEvent (enterFrame) { if (Key.isDown(32)) { _root.startgame(); } }
Frame 8
stop();
Frame 9
function mainmenu() { removeMovieClip("gameover"); gotoAndPlay (4); } function tryagain() { removeMovieClip("gameover"); this.fadein.gotoAndPlay(1); setup(); } function attachbonusalert() { this.waves_holder.attachMovie("bonusalert", "b" + fnum, fnum); fnum++; } function attachhurtalert() { this.waves_holder.attachMovie("hurtalert", "b" + fnum, fnum); fnum++; } function attachhoopalert() { this.waves_holder.attachMovie("hoopalert", "b" + fnum, fnum); fnum++; } function frameaction() { switch (gamestate) { case "game over" : trace("GAMEOVER"); i = 124; while (i < 151) { removeMovieClip(eval ("this.ocean.bfish" + i)); removeMovieClip(eval ("this.ocean.hoop" + i)); removeMovieClip(eval ("this.ocean.shark" + i)); i++; } _root.distancescore = Math.floor(distance / 10); hoopbonus = hoops * 500; _root.hoopscore = (hoops + " x 500 = ") + hoopbonus; _root.finalscore = distancescore + hoopbonus; attachMovie("gameover", "gameover", 100); gameover._x = 320; gameover._y = 200; gamestate = "waiting"; return; case "setup" : trace("setup"); setupocean(); drawdolphin(); gamestate = "wait for start"; waitcount = 0; return; case "wait for start" : waitcount++; if (waitcount > 30) { gamestate = "race"; } return; case "race" : _global.lastjumped++; distance = distance + swimspeed; if (py > 192) { denergy = denergy - 0.5; if (denergy < 1) { trace(denergy); gamestate = "game over"; } } testkeys(); drawocean(); drawdolphin(); tempe = Math.floor(distance / 500); if (tempe > lastfish) { this.ocean.attachMovie("bonusfish", "bfish" + fnum, 150 + fnum); spawndist = 300 + random(300); fnum++; if (fnum > 150) { fnum = 125; } lastfish = tempe; } tempe = Math.floor(distance / 2500); if (tempe > lasthoop) { this.ocean.attachMovie("hoop", "hoop" + fnum, 150 + fnum); fnum++; if (fnum > 150) { fnum = 125; } lasthoop = tempe; } tempe = Math.floor(distance / sharkspawndist); if (tempe > lastshark) { this.ocean.attachMovie("shark", "shark" + fnum, 150 + fnum); fnum++; if (fnum > 150) { fnum = 125; } lastshark = tempe; sharkspawndist = 1700 + random(1000); } _root.displaydistance = Math.floor(distance / 10) + "m"; } } function setup() { delete gamestate; delete spawndist; delete sharkspawndist; delete lastshark; delete distance; delete clipnum; delete swimspeed; delete dolphinframe; delete denergy; delete px; delete py; delete danimcount; delete lastfish; delete score; delete hoopscore; delete lastjumped; delete bnum; delete fnum; delete jumpspeed; delete startjumpspeed; delete leftwater; _global.spawndist = 300 + random(300); _global.sharkspawndist = 300 + random(300); _global.lastshark = 0; _global.distance = 0; _global.clipnum = 0; _global.swimspeed = 2; _global.gamestate = "setup"; _global.dolphinframe = 1; _global.denergy = 1000; this.ocean.attachMovie("dolphin", "dolphin", 100); this.waves_holder.attachMovie("watersurface", "wave", 103); this.waves_holder.wave._y = 180; _global.px = 100; _global.py = 300; _global.danimcount = 0; _global.lastfish = 0; _global.lasthoop = 0; _global.bonusenergy = 40; _global.score = 0; _global.hoopscore = 0; _global.lastjumped = 0; _global.bnum = 25; _global.fnum = 125; _global.swimkey = 32; _global.upkey = 38; _global.downkey = 40; _global.leftkey = 37; _global.rightkey = 39; _global.startjumpspeed = 10; _global.jumpspeed = startjumpspeed; _global.leftwater = 0; ofd = new Array(); j = 0; while (j < 400) { ofd.push(random(10) + 1); j++; } _global.splash_snd = new Sound(); splash_snd.attachSound("splashsnd"); _global.eat_snd = new Sound(); eat_snd.attachSound("eat"); _global.leap_snd = new Sound(); leap_snd.attachSound("leap"); _global.hoop_snd = new Sound(); hoop_snd.attachSound("hoopsound"); _global.hurt_snd = new Sound(); hurt_snd.attachSound("hurtsound"); trace(gamestate); } function testkeys() { if (Key.isDown(swimkey)) { if (py > 190) { swimspeed = swimspeed + 1.2; denergy = denergy - 1; if (swimspeed > 25) { swimspeed = 25; } } } if (Key.isDown(upkey)) { if (py > 195) { py = py - 4; } } if (Key.isDown(downkey)) { if (py > 190) { py = py + 4; } } if (Key.isDown(leftkey)) { if (py > 191) { px = px - 4; swimspeed = swimspeed * 0.95; if (swimspeed < 1) { swimspeed = 1; } } } if (Key.isDown(rightkey)) { px = px + 4; } if (py > 390) { py = 390; } if (px < 100) { px = 100; } if (px > 450) { px = 450; } } function hurtalertClass() { } hurtalertClass.prototype = new MovieClip(); hurtalertClass.prototype.onLoad = function () { this.x = px - 30; this.y = py; this._x = this.x; this._y = this.y; this.state = "follow"; this.c = 0; }; hurtalertClass.prototype.onEnterFrame = function () { if (this.state == "drift away") { this.sp = this.sp * 1.1; this.x = this.x - this.sp; } if (this.state == "follow") { this.c++; if (this.c > 40) { this.state = "drift away"; this.sp = swimspeed; } if (this.x > (px - 10)) { this.x--; } if (this.x < (px - 10)) { this.x++; } if (this.y > py) { this.y--; } if (this.y < py) { this.y++; } } if (this.x < -5) { removeMovieClip(this); } this._x = this.x; this._y = this.y; }; Object.registerClass("hurtalert", hurtalertClass); function hoopalertClass() { } hoopalertClass.prototype = new MovieClip(); hoopalertClass.prototype.onLoad = function () { this.x = px - 30; this.y = py; this._x = this.x; this._y = this.y; this.state = "follow"; this.c = 0; }; hoopalertClass.prototype.onEnterFrame = function () { if (this.state == "drift away") { this.sp = this.sp * 1.1; this.x = this.x - this.sp; } if (this.state == "follow") { this.c++; if (this.c > 30) { this.state = "drift away"; this.sp = swimspeed; } if (this.x > (px - 10)) { this.x--; } if (this.x < (px - 10)) { this.x++; } } if (this.x < -5) { removeMovieClip(this); } this._x = this.x; this._y = this.y; }; Object.registerClass("hoopalert", hoopalertClass); function bonusalertClass() { } bonusalertClass.prototype = new MovieClip(); bonusalertClass.prototype.onLoad = function () { this.x = px - 30; this.y = py; this._x = this.x; this._y = this.y; this.state = "follow"; this.c = 0; }; bonusalertClass.prototype.onEnterFrame = function () { if (this.state == "drift away") { this.sp = this.sp * 1.1; this.x = this.x - this.sp; } if (this.state == "follow") { this.c++; if (this.c > 30) { this.state = "drift away"; this.sp = swimspeed; } if (this.x > (px - 10)) { this.x--; } if (this.x < (px - 10)) { this.x++; } if (this.y > py) { this.y--; } if (this.y < py) { this.y++; } } if (this.x < -5) { removeMovieClip(this); } this._x = this.x; this._y = this.y; }; Object.registerClass("bonusalert", bonusalertClass); function sharkClass() { } sharkClass.prototype = new MovieClip(); sharkClass.prototype.onLoad = function () { this._x = 650; this._y = random(100) + 190; this.state = 1; }; sharkClass.prototype.onEnterFrame = function () { this.x = this._x; this.y = this._y; this.x = this.x - (swimspeed + 2); this.tempx = Math.floor(Math.abs(this.x - px)); this.tempy = Math.floor(Math.abs(this.y - py)); if (this.tempy < 25) { if (this.tempx < 70) { if (this.state < 2) { denergy = denergy - 70; swimspeed = swimspeed - 20; if (swimspeed < 1) { swimspeed = 1; } hurt_snd.start(); _root.attachhurtalert(); this.state = 2; } } } this._x = Math.floor(this.x); if (this._x < -35) { removeMovieClip(this); } }; Object.registerClass("shark", sharkClass); function fishClass() { } fishClass.prototype = new MovieClip(); fishClass.prototype.onLoad = function () { this._x = 650; this._y = random(180) + 210; }; fishClass.prototype.onEnterFrame = function () { this.x = this._x; this.y = this._y; this.x = this.x - (swimspeed + 2); this.tempx = Math.floor(Math.abs(this.x - px)); this.tempy = Math.floor(Math.abs(this.y - py)); if (this.tempy < 20) { if (this.tempx < 50) { if (denergy < 1000) { denergy = denergy + bonusenergy; if (denergy > 1000) { denergy = 1000; } eat_snd.start(); _root.attachbonusalert(); removeMovieClip(this); } } } this._x = Math.floor(this.x); if (this._x < -15) { removeMovieClip(this); } }; Object.registerClass("bonusfish", fishClass); function hoopClass() { } hoopClass.prototype = new MovieClip(); hoopClass.prototype.onLoad = function () { this._x = 650; this._y = random(80) + 50; this.jumped = 0; }; hoopClass.prototype.onEnterFrame = function () { this.x = this._x; this.y = this._y; this.x = this.x - (swimspeed + 1); this.tempx = Math.floor(Math.abs(this.x - px)); this.tempy = Math.floor(Math.abs(this.y - py)); if (this.jumped == 0) { if (this.tempy < 50) { if (this.tempx < 20) { _root.hoops++; _root.attachhoopalert(); hoop_snd.start(); this.jumped = 1; this.gotoAndStop(2); } } } this._x = Math.floor(this.x); if (this._x < -15) { removeMovieClip(this); } }; Object.registerClass("hoop", hoopClass); function drawdolphin() { this.ocean.dolphin._x = px; this.ocean.dolphin._y = py; if (leftwater == 0) { danimcount++; danimdelay = 7 - swimspeed; if (danimdelay < 2) { danimdelay = 2; } if (danimcount > danimdelay) { this.ocean.attachMovie("bubble", "b" + bnum, bnum); with (eval ("this.ocean.b" + bnum)) { _x = (px - 30) - random(10); _y = py + random(20); } bnum++; if (bnum > 90) { bnum = 25; } danimcount = 0; } danim = Math.floor(swimspeed / 2); if (danim < 1) { danim = 1; } if (danim > 5) { danim = 5; } dolphinframe = dolphinframe + danim; if (dolphinframe > 41) { dolphinframe = Math.floor(dolphinframe - 40); } this.ocean.dolphin.gotoAndStop(dolphinframe); swimspeed = swimspeed * 0.99; if (swimspeed < 1) { swimspeed = 1; } } if (((py < 195) && (leftwater == 0)) && (lastjumped > 80)) { trace("lastjumped = " + lastjumped); if (swimspeed < 10) { } if (swimspeed > 10) { leap_snd.start(); startjumpspeed = swimspeed / 4; trace(startjumpspeed); if (startjumpspeed > 10) { startjumpspeed = 10; } jumpspeed = startjumpspeed; this.ocean.dolphin.gotoAndStop(90); this.ocean.attachMovie("splash", "splash", 101); ocean.splash._x = px; ocean.splash._y = 190; trace(ocean.splash._y); trace(ocean.splash._x); leftwater = 1; _global.lastjumped = 0; } } if (leftwater == 1) { py = py - jumpspeed; jumpspeed = jumpspeed * 0.95; if (jumpspeed < 1) { leftwater = 2; jumpspeed = 1; } if (py < 50) { py = 50; } swimspeed = swimspeed * 0.995; } if (leftwater == 2) { py = py + jumpspeed; jumpspeed = jumpspeed * 1.1; if (py > 194) { leftwater = 0; trace("SPLASH in"); ocean.attachMovie("splash", "splash", 101); ocean.splash._x = px; ocean.splash._y = 190; py = 220; } swimspeed = swimspeed * 0.995; } } function bubbleClass() { } bubbleClass.prototype = new MovieClip(); bubbleClass.prototype.onLoad = function () { this.bsize = random(50) + 50; this._xscale = this.bsize; this._yscale = this.bsize; this.life = 30; this._alpha = 80; }; bubbleClass.prototype.onEnterFrame = function () { this._x = this._x - swimspeed; this._alpha = this._alpha - 2; this.life--; if ((this.life < 1) || (this._x < -2)) { removeMovieClip(this); } }; Object.registerClass("bubble", bubbleClass); function drawocean() { this.energy._xscale = denergy / 10; tempc = Math.floor(distance / 640); tempd = Math.floor(distance - (tempc * 640)); this.waves_holder.wave._x = -tempd; tempc = Math.floor(distance / 1280); tempd = Math.floor(distance - (tempc * 1280)); this.ocean.clouds._x = -tempd; this.ocean.splash._x = this.ocean.splash._x - swimspeed; tempa = Math.floor(distance / 100); tempb = Math.floor(distance - (tempa * 100)); if (tempb < lastpos) { i = 0; while (i < 8) { with (eval ("this.ocean.t" + i)) { _x = (-tempb) + (i * 100); _y = 380; gotoAndStop(ofd[i + tempa]); } i++; } } i = 0; while (i < 8) { with (eval ("this.ocean.t" + i)) { _x = (-tempb) + (i * 100); _y = 380; } i++; } lastpos = tempb; } function setupocean() { i = 0; while (i < 8) { this.ocean.attachMovie("tile", "t" + i, i); with (eval ("this.ocean.t" + i)) { _x = i * 100; _y = 380; gotoAndStop(ofd[i]); } i++; } }
Instance of Symbol 374 MovieClip in Frame 9
onClipEvent (enterFrame) { _parent.frameaction(); }
Frame 10
setup();
Frame 11
stop();
Frame 12
Frame 16
stop();
Symbol 7 MovieClip Frame 1
_root.stop(); PercentLoaded = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { _root.play(); }
Symbol 7 MovieClip Frame 2
gotoAndPlay (1);
Symbol 31 MovieClip [tile] Frame 1
stop();
Symbol 114 MovieClip [dolphin] Frame 1
stop();
Symbol 122 MovieClip [hoop] Frame 1
stop();
Symbol 167 MovieClip [splash] Frame 11
removeMovieClip(this);
Symbol 255 Button
on (press) { _root.mainmenu(); }
Symbol 258 Button
on (press) { _root.tryagain(); }
Symbol 268 MovieClip Frame 1
stop();
Symbol 359 Button
on (release) { _root.startgame(); }
Symbol 362 Button
on (release) { gotoAndPlay (12); }
Symbol 385 MovieClip Frame 31
stop();
Symbol 394 Button
on (release) { gotoAndPlay (4); }

Library Items

Symbol 1 GraphicUsed by:269 351 370  Timeline
Symbol 2 GraphicUsed by:3 359 362 394  Timeline
Symbol 3 MovieClipUses:2Used by:7
Symbol 4 GraphicUsed by:7
Symbol 5 FontUsed by:6 8 363 371 373
Symbol 6 EditableTextUses:5Used by:7
Symbol 7 MovieClipUses:3 4 6Used by:Timeline
Symbol 8 EditableTextUses:5Used by:268
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:31
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:31
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:31
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:31
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:31
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:31
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:31
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:31
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:31
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:31
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:31
Symbol 31 MovieClip [tile]Uses:10 12 14 16 18 20 22 24 26 28 30Used by:268
Symbol 32 BitmapUsed by:33
Symbol 33 GraphicUses:32Used by:114
Symbol 34 BitmapUsed by:35
Symbol 35 GraphicUses:34Used by:114
Symbol 36 BitmapUsed by:37
Symbol 37 GraphicUses:36Used by:114
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:114
Symbol 40 BitmapUsed by:41
Symbol 41 GraphicUses:40Used by:114
Symbol 42 BitmapUsed by:43
Symbol 43 GraphicUses:42Used by:114
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:114
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:114
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:48Used by:114
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:114
Symbol 52 BitmapUsed by:53
Symbol 53 GraphicUses:52Used by:114
Symbol 54 BitmapUsed by:55
Symbol 55 GraphicUses:54Used by:114
Symbol 56 BitmapUsed by:57
Symbol 57 GraphicUses:56Used by:114
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:114
Symbol 60 BitmapUsed by:61
Symbol 61 GraphicUses:60Used by:114
Symbol 62 BitmapUsed by:63
Symbol 63 GraphicUses:62Used by:114
Symbol 64 BitmapUsed by:65
Symbol 65 GraphicUses:64Used by:114
Symbol 66 BitmapUsed by:67
Symbol 67 GraphicUses:66Used by:114
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:114
Symbol 70 BitmapUsed by:71
Symbol 71 GraphicUses:70Used by:114
Symbol 72 BitmapUsed by:73
Symbol 73 GraphicUses:72Used by:114
Symbol 74 BitmapUsed by:75
Symbol 75 GraphicUses:74Used by:114
Symbol 76 BitmapUsed by:77
Symbol 77 GraphicUses:76Used by:114
Symbol 78 BitmapUsed by:79
Symbol 79 GraphicUses:78Used by:114
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:114
Symbol 82 BitmapUsed by:83
Symbol 83 GraphicUses:82Used by:114
Symbol 84 BitmapUsed by:85
Symbol 85 GraphicUses:84Used by:114
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:114
Symbol 88 BitmapUsed by:89
Symbol 89 GraphicUses:88Used by:114
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:114
Symbol 92 BitmapUsed by:93
Symbol 93 GraphicUses:92Used by:114
Symbol 94 BitmapUsed by:95
Symbol 95 GraphicUses:94Used by:114
Symbol 96 BitmapUsed by:97
Symbol 97 GraphicUses:96Used by:114
Symbol 98 BitmapUsed by:99
Symbol 99 GraphicUses:98Used by:114
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:114
Symbol 102 BitmapUsed by:103
Symbol 103 GraphicUses:102Used by:114
Symbol 104 BitmapUsed by:105
Symbol 105 GraphicUses:104Used by:114
Symbol 106 BitmapUsed by:107
Symbol 107 GraphicUses:106Used by:114
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108Used by:114
Symbol 110 BitmapUsed by:111
Symbol 111 GraphicUses:110Used by:114
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:114
Symbol 114 MovieClip [dolphin]Uses:33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99 101 103 105 107 109 111 113Used by:268
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:117
Symbol 117 MovieClip [bubble]Uses:116Used by:268
Symbol 118 BitmapUsed by:119
Symbol 119 GraphicUses:118Used by:122
Symbol 120 BitmapUsed by:121
Symbol 121 GraphicUses:120Used by:122
Symbol 122 MovieClip [hoop]Uses:119 121Used by:268
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:165
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:165
Symbol 127 BitmapUsed by:128
Symbol 128 GraphicUses:127Used by:165
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:165
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:165
Symbol 133 BitmapUsed by:134
Symbol 134 GraphicUses:133Used by:165
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:165
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:165
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:165
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:165
Symbol 143 BitmapUsed by:144
Symbol 144 GraphicUses:143Used by:165
Symbol 145 BitmapUsed by:146
Symbol 146 GraphicUses:145Used by:165
Symbol 147 BitmapUsed by:148
Symbol 148 GraphicUses:147Used by:165
Symbol 149 BitmapUsed by:150
Symbol 150 GraphicUses:149Used by:165
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:165
Symbol 153 BitmapUsed by:154
Symbol 154 GraphicUses:153Used by:165
Symbol 155 BitmapUsed by:156
Symbol 156 GraphicUses:155Used by:165
Symbol 157 BitmapUsed by:158
Symbol 158 GraphicUses:157Used by:165
Symbol 159 BitmapUsed by:160
Symbol 160 GraphicUses:159Used by:165
Symbol 161 BitmapUsed by:162
Symbol 162 GraphicUses:161Used by:165
Symbol 163 BitmapUsed by:164
Symbol 164 GraphicUses:163Used by:165
Symbol 165 MovieClip [bonusfish]Uses:124 126 128 130 132 134 136 138 140 142 144 146 148 150 152 154 156 158 160 162 164Used by:268
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClip [splash]Uses:166Used by:268
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClip [bubble_start]Uses:168Used by:268  Timeline
Symbol 170 FontUsed by:171 239 241
Symbol 171 TextUses:170Used by:172
Symbol 172 MovieClip [bonusalert]Uses:171Used by:268
Symbol 173 BitmapUsed by:174
Symbol 174 GraphicUses:173Used by:235
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:235
Symbol 177 BitmapUsed by:178
Symbol 178 GraphicUses:177Used by:235
Symbol 179 BitmapUsed by:180
Symbol 180 GraphicUses:179Used by:235
Symbol 181 BitmapUsed by:182
Symbol 182 GraphicUses:181Used by:235
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:235
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:185Used by:235
Symbol 187 BitmapUsed by:188
Symbol 188 GraphicUses:187Used by:235
Symbol 189 BitmapUsed by:190
Symbol 190 GraphicUses:189Used by:235
Symbol 191 BitmapUsed by:192
Symbol 192 GraphicUses:191Used by:235
Symbol 193 BitmapUsed by:194
Symbol 194 GraphicUses:193Used by:235
Symbol 195 BitmapUsed by:196
Symbol 196 GraphicUses:195Used by:235
Symbol 197 BitmapUsed by:198
Symbol 198 GraphicUses:197Used by:235
Symbol 199 BitmapUsed by:200
Symbol 200 GraphicUses:199Used by:235
Symbol 201 BitmapUsed by:202
Symbol 202 GraphicUses:201Used by:235
Symbol 203 BitmapUsed by:204
Symbol 204 GraphicUses:203Used by:235
Symbol 205 BitmapUsed by:206
Symbol 206 GraphicUses:205Used by:235
Symbol 207 BitmapUsed by:208
Symbol 208 GraphicUses:207Used by:235
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:235
Symbol 211 BitmapUsed by:212
Symbol 212 GraphicUses:211Used by:235
Symbol 213 BitmapUsed by:214
Symbol 214 GraphicUses:213Used by:235
Symbol 215 BitmapUsed by:216
Symbol 216 GraphicUses:215Used by:235
Symbol 217 BitmapUsed by:218
Symbol 218 GraphicUses:217Used by:235
Symbol 219 BitmapUsed by:220
Symbol 220 GraphicUses:219Used by:235
Symbol 221 BitmapUsed by:222
Symbol 222 GraphicUses:221Used by:235
Symbol 223 BitmapUsed by:224
Symbol 224 GraphicUses:223Used by:235
Symbol 225 BitmapUsed by:226
Symbol 226 GraphicUses:225Used by:235
Symbol 227 BitmapUsed by:228
Symbol 228 GraphicUses:227Used by:235
Symbol 229 BitmapUsed by:230
Symbol 230 GraphicUses:229Used by:235
Symbol 231 BitmapUsed by:232
Symbol 232 GraphicUses:231Used by:235
Symbol 233 BitmapUsed by:234
Symbol 234 GraphicUses:233Used by:235
Symbol 235 MovieClip [shark]Uses:174 176 178 180 182 184 186 188 190 192 194 196 198 200 202 204 206 208 210 212 214 216 218 220 222 224 226 228 230 232 234Used by:268
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:238
Symbol 238 MovieClip [watersurface]Uses:237Used by:268
Symbol 239 TextUses:170Used by:240
Symbol 240 MovieClip [hurtalert]Uses:239Used by:268
Symbol 241 TextUses:170Used by:242
Symbol 242 MovieClip [hoopalert]Uses:241Used by:268
Symbol 243 GraphicUsed by:263
Symbol 244 GraphicUsed by:263
Symbol 245 FontUsed by:246 247 248 249 250 251 252 253 256 257 380 381 382 383 384
Symbol 246 TextUses:245Used by:263
Symbol 247 TextUses:245Used by:263
Symbol 248 TextUses:245Used by:263
Symbol 249 EditableTextUses:245Used by:263
Symbol 250 EditableTextUses:245Used by:263
Symbol 251 EditableTextUses:245Used by:263
Symbol 252 TextUses:245Used by:255
Symbol 253 TextUses:245Used by:255
Symbol 254 GraphicUsed by:255 258
Symbol 255 ButtonUses:252 253 254Used by:263
Symbol 256 TextUses:245Used by:258
Symbol 257 TextUses:245Used by:258
Symbol 258 ButtonUses:256 257 254Used by:263
Symbol 259 FontUsed by:260 261 352 353 354 355 358 360 361 386 387 388 389 390 391 392 393 396
Symbol 260 TextUses:259Used by:263
Symbol 261 TextUses:259Used by:263
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClip [gameover]Uses:243 244 246 247 248 249 250 251 255 258 260 261 262Used by:268
Symbol 264 Sound [hoopsound]Used by:268
Symbol 265 Sound [eat]Used by:268  Timeline
Symbol 266 Sound [leap]Used by:268
Symbol 267 Sound [hurtsound]Used by:268
Symbol 268 MovieClipUses:8 31 114 117 122 165 167 169 172 235 238 240 242 263 264 265 266 267Used by:Timeline
Symbol 269 MovieClipUses:1Used by:385  Timeline
Symbol 270 BitmapUsed by:271
Symbol 271 GraphicUses:270Used by:350
Symbol 272 BitmapUsed by:273
Symbol 273 GraphicUses:272Used by:350
Symbol 274 BitmapUsed by:275
Symbol 275 GraphicUses:274Used by:350
Symbol 276 BitmapUsed by:277
Symbol 277 GraphicUses:276Used by:350
Symbol 278 BitmapUsed by:279
Symbol 279 GraphicUses:278Used by:350
Symbol 280 BitmapUsed by:281
Symbol 281 GraphicUses:280Used by:350
Symbol 282 BitmapUsed by:283
Symbol 283 GraphicUses:282Used by:350
Symbol 284 BitmapUsed by:285
Symbol 285 GraphicUses:284Used by:350
Symbol 286 BitmapUsed by:287
Symbol 287 GraphicUses:286Used by:350
Symbol 288 BitmapUsed by:289
Symbol 289 GraphicUses:288Used by:350
Symbol 290 BitmapUsed by:291
Symbol 291 GraphicUses:290Used by:350
Symbol 292 BitmapUsed by:293
Symbol 293 GraphicUses:292Used by:350
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:350
Symbol 296 BitmapUsed by:297
Symbol 297 GraphicUses:296Used by:350
Symbol 298 BitmapUsed by:299
Symbol 299 GraphicUses:298Used by:350
Symbol 300 BitmapUsed by:301
Symbol 301 GraphicUses:300Used by:350
Symbol 302 BitmapUsed by:303
Symbol 303 GraphicUses:302Used by:350
Symbol 304 BitmapUsed by:305
Symbol 305 GraphicUses:304Used by:350
Symbol 306 BitmapUsed by:307
Symbol 307 GraphicUses:306Used by:350
Symbol 308 BitmapUsed by:309
Symbol 309 GraphicUses:308Used by:350
Symbol 310 BitmapUsed by:311
Symbol 311 GraphicUses:310Used by:350
Symbol 312 BitmapUsed by:313
Symbol 313 GraphicUses:312Used by:350
Symbol 314 BitmapUsed by:315
Symbol 315 GraphicUses:314Used by:350
Symbol 316 BitmapUsed by:317
Symbol 317 GraphicUses:316Used by:350
Symbol 318 BitmapUsed by:319
Symbol 319 GraphicUses:318Used by:350
Symbol 320 BitmapUsed by:321
Symbol 321 GraphicUses:320Used by:350
Symbol 322 BitmapUsed by:323
Symbol 323 GraphicUses:322Used by:350
Symbol 324 BitmapUsed by:325
Symbol 325 GraphicUses:324Used by:350
Symbol 326 BitmapUsed by:327
Symbol 327 GraphicUses:326Used by:350
Symbol 328 BitmapUsed by:329
Symbol 329 GraphicUses:328Used by:350
Symbol 330 BitmapUsed by:331
Symbol 331 GraphicUses:330Used by:350
Symbol 332 BitmapUsed by:333
Symbol 333 GraphicUses:332Used by:350
Symbol 334 BitmapUsed by:335
Symbol 335 GraphicUses:334Used by:350
Symbol 336 BitmapUsed by:337
Symbol 337 GraphicUses:336Used by:350
Symbol 338 BitmapUsed by:339
Symbol 339 GraphicUses:338Used by:350
Symbol 340 BitmapUsed by:341
Symbol 341 GraphicUses:340Used by:350
Symbol 342 BitmapUsed by:343
Symbol 343 GraphicUses:342Used by:350
Symbol 344 BitmapUsed by:345
Symbol 345 GraphicUses:344Used by:350
Symbol 346 BitmapUsed by:347
Symbol 347 GraphicUses:346Used by:350
Symbol 348 BitmapUsed by:349
Symbol 349 GraphicUses:348Used by:350
Symbol 350 MovieClipUses:271 273 275 277 279 281 283 285 287 289 291 293 295 297 299 301 303 305 307 309 311 313 315 317 319 321 323 325 327 329 331 333 335 337 339 341 343 345 347 349Used by:Timeline
Symbol 351 MovieClipUses:1Used by:Timeline
Symbol 352 TextUses:259Used by:Timeline
Symbol 353 TextUses:259Used by:Timeline
Symbol 354 TextUses:259Used by:Timeline
Symbol 355 TextUses:259Used by:359
Symbol 356 FontUsed by:357
Symbol 357 TextUses:356Used by:359
Symbol 358 TextUses:259Used by:359
Symbol 359 ButtonUses:355 357 358 2Used by:Timeline
Symbol 360 TextUses:259Used by:362
Symbol 361 TextUses:259Used by:362
Symbol 362 ButtonUses:360 361 2Used by:Timeline
Symbol 363 EditableTextUses:5Used by:364
Symbol 364 MovieClipUses:363Used by:Timeline
Symbol 365 GraphicUsed by:366
Symbol 366 MovieClipUses:365Used by:Timeline
Symbol 367 BitmapUsed by:368
Symbol 368 GraphicUses:367Used by:369
Symbol 369 MovieClipUses:368Used by:370
Symbol 370 MovieClipUses:1 369Used by:Timeline
Symbol 371 EditableTextUses:5Used by:372
Symbol 372 MovieClipUses:371Used by:Timeline
Symbol 373 EditableTextUses:5Used by:374
Symbol 374 MovieClipUses:373Used by:Timeline
Symbol 375 GraphicUsed by:376
Symbol 376 MovieClipUses:375Used by:Timeline
Symbol 377 GraphicUsed by:Timeline
Symbol 378 Font
Symbol 379 TextUsed by:Timeline
Symbol 380 TextUses:245Used by:Timeline
Symbol 381 TextUses:245Used by:Timeline
Symbol 382 EditableTextUses:245Used by:Timeline
Symbol 383 TextUses:245Used by:Timeline
Symbol 384 EditableTextUses:245Used by:Timeline
Symbol 385 MovieClipUses:269Used by:Timeline
Symbol 386 TextUses:259Used by:Timeline
Symbol 387 TextUses:259Used by:Timeline
Symbol 388 TextUses:259Used by:Timeline
Symbol 389 TextUses:259Used by:Timeline
Symbol 390 TextUses:259Used by:Timeline
Symbol 391 TextUses:259Used by:394
Symbol 392 TextUses:259Used by:394
Symbol 393 TextUses:259Used by:394
Symbol 394 ButtonUses:391 392 393 2Used by:Timeline
Symbol 395 FontUsed by:396
Symbol 396 TextUses:395 259Used by:Timeline

Instance Names

"back"Frame 4Symbol 269 MovieClip
"front"Frame 4Symbol 351 MovieClip
"sky"Frame 9Symbol 366 MovieClip
"ocean"Frame 9Symbol 370 MovieClip
"waves_holder"Frame 9Symbol 372 MovieClip
"energy"Frame 9Symbol 376 MovieClip
"fadein"Frame 9Symbol 385 MovieClip
"bar"Symbol 7 MovieClip Frame 1Symbol 3 MovieClip
"clouds"Symbol 370 MovieClip Frame 1Symbol 369 MovieClip
"back"Symbol 385 MovieClip Frame 1Symbol 269 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$2E$gF8zwvT88YfN0dn1XOg3M0."
ExportAssets (56)Timeline Frame 2Symbol 31 as "tile"
ExportAssets (56)Timeline Frame 2Symbol 114 as "dolphin"
ExportAssets (56)Timeline Frame 2Symbol 117 as "bubble"
ExportAssets (56)Timeline Frame 2Symbol 122 as "hoop"
ExportAssets (56)Timeline Frame 2Symbol 165 as "bonusfish"
ExportAssets (56)Timeline Frame 2Symbol 167 as "splash"
ExportAssets (56)Timeline Frame 2Symbol 169 as "bubble_start"
ExportAssets (56)Timeline Frame 2Symbol 172 as "bonusalert"
ExportAssets (56)Timeline Frame 2Symbol 235 as "shark"
ExportAssets (56)Timeline Frame 2Symbol 238 as "watersurface"
ExportAssets (56)Timeline Frame 2Symbol 240 as "hurtalert"
ExportAssets (56)Timeline Frame 2Symbol 242 as "hoopalert"
ExportAssets (56)Timeline Frame 2Symbol 263 as "gameover"
ExportAssets (56)Timeline Frame 2Symbol 264 as "hoopsound"
ExportAssets (56)Timeline Frame 2Symbol 265 as "eat"
ExportAssets (56)Timeline Frame 2Symbol 266 as "leap"
ExportAssets (56)Timeline Frame 2Symbol 267 as "hurtsound"
ExportAssets (56)Timeline Frame 4Symbol 169 as "bubble_start"
ExportAssets (56)Timeline Frame 4Symbol 265 as "eat"
ExportAssets (56)Timeline Frame 5Symbol 169 as "bubble_start"
ExportAssets (56)Timeline Frame 6Symbol 169 as "bubble_start"
ExportAssets (56)Timeline Frame 7Symbol 169 as "bubble_start"
ExportAssets (56)Timeline Frame 8Symbol 169 as "bubble_start"

Labels

"jumping"Symbol 114 MovieClip [dolphin] Frame 90

Dynamic Text Variables

PercentLoadedSymbol 6 EditableText"000"
_root.distancescoreSymbol 249 EditableText"0"
_root.finalscoreSymbol 250 EditableText"0"
_root.hoopscoreSymbol 251 EditableText"0"
_root.displaydistanceSymbol 382 EditableText"0m"
_root.hoopsSymbol 384 EditableText"0"




http://swfchan.com/15/73641/info.shtml
Created: 8/4 -2019 04:33:21 Last modified: 8/4 -2019 04:33:21 Server time: 11/05 -2024 12:43:10