| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 231346 |
| /disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2623 · P5245 |
![]() | This is the info page for Flash #13807 |
| presents... |
| Load-Info |
| Loading... |
| Time remaining : |
| 0:00 |
| Play |
| Play |
| The grass in these crazy hills has a high helium content... the sheep have been grazing all day and have started to float off! Shoot them down before they get away! |
| Controls |
| Controls |
| Help |
| Help |
| Copyright © 2003 www.KwikGames.com |
| When you need a kwik break! |
| Shoot all the sheep to progress to the next level. Shooting sheep of the same size in a row lights up the multiplier lights. When all 3 are lit your score multipiler goes up! To get the high scores shoot all of the big sheep, followed by the medium and finish with the small ones... |
| Multiplier lights |
| Lives |
| Scores |
| Multiplier |
| Spacebar |
| A |
| Fire |
| Break |
| Thrust |
| Turn Right |
| Turn Left |
| [x] |
| [x] |
| actions |
| button |
| 0 |
| 0 |
| Lv |
| 0 |
| 0 |
| 0 |
| Lives remaining |
| 0 |
| SCORED |
| One of them got you! Give it another try... |
| try again |
| try again |
| Hit Space |
| ( ) |
| 0 |
| TOTAL SCORE |
| 0 |
| 0 |
| NOW TRY LEVEL |
| Nice one you got them all... ...but here comes another wave! |
| 0 |
| TOTAL SCORE |
| 0 |
| X |
| 0 |
| tHIS lEVEL |
| Next Level |
| Next Level |
| ! |
| R |
| E |
| V |
| O |
| M |
| A |
| G |
| 0 |
| FINAL SCORE |
| ENTER YOUR NAME: |
| OK |
| 0 |
| tell a Friend |
| tell a Friend |
| LOADING... |
| LAST 10 |
| NEXT 10 |
| Name |
| Score |
| Your Email : |
| Friend's Email : |
| Your message : |
| Email this game to your friend with your own message: |
| Send |
| Send |
| Thankyou - your friend has been emailed! |
ActionScript [AS1/AS2]
Instance of Symbol 21 MovieClip "mc_load_info" in Frame 3//component parameters onClipEvent (initialize) { STREAM = true; PLAY_TYPE = "bytes"; PLAY_BYTES = 10000; PLAY_FRAMES = 0; PLAY_PERCENTAGE = 0; }Instance of Symbol 25 MovieClip in Frame 3onClipEvent (load) { var myStartWidth = this._width; this._width = 0; } onClipEvent (enterFrame) { this._width = myStartWidth * _root.mc_load_info.fractionLoaded; }Frame 15stop(); totalscore = 0; livesclip.gotoAndStop(3);Frame 17stop();Frame 18stop(); gotoAndPlay (15);Frame 27stop(); gotoAndPlay (19);Frame 28function startLevel() { ship.dx = 0; ship.dy = 0; bullets = new Array(); rocks = new Array(); level = 0; i = 0; while (i < (gameLevel + 1)) { newRock(100, 0, 0); i++; } timeOfLastFire = 0; score = 0; } function shipTurn(amt) { ship._rotation = ship._rotation + amt; } function shipThrust() { ship.dx = ship.dx + Math.cos(((Math.PI*2) * (ship._rotation - 90)) / 360); ship.dy = ship.dy + Math.sin(((Math.PI*2) * (ship._rotation - 90)) / 360); if (ship.dy > 18) { ship.dy = 18; } if (ship.dx > 18) { ship.dx = 18; } if (ship.dy < -18) { ship.dy = -18; } if (ship.dx < -18) { ship.dx = -18; } ship.gotoAndPlay("thrust"); } function shipBreak() { ship.dx = ship.dx * 0.5; ship.dy = ship.dy * 0.5; } function shipFire() { if ((timeOfLastFire + 200) < getTimer()) { timeOfLastFire = getTimer(); level++; attachMovie("bullet", "bullet" + level, level); clip = _root["bullet" + level]; clip._x = ship._x; clip._y = ship._y; clip.dx = 10 * Math.cos(((Math.PI*2) * (ship._rotation - 90)) / 360); clip.dy = 10 * Math.sin(((Math.PI*2) * (ship._rotation - 90)) / 360); bullets.push(clip); } } function shipMove() { ship._x = ship._x + ship.dx; if (ship._x > 550) { ship._x = ship._x - 550; } if (ship._x < 0) { ship._x = ship._x + 550; } ship._y = ship._y + ship.dy; if (ship._y > 400) { ship._y = ship._y - 400; } if (ship._y < 0) { ship._y = ship._y + 400; } } function bulletsMove() { i = bullets.length - 1; while (i >= 0) { bullets[i]._x = bullets[i]._x + bullets[i].dx; bullets[i]._y = bullets[i]._y + bullets[i].dy; if ((((bullets[i]._x > 550) or (bullets[i]._x < 0)) or (bullets[i]._y > 400)) or (bullets[i]._y < 0)) { bullets[i].removeMovieClip(); bullets.splice(i, 1); } i--; } } function newRock(size, x, y) { level++; rockNum = int((Math.random() * 3) + 1); attachMovie("rock" + rockNum, "rock" + level, level); clip = _root["rock" + level]; clip._x = x; clip._y = y; clip._xscale = size; clip._yscale = size; clip.dx = (Math.Random() * gameLevel) + 0.5; if (Math.random() < 0.5) { clip.dx = clip.dx * -1; } clip.dy = (Math.Random() * gameLevel) + 0.5; if (Math.random() < 0.5) { clip.dy = clip.dy * -1; } clip.spin = (Math.random() * 6) - 3; rocks.push(clip); } function rocksMove() { i = rocks.length - 1; while (i >= 0) { clip = rocks[i].clip; rocks[i]._x = rocks[i]._x + rocks[i].dx; if (rocks[i]._x > 550) { rocks[i]._x = rocks[i]._x - 550; } if (rocks[i]._x < 0) { rocks[i]._x = rocks[i]._x + 550; } rocks[i]._y = rocks[i]._y + rocks[i].dy; if (rocks[i]._y > 400) { rocks[i]._y = rocks[i]._y - 400; } if (rocks[i]._y < 0) { rocks[i]._y = rocks[i]._y + 400; } rocks[i]._rotation = rocks[i]._rotation + rocks[i].spin; i--; } } function checkHits() { i = rocks.length - 1; while (i >= 0) { j = bullets.length - 1; while (j >= 0) { if (rocks[i].hitTest(bullets[j]._x, bullets[j]._y, true)) { if (rocks[1]) { bleat.start(); } else { bleat2.start(); } bullets[j].removeMovieClip(); bullets.splice(j, 1); if (rocks[i]._xscale == 100) { if ((multi50 == 0) && (multi25 == 0)) { multi++; } else { multi = 0; } multi50 = 0; multi25 = 0; multi100++; } else if (rocks[i]._xscale == 50) { if ((multi100 == 0) && (multi25 == 0)) { multi++; } else { multi = 0; } multi100 = 0; multi25 = 0; multi50++; } else if (rocks[i]._xscale == 25) { if ((multi50 == 0) && (multi100 == 0)) { multi++; } else { multi = 0; } multi50 = 0; multi100 = 0; multi25++; } if (multipause == false) { multilights.gotoAndPlay(multi + 1); } newsize = rocks[i]._xscale / 2; x = rocks[i]._x; y = rocks[i]._y; rocks[i].removeMovieClip(); rocks.splice(i, 1); if (newsize >= 25) { newRock(newsize, x, y); newRock(newsize, x, y); } score = score + 10; break; } j--; } if (((rocks[i].hitTest(ship._x + 8, ship._y + 8, true) || (rocks[i].hitTest(ship._x - 8, ship._y + 8, true))) || (rocks[i].hitTest(ship._x + 8, ship._y - 8, true))) || (rocks[i].hitTest(ship._x - 8, ship._y - 8, true))) { ship.gotoAndPlay("hit"); } i--; } if (rocks.length == 0) { removeAll(); gotoAndPlay (38); gameLevel++; } } function removeAll() { i = 0; while (i < bullets.length) { bullets[i].removeMovieClip(); i++; } i = 0; while (i < rocks.length) { rocks[i].removeMovieClip(); i++; } } stop(); _root.removeAll(); multi = 0; multiplier = 1; multi100 = 0; multi50 = 0; multi25 = 0; multipause = false; livesclip.gotoAndStop(lives); bleat = new Sound(); bleat.attachSound("bleat"); bleat2 = new Sound(); bleat2.attachSound("bleat2");Instance of Symbol 116 MovieClip in Frame 28onClipEvent (load) { _root.startLevel(); } onClipEvent (enterFrame) { _root.shipMove(); _root.bulletsMove(); _root.rocksMove(); _root.checkHits(); if (Key.isDown(39)) { _root.shipTurn(6); } if (Key.isDown(37)) { _root.shipTurn(-6); } }Frame 31stop();Frame 38tempscore = score; score = score * multiplier; totalscore = totalscore + score; stop();Frame 43tempscore = score; score = score * multiplier; totalscore = totalscore + score; stop(); name_txt.restrict = "A-Z 0-9.:\\-"; name_txt.text = playerName; Selection.setFocus(name_txt); Selection.setSelection(name_txt.length, name_txt.length); ok_btn.onRelease = function () { if (name_txt.length > 0) { _root.nextFrame(); } }; ok_btn.onKeyDown = function () { if (Key.getCode() == 13) { Key.removeListener(ok_btn); this.onRelease(); } }; Key.addListener(ok_btn);Frame 44score = totalscore; stop(); showScores = function () { var i = 10; while (i > 0) { var n = scoreboard_lv["name" + (page + i)]; var s = scoreboard_lv["score" + (page + i)]; var l_mc = this[("line" + i) + "_mc"]; l_mc.rank_txt.text = (page + i) + "."; l_mc.name_txt.text = (n.length ? (n.toUpperCase()) : "-"); l_mc.score_txt.text = s; l_mc.rank_txt.textColor = (l_mc.name_txt.textColor = (l_mc.score_txt.textColor = ((playerName.length && (n.toUpperCase() == playerName.toUpperCase())) ? 3407616 : 16777215))); l_mc._visible = true; loading_mc._visible = false; i--; } }; page = 0; maxScore = 100; scoreboard_lv = new LoadVars(); if ((score > 0) && (playerName.length > 0)) { scoreboard_lv.score = score; scoreboard_lv.name = playerName.toLowerCase(); } scoreboard_lv.game = "sheepteroids"; scoreboard_lv.sendAndLoad("http://www.kwikgames.com/cgi/games_score_sql.php", scoreboard_lv, "POST"); scoreboard_lv.onLoad = function (success) { if (success) { if (Boolean(scoreboard_lv.success)) { next_btn._visible = true; if (scoreboard_lv.maxScore.length > 0) { maxScore = Number(scoreboard_lv.maxScore); } showScores(); } else { loading_mc.errorMsg = scoreboard_lv.errorMsg.toUpperCase(); loading_mc.gotoAndStop(2); } } else { loading_mc.errorMsg = "COULD NOT ACCESS SCORES."; loading_mc.gotoAndStop(2); } }; score = 0; next_btn._visible = (last_btn._visible = false); last_btn.onPress = function () { page = page - 10; if (page < 0) { page = 0; } if (page < 10) { last_btn._visible = false; } next_btn._visible = true; showScores(); }; next_btn.onPress = function () { page = page + 10; if (page > maxScore) { page = maxScore; } if (page > (maxScore - 20)) { next_btn._visible = false; } last_btn._visible = true; showScores(); };Frame 55stop(); name_txt.restrict = "a-z 0-9.:\\-@"; Selection.setFocus(name_txt); Selection.setSelection(name_txt.length, name_txt.length); ok_btn.onRelease = function () { if (name_txt.length > 0) { _root.game_so.data.playerName = name_txt.text; } Body = "Check out Sheepteroids - at www.kwikgames.com/sheepteroids.htm\n\n" + Body; loadVariablesNum ("http://www.kwikgames.com/cgi/flashemail.php", 0, "POST"); nextFrame(); }; ok_btn.onKeyDown = function () { if (Key.getCode() == 13) { Key.removeListener(ok_btn); this.onRelease(); } }; Key.addListener(ok_btn);Symbol 11 MovieClip [alien3] Frame 1stop();Symbol 11 MovieClip [alien3] Frame 3gotoAndStop (1);Symbol 21 MovieClip Frame 1function formatBytes(bytes) { var kb = 1024; var mb = (kb * 1024); var tempNum = 0; if (bytes >= mb) { tempNum = String(Math.floor((bytes / mb) * 100) / 100); if (tempNum.substring(tempNum.indexOf("."), tempNum.length).length == 2) { tempNum = tempNum + "0"; } tempNum = tempNum + " MB"; } else if (bytes >= kb) { tempNum = String(Math.floor((bytes / kb) * 100) / 100); if (tempNum.substring(tempNum.indexOf("."), tempNum.length).length == 2) { tempNum = tempNum + "0"; } tempNum = tempNum + " KB"; } else { tempNum = bytes + " B"; } return(tempNum); } this._visible = false; var isLoaded = false; var totalBytes = _parent.getBytesTotal(); var loadedBytes = _parent.getBytesLoaded(); var totalFrames = _parent._totalFrames(); var loadedFrames = _parent._framesLoaded(); var fractionLoaded = 0; var percentLoaded = "0%"; var bytesPerSecond = 0; var sizePerSecond = formatBytes(bytesPerSecond); var elapsedTime = "0:00"; var estimatedTime = "0:00"; var estimatedTimeLeft = "0:00"; var gStartTime = getTimer(); var gCurrentTime = getTimer(); var gSampleTimer = (gCurrentTime - gStartTime); var gSizeSample = loadedBytes; var framesPerSecond = 0; var frameCounter = 0; var totalSize = formatBytes(totalBytes); var loadedSize = formatBytes(loadedBytes); var loadedBytes = 0; var gLoading = true; var gPlaying = false; _parent.stop();Symbol 21 MovieClip Frame 2if (gLoading) { loadedBytes = _parent.getBytesLoaded(); loadedSize = formatBytes(loadedBytes); loadedFrames = _parent._framesLoaded; gCurrentTime = getTimer(); var elapsedMinutes = Math.floor(((gCurrentTime - gStartTime) / 1000) / 60); var elapsedSeconds = Math.floor(((gCurrentTime - gStartTime) / 1000) % 60); if (String(elapsedSeconds).length == 1) { elapsedSeconds = "0" + elapsedSeconds; } elapsedTime = (elapsedMinutes + ":") + elapsedSeconds; frameCounter++; if ((gCurrentTime - gStartTime) >= (gSampleTimer + 1000)) { framesPerSecond = frameCounter; frameCounter = 0; bytesPerSecond = loadedBytes - gSizeSample; sizePerSecond = formatBytes(bytesPerSecond); if (STREAM && (PLAY_TYPE == "auto")) { if ((loadedFrames / framesPerSecond) > ((totalBytes - loadedBytes) / bytesPerSecond)) { _parent.play(); } } var estimatedMinutes = Math.floor((totalBytes / bytesPerSecond) / 60); var estimatedSeconds = Math.floor((totalBytes / bytesPerSecond) % 60); if (String(estimatedSeconds).length == 1) { estimatedSeconds = "0" + estimatedSeconds; } estimatedTime = (estimatedMinutes + ":") + estimatedSeconds; var estimatedMinutesLeft = Math.floor(((totalBytes - loadedBytes) / bytesPerSecond) / 60); var estimatedSecondsLeft = Math.floor(((totalBytes - loadedBytes) / bytesPerSecond) % 60); if (String(estimatedSecondsLeft).length == 1) { estimatedSecondsLeft = "0" + estimatedSecondsLeft; } estimatedTimeLeft = (estimatedMinutesLeft + ":") + estimatedSecondsLeft; gSizeSample = loadedBytes; gSampleTimer = gCurrentTime - gStartTime; } fractionLoaded = loadedBytes / totalBytes; percentLoaded = Math.floor(fractionLoaded * 100) + "%"; if (STREAM) { switch (PLAY_TYPE) { case "bytes" : if (loadedBytes >= PLAY_BYTES) { if (!gPlaying) { _parent.play(); gPlaying = true; } } break; case "frames" : if (loadedFrames >= PLAY_FRAMES) { if (!gPlaying) { _parent.play(); gPlaying = true; } } break; case "percent" : if ((fractionLoaded * 100) < PLAY_PERCENT) { break; } if (gPlaying) { break; } _parent.play(); gPlaying = true; } } if (loadedBytes == totalBytes) { isLoaded = true; } if (isLoaded) { if (!STREAM) { _parent.play(); } gLoading = false; stop(); } }Symbol 21 MovieClip Frame 3gotoAndPlay (2);Symbol 43 Buttonon (press) { gameLevel = 1; lives = 3; score = 0; gotoAndPlay (28); }Symbol 51 Buttonon (release) { gotoAndPlay (19); }Symbol 57 Buttonon (release) { gotoAndStop (17); }Symbol 63 Buttonon (release) { getURL ("http://www.kwikgames.com", _blank); }Symbol 106 Buttonon (release) { gotoAndPlay (15); }Symbol 114 MovieClip Frame 1stop();Symbol 114 MovieClip Frame 3gotoAndPlay (1);Symbol 114 MovieClip Frame 4_root.removeAll();Symbol 114 MovieClip Frame 12if (_root.lives < 2) { _root.gotoAndPlay("game over"); } else { _root.lives--; _root.gotoAndPlay("ship hit"); }Symbol 118 Buttonon (keyPress "<Space>") { shipFire(); } on (keyPress "<Up>") { shipThrust(); } on (keyPress "<Down>") { shipBreak(); }Symbol 125 MovieClip Frame 1stop();Symbol 125 MovieClip Frame 2stop();Symbol 125 MovieClip Frame 3stop();Symbol 125 MovieClip Frame 4_root.multipause = true;Symbol 125 MovieClip Frame 14_root.multipause = false; _root.multiplier++; _root.multi = 0; _root.multi100 = 0; _root.multi50 = 0; _root.multi25 = 0;Symbol 128 MovieClip Frame 1stop();Symbol 128 MovieClip Frame 2stop();Symbol 128 MovieClip Frame 3stop();Symbol 149 Buttonon (press) { gotoAndPlay (28); }Symbol 150 Buttonon (keyPress "<Space>") { gotoAndPlay (28); }Symbol 174 Buttonon (press) { gotoAndPlay (28); }Symbol 193 Buttonon (press) { _root.gameLevel = 1; _root.score = 0; _root.lives = 3; gotoAndPlay (15); }Symbol 199 Buttonon (release) { gotoAndStop (55); }Symbol 202 MovieClip Frame 1stop(); errorMsg = ""; i = 0; alien_mc.onEnterFrame = function () { i = i + 0.25; i = i % 2; this.gotoAndStop(i + 1); };
Library Items
| Symbol 1 Sound [bleat] | ||
| Symbol 2 Sound [bleat2] | Used by:Timeline | |
| Symbol 3 Graphic | Used by:4 5 6 | |
| Symbol 4 MovieClip [rock3] | Uses:3 | |
| Symbol 5 MovieClip [rock2] | Uses:3 | |
| Symbol 6 MovieClip [rock1] | Uses:3 | |
| Symbol 7 Graphic | Used by:8 | |
| Symbol 8 MovieClip [bullet] | Uses:7 | |
| Symbol 9 Graphic | Used by:11 | |
| Symbol 10 Graphic | Used by:11 | |
| Symbol 11 MovieClip [alien3] | Uses:9 10 | Used by:202 |
| Symbol 12 Graphic | Used by:Timeline | |
| Symbol 13 Graphic | Used by:Timeline | |
| Symbol 14 Font | Used by:15 27 66 69 70 71 72 77 79 82 87 92 97 102 115 117 129 130 131 132 133 134 135 136 137 187 188 191 200 201 203 204 205 | |
| Symbol 15 Text | Uses:14 | Used by:Timeline |
| Symbol 16 Graphic | Used by:Timeline | |
| Symbol 17 Graphic | Used by:Timeline | |
| Symbol 18 Graphic | Used by:21 | |
| Symbol 19 Font | Used by:20 28 29 58 103 104 216 217 218 219 220 221 222 224 225 229 | |
| Symbol 20 Text | Uses:19 | Used by:21 |
| Symbol 21 MovieClip | Uses:18 20 | Used by:Timeline |
| Symbol 22 Graphic | Used by:Timeline | |
| Symbol 23 Graphic | Used by:Timeline | |
| Symbol 24 Graphic | Used by:25 | |
| Symbol 25 MovieClip | Uses:24 | Used by:Timeline |
| Symbol 26 Graphic | Used by:Timeline | |
| Symbol 27 Text | Uses:14 | Used by:Timeline |
| Symbol 28 EditableText | Uses:19 | Used by:Timeline |
| Symbol 29 EditableText | Uses:19 | Used by:Timeline |
| Symbol 30 Graphic | Used by:Timeline | |
| Symbol 31 Graphic | Used by:34 | |
| Symbol 32 Graphic | Used by:34 | |
| Symbol 33 Graphic | Used by:34 | |
| Symbol 34 MovieClip | Uses:31 32 33 | Used by:Timeline |
| Symbol 35 Graphic | Used by:Timeline | |
| Symbol 36 Graphic | Used by:Timeline | |
| Symbol 37 Graphic | Used by:43 | |
| Symbol 38 Font | Used by:39 41 45 47 49 53 55 140 142 143 145 147 152 156 159 161 163 165 167 170 172 176 177 178 179 180 181 182 183 186 195 197 | |
| Symbol 39 Text | Uses:38 | Used by:43 |
| Symbol 40 Graphic | Used by:43 | |
| Symbol 41 Text | Uses:38 | Used by:43 57 |
| Symbol 42 Graphic | Used by:43 | |
| Symbol 43 Button | Uses:37 39 40 41 42 | Used by:Timeline |
| Symbol 44 Graphic | Used by:Timeline | |
| Symbol 45 Text | Uses:38 | Used by:Timeline |
| Symbol 46 Graphic | Used by:51 | |
| Symbol 47 Text | Uses:38 | Used by:51 |
| Symbol 48 Graphic | Used by:51 | |
| Symbol 49 Text | Uses:38 | Used by:51 |
| Symbol 50 Graphic | Used by:51 | |
| Symbol 51 Button | Uses:46 47 48 49 50 | Used by:Timeline |
| Symbol 52 Graphic | Used by:57 | |
| Symbol 53 Text | Uses:38 | Used by:57 |
| Symbol 54 Graphic | Used by:57 | |
| Symbol 55 Text | Uses:38 | Used by:57 |
| Symbol 56 Graphic | Used by:57 | |
| Symbol 57 Button | Uses:52 53 54 55 56 41 | Used by:Timeline |
| Symbol 58 Text | Uses:19 | Used by:Timeline |
| Symbol 59 Graphic | Used by:63 | |
| Symbol 60 Font | Used by:61 | |
| Symbol 61 Text | Uses:60 | Used by:63 |
| Symbol 62 Graphic | Used by:63 | |
| Symbol 63 Button | Uses:59 61 62 | Used by:Timeline |
| Symbol 64 Graphic | Used by:Timeline | |
| Symbol 65 Graphic | Used by:Timeline | |
| Symbol 66 Text | Uses:14 | Used by:Timeline |
| Symbol 67 Bitmap | Used by:68 | |
| Symbol 68 Graphic | Uses:67 | Used by:Timeline |
| Symbol 69 Text | Uses:14 | Used by:Timeline |
| Symbol 70 Text | Uses:14 | Used by:Timeline |
| Symbol 71 Text | Uses:14 | Used by:Timeline |
| Symbol 72 Text | Uses:14 | Used by:Timeline |
| Symbol 73 Graphic | Used by:Timeline | |
| Symbol 74 Graphic | Used by:Timeline | |
| Symbol 75 Graphic | Used by:81 | |
| Symbol 76 Graphic | Used by:81 | |
| Symbol 77 Text | Uses:14 | Used by:81 |
| Symbol 78 Graphic | Used by:81 | |
| Symbol 79 EditableText | Uses:14 | Used by:81 |
| Symbol 80 Graphic | Used by:81 | |
| Symbol 81 Button | Uses:75 76 77 78 79 80 | Used by:Timeline |
| Symbol 82 Text | Uses:14 | Used by:Timeline |
| Symbol 83 Graphic | Used by:86 | |
| Symbol 84 Graphic | Used by:86 | |
| Symbol 85 Graphic | Used by:86 | |
| Symbol 86 Button | Uses:83 84 85 | Used by:Timeline |
| Symbol 87 Text | Uses:14 | Used by:Timeline |
| Symbol 88 Graphic | Used by:91 | |
| Symbol 89 Graphic | Used by:91 | |
| Symbol 90 Graphic | Used by:91 | |
| Symbol 91 Button | Uses:88 89 90 | Used by:Timeline |
| Symbol 92 Text | Uses:14 | Used by:Timeline |
| Symbol 93 Graphic | Used by:96 | |
| Symbol 94 Graphic | Used by:96 | |
| Symbol 95 Graphic | Used by:96 | |
| Symbol 96 Button | Uses:93 94 95 | Used by:Timeline |
| Symbol 97 Text | Uses:14 | Used by:Timeline |
| Symbol 98 Graphic | Used by:101 | |
| Symbol 99 Graphic | Used by:101 | |
| Symbol 100 Graphic | Used by:101 | |
| Symbol 101 Button | Uses:98 99 100 | Used by:Timeline |
| Symbol 102 Text | Uses:14 | Used by:Timeline |
| Symbol 103 Text | Uses:19 | Used by:106 |
| Symbol 104 Text | Uses:19 | Used by:106 |
| Symbol 105 Graphic | Used by:106 | |
| Symbol 106 Button | Uses:103 104 105 | Used by:Timeline |
| Symbol 107 Graphic | Used by:114 128 | |
| Symbol 108 Graphic | Used by:114 | |
| Symbol 109 Graphic | Used by:114 | |
| Symbol 110 Graphic | Used by:114 | |
| Symbol 111 Graphic | Used by:114 | |
| Symbol 112 Graphic | Used by:114 | |
| Symbol 113 Sound | Used by:114 | |
| Symbol 114 MovieClip | Uses:107 108 109 110 111 112 113 | Used by:Timeline |
| Symbol 115 EditableText | Uses:14 | Used by:116 |
| Symbol 116 MovieClip | Uses:115 | Used by:Timeline |
| Symbol 117 EditableText | Uses:14 | Used by:118 150 |
| Symbol 118 Button | Uses:117 | Used by:Timeline |
| Symbol 119 Graphic | Used by:125 | |
| Symbol 120 Graphic | Used by:125 | |
| Symbol 121 Graphic | Used by:125 | |
| Symbol 122 Graphic | Used by:125 | |
| Symbol 123 Graphic | Used by:125 | |
| Symbol 124 Sound | Used by:125 | |
| Symbol 125 MovieClip | Uses:119 120 121 122 123 124 | Used by:Timeline |
| Symbol 126 Graphic | Used by:128 | |
| Symbol 127 Graphic | Used by:128 | |
| Symbol 128 MovieClip | Uses:107 126 127 | Used by:Timeline |
| Symbol 129 EditableText | Uses:14 | Used by:Timeline |
| Symbol 130 EditableText | Uses:14 | Used by:Timeline |
| Symbol 131 Text | Uses:14 | Used by:Timeline |
| Symbol 132 EditableText | Uses:14 | Used by:Timeline |
| Symbol 133 EditableText | Uses:14 | Used by:Timeline |
| Symbol 134 EditableText | Uses:14 | Used by:Timeline |
| Symbol 135 EditableText | Uses:14 | Used by:Timeline |
| Symbol 136 EditableText | Uses:14 | Used by:Timeline |
| Symbol 137 EditableText | Uses:14 | Used by:Timeline |
| Symbol 138 Font | Used by:139 141 155 157 158 160 162 164 166 185 192 207 209 211 212 | |
| Symbol 139 EditableText | Uses:138 | Used by:Timeline |
| Symbol 140 Text | Uses:38 | Used by:Timeline |
| Symbol 141 EditableText | Uses:138 | Used by:Timeline |
| Symbol 142 Text | Uses:38 | Used by:Timeline |
| Symbol 143 Text | Uses:38 | Used by:Timeline |
| Symbol 144 Graphic | Used by:149 193 | |
| Symbol 145 Text | Uses:38 | Used by:149 193 |
| Symbol 146 Graphic | Used by:149 193 | |
| Symbol 147 Text | Uses:38 | Used by:149 193 |
| Symbol 148 Graphic | Used by:149 193 | |
| Symbol 149 Button | Uses:144 145 146 147 148 | Used by:Timeline |
| Symbol 150 Button | Uses:117 | Used by:Timeline |
| Symbol 151 Graphic | Used by:Timeline | |
| Symbol 152 Text | Uses:38 | Used by:Timeline |
| Symbol 153 Font | Used by:154 | |
| Symbol 154 Text | Uses:153 | Used by:Timeline |
| Symbol 155 EditableText | Uses:138 | Used by:Timeline |
| Symbol 156 Text | Uses:38 | Used by:Timeline |
| Symbol 157 EditableText | Uses:138 | Used by:Timeline |
| Symbol 158 EditableText | Uses:138 | Used by:Timeline |
| Symbol 159 Text | Uses:38 | Used by:Timeline |
| Symbol 160 EditableText | Uses:138 | Used by:Timeline |
| Symbol 161 Text | Uses:38 | Used by:Timeline |
| Symbol 162 EditableText | Uses:138 | Used by:Timeline |
| Symbol 163 Text | Uses:38 | Used by:Timeline |
| Symbol 164 EditableText | Uses:138 | Used by:Timeline |
| Symbol 165 Text | Uses:38 | Used by:Timeline |
| Symbol 166 EditableText | Uses:138 | Used by:Timeline |
| Symbol 167 Text | Uses:38 | Used by:Timeline |
| Symbol 168 Graphic | Used by:Timeline | |
| Symbol 169 Graphic | Used by:174 | |
| Symbol 170 Text | Uses:38 | Used by:174 |
| Symbol 171 Graphic | Used by:174 | |
| Symbol 172 Text | Uses:38 | Used by:174 |
| Symbol 173 Graphic | Used by:174 | |
| Symbol 174 Button | Uses:169 170 171 172 173 | Used by:Timeline |
| Symbol 175 Graphic | Used by:Timeline | |
| Symbol 176 Text | Uses:38 | Used by:Timeline |
| Symbol 177 Text | Uses:38 | Used by:Timeline |
| Symbol 178 Text | Uses:38 | Used by:Timeline |
| Symbol 179 Text | Uses:38 | Used by:Timeline |
| Symbol 180 Text | Uses:38 | Used by:Timeline |
| Symbol 181 Text | Uses:38 | Used by:Timeline |
| Symbol 182 Text | Uses:38 | Used by:Timeline |
| Symbol 183 Text | Uses:38 | Used by:Timeline |
| Symbol 184 Graphic | Used by:Timeline | |
| Symbol 185 EditableText | Uses:138 | Used by:Timeline |
| Symbol 186 Text | Uses:38 | Used by:Timeline |
| Symbol 187 EditableText | Uses:14 | Used by:Timeline |
| Symbol 188 EditableText | Uses:14 | Used by:190 |
| Symbol 189 Graphic | Used by:190 208 210 | |
| Symbol 190 Button | Uses:188 189 | Used by:Timeline |
| Symbol 191 EditableText | Uses:14 | Used by:Timeline |
| Symbol 192 EditableText | Uses:138 | Used by:Timeline |
| Symbol 193 Button | Uses:144 145 146 147 148 | Used by:Timeline |
| Symbol 194 Graphic | Used by:199 | |
| Symbol 195 Text | Uses:38 | Used by:199 |
| Symbol 196 Graphic | Used by:199 | |
| Symbol 197 Text | Uses:38 | Used by:199 |
| Symbol 198 Graphic | Used by:199 | |
| Symbol 199 Button | Uses:194 195 196 197 198 | Used by:Timeline |
| Symbol 200 EditableText | Uses:14 | Used by:202 |
| Symbol 201 EditableText | Uses:14 | Used by:202 |
| Symbol 202 MovieClip | Uses:11 200 201 | Used by:Timeline |
| Symbol 203 EditableText | Uses:14 | Used by:206 |
| Symbol 204 EditableText | Uses:14 | Used by:206 |
| Symbol 205 EditableText | Uses:14 | Used by:206 |
| Symbol 206 MovieClip | Uses:203 204 205 | Used by:Timeline |
| Symbol 207 Text | Uses:138 | Used by:208 |
| Symbol 208 Button | Uses:207 189 | Used by:Timeline |
| Symbol 209 Text | Uses:138 | Used by:210 |
| Symbol 210 Button | Uses:209 189 | Used by:Timeline |
| Symbol 211 Text | Uses:138 | Used by:Timeline |
| Symbol 212 Text | Uses:138 | Used by:Timeline |
| Symbol 213 Graphic | Used by:Timeline | |
| Symbol 214 Graphic | Used by:Timeline | |
| Symbol 215 Graphic | Used by:Timeline | |
| Symbol 216 EditableText | Uses:19 | Used by:Timeline |
| Symbol 217 Text | Uses:19 | Used by:Timeline |
| Symbol 218 Text | Uses:19 | Used by:Timeline |
| Symbol 219 EditableText | Uses:19 | Used by:Timeline |
| Symbol 220 EditableText | Uses:19 | Used by:Timeline |
| Symbol 221 Text | Uses:19 | Used by:Timeline |
| Symbol 222 Text | Uses:19 | Used by:Timeline |
| Symbol 223 Graphic | Used by:Timeline | |
| Symbol 224 Text | Uses:19 | Used by:227 |
| Symbol 225 Text | Uses:19 | Used by:227 |
| Symbol 226 Graphic | Used by:227 | |
| Symbol 227 Button | Uses:224 225 226 | Used by:Timeline |
| Symbol 228 Graphic | Used by:Timeline | |
| Symbol 229 Text | Uses:19 | Used by:Timeline |
| Symbol 230 Graphic | Used by:Timeline |
Instance Names
| "mc_load_info" | Frame 3 | Symbol 21 MovieClip |
| "ship" | Frame 28 | Symbol 114 MovieClip |
| "multilights" | Frame 28 | Symbol 125 MovieClip |
| "livesclip" | Frame 28 | Symbol 128 MovieClip |
| "ok_btn" | Frame 43 | Symbol 190 Button |
| "name_txt" | Frame 43 | Symbol 191 EditableText |
| "loading_mc" | Frame 44 | Symbol 202 MovieClip |
| "line1_mc" | Frame 44 | Symbol 206 MovieClip |
| "line2_mc" | Frame 44 | Symbol 206 MovieClip |
| "line3_mc" | Frame 44 | Symbol 206 MovieClip |
| "line4_mc" | Frame 44 | Symbol 206 MovieClip |
| "line5_mc" | Frame 44 | Symbol 206 MovieClip |
| "line6_mc" | Frame 44 | Symbol 206 MovieClip |
| "line7_mc" | Frame 44 | Symbol 206 MovieClip |
| "line8_mc" | Frame 44 | Symbol 206 MovieClip |
| "line9_mc" | Frame 44 | Symbol 206 MovieClip |
| "line10_mc" | Frame 44 | Symbol 206 MovieClip |
| "last_btn" | Frame 44 | Symbol 208 Button |
| "next_btn" | Frame 44 | Symbol 210 Button |
| "name_txt" | Frame 55 | Symbol 216 EditableText |
| "name_txt" | Frame 55 | Symbol 219 EditableText |
| "name_txt" | Frame 55 | Symbol 220 EditableText |
| "ok_btn" | Frame 55 | Symbol 227 Button |
| "alien_mc" | Symbol 202 MovieClip Frame 1 | Symbol 11 MovieClip [alien3] |
| "rank_txt" | Symbol 206 MovieClip Frame 1 | Symbol 203 EditableText |
| "score_txt" | Symbol 206 MovieClip Frame 1 | Symbol 204 EditableText |
| "name_txt" | Symbol 206 MovieClip Frame 1 | Symbol 205 EditableText |
Special Tags
| Protect (24) | Timeline Frame 1 | 0 bytes "" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "bleat" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "bleat2" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "rock3" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "rock2" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "rock1" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "bullet" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "alien3" |
| ExportAssets (56) | Timeline Frame 28 | Symbol 2 as "bleat2" |
| ExportAssets (56) | Timeline Frame 44 | Symbol 11 as "alien3" |
Labels
| "loading" | Frame 1 |
| "main" | Frame 15 |
| "start" | Frame 15 |
| "help" | Frame 17 |
| "controls" | Frame 19 |
| "play" | Frame 28 |
| "ship hit" | Frame 31 |
| "level over" | Frame 38 |
| "game over" | Frame 43 |
| "tell" | Frame 55 |
| "thrust" | Symbol 114 MovieClip Frame 2 |
| "hit" | Symbol 114 MovieClip Frame 4 |
Dynamic Text Variables
| mc_load_info.estimatedTimeLeft | Symbol 29 EditableText | "0:00" |
| label | Symbol 79 EditableText | "A" |
| gameLevel | Symbol 129 EditableText | "0" |
| score | Symbol 130 EditableText | "0" |
| multiplier | Symbol 132 EditableText | "" |
| multi100 | Symbol 133 EditableText | "" |
| multi50 | Symbol 134 EditableText | "" |
| multi25 | Symbol 135 EditableText | "" |
| multiplier | Symbol 136 EditableText | "0" |
| totalscore | Symbol 137 EditableText | "0" |
| lives | Symbol 139 EditableText | "0" |
| score | Symbol 141 EditableText | "0" |
| totalscore | Symbol 155 EditableText | "0" |
| lives | Symbol 157 EditableText | "0" |
| gameLevel | Symbol 158 EditableText | "0" |
| tempscore | Symbol 160 EditableText | "" |
| totalscore | Symbol 162 EditableText | "0" |
| multiplier | Symbol 164 EditableText | "0" |
| score | Symbol 166 EditableText | "0" |
| totalscore | Symbol 185 EditableText | "0" |
| playerName | Symbol 191 EditableText | "" |
| totalscore | Symbol 192 EditableText | "0" |
| errorMsg | Symbol 201 EditableText | "" |
| MailFrom | Symbol 216 EditableText | "" |
| MailTo | Symbol 219 EditableText | "" |
| Body | Symbol 220 EditableText | "" |
|
|