Frame 1
function F_engineLoop() {
if (this.player.dead != 1) {
this.movePlayer();
this.checkDiamonds();
}
_root.pointArt.pointText = _root.HUDscore;
if (_root.pointArt._xscale > 100) {
_root.pointArt._xscale = _root.pointArt._xscale - 1;
_root.pointArt._yscale = _root.pointArt._xscale;
}
_root.setCamera();
}
function F_checkDot(dotName) {
tempDot = this["dot" + dotName];
colliderx = tempDot._x;
collidery = tempDot._y;
var _loc3 = {y:collidery, x:colliderx};
this.localToGlobal(_loc3);
dotHit = 0;
count = 1;
while (count < 3) {
if (_root.engine.world["building" + count].solid.hitTest(_loc3.x, _loc3.y, true)) {
dotHit = 1;
}
count++;
}
if (!dotHit) {
return(0);
}
return(1);
}
function F_checkDiamonds() {
if (this.world.building1.diamond._visible == true) {
if (this.world.building1.diamond._currentframe == 1) {
if (!this.player.hitbox.hitTest(this.world.building1.diamond.hitbox)) {
if (this.world.building1.diamond.hitbox.hitTest(this.butterflybox)) {
_root.diamondCombo = 0;
this.world.building1.diamond._visible = false;
}
} else if (!((this.player.animState == "charge") || (this.player.chargeEndTime > 0))) {
this.world.building1.diamond._x = this.world.building1.diamond._x + 15;
this.world.building1.diamond._rotation = this.world.building1.diamond._rotation + 10;
this.player.art.metalHit.gotoAndStop(2);
_root.deathStyle = 3;
this.player.deathTime(1);
} else {
this.world.building1.diamond.gotoAndStop(2);
_root.cameraShake = 4;
_root.enemyCombo = _root.enemyCombo + 1;
_root.showPoints("Big", 1);
_root.HUDscore = _root.HUDscore + (starPoints * _root.enemyCombo);
_root.pointArt._xscale = _root.pointArt._xscale + (_root.enemyCombo * 4);
}
}
}
if (this.world.building2.diamond._visible == true) {
if (this.world.building2.diamond._currentframe == 1) {
if (!this.player.hitbox.hitTest(this.world.building2.diamond.hitbox)) {
if (this.world.building2.diamond.hitbox.hitTest(this.butterflybox)) {
_root.diamondCombo = 0;
this.world.building2.diamond._visible = false;
}
} else if (!((this.player.animState == "charge") || (this.player.chargeEndTime > 0))) {
this.world.building2.diamond._x = this.world.building2.diamond._x + 15;
this.world.building2.diamond._rotation = this.world.building2.diamond._rotation + 10;
this.player.art.metalHit.gotoAndStop(2);
_root.deathStyle = 3;
this.player.deathTime(1);
} else {
this.world.building2.diamond.gotoAndStop(2);
_root.cameraShake = 4;
_root.HUDdiamonds = _root.HUDdiamonds + 1;
_root.enemyCombo = _root.enemyCombo + 1;
_root.showPoints("Big", 2);
_root.HUDscore = _root.HUDscore + (starPoints * _root.enemyCombo);
_root.pointArt._xscale = _root.pointArt._xscale + (_root.enemyCombo * 4);
}
}
}
if (this.world.building1.butterfly._currentframe == 1) {
if (this.world.building1.butterfly._visible) {
this.world.building1.butterfly._x = this.world.building1.butterfly._x + 3;
if (this.player.hitbox.hitTest(this.world.building1.butterfly.art.wings)) {
this.world.building1.butterfly.gotoAndStop(2);
_root.butterflyCombo = _root.butterflyCombo + 1;
this.player.colorUp = 3;
_root.HUDscore = _root.HUDscore + (butterPoints * _root.butterflyCombo);
_root.pointArt._xscale = _root.pointArt._xscale + (_root.butterflyCombo * 2);
_root.showPoints("Small", 1);
}
if (this.world.building1.butterfly.hitbox.hitTest(this.butterflybox)) {
if (this.world.building1.butterfly._currentframe == 1) {
_root.butterflyCombo = 0;
}
}
}
}
if (this.world.building2.butterfly._currentframe == 1) {
if (this.world.building2.butterfly._visible) {
this.world.building2.butterfly._x = this.world.building2.butterfly._x + 3;
if (this.player.hitbox.hitTest(this.world.building2.butterfly.art.wings)) {
this.world.building2.butterfly.gotoAndStop(2);
_root.butterflyCombo = _root.butterflyCombo + 1;
this.player.colorUp = 3;
_root.HUDscore = _root.HUDscore + (butterPoints * _root.butterflyCombo);
_root.pointArt._xscale = _root.pointArt._xscale + (_root.butterflyCombo * 2);
_root.showPoints("Small", 2);
}
if (this.world.building2.butterfly.hitbox.hitTest(this.butterflybox)) {
if (this.world.building2.butterfly._currentframe == 1) {
_root.butterflyCombo = 0;
}
}
}
}
if (enemyCombo > bestStarCombo) {
bestStarCombo = enemyCombo;
}
if (butterflyCombo > bestFairyCombo) {
bestFairyCombo = butterflyCombo;
}
}
function F_checkOddLanding(landDirection) {
if (!checkDot("BottomRoot")) {
count = 1;
while (count < 10) {
if (checkDot("BottomStick") == 0) {
_x = (_x + (1 * landDirection));
setProperty("", _x, _x + (1 * landDirection));
} else {
applyGravity = 0;
touchGround = 1;
count = 10;
}
count++;
}
} else {
count = 1;
while (count < 10) {
if (checkDot("BottomStick") == 0) {
travely(1);
} else {
count = 10;
}
count++;
}
}
}
function F_travelx(movex) {
this._x = this._x + movex;
}
function F_travely(movey) {
this._y = this._y + movey;
}
function F_moveWorldx(movex) {
count = 1;
while (count < 3) {
if (count != 1) {
otherBuilding = this.world.building1;
} else {
otherBuilding = this.world.building2;
}
building = this.world["building" + count];
building._x = building._x - movex;
_root.HUDscore = _root.HUDscore + int(movex / 8);
if (_root.HUDscore > 5000) {
if (dolphinLevel == 1) {
dolphinLevel = 2;
dolphins.gotoAndStop(2);
}
}
if (_root.HUDscore > 10000) {
if (dolphinLevel == 2) {
dolphinLevel = 3;
dolphins.gotoAndStop(3);
}
}
if (_root.HUDscore > 15000) {
if (dolphinLevel == 3) {
dolphinLevel = 4;
dolphins.gotoAndStop(4);
}
}
if (_root.HUDscore > 20000) {
if (dolphinLevel == 4) {
dolphinLevel = 5;
dolphins.gotoAndStop(5);
}
}
if (_root.HUDscore > 25000) {
if (dolphinLevel == 5) {
dolphinLevel = 6;
dolphins.gotoAndStop(6);
}
}
if (_root.HUDscore > 30000) {
if (dolphinLevel == 6) {
dolphinLevel = 7;
dolphins.gotoAndStop(7);
}
}
if (building.diamond._visible) {
_root["diamondEdgeTime" + count] = int(((engine._x - 640) + building._x) + building.diamond._x) / 20;
diamondTriggerTime = 25 + ((movex - 14) / 1.5);
if ((_root["diamondSpawn" + count] != 1) && (_root["diamondEdgeTime" + count] < diamondTriggerTime)) {
_root["diamondSpawn" + count] = 1;
building.diamond.starSpawn.gotoAndPlay(2);
_root.starTest.gotoAndPlay(2);
}
}
if (building._x < -1500) {
movexBuilding = int(movex / 1.5);
if (movexBuiling > 20) {
movexBuilding = 20;
}
building.gotoAndStop(random(movexBuilding) + 1);
building.solid._visible = false;
building.bloomArt.gotoAndStop(building._currentframe);
building.bloomArt.blurMe(12, 12);
building._x = ((((otherBuilding._x + (otherBuilding._width / 2)) + (building._width / 2)) + 400) + (movex * 8)) + random(100);
building._y = 300 + random(100);
_root["diamondSpawn" + count] = 0;
if (random(movex - 10) <= 2) {
building.diamond._visible = false;
} else {
building.diamond._visible = true;
if (building.diamond._currentframe == 1) {
_root.enemyCombo = 0;
}
building.diamond.gotoAndStop(1);
targetnum = random(2) + 2;
targetdot = building["dot" + targetnum];
building.diamond._x = targetdot._x;
building.diamond._y = targetdot._y;
}
building.butterfly.gotoAndStop(1);
targetdot = building.dot1;
building.butterfly._x = targetdot._x - (400 + (movex * 2));
building.butterfly._y = (targetdot._y - 150) + random(30);
}
building = this.world["backa" + count];
building._x = building._x - (movex / 2);
building._y = 500 - (this._y / 2);
if (building._x < -700) {
building._x = building._x + (1400 + random(100));
buidling.inside._y = -50 + random(100);
if (random(2) == 0) {
building._xscale = building._xscale * -1;
}
}
building = this.world["backb" + count];
building._x = building._x - (movex / 8);
building._y = 500 - (this._y / 1.5);
if (building._x < -700) {
building._x = building._x + (1400 + random(100));
buidling.inside._y = -25 + random(50);
if (random(2) == 0) {
building._xscale = building._xscale * -1;
}
}
count++;
}
}
function setCamera() {
if (playerPointx <= 380) {
if (playerPointx < 280) {
}
}
if (engine.player.dead != 1) {
engine._y = engine._y - ((playerPointy - 200) / 10);
if (engine._y < 0) {
engine._y = 0;
}
}
if (cameraShake <= 0) {
cameraShake = 0;
} else {
engine._y = engine._y + (random(cameraShake * 3) * cameraShakeDir);
engine._x = engine._x + (random(cameraShake * 3) * cameraShakeDir);
cameraShakeDir = cameraShakeDir * -1;
cameraShake = cameraShake - 0.100000001490116;
}
if (engine._x <= 321) {
if (engine._x < 319) {
engine._x = engine._x + 0.25;
}
} else {
engine._x = engine._x - 0.25;
}
}
function showPoints(psize, pnum) {
pointFX = _root["points" + psize];
fxy = _root.engine._y + (_root.engine.player._y - 10);
with (pointFX) {
_visible = true;
gotoAndPlay(2);
_x = 100;
_y = fxy;
}
}
function dashWarning() {
if (dashWarn < 3) {
dashWarn = dashWarn + 1;
dashText.gotoAndPlay(2);
}
}
function submitScore() {
var _loc2 = _root.HUDfinalScore;
cmpSetObj.var1 = _loc2;
cmpSetObj.clearListeners();
}
function F_movePlayer() {
with (engine.player) {
if (dropTime > 0) {
dropTime = dropTime - 1;
}
if (airChargeMeter < 100) {
airChargeMeter = airChargeMeter + 1;
}
_root.rainbowBar._xscale = airChargeMeter - 30;
if (_root.rainbowBar._xscale < 0) {
_root.rainbowBar._xscale = 0;
}
prevAnimState = animState;
rot4 = rot3;
rot3 = rot2;
rot2 = rot1;
rot1 = rotationTarget;
rotationTarget = 0;
art._rotation = (((rot1 + rot2) + rot3) + rot4) / 4;
if (art._rotation <= 20) {
if (art._rotation < -20) {
art._rotation = -20;
}
} else {
art._rotation = 20;
}
if (Key.isDown(_root.p1r) || (Key.isDown(_root.p1rCase))) {
if (chargeCoolDown > 20) {
if (airChargeMeter > 40) {
_y = _y - 8;
airChargeMeter = airChargeMeter - 70;
chargeOffset = 15;
airCharged = 1;
airChargeCount = airChargeCount + 1;
chargeCoolDown = 0;
applyGravity = 0;
animState = "charge";
art.blurMe(30, 0);
colorUp = 4;
art.colorMe(colorUp, colorUp, colorUp);
}
}
}
if (chargeCoolDown < 21) {
chargeCoolDown = chargeCoolDown + 1;
}
if (chargeEndTime > 0) {
chargeEndTime = chargeEndTime - 1;
}
if (animState != "charge") {
if (!(Key.isDown(_root.p1u) || (Key.isDown(_root.p1uCase)))) {
upPress = 0;
} else {
if (!(((applyGravity == 0) || (dropTime > 0)) || (jumpNum == 0))) {
if ((!upPress) && (gravity > 6)) {
if (jumpNum == 1) {
art.jumpanim.rainbow.gotoAndStop(2);
jumpNum = 2;
applyGravity = 1;
thrusty = jumpVel;
gravity = 2;
animState = "jump";
colorUp = 3;
art.colorMe(colorUp, colorUp, colorUp);
}
}
gravity = gravity - 0.75;
} else if (!upPress) {
art.sparkleSound.gotoAndStop(2);
jumpNum = 1;
dropTime = 0;
touchGround = 0;
applyGravity = 1;
thrusty = jumpVel;
gravity = 0;
colorUp = 2;
airCharged = 0;
animState = "jump";
}
upPress = 1;
}
}
speedx = maxspeedx;
_root.engine.moveWorldx(speedx);
if (maxspeedx < 50) {
maxspeedx = maxspeedx + 0.00999999977648258;
}
_root.testVar6 = maxspeedx;
_x = (((speedx - 14) / 2) - 260) + offsetx;
if (offsetx <= 0) {
offsetx = 0;
} else {
offsetx = offsetx - 5;
}
if (applyGravity && (animState != "charge")) {
fallSpeed = thrusty - gravity;
if (fallSpeed > 10) {
fallSpeed = 10;
}
travely(-fallSpeed);
gravity = gravity + 1.20000004768372;
}
touchCeiling = 0;
if (checkDot("Top")) {
touchCeiling = 1;
count = 1;
while (count < 20) {
if (checkDot("Top")) {
travely(1);
} else {
count = 21;
}
count++;
}
}
if (checkDot("Bottom")) {
touchGround = 1;
count = 1;
while (count < 20) {
if (checkDot("Bottom")) {
travely(-1);
rotationTarget = rotationTarget - (rotationStep + 1);
} else {
count = 21;
}
count++;
}
}
if (checkDot("Right")) {
_root.deathStyle = 2;
deathTime(1);
return(0);
}
if (applyGravity) {
art._rotation = 0;
rotationTarget = 0;
if (checkDot("TopRight")) {
touchCeiling = 1;
while (checkDot("TopRight")) {
travely(1);
}
}
if (checkDot("BottomLeft")) {
if (gravity > thrusty) {
if (touchGround == 0) {
checkOddLanding(-1);
}
}
if (touchGround == 0) {
while (checkDot("BottomLeft")) {
travely(-1);
}
}
}
if (checkDot("BottomRight")) {
if (gravity > thrusty) {
if (touchGround == 0) {
checkOddLanding(1);
}
}
if (touchGround == 0) {
while (checkDot("BottomRight")) {
travely(-1);
}
}
}
}
if (touchCeiling) {
if (applyGravity) {
thrusty = thrusty / 2;
}
}
if (touchGround) {
applyGravity = 0;
gravity = 0;
if (animState != "charge") {
animState = "run";
airCharged = 0;
airChargeCount = 0;
}
if ((applyGravity == 0) && (animState != "charge")) {
if (checkDot("BottomRoot")) {
count = 1;
while (count < 10) {
if (checkDot("BottomStick") == 0) {
travely(1);
rotationTarget = rotationTarget + rotationStep;
} else {
count = 10;
}
count++;
}
}
}
if (animState != "charge") {
if (checkDot("BottomStick") == 0) {
if (checkDot("BottomRightStick") == 0) {
if (checkDot("BottomLeftStick") == 0) {
touchGround = 0;
airCharged = 0;
dropTime = 10;
jumpNum = 1;
applyGravity = 1;
thrusty = jumpVel;
gravity = jumpVel;
animState = "jump";
}
}
}
}
}
var playerPoint = {y:_y, x:_x};
this.localToGlobal(playerPoint);
_root.playerPointx = playerPoint.x + 300;
_root.playerPointy = playerPoint.y;
if (colorUp > 1.20000004768372) {
colorUp = colorUp - 0.100000001490116;
art.colorMe(colorUp, colorUp, colorUp);
}
if (_y < -600) {
_y = -600;
}
if (this.dead != 1) {
art.gotoAndStop(animState);
if (animState != "run") {
if (animState != "jump") {
if (animState == "charge") {
_root.engine.moveWorldx(speedx / 2);
offsetx = offsetx + chargeOffset;
chargeOffset = chargeOffset - 1;
if (chargeOffset < 0) {
chargeOffset = 0;
}
}
} else {
art.jumpanim.gotoAndStop(int(gravity * 8.75));
}
} else {
if (prevAnimState != "run") {
airChargeMeter = 100;
art.runanim.gotoAndStop(200);
}
jumpNum = 0;
prevAnimFrame = animFrame;
animFrame = art.runanim._currentframe;
art.runanim.gotoAndStop(animFrame + int(speedx * 2));
if (animFrame > 450) {
art.runanim.gotoAndStop(animFrame - 450);
}
if ((prevAnimFrame < 90) && (animFrame > 90)) {
art.gallopSounds.gotoAndStop(2);
}
if ((prevAnimFrame < 150) && (animFrame > 150)) {
art.gallopSounds.gotoAndStop(3);
}
if ((prevAnimFrame < 180) && (animFrame > 180)) {
art.gallopSounds.gotoAndStop(4);
}
}
}
if (_y > 700) {
_root.deathStyle = 1;
deathTime(1);
}
}
}
function F_endCharge() {
with (engine.player) {
touchGround = 0;
if (jumpNum != 0) {
jumpNum = 1;
} else {
dropTime = 10;
}
chargeEndTime = 10;
applyGravity = 1;
thrusty = jumpVel;
gravity = jumpVel;
animState = "jump";
art.gotoAndStop("jump");
art.jumpanim.gotoAndStop(int(gravity * 8.75));
}
}
function F_deathTime(deathMethod) {
this.dead = 1;
lives.nextFrame();
if (deathMethod != 1) {
if (deathMethod == 2) {
this.art.gotoAndStop("deathFall");
}
} else {
this.art.gotoAndStop("deathExplode");
_root.cameraShake = 6;
}
}
function initialize() {
_quality = "medium";
setProperty("", _quality, "medium");
_root.p1u = 90;
_root.p1uCase = 122;
_root.p1d = 83;
_root.p1l = 65;
_root.p1r = 88;
_root.p1rCase = 120;
_root.p1ps = 32;
_root.score = 0;
_root.HUDscore = 0;
_root.HUDdiamonds = 0;
_root.HUDbutterflies = 0;
_root.HUDfinalScore = 0;
_root.cameraShakeDir = 1;
_root.cameraShake = 0;
_root.butterflyCombo = 0;
_root.enemyCombo = 1;
_root.butterPoints = 10;
_root.starPoints = 100;
_root.dolphinLevel = 1;
_root.dashWarn = 0;
_root.deathStyle = 1;
if (_root.scoreTurn == 0) {
_root.score1 = 0;
_root.score2 = 0;
_root.score3 = 0;
_root.bestFairyCombo = 0;
_root.bestStarCombo = 0;
_root.scoreTurn = 1;
}
_root.lives.gotoAndStop(scoreTurn);
with (engine) {
originx = 320;
originy = 240;
player.thrusty = 0;
player.offsetx = 0;
player.gravity = 0;
player.applyGravity = 1;
player.maxspeedx = 14;
player.jumpVel = 14;
player.speedx = player.maxspeedx;
player.speedstep = 0.25;
player.dead = 0;
player.airCharged = 0;
player.airChargeCount = 0;
player.airChargeMeter = 100;
player.chargeCoolDown = 100;
player.chargeEndTime = 0;
player.dropTime = 0;
player.rotationStep = 2;
player.rotationTarget = 0;
player.rot1 = 0;
player.rot2 = 0;
player.rot3 = 0;
player.animState = "run";
player.colorUp = 4;
}
engine.player.checkDot = F_checkDot;
engine.player.endCharge = F_endCharge;
engine.player.deathTime = F_deathTime;
engine.player.checkOddLanding = F_checkOddLanding;
engine.player.travelx = F_travelx;
engine.player.travely = F_travely;
engine.engineLoop = F_engineLoop;
engine.moveWorldx = F_moveWorldx;
engine.movePlayer = F_movePlayer;
engine.checkDiamonds = F_checkDiamonds;
engine.world.building1.diamond._visible = false;
engine.world.building2.diamond._visible = false;
}
function saveCookie() {
shareObj = SharedObject.getLocal("shareObj");
_root.shareObj.data.scoreArray = highScores;
_root.shareObj.data.nameArray = highScoreNames;
_root.shareObj.data.flush();
}
function loadCookie() {
shareObj = SharedObject.getLocal("shareObj");
highScores = shareObj.data.scoreArray;
highScoreNames = shareObj.data.nameArray;
}
function deleteCookie() {
_root.shareObj.data.scoreArray = highScoresXX;
_root.shareObj.data.nameArray = highScoresXX;
_root.shareObj.data.flush();
}
function setHighScores() {
endOK = 1;
count = 1;
while (count <= 5) {
if (HUDfinalScore > highScores[count]) {
scoreNum = count;
count2 = 5;
while (count2 > scoreNum) {
highScores[count2] = highScores[count2 - 1];
count2--;
}
highScores[count] = HUDfinalScore;
finalbox["scorebox" + count].gotoAndPlay(2);
count = 6;
}
count++;
}
count = 1;
while (count <= 5) {
finalbox["score" + count].scoreText = highScores[count];
count++;
}
saveCookie();
}
function deleteScores() {
deleteCookie();
count = 1;
while (count <= 5) {
this["highScore" + count] = 6000 - (1000 * count);
count++;
}
highScores = new Array(0, highScore1, highScore2, highScore3, highScore4, highScore5);
highScoreNames = new Array("com", "com", "com", "com", "com");
highScoresXX = new Array(0, 0, 0, 0, 0);
saveCookie();
}
var var1 = 0;
var var3 = 2772;
cmpSetObj.var1 = var1;
cmpSetObj.var3 = var3;
mccm.onPress = function () {
trace("meep");
cmpSetObj.clearListeners();
};
stop();
scoreTurn = 0;
count = 1;
while (count <= 5) {
this["highScore" + count] = 6000 - (1000 * count);
count++;
}
loadCookie();
if (highScores[5] <= 1000) {
highScores = new Array(0, highScore1, highScore2, highScore3, highScore4, highScore5);
highScoreNames = new Array("com", "com", "com", "com", "com");
highScoresXX = new Array(0, 0, 0, 0, 0);
saveCookie();
}
Instance of Symbol 60 MovieClip "musicShell" in Frame 1
onClipEvent (load) {
_visible = false;
setProperty("", _visible, false);
}
Frame 2
stopAllSounds();
musicShell.gotoAndPlay(3);
musicStarted = 1;
Frame 3
stop();
initialize();
Instance of Symbol 121 MovieClip "engine" in Frame 3
onClipEvent (enterFrame) {
engineLoop();
}
Frame 4
function setScoreScreen() {
scoreArt1._visible = true;
scoreArt1.scoreText = score1;
if (scoreTurn > 1) {
scoreArt2._visible = true;
scoreArt2.scoreText = score2;
}
if (scoreTurn > 2) {
scoreArt3._visible = true;
scoreArt3.scoreText = score3;
}
if (scoreTurn != 1) {
if (scoreTurn == 2) {
scorebox2.gotoAndPlay(2);
}
} else {
scorebox1.gotoAndPlay(2);
}
if (scoreTurn != 3) {
endOK = 1;
scoreTurn = scoreTurn + 1;
} else {
scorebox3.gotoAndPlay(2);
}
}
function showFinalScore() {
scoreArtFinal._visible = true;
finalbox._visible = true;
finalbox.gotoAndPlay(2);
HUDfinalScore = (score1 + score2) + score3;
scoreArtFinal.scoreText = HUDfinalScore;
scoreTurn = 0;
}
function scoreScreenCounter() {
if (scoreTurn != 0) {
screenTime = screenTime - 1;
pressztext.timeText = int(screenTime / 30);
presszreflection.timeText = int(screenTime / 30);
if (screenTime <= 0) {
_root.HUDscore = 0;
gotoAndStop (3);
}
}
}
endOK = 0;
_root["score" + scoreTurn] = HUDscore;
scoreArtFairy.scoreText = _root.bestFairyCombo;
scoreArtStar.scoreText = _root.bestStarCombo;
if (scoreTurn == 1) {
scoreArt1._visible = false;
scoreArt2._visible = false;
scoreArt3._visible = false;
scoreStars1.gotoAndPlay(2);
}
if (scoreTurn == 2) {
scoreArt1.scoreText = score1;
scoreArt2._visible = false;
scoreArt3._visible = false;
scoreStars2.gotoAndPlay(2);
}
if (scoreTurn == 3) {
timerSound.gotoAndStop(2);
scoreArt3._visible = false;
scoreArt1.scoreText = score1;
scoreArt2.scoreText = score1;
scoreStars3.gotoAndPlay(2);
pressztext.gotoAndStop(2);
presszreflection.gotoAndStop(2);
}
scoreArtFinal._visible = false;
finalbox._visible = false;
screenTime = 270;
Instance of Symbol 372 MovieClip "presszreflection" in Frame 4
onClipEvent (load) {
blurstart = 5;
_alpha = 25;
setProperty("", _alpha, 25);
}
Instance of Symbol 240 MovieClip in Frame 4
onClipEvent (enterFrame) {
_root.scoreScreenCounter();
}
Instance of Symbol 410 MovieClip in Frame 5
onClipEvent (load) {
oldtime = 0;
frames = 0;
}
Symbol 11 MovieClip [mcCopyLink] Frame 1
stop();
Symbol 11 MovieClip [mcCopyLink] Frame 2
stop();
Symbol 29 Button
on (release) {
nextFrame();
}
Symbol 35 MovieClip Frame 17
stop();
Symbol 42 Button
on (keyPress "z") {
_root.gotoAndStop(2);
}
on (keyPress "Z") {
_root.gotoAndStop(2);
}
Symbol 18 MovieClip Frame 1
stop();
Instance of Symbol 19 MovieClip in Symbol 18 MovieClip Frame 1
onClipEvent (enterFrame) {
mainLoad = _root.getBytesLoaded() / _root.getBytesTotal();
musicLoad = _root.musicShell.getBytesLoaded() / _root.musicShell.getBytesTotal();
_xscale = ((mainLoad + musicLoad) * 50);
setProperty("", _xscale, (mainLoad + musicLoad) * 50);
if (_xscale >= 100) {
_parent.nextFrame();
}
}
Instance of Symbol 19 MovieClip in Symbol 18 MovieClip Frame 1
onClipEvent (enterFrame) {
mainLoad = _root.getBytesLoaded() / _root.getBytesTotal();
musicLoad = _root.musicShell.getBytesLoaded() / _root.musicShell.getBytesTotal();
_xscale = ((mainLoad + musicLoad) * 50);
setProperty("", _xscale, (mainLoad + musicLoad) * 50);
if (_xscale >= 100) {
_parent.nextFrame();
}
}
Symbol 18 MovieClip Frame 2
Symbol 47 Button
on (release) {
nextFrame();
}
Symbol 53 Button
on (release) {
prevFrame();
}
Symbol 58 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
glowMe(16737535, 0.75, 10);
Symbol 46 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 1
loadMovie ("UnicornMusic.swf", this);
Symbol 60 MovieClip Frame 60
stop();
Symbol 62 MovieClip Frame 1
function clearListeners() {
var _loc7 = _loc4.toString();
var _loc13 = _loc7.substr(-3, 3);
var _loc12 = _loc7.substr(-4, 3);
var _loc11 = parseInt(_loc13);
var _loc10 = parseInt(_loc12);
var _loc8 = (((_loc11 * _loc10) * _loc2) + _loc2);
trace("nAlgo " + _loc8);
var _loc5 = ((((((_loc3 + ",") + _loc2) + ",") + _loc4) + ",") + _loc8);
trace("strToPass " + _loc5);
var _loc6 = m.hash(_loc5);
trace((((((((_loc9 + "attr1=score=") + _loc2) + "|gameId=") + _loc3) + "|timestamp=") + _loc4) + "|key=") + _loc6);
getURL ((((((((_loc9 + "attr1=score=") + _loc2) + "|gameId=") + _loc3) + "|timestamp=") + _loc4) + "|key=") + _loc6, "_self");
}
Symbol 69 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
gotoAndStop(random(10) + 1);
stop();
glowMe(16737535, 0.75, 10);
Symbol 88 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
glowMe(16737535, 0.75, 10);
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 1
onClipEvent (load) {
gotoAndPlay (11);
}
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 3
onClipEvent (load) {
gotoAndPlay (11);
}
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 9
onClipEvent (load) {
gotoAndPlay (11);
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 17
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 18
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 26
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 27
onClipEvent (load) {
gotoAndPlay (11);
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 30
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 31
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 39
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 43
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 43
onClipEvent (load) {
gotoAndPlay (11);
}
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 44
onClipEvent (load) {
gotoAndPlay (11);
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 48
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 49
onClipEvent (load) {
gotoAndPlay (11);
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 50
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 53
onClipEvent (load) {
gotoAndPlay (11);
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 56
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 58
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 88 MovieClip in Symbol 81 MovieClip Frame 66
onClipEvent (enterFrame) {
gotoAndStop(_currentframe + 22);
if (_currentframe > 450) {
gotoAndStop(_currentframe - 450);
}
}
Instance of Symbol 82 MovieClip in Symbol 81 MovieClip Frame 66
onClipEvent (load) {
gotoAndPlay (11);
}
Symbol 66 MovieClip Frame 63
_root.gotoAndStop(3);
Symbol 123 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
blurMe(12, 12);
Symbol 126 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
blurMe(12, 12);
Symbol 134 MovieClip Frame 1
stop();
Instance of Symbol 137 MovieClip in Symbol 134 MovieClip Frame 2
onClipEvent (load) {
gotoAndPlay (33);
}
Instance of Symbol 142 MovieClip in Symbol 134 MovieClip Frame 2
onClipEvent (load) {
gotoAndPlay (105);
}
Symbol 129 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
blurMe(6, 6);
Symbol 146 MovieClip Frame 1
stop();
Instance of Symbol 137 MovieClip in Symbol 146 MovieClip Frame 2
onClipEvent (load) {
gotoAndPlay (33);
}
Instance of Symbol 137 MovieClip in Symbol 146 MovieClip Frame 2
onClipEvent (load) {
gotoAndPlay (66);
}
Instance of Symbol 142 MovieClip in Symbol 146 MovieClip Frame 2
onClipEvent (load) {
gotoAndPlay (52);
}
Instance of Symbol 142 MovieClip in Symbol 146 MovieClip Frame 2
onClipEvent (load) {
gotoAndPlay (157);
}
Instance of Symbol 142 MovieClip in Symbol 146 MovieClip Frame 2
onClipEvent (load) {
gotoAndPlay (52);
}
Instance of Symbol 142 MovieClip in Symbol 146 MovieClip Frame 2
onClipEvent (load) {
gotoAndPlay (157);
}
Symbol 143 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
blurMe(6, 6);
Symbol 153 MovieClip Frame 1
_visible = false;
setProperty("", _visible, false);
Symbol 156 MovieClip Frame 15
stop();
Symbol 152 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
stop();
blurMe(0, 0);
colorMe(1.5, 1.5, 1.5);
Symbol 158 MovieClip Frame 1
stop();
Symbol 158 MovieClip Frame 3
_root.dashWarning();
Symbol 163 MovieClip Frame 17
stop();
Symbol 196 MovieClip Frame 15
stop();
Symbol 157 MovieClip Frame 1
stop();
starSpawn._visible = true;
Symbol 157 MovieClip Frame 2
starSpawn._visible = false;
Symbol 201 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
stop();
blurMe(12, 12);
Symbol 280 MovieClip Frame 1
stop();
Symbol 151 MovieClip Frame 1
stop();
solid._visible = false;
Symbol 122 MovieClip Frame 1
stop();
Symbol 288 MovieClip Frame 1
stop();
Symbol 289 MovieClip Frame 1
stop();
Symbol 299 MovieClip Frame 16
stop();
Symbol 306 MovieClip Frame 20
stop();
Symbol 292 MovieClip Frame 1
glow.setMask(oval);
stop();
Symbol 307 MovieClip Frame 2
stop();
Symbol 312 MovieClip Frame 1
glow.setMask(oval);
stop();
Symbol 311 MovieClip Frame 11
_parent._parent.endCharge();
stop();
Symbol 316 MovieClip Frame 30
_root.gotoAndStop("fail");
Symbol 287 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
blurMe(0, 0);
colorMe(1.5, 1.5, 1.5);
Symbol 287 MovieClip Frame 2
blurMe(0, 0);
Symbol 287 MovieClip Frame 4
Symbol 320 MovieClip Frame 1
stop();
_visible = false;
setProperty("", _visible, false);
Symbol 323 MovieClip Frame 1
pointText = _root.starPoints * _root.enemyCombo;
Symbol 322 MovieClip Frame 1
stop();
Symbol 322 MovieClip Frame 50
stop();
_visible = false;
setProperty("", _visible, false);
Symbol 326 MovieClip Frame 1
pointText = _root.butterPoints * _root.butterflyCombo;
Symbol 325 MovieClip Frame 1
stop();
Symbol 325 MovieClip Frame 50
stop();
_visible = false;
setProperty("", _visible, false);
Symbol 329 MovieClip Frame 1
_visible = false;
setProperty("", _visible, false);
Symbol 332 MovieClip Frame 151
stop();
Symbol 337 MovieClip Frame 22
stop();
Symbol 338 MovieClip Frame 35
stop();
Symbol 339 MovieClip Frame 55
stop();
Symbol 340 MovieClip Frame 65
stop();
Symbol 341 MovieClip Frame 80
stop();
Symbol 328 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
blurMe(0, 0);
colorMe(1.5, 1.5, 1.5);
stop();
Symbol 344 MovieClip Frame 61
_parent.gotoAndStop(4);
Symbol 344 MovieClip Frame 76
stop();
_parent._visible = false;
Symbol 342 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
gotoAndStop(_root.scoreTurn);
stop();
glowMe(16737535, 0.75, 10);
Symbol 347 MovieClip Frame 1
stop();
Symbol 351 Button
on (keyPress "r") {
_root.HUDscore = 0;
gotoAndStop (2);
}
on (keyPress "R") {
_root.HUDscore = 0;
gotoAndStop (2);
}
Symbol 352 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
glowMe(16744627, 0.75, 10);
Symbol 355 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 1;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
glowMe(16744627, 0.75, 10);
Symbol 354 MovieClip Frame 1
stop();
Symbol 358 MovieClip Frame 31
stop();
Symbol 362 Button
on (keyPress "z") {
if (endOK) {
_root.HUDscore = 0;
if (scoreTurn == 0) {
gotoAndStop (2);
} else {
gotoAndStop (3);
}
}
}
on (keyPress "Z") {
if (endOK) {
_root.HUDscore = 0;
if (scoreTurn == 0) {
gotoAndStop (2);
} else {
gotoAndStop (3);
}
}
}
Symbol 365 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
stop();
glowMe(16737535, 0.75, 10);
gotoAndStop(_root.deathStyle);
Symbol 372 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
stop();
blurMe(blurStart, blurStart);
glowMe(16737535, 0.75, 10);
Symbol 380 Button
on (release) {
_root.submitScore();
_visible = false;
setProperty("", _visible, false);
}
Symbol 390 MovieClip Frame 1
stop();
Symbol 390 MovieClip Frame 45
gotoAndPlay (15);
Symbol 393 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
glowMe(9510144, 0.75, 30);
Symbol 395 Button
on (release) {
_root.deleteScores();
}
Symbol 377 MovieClip Frame 1
stop();
Symbol 377 MovieClip Frame 41
_root.setHighScores();
Symbol 377 MovieClip Frame 80
stop();
Symbol 397 MovieClip Frame 1
stop();
Symbol 397 MovieClip Frame 30
_root.showFinalScore();
stop();
Symbol 399 MovieClip Frame 1
stop();
Symbol 399 MovieClip Frame 45
gotoAndPlay (15);
Symbol 401 MovieClip Frame 1
stop();
Symbol 401 MovieClip Frame 45
gotoAndPlay (15);
Symbol 403 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
glowMe(9510144, 0.75, 30);
Symbol 405 MovieClip Frame 1
stop();
Symbol 405 MovieClip Frame 2
play();
Symbol 405 MovieClip Frame 20
_parent.setScoreScreen();
Symbol 405 MovieClip Frame 35
stop();
_visible = false;
setProperty("", _visible, false);
Symbol 409 MovieClip Frame 30
stop();
Symbol 410 MovieClip Frame 1
time = getTimer() / 1000;
thistime = time - oldtime;
if (thistime < 1) {
frames++;
} else {
fps = frames;
frames = 0;
oldtime++;
}
Symbol 410 MovieClip Frame 2
gotoAndPlay (1);
Symbol 416 MovieClip Frame 1
function blurMe(blurX, blurY) {
quality = 1;
filter = new flash.filters.BlurFilter(blurX, blurY, quality);
filterArray = new Array();
filterArray.push(filter);
this.filters = filterArray;
if (blurX == 0) {
if (blurY == 0) {
this.filters = new Array();
}
}
}
function colorMe(redtarget, greentarget, bluetarget) {
var _loc5 = (new flash.geom.Transform(this));
var _loc2 = _loc5.colorTransform;
_loc2.redMultiplier = redtarget;
_loc2.greenMultiplier = greentarget;
_loc2.blueMultiplier = bluetarget;
_loc5.colorTransform = _loc2;
if (redtarget == 1) {
if (greentarget == 1) {
if (bluetarget == 1) {
_loc5 = new flash.geom.Transform(this);
}
}
}
}
function glowMe(glowColor, glowAlpha, glowBlur) {
var _loc2 = (new flash.filters.GlowFilter(glowColor, glowAlpha, glowBlur, glowBlur, 2, 1));
_loc2.quality = 3;
this.filters = [_loc2];
if (glowAlpha == 0) {
this.filters = new Array();
}
}
stop();
glowMe(9510144, 0.75, 30);