Frame 1
fscommand ("allowscale", "false");
fscommand ("showmenu", "false");
stop();
stopAllSounds();
Instance of Symbol 17 MovieClip in Frame 1
onClipEvent (enterFrame) {
text = ((int(_parent.getBytesLoaded() / 1000) add " KBYTES OF ") add int(_parent.getBytesTotal() / 1000)) add " LOADED ...";
if (_parent.getBytesTotal() == _parent.getBytesLoaded()) {
_parent.gotoAndStop(2);
}
}
Instance of Symbol 124 MovieClip in Frame 1
onClipEvent (enterFrame) {
setProperty(this, _x , _root._xmouse);
setProperty(this, _y , _root._ymouse);
Mouse.hide();
}
Frame 2
score = 0;
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(5);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Frame 3
playGame = true;
score = 0;
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(1);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
restart = function () {
var _local1 = _root;
_local1.hero._x = 55;
_local1.hero._y = 350;
_local1.hero.gotoAndStop(1);
playGame = true;
};
stop();
Instance of Symbol 44 MovieClip "c1" in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c1.gotoAndStop(27);
}
}
Instance of Symbol 102 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(25);
}
}
Instance of Symbol 154 MovieClip in Frame 3
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 44 MovieClip "c3" in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c3.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c2" in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c2.gotoAndStop(27);
}
}
Instance of Symbol 185 MovieClip "hero" in Frame 3
onClipEvent (load) {
function move(x, y) {
var _local1 = y;
var _local2 = x;
var _local3 = _root;
h = false;
if (!_local3.map.hitTest((_x + _local2) + b.xmin, (_y + _local1) + b.ymin, true)) {
if (!_local3.map.hitTest((_x + _local2) + b.xmax, (_y + _local1) + b.ymin, true)) {
if (!_local3.map.hitTest((_x + _local2) + b.xmin, (_y + _local1) + b.ymax, true)) {
if (!_local3.map.hitTest((_x + _local2) + b.xmax, (_y + _local1) + b.ymax, true)) {
_x = (_x + _local2);
_y = (_y + _local1);
h = true;
}
}
}
}
return(h);
}
this.stop();
s = 4;
jumping = false;
b = this.getBounds(this);
}
onClipEvent (enterFrame) {
if (_root.playGame) {
falling = move(0, s);
if ((Key.isDown(32) && (!falling)) && (!jumping)) {
jumping = true;
vel = -12;
_root.jumpSound.gotoAndPlay(2);
}
if (Key.isDown(37)) {
move(-s, 0);
this.gotoAndStop(2);
this.sonic.play();
}
if (Key.isDown(39)) {
move(s, 0);
this.gotoAndStop(1);
this.sonic.play();
}
if (jumping) {
if (vel <= 12) {
h = move(0, vel - s);
if ((h == false) && (vel < 0)) {
vel = vel * -1;
}
vel++;
} else {
jumping = false;
}
}
}
}
onClipEvent (keyUp) {
this.sonic.gotoAndStop(1);
}
Instance of Symbol 280 MovieClip in Frame 3
onClipEvent (enterFrame) {
this.gotoAndStop((_parent.score / 100) + 1);
}
Instance of Symbol 305 MovieClip in Frame 3
onClipEvent (load) {
FPS = 31;
seconds = 0;
frameCount = 0;
}
onClipEvent (enterFrame) {
if (_root._currentFrame < 18) {
frameCount++;
}
if (frameCount == FPS) {
seconds++;
frameCount = 0;
}
}
Instance of Symbol 124 MovieClip in Frame 3
onClipEvent (enterFrame) {
setProperty(this, _x , _root._xmouse);
setProperty(this, _y , _root._ymouse);
Mouse.hide();
}
Frame 4
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(1);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 102 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(47);
}
}
Instance of Symbol 44 MovieClip "c5" in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c5.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c6" in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c6.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c4" in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c4.gotoAndStop(27);
}
}
Instance of Symbol 325 MovieClip in Frame 4
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 90) {
count = 0;
n = -n;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 154 MovieClip in Frame 4
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 78 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 300;
_root.hero._y = 120;
}
}
Frame 5
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(7);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 154 MovieClip in Frame 5
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 345 MovieClip in Frame 5
onClipEvent (load) {
n = -1;
this._x = 300;
this._y = 370;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 110) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 102 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(66);
}
}
Instance of Symbol 44 MovieClip "c14" in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c14.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c20" in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c20.gotoAndStop(27);
}
}
Frame 6
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(7);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 154 MovieClip in Frame 6
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 78 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 300;
_root.hero._y = 120;
}
}
Instance of Symbol 102 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(85);
}
}
Instance of Symbol 44 MovieClip "c10" in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c10.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c11" in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c11.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c12" in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c12.gotoAndStop(27);
}
}
Frame 7
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(2);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 78 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 285;
_root.hero._y = 160;
}
}
Instance of Symbol 345 MovieClip in Frame 7
onClipEvent (load) {
n = -1;
this._x = 250;
this._y = 370;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 110) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 102 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(104);
}
}
Instance of Symbol 154 MovieClip in Frame 7
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 170) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 44 MovieClip "c13" in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c13.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c15" in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c15.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c16" in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c16.gotoAndStop(27);
}
}
Frame 8
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(2);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 102 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(123);
}
}
Instance of Symbol 375 MovieClip in Frame 8
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 154 MovieClip in Frame 8
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 44 MovieClip "c18" in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c18.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c19" in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c19.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c17" in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c17.gotoAndStop(27);
}
}
Frame 9
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(5);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 78 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 130;
}
}
Instance of Symbol 44 MovieClip "c24" in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c24.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c23" in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c23.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c21" in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c21.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c26" in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c26.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c22" in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c22.gotoAndStop(27);
}
}
Instance of Symbol 102 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(142);
}
}
Instance of Symbol 44 MovieClip "c25" in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c25.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c27" in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c27.gotoAndStop(27);
}
}
Frame 10
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(5);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 154 MovieClip in Frame 10
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 78 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 130;
}
}
Instance of Symbol 345 MovieClip in Frame 10
onClipEvent (load) {
n = -1;
this._x = 300;
this._y = 205;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 100) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 345 MovieClip in Frame 10
onClipEvent (load) {
n = 1;
this._x = 50;
this._y = 205;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 70) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 102 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(161);
}
}
Instance of Symbol 44 MovieClip "c33" in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c33.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c31" in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c31.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c30" in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c30.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c36" in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c36.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c34" in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c34.gotoAndStop(27);
}
}
Frame 11
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(8);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 375 MovieClip in Frame 11
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 60) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 102 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(180);
}
}
Instance of Symbol 154 MovieClip in Frame 11
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 44 MovieClip "c40" in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c40.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c41" in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c41.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c43" in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c43.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c42" in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c42.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c44" in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c44.gotoAndStop(27);
}
}
Frame 12
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(8);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 102 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(199);
}
}
Instance of Symbol 44 MovieClip "c51" in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c51.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c53" in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c53.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c55" in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c55.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c54" in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c54.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c50" in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c50.gotoAndStop(27);
}
}
Instance of Symbol 436 MovieClip in Frame 12
onClipEvent (load) {
rePos = function () {
r = random(250) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 350) {
rePos();
}
}
Instance of Symbol 436 MovieClip in Frame 12
onClipEvent (load) {
rePos = function () {
r = random(250) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 350) {
rePos();
}
}
Instance of Symbol 436 MovieClip in Frame 12
onClipEvent (load) {
rePos = function () {
r = random(250) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 350) {
rePos();
}
}
Instance of Symbol 436 MovieClip in Frame 12
onClipEvent (load) {
rePos = function () {
r = random(250) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 350) {
rePos();
}
}
Frame 13
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(9);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 102 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(218);
}
}
Instance of Symbol 375 MovieClip in Frame 13
onClipEvent (load) {
this._x = 295;
this._y = 115;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 44 MovieClip "c64" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c64.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c62" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c62.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c63" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c63.gotoAndStop(27);
}
}
Instance of Symbol 457 MovieClip in Frame 13
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorA.gotoAndStop(2);
}
}
Instance of Symbol 325 MovieClip in Frame 13
onClipEvent (load) {
this._x = 200;
this._y = 350;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 44 MovieClip "c60" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c60.gotoAndStop(27);
}
}
Instance of Symbol 78 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 100;
_root.hero._y = 150;
}
}
Frame 14
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(9);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 78 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 110;
}
}
Instance of Symbol 78 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 60;
_root.hero._y = 110;
}
}
Instance of Symbol 78 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 60;
_root.hero._y = 110;
}
}
Instance of Symbol 457 MovieClip in Frame 14
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorB.gotoAndStop(2);
}
}
Instance of Symbol 102 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(237);
}
}
Instance of Symbol 154 MovieClip in Frame 14
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Instance of Symbol 44 MovieClip "c72" in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c72.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c71" in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c71.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c70" in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c70.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c73" in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c73.gotoAndStop(27);
}
}
Instance of Symbol 375 MovieClip in Frame 14
onClipEvent (load) {
this._x = 240;
this._y = 365;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Frame 15
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(5);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 102 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(256);
}
}
Instance of Symbol 457 MovieClip in Frame 15
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorC.gotoAndStop(2);
}
}
Instance of Symbol 375 MovieClip in Frame 15
onClipEvent (load) {
this._x = 230;
this._y = 120;
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 150) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 44 MovieClip "c81" in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c81.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c80" in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c80.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c82" in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c82.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c83" in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c83.gotoAndStop(27);
}
}
Instance of Symbol 154 MovieClip in Frame 15
onClipEvent (load) {
n = -1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 135) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
this.gotoAndPlay(7);
}
}
Frame 16
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(5);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 102 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandplay(275);
}
}
Instance of Symbol 457 MovieClip in Frame 16
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorD.gotoAndStop(2);
}
}
Instance of Symbol 78 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 285;
_root.hero._y = 140;
}
}
Instance of Symbol 345 MovieClip in Frame 16
onClipEvent (load) {
n = -1;
this._x = 250;
this._y = 365;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 90) {
count = 0;
n = -n;
this._xscale = -this._xscale;
}
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 44 MovieClip "c91" in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c91.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c93" in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c93.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c92" in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c92.gotoAndStop(27);
}
}
Frame 17
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(8);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 443 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
}
Instance of Symbol 457 MovieClip in Frame 17
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorQ.gotoAndStop(2);
}
}
Instance of Symbol 457 MovieClip in Frame 17
onClipEvent (load) {
gotoAndStop (1);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndStop(2);
_root.map.doorW.gotoAndStop(2);
}
}
Instance of Symbol 494 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandPlay(400);
}
}
Instance of Symbol 44 MovieClip "c100" in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c100.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c101" in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c101.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c103" in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c103.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c102" in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c102.gotoAndStop(27);
}
}
Instance of Symbol 499 MovieClip in Frame 17
onClipEvent (load) {
rePos = function () {
r = random(190) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 400) {
rePos();
}
}
Instance of Symbol 499 MovieClip in Frame 17
onClipEvent (load) {
rePos = function () {
r = random(190) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 400) {
rePos();
}
}
Instance of Symbol 499 MovieClip in Frame 17
onClipEvent (load) {
rePos = function () {
r = random(190) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 400) {
rePos();
}
}
Instance of Symbol 499 MovieClip in Frame 17
onClipEvent (load) {
rePos = function () {
r = random(190) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 400) {
rePos();
}
}
Instance of Symbol 499 MovieClip in Frame 17
onClipEvent (load) {
rePos = function () {
r = random(190) + 50;
this._x = r;
this._y = -r;
x = 1;
};
repos();
}
onClipEvent (enterFrame) {
this._y = this._y + x;
x = x + 0.2;
if (this.hitTest(_root.hero)) {
_root.playGame = false;
_root.hero.gotoAndStop(3);
}
if (this._y > 400) {
rePos();
}
}
Frame 18
left = 0;
top = 0;
step = 0;
i = 0;
while (i < 100) {
name = "mc" + i;
_root.t.attachMovie("background", name, 1000 + i);
_root.t[name]._x = left;
_root.t[name]._y = top;
_root.t[name].gotoAndStop(8);
left = left + 36;
if (step == 9) {
left = 0;
top = top + 36;
step = 0;
} else {
step++;
}
i++;
}
t._alpha = 30;
stop();
Instance of Symbol 102 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.gotoAndPlay(1);
}
}
Frame 38
gotoAndStop (4);
Frame 57
gotoAndStop (5);
Frame 76
gotoAndStop (6);
Frame 95
gotoAndStop (7);
Frame 114
gotoAndStop (8);
Frame 133
gotoAndStop (9);
Frame 152
gotoAndStop (10);
Frame 171
gotoAndStop (11);
Frame 189
stopAllSounds();
Frame 190
gotoAndStop (12);
Frame 208
stopAllSounds();
Frame 209
gotoAndStop (13);
Frame 228
gotoAndStop (14);
Frame 247
gotoAndStop (15);
Frame 266
gotoAndStop (16);
Frame 284
stopAllSounds();
Frame 285
gotoAndStop (17);
Instance of Symbol 494 MovieClip in Frame 400
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.gotoandPlay(400);
}
}
Frame 555
stopAllSounds();
Frame 1270
stop();
Instance of Symbol 124 MovieClip in Frame 1270
onClipEvent (enterFrame) {
setProperty(this, _x , _root._xmouse);
setProperty(this, _y , _root._ymouse);
Mouse.hide();
}
Symbol 20 MovieClip Frame 1
stop();
Symbol 44 MovieClip Frame 26
gotoAndPlay (1);
Symbol 44 MovieClip Frame 27
stop();
Symbol 78 MovieClip Frame 33
gotoAndPlay (1);
Symbol 102 MovieClip Frame 11
gotoAndPlay (1);
Symbol 102 MovieClip Frame 12
gotoAndPlay (1);
Instance of Symbol 20 MovieClip in Symbol 117 MovieClip Frame 1
on (rollOver) {
this.gotoAndStop("over");
}
on (rollOut) {
this.gotoAndStop("up");
}
Instance of Symbol 44 MovieClip "c33" in Symbol 117 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c33.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c12" in Symbol 117 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c12.gotoAndStop(27);
}
}
Instance of Symbol 78 MovieClip in Symbol 117 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 60;
}
}
Instance of Symbol 102 MovieClip in Symbol 117 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
}
Symbol 121 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 121 MovieClip Frame 2
gotoAndPlay (1);
Symbol 133 MovieClip Frame 1
stop();
Symbol 133 MovieClip Frame 10
stop();
Instance of Symbol 44 MovieClip "c33" in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 500;
_root.c33.gotoAndStop(27);
}
}
Instance of Symbol 44 MovieClip "c12" in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
_root.c12.gotoAndStop(27);
}
}
Instance of Symbol 78 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 281;
_root.hero._y = 60;
}
}
Instance of Symbol 102 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(12);
_root.restart();
_root.nextFrame();
}
}
Instance of Symbol 133 MovieClip in Symbol 134 MovieClip Frame 1
on (rollOver) {
this.gotoAndStop("over");
}
on (rollOut) {
this.gotoAndStop("up");
}
on (release) {
_root.play();
}
Symbol 154 MovieClip Frame 6
stop();
Symbol 154 MovieClip Frame 92
gotoAndPlay (1);
Symbol 157 MovieClip Frame 15
gotoAndPlay (1);
Symbol 184 MovieClip Frame 34
_root.restart();
Instance of Symbol 180 MovieClip "sonic" in Symbol 185 MovieClip Frame 1
onClipEvent (load) {
this.stop();
}
Symbol 187 MovieClip Frame 1
stop();
Symbol 287 Button
on (press) {
startDrag ("", false, -50, 0, 50, 0);
}
on (release, dragOut) {
stopDrag();
}
Symbol 291 MovieClip Frame 1
mySound = new Sound();
mySound.attachSound("dance");
mySound.start("", 999);
Instance of Symbol 289 MovieClip "volSlider" in Symbol 291 MovieClip Frame 1
onClipEvent (load) {
_parent.volSlider.drag._x = _parent.volSlider.drag._x + 50;
}
onClipEvent (enterFrame) {
vol = _parent.volSlider.drag._x + 50;
_parent.mySound.setVolume(vol);
_parent.volAt = Math.round(vol);
}
Symbol 296 Button
on (release) {
_quality = "Low";
}
Symbol 298 Button
on (release) {
_quality = "Medium";
}
Symbol 300 Button
on (release) {
_quality = "High";
}
Symbol 325 MovieClip Frame 38
gotoAndPlay (1);
Symbol 328 MovieClip Frame 13
gotoAndPlay (1);
Symbol 332 MovieClip Frame 20
gotoAndPlay (1);
Instance of Symbol 354 MovieClip in Symbol 356 MovieClip Frame 1
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
}
}
Instance of Symbol 78 MovieClip in Symbol 356 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
this.gotoAndPlay(34);
_root.hero._x = 285;
_root.hero._y = 160;
}
}
Instance of Symbol 354 MovieClip in Symbol 370 MovieClip Frame 1
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
}
}
Instance of Symbol 354 MovieClip in Symbol 370 MovieClip Frame 1
onClipEvent (load) {
n = 1;
}
onClipEvent (enterFrame) {
this._x = this._x + n;
count++;
if (count == 80) {
count = 0;
n = -n;
}
}
Symbol 386 MovieClip Frame 51
stop();
Symbol 414 MovieClip Frame 81
stop();
Instance of Symbol 451 MovieClip "doorA" in Symbol 453 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Instance of Symbol 451 MovieClip "doorB" in Symbol 465 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Instance of Symbol 451 MovieClip "doorA" in Symbol 465 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Symbol 468 MovieClip Frame 41
stop();
Instance of Symbol 451 MovieClip "doorC" in Symbol 475 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Instance of Symbol 451 MovieClip "doorD" in Symbol 487 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Instance of Symbol 451 MovieClip "doorQ" in Symbol 490 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Instance of Symbol 451 MovieClip "doorW" in Symbol 490 MovieClip Frame 1
onClipEvent (load) {
gotoAndStop (1);
}
Symbol 494 MovieClip Frame 11
gotoAndPlay (1);
Symbol 494 MovieClip Frame 12
gotoAndPlay (1);
Symbol 498 MovieClip Frame 41
stop();
Symbol 513 MovieClip Frame 20
stop();
Symbol 581 Button
on (release) {
gotoAndPlay (1);
}