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

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

1250245953.swf

This is the info page for
Flash #11524

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


Text
<p align="center"></p>

<p align="left"></p>

<p align="right"></p>

<p align="center"></p>

<p align="left"><font face="Witless" size="79" color="#000000" letterSpacing="0.000000" kerning="1"><b>Game Over!</b></font></p>

<p align="left"><font face="Witless" size="40" color="#000000" letterSpacing="0.000000" kerning="1">Play More Games</font></p>

<p align="left"><font face="Witless" size="40" color="#000000" letterSpacing="0.000000" kerning="1"><b>Play Again</b></font></p>

<p align="center"></p>

<p align="left"><font face="Witless" size="39" color="#000000" letterSpacing="0.000000" kerning="1">Add To Your Site</font></p>

The Game Homepage

Music by Gazzy

<p align="left"></p>

You Win!

ActionScript [AS1/AS2]

Frame 1
function menuChoiceOne() { getURL ("http://www.thegamehomepage.com/", "_blank"); } function fMakeStarburst(xPos, yPos) { s = Root.createEmptyMovieClip("burstClip", Root.depth++); s.cnt = 0; s.onEnterFrame = function () { if ((this.cnt++) == 40) { delete this.onEnterFrame; this.removeMovieClip(); } }; s._x = xPos; s._y = yPos; x = 0; while (x < amountOfStars) { ran = random(4) + 1; v = s.attachMovie("explosionStar" + ran, "str" + x, s.getNextHighestDepth()); v.speed = random(10) + 10; v.movSpdX = random(10) - 5; v.movSpdY = (-1 * random(15)) + 1; v._xscale = (v._yscale = random(20) + 10); v._alpha = 150; v.onEnterFrame = function () { this._rotation = this._rotation + this.speed; this._alpha = this._alpha - (this.speed / 3); this._x = this._x + this.movSpdX; this._y = this._y + this.movSpdY; this.movSpdY++; if (this._alpha <= 0) { delete this.onEnterFrame; this.removeMovieClip(); } }; x++; } } fscommand ("allowscale", 0); NewMenu = new ContextMenu(); NewMenu.hideBuiltInItems(); NewMenu.customItems.push(new ContextMenuItem("Visit The Game Homepage", menuChoiceOne)); this.menu = NewMenu; _global.Root = this; var depth = 1000; var amountOfStars = 2; stop();
Frame 2
Mouse.hide(); enemyFish._visible = false; fishies = new Array(); fishMade = (d = (score = 0)); minimumFishOnScreen = 20; maximumFishOnScreen = 40; frame = _currentframe; stop(); _root.onEnterFrame = function () { if (makestars) { fMakeStarburst(_root._xmouse, _root._ymouse); _root.fish.mouth.gotoAndPlay(2); } makestars = false; if (_currentframe == frame) { if (_root.fish._width < Stage.width) { fishFound = 0; i = 0; while (i < fishies.length) { if (fishies[i] == 1) { fishFound++; } i++; } if (fishFound < minimumFishOnScreen) { chanceOfNewFishComing = 0; } else if (fishFound < maximumFishOnScreen) { chanceOfNewFishComing = random(60); } if (chanceOfNewFishComing == 0) { enemyFish.duplicateMovieClip("newEnemyFish" + d, d++, {left:random(2), speed:random(6) + 2, scale:random(_root.fish.scale + 80) + 10, _y:random(Stage.height), newFish:true}); fishies[fishMade] = 1; fishMade++; } i = 0; while (i < fishies.length) { if (fishies[i] == 1) { _root["newEnemyFish" + i]._x = _root["newEnemyFish" + i]._x + _root["newEnemyFish" + i].speed; if (_root["newEnemyFish" + i].hitTest(_root.fish.hitbox)) { if (_root["newEnemyFish" + i].scale <= _root.fish.scale) { if (fish.scale < 300) { fish.scale = fish.scale + 2; } score = score + _root["newEnemyFish" + i].scale; makestars = true; removeMovieClip(_root["newEnemyFish" + i]); fishies[i] = 0; } else { nextFrame(); clearScreen(); } } if (_root["newEnemyFish" + i].left == 1) { if (_root["newEnemyFish" + i]._x < (-_root["newEnemyFish" + i]._width)) { fishies[i] = 0; removeMovieClip(_root["newEnemyFish" + i]); } } else if (_root["newEnemyFish" + i]._x > (Stage.width + _root["newEnemyFish" + i]._width)) { fishies[i] = 0; removeMovieClip(_root["newEnemyFish" + i]); } } i++; } } else { _root.gotoAndStop(_currentframe + 2); } } if (_root.score < 50) { _root.rank = "Z"; } else if (_root.score < 150) { _root.rank = "Y"; } else if (_root.score < 300) { _root.rank = "X"; } else if (_root.score < 500) { _root.rank = "W"; } else if (_root.score < 1000) { _root.rank = "V"; } else if (_root.score < 1500) { _root.rank = "U"; } else if (_root.score < 2000) { _root.rank = "T"; } else if (_root.score < 2500) { _root.rank = "S"; } else if (_root.score < 3000) { _root.rank = "R"; } else if (_root.score < 3500) { _root.rank = "Q"; } else if (_root.score < 4000) { _root.rank = "P"; } else if (_root.score < 5000) { _root.rank = "O"; } else if (_root.score < 6000) { _root.rank = "N"; } else if (_root.score < 7000) { _root.rank = "M"; } else if (_root.score < 8000) { _root.rank = "L"; } else if (_root.score < 9000) { _root.rank = "K"; } else if (_root.score < 10000) { _root.rank = "J"; } else if (_root.score < 11000) { _root.rank = "I"; } else if (_root.score < 12000) { _root.rank = "H"; } else if (_root.score < 13000) { _root.rank = "G"; } else if (_root.score < 15000) { _root.rank = "F"; } else if (_root.score < 17000) { _root.rank = "E"; } else if (_root.score < 19000) { _root.rank = "D"; } else if (_root.score < 21000) { _root.rank = "C"; } else if (_root.score < 25000) { _root.rank = "B"; } else { _root.rank = "A"; } }; clearScreen = function () { i = 0; while (i < fishies.length) { removeMovieClip(_root["newEnemyFish" + i]); i++; } fishies = new Array(); fishMade = 0; };
Instance of Symbol 28 MovieClip "fish" in Frame 2
onClipEvent (load) { scale = 80; } onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; _yscale = scale; _xscale = scale; if (_x > (Stage.width + (_width / 2))) { _x = (-(_width / 2)); } else if (_x < (-(_width / 2))) { _x = (Stage.width + (_width / 2)); } if (_y > Stage.height) { _y = Stage.height; } else if (_y < 0) { _y = 0; } }
Instance of Symbol 35 MovieClip "enemyFish" in Frame 2
onClipEvent (load) { if (_name != "enemyFish") { _yscale = ((xscale = scale)); if (left == 1) { speed = speed * -1; _xscale = xscale; _x = (Stage.width + _width); } else { _xscale = xscale; _x = (-_width); } } }
Frame 3
Mouse.show(); results = "You scored: " + score; rresults = "Rank: " + rank;
Frame 4
Mouse.show(); results = "You have won! Your final score was: " + score;
Symbol 14 MovieClip Frame 1
myBar._xscale = 0; loaded = false; timer = 0; onEnterFrame = function () { loading = Math.round(_root.getBytesLoaded().toString() / 1024); total = Math.round(_root.getBytesTotal().toString() / 1024); percentage = Math.round((loading / total) * 100); myBar._xscale = myBar._xscale + ((percentage - myBar._xscale) / 5); percentageTxt._x = myBar._width - (percentageTxt._width / 2); percentageTxt.percentage = Math.round(myBar._xscale); if (((myBar._xscale > 99) && (percentage == 100)) && (loaded == false)) { myBar._xscale = 100; timer = timer + 1; if (timer > 20) { this._alpha = this._alpha - 5; if (this._alpha < 0) { loaded = true; _root.play(); } } } };
Symbol 18 MovieClip Frame 1
this._rotation = _parent.eyedir;
Symbol 18 MovieClip Frame 15
gotoAndPlay (1);
Symbol 25 MovieClip Frame 1
stop();
Symbol 25 MovieClip Frame 8
_root.fMakeStarburst(_root._xmouse, _root._ymouse);
Symbol 28 MovieClip Frame 1
this.eyedir = Math.random() * 360;
Symbol 28 MovieClip Frame 2
gotoAndPlay (1);
Symbol 32 MovieClip Frame 1
xdist = _root._xmouse - _parent._x; ydist = _root._ymouse - _parent._y; this._rotation = ((Math.atan2(ydist, xdist) * 180) / Math.PI) + 90;
Symbol 32 MovieClip Frame 2
gotoAndPlay (1);
Symbol 35 MovieClip Frame 1
if (scale < _root.fish.scale) { gotoAndStop (3); }
Symbol 35 MovieClip Frame 2
gotoAndPlay (1);
Symbol 44 Button
on (release) { getURL ("http://www.thegamehomepage.com/", "_blank"); }
Symbol 47 Button
on (release) { gotoAndPlay (2); }
Symbol 51 Button
on (release) { getURL ("http://www.thegamehomepage.com/freesitecontent", "_blank"); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip [explosionStar1]Uses:1
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClip [explosionStar2]Uses:3
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClip [explosionStar3]Uses:5
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClip [explosionStar4]Uses:7
Symbol 9 FontUsed by:10
Symbol 10 EditableTextUses:9Used by:11
Symbol 11 MovieClipUses:10Used by:14
Symbol 12 GraphicUsed by:13 26
Symbol 13 MovieClipUses:12Used by:14
Symbol 14 MovieClipUses:11 13Used by:Timeline
Symbol 15 GraphicUsed by:28
Symbol 16 GraphicUsed by:18 32 44 47 51
Symbol 17 GraphicUsed by:18 32
Symbol 18 MovieClipUses:16 17Used by:28
Symbol 19 GraphicUsed by:25 44
Symbol 20 GraphicUsed by:25
Symbol 21 SoundUsed by:25
Symbol 22 GraphicUsed by:25
Symbol 23 GraphicUsed by:25
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:19 20 21 22 23 24Used by:28 44
Symbol 26 MovieClipUses:12Used by:28
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:15 18 25 26 27Used by:Timeline
Symbol 29 FontUsed by:30 36 52 53
Symbol 30 EditableTextUses:29Used by:Timeline
Symbol 31 GraphicUsed by:35
Symbol 32 MovieClipUses:16 17Used by:35 44 47 51
Symbol 33 GraphicUsed by:35
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:31 32 33 34Used by:Timeline
Symbol 36 EditableTextUses:29Used by:Timeline
Symbol 37 SoundUsed by:Timeline
Symbol 38 FontUsed by:39 40 43 46 48 50 54 55
Symbol 39 EditableTextUses:38Used by:Timeline
Symbol 40 EditableTextUses:38 42Used by:Timeline
Symbol 41 GraphicUsed by:44
Symbol 42 FontUsed by:40 43 46 50
Symbol 43 EditableTextUses:38 42Used by:44
Symbol 44 ButtonUses:41 43 25 32 19 16Used by:Timeline
Symbol 45 GraphicUsed by:47
Symbol 46 EditableTextUses:38 42Used by:47
Symbol 47 ButtonUses:45 46 32 16Used by:Timeline
Symbol 48 EditableTextUses:38Used by:Timeline
Symbol 49 GraphicUsed by:51
Symbol 50 EditableTextUses:38 42Used by:51
Symbol 51 ButtonUses:49 50 32 16Used by:Timeline
Symbol 52 EditableTextUses:29Used by:Timeline
Symbol 53 EditableTextUses:29Used by:Timeline
Symbol 54 EditableTextUses:38Used by:Timeline
Symbol 55 TextUses:38Used by:Timeline

Instance Names

"fish"Frame 2Symbol 28 MovieClip
"enemyFish"Frame 2Symbol 35 MovieClip
"percentageTxt"Symbol 14 MovieClip Frame 1Symbol 11 MovieClip
"bg_mc"Symbol 14 MovieClip Frame 1Symbol 13 MovieClip
"myBar"Symbol 14 MovieClip Frame 1Symbol 13 MovieClip
"mouth"Symbol 28 MovieClip Frame 1Symbol 25 MovieClip
"hitbox"Symbol 28 MovieClip Frame 1Symbol 26 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 2 as "explosionStar1"
ExportAssets (56)Timeline Frame 1Symbol 4 as "explosionStar2"
ExportAssets (56)Timeline Frame 1Symbol 6 as "explosionStar3"
ExportAssets (56)Timeline Frame 1Symbol 8 as "explosionStar4"

Dynamic Text Variables

percentageSymbol 10 EditableText"<p align="center"></p>"
scoreSymbol 30 EditableText"<p align="left"></p>"
rankSymbol 36 EditableText"<p align="right"></p>"
resultsSymbol 39 EditableText"<p align="center"></p>"
rresultsSymbol 48 EditableText"<p align="center"></p>"
resultsSymbol 54 EditableText"<p align="left"></p>"




http://swfchan.com/3/11524/info.shtml
Created: 7/6 -2019 04:35:10 Last modified: 7/6 -2019 04:35:10 Server time: 19/04 -2024 14:52:08