Frame 1
explosionSound = new Sound();
explosionSound.attachSound("explosion");
Instance of Symbol 51 MovieClip in Frame 1
onClipEvent (load) {
function locateBounds() {
shipTop = getBounds(_root).yMin;
shipBottom = getBounds(_root).yMax;
shipLeft = getBounds(_root).xMin;
shipRight = getBounds(_root).xMax;
shipMiddle = (shipLeft + shipRight) / 2;
}
function shootFunc() {
bulletOnScreen = true;
duplicateMovieClip (_parent.bullet, "bullet1", 2);
_parent.bullet1._x = shipMiddle;
_parent.bullet1._y = shipTop;
}
_name = "spaceShip";
startSpeed = 5;
friction = 1.5;
bulletOnScreen = false;
bulletSpeed = 20;
}
onClipEvent (enterFrame) {
locateBounds();
if (Key.isDown(37)) {
speed = -startSpeed;
}
if (Key.isDown(39)) {
speed = startSpeed;
}
if (bulletOnScreen == false) {
if (Key.isDown(32)) {
shootFunc();
}
}
_x = (_x + speed);
speed = speed / friction;
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Instance of Symbol 55 MovieClip in Frame 1
onClipEvent (load) {
function reloadFunc() {
_x = (((Math.random() * screenRight) / 2) + (screenRight / 4));
_y = (Math.random() * screenBottom);
_xscale = startScale;
_yscale = startScale;
if (_y < (screenBottom / 2)) {
(yTarget = -50);
(yLocation = "topSide");
}
if (_y >= (screenBottom / 2)) {
(yTarget = 450);
(yLocation = "bottomSide");
}
if (_x < (screenRight / 2)) {
(xTarget = -50);
(xLocation = "leftSide");
}
if (_x >= (screenRight / 2)) {
(xTarget = 600);
(xLocation = "rightSide");
}
}
screenLeft = 0;
screenRight = 550;
screenTop = 0;
screenBottom = 400;
startScale = 35;
speed = 15;
reloadFunc();
}
onClipEvent (enterFrame) {
_xscale = (_xscale + speed);
_yscale = (_yscale + speed);
if ((xLocation == "leftSide") and (_x > xTarget)) {
_x = (_x - speed);
}
if ((xLocation == "rightSide") and (_x < xTarget)) {
_x = (_x + speed);
}
if ((yLocation == "topSide") and (_y > yTarget)) {
_y = (_y - speed);
}
if ((yLocation == "bottomSide") and (_y < yTarget)) {
_y = (_y + speed);
}
if ((((xLocation == "leftSide") and (yLocation == "topSide")) and (_x <= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "topSide")) and (_x >= xTarget)) and (_y <= yTarget)) {
reloadFunc();
}
if ((((xLocation == "leftSide") and (yLocation == "bottomSide")) and (_x <= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
if ((((xLocation == "rightSide") and (yLocation == "bottomSide")) and (_x >= xTarget)) and (_y >= yTarget)) {
reloadFunc();
}
}
Frame 2
stop();
_global.subTitles = "off";
Instance of Symbol 96 MovieClip in Frame 2
onClipEvent (load) {
_name = "loadedAnimation";
stop();
}
Instance of Symbol 109 MovieClip in Frame 2
onClipEvent (enterFrame) {
mouse.hide();
_alpha = 50;
_x = _root._xmouse;
_y = _root._ymouse;
}
Instance of Symbol 111 MovieClip in Frame 2
onClipEvent (enterFrame) {
_alpha = 25;
_x = _root._xmouse;
}
Instance of Symbol 111 MovieClip in Frame 2
onClipEvent (enterFrame) {
_alpha = 24;
_y = _root._ymouse;
}
Frame 3
mouse.show();
Instance of Symbol 114 MovieClip in Frame 3
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 124 MovieClip in Frame 20
onClipEvent (enterFrame) {
randomNumber = (Math.random() * 50) + 50;
randomScale = (Math.random() * 1) - 0.5;
_alpha = randomNumber;
_x = (this._x + randomScale);
_y = (this._y + randomScale);
}
Instance of Symbol 124 MovieClip in Frame 50
onClipEvent (enterFrame) {
randomNumber = (Math.random() * 50) + 50;
_alpha = 0;
}
Instance of Symbol 127 MovieClip in Frame 70
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 70
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 142
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 181
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 181
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 632
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 632
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 703
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 703
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 832
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 832
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 989
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 989
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1008
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1008
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1060
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1060
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1074
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1074
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1113
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1113
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1140
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1140
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1206
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1206
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1229
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1229
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1341
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1341
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1365
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1365
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1450
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1450
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1609
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1609
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1806
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1806
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1875
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1875
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1891
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1891
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 1925
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 1925
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2067
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2067
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2150
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2150
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2194
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2194
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2314
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2314
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2514
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2514
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2582
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2582
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2768
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2768
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2782
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2782
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 2836
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 2836
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 114 MovieClip in Frame 3023
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3023
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3023
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3054
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3054
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3097
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3097
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3143
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3143
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3196
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3196
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3208
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3208
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3371
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3371
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3491
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3491
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3511
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3511
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Instance of Symbol 127 MovieClip in Frame 3538
onClipEvent (enterFrame) {
if (subTitles == "off") {
trace("Hit!");
(_root.subTitleBox._visible = false);
_visible = false;
}
}
Instance of Symbol 114 MovieClip in Frame 3538
onClipEvent (load) {
_name = "pauseButton";
}
onClipEvent (mouseUp) {
if (hitTest(_root._xmouse, _root._ymouse)) {
if (_root.pauseButton._currentframe == 1) {
_root.stop();
_root.pauseButton.gotoAndPlay(2);
} else {
_root.play();
_root.pauseButton.gotoAndPlay(1);
}
}
}
Frame 4012
stop();
Instance of Symbol 431 MovieClip in Frame 4012
onClipEvent (enterFrame) {
mouse.hide();
_x = (_root._xmouse + 100);
_y = (_root._ymouse + 50);
}
Instance of Symbol 793 MovieClip in Frame 4012
onClipEvent (enterFrame) {
_x = _root._xmouse;
_y = _root._ymouse;
}
Symbol 38 MovieClip Frame 1
stop();
Symbol 40 MovieClip Frame 1
stop();
Symbol 42 MovieClip Frame 1
stop();
Symbol 44 MovieClip Frame 1
stop();
Symbol 46 MovieClip Frame 1
stop();
Symbol 48 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 1
Instance of Symbol 27 MovieClip in Symbol 49 MovieClip Frame 1
onClipEvent (load) {
_parent.bytesTotalText = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded == 100) {
_root.play();
}
_parent.bytesText = _root.getBytesLoaded();
_parent.percentText = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
_parent.errorsText = Math.floor(_root.getBytesLoaded() / 5);
_parent.warsText = Math.floor(_parent.percentText / 40);
}
Instance of Symbol 38 MovieClip in Symbol 49 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.bullet1) and (_currentframe == 1)) {
(_root.spaceShip.bulletOnScreen = false);
_parent.hoboText++;
_root.explosionSound.start();
play();
}
}
Instance of Symbol 40 MovieClip in Symbol 49 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.bullet1) and (_currentframe == 1)) {
(_root.spaceShip.bulletOnScreen = false);
(_parent.hoboText = _parent.hoboText + 2);
_root.explosionSound.start();
play();
}
}
Instance of Symbol 42 MovieClip in Symbol 49 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.bullet1) and (_currentframe == 1)) {
(_root.spaceShip.bulletOnScreen = false);
(_parent.hoboText = _parent.hoboText + 3);
_root.explosionSound.start();
play();
}
}
Instance of Symbol 44 MovieClip in Symbol 49 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.bullet1) and (_currentframe == 1)) {
(_root.spaceShip.bulletOnScreen = false);
(_parent.hoboText = _parent.hoboText + 4);
_root.explosionSound.start();
play();
}
}
Instance of Symbol 46 MovieClip in Symbol 49 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.bullet1) and (_currentframe == 1)) {
(_root.spaceShip.bulletOnScreen = false);
(_parent.hoboText = _parent.hoboText + 5);
_root.explosionSound.start();
play();
}
}
Instance of Symbol 48 MovieClip in Symbol 49 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.bullet1) and (_currentframe == 1)) {
(_root.spaceShip.bulletOnScreen = false);
(_parent.hoboText = _parent.hoboText + 6);
_root.explosionSound.start();
play();
}
}
Instance of Symbol 52 MovieClip in Symbol 53 MovieClip Frame 1
onClipEvent (load) {
speed = 15;
screenTop = 0;
finished = false;
}
onClipEvent (enterFrame) {
if (_parent._name != "bullet") {
if (_parent._y < screenTop) {
finished = true;
}
if (finished == true) {
_root.spaceShip.bulletOnScreen = false;
}
if (finished == false) {
_parent._y = _parent._y - speed;
}
if (_root.spaceShip.bulletOnScreen == false) {
_parent.removeMovieClip();
}
}
}
Instance of Symbol 61 MovieClip in Symbol 64 MovieClip Frame 1
onClipEvent (enterFrame) {
randomNumber = (Math.random() * 50) + 50;
randomScale = (Math.random() * 0.5) + 99.75;
_alpha = randomNumber;
_xscale = randomScale;
_yscale = randomScale;
}
Instance of Symbol 63 MovieClip in Symbol 64 MovieClip Frame 1
onClipEvent (enterFrame) {
randomScale = (Math.random() * 0.5) + 99.75;
_xscale = randomScale;
_yscale = randomScale;
}
Symbol 68 Button
on (release) {
if (_quality == "HIGH") {
_quality = "LOW";
(_root.qualityText = "Current quality is low.");
} else {
_quality = "HIGH";
(_root.qualityText = "Current quality is high.");
}
}
Symbol 96 MovieClip Frame 32
_root.explosionSound.start();
Symbol 96 MovieClip Frame 43
_root.play();
Symbol 100 Button
on (release) {
_root.loadedAnimation.play();
}
Symbol 104 Button
on (release) {
if (subTitles == "off") {
(_global.subTitles = "on");
(_root.titlesText = "Subtitles are on.");
} else {
(_global.subTitles = "off");
(_root.titlesText = "Subtitles are off.");
}
}
Symbol 114 MovieClip Frame 1
stop();
Symbol 114 MovieClip Frame 2
stop();
Symbol 116 Button
on (release) {
gotoAndStop (70);
_root.play();
}
Symbol 117 Button
on (release) {
gotoAndStop (2);
_root.play();
}
Symbol 120 Button
on (release) {
if (_quality == "HIGH") {
_quality = "LOW";
} else {
_quality = "HIGH";
}
}
Symbol 130 Button
on (release) {
gotoAndStop (142);
_root.play();
}
Symbol 131 Button
on (release) {
gotoAndStop (3);
_root.play();
}
Symbol 148 Button
on (release) {
gotoAndStop (181);
_root.play();
}
Symbol 149 Button
on (release) {
gotoAndStop (70);
_root.play();
}
Symbol 172 Button
on (release) {
gotoAndStop (632);
_root.play();
}
Symbol 173 Button
on (release) {
gotoAndStop (142);
_root.play();
}
Symbol 220 Button
on (release) {
gotoAndStop (703);
_root.play();
}
Symbol 221 Button
on (release) {
gotoAndStop (181);
_root.play();
}
Symbol 253 Button
on (release) {
gotoAndStop (832);
_root.play();
}
Symbol 254 Button
on (release) {
gotoAndStop (632);
_root.play();
}
Symbol 307 Button
on (release) {
gotoAndStop (989);
_root.play();
}
Symbol 308 Button
on (release) {
gotoAndStop (703);
_root.play();
}
Symbol 313 Button
on (release) {
gotoAndStop (1008);
_root.play();
}
Symbol 314 Button
on (release) {
gotoAndStop (832);
_root.play();
}
Symbol 321 Button
on (release) {
gotoAndStop (1060);
_root.play();
}
Symbol 322 Button
on (release) {
gotoAndStop (989);
_root.play();
}
Symbol 333 Button
on (release) {
gotoAndStop (1074);
_root.play();
}
Symbol 334 Button
on (release) {
gotoAndStop (1008);
_root.play();
}
Symbol 337 Button
on (release) {
gotoAndStop (1113);
_root.play();
}
Symbol 338 Button
on (release) {
gotoAndStop (1060);
_root.play();
}
Symbol 345 Button
on (release) {
gotoAndStop (1140);
_root.play();
}
Symbol 346 Button
on (release) {
gotoAndStop (1074);
_root.play();
}
Symbol 349 Button
on (release) {
gotoAndStop (1206);
_root.play();
}
Symbol 350 Button
on (release) {
gotoAndStop (1113);
_root.play();
}
Symbol 357 Button
on (release) {
gotoAndStop (1229);
_root.play();
}
Symbol 358 Button
on (release) {
gotoAndStop (1140);
_root.play();
}
Symbol 361 Button
on (release) {
gotoAndStop (1341);
_root.play();
}
Symbol 362 Button
on (release) {
gotoAndStop (1206);
_root.play();
}
Symbol 376 Button
on (release) {
gotoAndStop (1365);
_root.play();
}
Symbol 377 Button
on (release) {
gotoAndStop (1229);
_root.play();
}
Symbol 383 Button
on (release) {
gotoAndStop (1450);
_root.play();
}
Symbol 384 Button
on (release) {
gotoAndStop (1341);
_root.play();
}
Symbol 436 Button
on (release) {
gotoAndStop (1609);
_root.play();
}
Symbol 437 Button
on (release) {
gotoAndStop (1365);
_root.play();
}
Symbol 491 Button
on (release) {
gotoAndStop (1806);
_root.play();
}
Symbol 492 Button
on (release) {
gotoAndStop (1450);
_root.play();
}
Symbol 548 Button
on (release) {
gotoAndStop (1875);
_root.play();
}
Symbol 549 Button
on (release) {
gotoAndStop (1609);
_root.play();
}
Symbol 557 Button
on (release) {
gotoAndStop (1891);
_root.play();
}
Symbol 558 Button
on (release) {
gotoAndStop (1806);
_root.play();
}
Symbol 561 Button
on (release) {
gotoAndStop (1925);
_root.play();
}
Symbol 562 Button
on (release) {
gotoAndStop (1875);
_root.play();
}
Symbol 569 Button
on (release) {
gotoAndStop (2067);
_root.play();
}
Symbol 570 Button
on (release) {
gotoAndStop (1891);
_root.play();
}
Symbol 576 Button
on (release) {
gotoAndStop (2150);
_root.play();
}
Symbol 577 Button
on (release) {
gotoAndStop (1925);
_root.play();
}
Symbol 585 Button
on (release) {
gotoAndStop (2194);
_root.play();
}
Symbol 586 Button
on (release) {
gotoAndStop (2067);
_root.play();
}
Symbol 593 Button
on (release) {
gotoAndStop (2314);
_root.play();
}
Symbol 594 Button
on (release) {
gotoAndStop (2150);
_root.play();
}
Symbol 601 Button
on (release) {
gotoAndStop (2514);
_root.play();
}
Symbol 602 Button
on (release) {
gotoAndStop (2194);
_root.play();
}
Symbol 613 Button
on (release) {
gotoAndStop (2582);
_root.play();
}
Symbol 614 Button
on (release) {
gotoAndStop (2314);
_root.play();
}
Symbol 627 Button
on (release) {
gotoAndStop (2768);
_root.play();
}
Symbol 628 Button
on (release) {
gotoAndStop (2514);
_root.play();
}
Symbol 633 Button
on (release) {
gotoAndStop (2782);
_root.play();
}
Symbol 634 Button
on (release) {
gotoAndStop (2582);
_root.play();
}
Symbol 636 Button
on (release) {
gotoAndStop (2836);
_root.play();
}
Symbol 637 Button
on (release) {
gotoAndStop (2768);
_root.play();
}
Symbol 644 Button
on (release) {
gotoAndStop (3023);
_root.play();
}
Symbol 645 Button
on (release) {
gotoAndStop (2782);
_root.play();
}
Symbol 661 Button
on (release) {
gotoAndStop (3054);
_root.play();
}
Symbol 662 Button
on (release) {
gotoAndStop (2836);
_root.play();
}
Symbol 665 Button
on (release) {
gotoAndStop (3097);
_root.play();
}
Symbol 666 Button
on (release) {
gotoAndStop (3023);
_root.play();
}
Symbol 671 Button
on (release) {
gotoAndStop (3143);
_root.play();
}
Symbol 672 Button
on (release) {
gotoAndStop (3054);
_root.play();
}
Symbol 676 Button
on (release) {
gotoAndStop (3196);
_root.play();
}
Symbol 677 Button
on (release) {
gotoAndStop (3097);
_root.play();
}
Symbol 681 Button
on (release) {
gotoAndStop (3208);
_root.play();
}
Symbol 682 Button
on (release) {
gotoAndStop (3143);
_root.play();
}
Symbol 692 Button
on (release) {
gotoAndStop (3371);
_root.play();
}
Symbol 693 Button
on (release) {
gotoAndStop (3196);
_root.play();
}
Symbol 706 Button
on (release) {
gotoAndStop (3491);
_root.play();
}
Symbol 707 Button
on (release) {
gotoAndStop (3208);
_root.play();
}
Symbol 711 Button
on (release) {
gotoAndStop (3511);
_root.play();
}
Symbol 712 Button
on (release) {
gotoAndStop (3371);
_root.play();
}
Symbol 714 Button
on (release) {
gotoAndStop (3538);
_root.play();
}
Symbol 715 Button
on (release) {
gotoAndStop (3491);
_root.play();
}
Symbol 719 Button
on (release) {
gotoAndStop (3670);
_root.play();
}
Symbol 720 Button
on (release) {
gotoAndStop (3511);
_root.play();
}
Symbol 770 Button
on (release) {
play();
}
Symbol 771 Button
on (release) {
prevFrame();
}
Symbol 791 MovieClip Frame 1
stop();
stopAllSounds();
Symbol 791 MovieClip Frame 2
stop();
stopAllSounds();
meatloafSound = new Sound();
meatloafSound.attachSound("meatloaf");
meatloafSound.start();
Symbol 791 MovieClip Frame 3
stop();
stopAllSounds();
springerSound = new Sound();
springerSound.attachSound("springer");
springerSound.start();
Symbol 791 MovieClip Frame 4
stop();
stopAllSounds();
technoSound = new Sound();
technoSound.attachSound("techno");
technoSound.start(0, 1000);
Symbol 791 MovieClip Frame 5
stop();
stopAllSounds();
Symbol 791 MovieClip Frame 6
stop();
stopAllSounds();
Symbol 791 MovieClip Frame 7
stop();
stopAllSounds();
Symbol 794 Button
on (release) {
gotoAndPlay (2);
}