Combined Code
movieClip 22 {
}
instance of movieClip 22 {
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
if (_root.BG.hitTest(_x, _y + 8, true)) {
this._x += 8;
this._y += 3.75;
}
}
if (Key.isDown(38)) {
if (_root.BG.hitTest(_x, _y - 8, true)) {
this._x -= 8;
this._y -= 3.75;
}
}
if (Key.isDown(39)) {
if (_root.BG.hitTest(_x + 8, _y - 3.75, true)) {
this._x += 8;
this._y -= 3.75;
}
}
if (Key.isDown(37)) {
if (_root.BG.hitTest(_x - 8, _y + 3.75, true)) {
this._x -= 8;
this._y += 3.75;
}
}
}
}
movieClip 24 {
}
// unknown tag 88 length 64
movieClip 29 {
}