Frame 1
_root.onLoad = function () {
_root._xscale = 145;
_root._yscale = 145;
};
_root.onEnterFrame = function () {
_root._xscale = 145;
_root._yscale = 145;
};
stop();
Instance of Symbol 21 MovieClip in Frame 2
onClipEvent (enterFrame) {
_root.roundCount = "ROUND " + _root.arrowCount;
if (_root.arrowCount == null) {
_root.arrowCount = 0;
}
}
Frame 27
stop();
function reset() {
floorLoad = 1;
delete floorDraw;
floor = 1;
totalTime = 15 * fps;
actualTime = 1;
rec = 1;
delete floorArray;
delete score;
delete playArrow;
arrowCount++;
if (arrowCount >= 6) {
if (_root.debugs >= 130) {
_root.gotoAndPlay(27);
_root.goalmsg = "YOU WON!!";
delete arrowCount;
} else {
_root.gotoAndPlay(27);
_root.goalmsg = "YOU LOST!!";
delete arrowCount;
}
} else {
_root.gotoAndPlay(2);
}
}
function ghostCursor() {
if (arrowCount == 4) {
if (rec == 1) {
arrowX5 = new Array();
arrowY5 = new Array();
arrowF5 = new Array();
}
}
if (arrowCount == 3) {
if (rec == 1) {
arrowX4 = new Array();
arrowY4 = new Array();
arrowF4 = new Array();
}
}
if (arrowCount == 2) {
if (rec == 1) {
arrowX3 = new Array();
arrowY3 = new Array();
arrowF3 = new Array();
}
}
if (arrowCount == 1) {
if (rec == 1) {
arrowX2 = new Array();
arrowY2 = new Array();
arrowF2 = new Array();
}
}
if (arrowCount == 0) {
if (rec == null) {
arrowX = new Array();
arrowY = new Array();
arrowF = new Array();
}
}
if (arrowCount >= 1) {
playArrow++;
if ((arrowF[playArrow] > _root.floor) || (arrowF[playArrow] < _root.floor)) {
_root.arrow1._visible = false;
} else {
_root.arrow1._visible = true;
}
_root.arrow1._x = arrowX[playArrow + arrowCount];
_root.arrow1._y = arrowY[playArrow + arrowCount];
if (arrowCount >= 2) {
if ((arrowF2[playArrow] > _root.floor) || (arrowF2[playArrow] < _root.floor)) {
_root.arrow2._visible = false;
} else {
_root.arrow2._visible = true;
}
_root.arrow2._x = arrowX2[playArrow + arrowCount];
_root.arrow2._y = arrowY2[playArrow + arrowCount];
if (arrowCount >= 3) {
if ((arrowF3[playArrow] > _root.floor) || (arrowF3[playArrow] < _root.floor)) {
_root.arrow3._visible = false;
} else {
_root.arrow3._visible = true;
}
_root.arrow3._x = arrowX3[playArrow + arrowCount];
_root.arrow3._y = arrowY3[playArrow + arrowCount];
if (arrowCount >= 4) {
if ((arrowF4[playArrow] > _root.floor) || (arrowF4[playArrow] < _root.floor)) {
_root.arrow4._visible = false;
} else {
_root.arrow4._visible = true;
}
_root.arrow4._x = arrowX4[playArrow + arrowCount];
_root.arrow4._y = arrowY4[playArrow + arrowCount];
if (arrowCount >= 5) {
if ((arrowF5[playArrow] > _root.floor) || (arrowF5[playArrow] < _root.floor)) {
_root.arrow5._visible = false;
} else {
_root.arrow5._visible = true;
}
_root.arrow5._x = arrowX5[playArrow + arrowCount];
_root.arrow5._y = arrowY5[playArrow + arrowCount];
}
}
}
}
}
if (arrowCount == 5) {
rec++;
arrowX5[rec] = _root._xmouse;
arrowY5[rec] = _root._ymouse;
arrowF5[rec] = _root.floor;
}
if (arrowCount == 3) {
rec++;
arrowX4[rec] = _root._xmouse;
arrowY4[rec] = _root._ymouse;
arrowF4[rec] = _root.floor;
}
if (arrowCount == 2) {
rec++;
arrowX3[rec] = _root._xmouse;
arrowY3[rec] = _root._ymouse;
arrowF3[rec] = _root.floor;
}
if (arrowCount == 1) {
rec++;
arrowX2[rec] = _root._xmouse;
arrowY2[rec] = _root._ymouse;
arrowF2[rec] = _root.floor;
}
if (arrowCount == 0) {
rec++;
arrowX[rec] = _root._xmouse;
arrowY[rec] = _root._ymouse;
arrowF[rec] = _root.floor;
}
}
if (totalTime == null) {
totalTime = 375;
}
function sound_Efx() {
if (SOUNDFX == 1) {
_root.soundEfx.duplicateMovieClip("soundEfx1", 101);
}
}
function debugger() {
if (((totalTime - actualTime) < 1) && (startGame == 1)) {
if (r_input == null) {
reset();
r_input = 1;
}
} else {
delete r_input;
}
fps = 25;
debugf = _root.floor;
debugs = _root.score;
debugt = _root.gameTimer;
debuga = arrowCount;
actualTime = actualTime + 1;
gameTimer = playTimer;
second = Math.round((totalTime - actualTime) / fps);
ten = Math.floor(second / 10);
min = Math.floor(ten / 6);
ms1 = ((totalTime - (actualTime / fps)) * 1000) - (Math.round(totalTime - (actualTime / fps)) * 1000);
ms2 = ((totalTime - (actualTime / 3)) * 1000) - (Math.round(totalTime - (actualTime / 3)) * 1000);
ms3 = ((totalTime - (actualTime / 2)) * 1000) - (Math.round(totalTime - (actualTime / 2)) * 1000);
milsec = (((Math.floor((ms1 + 500) / 100) + "") + Math.floor((ms2 + 500) / 100)) + "") + Math.ceil((ms3 + 500) / 100);
_root.playTimer = (((((min + ":") + (ten - (min * 6))) + "") + (second - (ten * 10))) + ":") + milsec;
formula = Math.ceil((_root._xmouse * _root._totalframes) / 550);
}
function animation() {
if (mClick == 2) {
clickVrb++;
_root.mouseAnim.duplicateMovieClip("mouseAnim_" + clickVrb, 100 + clickVrb);
_root["mouseAnim_" + clickVrb].gotoandPlay(2);
_root["mouseAnim_" + clickVrb]._x = _xmouse;
_root["mouseAnim_" + clickVrb]._y = _ymouse;
}
}
function mapGrabHistory() {
if (mapgHisFloor == null) {
var drawGrab = 1;
while (drawGrab < 21) {
mapgHisfloor = new Array();
mapgHisgrab = new Array();
floorArray = [[null], [null], [null], [null], [null]];
drawGrab++;
}
}
}
function ghostHtd() {
var arrowScan = 1;
while (arrowScan < 6) {
var arrowScan2 = 1;
while (arrowScan2 < 6) {
if (_root["arrow" + arrowScan2]._visible == true) {
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileA" + arrowScan]) && (_root["tileA" + arrowScan]._currentframe == 4)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 1;
floorArray[floor][_root["tileA" + arrowScan]._name] = 1;
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileB" + arrowScan]) && (_root["tileB" + arrowScan]._currentframe == 4)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 1;
floorArray[floor][_root["tileB" + arrowScan]._name] = 1;
_root["tileB" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileC" + arrowScan]) && (_root["tileC" + arrowScan]._currentframe == 4)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 1;
floorArray[floor][_root["tileC" + arrowScan]._name] = 1;
_root["tileC" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileD" + arrowScan]) && (_root["tileD" + arrowScan]._currentframe == 4)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 1;
floorArray[floor][_root["tileD" + arrowScan]._name] = 1;
_root["tileD" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileE" + arrowScan]) && (_root["tileE" + arrowScan]._currentframe == 4)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 1;
floorArray[floor][_root["tileE" + arrowScan]._name] = 1;
_root["tileE" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileF" + arrowScan]) && (_root["tileF" + arrowScan]._currentframe == 4)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 1;
floorArray[floor][_root["tileF" + arrowScan]._name] = 1;
_root["tileF" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileA" + arrowScan]) && (_root["tileA" + arrowScan]._currentframe == 5)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 3;
floorArray[floor][_root["tileA" + arrowScan]._name] = 1;
_root["tileA" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileB" + arrowScan]) && (_root["tileB" + arrowScan]._currentframe == 5)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 3;
floorArray[floor][_root["tileB" + arrowScan]._name] = 1;
_root["tileB" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileC" + arrowScan]) && (_root["tileC" + arrowScan]._currentframe == 5)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 3;
floorArray[floor][_root["tileC" + arrowScan]._name] = 1;
_root["tileC" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileD" + arrowScan]) && (_root["tileD" + arrowScan]._currentframe == 5)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 3;
floorArray[floor][_root["tileD" + arrowScan]._name] = 1;
_root["tileD" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileE" + arrowScan]) && (_root["tileE" + arrowScan]._currentframe == 5)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 3;
floorArray[floor][_root["tileE" + arrowScan]._name] = 1;
_root["tileE" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileF" + arrowScan]) && (_root["tileF" + arrowScan]._currentframe == 5)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 3;
floorArray[floor][_root["tileF" + arrowScan]._name] = 1;
_root["tileF" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileA" + arrowScan]) && (_root["tileA" + arrowScan]._currentframe == 6)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 10;
floorArray[floor][_root["tileA" + arrowScan]._name] = 1;
_root["tileA" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileB" + arrowScan]) && (_root["tileB" + arrowScan]._currentframe == 6)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 10;
floorArray[floor][_root["tileB" + arrowScan]._name] = 1;
_root["tileB" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileC" + arrowScan]) && (_root["tileC" + arrowScan]._currentframe == 6)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 10;
floorArray[floor][_root["tileC" + arrowScan]._name] = 1;
_root["tileC" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileD" + arrowScan]) && (_root["tileD" + arrowScan]._currentframe == 6)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 10;
floorArray[floor][_root["tileD" + arrowScan]._name] = 1;
_root["tileD" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileE" + arrowScan]) && (_root["tileE" + arrowScan]._currentframe == 6)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 1;
floorArray[floor][_root["tileE" + arrowScan]._name] = 1;
_root["tileE" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
if (_root["arrow" + arrowScan2].hb.hitTest(_root["tileF" + arrowScan]) && (_root["tileF" + arrowScan]._currentframe == 6)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 10;
floorArray[floor][_root["tileF" + arrowScan]._name] = 1;
_root["tileF" + arrowScan].gotoAndStop(1);
delete floorLoad;
}
}
arrowScan2++;
}
arrowScan++;
}
}
function clickAdvanceDoubleClicker(mc) {
if (mc.hitTest(_root._xmouse, _root._ymouse, true) && (mc._currentframe == 7)) {
if (mc.exit == 1) {
if (mClick >= 2) {
mc._start = 1;
mc.health = mc.health - 5;
_root.soundEfx1.gotoAndStop(4);
score = score + 1;
floorArray[floor][mc._name] = 1;
if (mc.health <= 5) {
mc.box_anim.gotoAndPlay(2);
delete floorLoad;
delete mc.health;
}
}
} else if (mClick >= 2) {
_root.soundEfx1.gotoAndStop(4);
score = score + 1;
floorArray[floor][mc._name] = 1;
mc.box_anim.gotoAndPlay(2);
delete floorLoad;
}
}
if (mc.hitTest(_root._xmouse, _root._ymouse, true) && (mc._currentframe == 4)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 1;
floorArray[floor][mc._name] = 1;
mc.gotoAndStop(1);
delete floorLoad;
}
if (mc.hitTest(_root._xmouse, _root._ymouse, true) && (mc._currentframe == 5)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 3;
floorArray[floor][mc._name] = 1;
mc.gotoAndStop(1);
delete floorLoad;
}
if (mc.hitTest(_root._xmouse, _root._ymouse, true) && (mc._currentframe == 6)) {
_root.soundEfx1.gotoAndStop(2);
score = score + 10;
floorArray[floor][mc._name] = 1;
mc.gotoAndStop(1);
delete floorLoad;
}
if (mClick >= 2) {
delete floorDraw;
trace((((confirmTile + ":") + mc._name) + "floor:") + floor);
if (mc.hitTest(_root._xmouse, _root._ymouse, true) && (mc._currentframe == 3)) {
_root.soundEfx1.gotoAndStop(3);
floor--;
floorLoad = 1;
}
if (mc.hitTest(_root._xmouse, _root._ymouse, true) && (mc._currentframe == 2)) {
_root.soundEfx1.gotoAndStop(3);
floor++;
floorLoad = 1;
}
delete mClick;
delete mClickerTimer;
} else if (mClick == 1) {
if (mClickerTimer >= 10) {
delete mClickerTimer;
delete mClick;
} else {
mClickerTimer++;
}
}
}
function mapLoadArray() {
if (floor == null) {
floor = 0;
floorLoad = 1;
}
if ((floor == 1) && (floorDraw == null)) {
mapArray[0] = [1, 2, 1, 1, 1];
mapArray[1] = [5, 5, 5, 5, 5];
mapArray[2] = [6, 6, 6, 6, 6];
mapArray[3] = [5, 5, 5, 5, 5];
mapArray[4] = [6, 6, 6, 6, 6];
mapArray[5] = [5, 5, 5, 5, 5];
floorDraw = 1;
}
if ((floor == 2) && (floorDraw == null)) {
mapArray[0] = [1, 3, 1, 1, 1];
mapArray[1] = [1, 4, 4, 1, 1];
mapArray[2] = [1, 2, 4, 1, 1];
mapArray[3] = [1, 6, 5, 1, 1];
mapArray[4] = [1, 1, 1, 1, 1];
mapArray[5] = [1, 1, 1, 1, 1];
floorDraw = 1;
}
if ((floor == 3) && (floorDraw == null)) {
mapArray[0] = [1, 1, 1, 1, 1];
mapArray[1] = [1, 1, 1, 1, 1];
mapArray[2] = [1, 3, 1, 1, 1];
mapArray[3] = [1, 1, 1, 4, 1];
mapArray[4] = [1, 1, 4, 2, 4];
mapArray[5] = [1, 1, 1, 4, 1];
floorDraw = 1;
}
if ((floor == 4) && (floorDraw == null)) {
mapArray[0] = [1, 1, 1, 6, 1];
mapArray[1] = [1, 1, 6, 2, 6];
mapArray[2] = [1, 1, 1, 6, 1];
mapArray[3] = [1, 1, 1, 1, 1];
mapArray[4] = [1, 1, 1, 3, 1];
mapArray[5] = [1, 1, 1, 1, 1];
floorDraw = 1;
}
if ((floor == 5) && (floorDraw == null)) {
mapArray[0] = [1, 1, 1, 1, 1];
mapArray[1] = [1, 1, 1, 3, 1];
mapArray[2] = [1, 1, 1, 1, 1];
mapArray[3] = [1, 5, 1, 1, 1];
mapArray[4] = [5, 2, 5, 1, 1];
mapArray[5] = [1, 5, 1, 1, 1];
floorDraw = 1;
}
if ((floor == 6) && (floorDraw == null)) {
mapArray[0] = [6, 1, 5, 1, 4];
mapArray[1] = [2, 6, 1, 4, 1];
mapArray[2] = [1, 6, 1, 5, 1];
mapArray[3] = [5, 1, 5, 1, 4];
mapArray[4] = [1, 3, 1, 4, 1];
mapArray[5] = [4, 1, 4, 1, 1];
floorDraw = 1;
}
if ((floor == 7) && (floorDraw == null)) {
mapArray[0] = [7, 1, 7, 1, 7];
mapArray[1] = [1, 1, 1, 1, 7];
mapArray[2] = [7, 1, 1, 1, 1];
mapArray[3] = [1, 1, 1, 1, 7];
mapArray[4] = [7, 1, 1, 1, 1];
mapArray[5] = [7, 1, 7, 1, 7];
floorDraw = 1;
}
if ((floor == 8) && (floorDraw == null)) {
mapArray[0] = [7, 1, 7, 1, 7];
mapArray[1] = [1, 1, 1, 1, 7];
mapArray[2] = [7, 1, 1, 1, 1];
mapArray[3] = [1, 1, 1, 1, 7];
mapArray[4] = [7, 1, 1, 1, 1];
mapArray[5] = [7, 1, 7, 1, 7];
floorDraw = 1;
}
if ((floor == 9) && (floorDraw == null)) {
mapArray[0] = [7, 1, 7, 1, 7];
mapArray[1] = [1, 1, 1, 1, 7];
mapArray[2] = [7, 1, 1, 1, 1];
mapArray[3] = [1, 1, 1, 1, 7];
mapArray[4] = [7, 1, 1, 1, 1];
mapArray[5] = [7, 1, 7, 1, 7];
floorDraw = 1;
}
if (mapArray == null) {
mapArray = new Array();
floor = 1;
}
}
function clickerMapLoad(mc, value) {
if (floor == 7) {
if (mc._name == "tileE1") {
mc.health = 50;
mc.exit = 1;
}
}
if (floor == 8) {
if (mc._name == "tileA1") {
mc.health = 100;
mc.exit = 1;
}
}
if (floor == 9) {
if (mc._name == "tileD1") {
mc.health = 200;
mc.exit = 1;
}
}
if (floorArray[floor][mc._name] == 1) {
mc.gotoAndStop(1);
} else {
mc.gotoAndStop(value);
}
}
_root.onMouseDown = function () {
if (mClick >= 2) {
delete mClick;
} else {
mClick++;
}
};
_root.onLoad = function () {
};
_root.onEnterFrame = function () {
ghostHtd();
startGame = 1;
SOUNDFX = 1;
sound_Efx();
animation();
clickAdvanceDoubleClicker(_root[confirmTile]);
mapLoadArray();
debugger();
mapGrabHistory();
if (floorLoad == 1) {
clickerMapLoad(tileA1, mapArray[0][0]);
clickerMapLoad(tileA2, mapArray[0][1]);
clickerMapLoad(tileA3, mapArray[0][2]);
clickerMapLoad(tileA4, mapArray[0][3]);
clickerMapLoad(tileA5, mapArray[0][4]);
clickerMapLoad(tileB1, mapArray[1][0]);
clickerMapLoad(tileB2, mapArray[1][1]);
clickerMapLoad(tileB3, mapArray[1][2]);
clickerMapLoad(tileB4, mapArray[1][3]);
clickerMapLoad(tileB5, mapArray[1][4]);
clickerMapLoad(tileC1, mapArray[2][0]);
clickerMapLoad(tileC2, mapArray[2][1]);
clickerMapLoad(tileC3, mapArray[2][2]);
clickerMapLoad(tileC4, mapArray[2][3]);
clickerMapLoad(tileC5, mapArray[2][4]);
clickerMapLoad(tileD1, mapArray[3][0]);
clickerMapLoad(tileD2, mapArray[3][1]);
clickerMapLoad(tileD3, mapArray[3][2]);
clickerMapLoad(tileD4, mapArray[3][3]);
clickerMapLoad(tileD5, mapArray[3][4]);
clickerMapLoad(tileE1, mapArray[4][0]);
clickerMapLoad(tileE2, mapArray[4][1]);
clickerMapLoad(tileE3, mapArray[4][2]);
clickerMapLoad(tileE4, mapArray[4][3]);
clickerMapLoad(tileE5, mapArray[4][4]);
clickerMapLoad(tileF1, mapArray[5][0]);
clickerMapLoad(tileF2, mapArray[5][1]);
clickerMapLoad(tileF3, mapArray[5][2]);
clickerMapLoad(tileF4, mapArray[5][3]);
clickerMapLoad(tileF5, mapArray[5][4]);
}
ghostCursor();
};
Instance of Symbol 52 MovieClip "tileF1" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileF2" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileF3" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileF4" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileF5" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileE1" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileE2" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileE3" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileE4" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileE5" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileD1" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileD2" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileD3" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileD4" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileD5" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileC1" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileC2" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileC3" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileC4" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileC5" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileB1" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileB2" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileB3" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileB4" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileB5" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileA1" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileA2" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileA3" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileA4" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Instance of Symbol 52 MovieClip "tileA5" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.confirmTile = this._name;
}
if (Key.isDown(Key.getCode())) {
this.gotoAndStop(Math.round(Math.random() * 2));
}
}
Frame 64
stop();
Symbol 7 MovieClip Frame 20
stop();
Symbol 12 Button
on (press) {
_root.gotoAndPlay(2);
}
Symbol 21 MovieClip Frame 6
stop();
Symbol 47 MovieClip Frame 1
stop();
Symbol 47 MovieClip Frame 11
removeMovieClip(this);
Symbol 52 MovieClip Frame 1
stop();
Symbol 52 MovieClip Frame 2
stop();
Symbol 52 MovieClip Frame 3
stop();
Symbol 52 MovieClip Frame 4
stop();
Symbol 52 MovieClip Frame 5
stop();
Symbol 52 MovieClip Frame 6
stop();
Symbol 52 MovieClip Frame 7
stop();
Instance of Symbol 51 MovieClip in Symbol 52 MovieClip Frame 7
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (_parent.exit == 1) {
if (_parent._start >= 1) {
this._visible = true;
} else {
this._visible = false;
}
}
}
Symbol 57 MovieClip Frame 1
stop();
Symbol 57 MovieClip Frame 2
play();
Symbol 57 MovieClip Frame 5
removeMovieClip(this);
Symbol 69 MovieClip Frame 1
stop();
Symbol 69 MovieClip Frame 2
stop();
gotoAndStop (1);
Symbol 69 MovieClip Frame 3
stop();
gotoAndStop (1);
Symbol 69 MovieClip Frame 4
stop();
gotoAndStop (1);
Symbol 78 Button
on (press) {
_root.gotoAndStop(1);
}