Frame 1
stop();
Frame 33
function tick() {
if (tickcounter >= 10) {
tickcounter = tickcounter - 10;
} else {
clearInterval(counter);
}
}
function countdown() {
trace("tick " + timer.timer);
seconds--;
timer.timer.text = seconds;
if (seconds == 10) {
myColor = new Color(timer);
myColor.setRGB(13115190);
}
if (seconds <= 0) {
clearInterval(timerInterval);
clearInterval(counter);
gameOver();
}
}
function gameOver() {
trace(("game over, your score is " + myscore) + ".");
game = "over";
myColor.setRGB(0);
gotoAndPlay ("out");
}
var myscore = 0;
var tickcounter = 60;
var seconds = 60;
var numpeople = 9;
var game;
scorer.scoregroup.score.text = myscore;
var counter = setInterval(tick, 10000);
var timerInterval = setInterval(countdown, 1000);
timer.timer.text = seconds;
mascotpc.onEnterFrame = function () {
this._x = cloud1._x + 50;
this._y = cloud1._y - 20;
};
mascotpc.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud1._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud1._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud1._x + 50;
this._y = cloud1._y - 20;
};
}
};
};
mascotpc.onRelease = function () {
trace("release");
if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("mascot_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(mascot, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
gotoAndPlay ("out");
clearInterval(myinterval);
}
} else if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("gamer_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("band_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("hippie_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("activist_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("goth_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud1._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud1._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud1._x + 50;
this._y = cloud1._y - 20;
};
};
bandpc.onEnterFrame = function () {
this._x = cloud2._x + 50;
this._y = cloud2._y - 20;
};
bandpc.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud2._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud2._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud2._x + 50;
this._y = cloud2._y - 20;
};
}
};
};
bandpc.onRelease = function () {
trace("release");
if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("bandmate_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(bandmate, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
clearInterval(timerInterval);
clearInterval(counter);
gotoAndPlay ("out");
clearInterval(myinterval);
}
} else if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("gamer_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("mascot_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("hippie_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("activist_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("goth_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud2._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud2._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud2._x + 50;
this._y = cloud2._y - 20;
};
};
girlycomputer.onEnterFrame = function () {
this._x = cloud3._x + 50;
this._y = cloud3._y - 20;
};
girlycomputer.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud3._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud3._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud3._x + 50;
this._y = cloud3._y - 20;
};
}
};
};
girlycomputer.onRelease = function () {
trace("release");
if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cheerleader, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
clearInterval(timerInterval);
clearInterval(counter);
gotoAndPlay ("out");
}
} else if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("gamer_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("mascot_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("hippie_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("activist_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("bandmate_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("goth_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud3._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud3._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud3._x + 50;
this._y = cloud3._y - 20;
};
};
fratpc.onEnterFrame = function () {
this._x = cloud4._x + 50;
this._y = cloud4._y - 20;
};
fratpc.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud4._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud4._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud4._x + 50;
this._y = cloud4._y - 20;
};
}
};
};
fratpc.onRelease = function () {
trace("release");
if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(overachiever, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
gotoAndPlay ("out");
clearInterval(timerInterval);
clearInterval(counter);
}
} else if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("gamer_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("mascot_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("hippie_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("activist_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("bandmate_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("goth_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud4._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud4._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud4._x + 50;
this._y = cloud4._y - 20;
};
};
gamerpc.onEnterFrame = function () {
this._x = cloud5._x + 50;
this._y = cloud5._y - 20;
};
gamerpc.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud5._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud5._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud5._x + 50;
this._y = cloud5._y - 20;
};
}
};
};
gamerpc.onRelease = function () {
trace("release");
if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("gamer_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(gamer, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
gotoAndPlay ("out");
clearInterval(timerInterval);
clearInterval(counter);
}
} else if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("bandmate_yay");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("mascot_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("hippie_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("activist_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("goth_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud5._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud5._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud5._x + 50;
this._y = cloud5._y - 20;
};
};
punkpc.onEnterFrame = function () {
this._x = cloud6._x + 50;
this._y = cloud6._y - 20;
};
punkpc.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud6._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud6._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud6._x + 50;
this._y = cloud6._y - 20;
};
}
};
};
punkpc.onRelease = function () {
trace("release");
if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("gothchick_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(gothchick, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
gotoAndPlay ("out");
clearInterval(timerInterval);
clearInterval(counter);
}
} else if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("gamer_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("mascot_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("hippie_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("activist_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("bandmate_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud6._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud6._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud6._x + 50;
this._y = cloud6._y - 20;
};
};
activistpc.onEnterFrame = function () {
this._x = cloud7._x + 50;
this._y = cloud7._y - 20;
};
activistpc.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud7._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud7._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud7._x + 50;
this._y = cloud7._y - 20;
};
}
};
};
activistpc.onRelease = function () {
trace("release");
if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("activist_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(activist, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
gotoAndPlay ("out");
clearInterval(timerInterval);
clearInterval(counter);
}
} else if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("gamer_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("mascot_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("hippie_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("bandmate_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("goth_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud7._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud7._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud7._x + 50;
this._y = cloud7._y - 20;
};
};
artistpc.onEnterFrame = function () {
this._x = cloud8._x + 50;
this._y = cloud8._y - 20;
};
artistpc.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud8._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud8._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud8._x + 50;
this._y = cloud8._y - 20;
};
}
};
};
artistpc.onRelease = function () {
trace("release");
if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(artstudent, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
gotoAndPlay ("out");
clearInterval(timerInterval);
clearInterval(counter);
}
} else if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("gamer_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("mascot_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("hippie_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("activist_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("bandmate_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("goth_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud8._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud8._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud8._x + 50;
this._y = cloud8._y - 20;
};
};
hippiepc.onEnterFrame = function () {
this._x = cloud9._x + 50;
this._y = cloud9._y - 20;
};
hippiepc.onPress = function () {
delete this.onEnterFrame;
trace("press");
this.onEnterFrame = function () {
this._x = _root._xmouse;
this._y = _root._ymouse;
if ((((_root._xmouse <= 0) || (_root._xmouse > 640)) || (_root._ymouse <= 0)) || (_root._ymouse > 540)) {
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud9._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud9._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud9._x + 50;
this._y = cloud9._y - 20;
};
}
};
};
hippiepc.onRelease = function () {
trace("release");
if (hippie.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("match!");
tempsound = new Sound(this);
tempsound.attachSound("hippie_yay");
tempsound.start();
delete eval (this.onEnterFrame());
new mx.transitions.Tween(this, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(hippie, "_alpha", mx.transitions.easing.Elastic.easeOut, 100, 0, 1, true);
myscore = myscore + 10;
numpeople--;
scorer.scoregroup.score.text = myscore;
if (numpeople <= 0) {
trace((("you win! your score is " + myscore) + " time bonus: ") + tickcounter);
game = "win";
gotoAndPlay ("out");
clearInterval(timerInterval);
clearInterval(counter);
}
} else if (gamer.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("gamer_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (mascot.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("mascot_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (bandmate.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("bandmate_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (activist.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("activist_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (cheerleader.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("cheerleader_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (artstudent.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("artstudent_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (overachiever.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("overachiever_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
} else if (gothchick.hitTest(_root._xmouse, _root._ymouse, false)) {
trace("boo");
tempsound = new Sound(this);
tempsound.attachSound("goth_uhoh");
tempsound.start();
myscore = myscore - 5;
scorer.scoregroup.score.text = myscore;
}
new mx.transitions.Tween(this, "_x", mx.transitions.easing.Regular.easeOut, this._x, cloud9._x + 81, 1, true);
new mx.transitions.Tween(this, "_y", mx.transitions.easing.Regular.easeOut, this._y, cloud9._y - 20, 1, true);
delete this.onEnterFrame;
this.onEnterFrame = function () {
this._x = cloud9._x + 50;
this._y = cloud9._y - 20;
};
};
stop();
count = 0;
cloud1.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud2._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
cloud2.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud3._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
cloud3.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud4._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
cloud4.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud5._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
cloud5.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud6._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
cloud6.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud7._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
cloud7.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud8._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
cloud8.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud9._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
cloud9.onEnterFrame = function () {
this._x = this._x + 2;
if (this._x > 670) {
this._x = (((-this._width) + cloud1._x) - 40) - (Math.random() * 10);
}
if (count < 50) {
this._y = this._y - 0.25;
} else {
this._y = this._y + 0.25;
}
count++;
if (count >= 100) {
count = 0;
}
};
Frame 39
background.gotoAndPlay("out");
new mx.transitions.Tween(cloud1, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cloud2, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cloud3, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cloud4, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cloud5, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cloud6, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cloud7, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cloud8, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
new mx.transitions.Tween(cloud9, "_alpha", mx.transitions.easing.Regular.easeOut, 100, 0, 1, true);
Frame 42
stop();
trace(game);
if (game == "over") {
gotoAndStop ("gameover");
} else {
gotoAndStop ("win");
}
Frame 43
stop();
clearInterval(timerInterval);
clearInterval(counter);
Frame 44
stop();
clearInterval(timerInterval);
clearInterval(counter);
Symbol 29 MovieClip Frame 10
stop();
Symbol 33 MovieClip Frame 6
loadVariables ("../../../flashtracker.php?location=matchup", this);
Symbol 33 MovieClip Frame 75
stop();
Symbol 35 Button
on (release) {
gotoAndPlay ("go");
}
Symbol 139 MovieClip [__Packages.mx.transitions.OnEnterFrameBeacon] Frame 0
class mx.transitions.OnEnterFrameBeacon
{
function OnEnterFrameBeacon () {
}
static function init() {
var _local4 = _global.MovieClip;
if (!_root.__OnEnterFrameBeacon) {
mx.transitions.BroadcasterMX.initialize(_local4);
var _local3 = _root.createEmptyMovieClip("__OnEnterFrameBeacon", 9876);
_local3.onEnterFrame = function () {
_global.MovieClip.broadcastMessage("onEnterFrame");
};
}
}
static var version = "1.1.0.52";
}
Symbol 140 MovieClip [__Packages.mx.transitions.BroadcasterMX] Frame 0
class mx.transitions.BroadcasterMX
{
var _listeners;
function BroadcasterMX () {
}
static function initialize(o, dontCreateArray) {
if (o.broadcastMessage != undefined) {
delete o.broadcastMessage;
}
o.addListener = mx.transitions.BroadcasterMX.prototype.addListener;
o.removeListener = mx.transitions.BroadcasterMX.prototype.removeListener;
if (!dontCreateArray) {
o._listeners = new Array();
}
}
function addListener(o) {
removeListener(o);
if (broadcastMessage == undefined) {
broadcastMessage = mx.transitions.BroadcasterMX.prototype.broadcastMessage;
}
return(_listeners.push(o));
}
function removeListener(o) {
var _local2 = _listeners;
var _local3 = _local2.length;
while (_local3--) {
if (_local2[_local3] == o) {
_local2.splice(_local3, 1);
if (!_local2.length) {
broadcastMessage = undefined;
}
return(true);
}
}
return(false);
}
function broadcastMessage() {
var _local5 = String(arguments.shift());
var _local4 = _listeners.concat();
var _local6 = _local4.length;
var _local3 = 0;
while (_local3 < _local6) {
_local4[_local3][_local5].apply(_local4[_local3], arguments);
_local3++;
}
}
static var version = "1.1.0.52";
}
Symbol 141 MovieClip [__Packages.mx.transitions.Tween] Frame 0
class mx.transitions.Tween
{
var obj, prop, begin, useSeconds, _listeners, addListener, prevTime, _time, looping, _duration, broadcastMessage, isPlaying, _fps, prevPos, _pos, change, _intervalID, _startTime;
function Tween (obj, prop, func, begin, finish, duration, useSeconds) {
mx.transitions.OnEnterFrameBeacon.init();
if (!arguments.length) {
return;
}
this.obj = obj;
this.prop = prop;
this.begin = begin;
position = (begin);
this.duration = (duration);
this.useSeconds = useSeconds;
if (func) {
this.func = func;
}
this.finish = (finish);
_listeners = [];
addListener(this);
start();
}
function set time(t) {
prevTime = _time;
if (t > duration) {
if (looping) {
rewind(t - _duration);
update();
broadcastMessage("onMotionLooped", this);
} else {
if (useSeconds) {
_time = _duration;
update();
}
stop();
broadcastMessage("onMotionFinished", this);
}
} else if (t < 0) {
rewind();
update();
} else {
_time = t;
update();
}
//return(time);
}
function get time() {
return(_time);
}
function set duration(d) {
_duration = (((d == null) || (d <= 0)) ? (_global.Infinity) : (d));
//return(duration);
}
function get duration() {
return(_duration);
}
function set FPS(fps) {
var _local2 = isPlaying;
stopEnterFrame();
_fps = fps;
if (_local2) {
startEnterFrame();
}
//return(FPS);
}
function get FPS() {
return(_fps);
}
function set position(p) {
setPosition(p);
//return(position);
}
function setPosition(p) {
prevPos = _pos;
obj[prop] = (_pos = p);
broadcastMessage("onMotionChanged", this, _pos);
updateAfterEvent();
}
function get position() {
return(getPosition());
}
function getPosition(t) {
if (t == undefined) {
t = _time;
}
return(func(t, begin, change, _duration));
}
function set finish(f) {
change = f - begin;
//return(finish);
}
function get finish() {
return(begin + change);
}
function continueTo(finish, duration) {
begin = position;
this.finish = (finish);
if (duration != undefined) {
this.duration = (duration);
}
start();
}
function yoyo() {
continueTo(begin, time);
}
function startEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.addListener(this);
} else {
_intervalID = setInterval(this, "onEnterFrame", 1000 / _fps);
}
isPlaying = true;
}
function stopEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.removeListener(this);
} else {
clearInterval(_intervalID);
}
isPlaying = false;
}
function start() {
rewind();
startEnterFrame();
broadcastMessage("onMotionStarted", this);
}
function stop() {
stopEnterFrame();
broadcastMessage("onMotionStopped", this);
}
function resume() {
fixTime();
startEnterFrame();
broadcastMessage("onMotionResumed", this);
}
function rewind(t) {
_time = ((t == undefined) ? 0 : (t));
fixTime();
update();
}
function fforward() {
time = (_duration);
fixTime();
}
function nextFrame() {
if (useSeconds) {
time = ((getTimer() - _startTime) / 1000);
} else {
time = (_time + 1);
}
}
function onEnterFrame() {
nextFrame();
}
function prevFrame() {
if (!useSeconds) {
time = (_time - 1);
}
}
function toString() {
return("[Tween]");
}
function fixTime() {
if (useSeconds) {
_startTime = getTimer() - (_time * 1000);
}
}
function update() {
position = (getPosition(_time));
}
static var version = "1.1.0.52";
static var __initBeacon = mx.transitions.OnEnterFrameBeacon.init();
static var __initBroadcaster = mx.transitions.BroadcasterMX.initialize(mx.transitions.Tween.prototype, true);
function func(t, b, c, d) {
return(((c * t) / d) + b);
}
}
Symbol 142 MovieClip [__Packages.mx.transitions.easing.Elastic] Frame 0
class mx.transitions.easing.Elastic
{
function Elastic () {
}
static function easeIn(t, b, c, d, a, p) {
if (t == 0) {
return(b);
}
t = t / d;
if (t == 1) {
return(b + c);
}
if (!p) {
p = d * 0.3;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
var _local7 = p / 4;
} else {
var _local7 = (p / (Math.PI*2)) * Math.asin(c / a);
}
t = t - 1;
return((-((a * Math.pow(2, 10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p))) + b);
}
static function easeOut(t, b, c, d, a, p) {
if (t == 0) {
return(b);
}
t = t / d;
if (t == 1) {
return(b + c);
}
if (!p) {
p = d * 0.3;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
var _local7 = p / 4;
} else {
var _local7 = (p / (Math.PI*2)) * Math.asin(c / a);
}
return((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p)) + c) + b);
}
static function easeInOut(t, b, c, d, a, p) {
if (t == 0) {
return(b);
}
t = t / (d / 2);
if (t == 2) {
return(b + c);
}
if (!p) {
p = d * 0.45;
}
if ((!a) || (a < Math.abs(c))) {
a = c;
var _local7 = p / 4;
} else {
var _local7 = (p / (Math.PI*2)) * Math.asin(c / a);
}
if (t < 1) {
t = t - 1;
return((-0.5 * ((a * Math.pow(2, 10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p))) + b);
}
t = t - 1;
return(((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - _local7) * (Math.PI*2)) / p)) * 0.5) + c) + b);
}
static var version = "1.1.0.52";
}
Symbol 143 MovieClip [__Packages.mx.transitions.easing.Regular] Frame 0
class mx.transitions.easing.Regular
{
function Regular () {
}
static function easeIn(t, b, c, d) {
t = t / d;
return(((c * t) * t) + b);
}
static function easeOut(t, b, c, d) {
t = t / d;
return((((-c) * t) * (t - 2)) + b);
}
static function easeInOut(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return((((c / 2) * t) * t) + b);
}
t--;
return((((-c) / 2) * ((t * (t - 2)) - 1)) + b);
}
static var version = "1.1.0.52";
}
Symbol 38 MovieClip Frame 8
stop();
Symbol 53 MovieClip Frame 70
gotoAndPlay ("theloop");
Symbol 54 MovieClip Frame 19
stop();
Symbol 54 MovieClip Frame 30
stop();
Symbol 85 MovieClip Frame 1
scoregroup._visible = false;
Symbol 85 MovieClip Frame 6
stop();
scoregroup._visible = true;
Symbol 120 Button
on (release) {
getURL ("http://www.meetordelete.com", "_blank");
}
Symbol 127 MovieClip Frame 20
stop();
Symbol 133 MovieClip Frame 41
score.text = "your score was: " + _parent.myscore;
Instance of Symbol 131 MovieClip in Symbol 133 MovieClip Frame 44
on (release) {
_parent._parent.gotoAndPlay("go");
}
Instance of Symbol 129 MovieClip in Symbol 133 MovieClip Frame 46
on (release) {
getURL ("http://www.mtvu.com/contests/meet_or_delete/form.jhtml", "_blank");
}
Symbol 133 MovieClip Frame 56
stop();
Symbol 138 MovieClip Frame 41
score.text = "your score was: " + _parent.myscore;
time.text = "timebonus: " + _parent.tickcounter;
Instance of Symbol 131 MovieClip in Symbol 138 MovieClip Frame 44
on (release) {
trace(_parent);
_parent._parent.gotoAndPlay("go");
}
Instance of Symbol 129 MovieClip in Symbol 138 MovieClip Frame 46
on (release) {
getURL ("http://www.mtvu.com/contests/meet_or_delete/form.jhtml", "_blank");
}
Symbol 138 MovieClip Frame 56
stop();