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

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

Switch It.swf

This is the info page for
Flash #27298

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


Text
Presents...

Play

Play

Instructions

Instructions

Tell a friend

Tell a friend

Competition

Competition

Use the mouse to switch off all the lights.
Clicking a switch will toggle not only the switch
you click but also the ones next to it!  The levels
get tougher as you progress.  Switch more than
100 times on a level, or take over 5 minutes and
it's game over - will you be able to conquer all
30 levels and make it to the hi-score board?

Back

Back

Your Email :

Friend's Email :

Send

Send

Send

Your message :

Email this game to your friend with your own message:

Thanks...
Your friend has been emailed!

Thanks...
Your friend has been emailed!

1

Reset

Reset

Moves

Timer

Score

00:00

24700

12

Quit

Quit

00

00

Click for next level

Level Score:
Time Bonus:
Move Bonus:

Well done!

You managed to finish
every level... give yourself
a pat on the back!
Check out the other games
on www.kwikgames.com

00

00

00

00

ENTER YOUR NAME:

OK

NAME

SCORE

LOADING...

ActionScript [AS1/AS2]

Frame 95
stop();
Frame 100
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 Switchit - at www.kwikgames.com/switchit.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);
Frame 101
stop();
Frame 102
loadMovie ("http://www.kwikgames.com/adverts/switchit_ad.swf", _root.comp);
Frame 115
stop();
Frame 116
function initialise() { grid = new Array(25); i = 0; while (i < 25) { grid[i + 1] = false; i++; } switches = 0; level = 1; score = 0; completeLevel = new Sound(); completeLevel.attachSound("completeLevel"); droop = new Sound(); droop.attachSound("droop"); droop.setVolume(50); completeLevel.setVolume(35); } function setLights() { i = 0; while (i < 25) { light = "tile" + (i + 1); if (grid[i + 1] == false) { _root[light].gotoAndStop(1); } else { _root[light].gotoAndStop(2); } i++; } } function swap(which) { if (grid[which] == true) { grid[which] = false; } else { grid[which] = true; } } function switched(which) { switches++; droop.start(); doSwaps(which); } function doSwaps(which) { swap(which); if (which == 1) { swap(which + 1); swap(which + 5); } else if (which == 5) { swap(which - 1); swap(which + 5); } else if (which == 21) { swap(which + 1); swap(which - 5); } else if (which == 25) { swap(which - 1); swap(which - 5); } else if (((which == 2) || (which == 3)) || (which == 4)) { swap(which - 1); swap(which + 1); swap(which + 5); } else if (((which == 22) || (which == 23)) || (which == 24)) { swap(which - 1); swap(which + 1); swap(which - 5); } else if (((which == 6) || (which == 11)) || (which == 16)) { swap(which - 5); swap(which + 1); swap(which + 5); } else if (((which == 10) || (which == 15)) || (which == 20)) { swap(which - 1); swap(which - 5); swap(which + 5); } else { swap(which - 1); swap(which + 1); swap(which - 5); swap(which + 5); } setLights(); allout = true; i = 1; while (i < 26) { if (grid[i]) { allout = false; } i++; } if (allout) { completeLevel.start(); pause(); nextFrame(); } } function solve() { i = 0; while (i++) { if (grid[i + 1]) { swap(i + 6); } i < 25; } } function restartTimer() { hours = "00"; minutes = "00"; seconds = "00"; milli = "00"; buttonPressTime = (getTimer() / 1000) - pauseLength; pause(); } function pause() { pauseTime = getTimer() / 1000; timing = false; } function unpause() { unpauseTime = getTimer() / 1000; pauseLength = (unpauseTime - pauseTime) + pauseLength; timing = true; } _root.onEnterFrame = function () { totalTime = (getTimer() / 1000) - pauseLength; goTime = totalTime - buttonPressTime; if (timing) { hours = Math.floor(goTime / 3600); minutes = Math.floor(((goTime / 3600) - hours) * 60); seconds = Math.floor(((((goTime / 3600) - hours) * 60) - minutes) * 60); milli = Math.floor((gotime - ((seconds + (minutes * 60)) + (hours * 3600))) * 100); if (seconds < 10) { seconds = "0" + seconds; } if (minutes < 10) { minutes = "0" + minutes; } if (hours < 10) { hours = "0" + hours; } if (milli < 10) { milli = "0" + milli; } scores = score; if (score < 100000) { scores = "0" + scores; } if (score < 10000) { scores = "0" + scores; } if (score < 1000) { scores = "0" + scores; } if (score < 100) { scores = "0" + scores; } if (score < 10) { scores = "0" + scores; } } }; pausebutton.onRelease = function () { pause(); unpausebutton._visible = 1; pausebutton._visible = 0; }; reset.onRelease = function () { restartTimer(); pausebutton._visible = 0; unpausebutton._visible = 1; }; initialise();
Frame 117
gotoAndStop (145); stop();
Frame 125
madeChange = false; while (!madeChange) { if (grid[startSolve]) { doSwaps(StartSolve + 5); madeChange = true; } startSolve++; if (startSolve == 20) { madeChange = true; } }
Frame 130
function checkSolved() { allOut = true; i = 1; while (i < 26) { if (grid[i]) { allOut = false; } i++; } if (allOut) { trace("allout"); gotoAndStop (117); } else { if ((((grid[21] && (grid[22])) && (!grid[23])) && (grid[24])) && (grid[25])) { doSwaps(3); } else if (((((!grid[21]) && (grid[22])) && (grid[23])) && (!grid[24])) && (grid[25])) { doSwaps(1); } else if ((((grid[21] && (!grid[22])) && (grid[23])) && (grid[24])) && (!grid[25])) { doSwaps(5); } else if (((((!grid[21]) && (!grid[22])) && (grid[23])) && (grid[24])) && (grid[25])) { doSwaps(4); } else if ((((grid[21] && (grid[22])) && (grid[23])) && (!grid[24])) && (!grid[25])) { doSwaps(2); } else if (((((!grid[21]) && (grid[22])) && (!grid[23])) && (grid[24])) && (!grid[25])) { doSwaps(1); doSwaps(4); } else if ((((grid[21] && (!grid[22])) && (!grid[23])) && (!grid[24])) && (grid[25])) { doSwaps(1); doSwaps(2); } startSolve = 1; solveThrough = true; gotoAndPlay (135); } } if (startSolve < 20) { gotoAndPlay (125); } else if (solveThrough == false) { checkSolved(); } else { trace(solveThrough); gotoAndStop (117); }
Frame 140
gotoAndPlay (125);
Frame 145
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } doSwaps(1); doSwaps(5); doSwaps(21); doSwaps(25); } restart(); restartTimer(); unpause();
Frame 147
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } doSwaps(17); doSwaps(9); doSwaps(5); doSwaps(21); doSwaps(13); } restart();
Frame 149
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } doSwaps(21); doSwaps(5); doSwaps(21); doSwaps(13); doSwaps(7); doSwaps(13); doSwaps(12); } doSwaps(15); restart();
Frame 151
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } doSwaps(19); doSwaps(7); doSwaps(5); doSwaps(21); doSwaps(13); doSwaps(11); doSwaps(15); } restart();
Frame 153
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } doSwaps(7); doSwaps(8); doSwaps(9); doSwaps(12); doSwaps(13); doSwaps(14); doSwaps(17); doSwaps(18); doSwaps(19); } restart();
Frame 155
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[1] = true; grid[5] = true; grid[6] = true; grid[7] = true; grid[9] = true; grid[10] = true; grid[13] = true; grid[18] = true; grid[16] = true; grid[21] = true; grid[23] = true; grid[24] = true; setLights(); } restart();
Frame 157
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 26) { grid[i] = true; i++; } setLights(); } restart();
Frame 159
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 14) { grid[i] = true; i++; } setLights(); } restart();
Frame 161
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 11) { grid[i] = true; i++; } i = 16; while (i < 26) { grid[i] = true; i++; } setLights(); } restart();
Frame 163
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[1] = true; grid[5] = true; grid[7] = true; grid[9] = true; grid[13] = true; grid[17] = true; grid[19] = true; grid[21] = true; grid[25] = true; setLights(); } restart();
Frame 165
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[13] = true; setLights(); } restart();
Frame 167
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 26) { grid[i] = true; i = i + 2; } setLights(); } restart();
Frame 169
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 6) { grid[i] = true; i++; } grid[23] = true; setLights(); } restart();
Frame 171
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[12] = true; grid[13] = true; grid[14] = true; setLights(); } restart();
Frame 173
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[1] = true; grid[2] = true; grid[3] = true; grid[4] = true; grid[5] = true; grid[6] = true; grid[10] = true; grid[11] = true; grid[15] = true; grid[16] = true; grid[20] = true; grid[21] = true; grid[22] = true; grid[23] = true; grid[24] = true; grid[25] = true; setLights(); } restart();
Frame 175
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[1] = true; grid[5] = true; grid[6] = true; grid[10] = true; grid[11] = true; grid[15] = true; grid[16] = true; grid[20] = true; grid[21] = true; grid[25] = true; setLights(); } restart();
Frame 177
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[2] = true; grid[3] = true; grid[4] = true; grid[12] = true; grid[13] = true; grid[14] = true; grid[22] = true; grid[23] = true; grid[24] = true; setLights(); } restart();
Frame 179
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[1] = true; grid[13] = true; grid[25] = true; setLights(); } restart();
Frame 181
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 6; while (i < 11) { grid[i] = true; i++; } grid[13] = true; grid[21] = true; grid[22] = true; grid[23] = true; grid[24] = true; grid[25] = true; setLights(); } restart();
Frame 183
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[2] = true; grid[3] = true; grid[7] = true; grid[9] = true; grid[11] = true; grid[17] = true; grid[18] = true; grid[21] = true; grid[25] = true; setLights(); } restart();
Frame 185
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[6] = true; grid[7] = true; grid[8] = true; grid[9] = true; grid[11] = true; grid[22] = true; grid[18] = true; grid[21] = true; grid[23] = true; grid[25] = true; setLights(); } restart();
Frame 187
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 14) { grid[i] = true; i++; } grid[1] = false; grid[5] = false; setLights(); } restart();
Frame 189
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[7] = true; grid[8] = true; grid[9] = true; grid[12] = true; grid[14] = true; grid[17] = true; grid[18] = true; grid[19] = true; setLights(); } restart();
Frame 191
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 11) { grid[i] = true; i++; } i = 16; while (i < 26) { grid[i] = true; i++; } grid[1] = false; grid[5] = false; grid[21] = false; grid[25] = false; setLights(); } restart();
Frame 193
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[1] = true; grid[2] = true; grid[6] = true; grid[7] = true; grid[13] = true; grid[17] = true; grid[19] = true; grid[21] = true; grid[25] = true; setLights(); } restart();
Frame 195
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[6] = true; grid[7] = true; grid[8] = true; grid[10] = true; grid[13] = true; grid[14] = true; grid[16] = true; grid[21] = true; grid[25] = true; grid[24] = true; setLights(); } restart();
Frame 197
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 26) { grid[i] = true; i++; } grid[20] = false; grid[12] = false; grid[25] = false; setLights(); } restart();
Frame 199
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[6] = true; grid[17] = true; grid[24] = true; grid[25] = true; setLights(); } restart();
Frame 201
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } i = 1; while (i < 6) { grid[i] = true; i++; } grid[21] = true; grid[24] = true; setLights(); } restart();
Frame 203
function restart() { i = 1; while (i < 26) { grid[i] = false; i++; } grid[4] = true; grid[5] = true; grid[7] = true; grid[9] = true; grid[11] = true; grid[12] = true; grid[16] = true; grid[21] = true; grid[25] = true; setLights(); } restart();
Frame 204
pause(); stop();
Frame 205
stop(); name_txt.restrict = "A-Z 0-9.:\\-"; name_txt.text = _root.game_so.data.playerName; 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; } _root.nextFrame(); }; ok_btn.onKeyDown = function () { if (Key.getCode() == 13) { Key.removeListener(ok_btn); this.onRelease(); } }; Key.addListener(ok_btn);
Frame 206
scores = 500; 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.length ? (s.addCommas()) : "-"); l_mc.rank_txt.textColor = (l_mc.name_txt.textColor = (l_mc.score_txt.textColor = ((game_so.data.playerName.length && (n.toUpperCase() == game_so.data.playerName.toUpperCase())) ? 3407616 : 16777215))); l_mc._visible = true; loading_mc._visible = false; i--; } }; page = 0; maxScore = 100; scoreboard_lv = new LoadVars(); score = score; if ((finalscore > 0) && (game_so.data.playerName.length > 0)) { scoreboard_lv.score = score; scoreboard_lv.name = game_so.data.playerName.toLowerCase(); } scoreboard_lv.game = "switchit"; scoreboard_lv.sendAndLoad("http://www.kwikgames.com/cgi/games_score_text.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); } }; 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(); }; newGame_btn.onRelease = function () { gotoAndStop (117); }; ufo_mc.dir = 1; ufo_mc.onEnterFrame = function () { if (!this._visible) { this.dir = (int(rnd() * 2) * 2) - 1; this._x = 250 - (this.dir * 300); this._visible = true; } this._x = this._x + (this.dir * 3); if ((this._x > 550) || (this._x < -50)) { this._visible = false; } };
Frame 207
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.length ? (s.addCommas()) : "-"); l_mc.rank_txt.textColor = (l_mc.name_txt.textColor = (l_mc.score_txt.textColor = ((game_so.data.playerName.length && (n.toUpperCase() == game_so.data.playerName.toUpperCase())) ? 3407616 : 16777215))); l_mc._visible = true; loading_mc._visible = false; i--; } }; page = 0; maxScore = 100; scoreboard_lv = new LoadVars(); if ((score > 0) && (game_so.data.playerName.length > 0)) { scoreboard_lv.score = score; scoreboard_lv.name = game_so.data.playerName.toLowerCase(); } scoreboard_lv.game = "switchit"; scoreboard_lv.sendAndLoad("http://www.kwikgames.com/cgi/games_score_text.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(); }; newGame_btn.onRelease = function () { gotoAndStop (208); }; ufo_mc.dir = 1; ufo_mc.onEnterFrame = function () { if (!this._visible) { this.dir = (int(rnd() * 2) * 2) - 1; this._x = 250 - (this.dir * 300); this._visible = true; } this._x = this._x + (this.dir * 3); if ((this._x > 550) || (this._x < -50)) { this._visible = false; } };
Symbol 5 MovieClip [alien3] Frame 1
stop();
Symbol 5 MovieClip [alien3] Frame 3
gotoAndStop (1);
Symbol 37 Button
on (release) { gotoAndPlay (116); }
Symbol 43 Button
on (release) { gotoAndStop (97); }
Symbol 49 Button
on (release) { gotoAndStop (100); }
Symbol 51 Button
on (release) { getURL ("http://www.kwikgames.com", _blank); }
Symbol 57 Button
on (release) { gotoAndPlay (102); }
Symbol 64 Button
on (release) { gotoAndStop (95); }
Symbol 75 Button
on (release) { loadVariablesNum ("http://www.kwikgames.com/cgi/flashemail.php", 0, "POST"); }
Symbol 85 Button
on (release) { _root.switched(1); }
Symbol 86 Button
on (release) { _root.switched(1); }
Symbol 88 Button
on (release) { _root.switched(1); }
Symbol 89 MovieClip Frame 1
stop();
Symbol 89 MovieClip Frame 2
stop();
Symbol 89 MovieClip Frame 3
stop();
Symbol 90 Button
on (release) { _root.switched(2); }
Symbol 91 Button
on (release) { _root.switched(2); }
Symbol 92 MovieClip Frame 1
stop();
Symbol 92 MovieClip Frame 2
stop();
Symbol 92 MovieClip Frame 3
gotoAndStop (1);
Symbol 93 Button
on (release) { _root.switched(3); }
Symbol 94 Button
on (release) { _root.switched(3); }
Symbol 95 MovieClip Frame 1
stop();
Symbol 95 MovieClip Frame 2
stop();
Symbol 95 MovieClip Frame 3
gotoAndStop (1);
Symbol 96 Button
on (release) { _root.switched(4); }
Symbol 97 Button
on (release) { _root.switched(4); }
Symbol 98 MovieClip Frame 1
stop();
Symbol 98 MovieClip Frame 2
stop();
Symbol 98 MovieClip Frame 3
gotoAndStop (1);
Symbol 99 Button
on (release) { _root.switched(5); }
Symbol 100 Button
on (release) { _root.switched(5); }
Symbol 101 MovieClip Frame 1
stop();
Symbol 101 MovieClip Frame 2
stop();
Symbol 101 MovieClip Frame 3
gotoAndStop (1);
Symbol 102 Button
on (release) { _root.switched(6); }
Symbol 103 Button
on (release) { _root.switched(6); }
Symbol 104 MovieClip Frame 1
stop();
Symbol 104 MovieClip Frame 2
stop();
Symbol 104 MovieClip Frame 3
gotoAndStop (1);
Symbol 105 Button
on (release) { _root.switched(7); }
Symbol 106 Button
on (release) { _root.switched(7); }
Symbol 107 MovieClip Frame 1
stop();
Symbol 107 MovieClip Frame 2
stop();
Symbol 107 MovieClip Frame 3
gotoAndStop (1);
Symbol 108 Button
on (release) { _root.switched(8); }
Symbol 109 Button
on (release) { _root.switched(8); }
Symbol 110 MovieClip Frame 1
stop();
Symbol 110 MovieClip Frame 2
stop();
Symbol 110 MovieClip Frame 3
gotoAndStop (1);
Symbol 111 Button
on (release) { _root.switched(9); }
Symbol 112 Button
on (release) { _root.switched(9); }
Symbol 113 MovieClip Frame 1
stop();
Symbol 113 MovieClip Frame 2
stop();
Symbol 113 MovieClip Frame 3
gotoAndStop (1);
Symbol 114 Button
on (release) { _root.switched(10); }
Symbol 115 Button
on (release) { _root.switched(10); }
Symbol 116 MovieClip Frame 1
stop();
Symbol 116 MovieClip Frame 2
stop();
Symbol 116 MovieClip Frame 3
gotoAndStop (1);
Symbol 117 Button
on (release) { _root.switched(11); }
Symbol 118 Button
on (release) { _root.switched(11); }
Symbol 119 MovieClip Frame 1
stop();
Symbol 119 MovieClip Frame 2
stop();
Symbol 119 MovieClip Frame 3
gotoAndStop (1);
Symbol 120 Button
on (release) { _root.switched(12); }
Symbol 121 Button
on (release) { _root.switched(12); }
Symbol 122 MovieClip Frame 1
stop();
Symbol 122 MovieClip Frame 2
stop();
Symbol 122 MovieClip Frame 3
gotoAndStop (1);
Symbol 123 Button
on (release) { _root.switched(13); }
Symbol 124 Button
on (release) { _root.switched(13); }
Symbol 125 MovieClip Frame 1
stop();
Symbol 125 MovieClip Frame 2
stop();
Symbol 125 MovieClip Frame 3
gotoAndStop (1);
Symbol 126 Button
on (release) { _root.switched(14); }
Symbol 127 Button
on (release) { _root.switched(14); }
Symbol 128 MovieClip Frame 1
stop();
Symbol 128 MovieClip Frame 2
stop();
Symbol 128 MovieClip Frame 3
gotoAndStop (1);
Symbol 129 Button
on (release) { _root.switched(15); }
Symbol 130 Button
on (release) { _root.switched(15); }
Symbol 131 MovieClip Frame 1
stop();
Symbol 131 MovieClip Frame 2
stop();
Symbol 131 MovieClip Frame 3
gotoAndStop (1);
Symbol 132 Button
on (release) { _root.switched(16); }
Symbol 133 Button
on (release) { _root.switched(16); }
Symbol 134 MovieClip Frame 1
stop();
Symbol 134 MovieClip Frame 2
stop();
Symbol 134 MovieClip Frame 3
gotoAndStop (1);
Symbol 135 Button
on (release) { _root.switched(21); }
Symbol 136 Button
on (release) { _root.switched(21); }
Symbol 137 MovieClip Frame 1
stop();
Symbol 137 MovieClip Frame 2
stop();
Symbol 137 MovieClip Frame 3
gotoAndStop (1);
Symbol 138 Button
on (release) { _root.switched(17); }
Symbol 139 Button
on (release) { _root.switched(17); }
Symbol 140 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 2
stop();
Symbol 140 MovieClip Frame 3
gotoAndStop (1);
Symbol 141 Button
on (release) { _root.switched(22); }
Symbol 142 Button
on (release) { _root.switched(22); }
Symbol 143 MovieClip Frame 1
stop();
Symbol 143 MovieClip Frame 2
stop();
Symbol 143 MovieClip Frame 3
gotoAndStop (1);
Symbol 144 Button
on (release) { _root.switched(18); }
Symbol 145 Button
on (release) { _root.switched(18); }
Symbol 146 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 2
stop();
Symbol 146 MovieClip Frame 3
gotoAndStop (1);
Symbol 147 Button
on (release) { _root.switched(23); }
Symbol 148 Button
on (release) { _root.switched(23); }
Symbol 149 MovieClip Frame 1
stop();
Symbol 149 MovieClip Frame 2
stop();
Symbol 149 MovieClip Frame 3
gotoAndStop (1);
Symbol 150 Button
on (release) { _root.switched(19); }
Symbol 151 Button
on (release) { _root.switched(19); }
Symbol 152 MovieClip Frame 1
stop();
Symbol 152 MovieClip Frame 2
stop();
Symbol 152 MovieClip Frame 3
gotoAndStop (1);
Symbol 153 Button
on (release) { _root.switched(20); }
Symbol 154 Button
on (release) { _root.switched(20); }
Symbol 155 MovieClip Frame 1
stop();
Symbol 155 MovieClip Frame 2
stop();
Symbol 155 MovieClip Frame 3
gotoAndStop (1);
Symbol 156 Button
on (release) { _root.switched(24); }
Symbol 157 Button
on (release) { _root.switched(24); }
Symbol 158 MovieClip Frame 1
stop();
Symbol 158 MovieClip Frame 2
stop();
Symbol 158 MovieClip Frame 3
gotoAndStop (1);
Symbol 159 Button
on (release) { _root.switched(25); }
Symbol 160 Button
on (release) { _root.switched(25); }
Symbol 161 MovieClip Frame 1
stop();
Symbol 161 MovieClip Frame 2
stop();
Symbol 161 MovieClip Frame 3
gotoAndStop (1);
Symbol 184 Button
on (release) { trace("test"); }
Symbol 185 Button
on (release) { trace("test"); }
Symbol 190 Button
on (release) { restart(); }
Symbol 191 Button
on (release) { gotoAndStop (95); }
Symbol 201 Button
on (release) { _root.level++; _root.switches = 0; _root.restartTimer(); _root.unpause(); _root.nextFrame(); _root.nextFrame(); }
Symbol 202 Button
on (release) { _root.level--; _root.switches = 0; _root.restartTimer(); _root.unpause(); _root.prevFrame(); _root.prevFrame(); }
Symbol 212 Button
on (release) { _root.level++; _root.switches = 0; _root.restartTimer(); _root.unpause(); _root.nextFrame(); }
Symbol 225 MovieClip Frame 1
levelscore = _root.level * 50; _root.score = _root.score + levelscore; if (_root.minutes < 1) { timebonus = (60 - _root.seconds) * 10; _root.score = _root.score + timebonus; } if (_root.switches < 25) { movebonus = (60 - _root.switches) * 5; _root.score = _root.score + movebonus; }
Symbol 225 MovieClip Frame 21
stop();
Symbol 238 Button
on (release) { finalscore = scores; gotoAndStop (205); }
Symbol 261 MovieClip Frame 1
stop(); errorMsg = ""; i = 0; alien_mc.onEnterFrame = function () { i = i + 0.25; i = i % 2; this.gotoAndStop(i + 1); };
Symbol 262 Button
on (release) { gotoAndStop (95); }

Library Items

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

Instance Names

"tile3"Frame 50Symbol 30 Button
"tile4"Frame 50Symbol 25 Button
"tile5"Frame 50Symbol 25 Button
"tile4"Frame 61Symbol 30 Button
"tile5"Frame 71Symbol 30 Button
"name_txt"Frame 100Symbol 66 EditableText
"ok_btn"Frame 100Symbol 75 Button
"name_txt"Frame 100Symbol 76 EditableText
"name_txt"Frame 100Symbol 77 EditableText
"comp"Frame 102Symbol 83 MovieClip
"tile1"Frame 116Symbol 89 MovieClip
"tile2"Frame 116Symbol 92 MovieClip
"tile3"Frame 116Symbol 95 MovieClip
"tile4"Frame 116Symbol 98 MovieClip
"tile5"Frame 116Symbol 101 MovieClip
"tile6"Frame 116Symbol 104 MovieClip
"tile7"Frame 116Symbol 107 MovieClip
"tile8"Frame 116Symbol 110 MovieClip
"tile9"Frame 116Symbol 113 MovieClip
"tile10"Frame 116Symbol 116 MovieClip
"tile11"Frame 116Symbol 119 MovieClip
"tile12"Frame 116Symbol 122 MovieClip
"tile13"Frame 116Symbol 125 MovieClip
"tile14"Frame 116Symbol 128 MovieClip
"tile15"Frame 116Symbol 131 MovieClip
"tile16"Frame 116Symbol 134 MovieClip
"tile21"Frame 116Symbol 137 MovieClip
"tile17"Frame 116Symbol 140 MovieClip
"tile22"Frame 116Symbol 143 MovieClip
"tile18"Frame 116Symbol 146 MovieClip
"tile23"Frame 116Symbol 149 MovieClip
"tile19"Frame 116Symbol 152 MovieClip
"tile20"Frame 116Symbol 155 MovieClip
"tile24"Frame 116Symbol 158 MovieClip
"tile25"Frame 116Symbol 161 MovieClip
"ok_btn"Frame 205Symbol 250 Button
"name_txt"Frame 205Symbol 251 EditableText
"line1_mc"Frame 206Symbol 255 MovieClip
"line2_mc"Frame 206Symbol 255 MovieClip
"line3_mc"Frame 206Symbol 255 MovieClip
"line4_mc"Frame 206Symbol 255 MovieClip
"line5_mc"Frame 206Symbol 255 MovieClip
"line6_mc"Frame 206Symbol 255 MovieClip
"line7_mc"Frame 206Symbol 255 MovieClip
"line8_mc"Frame 206Symbol 255 MovieClip
"line9_mc"Frame 206Symbol 255 MovieClip
"line10_mc"Frame 206Symbol 255 MovieClip
"loading_mc"Frame 206Symbol 261 MovieClip
"line1_mc"Frame 207Symbol 255 MovieClip
"line2_mc"Frame 207Symbol 255 MovieClip
"line3_mc"Frame 207Symbol 255 MovieClip
"line4_mc"Frame 207Symbol 255 MovieClip
"line5_mc"Frame 207Symbol 255 MovieClip
"line6_mc"Frame 207Symbol 255 MovieClip
"line7_mc"Frame 207Symbol 255 MovieClip
"line8_mc"Frame 207Symbol 255 MovieClip
"line9_mc"Frame 207Symbol 255 MovieClip
"line10_mc"Frame 207Symbol 255 MovieClip
"loading_mc"Frame 207Symbol 261 MovieClip
"tile3"Symbol 26 MovieClip Frame 1Symbol 25 Button
"tile4"Symbol 26 MovieClip Frame 1Symbol 25 Button
"tile5"Symbol 26 MovieClip Frame 1Symbol 25 Button
"rank_txt"Symbol 255 MovieClip Frame 1Symbol 252 EditableText
"score_txt"Symbol 255 MovieClip Frame 1Symbol 253 EditableText
"name_txt"Symbol 255 MovieClip Frame 1Symbol 254 EditableText

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "completeLevel"
ExportAssets (56)Timeline Frame 1Symbol 2 as "droop"
ExportAssets (56)Timeline Frame 1Symbol 5 as "alien3"
ExportAssets (56)Timeline Frame 50Symbol 2 as "droop"
ExportAssets (56)Timeline Frame 61Symbol 2 as "droop"
ExportAssets (56)Timeline Frame 71Symbol 2 as "droop"

Labels

"splash"Frame 95
"instructions"Frame 97
"tell"Frame 100
"compo"Frame 102
"play"Frame 117
"solve"Frame 125
"wait"Frame 135
"level1"Frame 145
"level2"Frame 147
"level3"Frame 149
"level4"Frame 151
"level5"Frame 153
"level6"Frame 155
"level7"Frame 157
"level8"Frame 159
"level9"Frame 161
"level10"Frame 163
"level11"Frame 165
"level12"Frame 167
"level13"Frame 169
"level14"Frame 171
"level15"Frame 173
"level16"Frame 175
"level17"Frame 177
"level18"Frame 179
"level19"Frame 181
"level20"Frame 183
"level21"Frame 185
"level22"Frame 187
"level23"Frame 189
"level24"Frame 191
"level25"Frame 193
"level26"Frame 195
"level27"Frame 197
"level28"Frame 199
"level29"Frame 201
"level30"Frame 203
"level31"Frame 204
"gameover"Frame 205
"black"Symbol 89 MovieClip Frame 1
"white"Symbol 89 MovieClip Frame 2
"black"Symbol 92 MovieClip Frame 1
"white"Symbol 92 MovieClip Frame 2
"black"Symbol 95 MovieClip Frame 1
"white"Symbol 95 MovieClip Frame 2
"black"Symbol 98 MovieClip Frame 1
"white"Symbol 98 MovieClip Frame 2
"black"Symbol 101 MovieClip Frame 1
"white"Symbol 101 MovieClip Frame 2
"black"Symbol 104 MovieClip Frame 1
"white"Symbol 104 MovieClip Frame 2
"black"Symbol 107 MovieClip Frame 1
"white"Symbol 107 MovieClip Frame 2
"black"Symbol 110 MovieClip Frame 1
"white"Symbol 110 MovieClip Frame 2
"black"Symbol 113 MovieClip Frame 1
"white"Symbol 113 MovieClip Frame 2
"black"Symbol 116 MovieClip Frame 1
"white"Symbol 116 MovieClip Frame 2
"black"Symbol 119 MovieClip Frame 1
"white"Symbol 119 MovieClip Frame 2
"black"Symbol 122 MovieClip Frame 1
"white"Symbol 122 MovieClip Frame 2
"black"Symbol 125 MovieClip Frame 1
"white"Symbol 125 MovieClip Frame 2
"black"Symbol 128 MovieClip Frame 1
"white"Symbol 128 MovieClip Frame 2
"black"Symbol 131 MovieClip Frame 1
"white"Symbol 131 MovieClip Frame 2
"black"Symbol 134 MovieClip Frame 1
"white"Symbol 134 MovieClip Frame 2
"black"Symbol 137 MovieClip Frame 1
"white"Symbol 137 MovieClip Frame 2
"black"Symbol 140 MovieClip Frame 1
"white"Symbol 140 MovieClip Frame 2
"black"Symbol 143 MovieClip Frame 1
"white"Symbol 143 MovieClip Frame 2
"black"Symbol 146 MovieClip Frame 1
"white"Symbol 146 MovieClip Frame 2
"black"Symbol 149 MovieClip Frame 1
"white"Symbol 149 MovieClip Frame 2
"black"Symbol 152 MovieClip Frame 1
"white"Symbol 152 MovieClip Frame 2
"black"Symbol 155 MovieClip Frame 1
"white"Symbol 155 MovieClip Frame 2
"black"Symbol 158 MovieClip Frame 1
"white"Symbol 158 MovieClip Frame 2
"black"Symbol 161 MovieClip Frame 1
"white"Symbol 161 MovieClip Frame 2

Dynamic Text Variables

MailFromSymbol 66 EditableText""
MailToSymbol 76 EditableText""
BodySymbol 77 EditableText""
levelSymbol 177 EditableText""
switchesSymbol 180 EditableText"12"
_root.secondsSymbol 194 EditableText"00"
_root.minutesSymbol 195 EditableText"00"
levelSymbol 196 EditableText""
scoresSymbol 197 EditableText""
switchesSymbol 198 EditableText""
movebonusSymbol 209 EditableText""
timebonusSymbol 210 EditableText""
levelscoreSymbol 211 EditableText""
movebonusSymbol 214 EditableText""
timebonusSymbol 215 EditableText""
levelscoreSymbol 216 EditableText""
movebonusSymbol 218 EditableText""
timebonusSymbol 219 EditableText""
levelscoreSymbol 220 EditableText""
movebonusSymbol 222 EditableText""
timebonusSymbol 223 EditableText""
levelscoreSymbol 224 EditableText""
_root.secondsSymbol 233 EditableText"00"
_root.minutesSymbol 234 EditableText"00"
levelSymbol 235 EditableText""
scoresSymbol 236 EditableText""
switchesSymbol 237 EditableText""
_root.secondsSymbol 241 EditableText"00"
_root.minutesSymbol 242 EditableText"00"
levelSymbol 243 EditableText""
scoresSymbol 244 EditableText""
switchesSymbol 245 EditableText""
errorMsgSymbol 260 EditableText""
scoreSymbol 263 EditableText""
finalscoreSymbol 264 EditableText""
scoresSymbol 265 EditableText""




http://swfchan.com/6/27298/info.shtml
Created: 21/5 -2019 17:45:51 Last modified: 21/5 -2019 17:45:51 Server time: 14/05 -2024 08:14:22