Frame 1
var playername = "Guest";
my_txt.embedFonts = true;
bgSound = new Sound(this);
bgSound.attachSound("sound1");
bgSound.start(0, 99);
bgSound.setVolume(100);
_lockroot = true;
var wind = 2;
Frame 2
stop();
var yvel = 0;
var xvel = 0;
var currentlevel = 1;
var point = 0;
door.stop();
Frame 3
door.stop();
var lives = 5;
Frame 4
stop();
var currentlevel = 1;
Instance of Symbol 76 MovieClip "player" in Frame 4
onClipEvent (load) {
hitcheck = 1;
hitcheck2 = 1;
hitcheck3 = 1;
hitcheck4 = 1;
gravity = 0.2;
yspeed = 0;
xspeed = 2.5;
jumping = 0;
var able = 1;
}
onClipEvent (enterFrame) {
_root.thelevel = level.frame;
if (able == 1) {
if (Key.isDown(37)) {
if (!_root.level.hitTest(_x - (_width / 1.8), _y + (_height / 4), true)) {
_x = (_x - xspeed);
this._xscale = 100;
gotoAndStop (2);
}
} else if (Key.isDown(39)) {
if (!_root.level.hitTest(_x + (_width / 1.8), _y + (_height / 4), true)) {
_x = (_x + xspeed);
this._xscale = -100;
gotoAndStop (2);
}
} else {
this.gotoAndStop(1);
}
if (Key.isDown(38) and (!jumping)) {
yspeed = -6.3;
jumping = 1;
}
yspeed = yspeed + gravity;
if ((!_root.level.hitTest(_x, _y + (_height / 2.1), true)) or (yspeed < 0)) {
_y = (_y + yspeed);
} else {
yspeed = 0;
jumping = 0;
}
if (_root.level.door.hitTest(this)) {
_root.point = _root.point + 100;
this._x = 60;
this._y = 330;
_root.currentlevel = _root.currentlevel + 1;
_root.level.nextFrame();
_root.level.door.play();
}
if ((_root.level.spikes.hitTest(_x + (_width / 2), _y + (_height / 2), true) || (_root.level.spikes.hitTest(_x - (_width / 2), _y + (_height / 2), true))) || (_root.level.spikes.hitTest(_x, _y + (_height / 2), true))) {
yspeed = -3;
able = 0;
gotoAndPlay (3);
}
}
if (_root.level.hitTest(_x, _y - (_height / 2), true)) {
if (hitcheck2 == 1) {
if (yspeed <= 0) {
if (jumping == 1) {
yspeed = yspeed * -0.5;
hitcheck2 = 0;
}
} else {
yspeed = yspeed * -1;
}
}
} else {
hitcheck2 = 1;
}
while (_root.bound.hitTest(this)) {
_y = (_y+1);
}
if (_root.lives <= 0) {
_root.gotoAndStop(7);
}
}
Instance of Symbol 76 MovieClip "player" in Frame 5
onClipEvent (load) {
hitcheck = 1;
hitcheck2 = 1;
hitcheck3 = 1;
hitcheck4 = 1;
gravity = 0.2;
yspeed = 0;
xspeed = 3;
jumping = 0;
}
onClipEvent (enterFrame) {
if (go == 1) {
_root.thelevel = level.frame;
if (Key.isDown(37)) {
if (!_root.level.hitTest(_x - (_width / 2), _y + (_height / 4), true)) {
_x = (_x - xspeed);
this._xscale = 100;
gotoAndStop (2);
}
} else if (Key.isDown(39)) {
if (!_root.level.hitTest(_x + (_width / 2), _y + (_height / 4), true)) {
_x = (_x + xspeed);
this._xscale = -100;
gotoAndStop (2);
}
} else {
this.gotoAndStop(1);
}
if (Key.isDown(38) and (!jumping)) {
yspeed = -6.5;
jumping = 1;
}
yspeed = yspeed + gravity;
if ((!_root.level.hitTest(_x, (_y + (_height / 2)) + 1, true)) or (yspeed < 0)) {
_y = (_y + yspeed);
} else {
yspeed = 0;
jumping = 0;
}
if (_root.level.door.hitTest(this)) {
_root.point = _root.point + 1;
this._x = 60;
this._y = 330;
_root.currentlevel = _root.currentlevel + 1;
_root.level.nextFrame();
}
if ((_root.level.spikes.hitTest(_x + (_width / 2), _y + (_height / 2), true) || (_root.level.spikes.hitTest(_x - (_width / 2), _y + (_height / 2), true))) || (_root.level.spikes.hitTest(_x, _y + (_height / 2), true))) {
this._x = 60;
this._y = 330;
_root.point = _root.point - 2;
}
if (_root.level.hitTest(_x, _y - (_height / 2), true)) {
if (yspeed <= 0) {
yspeed = yspeed * -0.5;
}
}
if (_root.level.moveright.hitTest(_x, _y + (_height / 2), true)) {
this._x = this._x + 2;
}
if (_root.level.moveleft.hitTest(_x, _y + (_height / 2), true)) {
this._x = this._x - 2;
}
} else {
this._x = 61;
this._y = 348;
gotoAndStop (1);
}
}
Frame 7
if (point > 0) {
submit._visible = true;
} else {
submit._visible = false;
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Instance of Symbol 8 MovieClip in Symbol 9 MovieClip Frame 1
onClipEvent (load) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
}
onClipEvent (enterFrame) {
this._y = this._y + speed;
this._rotation = this._rotation + speed;
if (this.hitTest(_root.bottom)) {
speed = Math.random(1) * 3;
if (speed <= 2) {
speed = 4;
}
_y = -20;
}
}
Symbol 42 MovieClip Frame 1
function timerHandler() {
if (!loadingComplete) {
var loaded = (_root.getBytesLoaded() / _root.getBytesTotal());
bar._xscale = 100 * loaded;
if (loaded == 1) {
loadingComplete = true;
if (AUTO_PLAY) {
startMovie();
} else {
gotoAndStop ("loaded");
}
return(undefined);
}
}
dt = getTimer() - time;
time = time + dt;
frameAccum = frameAccum + dt;
var i = 0;
while ((frameAccum >= FRAME_TIME) && (i < MAX_FRAME_SKIP)) {
advanceFrame(tankLogo, true, true);
advanceFrame(loadingText, false, true);
advanceFrame(barGfx, false, true);
if (loadingComplete) {
advanceFrame(this, false, false);
}
(frameAccum = frameAccum - FRAME_TIME);
i++;
}
updateAfterEvent();
}
function advanceFrame(clip, recurse, loop) {
if (!clip) {
return(undefined);
}
clip.stop();
if (clip._currentframe == clip._totalframes) {
if (loop) {
clip.gotoAndStop(1);
}
} else {
clip.nextFrame();
}
if (recurse) {
for (childName in clip) {
if (typeof(clip[childName]) == "movieclip") {
advanceFrame(clip[childName], recurse, loop);
}
}
}
}
function startMovie() {
clearInterval(intervalId);
_root.play();
}
_root.stop();
stop();
var FRAME_TIME = 33.3333333333333;
var AUTO_PLAY = false;
var MAX_FRAME_SKIP = 5;
var loadingComplete;
var intervalId;
var time;
var frameAccum;
loadingComplete = false;
intervalId = setInterval(this, "timerHandler", FRAME_TIME / 2);
frameAccum = 0;
time = getTimer();
timerHandler();
Symbol 42 MovieClip Frame 126
stop();
Next.onPress = function () {
_root.playername = input.text;
_root.nextFrame();
};
Symbol 44 Button
on (release) {
if (bgSound.getVolume() != 0) {
bgSound.setVolume(0);
} else {
bgSound.setVolume(50);
}
}
Symbol 49 Button
on (release) {
_root.nextFrame();
_root.stop();
}
Symbol 52 Button
on (release) {
_root.gotoAndStop(5);
}
Symbol 57 MovieClip Frame 1
stop();
stop();
Symbol 76 MovieClip Frame 1
stop();
Symbol 76 MovieClip Frame 3
play();
Symbol 76 MovieClip Frame 25
_root.player._x = 60;
_root.player._y = 330;
if (_root.point >= 200) {
_root.point = _root.point - 200;
} else {
_root.point = 0;
}
_root.player.able = 1;
_root.lives = _root.lives - 1;
Symbol 79 Button
on (release) {
getURL ("http://christmasgames.mostfreebies.com/", _blank);
}
Symbol 86 Button
on (release) {
getURL ("http://www.applecartgames.com/FreeGamesForYourWebsite/FreeGamesForWebmasters.aspx", _blank);
}
Symbol 90 Button
on (release) {
var my_lv = new LoadVars();
my_lv.TheGamesNameValue = "SavingChristmasGame";
my_lv.send("http://www.applecartgames.com/HiScores/HiScorePage.aspx", "_blank", "POST");
}
Symbol 93 Button
on (release) {
getURL ("http://www.applecartgames.com", _blank);
}
Symbol 98 MovieClip Frame 1
stop();
Symbol 103 Button
on (release) {
_root.nextFrame();
}
Symbol 110 Button
on (release) {
_root.gotoAndStop(2);
}
Symbol 115 Button
on (release) {
getURL ("http://www.applecartgames.com", _blank);
}
Symbol 134 MovieClip Frame 1
stop();
Instance of Symbol 98 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 98 MovieClip in Symbol 134 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 98 MovieClip "coin" in Symbol 134 MovieClip Frame 4
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 4
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 98 MovieClip "coin" in Symbol 134 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 98 MovieClip "coin" in Symbol 134 MovieClip Frame 6
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 6
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 98 MovieClip "coin" in Symbol 134 MovieClip Frame 7
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 98 MovieClip "coin" in Symbol 134 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 98 MovieClip "coin" in Symbol 134 MovieClip Frame 10
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 98 MovieClip "coin" in Symbol 134 MovieClip Frame 12
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 98 MovieClip "coin" in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 500;
gotoAndStop (2);
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x - 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x - 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x - 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x - 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x - 2;
}
}
Instance of Symbol 107 MovieClip in Symbol 134 MovieClip Frame 15
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = _root.player._x + 2;
}
}
Symbol 134 MovieClip Frame 16
_root.gotoAndStop(6);
Symbol 140 Button
on (release) {
_root.player._x = 60;
_root.player._y = 330;
}
Symbol 142 Button
on (release) {
_root.gotoAndStop(2);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 125 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
on (releaseOutside) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
onClipEvent (enterFrame) {
if (this._y >= 80) {
if (_root.player.go == 1) {
play();
} else {
stop();
}
} else {
stop();
}
}
onClipEvent (load) {
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 81 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 125 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
on (releaseOutside) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
onClipEvent (enterFrame) {
if (this._y >= 80) {
if (_root.player.go == 1) {
play();
} else {
stop();
}
} else {
stop();
}
}
onClipEvent (load) {
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
Instance of Symbol 125 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
on (releaseOutside) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
onClipEvent (enterFrame) {
if (this._y >= 80) {
if (_root.player.go == 1) {
play();
} else {
stop();
}
} else {
stop();
}
}
onClipEvent (load) {
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
Instance of Symbol 125 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
on (releaseOutside) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
onClipEvent (enterFrame) {
if (this._y >= 80) {
if (_root.player.go == 1) {
play();
} else {
stop();
}
} else {
stop();
}
}
onClipEvent (load) {
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
Instance of Symbol 125 MovieClip in Symbol 147 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
on (releaseOutside) {
stopDrag();
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
onClipEvent (enterFrame) {
if (this._y >= 80) {
if (_root.player.go == 1) {
play();
} else {
stop();
}
} else {
stop();
}
}
onClipEvent (load) {
this._x = (31 * Math.ceil(this._x / 31)) + 8;
this._y = (31 * Math.ceil(this._y / 31)) - 8;
}
Instance of Symbol 107 MovieClip in Symbol 148 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 148 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 148 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 148 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 148 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 149 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 149 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 149 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 149 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 107 MovieClip in Symbol 149 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
on (releaseOutside) {
stopDrag();
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
onClipEvent (load) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 28;
}
Instance of Symbol 57 MovieClip "door" in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = 31 * Math.ceil(this._y / 31);
}
Instance of Symbol 98 MovieClip "coin" in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = (31 * Math.ceil(this._x / 31)) - 15.5;
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
onClipEvent (enterFrame) {
if (_root.player.go == 1) {
if ((this.frame = 1)) {
if (_root.player.hitTest(this)) {
_root.point = _root.point + 5;
this._x = 8;
this._y = -324;
}
}
}
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Instance of Symbol 15 MovieClip in Symbol 150 MovieClip Frame 1
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag();
}
on (releaseOutside) {
stopDrag();
}
onClipEvent (enterFrame) {
this._x = 31 * Math.ceil(this._x / 31);
this._y = (31 * Math.ceil(this._y / 31)) - 15.5;
}
Symbol 151 Button
on (release) {
player.go = 1;
_root.player._x = 60;
_root.player._y = 330;
}
Symbol 159 Button
on (release) {
var my_lv = new LoadVars();
my_lv.TheGamesNameValue = "SavingChristmasGame";
my_lv.ThePlayersNameValue = _root.playername;
my_lv.TheHighScoreValue = _root.point;
my_lv.send("http://www.applecartgames.com/HiScores/HiScorePage.aspx", "_blank", "POST");
_root.gotoAndStop(2);
}