Frame 1
function cleanUp() {
i = 0;
while (i < fans) {
removeMovieClip(_root["mFan" + i]);
i++;
}
removeMovieClip(mBackground);
removeMovieClip(mBall);
removeMovieClip(mTarget);
removeMovieClip(mWin);
i = 0;
while (i < markers) {
removeMovieClip(_root["mMarker" + i]);
i++;
}
dropmode = 1;
}
var cmMenu = new ContextMenu();
cmMenu.hideBuiltInItems();
this.menu = cmMenu;
cleanUp();
stop();
totalturns = 15;
tries = totalturns;
score = 0;
mPlay.onRelease = function () {
mFlash.play();
};
if (mute == undefined) {
music = new Sound();
music.attachSound("mainmusic");
music.start(0, 9999999999);
mute = false;
}
bouncesnd = new Sound();
bouncesnd.attachSound("bounce");
win = new Sound();
win.attachSound("win");
hallpass.onRelease = function () {
getURL ("http://www.hallpass.com/", "_blank");
};
Frame 2
function startGame() {
tries = totalturns;
won = false;
score = 0;
firsttry = true;
bounce = false;
}
function startLevel(fans) {
attachMovie("background", "mBackground", getNextHighestDepth());
mBackground.mScore.text = "tries: " + String(tries);
mBackground.mLevel.text = "level " + String(fans);
attachMovie("wingame", "mWin", _root.getNextHighestDepth());
attachMovie("target", "mTarget", _root.getNextHighestDepth());
mTarget._x = random(Stage.width - 120) + 60;
mTarget._y = Stage.height;
mBall.swapDepths(_root.getNextHighestDepth());
attachMovie("ball", "mBall", getNextHighestDepth());
mBall._x = Stage.width / 2;
mBall._y = 40 + (mBall._height / 2);
dropmode = 1;
yspeed = 0;
xspeed = 0;
ymaxspeed = 14;
gravity = 0.35;
markers = 0;
updateScore();
mBall.onEnterFrame = function () {
if (dropmode == 1) {
this._y = 40 + (this._height / 2);
xspeed = (_xmouse - this._x) / 5;
this._x = this._x + xspeed;
if (this._x > (Stage.width - (this._width / 2))) {
this._x = Stage.width - (this._width / 2);
}
if (this._x < (this._width / 2)) {
this._x = this._width / 2;
}
}
if ((dropmode == 2) || (dropmode == 3)) {
attachMovie("marker", "mMarker" + markers, _root.getNextHighestDepth());
_root["mMarker" + markers]._x = this._x;
_root["mMarker" + markers]._y = this._y;
_root["mMarker" + markers].onEnterFrame = function () {
this._alpha = this._alpha - 0.5;
if (this._alpha <= 0) {
this.removeMovieClip();
}
};
markers++;
this._y = this._y + yspeed;
yspeed = yspeed + gravity;
if (yspeed > ymaxspeed) {
yspeed = ymaxspeed;
}
if (yspeed < (-ymaxspeed)) {
yspeed = -ymaxspeed;
}
xspeed = xspeed * 0.992;
this._x = this._x + xspeed;
if (this._x > (Stage.width - (this._width / 2))) {
this._x = Stage.width - (this._width / 2);
xspeed = xspeed * -0.6;
bouncesnd.start(0, 0);
if (won == false) {
bounce = true;
}
}
if (this._x < (this._width / 2)) {
this._x = this._width / 2;
xspeed = xspeed * -0.6;
bouncesnd.start(0, 0);
if (won == false) {
bounce = true;
}
}
}
if (this._y >= ((Stage.height - 10) - (this._height / 2))) {
this._y = (Stage.height - 10) - (this._height / 2);
if ((this.hitTest(mTarget.mMask) == true) && (dropmode == 2)) {
mWin.play();
mTarget.play();
won = true;
win.start(0, 0);
} else {
if (won == false) {
firsttry = false;
}
bouncesnd.start(0, 0);
if ((mBackground.mAgain._currentframe == 1) && (won != true)) {
won = false;
mBackground.mAgain.play();
tries = tries - 1;
mBackground.mMinus.play();
mBackground.mScore.text = "tries: " + String(tries);
if (tries == 0) {
_root.gotoAndStop(3);
}
}
}
dropmode = 3;
yspeed = yspeed * -0.92;
}
var _local3 = 0;
while (_local3 < fans) {
if (this.hitTest(_root["mFan" + _local3]) == true) {
xspeed = xspeed + (_root["mFan" + _local3].power / Math.abs((this._x - _root["mFan" + _local3]._x) / 20));
}
_local3++;
}
};
var i = 0;
while (i < fans) {
if (random(100) < 50) {
if (random(100) < 50) {
attachMovie("fanright", "mFan" + i, getNextHighestDepth());
_root["mFan" + i]._y = random(Stage.height - 200) + 100;
_root["mFan" + i].power = 1.5;
} else {
attachMovie("suckright", "mFan" + i, getNextHighestDepth());
_root["mFan" + i]._y = random(Stage.height - 200) + 100;
_root["mFan" + i].power = -1.5;
}
} else if (random(100) < 50) {
attachMovie("fanleft", "mFan" + i, getNextHighestDepth());
_root["mFan" + i]._y = random(Stage.height - 200) + 100;
_root["mFan" + i]._x = Stage.width;
_root["mFan" + i].power = -1.5;
} else {
attachMovie("suckleft", "mFan" + i, getNextHighestDepth());
_root["mFan" + i]._y = random(Stage.height - 200) + 100;
_root["mFan" + i]._x = Stage.width;
_root["mFan" + i].power = 1.5;
}
i++;
}
j = 0;
while (j == 0) {
mTarget._x = random(Stage.width - 120) + 60;
i = 0;
while (i < fans) {
if (mTarget.mTest.hitTest(_root["mFan" + i]) == true) {
j = 1;
}
i++;
}
j = j + 0;
}
onMouseDown = function () {
if (!((((_root._xmouse > 259.1) && (_root._xmouse < 282)) && (_root._ymouse > 461.6)) && (_root._ymouse < 477.4))) {
if (won == false) {
if (dropmode == 1) {
dropmode = 2;
yspeed = 0.5;
} else {
bounce = false;
firsttry = false;
if (mBackground.mAgain._currentframe == 1) {
tries = tries - 1;
mBackground.mMinus.play();
mBackground.mScore.text = "tries: " + String(tries);
}
dropmode = 1;
i = 0;
while (i < markers) {
removeMovieClip(_root["mMarker" + i]);
i++;
}
markers = 0;
if (tries == 0) {
_root.gotoAndStop(3);
}
mBackground.mAgain.gotoAndStop(1);
}
}
}
};
mMute.swapDepths(_root.getNextHighestDepth());
}
function newGame() {
score = score + (fans * 10);
if (bounce == true) {
score = score + (fans * 15);
}
bounce = false;
if (firsttry == true) {
score = score + (fans * 15);
}
firsttry = true;
cleanUp();
fans = fans + 1;
startLevel(fans);
won = false;
mMute.swapDepths(_root.getNextHighestDepth());
updateScore();
}
function updateScore() {
mBackground.mPoints.text = "score: " + String(_root.score);
}
startGame();
fans = 1;
startLevel(fans);
mMute.swapDepths(_root.getNextHighestDepth());
mFlash.swapDepths(_root.getNextHighestDepth());
stop();
onEnterFrame = function () {
if (Key.isDown("M".charCodeAt(0)) == true) {
_root.HPScoreService.postScore(_root.score, "");
_root.gotoAndStop(1);
}
};
Frame 3
stop();
_root.HPScoreService.postScore(_root.score, "");
cleanUp();
mAgain.onRelease = function () {
gotoAndStop (1);
};
onEnterFrame = function () {
};
mScore.text = "score: " + _root.score;
hallpass.onRelease = function () {
getURL ("http://www.hallpass.com/", "_blank");
};
Symbol 5 MovieClip Frame 1
stop();
Symbol 5 MovieClip Frame 2
stop();
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip [preloaderexplosion] Frame 1
onClipEvent (load) {
size = random(100);
_xscale = size;
_yscale = size;
xspeed = random(30) - 15;
yspeed = random(30) - 15;
_alpha = 100;
gotoAndStop(random(2) + 1);
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
this._x = this._x + xspeed;
this._y = this._y + yspeed;
_alpha = (_alpha - 2);
if (_alpha < 0) {
_parent.swapDepths(_parent.getNextHighestDepth());
_parent.removeMovieClip();
}
}
Symbol 13 MovieClip [minusone] Frame 1
stop();
Symbol 20 MovieClip Frame 1
stop();
Symbol 20 MovieClip Frame 15
stop();
Symbol 55 MovieClip [target] Frame 1
stop();
Symbol 58 MovieClip [wingame] Frame 1
stop();
Symbol 58 MovieClip [wingame] Frame 92
_root.newGame();
Symbol 63 MovieClip [flash2] Frame 30
stop();
Symbol 78 MovieClip Frame 1
this.onRelease = function () {
if (_root.mute == false) {
_root.mute = true;
_root.music.setVolume(0);
} else {
_root.mute = false;
_root.music.setVolume(100);
}
};
Symbol 86 MovieClip Frame 1
stop();
Symbol 86 MovieClip Frame 30
_root.gotoAndStop(2);