Symbol 11 MovieClip Frame 1 (83 B)
this.stop();
this.onEnterFrame = function () {
dir = 1;
this.nextFrame();
};
Symbol 11 MovieClip Frame 6 (252 B)
this.onEnterFrame = function () {
if (Math.floor(Math.random() * 10) < 1) {
if (dir == -1) {
dir = 1;
this.nextFrame();
}
} else if (dir == 1) {
dir = 1;
this.nextFrame();
} else {
dir = -1;
this.prevFrame();
}
};
Symbol 11 MovieClip Frame 11 (252 B)
this.onEnterFrame = function () {
if (Math.floor(Math.random() * 15) < 1) {
if (dir == -1) {
dir = 1;
this.nextFrame();
}
} else if (dir == 1) {
dir = 1;
this.nextFrame();
} else {
dir = -1;
this.prevFrame();
}
};
Symbol 11 MovieClip Frame 16 (252 B)
this.onEnterFrame = function () {
if (Math.floor(Math.random() * 20) < 1) {
if (dir == -1) {
dir = 1;
this.nextFrame();
}
} else if (dir == 1) {
dir = 1;
this.nextFrame();
} else {
dir = -1;
this.prevFrame();
}
};
Symbol 11 MovieClip Frame 21 (299 B)
this.onEnterFrame = function () {
if (Math.floor(Math.random() * 30) < 1) {
if (dir == 1) {
dir = -1;
this.prevFrame();
} else {
dir = 1;
this.nextFrame();
}
} else if (dir == 1) {
dir = 1;
this.nextFrame();
} else {
dir = -1;
this.prevFrame();
}
};
Symbol 11 MovieClip Frame 26 (252 B)
this.onEnterFrame = function () {
if (Math.floor(Math.random() * 20) < 1) {
if (dir == 1) {
dir = -1;
this.prevFrame();
}
} else if (dir == 1) {
dir = 1;
this.nextFrame();
} else {
dir = -1;
this.prevFrame();
}
};
Symbol 11 MovieClip Frame 31 (252 B)
this.onEnterFrame = function () {
if (Math.floor(Math.random() * 15) < 1) {
if (dir == 1) {
dir = -1;
this.prevFrame();
}
} else if (dir == 1) {
dir = 1;
this.nextFrame();
} else {
dir = -1;
this.prevFrame();
}
};
Symbol 11 MovieClip Frame 36 (252 B)
this.onEnterFrame = function () {
if (Math.floor(Math.random() * 10) < 1) {
if (dir == 1) {
dir = -1;
this.prevFrame();
}
} else if (dir == 1) {
dir = 1;
this.nextFrame();
} else {
dir = -1;
this.prevFrame();
}
};
Symbol 11 MovieClip Frame 41 (70 B)
this.onEnterFrame = function () {
dir = -1;
this.prevFrame();
};