STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229456 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2574 · P5148 |
This is the info page for Flash #42217 |
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 |
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 23 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 27 MovieClip in Frame 3onClipEvent (load) { var myStartWidth = this._width; this._width = 0; } onClipEvent (enterFrame) { this._width = myStartWidth * _root.mc_load_info.fractionLoaded; }Frame 15loadMovie ("http://www.kwikgames.com/adverts/sheepteroids_ad.swf", _root.promo); stop(); 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 118 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 23 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 23 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 23 MovieClip Frame 3gotoAndPlay (2);Symbol 45 Buttonon (press) { gameLevel = 1; lives = 3; score = 0; gotoAndPlay (28); }Symbol 53 Buttonon (release) { gotoAndPlay (19); }Symbol 59 Buttonon (release) { gotoAndStop (17); }Symbol 65 Buttonon (release) { getURL ("http://www.kwikgames.com", _blank); }Symbol 108 Buttonon (release) { gotoAndPlay (15); }Symbol 116 MovieClip Frame 1stop();Symbol 116 MovieClip Frame 3gotoAndPlay (1);Symbol 116 MovieClip Frame 4_root.removeAll();Symbol 116 MovieClip Frame 12if (_root.lives < 2) { _root.gotoAndPlay("game over"); } else { _root.lives--; _root.gotoAndPlay("ship hit"); }Symbol 120 Buttonon (keyPress "<Space>") { shipFire(); } on (keyPress "<Up>") { shipThrust(); } on (keyPress "<Down>") { shipBreak(); }Symbol 127 MovieClip Frame 1stop();Symbol 127 MovieClip Frame 2stop();Symbol 127 MovieClip Frame 3stop();Symbol 127 MovieClip Frame 4_root.multipause = true;Symbol 127 MovieClip Frame 14_root.multipause = false; _root.multiplier++; _root.multi = 0; _root.multi100 = 0; _root.multi50 = 0; _root.multi25 = 0;Symbol 130 MovieClip Frame 1stop();Symbol 130 MovieClip Frame 2stop();Symbol 130 MovieClip Frame 3stop();Symbol 151 Buttonon (press) { gotoAndPlay (28); }Symbol 152 Buttonon (keyPress "<Space>") { gotoAndPlay (28); }Symbol 176 Buttonon (press) { gotoAndPlay (28); }Symbol 189 Buttonon (press) { _root.gameLevel = 1; _root.score = 0; _root.lives = 3; gotoAndPlay (15); }Symbol 196 Buttonon (release) { gotoAndStop (55); }Symbol 199 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:199 |
Symbol 12 Graphic | Used by:Timeline | |
Symbol 13 Graphic | Used by:14 | |
Symbol 14 MovieClip | Uses:13 | Used by:Timeline |
Symbol 15 Graphic | Used by:Timeline | |
Symbol 16 Font | Used by:17 29 68 71 72 73 74 79 81 84 89 94 99 104 117 119 131 132 133 134 135 136 137 138 139 197 198 200 201 202 | |
Symbol 17 Text | Uses:16 | Used by:Timeline |
Symbol 18 Graphic | Used by:Timeline | |
Symbol 19 Graphic | Used by:Timeline | |
Symbol 20 Graphic | Used by:23 | |
Symbol 21 Font | Used by:22 30 31 60 105 106 214 215 216 217 218 219 220 222 223 227 | |
Symbol 22 Text | Uses:21 | Used by:23 |
Symbol 23 MovieClip | Uses:20 22 | Used by:Timeline |
Symbol 24 Graphic | Used by:Timeline | |
Symbol 25 Graphic | Used by:Timeline | |
Symbol 26 Graphic | Used by:27 | |
Symbol 27 MovieClip | Uses:26 | Used by:Timeline |
Symbol 28 Graphic | Used by:Timeline | |
Symbol 29 Text | Uses:16 | Used by:Timeline |
Symbol 30 EditableText | Uses:21 | Used by:Timeline |
Symbol 31 EditableText | Uses:21 | Used by:Timeline |
Symbol 32 Graphic | Used by:Timeline | |
Symbol 33 Graphic | Used by:36 | |
Symbol 34 Graphic | Used by:36 | |
Symbol 35 Graphic | Used by:36 | |
Symbol 36 MovieClip | Uses:33 34 35 | Used by:Timeline |
Symbol 37 Graphic | Used by:Timeline | |
Symbol 38 Graphic | Used by:Timeline | |
Symbol 39 Graphic | Used by:45 | |
Symbol 40 Font | Used by:41 43 47 49 51 55 57 142 144 145 147 149 154 158 161 163 165 167 169 172 174 178 179 180 181 182 183 184 185 188 192 194 | |
Symbol 41 Text | Uses:40 | Used by:45 |
Symbol 42 Graphic | Used by:45 | |
Symbol 43 Text | Uses:40 | Used by:45 59 |
Symbol 44 Graphic | Used by:45 | |
Symbol 45 Button | Uses:39 41 42 43 44 | Used by:Timeline |
Symbol 46 Graphic | Used by:Timeline | |
Symbol 47 Text | Uses:40 | Used by:Timeline |
Symbol 48 Graphic | Used by:53 | |
Symbol 49 Text | Uses:40 | Used by:53 |
Symbol 50 Graphic | Used by:53 | |
Symbol 51 Text | Uses:40 | Used by:53 |
Symbol 52 Graphic | Used by:53 | |
Symbol 53 Button | Uses:48 49 50 51 52 | Used by:Timeline |
Symbol 54 Graphic | Used by:59 | |
Symbol 55 Text | Uses:40 | Used by:59 |
Symbol 56 Graphic | Used by:59 | |
Symbol 57 Text | Uses:40 | Used by:59 |
Symbol 58 Graphic | Used by:59 | |
Symbol 59 Button | Uses:54 55 56 57 58 43 | Used by:Timeline |
Symbol 60 Text | Uses:21 | Used by:Timeline |
Symbol 61 Graphic | Used by:65 | |
Symbol 62 Font | Used by:63 | |
Symbol 63 Text | Uses:62 | Used by:65 |
Symbol 64 Graphic | Used by:65 | |
Symbol 65 Button | Uses:61 63 64 | Used by:Timeline |
Symbol 66 Graphic | Used by:Timeline | |
Symbol 67 Graphic | Used by:Timeline | |
Symbol 68 Text | Uses:16 | Used by:Timeline |
Symbol 69 Bitmap | Used by:70 | |
Symbol 70 Graphic | Uses:69 | Used by:Timeline |
Symbol 71 Text | Uses:16 | Used by:Timeline |
Symbol 72 Text | Uses:16 | Used by:Timeline |
Symbol 73 Text | Uses:16 | Used by:Timeline |
Symbol 74 Text | Uses:16 | Used by:Timeline |
Symbol 75 Graphic | Used by:Timeline | |
Symbol 76 Graphic | Used by:Timeline | |
Symbol 77 Graphic | Used by:83 | |
Symbol 78 Graphic | Used by:83 | |
Symbol 79 Text | Uses:16 | Used by:83 |
Symbol 80 Graphic | Used by:83 | |
Symbol 81 EditableText | Uses:16 | Used by:83 |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 Button | Uses:77 78 79 80 81 82 | Used by:Timeline |
Symbol 84 Text | Uses:16 | Used by:Timeline |
Symbol 85 Graphic | Used by:88 | |
Symbol 86 Graphic | Used by:88 | |
Symbol 87 Graphic | Used by:88 | |
Symbol 88 Button | Uses:85 86 87 | Used by:Timeline |
Symbol 89 Text | Uses:16 | Used by:Timeline |
Symbol 90 Graphic | Used by:93 | |
Symbol 91 Graphic | Used by:93 | |
Symbol 92 Graphic | Used by:93 | |
Symbol 93 Button | Uses:90 91 92 | Used by:Timeline |
Symbol 94 Text | Uses:16 | Used by:Timeline |
Symbol 95 Graphic | Used by:98 | |
Symbol 96 Graphic | Used by:98 | |
Symbol 97 Graphic | Used by:98 | |
Symbol 98 Button | Uses:95 96 97 | Used by:Timeline |
Symbol 99 Text | Uses:16 | Used by:Timeline |
Symbol 100 Graphic | Used by:103 | |
Symbol 101 Graphic | Used by:103 | |
Symbol 102 Graphic | Used by:103 | |
Symbol 103 Button | Uses:100 101 102 | Used by:Timeline |
Symbol 104 Text | Uses:16 | Used by:Timeline |
Symbol 105 Text | Uses:21 | Used by:108 |
Symbol 106 Text | Uses:21 | Used by:108 |
Symbol 107 Graphic | Used by:108 | |
Symbol 108 Button | Uses:105 106 107 | Used by:Timeline |
Symbol 109 Graphic | Used by:116 130 | |
Symbol 110 Graphic | Used by:116 | |
Symbol 111 Graphic | Used by:116 | |
Symbol 112 Graphic | Used by:116 | |
Symbol 113 Graphic | Used by:116 | |
Symbol 114 Graphic | Used by:116 | |
Symbol 115 Sound | Used by:116 | |
Symbol 116 MovieClip | Uses:109 110 111 112 113 114 115 | Used by:Timeline |
Symbol 117 EditableText | Uses:16 | Used by:118 |
Symbol 118 MovieClip | Uses:117 | Used by:Timeline |
Symbol 119 EditableText | Uses:16 | Used by:120 152 |
Symbol 120 Button | Uses:119 | Used by:Timeline |
Symbol 121 Graphic | Used by:127 | |
Symbol 122 Graphic | Used by:127 | |
Symbol 123 Graphic | Used by:127 | |
Symbol 124 Graphic | Used by:127 | |
Symbol 125 Graphic | Used by:127 | |
Symbol 126 Sound | Used by:127 | |
Symbol 127 MovieClip | Uses:121 122 123 124 125 126 | Used by:Timeline |
Symbol 128 Graphic | Used by:130 | |
Symbol 129 Graphic | Used by:130 | |
Symbol 130 MovieClip | Uses:109 128 129 | Used by:Timeline |
Symbol 131 EditableText | Uses:16 | Used by:Timeline |
Symbol 132 EditableText | Uses:16 | Used by:Timeline |
Symbol 133 Text | Uses:16 | Used by:Timeline |
Symbol 134 EditableText | Uses:16 | Used by:Timeline |
Symbol 135 EditableText | Uses:16 | Used by:Timeline |
Symbol 136 EditableText | Uses:16 | Used by:Timeline |
Symbol 137 EditableText | Uses:16 | Used by:Timeline |
Symbol 138 EditableText | Uses:16 | Used by:Timeline |
Symbol 139 EditableText | Uses:16 | Used by:Timeline |
Symbol 140 Font | Used by:141 143 157 159 160 162 164 166 168 187 190 204 207 209 210 | |
Symbol 141 EditableText | Uses:140 | Used by:Timeline |
Symbol 142 Text | Uses:40 | Used by:Timeline |
Symbol 143 EditableText | Uses:140 | Used by:Timeline |
Symbol 144 Text | Uses:40 | Used by:Timeline |
Symbol 145 Text | Uses:40 | Used by:Timeline |
Symbol 146 Graphic | Used by:151 189 | |
Symbol 147 Text | Uses:40 | Used by:151 189 |
Symbol 148 Graphic | Used by:151 189 | |
Symbol 149 Text | Uses:40 | Used by:151 189 |
Symbol 150 Graphic | Used by:151 189 | |
Symbol 151 Button | Uses:146 147 148 149 150 | Used by:Timeline |
Symbol 152 Button | Uses:119 | Used by:Timeline |
Symbol 153 Graphic | Used by:Timeline | |
Symbol 154 Text | Uses:40 | Used by:Timeline |
Symbol 155 Font | Used by:156 | |
Symbol 156 Text | Uses:155 | Used by:Timeline |
Symbol 157 EditableText | Uses:140 | Used by:Timeline |
Symbol 158 Text | Uses:40 | Used by:Timeline |
Symbol 159 EditableText | Uses:140 | Used by:Timeline |
Symbol 160 EditableText | Uses:140 | Used by:Timeline |
Symbol 161 Text | Uses:40 | Used by:Timeline |
Symbol 162 EditableText | Uses:140 | Used by:Timeline |
Symbol 163 Text | Uses:40 | Used by:Timeline |
Symbol 164 EditableText | Uses:140 | Used by:Timeline |
Symbol 165 Text | Uses:40 | Used by:Timeline |
Symbol 166 EditableText | Uses:140 | Used by:Timeline |
Symbol 167 Text | Uses:40 | Used by:Timeline |
Symbol 168 EditableText | Uses:140 | Used by:Timeline |
Symbol 169 Text | Uses:40 | Used by:Timeline |
Symbol 170 Graphic | Used by:Timeline | |
Symbol 171 Graphic | Used by:176 | |
Symbol 172 Text | Uses:40 | Used by:176 |
Symbol 173 Graphic | Used by:176 | |
Symbol 174 Text | Uses:40 | Used by:176 |
Symbol 175 Graphic | Used by:176 | |
Symbol 176 Button | Uses:171 172 173 174 175 | Used by:Timeline |
Symbol 177 Graphic | Used by:Timeline | |
Symbol 178 Text | Uses:40 | Used by:Timeline |
Symbol 179 Text | Uses:40 | Used by:Timeline |
Symbol 180 Text | Uses:40 | Used by:Timeline |
Symbol 181 Text | Uses:40 | Used by:Timeline |
Symbol 182 Text | Uses:40 | Used by:Timeline |
Symbol 183 Text | Uses:40 | Used by:Timeline |
Symbol 184 Text | Uses:40 | Used by:Timeline |
Symbol 185 Text | Uses:40 | Used by:Timeline |
Symbol 186 Graphic | Used by:Timeline | |
Symbol 187 EditableText | Uses:140 | Used by:Timeline |
Symbol 188 Text | Uses:40 | Used by:Timeline |
Symbol 189 Button | Uses:146 147 148 149 150 | Used by:Timeline |
Symbol 190 EditableText | Uses:140 | Used by:Timeline |
Symbol 191 Graphic | Used by:196 | |
Symbol 192 Text | Uses:40 | Used by:196 |
Symbol 193 Graphic | Used by:196 | |
Symbol 194 Text | Uses:40 | Used by:196 |
Symbol 195 Graphic | Used by:196 | |
Symbol 196 Button | Uses:191 192 193 194 195 | Used by:Timeline |
Symbol 197 EditableText | Uses:16 | Used by:199 |
Symbol 198 EditableText | Uses:16 | Used by:199 |
Symbol 199 MovieClip | Uses:11 197 198 | Used by:Timeline |
Symbol 200 EditableText | Uses:16 | Used by:203 |
Symbol 201 EditableText | Uses:16 | Used by:203 |
Symbol 202 EditableText | Uses:16 | Used by:203 |
Symbol 203 MovieClip | Uses:200 201 202 | Used by:Timeline |
Symbol 204 Text | Uses:140 | Used by:206 |
Symbol 205 Graphic | Used by:206 208 | |
Symbol 206 Button | Uses:204 205 | Used by:Timeline |
Symbol 207 Text | Uses:140 | Used by:208 |
Symbol 208 Button | Uses:207 205 | Used by:Timeline |
Symbol 209 Text | Uses:140 | Used by:Timeline |
Symbol 210 Text | Uses:140 | Used by:Timeline |
Symbol 211 Graphic | Used by:Timeline | |
Symbol 212 Graphic | Used by:Timeline | |
Symbol 213 Graphic | Used by:Timeline | |
Symbol 214 EditableText | Uses:21 | Used by:Timeline |
Symbol 215 Text | Uses:21 | Used by:Timeline |
Symbol 216 Text | Uses:21 | Used by:Timeline |
Symbol 217 EditableText | Uses:21 | Used by:Timeline |
Symbol 218 EditableText | Uses:21 | Used by:Timeline |
Symbol 219 Text | Uses:21 | Used by:Timeline |
Symbol 220 Text | Uses:21 | Used by:Timeline |
Symbol 221 Graphic | Used by:Timeline | |
Symbol 222 Text | Uses:21 | Used by:225 |
Symbol 223 Text | Uses:21 | Used by:225 |
Symbol 224 Graphic | Used by:225 | |
Symbol 225 Button | Uses:222 223 224 | Used by:Timeline |
Symbol 226 Graphic | Used by:Timeline | |
Symbol 227 Text | Uses:21 | Used by:Timeline |
Symbol 228 Graphic | Used by:Timeline |
Instance Names
"promo" | Frame 1 | Symbol 14 MovieClip |
"mc_load_info" | Frame 3 | Symbol 23 MovieClip |
"ship" | Frame 28 | Symbol 116 MovieClip |
"multilights" | Frame 28 | Symbol 127 MovieClip |
"livesclip" | Frame 28 | Symbol 130 MovieClip |
"loading_mc" | Frame 44 | Symbol 199 MovieClip |
"line1_mc" | Frame 44 | Symbol 203 MovieClip |
"line2_mc" | Frame 44 | Symbol 203 MovieClip |
"line3_mc" | Frame 44 | Symbol 203 MovieClip |
"line4_mc" | Frame 44 | Symbol 203 MovieClip |
"line5_mc" | Frame 44 | Symbol 203 MovieClip |
"line6_mc" | Frame 44 | Symbol 203 MovieClip |
"line7_mc" | Frame 44 | Symbol 203 MovieClip |
"line8_mc" | Frame 44 | Symbol 203 MovieClip |
"line9_mc" | Frame 44 | Symbol 203 MovieClip |
"line10_mc" | Frame 44 | Symbol 203 MovieClip |
"last_btn" | Frame 44 | Symbol 206 Button |
"next_btn" | Frame 44 | Symbol 208 Button |
"name_txt" | Frame 55 | Symbol 214 EditableText |
"name_txt" | Frame 55 | Symbol 217 EditableText |
"name_txt" | Frame 55 | Symbol 218 EditableText |
"ok_btn" | Frame 55 | Symbol 225 Button |
"alien_mc" | Symbol 199 MovieClip Frame 1 | Symbol 11 MovieClip [alien3] |
"rank_txt" | Symbol 203 MovieClip Frame 1 | Symbol 200 EditableText |
"score_txt" | Symbol 203 MovieClip Frame 1 | Symbol 201 EditableText |
"name_txt" | Symbol 203 MovieClip Frame 1 | Symbol 202 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 116 MovieClip Frame 2 |
"hit" | Symbol 116 MovieClip Frame 4 |
Dynamic Text Variables
mc_load_info.estimatedTimeLeft | Symbol 31 EditableText | "0:00" |
label | Symbol 81 EditableText | "A" |
gameLevel | Symbol 131 EditableText | "0" |
score | Symbol 132 EditableText | "0" |
multiplier | Symbol 134 EditableText | "" |
multi100 | Symbol 135 EditableText | "" |
multi50 | Symbol 136 EditableText | "" |
multi25 | Symbol 137 EditableText | "" |
multiplier | Symbol 138 EditableText | "0" |
totalscore | Symbol 139 EditableText | "0" |
lives | Symbol 141 EditableText | "0" |
score | Symbol 143 EditableText | "0" |
totalscore | Symbol 157 EditableText | "0" |
lives | Symbol 159 EditableText | "0" |
gameLevel | Symbol 160 EditableText | "0" |
tempscore | Symbol 162 EditableText | "" |
totalscore | Symbol 164 EditableText | "0" |
multiplier | Symbol 166 EditableText | "0" |
score | Symbol 168 EditableText | "0" |
totalscore | Symbol 187 EditableText | "0" |
totalscore | Symbol 190 EditableText | "0" |
errorMsg | Symbol 198 EditableText | "" |
MailFrom | Symbol 214 EditableText | "" |
MailTo | Symbol 217 EditableText | "" |
Body | Symbol 218 EditableText | "" |
|