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

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

Sheepteroids.swf

This is the info page for
Flash #13807

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


Text
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 3
onClipEvent (load) { var myStartWidth = this._width; this._width = 0; } onClipEvent (enterFrame) { this._width = myStartWidth * _root.mc_load_info.fractionLoaded; }
Frame 15
stop(); totalscore = 0; livesclip.gotoAndStop(3);
Frame 17
stop();
Frame 18
stop(); gotoAndPlay (15);
Frame 27
stop(); gotoAndPlay (19);
Frame 28
function 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 28
onClipEvent (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 31
stop();
Frame 38
tempscore = score; score = score * multiplier; totalscore = totalscore + score; stop();
Frame 43
tempscore = 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 44
score = 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 55
stop(); 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 1
stop();
Symbol 11 MovieClip [alien3] Frame 3
gotoAndStop (1);
Symbol 21 MovieClip Frame 1
function 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 2
if (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 3
gotoAndPlay (2);
Symbol 43 Button
on (press) { gameLevel = 1; lives = 3; score = 0; gotoAndPlay (28); }
Symbol 51 Button
on (release) { gotoAndPlay (19); }
Symbol 57 Button
on (release) { gotoAndStop (17); }
Symbol 63 Button
on (release) { getURL ("http://www.kwikgames.com", _blank); }
Symbol 106 Button
on (release) { gotoAndPlay (15); }
Symbol 114 MovieClip Frame 1
stop();
Symbol 114 MovieClip Frame 3
gotoAndPlay (1);
Symbol 114 MovieClip Frame 4
_root.removeAll();
Symbol 114 MovieClip Frame 12
if (_root.lives < 2) { _root.gotoAndPlay("game over"); } else { _root.lives--; _root.gotoAndPlay("ship hit"); }
Symbol 118 Button
on (keyPress "<Space>") { shipFire(); } on (keyPress "<Up>") { shipThrust(); } on (keyPress "<Down>") { shipBreak(); }
Symbol 125 MovieClip Frame 1
stop();
Symbol 125 MovieClip Frame 2
stop();
Symbol 125 MovieClip Frame 3
stop();
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 1
stop();
Symbol 128 MovieClip Frame 2
stop();
Symbol 128 MovieClip Frame 3
stop();
Symbol 149 Button
on (press) { gotoAndPlay (28); }
Symbol 150 Button
on (keyPress "<Space>") { gotoAndPlay (28); }
Symbol 174 Button
on (press) { gotoAndPlay (28); }
Symbol 193 Button
on (press) { _root.gameLevel = 1; _root.score = 0; _root.lives = 3; gotoAndPlay (15); }
Symbol 199 Button
on (release) { gotoAndStop (55); }
Symbol 202 MovieClip Frame 1
stop(); 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 GraphicUsed by:4 5 6
Symbol 4 MovieClip [rock3]Uses:3
Symbol 5 MovieClip [rock2]Uses:3
Symbol 6 MovieClip [rock1]Uses:3
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClip [bullet]Uses:7
Symbol 9 GraphicUsed by:11
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClip [alien3]Uses:9 10Used by:202
Symbol 12 GraphicUsed by:Timeline
Symbol 13 GraphicUsed by:Timeline
Symbol 14 FontUsed 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 TextUses:14Used by:Timeline
Symbol 16 GraphicUsed by:Timeline
Symbol 17 GraphicUsed by:Timeline
Symbol 18 GraphicUsed by:21
Symbol 19 FontUsed by:20 28 29 58 103 104 216 217 218 219 220 221 222 224 225 229
Symbol 20 TextUses:19Used by:21
Symbol 21 MovieClipUses:18 20Used by:Timeline
Symbol 22 GraphicUsed by:Timeline
Symbol 23 GraphicUsed by:Timeline
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:24Used by:Timeline
Symbol 26 GraphicUsed by:Timeline
Symbol 27 TextUses:14Used by:Timeline
Symbol 28 EditableTextUses:19Used by:Timeline
Symbol 29 EditableTextUses:19Used by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 GraphicUsed by:34
Symbol 32 GraphicUsed by:34
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:31 32 33Used by:Timeline
Symbol 35 GraphicUsed by:Timeline
Symbol 36 GraphicUsed by:Timeline
Symbol 37 GraphicUsed by:43
Symbol 38 FontUsed 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 TextUses:38Used by:43
Symbol 40 GraphicUsed by:43
Symbol 41 TextUses:38Used by:43 57
Symbol 42 GraphicUsed by:43
Symbol 43 ButtonUses:37 39 40 41 42Used by:Timeline
Symbol 44 GraphicUsed by:Timeline
Symbol 45 TextUses:38Used by:Timeline
Symbol 46 GraphicUsed by:51
Symbol 47 TextUses:38Used by:51
Symbol 48 GraphicUsed by:51
Symbol 49 TextUses:38Used by:51
Symbol 50 GraphicUsed by:51
Symbol 51 ButtonUses:46 47 48 49 50Used by:Timeline
Symbol 52 GraphicUsed by:57
Symbol 53 TextUses:38Used by:57
Symbol 54 GraphicUsed by:57
Symbol 55 TextUses:38Used by:57
Symbol 56 GraphicUsed by:57
Symbol 57 ButtonUses:52 53 54 55 56 41Used by:Timeline
Symbol 58 TextUses:19Used by:Timeline
Symbol 59 GraphicUsed by:63
Symbol 60 FontUsed by:61
Symbol 61 TextUses:60Used by:63
Symbol 62 GraphicUsed by:63
Symbol 63 ButtonUses:59 61 62Used by:Timeline
Symbol 64 GraphicUsed by:Timeline
Symbol 65 GraphicUsed by:Timeline
Symbol 66 TextUses:14Used by:Timeline
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:Timeline
Symbol 69 TextUses:14Used by:Timeline
Symbol 70 TextUses:14Used by:Timeline
Symbol 71 TextUses:14Used by:Timeline
Symbol 72 TextUses:14Used by:Timeline
Symbol 73 GraphicUsed by:Timeline
Symbol 74 GraphicUsed by:Timeline
Symbol 75 GraphicUsed by:81
Symbol 76 GraphicUsed by:81
Symbol 77 TextUses:14Used by:81
Symbol 78 GraphicUsed by:81
Symbol 79 EditableTextUses:14Used by:81
Symbol 80 GraphicUsed by:81
Symbol 81 ButtonUses:75 76 77 78 79 80Used by:Timeline
Symbol 82 TextUses:14Used by:Timeline
Symbol 83 GraphicUsed by:86
Symbol 84 GraphicUsed by:86
Symbol 85 GraphicUsed by:86
Symbol 86 ButtonUses:83 84 85Used by:Timeline
Symbol 87 TextUses:14Used by:Timeline
Symbol 88 GraphicUsed by:91
Symbol 89 GraphicUsed by:91
Symbol 90 GraphicUsed by:91
Symbol 91 ButtonUses:88 89 90Used by:Timeline
Symbol 92 TextUses:14Used by:Timeline
Symbol 93 GraphicUsed by:96
Symbol 94 GraphicUsed by:96
Symbol 95 GraphicUsed by:96
Symbol 96 ButtonUses:93 94 95Used by:Timeline
Symbol 97 TextUses:14Used by:Timeline
Symbol 98 GraphicUsed by:101
Symbol 99 GraphicUsed by:101
Symbol 100 GraphicUsed by:101
Symbol 101 ButtonUses:98 99 100Used by:Timeline
Symbol 102 TextUses:14Used by:Timeline
Symbol 103 TextUses:19Used by:106
Symbol 104 TextUses:19Used by:106
Symbol 105 GraphicUsed by:106
Symbol 106 ButtonUses:103 104 105Used by:Timeline
Symbol 107 GraphicUsed by:114 128
Symbol 108 GraphicUsed by:114
Symbol 109 GraphicUsed by:114
Symbol 110 GraphicUsed by:114
Symbol 111 GraphicUsed by:114
Symbol 112 GraphicUsed by:114
Symbol 113 SoundUsed by:114
Symbol 114 MovieClipUses:107 108 109 110 111 112 113Used by:Timeline
Symbol 115 EditableTextUses:14Used by:116
Symbol 116 MovieClipUses:115Used by:Timeline
Symbol 117 EditableTextUses:14Used by:118 150
Symbol 118 ButtonUses:117Used by:Timeline
Symbol 119 GraphicUsed by:125
Symbol 120 GraphicUsed by:125
Symbol 121 GraphicUsed by:125
Symbol 122 GraphicUsed by:125
Symbol 123 GraphicUsed by:125
Symbol 124 SoundUsed by:125
Symbol 125 MovieClipUses:119 120 121 122 123 124Used by:Timeline
Symbol 126 GraphicUsed by:128
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:107 126 127Used by:Timeline
Symbol 129 EditableTextUses:14Used by:Timeline
Symbol 130 EditableTextUses:14Used by:Timeline
Symbol 131 TextUses:14Used by:Timeline
Symbol 132 EditableTextUses:14Used by:Timeline
Symbol 133 EditableTextUses:14Used by:Timeline
Symbol 134 EditableTextUses:14Used by:Timeline
Symbol 135 EditableTextUses:14Used by:Timeline
Symbol 136 EditableTextUses:14Used by:Timeline
Symbol 137 EditableTextUses:14Used by:Timeline
Symbol 138 FontUsed by:139 141 155 157 158 160 162 164 166 185 192 207 209 211 212
Symbol 139 EditableTextUses:138Used by:Timeline
Symbol 140 TextUses:38Used by:Timeline
Symbol 141 EditableTextUses:138Used by:Timeline
Symbol 142 TextUses:38Used by:Timeline
Symbol 143 TextUses:38Used by:Timeline
Symbol 144 GraphicUsed by:149 193
Symbol 145 TextUses:38Used by:149 193
Symbol 146 GraphicUsed by:149 193
Symbol 147 TextUses:38Used by:149 193
Symbol 148 GraphicUsed by:149 193
Symbol 149 ButtonUses:144 145 146 147 148Used by:Timeline
Symbol 150 ButtonUses:117Used by:Timeline
Symbol 151 GraphicUsed by:Timeline
Symbol 152 TextUses:38Used by:Timeline
Symbol 153 FontUsed by:154
Symbol 154 TextUses:153Used by:Timeline
Symbol 155 EditableTextUses:138Used by:Timeline
Symbol 156 TextUses:38Used by:Timeline
Symbol 157 EditableTextUses:138Used by:Timeline
Symbol 158 EditableTextUses:138Used by:Timeline
Symbol 159 TextUses:38Used by:Timeline
Symbol 160 EditableTextUses:138Used by:Timeline
Symbol 161 TextUses:38Used by:Timeline
Symbol 162 EditableTextUses:138Used by:Timeline
Symbol 163 TextUses:38Used by:Timeline
Symbol 164 EditableTextUses:138Used by:Timeline
Symbol 165 TextUses:38Used by:Timeline
Symbol 166 EditableTextUses:138Used by:Timeline
Symbol 167 TextUses:38Used by:Timeline
Symbol 168 GraphicUsed by:Timeline
Symbol 169 GraphicUsed by:174
Symbol 170 TextUses:38Used by:174
Symbol 171 GraphicUsed by:174
Symbol 172 TextUses:38Used by:174
Symbol 173 GraphicUsed by:174
Symbol 174 ButtonUses:169 170 171 172 173Used by:Timeline
Symbol 175 GraphicUsed by:Timeline
Symbol 176 TextUses:38Used by:Timeline
Symbol 177 TextUses:38Used by:Timeline
Symbol 178 TextUses:38Used by:Timeline
Symbol 179 TextUses:38Used by:Timeline
Symbol 180 TextUses:38Used by:Timeline
Symbol 181 TextUses:38Used by:Timeline
Symbol 182 TextUses:38Used by:Timeline
Symbol 183 TextUses:38Used by:Timeline
Symbol 184 GraphicUsed by:Timeline
Symbol 185 EditableTextUses:138Used by:Timeline
Symbol 186 TextUses:38Used by:Timeline
Symbol 187 EditableTextUses:14Used by:Timeline
Symbol 188 EditableTextUses:14Used by:190
Symbol 189 GraphicUsed by:190 208 210
Symbol 190 ButtonUses:188 189Used by:Timeline
Symbol 191 EditableTextUses:14Used by:Timeline
Symbol 192 EditableTextUses:138Used by:Timeline
Symbol 193 ButtonUses:144 145 146 147 148Used by:Timeline
Symbol 194 GraphicUsed by:199
Symbol 195 TextUses:38Used by:199
Symbol 196 GraphicUsed by:199
Symbol 197 TextUses:38Used by:199
Symbol 198 GraphicUsed by:199
Symbol 199 ButtonUses:194 195 196 197 198Used by:Timeline
Symbol 200 EditableTextUses:14Used by:202
Symbol 201 EditableTextUses:14Used by:202
Symbol 202 MovieClipUses:11 200 201Used by:Timeline
Symbol 203 EditableTextUses:14Used by:206
Symbol 204 EditableTextUses:14Used by:206
Symbol 205 EditableTextUses:14Used by:206
Symbol 206 MovieClipUses:203 204 205Used by:Timeline
Symbol 207 TextUses:138Used by:208
Symbol 208 ButtonUses:207 189Used by:Timeline
Symbol 209 TextUses:138Used by:210
Symbol 210 ButtonUses:209 189Used by:Timeline
Symbol 211 TextUses:138Used by:Timeline
Symbol 212 TextUses:138Used by:Timeline
Symbol 213 GraphicUsed by:Timeline
Symbol 214 GraphicUsed by:Timeline
Symbol 215 GraphicUsed by:Timeline
Symbol 216 EditableTextUses:19Used by:Timeline
Symbol 217 TextUses:19Used by:Timeline
Symbol 218 TextUses:19Used by:Timeline
Symbol 219 EditableTextUses:19Used by:Timeline
Symbol 220 EditableTextUses:19Used by:Timeline
Symbol 221 TextUses:19Used by:Timeline
Symbol 222 TextUses:19Used by:Timeline
Symbol 223 GraphicUsed by:Timeline
Symbol 224 TextUses:19Used by:227
Symbol 225 TextUses:19Used by:227
Symbol 226 GraphicUsed by:227
Symbol 227 ButtonUses:224 225 226Used by:Timeline
Symbol 228 GraphicUsed by:Timeline
Symbol 229 TextUses:19Used by:Timeline
Symbol 230 GraphicUsed by:Timeline

Instance Names

"mc_load_info"Frame 3Symbol 21 MovieClip
"ship"Frame 28Symbol 114 MovieClip
"multilights"Frame 28Symbol 125 MovieClip
"livesclip"Frame 28Symbol 128 MovieClip
"ok_btn"Frame 43Symbol 190 Button
"name_txt"Frame 43Symbol 191 EditableText
"loading_mc"Frame 44Symbol 202 MovieClip
"line1_mc"Frame 44Symbol 206 MovieClip
"line2_mc"Frame 44Symbol 206 MovieClip
"line3_mc"Frame 44Symbol 206 MovieClip
"line4_mc"Frame 44Symbol 206 MovieClip
"line5_mc"Frame 44Symbol 206 MovieClip
"line6_mc"Frame 44Symbol 206 MovieClip
"line7_mc"Frame 44Symbol 206 MovieClip
"line8_mc"Frame 44Symbol 206 MovieClip
"line9_mc"Frame 44Symbol 206 MovieClip
"line10_mc"Frame 44Symbol 206 MovieClip
"last_btn"Frame 44Symbol 208 Button
"next_btn"Frame 44Symbol 210 Button
"name_txt"Frame 55Symbol 216 EditableText
"name_txt"Frame 55Symbol 219 EditableText
"name_txt"Frame 55Symbol 220 EditableText
"ok_btn"Frame 55Symbol 227 Button
"alien_mc"Symbol 202 MovieClip Frame 1Symbol 11 MovieClip [alien3]
"rank_txt"Symbol 206 MovieClip Frame 1Symbol 203 EditableText
"score_txt"Symbol 206 MovieClip Frame 1Symbol 204 EditableText
"name_txt"Symbol 206 MovieClip Frame 1Symbol 205 EditableText

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "bleat"
ExportAssets (56)Timeline Frame 1Symbol 2 as "bleat2"
ExportAssets (56)Timeline Frame 1Symbol 4 as "rock3"
ExportAssets (56)Timeline Frame 1Symbol 5 as "rock2"
ExportAssets (56)Timeline Frame 1Symbol 6 as "rock1"
ExportAssets (56)Timeline Frame 1Symbol 8 as "bullet"
ExportAssets (56)Timeline Frame 1Symbol 11 as "alien3"
ExportAssets (56)Timeline Frame 28Symbol 2 as "bleat2"
ExportAssets (56)Timeline Frame 44Symbol 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.estimatedTimeLeftSymbol 29 EditableText"0:00"
labelSymbol 79 EditableText"A"
gameLevelSymbol 129 EditableText"0"
scoreSymbol 130 EditableText"0"
multiplierSymbol 132 EditableText""
multi100Symbol 133 EditableText""
multi50Symbol 134 EditableText""
multi25Symbol 135 EditableText""
multiplierSymbol 136 EditableText"0"
totalscoreSymbol 137 EditableText"0"
livesSymbol 139 EditableText"0"
scoreSymbol 141 EditableText"0"
totalscoreSymbol 155 EditableText"0"
livesSymbol 157 EditableText"0"
gameLevelSymbol 158 EditableText"0"
tempscoreSymbol 160 EditableText""
totalscoreSymbol 162 EditableText"0"
multiplierSymbol 164 EditableText"0"
scoreSymbol 166 EditableText"0"
totalscoreSymbol 185 EditableText"0"
playerNameSymbol 191 EditableText""
totalscoreSymbol 192 EditableText"0"
errorMsgSymbol 201 EditableText""
MailFromSymbol 216 EditableText""
MailToSymbol 219 EditableText""
BodySymbol 220 EditableText""




http://swfchan.com/3/13807/info.shtml
Created: 4/6 -2019 07:42:16 Last modified: 4/6 -2019 07:42:16 Server time: 12/05 -2024 16:52:10