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>

Spheroids.swf

This is the info page for
Flash #22520

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


Text
1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

0%

START GAME

START GAME

HOW TO PLAY

HOW TO PLAY

TURN
MUSIC ON

TURN
MUSIC OFF

How to Play

Objective

-Turn all red spheres into blue spheres by firing missiles at
them from a moving space ship.

Rules and Details

- You win when all red spheres are turned into blue ones.
- You lose if all spheres are not turned to blue within 2
minutes.
- All spheres must be hit in numerical order. The next
sphere to be hit will be indicated on the lower portion of
the screen.
- When a red sphere is hit by a missile, it is turned into a
blue sphere if it was the next sphere to be hit.
- When a red sphere is hit by a missile, it explodes and
reappears somewhere else on the screen if it was not the
next sphere to be hit.

< Go Back

< Go Back

More >

More >

Rules and Details (Continued...)

- When a white sphere is hit by a missile, it explodes and
reappears as a red sphere somewhere else on the screen.
- Every blue sphere that collides with a white sphere is
turned into a red sphere.
- You should fire and destroy white spheres so they do not
collide with blue spheres  and turn them into red ones.
- You may fire and destroy red spheres (which will
reallocate them to another portion of the screen)  at any
time as a way to clear the way to hit another sphere, etc.
- The game consists of 6 levels. The number of spheres
and/or their speed is increased on higher levels.

Controls >

Controls >

Controls

= MOVE TO THE LEFT

= MOVE TO THE RIGHT

Space Bar

= FIRE MISSILE

TIME REMAINING

TIME REMAINING

LEVEL 1

02:00

1

RESTART GAME

RESTART GAME

VISIT REYSTAR.COM

VISIT REYSTAR.COM

ActionScript [AS1/AS2]

Frame 1
ifFrameLoaded (71) { gotoAndPlay ("into_start"); }
Frame 2
ifFrameLoaded (71) { gotoAndPlay ("intro_start"); }
Frame 4
gotoAndPlay (2);
Frame 72
percent = Math.floor((this.getBytesLoaded() / this.getBytesTotal()) * 100); if (percent == 100) { gotoAndPlay ("loaded"); }
Frame 73
percent = Math.floor((this.getBytesLoaded() / this.getBytesTotal()) * 100); _root.loadPercent = percent add "%";
Frame 75
if (percent == 100) { gotoAndPlay ("loaded"); } else { gotoAndPlay ("loading"); }
Frame 77
function Sphere(sNum) { this.dir = random(4); this.num = sNum; this.mc = null; this.sphereType = 0; this.moves = 0; this.trav = 0; this.travChange = random(5) + 20; this.x = random(S_STAGE_WIDTH); this.y = random(S_STAGE_HEIGHT - 200); this.reset = function () { this.sphereType = 0; with (this.mc.aball) { gotoAndStop("red"); } var newDir = random(2); this.dir = newDir; if (newDir == 0) { this.x = 0; } else { this.x = 550; } this.y = random(S_STAGE_HEIGHT - 200); if (this.mc != null) { this.mc._x = this.x; this.mc._y = this.y; } }; this.paint = function () { if (this.mc != null) { this.mc._x = this.x; this.mc._y = this.y; } }; } function Hero() { this.x = math.round(S_STAGE_WIDTH / 2); this.y = 340; this.mc = null; this.paint = function () { if (this.mc != null) { this.mc._x = this.x; this.mc._y = this.y; } }; } function updateSpheres() { var elapsedTime = getTimer(); var elapsedS = Math.floor(elapsedTime / 1000); var elapsedSPrev = Math.floor(gAstTimer / 1000); if (elapsedS != elapsedSPrev) { gAstTimeLeft = gAstTimeLeft + 1; var timeLeft = (gPlayTime - gAstTimeLeft); var minutesLeft = Math.floor(timeLeft / 60); var secondsLeft = (timeLeft - (60 * minutesLeft)); if (minutesLeft < 10) { astMinutes = "0" + minutesLeft.toString(); } else { astMinutes = minutesLeft.toString(); } if (secondsLeft < 10) { astSeconds = "0" + secondsLeft.toString(); } else { astSeconds = secondsLeft.toString(); } timer_txt = (astMinutes + ":") + astSeconds; gAstTimer = elapsedTime; _root.board.stime = timer_txt; if (0 >= timeLeft) { ShipExplodes(); } } var astNum = gSpheres.length; var tmpAst; gTimer++; var astCtr = 0; while (astCtr < astNum) { tmpAst = gSpheres[astCtr]; if (tmpAst.mc != null) { if (tmpAst.sphereType == 2) { tmpAst.moves++; if (tmpAst.moves == 50) { tmpAst.moves = 0; tmpAst.sphereType = 0; with (tmpAst.mc.aball) { gotoAndStop("red"); } } } var tmpSphere; var sCtr = 0; while (sCtr < astNum) { tmpSphere = gSpheres[sCtr]; if (tmpSphere.mc != null) { if ((tmpAst.mc != tmpSphere.mc) && (tmpAst.mc.hitTest(tmpSphere.mc))) { if ((tmpAst.sphereType == 1) && (tmpSphere.sphereType == 2)) { tmpAst.sphereType = 0; with (tmpAst.mc.aball) { gotoAndStop("red"); } } } } sCtr++; } if (tmpAst.trav == tmpAst.travChange) { tmpAst.dir = random(4); tmpAst.trav = 0; } tmpAst.trav++; if (tmpAst.mc.hitTest(gHero.mc.ship.ship_fire.sbullet)) { if (tmpAst.sphereType == 0) { if (tmpAst.num == gToHit) { tmpAst.sphereType = 1; with (tmpAst.mc.aball) { gotoAndStop("blue"); } with (gHero.mc.ship.ship_fire) { gotoAndStop("noshoot"); } } else { sphereExplode(tmpAst); } } else if (tmpAst.sphereType == 1) { tmpAst.sphereType = 2; with (tmpAst.mc.aball) { gotoAndStop("white"); } with (gHero.mc.ship.ship_fire) { gotoAndStop("noshoot"); } } else if (tmpAst.sphereType == 2) { sphereExplode(tmpAst); } } if (tmpAst.dir == 0) { tmpAst.y = tmpAst.y - gSpeed; if (tmpAst.y < 27) { tmpAst.dir = 2; tmpAst.y = 27; } tmpAst.x = tmpAst.x + gSpeed; if (522 < tmpAst.x) { tmpAst.dir = 1; tmpAst.x = 522; } } else if (tmpAst.dir == 1) { tmpAst.y = tmpAst.y - gSpeed; if (tmpAst.y < 27) { tmpAst.dir = 3; tmpAst.y = 27; } tmpAst.x = tmpAst.x - gSpeed; if (tmpAst.x < 27) { tmpAst.dir = 0; tmpAst.x = 27; } } else if (tmpAst.dir == 2) { tmpAst.y = tmpAst.y + gSpeed; if (295 < tmpAst.y) { tmpAst.dir = 0; tmpAst.y = 295; } tmpAst.x = tmpAst.x + gSpeed; if (522 < tmpAst.x) { tmpAst.dir = 3; tmpAst.x = 522; } } else if (tmpAst.dir == 3) { tmpAst.y = tmpAst.y + gSpeed; if (295 < tmpAst.y) { tmpAst.dir = 1; tmpAst.y = 295; } tmpAst.x = tmpAst.x - gSpeed; if (tmpAst.x < 27) { tmpAst.dir = 1; tmpAst.x = 27; } } } astCtr++; } determineNewToHit(); _root.hitnext = gToHit; return(0); } function paintSpheres() { var astNum = gSpheres.length; var tmpAst; var bAllBlue = true; var numBalls = 0; var astCtr = 0; while (astCtr < astNum) { tmpAst = gSpheres[astCtr]; if (tmpAst.mc != null) { tmpAst.paint(); if (tmpAst.sphereType != 1) { bAllBlue = false; } numBalls++; } astCtr++; } if (bAllBlue == true) { gGameOver = 1; if (gLevel == 6) { gotoAndStop ("you_win"); } else { gotoAndPlay ("next_level"); } } return(0); } function moveSpheres() { if (gGameOver == 0) { updateSpheres(); paintSpheres(); } return(0); } function initSpheres(mySField) { gTimer = 0; gAstPrevTime = 0; gAstTimeLeft = 0; gAstTimer = 0; gToHit = 1; var astCtr; var tmpAst; astCtr = 0; while (astCtr < gSpheres.length) { tmpAst = gSpheres[astCtr]; if (tmpAst.mc != null) { tmpAst.mc.removeMovieClip(); } astCtr++; } if (gHero.mc != null) { gHero.mc.removeMovieClip(); } gSpheres = new Array(); if ((gLevel == 1) || (gLevel == 4)) { gSpheresNum = SPHERES_NUM1; } else if ((gLevel == 2) || (gLevel == 5)) { gSpheresNum = SPHERES_NUM2; } else if ((gLevel == 3) || (gLevel == 6)) { gSpheresNum = SPHERES_NUM3; } astCtr = 0; while (astCtr < gSpheresNum) { tmpAst = new Sphere(astCtr + 1); var mcnameAst = ("ballnum" + String(astCtr)); mySField.attachMovie("ballnum", mcnameAst, 100 + astCtr); tmpAst.mc = mySField[mcnameAst]; with (tmpAst.mc) { gotoAndStop(astCtr + 1); } tmpAst.paint(); gSpheres.push(tmpAst); astCtr++; } gHero = new Hero(); var mcnameAst = "hero0"; mySField.attachMovie("hero", mcnameAst, 3000); gHero.mc = mySField[mcnameAst]; gHero.mc._alpha = 100; gHero.paint(); gGameOver = 0; gAstPrevTime = getTimer(); gAstTimer = getTimer(); return(0); } function removeSpheres() { var astCtr; var tmpAst; astCtr = 0; while (astCtr < gSpheres.length) { tmpAst = gSpheres[astCtr]; if (tmpAst.mc != null) { tmpAst.mc.removeMovieClip(); } astCtr++; } if (gHero.mc != null) { gHero.mc.removeMovieClip(); } } function hideSpheres() { var astCtr; var tmpAst; astCtr = 0; while (astCtr < gSpheres.length) { tmpAst = gSpheres[astCtr]; if (tmpAst.mc != null) { tmpAst.mc._alpha = 0; } astCtr++; } if (gHero.mc != null) { gHero.mc._alpha = 0; } } function moveHero(targetDirection) { if (targetDirection == 1) { with (gHero.mc.ship) { gotoAndPlay("left"); } gHero.x = gHero.x - 10; } else if (targetDirection == 2) { with (gHero.mc.ship) { gotoAndPlay("right"); } gHero.x = gHero.x + 10; } if (gHero.x < 27) { gHero.x = 27; } else if (522 < gHero.x) { gHero.x = 522; } gHero.paint(); } function doShoot() { with (gHero.mc.ship.ship_fire) { gotoAndPlay("shoot"); gsFire.start(); } } function ShipExplodes() { with (_root.sField.explo_anim) { _x = gHero.x; _y = gHero.y; gHero.mc._alpha = 0; gotoAndPlay("explosion"); } gsExplosion.start(); gGameOver = 1; gotoAndStop ("game_over"); } function determineNewToHit() { var minNum = gSpheresNum; var astCtr = 0; while (astCtr < gSpheres.length) { tmpAst = gSpheres[astCtr]; if (tmpAst.mc != null) { if (tmpAst.sphereType == 0) { if (tmpAst.num < minNum) { minNum = tmpAst.num; } } } astCtr++; } gToHit = minNum; } function sphereExplode(tmpAst) { with (_root.sField.explo_anim) { _x = tmpAst.x; _y = tmpAst.y; gotoAndPlay("explosion_ball"); } gsExplosion.start(); tmpAst.reset(); with (gHero.mc.ship.ship_fire) { gotoAndStop("noshoot"); } } var S_STAGE_WIDTH = 550; var S_STAGE_HEIGHT = 440; var SPHERES_NUM1 = 10; var SPHERES_NUM2 = 15; var SPHERES_NUM3 = 20; var gLevel = 0; var gSpheres = new Array(); var gSpeed = 3; var gGameOver = 0; var gHero = null; var gTimer = 0; var gToHit; var gSpheresNum; var gAstPrevTime = 0; var gAstTimeLeft = 0; var gAstTimer = 0; var gPlayTime = 120; var MUSIC_INTRO = 0; var MUSIC_MAIN = 1; var MUSIC_OVER = 2; var gMusic = 1; var gStage = 0; var gsFire = new Sound(); gsfire.attachSound("fire"); var gsExplosion = new Sound(); gsExplosion.attachSound("explosion"); gotoAndStop ("menu");
Frame 81
with (_root.mymusic) { _root.gStage = _root.MUSIC_INTRO; gotoAndStop(1); } stop();
Frame 85
with (_root.mymusic) { _root.gStage = _root.MUSIC_INTRO; gotoAndStop(1); } stop();
Frame 87
with (_root.mymusic) { _root.gStage = _root.MUSIC_INTRO; gotoAndStop(1); } stop();
Frame 89
with (_root.mymusic) { _root.gStage = _root.MUSIC_INTRO; gotoAndStop(1); } stop();
Frame 93
with (_root.mymusic) { _root.gStage = _root.MUSIC_MAIN; gotoAndStop(1); } _root.initSpheres(sField);
Frame 97
_root.moveSpheres();
Frame 98
gotoAndPlay ("loop_start");
Frame 100
stop();
Frame 101
_root.gLevel++; _root.hideSpheres(); if (_root.gLevel == 4) { _root.gSpeed = _root.gSpeed + 3; } if (_root.gLevel != 7) { with (_root.showLevel) { gotoAndStop(_root.gLevel); } } else { gotoAndPlay ("you_win"); }
Frame 116
_root.board.myLevel = "LEVEL " add _root.gLevel; gotoAndPlay ("start");
Frame 117
with (_root.mymusic) { _root.gStage = _root.MUSIC_OVER; gotoAndStop(1); } _root.removeSpheres();
Frame 120
stop();
Frame 121
with (_root.mymusic) { _root.gStage = _root.MUSIC_OVER; gotoAndStop(1); } _root.removeSpheres();
Frame 127
stop();
Symbol 16 MovieClip Frame 1
stop();
Symbol 19 MovieClip Frame 1
stop();
Symbol 19 MovieClip Frame 4
gotoAndStop (1);
Symbol 19 MovieClip Frame 7
gotoAndStop (1);
Symbol 25 MovieClip [ball] Frame 1
stop();
Symbol 25 MovieClip [ball] Frame 2
stop();
Symbol 25 MovieClip [ball] Frame 3
stop();
Symbol 60 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 2
_root.gsExplosion.start();
Symbol 60 MovieClip Frame 5
gotoAndStop (1);
Symbol 60 MovieClip Frame 6
_root.gsExplosion.start();
Symbol 60 MovieClip Frame 9
gotoAndStop (1);
Symbol 62 MovieClip [myStarField] Frame 1
function Star() { this.x = 0; this.y = 0; this.z = 0; this.mc = null; this.reset(); this.reset = function () { this.x = (random(STAGE_WIDTH) - (STAGE_WIDTH * 0.5)) * STAR_DISTANCE_MAX; this.y = (random(STAGE_HEIGHT) - (STAGE_HEIGHT * 0.5)) * STAR_DISTANCE_MAX; this.z = STAR_DISTANCE_MAX; if (((-500 < this.x) && (this.x < 500)) && ((-500 < this.y) && (this.y < 500))) { this.reset(); } }; this.paint = function () { if (this.mc != null) { this.mc._x = this.x / this.z; this.mc._y = this.y / this.z; this.mc._xscale = 100 / this.z; this.mc._yscale = 100 / this.z; } }; } function updateStar(dt) { var ft = (dt * 0.001); var starNum = gStars.length; var tmp; var starCtr = 0; while (starCtr < starNum) { tmp = gStars[starCtr]; tmp.z = tmp.z - (ft * gSpeed); if (tmp.z < 0.1) { tmp.reset(); } starCtr++; } return(0); } function paint() { var starNum = gStars.length; var tmp; var starCtr = 0; while (starCtr < starNum) { tmp = gStars[starCtr]; tmp.paint(); if ((((tmp.mc._x < -275) || (275 < tmp.mc._x)) || (tmp.mc._y < -200)) || (200 < tmp.mc._y)) { tmp.reset(); tmp.paint(); } starCtr++; } return(0); } function moveStars() { var curT = getTimer(); var dt = (curT - gPrevTime); if (0 < dt) { updateStar(dt); paint(); } gPrevTime = curT; return(0); } function initStarField(myField) { var starCtr; var tmp; starCtr = 0; while (starCtr < gStars.length()) { tmp = gStars[starCtr]; if (tmp.mc != null) { tmp.mc.removeMovieClip(); } starCtr++; } gStars = new Array(); starCtr = 0; while (starCtr < STARS_NUM) { tmp = new Star(); var mcname = ("star" + String(starCtr)); myField.attachMovie("Star", mcname, 100 + starCtr); tmp.mc = myField[mcname]; tmp.paint(); gStars.push(tmp); starCtr++; } gPrevTime = getTimer(); return(0); } var STARS_NUM = 100; var STAR_DISTANCE_MAX = 10; var STAR_DISTANCE_MIN = 0.1; var STAR_SPEED = 3; var STAGE_WIDTH = 550; var STAGE_HEIGHT = 400; var gStars = new Array(); var gSpeed = STAR_SPEED; var gPrevTime = 0;
Symbol 62 MovieClip [myStarField] Frame 2
initStarField(this);
Symbol 62 MovieClip [myStarField] Frame 3
moveStars();
Symbol 62 MovieClip [myStarField] Frame 4
gotoAndPlay ("loop");
Symbol 110 Button
on (release, releaseOutside) { getURL ("http://www.reystar.com", "_blank"); }
Symbol 115 Button
on (release, releaseOutside) { getURL ("http://www.reystar.com", "_blank"); }
Symbol 122 Button
on (release, releaseOutside) { gotoAndPlay ("next_level"); }
Symbol 126 Button
on (release, releaseOutside) { gotoAndPlay ("inst1"); }
Symbol 135 MovieClip Frame 1
if (_root.gMusic == 1) { stop(); } else { gotoAndStop ("dontplay"); }
Symbol 135 MovieClip Frame 2
stop();
Symbol 138 MovieClip Frame 1
if (_root.gMusic == 1) { stop(); } else { gotoAndStop ("dontplay"); }
Symbol 138 MovieClip Frame 2
stop();
Symbol 139 Button
on (rollOver) { with (music_bubble) { if (_root.gMusic == 0) { gotoAndStop("on"); } else { gotoAndStop("off"); } } } on (rollOut) { with (music_bubble) { gotoAndStop("none"); } } on (release, releaseOutside) { if (_root.gMusic == 0) { _root.gMusic = 1; gotoAndStop ("music_on"); } else { _root.gMusic = 0; gotoAndStop ("music_off"); } with (music_bubble) { if (_root.gMusic == 0) { gotoAndStop("on"); } else { gotoAndStop("off"); } } }
Symbol 144 MovieClip Frame 1
stop();
Symbol 144 MovieClip Frame 2
stop();
Symbol 144 MovieClip Frame 3
stop();
Symbol 145 Button
on (rollOver) { with (music_bubble) { if (_root.gMusic == 0) { gotoAndStop("on"); } else { gotoAndStop("off"); } } } on (rollOut) { with (music_bubble) { gotoAndStop("none"); } } on (release, releaseOutside) { if (_root.gMusic == 0) { _root.gMusic = 1; gotoAndStop ("music_on"); } else { _root.gMusic = 0; gotoAndStop ("music_off"); } with (music_bubble) { if (_root.gMusic == 0) { gotoAndStop("on"); } else { gotoAndStop("off"); } } }
Symbol 148 MovieClip Frame 1
stopAllSounds(); if (_root.gMusic == 1) { gotoAndStop ("music_on"); } else { stop(); }
Symbol 148 MovieClip Frame 6
stopAllSounds(); if (_root.gStage == _root.MUSIC_INTRO) { gotoAndStop ("intro"); } else if (_root.gStage == _root.MUSIC_MAIN) { gotoAndStop ("main"); } else if (_root.gStage == _root.MUSIC_OVER) { gotoAndStop ("over"); }
Symbol 148 MovieClip Frame 12
stop();
Symbol 148 MovieClip Frame 17
stop();
Symbol 148 MovieClip Frame 22
stop();
Symbol 159 Button
on (release, releaseOutside) { stopAllSounds(); with (_root) { gotoAndPlay("menu"); } }
Symbol 163 Button
on (release, releaseOutside) { stopAllSounds(); with (_root) { gotoAndPlay("inst2"); } }
Symbol 170 Button
on (release, releaseOutside) { stopAllSounds(); with (_root) { gotoAndPlay("controls"); } }
Symbol 201 MovieClip Frame 1
if (_root.gHero != null) { var hDirection = 0; if (Key.isDown(37)) { hDirection = 1; } else if (Key.isDown(39)) { hDirection = 2; } if ((!Key.isDown(37)) && (!Key.isDown(39))) { hDirection = 0; } _root.moveHero(hDirection); if (Key.isDown(32)) { _root.doShoot(); } }
Symbol 201 MovieClip Frame 2
gotoAndPlay (1);
Symbol 215 Button
on (release, releaseOutside) { _root.gLevel = 0; _root.gSpeed = 3; _root.gGameOver = 0; gotoAndPlay ("next_level"); }
Symbol 219 Button
on (release, releaseOutside) { getURL ("http://www.reystar.com", "_blank"); }
Symbol 235 MovieClip Frame 43
stop();
Symbol 250 MovieClip Frame 47
stop();

Library Items

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

Instance Names

"mymusic"Frame 81Symbol 148 MovieClip
"board"Frame 93Symbol 197 MovieClip
"sField"Frame 93Symbol 61 MovieClip [carfld]
"Control"Frame 93Symbol 201 MovieClip
"showLevel"Frame 101Symbol 211 MovieClip
"sbullet"Symbol 16 MovieClip Frame 2Symbol 15 MovieClip
"sbullet"Symbol 16 MovieClip Frame 10Symbol 15 MovieClip
"ship_fire"Symbol 19 MovieClip Frame 1Symbol 16 MovieClip
"col_area"Symbol 19 MovieClip Frame 1Symbol 18 MovieClip
"ship"Symbol 20 MovieClip [hero] Frame 1Symbol 19 MovieClip
"aball"Symbol 47 MovieClip [ballnum] Frame 1Symbol 25 MovieClip [ball]
"explo_anim"Symbol 61 MovieClip [carfld] Frame 1Symbol 60 MovieClip
"music_bubble"Symbol 148 MovieClip Frame 1Symbol 144 MovieClip
"myStarField"Symbol 187 MovieClip Frame 1Symbol 62 MovieClip [myStarField]

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "fire"
ExportAssets (56)Timeline Frame 1Symbol 2 as "explosion"
ExportAssets (56)Timeline Frame 1Symbol 20 as "hero"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 25 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballnum"
ExportAssets (56)Timeline Frame 1Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 1Symbol 62 as "myStarField"
ExportAssets (56)Timeline Frame 89Symbol 62 as "myStarField"
ExportAssets (56)Timeline Frame 93Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 94Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 95Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 96Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 97Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 98Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 99Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 100Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 101Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 102Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 103Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 104Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 105Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 106Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 107Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 108Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 109Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 110Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 111Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 112Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 113Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 114Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 115Symbol 61 as "carfld"
ExportAssets (56)Timeline Frame 116Symbol 61 as "carfld"

Labels

"intro_start"Frame 5
"intro_end"Frame 71
"loading"Frame 73
"loaded"Frame 76
"init"Frame 77
"menu"Frame 81
"inst1"Frame 85
"inst2"Frame 87
"controls"Frame 89
"start"Frame 93
"loop_start"Frame 97
"next_level"Frame 101
"game_over"Frame 117
"you_win"Frame 121
"noshoot"Symbol 16 MovieClip Frame 1
"shoot"Symbol 16 MovieClip Frame 2
"normal"Symbol 19 MovieClip Frame 1
"left"Symbol 19 MovieClip Frame 2
"right"Symbol 19 MovieClip Frame 5
"red"Symbol 25 MovieClip [ball] Frame 1
"blue"Symbol 25 MovieClip [ball] Frame 2
"white"Symbol 25 MovieClip [ball] Frame 3
"explosion"Symbol 60 MovieClip Frame 2
"explosion_ball"Symbol 60 MovieClip Frame 6
"start"Symbol 62 MovieClip [myStarField] Frame 2
"loop"Symbol 62 MovieClip [myStarField] Frame 3
"doplay"Symbol 135 MovieClip Frame 1
"dontplay"Symbol 135 MovieClip Frame 2
"doplay"Symbol 138 MovieClip Frame 1
"dontplay"Symbol 138 MovieClip Frame 2
"none"Symbol 144 MovieClip Frame 1
"on"Symbol 144 MovieClip Frame 2
"off"Symbol 144 MovieClip Frame 3
"music_off"Symbol 148 MovieClip Frame 1
"music_on"Symbol 148 MovieClip Frame 6
"intro"Symbol 148 MovieClip Frame 12
"main"Symbol 148 MovieClip Frame 17
"over"Symbol 148 MovieClip Frame 22

Dynamic Text Variables

loadPercentSymbol 98 EditableText"0%"
myLevelSymbol 194 EditableText"LEVEL 1"
stimeSymbol 196 EditableText"02:00"
hitnextSymbol 200 EditableText"1"




http://swfchan.com/5/22520/info.shtml
Created: 26/5 -2019 21:38:02 Last modified: 26/5 -2019 21:38:02 Server time: 17/05 -2024 11:37:13