Frame 14
if (_root.getBytesLoaded() < _root.getBytesTotal()) {
gotoAndPlay (1);
}
Frame 176
titlescreen_sound = new Sound();
titlescreen_sound.attachSound("themesong_loopable.wav");
titlescreen_sound.start(0, 2);
titlescreen_sound.setVolume(70);
Frame 798
gotoAndPlay (177);
Frame 799
function printMult() {
if (mult > 1) {
multtext = "x" + mult;
} else {
multtext = "";
}
}
function multTimerTick() {
multTimer--;
if (multTimer == 1) {
multTimer = MULTTIMERDELAY;
if (mult > 1) {
multDropper.gotoAndPlay("go");
mult--;
}
printMult();
}
}
function restBounces() {
if ((bounces > 2) && (bounces < 100)) {
loseGameSound.attachSound("c64 parkpatrol 3.wav");
loseGameSound.start();
}
if ((bounces >= 100) && (bounces < 500)) {
loseGameSound.attachSound("c64 nebulus 2.wav");
loseGameSound.start();
}
if ((bounces >= 500) && (bounces < 1000)) {
loseGameSound.attachSound("c64 nebulus.wav");
loseGameSound.start();
plane_ani.gotoAndPlay(2);
}
if (bounces >= 1000) {
loseGameSound.attachSound("c64 sentinel.wav");
loseGameSound.start();
plane_ani.gotoAndPlay(2);
}
bounces = 0;
mult = 1;
printMult();
}
function resetTimer(objectNum) {
objectCounter[objectNum] = 2 + Math.floor(Math.random() * 5);
objectCounter[objectNum] = objectCounter[objectNum] * 20;
}
function changeDay() {
strongbadia_night._visible = false;
strongbadia_day._visible = false;
strongbadia_sunset._visible = false;
fd_night._visible = false;
fd_day._visible = false;
fd_sunset._visible = false;
myDate = new Date();
now = myDate.getHours();
if ((now < 4) || (now > 18)) {
strongbadia_night._visible = true;
strongbadia_night._alpha = 100;
fd_night._visible = true;
fd_night._alpha = 100;
}
if ((now == 5) || (now == 17)) {
strongbadia_sunset._visible = true;
strongbadia_sunset._alpha = 100;
fd_sunset._visible = true;
fd_sunset._alpha = 100;
}
if (now == 4) {
strongbadia_sunset._visible = true;
fd_sunset._visible = true;
strongbadia_night._visible = true;
fd_night._visible = true;
x = Math.floor((myDate.getMinutes() / 60) * 100);
strongbadia_sunset._alpha = x;
fd_sunset._alpha = x;
strongbadia_night._alpha = 100 - x;
fd_night._alpha = 100;
}
if (now == 6) {
strongbadia_sunset._visible = true;
fd_sunset._visible = true;
strongbadia_day._visible = true;
fd_day._visible = true;
x = Math.floor((myDate.getMinutes() / 60) * 100);
strongbadia_day._alpha = 100;
fd_day._alpha = 100;
strongbadia_sunset._alpha = 100 - x;
fd_sunset._alpha = 100 - x;
}
if (now == 16) {
strongbadia_sunset._visible = true;
fd_sunset._visible = true;
strongbadia_day._visible = true;
fd_day._visible = true;
x = Math.floor((myDate.getMinutes() / 60) * 100);
strongbadia_sunset._alpha = x;
fd_sunset._alpha = x;
strongbadia_day._alpha = 100 - x;
fd_day._alpha = 100;
}
if (now == 18) {
strongbadia_sunset._visible = true;
fd_sunset._visible = true;
strongbadia_night._visible = true;
fd_night._visible = true;
x = Math.floor((myDate.getMinutes() / 60) * 100);
strongbadia_night._alpha = x;
fd_night._alpha = 100;
strongbadia_sunset._alpha = 100 - x;
fd_sunset._alpha = 100 - x;
}
if ((now > 6) && (now < 16)) {
strongbadia_day._visible = true;
strongbadia_day._alpha = 100;
fd_day._visible = true;
fd_day._alpha = 100;
}
}
bounces = 0;
total_circles = 1;
movie_width = 550;
movie_height = 400;
speed = 15;
bouncecount = 0;
mostbounces = 0;
winddirection = 0;
windcounter = 0;
mult = 1;
multTimer = 0;
MULTTIMERDELAY = 80;
bigTimer = 0;
flyTimer = 0;
flying_mc._visible = false;
bigging_mc._visible = false;
windchangeSound = new Sound();
windchangeSound.attachSound("c64winddown.wav");
windchangeSound.setPan(-70);
loseGameSound = new Sound();
bounce_sound = new Sound();
bounce_sound.attachSound("tirebounce3.wav");
gravityChange = 0;
objectArray = new Array();
objectCounter = new Array();
objectBusy = new Array();
objectPopOdds = new Array();
objectArray[0] = balloon1;
balloon1.myId = 0;
objectCounter[0] = 0;
objectBusy[0] = false;
objectPopOdds[0] = 0.5;
objectArray[1] = bird1;
bird1.myId = 1;
objectCounter[1] = 0;
objectBusy[1] = false;
objectPopOdds[1] = 1;
objectArray[2] = cheat;
cheat.myId = 2;
objectCounter[2] = 0;
objectBusy[2] = false;
objectPopOdds[2] = 0.6;
objectArray[3] = balloon2;
balloon2.myId = 3;
objectCounter[3] = 0;
objectBusy[3] = false;
objectPopOdds[3] = 0.4;
objectArray[4] = coldone1;
coldone1.myId = 4;
objectCounter[4] = 0;
objectBusy[4] = false;
objectPopOdds[4] = 1;
objectArray[5] = coldone2;
coldone2.myId = 5;
objectCounter[5] = 0;
objectBusy[5] = false;
objectPopOdds[5] = 1;
objectArray[6] = strongsad;
strongsad.myId = 6;
objectCounter[6] = 0;
objectBusy[6] = false;
objectPopOdds[6] = 0.4;
gotoAndPlay (800);
i = 0;
while (i < objectArray.length) {
resetTimer(i);
i++;
}
changeDay();
setInterval(changeDay, 60000);
Instance of Symbol 87 MovieClip in Frame 799
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
delta_x = _root._xmouse - right_flipper._x;
delta_y = _root._ymouse - right_flipper._y;
angleA = Math.atan2(delta_x, delta_y);
degrees = angleA / (Math.pi / 180);
}
}
Instance of Symbol 97 MovieClip in Frame 799
onClipEvent (load) {
offset = 0;
fcount = 1;
}
onClipEvent (enterFrame) {
curtime = (getTimer() - offset) / 1000;
frate = Math.ceil(fcount / curtime);
fcount++;
}
Frame 800
if (bigTimer > 0) {
bigTimer--;
if (bigTimer == 0) {
circle1._xscale = 60;
circle1._yscale = 60;
bigging_mc._visible = false;
bounce_sound.attachSound("tirebounce3.wav");
}
}
if (flyTimer > 0) {
flyTimer--;
if (flyTimer == 0) {
gravityChange = 0;
flying_mc._visible = false;
bounce_sound.attachSound("tirebounce3.wav");
}
}
if (windcounter > 0) {
windcounter--;
} else {
oldwind = winddirection;
winddirection = Math.floor(Math.random() * 8) - 1;
if (winddirection > 1) {
winddirection = 0;
}
if ((winddirection == 0) && (oldwind == -1)) {
flag.gotoAndStop("off_left");
}
if ((winddirection == 0) && (oldwind == 1)) {
flag.gotoAndStop("off_right");
}
if (winddirection == 1) {
flag.gotoAndStop("on_right");
}
if (winddirection == -1) {
flag.gotoAndStop("on_left");
}
windcounter = 5 + Math.floor(Math.random() * 10);
windcounter = windcounter * 20;
if (winddirection != oldwind) {
if (winddirection == 0) {
windchangeSound.start();
}
if (winddirection > 0) {
windchangeNoisemaker.gotoAndPlay("right");
}
if (winddirection < 0) {
windchangeNoisemaker.gotoAndPlay("left");
}
}
}
i = 0;
while (i < objectArray.length) {
if (objectBusy[i] == false) {
if (objectCounter[i] > 0) {
objectCounter[i]--;
} else {
if (Math.random() < objectPopOdds[i]) {
objectBusy[i] = true;
objectArray[i].popMe();
}
objectCounter[i] = 15 + Math.floor(Math.random() * 30);
objectCounter[i] = objectCounter[i] * 20;
}
} else {
objectArray[i].updateMe();
objectArray[i].hitTestMe();
}
i++;
}
if (mult > 0) {
multTimerTick();
}
Frame 801
gotoAndPlay (800);
Symbol 43 Button
on (release) {
titlescreen_sound.stop();
gotoAndPlay (799);
}
Symbol 68 MovieClip Frame 1
function popMe() {
this._y = 292;
this._x = 265 + (Math.random() * 280);
}
function updateMe() {
if (!beingHit) {
_y = (_y - 2.5);
_x = (_x + (_parent.winddirection * 2));
if (_y < -125) {
_parent.objectBusy[myId] = false;
_parent.counterReset(myId);
}
}
}
function hitTestMe() {
if ((_parent.circle1.hitTest(collision) & (!beingHit)) && (_y < 237)) {
beingHit = true;
gotoAndPlay (11);
_parent.mult++;
_parent.multTimer = _parent.MULTTIMERDELAY;
_parent.printMult();
}
}
function clearMe() {
_parent.objectBusy[myId] = false;
_parent.resetTimer(myId);
_y = -1000;
beingHit = false;
}
collision._visible = false;
beingHit = false;
Symbol 68 MovieClip Frame 2
stop();
Symbol 68 MovieClip Frame 23
clearMe();
Symbol 74 MovieClip Frame 1
function popMe() {
if ((_parent.flyTimer <= 0) && (_parent.bigTimer <= 0)) {
this._y = 292;
this._x = 300 + (Math.random() * 80);
gotoAndPlay (2);
beingHit = true;
leavingTimer = 100 + Math.floor((Math.random() * 30) * 20);
wordsTimer = 0;
wordString = "";
} else {
clearMe();
}
}
function updateMe() {
if (!beingHit) {
if (leavingTimer == 0) {
beingHit = true;
gotoAndPlay (50);
} else {
leavingTimer--;
}
if (wordsTimer == 0) {
wordsTimer = 2 + Math.floor((Math.random() * 2) * 20);
wordString = wordsArray[Math.floor(Math.random() * (wordsArray.length - 1)) + 1];
} else {
wordsTimer--;
}
}
}
function hitTestMe() {
if (_parent.circle1.hitTest(collision) & (!beingHit)) {
beingHit = true;
gotoAndPlay (37);
switch (wordString) {
case "SAD" :
wordString = "x0";
_parent.mult = 1;
_parent.printMult();
bad_sound.start();
return;
case "3x" :
_parent.mult = _parent.mult + 3;
_parent.multTimer = _parent.MULTTIMERDELAY;
good_sound.start();
_parent.printMult();
return;
case "2x" :
_parent.mult = _parent.mult + 2;
_parent.multTimer = _parent.MULTTIMERDELAY;
good_sound.start();
_parent.printMult();
return;
case "-2x" :
_parent.mult = _parent.mult - 2;
bad_sound.start();
if (_parent.mult < 1) {
_parent.mult = 1;
}
_parent.printMult();
return;
case "FLY" :
_parent.gravityChange = -1;
_parent.flyTimer = 300;
_parent.flying_mc._visible = true;
good_sound.start();
_parent.bounce_sound.attachSound("tirebounce2.wav");
return;
case "BIG" :
_parent.circle1._xscale = 80;
_parent.circle1._yscale = 80;
_parent.bigTimer = 300;
good_sound.start();
_parent.bounce_sound.attachSound("tirebounce4.wav");
_parent.bigging_mc._visible = true;
return;
}
}
}
function clearMe() {
_y = -1000;
beingHit = false;
_parent.objectBusy[myId] = false;
_parent.resetTimer(myId);
gotoAndStop (28);
}
collision._visible = false;
beingHit = false;
wordsArray = new Array("3x", "2x", "-2x", "BIG", "FLY", "SAD");
wordsTimer = 0;
wordString = "";
leavingTimer = 0;
good_sound = new Sound();
bad_sound = new Sound();
good_sound.attachSound("shmups firefly.wav");
good_sound.setPan(75);
bad_sound.attachSound("strongsad_bad.wav");
bad_sound.setPan(75);
stop();
Symbol 74 MovieClip Frame 23
collision._visible = false;
beingHit = false;
Symbol 74 MovieClip Frame 27
stop();
Symbol 74 MovieClip Frame 28
stop();
Symbol 74 MovieClip Frame 49
clearMe();
stop();
Symbol 74 MovieClip Frame 50
Symbol 74 MovieClip Frame 62
clearMe();
stop();
Symbol 89 MovieClip Frame 1
stop();
Symbol 89 MovieClip Frame 35
stop();
Symbol 89 MovieClip Frame 76
stop();
Symbol 96 Button
on (release) {
fcount = 0;
offset = getTimer();
}
Symbol 100 MovieClip Frame 1
wordsArray = new Array("YOU RULE", "PURE FUN", "GIVE IT UP", "HI-FIVE", "POP:YOU", "ROCK/ROLL", "GOOD ONE", "TIRE-TASTIC!", "JAM ON IT", "LET GO", "PARTY.WOO!", "PARDON ME?", "X-L-NT", "GROW IT OUT", "PARENTAL!!", "GOSH!", "LOVIN' IT", "SPANKIN'!", "YOU 4 EVA", "YOU.COM", "YOU.CALM", "WISHIWASU", "WHO'S THAT?", "THE BOUNCA!");
stop();
Symbol 100 MovieClip Frame 2
wordDisplay = wordsArray[Math.floor(Math.random() * wordsArray.length)];
play();
Symbol 100 MovieClip Frame 100
gotoAndStop (1);
Symbol 105 MovieClip Frame 17
gotoAndPlay (1);
Symbol 105 MovieClip Frame 33
gotoAndPlay (18);
Symbol 107 MovieClip Frame 1
function popMe() {
if (Math.random() > 0.5) {
this._x = 0;
cheat_gfx.gotoAndPlay("right_down");
x_vel = 3;
} else {
this._x = 600;
cheat_gfx.gotoAndPlay("left_down");
x_vel = -3;
}
gotoAndStop (2);
}
function updateMe() {
if (!beingHit) {
_x = (_x + x_vel);
if ((_x > 700) || (_x < -50)) {
clearMe();
}
}
}
function hitTestMe() {
if (_parent.circle1.hitTest(collision) & (!beingHit)) {
beingHit = true;
gotoAndPlay (42);
cheatHit = true;
_parent.mult = _parent.mult + 1;
_parent.multTimer = _parent.MULTTIMERDELAY;
_parent.printMult();
}
}
function redirectCheat() {
beingHit = false;
if (x_vel > 0) {
x_vel = (-x_vel) - 1;
cheat_gfx.gotoAndPlay("left_down");
} else {
x_vel = (-x_vel) + 1;
cheat_gfx.gotoAndPlay("right_down");
}
gotoAndPlay (2);
}
function clearMe() {
_parent.objectBusy[myId] = false;
_parent.resetTimer(myId);
_x = -1000;
beingHit = false;
gotoAndStop (2);
}
collision._visible = false;
beingHit = false;
x_vel = 0;
cheatHit = false;
stop();
Symbol 107 MovieClip Frame 41
gotoAndPlay (2);
Symbol 107 MovieClip Frame 42
cheat_gfx.gotoAndPlay("hitdance");
Symbol 107 MovieClip Frame 53
redirectCheat();
stop();
Symbol 116 MovieClip Frame 1
stop();
Symbol 116 MovieClip Frame 11
stop();
Symbol 116 MovieClip Frame 21
stop();
Symbol 116 MovieClip Frame 31
stop();
Symbol 136 MovieClip Frame 9
if (falling == true) {
gotoAndPlay (1);
}
Symbol 136 MovieClip Frame 44
falling = true;
stop();
_parent.clearMe();
Symbol 138 MovieClip Frame 1
function popMe() {
this._y = 50 + (Math.random() * 100);
this._x = -100;
gotoAndPlay (2);
}
function updateMe() {
if (!beingHit) {
_x = (_x + (6 + _parent.winddirection));
if (_x > 700) {
_parent.objectBusy[myId] = false;
_parent.counterReset(myId);
_x = -100;
this.stop();
}
}
_parent.birdShadow._x = this._x;
}
function hitTestMe() {
if (_parent.circle1.hitTest(collision) & (!beingHit)) {
beingHit = true;
gotoAndPlay (42);
_parent.mult = _parent.mult + 2;
_parent.multTimer = _parent.MULTTIMERDELAY;
_parent.printMult();
}
}
function clearMe() {
_parent.objectBusy[myId] = false;
_parent.resetTimer(myId);
_y = -1000;
_parent.birdShadow._x = -200;
beingHit = false;
gotoAndStop (2);
}
collision._visible = false;
beingHit = false;
birdSound = new Sound();
birdSound.attachSound("c64seagull.wav");
stop();
Symbol 138 MovieClip Frame 21
birdSound.setPan(Math.floor((this._x / 550) * 100));
birdSound.start();
Symbol 138 MovieClip Frame 30
birdSound.setPan(Math.floor((this._x / 550) * 100));
birdSound.start();
Symbol 138 MovieClip Frame 41
gotoAndPlay (2);
Instance of Symbol 136 MovieClip "deadbird" in Symbol 138 MovieClip Frame 42
onClipEvent (load) {
falling = true;
}
onClipEvent (enterFrame) {
if ((_parent._y + this._y) < 340) {
falling = true;
this._y = this._y + 10;
} else if (falling == true) {
falling = false;
this.gotoAndPlay("grounded");
}
}
Symbol 138 MovieClip Frame 54
stop();
Symbol 138 MovieClip Frame 55
clearMe();
Symbol 145 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 2
stop();
Symbol 145 MovieClip Frame 3
stop();
Symbol 145 MovieClip Frame 4
stop();
Symbol 145 MovieClip Frame 5
stop();
Symbol 145 MovieClip Frame 6
stop();
Symbol 145 MovieClip Frame 7
stop();
Symbol 145 MovieClip Frame 8
stop();
Symbol 145 MovieClip Frame 9
stop();
Symbol 145 MovieClip Frame 10
stop();
Symbol 145 MovieClip Frame 11
stop();
Symbol 145 MovieClip Frame 12
stop();
Symbol 145 MovieClip Frame 13
stop();
Symbol 145 MovieClip Frame 14
stop();
Symbol 145 MovieClip Frame 15
stop();
Symbol 145 MovieClip Frame 16
stop();
Symbol 145 MovieClip Frame 17
stop();
Symbol 145 MovieClip Frame 18
stop();
Symbol 146 MovieClip Frame 1
my_radius = this._width / 2;
my_n = this._name;
ymov = (Math.random() * _parent.speed) + 1;
xmov = (Math.random() * _parent.speed) + 1;
ysign = (Math.random() * 2) - 1;
if (ysign == 0) {
ysign = 1;
}
xsign = (Math.random() * 2) - 1;
if (xsign == 0) {
xsign = 1;
}
xmov = xmov * xsign;
ymov = ymov * ysign;
hittimer = 0;
Symbol 146 MovieClip Frame 2
my_x = this._x;
my_y = this._y;
if (xmov > 0) {
xmov = xmov - 0.1;
}
if (xmov < 0) {
xmov = xmov + 0.1;
}
if (bouncecount == 0) {
}
update_x = true;
update_y = true;
ymov = ymov + (2.8 + _parent.gravityChange);
if ((xmov > 0) && (xmov < 0.001)) {
xmov = 0;
}
if ((xmov < 0) && (my_x <= (my_radius + ymov))) {
xmov = xmov * -0.8;
my_x = my_radius + xmov;
_x = my_radius;
update_x = false;
}
if ((xmov > 0) && (my_x >= ((_parent.movie_width - my_radius) - xmov))) {
xmov = xmov * -0.8;
my_x = (_parent.movie_width - my_radius) - xmov;
_x = (_parent.movie_width - my_radius);
update_x = false;
}
if (my_y >= ((_parent.movie_height - my_radius) - ymov)) {
ymov = ymov * 0.6;
ymov = ymov * -1;
my_y = (_parent.movie_height - my_radius) - ymove;
bouncecount++;
_parent.restBounces();
_y = (_parent.movie_height - my_radius);
update_y = false;
if (xmov > 0) {
xmov = xmov - 0.4;
}
if (xmov < 0) {
xmov = xmov + 0.4;
}
}
n = 1;
if (hit_counter > 0) {
hit_counter--;
} else if (_parent.cheat.cheatHit) {
_parent.cheat.cheatHit = false;
ymov = -Math.abs(ymov);
ymov = (ymov - 6) - (Math.random() * 5);
if (ymov < -50) {
ymov = -50;
}
bouncecount = 0;
_parent.bounces = _parent.bounces + _parent.mult;
if (_parent.mostbounces < _parent.bounces) {
_parent.mostbounces = _parent.bounces;
}
} else {
delta_x = (my_x + xmov) - _parent._xmouse;
delta_y = (my_y + ymov) - _parent._ymouse;
delta_y = -Math.abs(delta_y);
if (((delta_x * delta_x) + (delta_y * delta_y)) < ((my_radius + 2.2) * (my_radius + 2.2))) {
hit_counter = 10;
xdiff = delta_x / my_radius;
ymov = ((13 * (delta_y / my_radius)) - 12) - (Math.random() * 5);
if (xdiff > 0) {
xmov = ((Math.random() * 35) * xdiff) + 10;
} else {
xmov = ((Math.random() * 35) * xdiff) - 10;
}
bouncecount = 0;
_parent.bounces = _parent.bounces + _parent.mult;
if (_parent.mostbounces < _parent.bounces) {
_parent.mostbounces = _parent.bounces;
}
_parent.bounce_sound.setPan((this._x / 550) * 100);
_parent.bounce_sound.start();
}
}
if (bouncecount < 12) {
if (update_y) {
_y = (my_y + ymov);
}
}
xmov = xmov + (_parent.winddirection * 0.8);
_parent.tireShadow._x = this._x;
if (update_x) {
if (xmov > 0.1) {
if (tire._currentframe == tire._totalframes) {
tire.gotoAndStop(1);
} else {
tire.gotoAndStop(tire._currentframe + 1);
}
_x = (my_x + xmov);
}
if (xmov > 5) {
if (tire._currentframe == tire._totalframes) {
tire.gotoAndStop(1);
} else {
tire.gotoAndStop(tire._currentframe + 1);
}
}
if (xmov < -0.1) {
if (tire._currentframe == 1) {
tire.gotoAndStop(tire._totalframes);
} else {
tire.gotoAndStop(tire._currentframe - 1);
}
_x = (my_x + xmov);
}
if (xmov < -5) {
if (tire._currentframe == 1) {
tire.gotoAndStop(tire._totalframes);
} else {
tire.gotoAndStop(tire._currentframe - 1);
}
}
}
Symbol 146 MovieClip Frame 3
gotoAndPlay (2);
Symbol 159 MovieClip Frame 1
function popMe() {
if (((myId == 4) && (_parent.mult > 4)) || ((myId == 5) && (_parent.mult > 9))) {
this._y = 150 + (Math.random() * 100);
if (Math.random() > 0.5) {
this._x = -50;
gotoAndPlay (6);
x_vel = 10;
throw_sound.setPan(-80);
} else {
this._x = 600;
gotoAndPlay (14);
x_vel = -10;
throw_sound.setPan(80);
}
throw_sound.start();
y_vel = -5;
this.gotoAndPlay("right");
} else {
_parent.resetTimer(myId);
this.clearMe();
}
}
function updateMe() {
if (!beingHit) {
_x = (_x + x_vel);
_y = (_y + y_vel);
y_vel = y_vel + 0.2;
if ((_x > 700) || (_x < -100)) {
clearMe();
}
}
}
function hitTestMe() {
if (_parent.circle1.hitTest(collision) & (!beingHit)) {
beingHit = true;
gotoAndPlay (23);
_parent.mult = _parent.mult - 5;
if (_parent.mult < 1) {
_parent.mult = 1;
}
_parent.multTimer = _parent.MULTTIMERDELAY;
_parent.printMult();
}
}
function clearMe() {
_parent.objectBusy[myId] = false;
beingHit = false;
_y = -1000;
gotoAndStop (1);
_parent.resetTimer(myId);
}
collision._visible = false;
beingHit = false;
y_vel = 0;
throw_sound = new Sound();
throw_sound.attachSound("c64 montezuma.wav");
stop();
Symbol 159 MovieClip Frame 13
gotoAndPlay (6);
Symbol 159 MovieClip Frame 21
gotoAndPlay (14);
Symbol 159 MovieClip Frame 38
clearMe();
Symbol 163 MovieClip Frame 1
stop();
Symbol 163 MovieClip Frame 15
gotoAndStop (1);