Frame 1
percent = Math.floor((getBytesLoaded() / getBytesTotal()) * 100);
myOutput.text = percent + "%";
function itemHandler1(obj, item) {
getURL ("http://www.imperfectsystems.cjb.net");
}
function itemHandler2(obj, item) {
getURL ("http://www.imperfectsystems.cjb.net");
}
function itemHandler3(obj, item) {
getURL ("http://www.imperfectsystems.cjb.net");
}
function itemHandler4(obj, item) {
getURL ("http://www.imperfectsystems.cjb.net");
}
var myMenu = new ContextMenu();
myMenu.hideBuiltInItems();
item1 = new ContextMenuItem("This game was made by", itemHandler1);
myMenu.customItems.push(item1);
item2 = new ContextMenuItem("Chris Gray and", itemHandler2);
myMenu.customItems.push(item2);
item3 = new ContextMenuItem("Alexander Cetinski of", itemHandler3);
myMenu.customItems.push(item3);
item4 = new ContextMenuItem("www.imperfectsystems.cjb.net", itemHandler4);
myMenu.customItems.push(item4);
_root.menu = myMenu;
function saveGame() {
myLSO = SharedObject.getLocal("gravoorrobboorFOUR312212121savefile");
if (myLSO.data.myObj == undefined) {
trace("Saved Game");
} else {
trace("Overwrote Saved Game");
}
myObj = {};
myObj.objArray = new Array();
myObj.objArray[0] = levela;
myObj.objArray[1] = timea;
myLSO.data.myObj = myObj;
}
function loadGame() {
myLSO = SharedObject.getLocal("gravoorrobboorFOUR312212121savefile");
if (myLSO.data.myObj == undefined) {
trace("No Saved Game");
} else {
trace("Loaded Game");
levela = myLSO.data.myObj.objArray[0];
timea = myLSO.data.myObj.objArray[1];
}
}
Frame 2
if (percent == 100) {
play();
} else {
gotoAndPlay (1);
}
Frame 3
stop();
Frame 4
_root.gravoorcolour = 1;
Frame 92
stop();
Frame 93
loadGame();
Frame 94
if (_root.levela == 1) {
gotoAndStop (102);
}
if (_root.levela == 2) {
gotoAndStop (105);
}
if (_root.levela == 3) {
gotoAndStop (108);
}
if (_root.levela == 4) {
gotoAndStop (111);
}
if (_root.levela == 5) {
gotoAndStop (114);
}
if (_root.levela == 6) {
gotoAndStop (117);
}
if (_root.levela == 7) {
gotoAndStop (120);
}
if (_root.levela == 8) {
gotoAndStop (123);
}
if (_root.levela == 9) {
gotoAndStop (126);
}
if (_root.levela == 10) {
gotoAndStop (129);
}
if (_root.levela == 11) {
gotoAndStop (132);
}
if (_root.levela == 12) {
gotoAndStop (135);
}
if (_root.levela == 13) {
gotoAndStop (138);
}
if (_root.levela == 14) {
gotoAndStop (141);
}
if (_root.levela == 15) {
gotoAndStop (144);
}
if (_root.levela == 16) {
gotoAndStop (147);
}
if (_root.levela == 17) {
gotoAndStop (150);
}
if (_root.levela == 18) {
gotoAndStop (153);
}
if (_root.levela == 19) {
gotoAndStop (156);
}
if (_root.levela == 20) {
gotoAndStop (159);
}
if (_root.levela == 21) {
gotoAndStop (162);
}
if (_root.levela == 22) {
gotoAndStop (165);
}
if (_root.levela == 23) {
gotoAndStop (168);
}
if (_root.levela == 24) {
gotoAndStop (171);
}
if (_root.levela == 25) {
gotoAndStop (174);
}
if (_root.levela == 26) {
gotoAndStop (177);
}
if (_root.levela == 27) {
gotoAndStop (180);
}
if (_root.levela == 28) {
gotoAndStop (183);
}
if (_root.levela == 29) {
gotoAndStop (186);
}
if (_root.levela == 30) {
gotoAndStop (189);
}
if (_root.levela == 31) {
gotoAndStop (192);
}
if (_root.levela == 32) {
gotoAndStop (195);
}
if (_root.levela == 33) {
gotoAndStop (198);
}
if (_root.levela == 34) {
gotoAndStop (201);
}
if (_root.levela == 35) {
gotoAndStop (204);
}
if (_root.levela == 36) {
gotoAndStop (207);
}
if (_root.levela == 37) {
gotoAndStop (210);
}
if (_root.levela == 38) {
gotoAndStop (213);
}
if (_root.levela == 39) {
gotoAndStop (216);
}
if (_root.levela == 40) {
gotoAndStop (219);
}
Frame 102
stop();
Frame 103
stop();
Instance of Symbol 266 MovieClip "blue" in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 289 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 103
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 103
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 104
levela = 2;
Frame 106
stop();
Instance of Symbol 289 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 106
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 304 MovieClip in Frame 106
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 107
levela = 3;
Frame 109
stop();
Instance of Symbol 289 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 109
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 266 MovieClip "blue" in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 304 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 304 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 304 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 304 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 110
levela = 4;
Frame 112
stop();
Instance of Symbol 289 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 112
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Frame 113
levela = 5;
Frame 115
stop();
Instance of Symbol 289 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 115
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 266 MovieClip "blue" in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 116
levela = 6;
Frame 117
stop();
Frame 118
stop();
Instance of Symbol 266 MovieClip "blue" in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 289 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 118
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 323 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 323 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 119
levela = 7;
Frame 121
stop();
Instance of Symbol 289 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 121
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 121
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 122
levela = 8;
Frame 124
stop();
Instance of Symbol 289 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 124
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 266 MovieClip "blue" in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 124
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 125
levela = 9;
Frame 127
stop();
Instance of Symbol 289 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 127
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 128
levela = 10;
Frame 130
stop();
Instance of Symbol 289 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 130
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 130
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Frame 131
levela = 11;
Frame 132
stop();
Frame 133
stop();
Instance of Symbol 266 MovieClip "blue" in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 289 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 133
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 134
levela = 12;
Frame 136
stop();
Instance of Symbol 289 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 136
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 360 MovieClip in Frame 136
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 137
levela = 13;
Frame 139
stop();
Instance of Symbol 289 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 139
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 266 MovieClip "blue" in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 139
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 140
levela = 14;
Frame 142
stop();
Instance of Symbol 289 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 142
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Frame 143
levela = 15;
Frame 145
stop();
Instance of Symbol 289 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 145
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "red" in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 287 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "yellow" in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.yellow.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip in Frame 145
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 146
levela = 16;
Frame 147
stop();
Frame 148
stop();
Instance of Symbol 266 MovieClip "blue" in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 289 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 148
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 148
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 149
levela = 17;
Frame 151
stop();
Instance of Symbol 289 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 151
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 383 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 151
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Frame 152
levela = 18;
Frame 154
stop();
Instance of Symbol 247 MovieClip "player" in Frame 154
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 266 MovieClip "blue" in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 383 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 289 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 383 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 154
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Frame 155
levela = 19;
Frame 157
stop();
Instance of Symbol 289 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 157
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 157
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 158
levela = 20;
Frame 160
stop();
Instance of Symbol 289 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 160
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 383 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Frame 161
levela = 21;
Frame 162
stop();
Frame 163
stop();
Instance of Symbol 266 MovieClip "blue" in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 289 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 163
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 163
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 164
levela = 22;
Frame 166
stop();
Instance of Symbol 247 MovieClip "player" in Frame 166
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 289 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 411 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 411 MovieClip in Frame 166
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 167
levela = 23;
Frame 169
stop();
Instance of Symbol 289 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 169
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 266 MovieClip "blue" in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 169
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 170
levela = 24;
Frame 172
stop();
Instance of Symbol 289 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 172
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 172
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 173
levela = 25;
Frame 175
stop();
Instance of Symbol 289 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 175
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 425 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 266 MovieClip in Frame 175
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 176
levela = 26;
Frame 177
stop();
Frame 178
stop();
Instance of Symbol 266 MovieClip "blue" in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 289 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 431 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 178
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Frame 179
levela = 27;
Frame 181
stop();
Instance of Symbol 289 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 181
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 425 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 425 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Instance of Symbol 425 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
this.play();
}
}
Frame 182
levela = 28;
Frame 184
stop();
Instance of Symbol 289 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 184
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 266 MovieClip "blue" in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 439 MovieClip in Frame 184
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 185
levela = 29;
Frame 187
stop();
Instance of Symbol 289 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 187
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 187
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 188
levela = 30;
Frame 190
stop();
Instance of Symbol 289 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.nextFrame();
}
}
Instance of Symbol 247 MovieClip "player" in Frame 190
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 20);
_root.xMove = Math.round(_root.xChange / 20);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
this._rotation = myDegrees + 90;
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 266 MovieClip "blue" in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.red.gotoAndStop(2);
}
}
Instance of Symbol 266 MovieClip "red" in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 287 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.blue.gotoAndStop(2);
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Frame 190
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Frame 191
levela = 30;
Symbol 65 Button
on (release) {
getURL ("http://www.armorgames.com/", "blank");
}
Symbol 112 Button
on (release) {
_root.play();
}
Symbol 113 MovieClip Frame 143
_root.play();
stop();
Symbol 140 MovieClip Frame 15
stop();
Symbol 143 Button
on (release) {
getURL ("http://www.buttonbash.com/forums/", "blank");
}
Symbol 206 Button
on (release) {
gotoAndPlay (99);
}
Symbol 207 Button
on (release) {
play();
}
Symbol 208 Button
on (release) {
gotoAndStop (95);
}
Symbol 209 Button
on (release) {
getURL ("http://www.imperfectsystems.cjb.net", "blank");
}
Symbol 210 Button
on (release) {
gotoAndStop (96);
}
Symbol 227 MovieClip Frame 1
stop();
Symbol 238 MovieClip Frame 1
stop();
Instance of Symbol 227 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gravoorcolour);
}
Instance of Symbol 227 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gravoorcolour);
}
Instance of Symbol 227 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gravoorcolour);
}
Instance of Symbol 227 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gravoorcolour);
}
Instance of Symbol 238 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gravoorcolour);
}
Symbol 241 Button
on (release) {
gotoAndStop (92);
}
Symbol 244 MovieClip Frame 1
stop();
Symbol 247 MovieClip Frame 1
stop();
Symbol 250 Button
on (release) {
if (_root.gravoorcolour <= 9) {
gravoorcolour = gravoorcolour + 1;
}
}
Symbol 251 Button
on (release) {
if (_root.gravoorcolour >= 2) {
gravoorcolour = gravoorcolour - 1;
}
}
Symbol 259 Button
on (release) {
nextFrame();
}
Symbol 266 MovieClip Frame 1
stop();
Symbol 266 MovieClip Frame 2
stop();
Symbol 295 Button
on (release) {
saveGame();
}
Instance of Symbol 290 MovieClip in Symbol 313 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Symbol 313 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Symbol 313 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Symbol 313 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Symbol 331 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Symbol 339 MovieClip Frame 59
stop();
Symbol 383 MovieClip Frame 1
stop();
Instance of Symbol 290 MovieClip in Symbol 383 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Symbol 383 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Symbol 383 MovieClip Frame 2
play();
Symbol 383 MovieClip Frame 9
stop();
Symbol 383 MovieClip Frame 10
stop();
Symbol 425 MovieClip Frame 1
stop();
Instance of Symbol 290 MovieClip in Symbol 425 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Instance of Symbol 290 MovieClip in Symbol 425 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.ht.hitTest(this)) {
_root.prevFrame();
}
}
Symbol 425 MovieClip Frame 2
play();
Symbol 425 MovieClip Frame 9
stop();
Symbol 425 MovieClip Frame 10
stop();
Symbol 431 MovieClip Frame 90
stop();