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

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

Spinning Squares.swf

This is the info page for
Flash #46222

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


Text
Loading - Please Wait

Spinning Squares

Music: Aqua Zone Remix
cornandbeans

Play
Controls
Website
High Scores

Menu
Next

Welcome to Spinning Squares!
Spinning Squares is a very simple, yet addictive
game. The aim of the game is to control your block
and collect as many gold chips as possible to raise
your score.

Use the arrow keys to move your square. The square
has momentum, so it has to slow down its movement
in one direction to change to the other.

Use the two bouncers on the bottom of the screen to
bounce up into the air and collect the chips. Be
careful though, becauce every 10 seconds, the
bouncers will change their position and size! There is
a meter on the top of the screen that shows how long
you have before the bouncers will change.

If you miss the bouncers, you will fall out of the
screen and lose one life. You will then appear at the
top of the screen and fall down at the same position
you fell out. You have 10 lives. When you lose all
10, it is game over for you!

Lives: 10

Lives: 9

There are a few powerups to help you out:
+1 Life
x2 Score
Shoot upwards
Super Block: Increases the rate that gold appears,
but also the rate that it disappears.

+

x2

^

Menu

And that's all there is to it! Learn how to play better
by playing the game! When you lose all of your
lives, you can submit your score into the online
database and see if you rank in the top 100!
Thanks for playing!

<p align="left"><font face="Times New Roman" size="12" color="#000000" letterSpacing="0.000000" kerning="1">Score:</font></p>

Bouncers:

<p align="left"><font face="Times New Roman" size="12" color="#000000" letterSpacing="0.000000" kerning="1">Score:</font></p>

Final Score:

<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">score</font></p>

<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">rank</font></p>

<p align="left"><font face="Times New Roman" size="28" color="#000000" letterSpacing="0.000000" kerning="1">Your Name</font></p>

>

Skip

<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">score</font></p>

<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">rank</font></p>

Please wait

Please wait.

Please wait..

Please wait...

<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">score</font></p>

<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">rank</font></p>

Play Again?

ActionScript [AS1/AS2]

Frame 1
if (((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) == 100) { gotoAndPlay (3); }
Instance of Symbol 12 MovieClip in Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + ((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); }
Frame 2
gotoAndPlay (1);
Frame 3
function doSomething() { } MENU = new ContextMenu(); MENU.hideBuiltInItems(); _root.menu = MENU;
Frame 85
stop();
Frame 86
stop();
Frame 87
stop();
Frame 88
stop();
Frame 89
stop();
Frame 90
stop();
Frame 91
stop();
Frame 92
_global.ychange = 1; _global.xchange = 1; _global.score = 0; _global.lives = 10; _global.changetime = 300; _global.trailtime = 0; var x2sound = new Sound(); x2sound.attachSound("x2sound"); var goldsound = new Sound(); goldsound.attachSound("goldsound"); var lifelose = new Sound(); lifelose.attachSound("lifelose"); var trailbonus = new Sound(); trailbonus.attachSound("trailbonus"); var lifegain = new Sound(); lifegain.attachSound("lifegain"); var boostsound = new Sound(); boostsound.attachSound("boost sound");
Frame 93
if (_global.lives < 1) { gotoAndStop (95); } if (random(80) < 2) { var i = random(10000); o = _root.gold_par.duplicateMovieClip(i, _root.getNextHighestDepth(), {_x:random(550), _y:random(300)}); } if (random(700) < 1) { var i = random(10000); o = _root.x2_par.duplicateMovieClip(i, _root.getNextHighestDepth(), {_x:random(550), _y:random(300)}); } if (random(600) < 1) { var i = random(10000); o = _root.pluslive_par.duplicateMovieClip(i, _root.getNextHighestDepth(), {_x:random(550), _y:random(300)}); } if (random(200) < 1) { var i = random(10000); o = _root.boost_par.duplicateMovieClip(i, _root.getNextHighestDepth(), {_x:random(550), _y:random(300)}); } if (random(300) < 1) { var i = random(10000); o = _root.trailpickup_par.duplicateMovieClip(i, _root.getNextHighestDepth(), {_x:random(550), _y:random(300)}); } _root.gold_par._x = -200; _root.x2_par._x = -200; _root.pluslive_par._x = -200; _root.boost_par._x = -200; score.text = (("Score: " + _global.score) + " Lives: ") + _global.lives; _global.changetime = _global.changetime - 1; if (_global.changetime == -1) { _global.changetime = 300; } if (_global.trailtime > 0) { if (random(10) < 2) { var i = random(10000); o = _root.gold_par.duplicateMovieClip(i, _root.getNextHighestDepth(), {_x:random(550), _y:random(300)}); } _root.trail_par.duplicateMovieClip(i, _root.getNextHighestDepth(), {_x:_root.square._x, _y:_root.square._y}); _global.trailtime = _global.trailtime - 1; }
Instance of Symbol 17 MovieClip "square" in Frame 93
onClipEvent (enterFrame) { if (Key.isDown(37)) { _global.xchange = _global.xchange - 2; } if (Key.isDown(39)) { _global.xchange = _global.xchange + 2; } if (this.hitTest(_root.bumper)) { if (_global.ychange > 0) { _global.ychange = -(_global.ychange - (random(10) - 5)); } } if (this.hitTest(_root.bumper3)) { if (_global.ychange > 0) { _global.ychange = -(_global.ychange - (random(10) - 5)); } } _x = (_x + _global.xchange); _y = (_y + _global.ychange); _rotation = (_rotation + xchange); _global.ychange = _global.ychange + 1; if (_global.ychange > 20) { _global.ychange = 20; } if (_global.ychange < -20) { _global.ychange = -20; } if (_global.xchange > 20) { _global.xchange = 20; } if (_global.xchange < -20) { _global.xchange = -20; } if (this._y < 0) { _global.ychange = -_global.ychange; this._y = 1; } if ((this._x > 550) or (this._x < 0)) { _global.xchange = -_global.xchange; } if (this._x < 0) { _x = 1; } if (this._x > 550) { _x = 549; } if (this._y > 550) { _y = 0; _global.lives = _global.lives - 1; _root.lifelose.start(0, 1); } }
Instance of Symbol 35 MovieClip "bumper" in Frame 93
onClipEvent (enterFrame) { if (_global.changetime == 0) { _x = random(400); _width = (random(120) + 50); } }
Instance of Symbol 35 MovieClip "bumper3" in Frame 93
onClipEvent (enterFrame) { if (_global.changetime == 0) { _x = random(400); _width = (random(120) + 50); } }
Instance of Symbol 9 MovieClip [gold] "gold_par" in Frame 93
onClipEvent (enterFrame) { time = time - 1; if ((time = 0)) { this.unloadMovie(); } if (this.hitTest(_root.square)) { _global.score = _global.score + 1; _root.goldsound.start(0, 1); this.unloadMovie(); } if (_global.lives < 1) { this.unloadMovie(); } }
Instance of Symbol 46 MovieClip "x2_par" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.square)) { _global.score = _global.score * 2; _root.x2sound.start(0, 1); this.unloadMovie(); } if (_global.lives < 1) { this.unloadMovie(); } }
Instance of Symbol 43 MovieClip "pluslive_par" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.square)) { _global.lives = _global.lives + 1; _root.lifegain.start(0, 1); this.unloadMovie(); } if (_global.lives < 1) { this.unloadMovie(); } }
Instance of Symbol 49 MovieClip "boost_par" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.square)) { _global.ychange = -20; _root.boostsound.start(0, 1); this.unloadMovie(); } if (_global.lives < 1) { this.unloadMovie(); } }
Instance of Symbol 55 MovieClip "trail_par" in Frame 93
onClipEvent (enterFrame) { _rotation = _root.square._rotation; if (_global.lives < 1) { this.unloadMovie(); } }
Instance of Symbol 50 MovieClip "trailpickup_par" in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(_root.square)) { _global.trailtime = 300; _root.trailbonus.start(0, 1); this.unloadMovie(); } if (_global.lives < 1) { this.unloadMovie(); } }
Instance of Symbol 57 MovieClip in Frame 93
onClipEvent (enterFrame) { this._width = _global.changetime; }
Frame 94
gotoAndPlay (93);
Frame 95
stop(); if (_global.score < 1) { ranktext = "You are an epic failure"; } if (_global.score > 0) { ranktext = "You are a Noob"; } if (_global.score > 99) { ranktext = "You are a Failure"; } if (_global.score > 499) { ranktext = "You are a Beginner"; } if (_global.score > 999) { ranktext = "You are a Newbie"; } if (_global.score > 2499) { ranktext = "You are a Tryer"; } if (_global.score > 4999) { ranktext = "You are a Monster"; } if (_global.score > 9999) { ranktext = "You are a Freak"; } if (_global.score > 19999) { ranktext = "You are an Addict"; } if (_global.score > 29999) { ranktext = "You are a Madman!"; } if (_global.score > 39999) { ranktext = "You are a Master!"; } if (_global.score > 49999) { ranktext = "You are a GURU"; }
Frame 224
stop();
Symbol 9 MovieClip [gold] Frame 360
stop(); removeMovieClip(this);
Symbol 15 MovieClip Frame 1
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded == 100) { _root.gotoAndPlay("Scene 5", 1); }
Symbol 15 MovieClip Frame 2
gotoAndPlay (1);
Symbol 23 Button
on (release) { gotoAndPlay (92); }
Symbol 24 Button
on (release) { play(); }
Symbol 25 Button
on (release) { getURL ("http://www.twisterghost.com", _blank); }
Symbol 26 Button
on (release) { getURL ("http://www.twisterghost.com/ssfl/scores.php", _blank); }
Symbol 28 Button
on (release) { gotoAndStop (85); }
Symbol 29 Button
on (release) { play(); }
Symbol 43 MovieClip Frame 150
stop(); removeMovieClip(this);
Symbol 46 MovieClip Frame 300
stop(); removeMovieClip(this);
Symbol 49 MovieClip Frame 300
stop(); removeMovieClip(this);
Symbol 50 MovieClip Frame 150
stop(); removeMovieClip(this);
Symbol 55 MovieClip Frame 30
stop(); removeMovieClip(this);
Symbol 64 Button
on (release) { getURL ((("http://www.twisterghost.com/ssfl/subascore.php?name=" + _root.name.text) + "&score=") + _global.score, _blank); play(); }
Symbol 67 Button
on (release) { gotoAndPlay (4); }

Library Items

Symbol 1 Sound [x2sound]
Symbol 2 Sound [trailbonus]
Symbol 3 Sound [lifelose]
Symbol 4 Sound [lifegain]
Symbol 5 Sound [goldsound]
Symbol 6 Sound [boost sound]
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:9
Symbol 9 MovieClip [gold]Uses:8Used by:Timeline
Symbol 10 GraphicUsed by:11 23 24 25 26 28 29 50 54 64 67
Symbol 11 MovieClipUses:10Used by:12 17 23 24 25 26 28 29 32 39 67
Symbol 12 MovieClipUses:11Used by:Timeline
Symbol 13 FontUsed by:14 21
Symbol 14 TextUses:13Used by:15
Symbol 15 MovieClipUses:14Used by:Timeline
Symbol 16 SoundUsed by:Timeline
Symbol 17 MovieClipUses:11Used by:Timeline
Symbol 18 FontUsed by:19 22 27 30 31 33 36 37 38 40 42 45 48 51 52 53 58 59 60 61 62 63 65 66 68 69 70 71 72 73 75 76 77
Symbol 19 TextUses:18Used by:20
Symbol 20 MovieClipUses:19Used by:Timeline
Symbol 21 TextUses:13Used by:Timeline
Symbol 22 TextUses:18Used by:Timeline
Symbol 23 ButtonUses:11 10Used by:Timeline
Symbol 24 ButtonUses:11 10Used by:Timeline
Symbol 25 ButtonUses:11 10Used by:Timeline
Symbol 26 ButtonUses:11 10Used by:Timeline
Symbol 27 TextUses:18Used by:Timeline
Symbol 28 ButtonUses:11 10Used by:Timeline
Symbol 29 ButtonUses:11 10Used by:Timeline
Symbol 30 TextUses:18Used by:Timeline
Symbol 31 TextUses:18Used by:Timeline
Symbol 32 MovieClipUses:11Used by:Timeline
Symbol 33 TextUses:18Used by:Timeline
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:Timeline
Symbol 36 TextUses:18Used by:Timeline
Symbol 37 TextUses:18Used by:39
Symbol 38 TextUses:18Used by:39
Symbol 39 MovieClipUses:11 37 38Used by:Timeline
Symbol 40 TextUses:18Used by:Timeline
Symbol 41 GraphicUsed by:43
Symbol 42 TextUses:18Used by:43
Symbol 43 MovieClipUses:41 42Used by:Timeline
Symbol 44 GraphicUsed by:46
Symbol 45 TextUses:18Used by:46
Symbol 46 MovieClipUses:44 45Used by:Timeline
Symbol 47 GraphicUsed by:49
Symbol 48 TextUses:18Used by:49
Symbol 49 MovieClipUses:47 48Used by:Timeline
Symbol 50 MovieClipUses:10Used by:Timeline
Symbol 51 TextUses:18Used by:Timeline
Symbol 52 TextUses:18Used by:Timeline
Symbol 53 EditableTextUses:18Used by:Timeline
Symbol 54 MovieClipUses:10Used by:55
Symbol 55 MovieClipUses:54Used by:Timeline
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:Timeline
Symbol 58 TextUses:18Used by:Timeline
Symbol 59 EditableTextUses:18Used by:Timeline
Symbol 60 TextUses:18Used by:Timeline
Symbol 61 EditableTextUses:18Used by:Timeline
Symbol 62 EditableTextUses:18Used by:Timeline
Symbol 63 EditableTextUses:18Used by:Timeline
Symbol 64 ButtonUses:10Used by:Timeline
Symbol 65 TextUses:18Used by:Timeline
Symbol 66 TextUses:18Used by:Timeline
Symbol 67 ButtonUses:11 10Used by:Timeline
Symbol 68 EditableTextUses:18Used by:Timeline
Symbol 69 EditableTextUses:18Used by:Timeline
Symbol 70 TextUses:18Used by:74
Symbol 71 TextUses:18Used by:74
Symbol 72 TextUses:18Used by:74
Symbol 73 TextUses:18Used by:74
Symbol 74 MovieClipUses:70 71 72 73Used by:Timeline
Symbol 75 EditableTextUses:18Used by:Timeline
Symbol 76 EditableTextUses:18Used by:Timeline
Symbol 77 TextUses:18Used by:Timeline

Instance Names

"square"Frame 93Symbol 17 MovieClip
"bumper"Frame 93Symbol 35 MovieClip
"bumper3"Frame 93Symbol 35 MovieClip
"gold_par"Frame 93Symbol 9 MovieClip [gold]
"score"Frame 93Symbol 53 EditableText
"x2_par"Frame 93Symbol 46 MovieClip
"pluslive_par"Frame 93Symbol 43 MovieClip
"boost_par"Frame 93Symbol 49 MovieClip
"trail_par"Frame 93Symbol 55 MovieClip
"trailpickup_par"Frame 93Symbol 50 MovieClip
"score"Frame 94Symbol 59 EditableText
"scorenum"Frame 95Symbol 61 EditableText
"rank"Frame 95Symbol 62 EditableText
"name"Frame 95Symbol 63 EditableText
"scorenum"Frame 96Symbol 68 EditableText
"rank"Frame 96Symbol 69 EditableText
"scorenum"Frame 224Symbol 75 EditableText
"rank"Frame 224Symbol 76 EditableText

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "x2sound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "trailbonus"
ExportAssets (56)Timeline Frame 1Symbol 3 as "lifelose"
ExportAssets (56)Timeline Frame 1Symbol 4 as "lifegain"
ExportAssets (56)Timeline Frame 1Symbol 5 as "goldsound"
ExportAssets (56)Timeline Frame 1Symbol 6 as "boost sound"
ExportAssets (56)Timeline Frame 1Symbol 9 as "gold"

Dynamic Text Variables

_global.scoreSymbol 61 EditableText"<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">score</font></p>"
ranktextSymbol 62 EditableText"<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">rank</font></p>"
_global.scoreSymbol 68 EditableText"<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">score</font></p>"
ranktextSymbol 69 EditableText"<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">rank</font></p>"
_global.scoreSymbol 75 EditableText"<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">score</font></p>"
ranktextSymbol 76 EditableText"<p align="center"><font face="Times New Roman" size="40" color="#000000" letterSpacing="0.000000" kerning="1">rank</font></p>"




http://swfchan.com/10/46222/info.shtml
Created: 4/5 -2019 03:12:40 Last modified: 4/5 -2019 03:12:40 Server time: 17/05 -2024 10:37:21