Combined Code
frame 1 {
this.onEnterFrame = function () {
z = Math.floor(Math.random() * 10) + 1;
neg = Math.floor(Math.random() * 2) + 1;
if (neg == 1) {
neur._x -= z;
} else {
neur._x += z;
}
z = Math.floor(Math.random() * 10) + 1;
neg = Math.floor(Math.random() * 4) + 1;
if (neg == 1) {
neur._y += z;
} else {
neur._y -= z;
}
if (neur._x > 640) {
neur._X = 1;
}
if (neur._y < 0) {
neur._y = 360;
}
if (neur._x < 0) {
neur._x = 640;
}
if (neur._y > 360) {
neur._y = 0;
}
};
}
// unknown tag 88 length 129
button 6 {
on (keyPress '1') {
gotoAndPlay(3);
}
}
movieClip 9 {
}
frame 2 {
this.onEnterFrame = function () {
gotoAndPlay(1);
};
}
frame 3 {
this.onEnterFrame = function () {
if (neur._x > 260 and neur._x < 330 and neur._y < 200 and neur._y > 80) {
this.play();
gotoAndPlay(7);
}
};
}
frame 6 {
this.onEnterFrame = function () {
gotoAndPlay(1);
};
}
movieClip 18 {
}
movieClip 21 {
}
frame 27 {
gotoAndStop(28);
}
frame 28 {
rep.onPress = function () {
gotoAndPlay(2);
};
}