Frame 1
onEnterFrame = function () {
ifFrameLoaded (139) {
loader = true;
}
};
stop();
var loaded = false;
Frame 15
stop();
Frame 23
stop();
Frame 31
stop();
Frame 45
stop();
Frame 59
stop();
Frame 73
stop();
Frame 87
stop();
Frame 95
stop();
Frame 103
stop();
Frame 117
stop();
Frame 139
stop();
var setting = 1;
var changeSetting = false;
var turd = false;
var autoPilot = false;
var autoMax = 60;
var autoMin = 3;
var autoChance = 15;
var autoType = 0;
var autoNote = 0;
var autoSlideDrag = false;
var autoSlideLoc = 0;
var autoDistance = (autoWallR._x - autoWallL._x);
var autoDistanceWorth = ((autoMax - autoMin) / autoDistance);
var speedMax = 25;
var speedMin = 1;
var speedSlideDrag = false;
var speedSlideLoc = 0;
var speedDistance = (speedWallR._x - speedWallL._x);
var speedDistanceWorth = ((speedMax - speedMin) / speedDistance);
var hitRangeHigh = 0;
var hitRangeLow = 0;
var clearSpeed = 125;
var timerSet = 4;
var cloudXDir = 500;
var cloudYDir = 90;
var cloud1x = 0.25;
var cloud1y = 0.05;
var cloud2x = -0.2;
var cloud2y = 0.05;
var cloud3x = 0.3;
var cloud3y = 0.05;
var slideDistance = (wallR._x - wallL._x);
var slideSpeed = 5.4;
var slideHome = wallL._x;
var relSlideLoc = (slide._x - wallL._x);
var distanceWorth = 0;
var kickDistance = (slideDistance / 3);
var paused = false;
var noteSpace = 30;
var num = 10;
s1a = new Sound();
s1a.attachSound("s1a");
s1b = new Sound();
s1b.attachSound("s1b");
s1c = new Sound();
s1c.attachSound("s1c");
s1d = new Sound();
s1d.attachSound("s1d");
s2a = new Sound();
s2a.attachSound("s2a");
s2b = new Sound();
s2b.attachSound("s2b");
s2c = new Sound();
s2c.attachSound("s2c");
s2d = new Sound();
s2d.attachSound("s2d");
s3a = new Sound();
s3a.attachSound("s3a");
s3b = new Sound();
s3b.attachSound("s3b");
s3c = new Sound();
s3c.attachSound("s3c");
s3d = new Sound();
s3d.attachSound("s3d");
s4a = new Sound();
s4a.attachSound("s4a");
s4b = new Sound();
s4b.attachSound("s4b");
s4c = new Sound();
s4c.attachSound("s4c");
s4d = new Sound();
s4d.attachSound("s4d");
s5a = new Sound();
s5a.attachSound("s5a");
s5b = new Sound();
s5b.attachSound("s5b");
s5c = new Sound();
s5c.attachSound("s5c");
s5d = new Sound();
s5d.attachSound("s5d");
s6a = new Sound();
s6a.attachSound("s6a");
s6b = new Sound();
s6b.attachSound("s6b");
s6c = new Sound();
s6c.attachSound("s6c");
s6d = new Sound();
s6d.attachSound("s6d");
s7a = new Sound();
s7a.attachSound("s7a");
s7b = new Sound();
s7b.attachSound("s7b");
s7c = new Sound();
s7c.attachSound("s7c");
s7d = new Sound();
s7d.attachSound("s7d");
s8a = new Sound();
s8a.attachSound("s8a");
s8b = new Sound();
s8b.attachSound("s8b");
s8c = new Sound();
s8c.attachSound("s8c");
s8d = new Sound();
s8d.attachSound("s8d");
kick = new Sound();
kick.attachSound("kick");
kick1._x = (wallL._x - (kickDistance / 2)) + kickDistance;
kick2._x = (wallL._x - (kickDistance / 2)) + (2 * kickDistance);
kick3._x = (wallL._x - (kickDistance / 2)) + (3 * kickDistance);
cloud1._x = random(400) + 75;
cloud1._y = random(300) + 50;
cloud2._x = random(400) + 75;
cloud2._y = random(300) + 50;
cloud3._x = random(400) + 75;
cloud3._y = random(300) + 50;
repCont.rep1.gotoAndStop("on");
repCont.rep2.gotoAndStop("on");
repCont.rep3.gotoAndStop("on");
repCont.rep4.gotoAndStop("on");
repCont.rep5.gotoAndStop("off");
repCont.rep6.gotoAndStop("off");
repCont.rep7.gotoAndStop("off");
repCont.rep8.gotoAndStop("off");
repCont.rep9.gotoAndStop("off");
repCont.rep10.gotoAndStop("off");
onEnterFrame = function () {
if (!paused) {
hitRangeLow = slide._x - (slideSpeed / 2);
hitRangeHigh = slide._x + (slideSpeed / 2);
slide._x = slide._x + slideSpeed;
}
if (slide._x > wallR._x) {
hitRangeHigh = slide._x + (slideSpeed / 2);
slide._x = slideHome;
}
if (changeSetting) {
changeSetting = false;
}
if (speedSlideDrag) {
speedSlide._x = _xmouse;
if (speedSlide._x < speedWallL._x) {
speedSlide._x = speedWallL._x;
}
if (speedSlide._x > speedWallR._x) {
speedSlide._x = speedWallR._x;
}
speedSlideLoc = speedSlide._x - speedWallL._x;
slideSpeed = speedMin + (speedSlideLoc * speedDistanceWorth);
}
if (autoPilot) {
if (autoSlideDrag) {
autoSlide._x = _xmouse;
if (autoSlide._x < autoWallL._x) {
autoSlide._x = autoWallL._x;
}
if (autoSlide._x > autoWallR._x) {
autoSlide._x = autoWallR._x;
}
autoSlideLoc = autoSlide._x - autoWallL._x;
autoChance = autoMax - (autoSlideLoc * autoDistanceWorth);
}
if (random(autoChance) == 1) {
autoType = random(8) + 1;
autoNote = random(4) + 1;
if (autoType == 1) {
if (autoNote == 1) {
player = attachMovie("players1a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 4) - (noteSpace / 2));
num++;
}
if (autoNote == 2) {
player = attachMovie("players1b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
if (autoNote == 3) {
player = attachMovie("players1c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
if (autoNote == 4) {
player = attachMovie("players1d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - (noteSpace / 2);
num++;
}
}
if (autoType == 2) {
if (autoNote == 1) {
player = attachMovie("players2a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 1) - (noteSpace / 2));
num++;
}
if (autoNote == 2) {
player = attachMovie("players2b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
if (autoNote == 3) {
player = attachMovie("players2c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
if (autoNote == 4) {
player = attachMovie("players2d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
}
if (autoType == 3) {
if (autoNote == 1) {
player = attachMovie("players3a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 4) - (noteSpace / 2));
num++;
}
if (autoNote == 2) {
player = attachMovie("players3b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
if (autoNote == 3) {
player = attachMovie("players3c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
if (autoNote == 4) {
player = attachMovie("players3d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
}
if (autoType == 4) {
if (autoNote == 1) {
player = attachMovie("players4a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 1) - (noteSpace / 2));
num++;
}
if (autoNote == 2) {
player = attachMovie("players4b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
if (autoNote == 3) {
player = attachMovie("players4c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
if (autoNote == 4) {
player = attachMovie("players4d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
}
if (autoType == 5) {
if (autoNote == 1) {
player = attachMovie("players5a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 4) - (noteSpace / 2));
num++;
}
if (autoNote == 2) {
player = attachMovie("players5b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
if (autoNote == 3) {
player = attachMovie("players5c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
if (autoNote == 4) {
player = attachMovie("players5d", "player" + num, 10 + num);
player.place = counter;
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
}
if (autoType == 6) {
if (autoNote == 1) {
player = attachMovie("players6a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 1) - (noteSpace / 2));
num++;
}
if (autoNote == 2) {
player = attachMovie("players6b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
if (autoNote == 3) {
player = attachMovie("players6c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
if (autoNote == 4) {
player = attachMovie("players6d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
}
if (autoType == 7) {
if (autoNote == 1) {
player = attachMovie("players7a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 4) - (noteSpace / 2));
num++;
}
if (autoNote == 2) {
player = attachMovie("players7b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
if (autoNote == 3) {
player = attachMovie("players7c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
if (autoNote == 4) {
player = attachMovie("players7d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
}
if (autoType == 8) {
if (autoNote == 1) {
player = attachMovie("players8a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 1) - (noteSpace / 2));
num++;
}
if (autoNote == 2) {
player = attachMovie("players8b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
if (autoNote == 3) {
player = attachMovie("players8c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
if (autoNote == 4) {
player = attachMovie("players8d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
}
}
}
};
cloud1.onEnterFrame = function () {
this._x = this._x + cloud1x;
this._y = this._y + cloud1y;
if (random(cloudXDir) == 1) {
cloud1x = cloud1x * -1;
}
if (random(cloudYDir) == 1) {
cloud1y = cloud1y * -1;
}
if (this._x < CBL._x) {
cloud1x = cloud1x * -1;
}
if (this._x > CBR._x) {
cloud1x = cloud1x * -1;
}
if (this._y < CBT._y) {
cloud1y = cloud1y * -1;
}
if (this._y > CBB._y) {
cloud1y = cloud1y * -1;
}
};
cloud2.onEnterFrame = function () {
this._x = this._x + cloud2x;
this._y = this._y + cloud2y;
if (random(cloudXDir) == 1) {
cloud2x = cloud2x * -1;
}
if (random(cloudYDir) == 1) {
cloud2y = cloud2y * -1;
}
if (this._x < CBL._x) {
cloud2x = cloud2x * -1;
}
if (this._x > CBR._x) {
cloud2x = cloud2x * -1;
}
if (this._y < CBT._y) {
cloud2y = cloud2y * -1;
}
if (this._y > CBB._y) {
cloud2y = cloud2y * -1;
}
};
cloud3.onEnterFrame = function () {
this._x = this._x + cloud3x;
this._y = this._y + cloud3y;
if (random(cloudXDir) == 1) {
cloud3x = cloud3x * -1;
}
if (random(cloudYDir) == 1) {
cloud3y = cloud3y * -1;
}
if (this._x < CBL._x) {
cloud3x = cloud3x * -1;
}
if (this._x > CBR._x) {
cloud3x = cloud3x * -1;
}
if (this._y < CBT._y) {
cloud2y = cloud2y * -1;
}
if (this._y > CBB._y) {
cloud2y = cloud2y * -1;
}
};
Symbol 77 MovieClip Frame 1
if (_root.setting == 1) {
gotoAndStop ("bird");
}
if (_root.setting == 2) {
gotoAndStop ("space");
}
if (_root.setting == 3) {
gotoAndStop ("water");
}
Symbol 77 MovieClip Frame 2
stop();
Symbol 77 MovieClip Frame 10
gotoAndPlay ("bird");
Symbol 77 MovieClip Frame 11
stop();
Symbol 77 MovieClip Frame 15
gotoAndStop ("space");
Symbol 77 MovieClip Frame 16
stop();
Symbol 77 MovieClip Frame 19
gotoAndPlay ("water");
Symbol 78 MovieClip [players6d] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s6d.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 79 MovieClip [players6c] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s6c.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 80 MovieClip [players6b] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s6b.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 86 MovieClip Frame 1
if (_root.setting == 1) {
gotoAndStop ("bird");
}
if (_root.setting == 2) {
gotoAndStop ("space");
}
if (_root.setting == 3) {
gotoAndStop ("water");
}
Symbol 86 MovieClip Frame 2
stop();
Symbol 86 MovieClip Frame 10
gotoAndPlay ("bird");
Symbol 86 MovieClip Frame 11
stop();
Symbol 86 MovieClip Frame 15
gotoAndStop ("space");
Symbol 86 MovieClip Frame 16
stop();
Symbol 86 MovieClip Frame 19
gotoAndPlay ("water");
Symbol 87 MovieClip [players6a] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s6a.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 88 MovieClip Frame 1
if (_root.setting == 1) {
gotoAndStop ("bird");
}
if (_root.setting == 2) {
gotoAndStop ("space");
}
if (_root.setting == 3) {
gotoAndStop ("water");
}
Symbol 88 MovieClip Frame 2
stop();
Symbol 88 MovieClip Frame 10
gotoAndPlay ("bird");
Symbol 88 MovieClip Frame 11
stop();
Symbol 88 MovieClip Frame 15
gotoAndStop ("space");
Symbol 88 MovieClip Frame 16
stop();
Symbol 88 MovieClip Frame 19
gotoAndPlay ("water");
Symbol 89 MovieClip [players5d] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s5d.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 90 MovieClip [players5c] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s5c.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 91 MovieClip [players5b] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s5b.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 97 MovieClip Frame 1
if (_root.setting == 1) {
gotoAndStop ("bird");
}
if (_root.setting == 2) {
gotoAndStop ("space");
}
if (_root.setting == 3) {
gotoAndStop ("water");
}
Symbol 97 MovieClip Frame 2
stop();
Symbol 97 MovieClip Frame 10
gotoAndPlay ("bird");
Symbol 97 MovieClip Frame 11
stop();
Symbol 97 MovieClip Frame 15
gotoAndStop ("space");
Symbol 97 MovieClip Frame 16
stop();
Symbol 97 MovieClip Frame 19
gotoAndPlay ("water");
Symbol 98 MovieClip [players8d] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s8d.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 99 MovieClip [players8c] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s8c.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 100 MovieClip [players8b] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s8b.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 101 MovieClip [players8a] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s8a.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 102 MovieClip Frame 1
if (_root.setting == 1) {
gotoAndStop ("bird");
}
if (_root.setting == 2) {
gotoAndStop ("space");
}
if (_root.setting == 3) {
gotoAndStop ("water");
}
Symbol 102 MovieClip Frame 2
stop();
Symbol 102 MovieClip Frame 10
gotoAndPlay ("bird");
Symbol 102 MovieClip Frame 11
stop();
Symbol 102 MovieClip Frame 15
gotoAndStop ("space");
Symbol 102 MovieClip Frame 16
stop();
Symbol 102 MovieClip Frame 19
gotoAndPlay ("water");
Symbol 103 MovieClip [players7b] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s7b.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 104 MovieClip [players7d] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s7d.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 105 MovieClip [players7c] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s7c.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 106 MovieClip [players7a] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s7a.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 112 MovieClip Frame 1
if (_root.setting == 1) {
gotoAndStop ("bird");
}
if (_root.setting == 2) {
gotoAndStop ("space");
}
if (_root.setting == 3) {
gotoAndStop ("water");
}
Symbol 112 MovieClip Frame 2
stop();
Symbol 112 MovieClip Frame 10
gotoAndPlay ("bird");
Symbol 112 MovieClip Frame 11
stop();
Symbol 112 MovieClip Frame 15
gotoAndStop ("space");
Symbol 112 MovieClip Frame 16
stop();
Symbol 112 MovieClip Frame 19
gotoAndPlay ("water");
Symbol 113 MovieClip [players4d] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s4d.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 114 MovieClip [players4c] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s4c.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 115 MovieClip [players4b] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s4b.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 116 MovieClip [players4a] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s4a.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 117 MovieClip Frame 1
if (_root.setting == 1) {
gotoAndStop ("bird");
}
if (_root.setting == 2) {
gotoAndStop ("space");
}
if (_root.setting == 3) {
gotoAndStop ("water");
}
Symbol 117 MovieClip Frame 2
stop();
Symbol 117 MovieClip Frame 10
gotoAndPlay ("bird");
Symbol 117 MovieClip Frame 11
stop();
Symbol 117 MovieClip Frame 15
gotoAndStop ("space");
Symbol 117 MovieClip Frame 16
stop();
Symbol 117 MovieClip Frame 19
gotoAndPlay ("water");
Symbol 118 MovieClip [players3d] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s3d.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 119 MovieClip [players3c] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s3c.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 120 MovieClip [players3b] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s3b.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 121 MovieClip [players3a] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s3a.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 122 MovieClip Frame 1
if (_root.setting == 1) {
gotoAndStop ("bird");
}
if (_root.setting == 2) {
gotoAndStop ("space");
}
if (_root.setting == 3) {
gotoAndStop ("water");
}
Symbol 122 MovieClip Frame 2
stop();
Symbol 122 MovieClip Frame 10
gotoAndPlay ("bird");
Symbol 122 MovieClip Frame 11
stop();
Symbol 122 MovieClip Frame 15
gotoAndStop ("space");
Symbol 122 MovieClip Frame 16
stop();
Symbol 122 MovieClip Frame 19
gotoAndPlay ("water");
Symbol 123 MovieClip [players2d] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s2d.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 124 MovieClip [players2c] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s2c.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 125 MovieClip [players2b] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s2b.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 126 MovieClip [players2a] Frame 1
var timer = 0;
stop();
onEnterFrame = function () {
if ((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) {
_root.s2a.start();
timer++;
head.play();
}
if (timer == _root.timerSet) {
this.onEnterFrame = eval (null)();
}
gotoAndStop(timer + 1);
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s2a.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 127 MovieClip [players1d] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s1d.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 128 MovieClip [players1c] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s1c.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 129 MovieClip [players1b] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s1b.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 131 MovieClip [playerClear] Frame 1
var origSpeed = _root.slideSpeed;
var origX = _root.slide._x;
_root.slideSpeed = _root.clearSpeed;
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
timer++;
}
if (timer >= _root.timerSet) {
_root.slideSpeed = origSpeed;
_root.slide._x = origX;
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
};
Symbol 132 MovieClip [players1a] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s1a.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 135 MovieClip [players5a] Frame 1
var timer = 0;
stop();
this.onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.s5a.start();
timer++;
head.play();
}
if (timer >= _root.timerSet) {
this.onEnterFrame = eval (null)();
gotoAndStop ("dead");
}
if (timer < (_root.timerSet - 3)) {
gotoAndStop (1);
}
if (timer == (_root.timerSet - 3)) {
gotoAndStop (2);
}
if (timer == (_root.timerSet - 2)) {
gotoAndStop (3);
}
if (timer == (_root.timerSet - 1)) {
gotoAndStop (4);
}
if (_root.changeSetting) {
gotoAndStop ("dead");
this.onEnterFrame = eval (null)();
}
};
Symbol 142 MovieClip Frame 1
stop();
Symbol 148 Button
on (release) {
_root.gotoAndPlay("about2-about");
}
Symbol 150 Button
on (release) {
getURL ("http://en.wikipedia.org/wiki/Fairlight_CMI", "_blank");
}
Symbol 154 Button
on (release) {
_root.gotoAndPlay("about-main");
}
Symbol 155 Button
on (release) {
getURL ("http://www.andymasteroffish.com/home.html", "_blank");
}
Symbol 156 Button
on (release) {
getURL ("http://www.myspace.com/negatones", "_blank");
}
Symbol 157 Button
on (release) {
getURL ("http://electroplankton.nintendods.com/flash.html", "_blank");
}
Symbol 158 Button
on (release) {
getURL ("mailto:andymasteroffish@gmail.com", "_self");
}
Symbol 159 Button
on (release) {
_root.gotoAndPlay("about-about2");
}
Symbol 162 Button
on (release) {
_root.gotoAndPlay("future-main");
}
Symbol 177 Button
on (release) {
_root.gotoAndPlay("inst2-inst");
}
Symbol 221 Button
on (release) {
_root.gotoAndPlay("inst-main");
}
Symbol 223 Button
on (release) {
_root.gotoAndPlay("inst-inst2");
}
Symbol 225 Button
on (release) {
getURL ("http://www.andymasteroffish.com/home.html", "_blank");
}
Symbol 229 Button
on (release) {
_root.gotoAndPlay("main-inst");
}
Symbol 231 Button
on (release) {
_root.gotoAndPlay("main-about");
}
Symbol 233 Button
on (release) {
_root.gotoAndPlay("main-future");
}
Symbol 240 Button
on (release) {
_root.gotoAndPlay("main-play");
}
Symbol 241 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (_root.loader) {
gotoAndStop (2);
}
};
Symbol 277 MovieClip Frame 1
stop();
Symbol 290 MovieClip Frame 1
stop();
Symbol 296 MovieClip Frame 1
stop();
Symbol 302 MovieClip Frame 1
stop();
Symbol 325 MovieClip Frame 8
gotoAndPlay ("bird");
Symbol 325 MovieClip Frame 9
stop();
Symbol 325 MovieClip Frame 21
gotoAndPlay ("water");
Symbol 334 MovieClip Frame 1
stop();
Symbol 339 MovieClip Frame 1
stop();
Symbol 340 Button
on (release) {
_root.timerSet = 1;
rep1.gotoAndStop("on");
rep2.gotoAndStop("off");
rep3.gotoAndStop("off");
rep4.gotoAndStop("off");
rep5.gotoAndStop("off");
rep6.gotoAndStop("off");
rep7.gotoAndStop("off");
rep8.gotoAndStop("off");
rep9.gotoAndStop("off");
rep10.gotoAndStop("off");
}
Symbol 341 Button
on (release) {
_root.timerSet = 2;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("off");
rep4.gotoAndStop("off");
rep5.gotoAndStop("off");
rep6.gotoAndStop("off");
rep7.gotoAndStop("off");
rep8.gotoAndStop("off");
rep9.gotoAndStop("off");
rep10.gotoAndStop("off");
}
Symbol 342 Button
on (release) {
_root.timerSet = 3;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("on");
rep4.gotoAndStop("off");
rep5.gotoAndStop("off");
rep6.gotoAndStop("off");
rep7.gotoAndStop("off");
rep8.gotoAndStop("off");
rep9.gotoAndStop("off");
rep10.gotoAndStop("off");
}
Symbol 343 Button
on (release) {
_root.timerSet = 4;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("on");
rep4.gotoAndStop("on");
rep5.gotoAndStop("off");
rep6.gotoAndStop("off");
rep7.gotoAndStop("off");
rep8.gotoAndStop("off");
rep9.gotoAndStop("off");
rep10.gotoAndStop("off");
}
Symbol 344 Button
on (release) {
_root.timerSet = 5;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("on");
rep4.gotoAndStop("on");
rep5.gotoAndStop("on");
rep6.gotoAndStop("off");
rep7.gotoAndStop("off");
rep8.gotoAndStop("off");
rep9.gotoAndStop("off");
rep10.gotoAndStop("off");
}
Symbol 345 Button
on (release) {
_root.timerSet = 6;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("on");
rep4.gotoAndStop("on");
rep5.gotoAndStop("on");
rep6.gotoAndStop("on");
rep7.gotoAndStop("off");
rep8.gotoAndStop("off");
rep9.gotoAndStop("off");
rep10.gotoAndStop("off");
}
Symbol 346 Button
on (release) {
_root.timerSet = 7;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("on");
rep4.gotoAndStop("on");
rep5.gotoAndStop("on");
rep6.gotoAndStop("on");
rep7.gotoAndStop("on");
rep8.gotoAndStop("off");
rep9.gotoAndStop("off");
rep10.gotoAndStop("off");
}
Symbol 347 Button
on (release) {
_root.timerSet = 8;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("on");
rep4.gotoAndStop("on");
rep5.gotoAndStop("on");
rep6.gotoAndStop("on");
rep7.gotoAndStop("on");
rep8.gotoAndStop("on");
rep9.gotoAndStop("off");
rep10.gotoAndStop("off");
}
Symbol 348 Button
on (release) {
_root.timerSet = 9;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("on");
rep4.gotoAndStop("on");
rep5.gotoAndStop("on");
rep6.gotoAndStop("on");
rep7.gotoAndStop("on");
rep8.gotoAndStop("on");
rep9.gotoAndStop("on");
rep10.gotoAndStop("off");
}
Symbol 349 Button
on (release) {
_root.timerSet = 10;
rep1.gotoAndStop("on");
rep2.gotoAndStop("on");
rep3.gotoAndStop("on");
rep4.gotoAndStop("on");
rep5.gotoAndStop("on");
rep6.gotoAndStop("on");
rep7.gotoAndStop("on");
rep8.gotoAndStop("on");
rep9.gotoAndStop("on");
rep10.gotoAndStop("on");
}
Symbol 353 MovieClip Frame 1
stop();
Symbol 354 MovieClip Frame 1
stop();
Symbol 355 Button
on (press) {
autoSlideDrag = true;
}
on (release) {
autoSlideDrag = false;
}
on (releaseOutside) {
autoSlideDrag = false;
}
Symbol 360 Button
on (release) {
_root.autoPilot = true;
_root.autoSlide.autoSlideEgg.gotoAndStop("on");
_root.autoBar.gotoAndStop(2);
_root.autoSlide.autoSlide.gotoAndStop(2);
gotoAndStop (2);
}
Symbol 364 Button
on (release) {
_root.autoPilot = false;
_root.autoBar.gotoAndStop(1);
gotoAndStop (1);
}
Symbol 365 MovieClip Frame 1
stop();
Symbol 366 Button
on (press) {
speedSlideDrag = true;
}
on (release) {
speedSlideDrag = false;
}
on (releaseOutside) {
speedSlideDrag = false;
}
Symbol 369 Button
on (release) {
player = attachMovie("playerClear", "player" + num, 10 + num);
player._x = slide._x;
player._y = -100;
num++;
}
Symbol 371 MovieClip Frame 1
stop();
onEnterFrame = function () {
if (((this._x > _root.hitRangeLow) && (this._x <= _root.hitRangeHigh)) && (!_root.paused)) {
_root.kick.start();
}
};
Symbol 373 Button
on (keyPress "<Space>") {
if (paused) {
paused = false;
} else {
paused = true;
}
}
on (keyPress "p") {
player = attachMovie("playerClear", "player" + num, 10 + num);
player._x = slide._x;
player._y = -100;
num++;
}
on (keyPress "1") {
player = attachMovie("players1a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "q") {
player = attachMovie("players1b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
(noteSpace * 3) - 15;
num++;
}
on (keyPress "Q") {
player = attachMovie("players1b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
(noteSpace * 3) - 15;
num++;
}
on (keyPress "a") {
player = attachMovie("players1c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "A") {
player = attachMovie("players1c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "z") {
player = attachMovie("players1d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - (noteSpace / 2);
num++;
}
on (keyPress "Z") {
player = attachMovie("players1d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - (noteSpace / 2);
num++;
}
on (keyPress "2") {
player = attachMovie("players2a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + (noteSpace / 2);
num++;
}
on (keyPress "w") {
player = attachMovie("players2b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "W") {
player = attachMovie("players2b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "s") {
player = attachMovie("players2c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "S") {
player = attachMovie("players2c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "x") {
player = attachMovie("players2d", "player" + num, 10 + num);
player.place = counter;
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "X") {
player = attachMovie("players2d", "player" + num, 10 + num);
player.place = counter;
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "3") {
player = attachMovie("players3a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "e") {
player = attachMovie("players3b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "E") {
player = attachMovie("players3b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "d") {
player = attachMovie("players3c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "D") {
player = attachMovie("players3c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "c") {
player = attachMovie("players3d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "C") {
player = attachMovie("players3d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "4") {
player = attachMovie("players4a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "r") {
player = attachMovie("players4b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "R") {
player = attachMovie("players4b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "f") {
player = attachMovie("players4c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "F") {
player = attachMovie("players4c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "v") {
player = attachMovie("players4d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "V") {
player = attachMovie("players4d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "5") {
player = attachMovie("players5a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "t") {
player = attachMovie("players5b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "T") {
player = attachMovie("players5b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "g") {
player = attachMovie("players5c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "G") {
player = attachMovie("players5c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "b") {
player = attachMovie("players5d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "B") {
player = attachMovie("players5d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "6") {
player = attachMovie("players6a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "y") {
player = attachMovie("players6b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "Y") {
player = attachMovie("players6b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "h") {
player = attachMovie("players6c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "H") {
player = attachMovie("players6c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "n") {
player = attachMovie("players6d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "N") {
player = attachMovie("players6d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "7") {
player = attachMovie("players7a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "u") {
player = attachMovie("players7b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "U") {
player = attachMovie("players7b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "j") {
player = attachMovie("players7c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "J") {
player = attachMovie("players7c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "m") {
player = attachMovie("players7d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "M") {
player = attachMovie("players7d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y - ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "8") {
player = attachMovie("players8a", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 1) - (noteSpace / 2));
num++;
}
on (keyPress "i") {
player = attachMovie("players8b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "I") {
player = attachMovie("players8b", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 2) - (noteSpace / 2));
num++;
}
on (keyPress "k") {
player = attachMovie("players8c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "K") {
player = attachMovie("players8c", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 3) - (noteSpace / 2));
num++;
}
on (keyPress "l") {
player = attachMovie("players8d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
on (keyPress "L") {
player = attachMovie("players8d", "player" + num, 10 + num);
player._x = slide._x;
player._y = slide._y + ((noteSpace * 4) - (noteSpace / 2));
num++;
}
Symbol 374 Button
on (release) {
play();
}
Symbol 375 MovieClip Frame 1
stop();
Symbol 375 MovieClip Frame 8
stop();
Symbol 377 Button
on (release) {
getURL ("http://www.andymasteroffish.com/home.html", "_blank");
}
Symbol 381 MovieClip Frame 1
stop();
Symbol 382 Button
on (release) {
if (turd) {
turd = false;
turdFace.gotoAndStop(1);
s1a.attachSound("s1a");
s1b.attachSound("s1b");
s1c.attachSound("s1c");
s1d.attachSound("s1d");
s2a.attachSound("s2a");
s2b.attachSound("s2b");
s2c.attachSound("s2c");
s2d.attachSound("s2d");
s3a.attachSound("s3a");
s3b.attachSound("s3b");
s3c.attachSound("s3c");
s3d.attachSound("s3d");
s4a.attachSound("s4a");
s4b.attachSound("s4b");
s4c.attachSound("s4c");
s4d.attachSound("s4d");
s5a.attachSound("s5a");
s5b.attachSound("s5b");
s5c.attachSound("s5c");
s5d.attachSound("s5d");
s6a.attachSound("s6a");
s6b.attachSound("s6b");
s6c.attachSound("s6c");
s6d.attachSound("s6d");
s7a.attachSound("s7a");
s7b.attachSound("s7b");
s7c.attachSound("s7c");
s7d.attachSound("s7d");
s8a.attachSound("s8a");
s8b.attachSound("s8b");
s8c.attachSound("s8c");
s8d.attachSound("s8d");
} else {
turd = true;
turdFace.gotoAndStop(2);
s1a.attachSound("t1a");
s1b.attachSound("t1b");
s1c.attachSound("t1c");
s1d.attachSound("t1d");
s2a.attachSound("t2a");
s2b.attachSound("t2b");
s2c.attachSound("t2c");
s2d.attachSound("t2d");
s3a.attachSound("t3a");
s3b.attachSound("t3b");
s3c.attachSound("t3c");
s3d.attachSound("t3d");
s4a.attachSound("t4a");
s4b.attachSound("t4b");
s4c.attachSound("t4c");
s4d.attachSound("t4d");
s5a.attachSound("t5a");
s5b.attachSound("t5b");
s5c.attachSound("t5c");
s5d.attachSound("t5d");
s6a.attachSound("t6a");
s6b.attachSound("t6b");
s6c.attachSound("t6c");
s6d.attachSound("t6d");
s7a.attachSound("t7a");
s7b.attachSound("t7b");
s7c.attachSound("t7c");
s7d.attachSound("t7d");
s8a.attachSound("t8a");
s8b.attachSound("t8b");
s8c.attachSound("t8c");
s8d.attachSound("t8d");
}
}
Symbol 383 MovieClip Frame 101
stop();