STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228094
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/68036040?noj=FRM68036040-5DC" width="1" height="1"></div>

WiggiWorld Bacteria Bash.swf

This is the info page for
Flash #39666

(Click the ID number above for more basic data on this flash file.)


Text
TREATMENT FAILED

FINAL SCORE:

MENU

PATIENT CURED!

LEVEL CLEAR!

I'm the doctor here in
WiggiWorld, and I'm having
some trouble with a
patient, do you think you
could help me out?

Hi There!

He has a bacterial infection
and I need to shrink down
and inject the bacteria with
antibiotics and remove
them. I have to be careful
though...

If I inject them and don't
remove them up straight
away, they will grow
resistant to the antibiotics,
and become stronger and
faster than before!

Here's how you control me:

OR

= Move Up

= Move Left

= Move Right

Make sure to hit the bacteria
with the syringe. If a bacteria
hits my glass window, it will
crack! Too many hits and I will
be forced to leave the patient
without completing my
treatment, and the patient will
not be cured.

For extra points, catch the
knocked out bacteria before
they hit the ground!
For a health bonus, inject 5
bacteria without landing!

White blood cells will help
you by dropping powerups!

The shield prevents bacteria from
damaging your ship

Slows down all germs to half their
speed

Restores your ship to full health

Created By

S

E

M

A

J

N

B

Music by
WiggiWorld

http://100101.org

http://100101.org

CURRENT LOCATION

BACTERIA CONCENTRATION

START

YOU ARE HERE

SCORE:

ActionScript [AS1/AS2]

Frame 1
stop(); _root.WPI_ArcadeStartSingleGame = function () { trace("WPI_ArcadeStartSingleGame called - the current game has started"); }; _root.WPI_ArcadeStopSingleGame = function (score) { trace("WPI_ArcadeStopSingleGame called - the current game has finished with score: " + score); };
Frame 2
stop();
Symbol 25 MovieClip [brainFluid] Frame 1
function splashAt(x, y) { depth = _parent.getNextFreeDepth(); _parent.attachMovie("brainSplash", "brainSplash" + depth, depth, {_x:x, _y:y}); } function spawnBubble(x, y) { depth = _parent.getNextFreeDepth(); _parent.attachMovie("brainBubble", "brainBubble" + depth, depth, {_x:x, _y:y}); }
Symbol 30 MovieClip [blood] Frame 1
function splashAt(x, y) { depth = _parent.getNextFreeDepth(); _parent.attachMovie("bloodSplash", "bloodSplash" + depth, depth, {_x:x, _y:y}); } function spawnBubble(x, y) { depth = _parent.getNextFreeDepth(); _parent.attachMovie("bloodBubble", "bloodBubble" + depth, depth, {_x:x, _y:y}); }
Symbol 35 MovieClip [acid] Frame 1
function splashAt(x, y) { depth = _parent.getNextFreeDepth(); _parent.attachMovie("acidSplash", "acidSplash" + depth, depth, {_x:x, _y:y}); } function spawnBubble(x, y) { depth = _parent.getNextFreeDepth(); _parent.attachMovie("acidBubble", "acidBubble" + depth, depth, {_x:x, _y:y}); }
Symbol 67 MovieClip Frame 17
gotoAndPlay ("swimming");
Symbol 67 MovieClip Frame 18
play();
Symbol 67 MovieClip Frame 21
stop();
Symbol 67 MovieClip Frame 31
if ((--_parent.cyclesToDo) > 0) { this.gotoAndPlay("transform"); }
Symbol 67 MovieClip Frame 53
_parent.transformComplete = true;
Symbol 73 MovieClip Frame 1
stop();
Symbol 73 MovieClip Frame 5
stop();
Symbol 78 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 5
stop();
Symbol 79 MovieClip [GermBody1] Frame 1
function knockOut() { this.body.gotoAndPlay("knockout"); this.type1Eye.gotoAndPlay("knockout"); this.type1Mouth.gotoAndPlay("knockout"); } function startSwimming() { this.body.gotoAndPlay("swimming"); this.type1Eye.gotoAndPlay("swimming"); this.type1Mouth.gotoAndPlay("swimming"); } function startTransforming() { this.body.gotoAndPlay("transform"); } stop(); transformComplete = false; cyclesToDo = 8;
Symbol 80 MovieClip [Germ] Frame 1
function damagedShip() { this.xVel = this.xVel * -1; } function knockedOut() { this.germState = "knocked out falling"; this.germBody.knockOut(); } function fallInAcid() { if (this.germState != "in acid") { if (this.germState == "swimming") { this.germBody.knockOut(); } _parent.acid.splashAt(this._x, this._y); this.germState = "in acid"; } } function startSwimming() { this.germBody.startSwimming(); germState = "swimming"; canCollect = false; hitGround = false; _rotation = 0; knockedOutTimer = 0; fallCounter = 0; xVel = random(minVel - maxVel) + minVel; if (random(2) == 0) { xVel = xVel * -1; } isCombo = false; } function setLevel() { switch (level) { case 1 : setLevel1(); return; case 2 : setLevel2(); return; case 3 : setLevel3(); } } function setLevel1() { score = 5; suckingTimeOut = 100; suckRate = 10; knockOutRevive = 30; level = 1; minVel = 2; maxVel = 7; maxRotate = 0; yIncrement = 1; attackDistance = 50; } function setLevel2() { score = 10; suckingTimeOut = 100; suckRate = 20; knockOutRevive = 30; this.attachMovie("GermType2", "germBody", germBody.getDepth()); level = 2; minVel = 5; maxVel = 12; maxRotate = 2; yIncrement = 2; attackDistance = 100; } function setLevel3() { this.attachMovie("GermType3", "germBody", germBody.getDepth()); score = 15; suckingTimeOut = 100; suckRate = 20; knockOutRevive = 50; level = 3; minVel = 8; maxVel = 15; maxRotate = 0.5; yIncrement = 3; attackDistance = 150; } function VelMagnitude() { return(Math.sqrt((xVel * xVel) + (yVel * yVel))); } function VelTruncate(value) { magnitude = VelMagnitude(); xVel = (xVel / magnitude) * value; yVel = (yVel / magnitude) * value; } function addYVelocity(amount) { yVel = yVel + amount; if (yVel < (maxRotation * -1)) { yVel = maxRotation * -1; } if (yVel > maxRotation) { yVel = maxRotation; } } stop(); var germState = "swimming"; knockedOutRotation = 5; germBounce = -0.6; germFriction = 0.9; canCollect = false; hitGround = false; knockedOutTimer = 0; fallCounter = 0; setLevel(); xVel = 10; yVel = 0; maxRotation = 4; startSwimming(); growSound = new Sound(); growSound.attachSound("grow.wav"); this.onEnterFrame = function () { if (!_parent.paused) { distanceToShip = _parent.distanceToShip(_x, _y); if (xVel < 0) { this._xscale = 100; } else if (xVel > 0) { this._xscale = -100; } if (_parent.acid.acidHitTest.hitTest(this.germBody.germHitTest)) { this.fallInAcid(); } if (_y > 610) { _parent.removeGerm(this); } switch (this.germState) { case "swimming" : topHit = _parent.levelHit(this.germBody.germTopRange); bottomHit = _parent.levelHit(this.germBody.germBottomRange); if ((bottomHit == null) && (_parent.acid.acidHitTest.hitTest(this.germBody.germBottomRange))) { bottomHit = _parent.acid; } if (((topHit != null) && (bottomHit != null)) && (topHit != bottomHit)) { yVel = 0; } else if (topHit != null) { addYVelocity(yIncrement * -1); } else if (bottomHit != null) { addYVelocity(yIncrement); } else { topGermHit = _parent.germHit(this.germBody.germTopRange); bottomGermHit = _parent.germHit(this.germBody.germBottomRange); if ((topGermHit != null) && (topGermHit != this)) { addYVelocity(yIncrement * -1); } else if (bottomGermHit && (bottomGermHit != this)) { addYVelocity(yIncrement); } } if (xVel > 0) { _rotation = (_rotation * -1); } if (_parent.levelHit(this.germHitTest)) { yVel = 0; } if (yVel == 0) { if (random(10) == 1) { addYVelocity(((random(2) == 0) ? (yIncrement) : (yIncrement * -1))); movementRandom = true; } } else if (random(20) == 1) { yVel = 0; movementRandom = false; } _rotation = (yVel * ((xVel < 0) ? 2 : -2)); break; case "knocked out falling" : if ((distanceToShip > 100) || ((++fallCounter) > 15)) { canCollect = true; } this.yVel = this.yVel - _parent.gravityConst; this._rotation = this._rotation + knockedOutRotation; levelHit = _parent.levelHit(this.germBody.germHitTest); if (levelHit != null) { this.xVel = this.xVel * germFriction; this.yVel = this.yVel * germBounce; canCollect = true; hitGround = true; totalRotation = totalRotation + knockedOutRotation; if ((((((xVel < 3) && (xVel > -3)) && (yVel < 3)) && (yVel > -3)) && ((((_rotation < 25) && (_rotation > -25)) || (_rotation > 155)) || (_rotation < -155))) || (totalRotation > 360)) { xVel = 0; yVel = 0; this.germState = "knocked out on ground"; } } if (distanceToShip > 100) { canCollect = true; } break; case "knocked out on ground" : if ((++knockedOutTimer) > knockOutRevive) { this.germBody.startTransforming(); this.germState = "transforming"; } break; case "in acid" : yVel = _parent.acidSinkConst; xVel = xVel / 2; break; case "transforming" : if (!this.germBody.transformComplete) { break; } switch (level) { case 1 : setLevel2(); break; case 2 : setLevel3(); break; case 3 : } growSound.start(); startSwimming(); } if (canCollect && (this.germBody.germHitTest.hitTest(_parent.symShip.wholeHitTest))) { _parent.collectGerm(this); } if ((germState != "knocked out falling") && (_parent.levelHit(this.germBody.germHitTest))) { yVel = 0; } if (yVel < _parent.minYVel) { yVel = _parent.minYVel; } _x = (_x + (_parent.isSlow ? (xVel / 3) : (xVel))); _y = (_y - ((_parent.isSlow && (germState != "knocked out falling")) ? (yVel / 3) : (yVel))); if (_x < -20) { _x = 820; } if (_x > 820) { _x = -20; } } };
Symbol 87 MovieClip [brainBubble] Frame 20
this.removeMovieClip();
Symbol 94 MovieClip [bloodBubble] Frame 20
this.removeMovieClip();
Symbol 101 MovieClip [acidBubble] Frame 31
this.removeMovieClip();
Symbol 107 MovieClip [bloodSplash] Frame 10
this.removeMovieClip();
Symbol 113 MovieClip [acidSplash] Frame 1
this.splashSound = new Sound(); splashSound.attachSound("splash.wav"); if (_parent.soundOn) { splashSound.start(); }
Symbol 113 MovieClip [acidSplash] Frame 10
this.removeMovieClip();
Symbol 118 MovieClip [shipBubble] Frame 1
stop(); xDir = 0; this.onEnterFrame = function () { if (_parent.levelHit(this, true) != null) { if (xDir == 0) { if (random(5) > 2) { xDir = 1; } else { xDir = -1; } this.stopTween(); this.tween("_x", this._x + (15 * xDir), random(10) / 10, "easeOutQuad", 0, function () { this.gotoAndPlay("pop"); }); } } };
Symbol 118 MovieClip [shipBubble] Frame 4
this.removeMovieClip();
Symbol 124 MovieClip [slowPowerUp] Frame 1
powerupState = "falling"; xVel = random(20) - 10; yVel = random(3); canCollect = false; collected = false; thisFriction = 0.5; thisBounce = -0.7; cyclesToGo = 5; timeElapsed = 0; timeOut = 150; totalRotated = 0; stop(); this.onEnterFrame = function () { distanceToShip = _parent.distanceToShip(_x, _y); switch (powerupState) { case "falling" : yVel = yVel - _parent.gravityConst; this._rotation = this._rotation + 5; this.totalRotated = this.totalRotated + 5; levelHit = _parent.levelHit(this); if (levelHit != null) { this.xVel = this.xVel * thisFriction; this.yVel = this.yVel * thisBounce; canCollect = true; if (((((xVel < 3) && (xVel > -3)) && (yVel < 3)) && (yVel > -3)) || (totalRotated > 360)) { xVel = 0; yVel = 0; this.powerupState = "on ground"; } } if ((!canCollect) && (distanceToShip > 150)) { canCollect = true; } if (_parent.acid.acidHitTest.hitTest(this)) { _parent.acid.splashAt(this._x, this._y); powerupState = "in acid"; } break; case "in acid" : yVel = -2; xVel = xVel / 2; case "on ground" : if ((++timeElapsed) <= timeOut) { break; } this.gotoAndPlay("pulse"); powerupState = "pulsing"; } if (yVel < _parent.minYVel) { yVel = _parent.minYVel; } _x = (_x + xVel); _y = (_y - yVel); if (_x < -20) { _x = 820; } if (_x > 820) { _x = -20; } if (((canCollect && (!collected)) && (this.hitTest(_parent.symShip.wholeHitTest))) && ((_parent.symShip.shipState == "flying") || (_parent.symShip.shipState == "on ground"))) { _parent.slow(); this.gotoAndPlay("dissolve"); collected = true; _parent.pickupSound.start(); } if (this._y > 620) { this.removeMovieClip(); } };
Symbol 124 MovieClip [slowPowerUp] Frame 9
if ((--this.cyclesToGo) > 0) { this.gotoAndPlay("pulse"); }
Symbol 124 MovieClip [slowPowerUp] Frame 14
this.removeMovieClip();
Symbol 130 MovieClip [shieldPowerUp] Frame 1
powerupState = "falling"; xVel = random(20) - 10; yVel = random(3); canCollect = false; collected = false; thisFriction = 0.5; thisBounce = -0.7; cyclesToGo = 5; timeElapsed = 0; timeOut = 150; totalRotated = 0; stop(); this.onEnterFrame = function () { distanceToShip = _parent.distanceToShip(_x, _y); switch (powerupState) { case "falling" : yVel = yVel - _parent.gravityConst; this._rotation = this._rotation + 5; this.totalRotated = this.totalRotated + 5; levelHit = _parent.levelHit(this); if (levelHit != null) { this.xVel = this.xVel * thisFriction; this.yVel = this.yVel * thisBounce; canCollect = true; if (((((xVel < 3) && (xVel > -3)) && (yVel < 3)) && (yVel > -3)) || (totalRotated > 360)) { xVel = 0; yVel = 0; this.powerupState = "on ground"; } } if ((!canCollect) && (distanceToShip > 150)) { canCollect = true; } if (_parent.acid.acidHitTest.hitTest(this)) { _parent.acid.splashAt(this._x, this._y); powerupState = "in acid"; } break; case "in acid" : yVel = -2; xVel = xVel / 2; case "on ground" : if ((++timeElapsed) <= timeOut) { break; } this.gotoAndPlay("pulse"); powerupState = "pulsing"; } if (yVel < _parent.minYVel) { yVel = _parent.minYVel; } _x = (_x + xVel); _y = (_y - yVel); if (_x < -20) { _x = 820; } if (_x > 820) { _x = -20; } if (((canCollect && (!collected)) && (this.hitTest(_parent.symShip.wholeHitTest))) && ((_parent.symShip.shipState == "flying") || (_parent.symShip.shipState == "on ground"))) { _parent.symShip.shieldStart(); this.gotoAndPlay("dissolve"); collected = true; _parent.pickupSound.start(); } if (this._y > 620) { this.removeMovieClip(); } };
Symbol 130 MovieClip [shieldPowerUp] Frame 9
if ((--this.cyclesToGo) > 0) { this.gotoAndPlay("pulse"); }
Symbol 130 MovieClip [shieldPowerUp] Frame 14
this.removeMovieClip();
Symbol 136 MovieClip [healthPowerUp] Frame 1
powerupState = "falling"; xVel = random(20) - 10; yVel = random(3); canCollect = false; collected = false; thisFriction = 0.5; thisBounce = -0.7; cyclesToGo = 5; timeElapsed = 0; timeOut = 150; totalRotated = 0; stop(); this.onEnterFrame = function () { distanceToShip = _parent.distanceToShip(_x, _y); switch (powerupState) { case "falling" : yVel = yVel - _parent.gravityConst; this._rotation = this._rotation + 5; this.totalRotated = this.totalRotated + 5; levelHit = _parent.levelHit(this); if (levelHit != null) { this.xVel = this.xVel * thisFriction; this.yVel = this.yVel * thisBounce; canCollect = true; if (((((xVel < 3) && (xVel > -3)) && (yVel < 3)) && (yVel > -3)) || (totalRotated > 360)) { xVel = 0; yVel = 0; this.powerupState = "on ground"; } } if ((!canCollect) && (distanceToShip > 150)) { canCollect = true; } if (_parent.acid.acidHitTest.hitTest(this)) { _parent.acid.splashAt(this._x, this._y); powerupState = "in acid"; } break; case "in acid" : yVel = -2; xVel = xVel / 2; case "on ground" : if ((++timeElapsed) <= timeOut) { break; } this.gotoAndPlay("pulse"); powerupState = "pulsing"; } if (yVel < _parent.minYVel) { yVel = _parent.minYVel; } _x = (_x + xVel); _y = (_y - yVel); if (_x < -20) { _x = 820; } if (_x > 820) { _x = -20; } if (((canCollect && (!collected)) && (this.hitTest(_parent.symShip.wholeHitTest))) && ((_parent.symShip.shipState == "flying") || (_parent.symShip.shipState == "on ground"))) { _parent.symShip.heal(); this.gotoAndPlay("dissolve"); collected = true; _parent.pickupSound.start(); } if (this._y > 620) { this.removeMovieClip(); } };
Symbol 136 MovieClip [healthPowerUp] Frame 9
if ((--this.cyclesToGo) > 0) { this.gotoAndPlay("pulse"); }
Symbol 136 MovieClip [healthPowerUp] Frame 14
this.removeMovieClip();
Symbol 146 Button
on (press) { _parent.gotoAndPlay("game Over"); }
Symbol 153 MovieClip Frame 88
stop();
Symbol 154 MovieClip [gameOverScreen] Frame 1
stop();
Symbol 162 MovieClip Frame 21
gotoAndPlay ("infected");
Symbol 167 MovieClip Frame 21
gotoAndPlay ("infected");
Symbol 172 MovieClip Frame 21
gotoAndPlay ("infected");
Symbol 177 MovieClip [mapLiver] Frame 21
gotoAndPlay ("infected");
Symbol 182 MovieClip Frame 21
gotoAndPlay ("infected");
Symbol 185 MovieClip [patientCured] Frame 1
mapStomach.gotoAndStop("clean"); mapLiver.gotoAndStop("clean"); mapLeftLung.gotoAndStop("clean"); mapHeart.gotoAndStop("clean"); mapRightLung.gotoAndStop("clean"); mapBrain.gotoAndStop("clean"); this.happyPatient._alpha = 0; this.happyPatient.tween("_alpha", 100, 3, "linear", 1); _root.WPI_StopSingleGame(_parent.score); stop();
Symbol 209 MovieClip [level2] Frame 1
level = 2;
Symbol 211 MovieClip [level1] Frame 1
level = 1;
Symbol 254 MovieClip Frame 1
stop();
Symbol 254 MovieClip Frame 2
stop();
Symbol 275 Button
on (press) { gotoAndStop ("text2"); }
Symbol 278 Button
on (press) { this.tween(["_xscale", "_yscale"], [1, 1], 0.5, "easeOutQuad", 0, function () { this.removeMovieClip(); }); }
Symbol 280 Button
on (press) { gotoAndStop ("text3"); }
Symbol 282 Button
on (press) { gotoAndStop ("text4"); }
Symbol 291 Button
on (press) { gotoAndStop ("text5"); }
Symbol 293 Button
on (press) { gotoAndStop ("text6"); }
Symbol 295 Button
on (press) { gotoAndStop ("text7"); }
Symbol 312 MovieClip [helpScreen] Frame 1
helpDoc.gotoAndStop(1);
Symbol 312 MovieClip [helpScreen] Frame 22
helpDoc.gotoAndStop(2);
Symbol 312 MovieClip [helpScreen] Frame 23
helpDoc.gotoAndStop(3);
Symbol 312 MovieClip [helpScreen] Frame 24
helpDoc.gotoAndStop(4);
Symbol 312 MovieClip [helpScreen] Frame 25
helpDoc.gotoAndStop(5); helpDoc.doc.docMouth.gotoAndStop("talking");
Symbol 312 MovieClip [helpScreen] Frame 26
stop();
Symbol 327 Button
on (press) { getURL ("http://100101.org"); }
Symbol 328 Button
on (press) { this.tween(["_xscale", "_yscale"], [1, 1], 0.5, "easeOutQuad", 0, function () { this.removeMovieClip(); }); }
Symbol 365 MovieClip [symShipLegs] Frame 1
play();
Symbol 365 MovieClip [symShipLegs] Frame 5
stop();
Symbol 365 MovieClip [symShipLegs] Frame 10
stop();
Symbol 365 MovieClip [symShipLegs] Frame 28
gotoAndPlay ("runleft");
Symbol 365 MovieClip [symShipLegs] Frame 46
gotoAndPlay ("runright");
Symbol 370 MovieClip [symShip] Frame 1
this.xVel = 0; this.yVel = 0; this.inAir = true; speed = 2; maxVelocity = 15; extended = false; shipState = "flying"; shipRunState = "standing"; canFly = true; velFrMultiplier = 3; hitsLeft = 3; germWaitTime = 10; bubbleInterval = 1; bubbleElapsed = 0; this.swapDepths(10000); knockedOutRotation = 5; shipFriction = 0.8; shipBounce = -0.7; gameOverTimeout = 50; knockedOutTimer = 0; shieldOn = false; shieldMax = 300; shieldLeft = shieldMax; var injectSound = new Sound(); injectSound.attachSound("inject.wav"); var squishSound = new Sound(); squishSound.attachSound("squish.wav"); var owSound = new Sound(); owSound.attachSound("ow.wav"); var crack1Sound = new Sound(); crack1Sound.attachSound("crack1.wav"); var crack2Sound = new Sound(); crack2Sound.attachSound("crack2.wav"); var fixSound = new Sound(); fixSound.attachSound("ratchet.wav"); var zapSound = new Sound(); zapSound.attachSound("zap.wav"); var shieldOnSound = new Sound(); shieldOnSound.attachSound("shield-on.wav"); var shieldOffSound = new Sound(); shieldOffSound.attachSound("shield-off.wav"); _global.$createTweenController = function () { var _local3 = _root.createEmptyMovieClip("__tweenController__", 123432); _local3.$_tweenPropList = new Array(); _local3.$_tTime = getTimer(); _local3.onEnterFrame = _global.$updateTweens; }; ASSetPropFlags(_global, "$createTweenController", 1, 0); _global.$removeTweenController = function () { delete _root.__tweenController__.$_tweenPropList; delete _root.__tweenController__.$_tTime; delete _root.__tweenController__.onEnterFrame; _root.__tweenController__.removeMovieClip(); }; ASSetPropFlags(_global, "$removeTweenController", 1, 0); _global.$addTween = function (mtarget, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, extras) { if (timeSeconds == undefined) { timeSeconds = 0; } if ((animType == undefined) || (animType == "")) { animType = "easeOutExpo"; } if (delay == undefined) { delay = 0; } if (typeof(prop) == "string") { var _local7 = [prop]; var _local11 = [mtarget[prop]]; var _local9 = [propDest]; } else { var _local7 = []; var _local11 = []; var _local9 = []; for (var _local32 in prop) { _local11.push(mtarget[prop[_local32]]); } for (var _local32 in prop) { _local7.push(prop[_local32]); } for (var _local32 in propDest) { _local9.push(propDest[_local32]); } } var _local12 = false; if (_root.__tweenController__ == undefined) { _global.$createTweenController(); } var _local4 = _root.__tweenController__.$_tweenPropList; var _local8 = _root.__tweenController__.$_tTime; for (var _local32 in _local11) { if ((_local9[_local32] != undefined) && (!mtarget.$_isTweenLocked)) { if (mtarget.$_tweenCount > 0) { var _local3 = 0; while (_local3 < _local4.length) { if ((_local4[_local3]._targ == mtarget) && (_local4[_local3]._prop == _local7[_local32])) { if ((_local8 + (delay * 1000)) < _local4[_local3]._timeDest) { _local4.splice(_local3, 1); _local3--; mtarget.$_tweenCount--; } } _local3++; } } _local4.push({_prop:_local7[_local32], _targ:mtarget, _propStart:undefined, _propDest:_local9[_local32], _timeStart:_local8, _timeDest:_local8 + (timeSeconds * 1000), _animType:animType, _extra1:extra1, _extra2:extra2, _extras:extras, _delay:delay, _isPaused:false, _timePaused:0, _callback:(_local12 ? undefined : (callback))}); mtarget.$_tweenCount = ((mtarget.$_tweenCount > 0) ? (mtarget.$_tweenCount + 1) : 1); _local12 = true; } } ASSetPropFlags(mtarget, "$_tweenCount", 1, 0); }; ASSetPropFlags(_global, "$addTween", 1, 0); _global.$updateTweens = function () { var _local8 = (this.$_tTime = getTimer()); var _local6 = 0; while (_local6 < this.$_tweenPropList.length) { var _local3 = this.$_tweenPropList[_local6]; if (_local3._targ.toString() == undefined) { this.$_tweenPropList.splice(_local6, 1); _local6--; } else if (((_local3._timeStart + (_local3._delay * 1000)) <= _local8) && (!_local3._isPaused)) { if (_local3._propStart == undefined) { if (_local3._prop.substr(0, 10) == "__special_") { if (_local3._prop == "__special_mc_frame__") { _local3._propStart = _local3._targ._currentframe; } else if (_local3._prop == "__special_mc_ra__") { _local3._propStart = new Color(_local3._targ).getTransform().ra; } else if (_local3._prop == "__special_mc_rb__") { _local3._propStart = new Color(_local3._targ).getTransform().rb; } else if (_local3._prop == "__special_mc_ga__") { _local3._propStart = new Color(_local3._targ).getTransform().ga; } else if (_local3._prop == "__special_mc_gb__") { _local3._propStart = new Color(_local3._targ).getTransform().gb; } else if (_local3._prop == "__special_mc_ba__") { _local3._propStart = new Color(_local3._targ).getTransform().ba; } else if (_local3._prop == "__special_mc_bb__") { _local3._propStart = new Color(_local3._targ).getTransform().bb; } else if (_local3._prop == "__special_mc_aa__") { _local3._propStart = new Color(_local3._targ).getTransform().aa; } else if (_local3._prop == "__special_mc_ab__") { _local3._propStart = new Color(_local3._targ).getTransform().ab; } else if (_local3._prop == "__special_text_r__") { _local3._propStart = _local3._targ.textColor >> 16; } else if (_local3._prop == "__special_text_g__") { _local3._propStart = (_local3._targ.textColor & 65280) >> 8; } else if (_local3._prop == "__special_text_b__") { _local3._propStart = _local3._targ.textColor & 255; } else if (_local3._prop == "__special_sound_volume__") { _local3._propStart = _local3._targ.getVolume(); } else if (_local3._prop == "__special_sound_pan__") { _local3._propStart = _local3._targ.getPan(); } else if (_local3._prop == "__special_bst_t__") { _local3._propStart = 0; _local3._extras.__special_bst_ix__ = _local3._targ._x; _local3._extras.__special_bst_iy__ = _local3._targ._y; } else if (_local3._prop == "__special_blur_x__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BlurFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_blur_y__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BlurFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_color__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].color; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 16777215 /* 0xFFFFFF */; } } else if (_local3._prop == "__special_glow_alpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].alpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_glow_blurX__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_blurY__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_strength__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].strength; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_distance__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].distance; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_angle__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].angle; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 45; } } else if (_local3._prop == "__special_bevel_highlightColor__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].highlightColor; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 16777215 /* 0xFFFFFF */; } } else if (_local3._prop == "__special_bevel_highlightAlpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].highlightAlpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_shadowColor__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].shadowColor; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_shadowAlpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].shadowAlpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_blurX__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_blurY__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_strength__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].strength; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else { _local3._propStart = _local3._targ[_local3._prop]; } } else { _local3._propStart = _local3._targ[_local3._prop]; } } var _local10 = _local3._timeDest + (_local3._delay * 1000); if (_local10 <= _local8) { var _local4 = _local3._propDest; } else { var _local4 = _global.findTweenValue(_local3._propStart, _local3._propDest, _local3._timeStart, _local8 - (_local3._delay * 1000), _local3._timeDest, _local3._animType, _local3._extra1, _local3._extra2); } _local3._targ[_local3._prop] = (_local3._extras.mustRound ? (Math.round(_local4)) : (_local4)); if (_local3._prop == "__special_mc_frame__") { _local3._targ.gotoAndStop(Math.round(_local4)); } else if (_local3._prop == "__special_mc_ra__") { new Color(_local3._targ).setTransform({ra:_local4}); } else if (_local3._prop == "__special_mc_rb__") { new Color(_local3._targ).setTransform({rb:_local4}); } else if (_local3._prop == "__special_mc_ga__") { new Color(_local3._targ).setTransform({ga:_local4}); } else if (_local3._prop == "__special_mc_gb__") { new Color(_local3._targ).setTransform({gb:_local4}); } else if (_local3._prop == "__special_mc_ba__") { new Color(_local3._targ).setTransform({ba:_local4}); } else if (_local3._prop == "__special_mc_bb__") { new Color(_local3._targ).setTransform({bb:_local4}); } else if (_local3._prop == "__special_mc_aa__") { new Color(_local3._targ).setTransform({aa:_local4}); } else if (_local3._prop == "__special_mc_ab__") { new Color(_local3._targ).setTransform({ab:_local4}); } if (_local3._prop == "__special_bst_t__") { var _local7 = _local3._extras; var _local9 = _global.findPointOnCurve(_local7.__special_bst_ix__, _local7.__special_bst_iy__, _local7.__special_bst_cx__, _local7.__special_bst_cy__, _local7.__special_bst_dx__, _local7.__special_bst_dy__, _local4); if (_local3._extras.mustRound) { _local3._targ._x = Math.round(_local9.x); _local3._targ._y = Math.round(_local9.y); } else { _local3._targ._x = _local9.x; _local3._targ._y = _local9.y; } } if ((typeof(_local3._targ) != "movieclip") && (_local3._prop == "__special_text_b__")) { _local3._targ.textColor = ((_local3._targ.__special_text_r__ << 16) + (_local3._targ.__special_text_g__ << 8)) + _local3._targ.__special_text_b__; } if (_local3._prop == "__special_sound_volume__") { _local3._targ.setVolume(_local4); } if (_local3._prop == "__special_sound_pan__") { _local3._targ.setPan(_local4); } if (_local3._prop == "__special_blur_x__") { _global.$setFilterProperty(_local3._targ, "blur_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_blur_y__") { _global.$setFilterProperty(_local3._targ, "blur_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_glow_color__") { _global.$setFilterProperty(_local3._targ, "glow_color", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_glow_alpha__") { _global.$setFilterProperty(_local3._targ, "glow_alpha", _local4, _local3._extras); } if (_local3._prop == "__special_glow_blurX__") { _global.$setFilterProperty(_local3._targ, "glow_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_glow_blurY__") { _global.$setFilterProperty(_local3._targ, "glow_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_glow_strength__") { _global.$setFilterProperty(_local3._targ, "glow_strength", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_distance__") { _global.$setFilterProperty(_local3._targ, "bevel_distance", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_angle__") { _global.$setFilterProperty(_local3._targ, "bevel_angle", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_highlightColor__") { _global.$setFilterProperty(_local3._targ, "bevel_highlightColor", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_bevel_highlightAlpha__") { _global.$setFilterProperty(_local3._targ, "bevel_highlightAlpha", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_shadowColor__") { _global.$setFilterProperty(_local3._targ, "bevel_shadowColor", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_bevel_shadowAlpha__") { _global.$setFilterProperty(_local3._targ, "bevel_shadowAlpha", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_blurX__") { _global.$setFilterProperty(_local3._targ, "bevel_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_blurY__") { _global.$setFilterProperty(_local3._targ, "bevel_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_strength__") { _global.$setFilterProperty(_local3._targ, "bevel_strength", _local4, _local3._extras); } if (_local3._targ.onTweenUpdate != undefined) { _local3._targ.onTweenUpdate(_local3._prop); } if (_local10 <= _local8) { if (_local3._targ.onTweenComplete != undefined) { _local3._targ.onTweenComplete(_local3._prop); } _global.$stopTween(_local3._targ, [_local3._prop], false); _local6--; if (_local3._callback != undefined) { if (_global.backwardCallbackTweening) { var _local11 = _local3._targ.createEmptyMovieClip("__child__", 122344); _local3._callback.apply(_local11, null); _local11.removeMovieClip(); } else { _local3._callback.apply(_local3._targ, null); } } } } _local6++; } if (this.$_tweenPropList.length == 0) { _global.$removeTweenController(); } }; ASSetPropFlags(_global, "$updateTween", 1, 0); _global.$stopTween = function (mtarget, props, wipeFuture) { var _local4 = _root.__tweenController__.$_tweenPropList; var _local7; for (var _local9 in _local4) { _local7 = _local4[_local9]._prop; var _local5 = 0; while ((_local5 < props.length) || ((_local5 < 1) && (props == undefined))) { if (((_local4[_local9]._targ == mtarget) && ((_local7 == props[_local5]) || (props == undefined))) && (wipeFuture || ((_local4[_local9]._timeDest + (_local4[_local9]._delay * 1000)) <= getTimer()))) { switch (_local7) { case "__special_mc_frame__" : case "__special_mc_ra__" : case "__special_mc_rb__" : case "__special_mc_ga__" : case "__special_mc_gb__" : case "__special_mc_ba__" : case "__special_mc_bb__" : case "__special_mc_aa__" : case "__special_mc_ab__" : case "__special_sound_volume__" : case "__special_bst_t__" : delete mtarget[_local7]; break; case "__special_text_b__" : delete mtarget.__special_text_r__; delete mtarget.__special_text_g__; delete mtarget.__special_text_b__; } _local4.splice(_local9, 1); } _local5++; } } if (props == undefined) { delete mtarget.$_tweenCount; } else { mtarget.$_tweenCount = 0; for (var _local9 in _local4) { if (_local4[_local9]._targ == mtarget) { mtarget.$_tweenCount++; } } if (mtarget.$_tweenCount == 0) { delete mtarget.$_tweenCount; } } if (_local4.length == 0) { _global.$removeTweenController(); } }; ASSetPropFlags(_global, "$stopTween", 1, 0); _global.$setFilterProperty = function (mtarget, propName, propValue, extras) { var _local1; var _local7 = false; var _local3 = []; _local1 = 0; while (_local1 < mtarget.filters.length) { _local3.push(mtarget.filters[_local1]); _local1++; } if (propName.substr(0, 5) == "blur_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.BlurFilter) { _local3[_local1][propName.substr(5)] = propValue; if (extras.__special_blur_quality__ != undefined) { _local3[_local1].quality = extras.__special_blur_quality__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local9; var _local8 = ((extras.__special_blur_quality__ == undefined) ? 2 : (extras.__special_blur_quality__)); if (propName == "blur_blurX") { _local9 = new flash.filters.BlurFilter(propValue, 0, _local8); } if (propName == "blur_blurY") { _local9 = new flash.filters.BlurFilter(0, propValue, _local8); } _local3.push(_local9); } } else if (propName.substr(0, 5) == "glow_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.GlowFilter) { _local3[_local1][propName.substr(5)] = propValue; if (extras.__special_glow_quality__ != undefined) { _local3[_local1].quality = extras.__special_glow_quality__; } if (extras.__special_glow_inner__ != undefined) { _local3[_local1].inner = extras.__special_glow_inner__; } if (extras.__special_glow_knockout__ != undefined) { _local3[_local1].knockout = extras.__special_glow_knockout__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local8 = ((extras.__special_glow_quality__ == undefined) ? 2 : (extras.__special_glow_quality__)); var _local12 = ((extras.__special_glow_inner__ == undefined) ? false : (extras.__special_glow_inner__)); var _local10 = ((extras.__special_glow_knockout__ == undefined) ? false : (extras.__special_glow_knockout__)); if (propName == "glow_color") { var _local9 = new flash.filters.GlowFilter(propValue, 1, 0, 0, 1, _local8, _local12, _local10); } if (propName == "glow_alpha") { var _local9 = new flash.filters.GlowFilter(16777215, propValue, 0, 0, 1, _local8, _local12, _local10); } if (propName == "glow_blurX") { var _local9 = new flash.filters.GlowFilter(16777215, 1, propValue, 0, 1, _local8, _local12, _local10); } if (propName == "glow_blurY") { var _local9 = new flash.filters.GlowFilter(16777215, 1, 0, propValue, 1, _local8, _local12, _local10); } if (propName == "glow_strength") { var _local9 = new flash.filters.GlowFilter(16777215, 1, 0, 0, propValue, _local8, _local12, _local10); } _local3.push(_local9); } } else if (propName.substr(0, 6) == "bevel_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.BevelFilter) { _local3[_local1][propName.substr(6)] = propValue; if (extras.__special_bevel_quality__ != undefined) { _local3[_local1].quality = extras.__special_bevel_quality__; } if (extras.__special_bevel_type__ != undefined) { _local3[_local1].inner = extras.__special_bevel_type__; } if (extras.__special_bevel_knockout__ != undefined) { _local3[_local1].knockout = extras.__special_bevel_knockout__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local8 = ((extras.__special_bevel_quality__ == undefined) ? 2 : (extras.__special_bevel_quality__)); var _local11 = ((extras.__special_bevel_type__ == undefined) ? "inner" : (extras.__special_bevel_type__)); var _local10 = ((extras.__special_bevel_knockout__ == undefined) ? false : (extras.__special_bevel_knockout__)); if (propName == "bevel_distance") { var _local9 = new flash.filters.BevelFilter(propValue, 45, 16777215, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_angle") { var _local9 = new flash.filters.BevelFilter(0, propValue, 16777215, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_highlightColor") { var _local9 = new flash.filters.BevelFilter(0, 45, propValue, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_highlightAlpha") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, propValue, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_shadowColor") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, propValue, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_shadowAlpha") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, propValue, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_blurX") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, propValue, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_blurY") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, propValue, 1, _local8, _local11, _local10); } if (propName == "bevel_strength") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, 0, propValue, _local8, _local11, _local10); } _local3.push(_local9); } } else { return(undefined); } mtarget.filters = _local3; }; MovieClip.prototype.tween = (TextField.prototype.tween = (Sound.prototype.tween = function (prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2); })); ASSetPropFlags(MovieClip.prototype, "tween", 1, 0); ASSetPropFlags(TextField.prototype, "tween", 1, 0); ASSetPropFlags(Sound.prototype, "tween", 1, 0); MovieClip.prototype.roundedTween = (TextField.prototype.roundedTween = (Sound.prototype.roundedTween = function (prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); })); ASSetPropFlags(MovieClip.prototype, "roundedTween", 1, 0); ASSetPropFlags(TextField.prototype, "roundedTween", 1, 0); ASSetPropFlags(Sound.prototype, "roundedTween", 1, 0); MovieClip.prototype.stopTween = (TextField.prototype.stopTween = (Sound.prototype.stopTween = function (props) { if (typeof(props) == "string") { props = [props]; } if (props != undefined) { var _local4 = 1; while (_local4 < arguments.length) { props.push(arguments[_local4]); _local4++; } } _global.$stopTween(this, props, true); })); ASSetPropFlags(MovieClip.prototype, "stopTween", 1, 0); ASSetPropFlags(TextField.prototype, "stopTween", 1, 0); ASSetPropFlags(Sound.prototype, "stopTween", 1, 0); MovieClip.prototype.pauseTween = (TextField.prototype.pauseTween = (Sound.prototype.pauseTween = function (props) { if (props != undefined) { if (typeof(props) == "string") { props = [props]; } var _local6 = 1; while (_local6 < Arguments.length) { props.push(Arguments[_local6]); _local6++; } } var _local4 = _root.__tweenController__.$_tweenPropList; var _local5; for (var _local7 in _local4) { if ((_local4[_local7]._targ == this) && (!_local4[_local7]._isPaused)) { if (props != undefined) { _local5 = false; for (var _local6 in props) { if (props[_local6] == _local4[_local7]._prop) { _local5 = true; break; } } } if ((props == undefined) || (_local5)) { _local4[_local7]._isPaused = true; _local4[_local7]._timePaused = _root.__tweenController__.$_tTime; } } } })); ASSetPropFlags(MovieClip.prototype, "pauseTween", 1, 0); ASSetPropFlags(TextField.prototype, "pauseTween", 1, 0); ASSetPropFlags(Sound.prototype, "pauseTween", 1, 0); MovieClip.prototype.resumeTween = (TextField.prototype.resumeTween = (Sound.prototype.resumeTween = function (props) { if (props != undefined) { if (typeof(props) == "string") { props = [props]; } var _local7 = 1; while (_local7 < Arguments.length) { props.push(Arguments[_local7]); _local7++; } } var _local3 = _root.__tweenController__.$_tweenPropList; var _local5; var _local6; for (var _local8 in _local3) { if ((_local3[_local8]._targ == this) && (_local3[_local8]._isPaused)) { if (props != undefined) { _local5 = false; for (var _local7 in props) { if (props[_local7] == _local3[_local8]._prop) { _local5 = true; break; } } } if ((props == undefined) || (_local5)) { _local3[_local8]._isPaused = false; _local6 = _root.__tweenController__.$_tTime - _local3[_local8]._timePaused; _local3[_local8]._timeStart = _local3[_local8]._timeStart + _local6; _local3[_local8]._timeDest = _local3[_local8]._timeDest + _local6; _local3[_local8]._timePaused = 0; } } } })); ASSetPropFlags(MovieClip.prototype, "resumeTween", 1, 0); ASSetPropFlags(TextField.prototype, "resumeTween", 1, 0); ASSetPropFlags(Sound.prototype, "resumeTween", 1, 0); MovieClip.prototype.lockTween = (TextField.prototype.lockTween = (Sound.prototype.lockTween = function () { this.$_isTweenLocked = true; ASSetPropFlags(this, "this.$_isTweenLocked", 1, 0); })); ASSetPropFlags(MovieClip.prototype, "lockTween", 1, 0); ASSetPropFlags(TextField.prototype, "lockTween", 1, 0); ASSetPropFlags(Sound.prototype, "lockTween", 1, 0); MovieClip.prototype.unlockTween = (TextField.prototype.unlockTween = (Sound.prototype.unlockTween = function () { delete this.$_isTweenLocked; })); ASSetPropFlags(MovieClip.prototype, "unlockTween", 1, 0); ASSetPropFlags(TextField.prototype, "unlockTween", 1, 0); ASSetPropFlags(Sound.prototype, "unlockTween", 1, 0); MovieClip.prototype.getTweens = (TextField.prototype.getTweens = (Sound.prototype.getTweens = function () { return(this.$_tweenCount); })); ASSetPropFlags(MovieClip.prototype, "getTweens", 1, 0); ASSetPropFlags(TextField.prototype, "getTweens", 1, 0); ASSetPropFlags(Sound.prototype, "getTweens", 1, 0); MovieClip.prototype.isTweening = (TextField.prototype.isTweening = (Sound.prototype.isTweening = function () { return(((this.$_tweenCount > 0) ? true : false)); })); ASSetPropFlags(MovieClip.prototype, "isTweening", 1, 0); ASSetPropFlags(TextField.prototype, "isTweening", 1, 0); ASSetPropFlags(Sound.prototype, "isTweening", 1, 0); MovieClip.prototype.alphaTo = (TextField.prototype.alphaTo = function (propDest_a, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_alpha", propDest_a, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "alphaTo", 1, 0); ASSetPropFlags(TextField.prototype, "alphaTo", 1, 0); MovieClip.prototype.frameTo = function (propDest_frame, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_mc_frame__", propDest_frame, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(MovieClip.prototype, "frameTo", 1, 0); MovieClip.prototype.resizeTo = (TextField.prototype.resizeTo = function (propDest_width, propDest_height, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_width", "_height"], [propDest_width, propDest_height], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "resizeTo", 1, 0); ASSetPropFlags(TextField.prototype, "resizeTo", 1, 0); MovieClip.prototype.rotateTo = (TextField.prototype.rotateTo = function (propDest_rotation, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_rotation", propDest_rotation, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "rotateTo", 1, 0); ASSetPropFlags(TextField.prototype, "rotateTo", 1, 0); MovieClip.prototype.scaleTo = (TextField.prototype.scaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_xscale", "_yscale"], [propDest_scale, propDest_scale], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "scaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "scaleTo", 1, 0); MovieClip.prototype.xScaleTo = (TextField.prototype.xScaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_xscale", propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "xScaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "xScaleTo", 1, 0); MovieClip.prototype.yScaleTo = (TextField.prototype.yScaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_yscale", propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "yScaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "yScaleTo", 1, 0); TextField.prototype.scrollTo = function (propDest_scroll, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "scroll", propDest_scroll, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(TextField.prototype, "scrollTo", 1, 0); MovieClip.prototype.slideTo = (TextField.prototype.slideTo = function (propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "slideTo", 1, 0); ASSetPropFlags(TextField.prototype, "slideTo", 1, 0); MovieClip.prototype.roundedSlideTo = (TextField.prototype.roundedSlideTo = function (propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedSlideTo", 1, 0); MovieClip.prototype.xSlideTo = (TextField.prototype.xSlideTo = function (propDest_x, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_x", propDest_x, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "xSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "xSlideTo", 1, 0); MovieClip.prototype.roundedXSlideTo = (TextField.prototype.roundedXSlideTo = function (propDest_x, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_x", propDest_x, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedXSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedXSlideTo", 1, 0); MovieClip.prototype.ySlideTo = (TextField.prototype.ySlideTo = function (propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_y", propDest_y, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "ySlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "ySlideTo", 1, 0); MovieClip.prototype.roundedYSlideTo = (TextField.prototype.roundedYSlideTo = function (propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_y", propDest_y, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedYSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedYSlideTo", 1, 0); MovieClip.prototype.bezierSlideTo = (TextField.prototype.bezierSlideTo = function (cpoint_x, cpoint_y, propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = new Object(); _local3.__special_bst_ix__ = undefined; _local3.__special_bst_iy__ = undefined; _local3.__special_bst_cx__ = cpoint_x; _local3.__special_bst_cy__ = cpoint_y; _local3.__special_bst_dx__ = propDest_x; _local3.__special_bst_dy__ = propDest_y; _global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _local3); }); ASSetPropFlags(MovieClip.prototype, "bezierSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "bezierSlideTo", 1, 0); MovieClip.prototype.roundedBezierSlideTo = (TextField.prototype.roundedBezierSlideTo = function (cpoint_x, cpoint_y, propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = new Object(); _local3.__special_bst_ix__ = undefined; _local3.__special_bst_iy__ = undefined; _local3.__special_bst_cx__ = cpoint_x; _local3.__special_bst_cy__ = cpoint_y; _local3.__special_bst_dx__ = propDest_x; _local3.__special_bst_dy__ = propDest_y; _local3.mustRound = true; _global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _local3); }); ASSetPropFlags(MovieClip.prototype, "roundedBezierSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedBezierSlideTo", 1, 0); Sound.prototype.volumeTo = function (propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_sound_volume__", propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(Sound.prototype, "volumeTo", 1, 0); Sound.prototype.panTo = function (propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_sound_pan__", propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(Sound.prototype, "panTo", 1, 0); MovieClip.prototype.colorTo = function (propDest_color, timeSeconds, animType, delay, callback, extra1, extra2) { if (propDest_color == null) { this.colorTransformTo(100, 0, 100, 0, 100, 0, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2); } else { var _local3 = propDest_color >> 16; var _local5 = (propDest_color & 65280) >> 8; var _local4 = propDest_color & 255; this.colorTransformTo(0, _local3, 0, _local5, 0, _local4, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2); } }; ASSetPropFlags(MovieClip.prototype, "colorTo", 1, 0); TextField.prototype.colorTo = function (propDest_color, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = propDest_color >> 16; var _local6 = (propDest_color & 65280) >> 8; var _local4 = propDest_color & 255; _global.$addTween(this, ["__special_text_r__", "__special_text_g__", "__special_text_b__"], [_local3, _local6, _local4], timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(TextField.prototype, "colorTo", 1, 0); MovieClip.prototype.colorTransformTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_mc_ra__", "__special_mc_rb__", "__special_mc_ga__", "__special_mc_gb__", "__special_mc_ba__", "__special_mc_bb__", "__special_mc_aa__", "__special_mc_ab__"], [arguments[0].ra, arguments[0].rb, arguments[0].ga, arguments[0].gb, arguments[0].ba, arguments[0].bb, arguments[0].aa, arguments[0].ab], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6]); } else { _global.$addTween(this, ["__special_mc_ra__", "__special_mc_rb__", "__special_mc_ga__", "__special_mc_gb__", "__special_mc_ba__", "__special_mc_bb__", "__special_mc_aa__", "__special_mc_ab__"], [arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7]], arguments[8], arguments[9], arguments[10], arguments[11], arguments[12], arguments[13]); } }; ASSetPropFlags(MovieClip.prototype, "colorTransformTo", 1, 0); MovieClip.prototype.blurTo = (TextField.prototype.blurTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [arguments[0].blurX, arguments[0].blurY], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_blur_quality__:arguments[0].quality}); } else { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [arguments[0], arguments[0]], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7], {__special_blur_quality__:arguments[1]}); } }); ASSetPropFlags(MovieClip.prototype, "blurTo", 1, 0); ASSetPropFlags(TextField.prototype, "blurTo", 1, 0); MovieClip.prototype.xyBlurTo = (TextField.prototype.xyBlurTo = function (propDest_blurX, propDest_blurY, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [propDest_blurX, propDest_blurY], timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "xyBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyBlurTo", 1, 0); MovieClip.prototype.xBlurTo = (TextField.prototype.xBlurTo = function (propDest_blur, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_blur_x__", propDest_blur, timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "xBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "xBlurTo", 1, 0); MovieClip.prototype.yBlurTo = (TextField.prototype.yBlurTo = function (propDest_blur, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_blur_y__", propDest_blur, timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "yBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "yBlurTo", 1, 0); MovieClip.prototype.glowTo = (TextField.prototype.glowTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [arguments[0].color, arguments[0].alpha, arguments[0].blurX, arguments[0].blurY, arguments[0].strength], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_glow_quality__:arguments[0].quality, __special_glow_inner__:arguments[0].inner, __special_glow_knockout__:arguments[0].knockout}); } else { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [arguments[0], arguments[1], arguments[2], arguments[2], arguments[3]], arguments[7], arguments[8], arguments[9], arguments[10], arguments[11], arguments[12], {__special_glow_quality__:arguments[4], __special_glow_inner__:arguments[5], __special_glow_knockout__:arguments[6]}); } }); ASSetPropFlags(MovieClip.prototype, "glowTo", 1, 0); ASSetPropFlags(TextField.prototype, "glowTo", 1, 0); MovieClip.prototype.xyGlowTo = (TextField.prototype.xyGlowTo = function (propDest_color, propDest_alpha, propDest_blurX, propDest_blurY, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blurX, propDest_blurY, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xyGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyGlowTo", 1, 0); MovieClip.prototype.xGlowTo = (TextField.prototype.xGlowTo = function (propDest_color, propDest_alpha, propDest_blur, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "xGlowTo", 1, 0); MovieClip.prototype.yGlowTo = (TextField.prototype.yGlowTo = function (propDest_color, propDest_alpha, propDest_blur, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurY__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "yGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "yGlowTo", 1, 0); MovieClip.prototype.bevelTo = (TextField.prototype.bevelTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_strength__"], [arguments[0].distance, arguments[0].angle, arguments[0].highlightColor, arguments[0].highlightAlpha * 100, arguments[0].shadowColor, arguments[0].shadowAlpha * 100, arguments[0].blurX, arguments[0].blurY, arguments[0].strength], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_bevel_quality__:arguments[0].quality, __special_bevel_type__:arguments[0].type, __special_bevel_knockout__:arguments[0].knockout}); } else { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_strength__"], [arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[6], arguments[7]], arguments[11], arguments[12], arguments[13], arguments[14], arguments[15], arguments[16], {__special_bevel_quality__:arguments[8], __special_bevel_type__:arguments[9], __special_bevel_knockout__:arguments[10]}); } }); ASSetPropFlags(MovieClip.prototype, "bevelTo", 1, 0); ASSetPropFlags(TextField.prototype, "bevelTo", 1, 0); MovieClip.prototype.xyBevelTo = (TextField.prototype.xyBevelTo = function (propDest_distance, propDest_angle, propDest_highlightColor, propDest_highlightAlpha, propDest_shadowColor, propDest_shadowAlpha, propDest_blurX, propDest_blurY, propDest_strength, quality, type, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_blurY__", "__special_bevel_strength__"], [propDest_distance, propDest_angle, propDest_highlightColor, propDest_highlightAlpha, propDest_shadowColor, propDest_shadowAlpha, propDest_blur, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_bevel_quality__:quality, __special_bevel_type__:type, __special_bevel_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xyBevelTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyBevelTo", 1, 0); _global.findPointOnCurve = function (p1x, p1y, cx, cy, p2x, p2y, t) { return({x:p1x + (t * (((2 * (1 - t)) * (cx - p1x)) + (t * (p2x - p1x)))), y:p1y + (t * (((2 * (1 - t)) * (cy - p1y)) + (t * (p2y - p1y))))}); }; ASSetPropFlags(_global, "findPointOnCurve", 1, 0); _global.findTweenColor = function (objProp, tTime) { var _local8 = objProp._propStart >> 16; var _local4 = objProp._propDest >> 16; var _local5 = (objProp._propStart >> 8) & 255; var _local6 = (objProp._propDest >> 8) & 255; var _local9 = objProp._propStart & 255; var _local7 = objProp._propDest & 255; var _local12 = Math.round(_global.findTweenValue(_local8, _local4, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); var _local10 = Math.round(_global.findTweenValue(_local5, _local6, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); var _local3 = Math.round(_global.findTweenValue(_local9, _local7, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); return(((_local12 << 16) + (_local10 << 8)) + _local3); }; _global.findTweenValue = function (_propStart, _propDest, _timeStart, _timeNow, _timeDest, _animType, _extra1, _extra2) { var _local1 = _timeNow - _timeStart; var _local4 = _propStart; var _local2 = _propDest - _propStart; var _local3 = _timeDest - _timeStart; var _local6 = _extra1; var _local7 = _extra2; var _local5 = _extra1; switch (_animType.toLowerCase()) { case "linear" : return(((_local2 * _local1) / _local3) + _local4); case "easeinquad" : _local1 = _local1 / _local3; return(((_local2 * _local1) * _local1) + _local4); case "easeoutquad" : _local1 = _local1 / _local3; return((((-_local2) * _local1) * (_local1 - 2)) + _local4); case "easeinoutquad" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((_local2 / 2) * _local1) * _local1) + _local4); } _local1--; return((((-_local2) / 2) * ((_local1 * (_local1 - 2)) - 1)) + _local4); case "easeoutinquad" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuad") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuad") * 0.5) + (_local2 * 0.5)) + _local4); case "easeincubic" : _local1 = _local1 / _local3; return((((_local2 * _local1) * _local1) * _local1) + _local4); case "easeoutcubic" : _local1 = (_local1 / _local3) - 1; return((_local2 * (((_local1 * _local1) * _local1) + 1)) + _local4); case "easeinoutcubic" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((((_local2 / 2) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (((_local1 * _local1) * _local1) + 2)) + _local4); case "easeoutincubic" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutCubic") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInCubic") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinquart" : _local1 = _local1 / _local3; return(((((_local2 * _local1) * _local1) * _local1) * _local1) + _local4); case "easeoutquart" : _local1 = (_local1 / _local3) - 1; return(((-_local2) * ((((_local1 * _local1) * _local1) * _local1) - 1)) + _local4); case "easeinoutquart" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((((_local2 / 2) * _local1) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return((((-_local2) / 2) * ((((_local1 * _local1) * _local1) * _local1) - 2)) + _local4); case "easeoutinquart" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuart") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuart") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinquint" : _local1 = _local1 / _local3; return((((((_local2 * _local1) * _local1) * _local1) * _local1) * _local1) + _local4); case "easeoutquint" : _local1 = (_local1 / _local3) - 1; return((_local2 * (((((_local1 * _local1) * _local1) * _local1) * _local1) + 1)) + _local4); case "easeinoutquint" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((((((_local2 / 2) * _local1) * _local1) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (((((_local1 * _local1) * _local1) * _local1) * _local1) + 2)) + _local4); case "easeoutinquint" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuint") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuint") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinsine" : return((((-_local2) * Math.cos((_local1 / _local3) * (Math.PI/2))) + _local2) + _local4); case "easeoutsine" : return((_local2 * Math.sin((_local1 / _local3) * (Math.PI/2))) + _local4); case "easeinoutsine" : return((((-_local2) / 2) * (Math.cos((Math.PI * _local1) / _local3) - 1)) + _local4); case "easeoutinsine" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutSine") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInSine") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinexpo" : return(((_local1 == 0) ? (_local4) : ((_local2 * Math.pow(2, 10 * ((_local1 / _local3) - 1))) + _local4))); case "easeoutexpo" : return(((_local1 == _local3) ? (_local4 + _local2) : ((_local2 * ((-Math.pow(2, (-10 * _local1) / _local3)) + 1)) + _local4))); case "easeinoutexpo" : if (_local1 == 0) { return(_local4); } if (_local1 == _local3) { return(_local4 + _local2); } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((_local2 / 2) * Math.pow(2, 10 * (_local1 - 1))) + _local4); } _local1--; return(((_local2 / 2) * ((-Math.pow(2, -10 * _local1)) + 2)) + _local4); case "easeoutinexpo" : if (_local1 == 0) { return(_local4); } if (_local1 == _local3) { return(_local4 + _local2); } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((_local2 / 2) * ((-Math.pow(2, (-10 * _local1) / 1)) + 1)) + _local4); } return(((_local2 / 2) * (Math.pow(2, (10 * (_local1 - 2)) / 1) + 1)) + _local4); case "easeincirc" : _local1 = _local1 / _local3; return(((-_local2) * (Math.sqrt(1 - (_local1 * _local1)) - 1)) + _local4); case "easeoutcirc" : _local1 = (_local1 / _local3) - 1; return((_local2 * Math.sqrt(1 - (_local1 * _local1))) + _local4); case "easeinoutcirc" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((-_local2) / 2) * (Math.sqrt(1 - (_local1 * _local1)) - 1)) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (Math.sqrt(1 - (_local1 * _local1)) + 1)) + _local4); case "easeoutincirc" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutCirc") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInCirc") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / _local3; if (_local1 == 1) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.3; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } _local1 = _local1 - 1; return((-((_local6 * Math.pow(2, 10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7))) + _local4); case "easeoutelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / _local3; if (_local1 == 1) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.3; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } return((((_local6 * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7)) + _local2) + _local4); case "easeinoutelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / (_local3 / 2); if (_local1 == 2) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.45; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } if (_local1 < 1) { _local1 = _local1 - 1; return((-0.5 * ((_local6 * Math.pow(2, 10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7))) + _local4); } _local1 = _local1 - 1; return(((((_local6 * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7)) * 0.5) + _local2) + _local4); case "easeoutinelastic" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutElastic") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInElastic") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = _local1 / _local3; return((((_local2 * _local1) * _local1) * (((_local5 + 1) * _local1) - _local5)) + _local4); case "easeoutback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = (_local1 / _local3) - 1; return((_local2 * (((_local1 * _local1) * (((_local5 + 1) * _local1) + _local5)) + 1)) + _local4); case "easeinoutback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { _local5 = _local5 * 1.525; return(((_local2 / 2) * ((_local1 * _local1) * (((_local5 + 1) * _local1) - _local5))) + _local4); } _local1 = _local1 - 2; _local5 = _local5 * 1.525; return(((_local2 / 2) * (((_local1 * _local1) * (((_local5 + 1) * _local1) + _local5)) + 2)) + _local4); case "easeoutinback" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutBack") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInBack") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinbounce" : return((_local2 - findTweenValue(0, _local2, 0, _local3 - _local1, _local3, "easeOutBounce")) + _local4); case "easeoutbounce" : _local1 = _local1 / _local3; if (_local1 < 0.363636363636364) { return((_local2 * ((7.5625 * _local1) * _local1)) + _local4); } if (_local1 < 0.727272727272727) { _local1 = _local1 - 0.545454545454545; return((_local2 * (((7.5625 * _local1) * _local1) + 0.75)) + _local4); } if (_local1 < 0.909090909090909) { _local1 = _local1 - 0.818181818181818; return((_local2 * (((7.5625 * _local1) * _local1) + 0.9375)) + _local4); } _local1 = _local1 - 0.954545454545455; return((_local2 * (((7.5625 * _local1) * _local1) + 0.984375)) + _local4); case "easeinoutbounce" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeInBounce") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeOutBounce") * 0.5) + (_local2 * 0.5)) + _local4); case "easeoutinbounce" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutBounce") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInBounce") * 0.5) + (_local2 * 0.5)) + _local4); } trace(("MC TWEEN ### Error on transition: there's no \"" + _animType) + "\" animation type."); return(0); }; ASSetPropFlags(_global, "findTweenValue", 1, 0); this.symShipBody.gotoAndStop("center"); centerFrameNum = symShipBody._currentFrame; this.onEnterFrame = function () { if (!_parent.paused) { closestGerm = _parent.getClosestGerm(); germPoint = {x:closestGerm._x + 20, y:closestGerm._y}; switch (shipState) { case "flying" : this.yVel = this.yVel - _parent.gravityConst; if (_parent.levelHit(_parent.symShip.shipNearTest) != null) { this.symShipLegs.gotoAndPlay("extend"); _parent.needle.gotoAndPlay("retract"); shipState = "landing"; this.tween("_rotation", 0, 0.3, "easeOutQuart"); } if (_parent.acid.acidHitTest.hitTest(this.shipBodyTest)) { yVel = maxVelocity; shipDamage(); depth = _parent.getNextFreeDepth(); _parent.attachMovie("acidSplash", "acidSplash" + depth, depth, {_x:this._x, _y:this._y - 30}); _parent.comboCounter = 0; } if ((closestGerm != null) && (closestGerm.distanceToShip < 200)) { if (!_parent.needle.isExtended) { _parent.needle.gotoAndPlay("extend"); } var _local11 = Math.atan2(germPoint.y - this._y, germPoint.x - this._x); var _local9 = Math.round((_local11 * 180) / Math.PI) + 90; _local9 = _local9 - 90; if (_local9 < _parent.needleMinRotation) { _local9 = _parent.needleMinRotation; } if (_local9 > _parent.needleMaxRotation) { _local9 = _parent.needleMaxRotation; } _parent.needle._rotation = _local9; } xVelocityToFrame(); setMood(); break; case "landing" : this.yVel = this.yVel - _parent.gravityConst; var _local5 = _parent.levelHit(_parent.symShip.shipHitTest); if ((_local5 != null) && (yVel <= 0)) { this.yVel = 0; levelBounds = _local5.getBounds(); var _local6 = {x:levelBounds.xMin, y:levelBounds.yMin}; var _local3 = {x:levelBounds.xMax, y:levelBounds.yMax}; _local5.localToGlobal(_local6); _local5.localToGlobal(_local3); hitBounds = _parent.symShip.shipHitTest.getBounds(); var _local12 = {x:hitBounds.xMin, y:hitBounds.yMin}; var _local10 = {x:hitBounds.xMax, y:hitBounds.yMax}; shipHitTest.localToGlobal(_local12); shipHitTest.localToGlobal(_local10); yDiff = _local10.y - _local6.y; if ((yDiff > 2) or (yDiff < -2)) { this.tween("_y", this._y - yDiff, 0.3, "easeOutQuart"); } this.symShipBody.gotoAndStop(1); shipState = "on ground"; _parent.comboCounter = 0; if (xVel == 0) { if (_parent.soundOn) { this.squishSound.start(); } } } if (!_parent.levelHit(_parent.symShip.shipNearTest)) { this.symShipLegs.gotoAndPlay("retract"); _parent.needle.gotoAndPlay("extend"); this.shipState = "flying"; } xVelocityToFrame(); setMood(); break; case "on ground" : if (yVel < 0) { yVel = 0; } if (yVel > _parent.gravityConst) { shipState = "landing"; } if ((xVel != 0) && (!(((Key.isDown(37) || (Key.isDown(39))) || (Key.isDown(65))) || (Key.isDown(68))))) { xVel = Math.round(xVel / _parent.frictionConst); } if (!_parent.levelHit(_parent.symShip.shipHitTest)) { this.symShipLegs.gotoAndPlay("retract"); this.shipState = "flying"; } xVelocityToFrame(); setMood(); break; case "knocked out" : this.yVel = this.yVel - _parent.gravityConst; this._rotation = this._rotation + knockedOutRotation; bodyHit = _parent.levelHit(this.headHitTest); if (bodyHit != null) { this.xVel = this.xVel * shipFriction; this.yVel = this.yVel * shipBounce; if ((((xVel < 3) && (xVel > -3)) && (yVel < 3)) && (yVel > -3)) { if (bodyHit._y < this._y) { xVel = 0; yVel = 0; shipState = "knocked out on ground"; } } } if (_parent.acid.acidHitTest.hitTest(this.headHitTest) || (_parent.acid.acidHitTest.hitTest(this.shipBodyTest))) { shipState = "in acid"; } break; case "in acid" : yVel = _parent.acidSinkConst; xVel = xVel / 2; break; case "knocked out on ground" : if ((++knockedOutTimer) <= gameOverTimeout) { break; } _parent.gameOver(); } if (_y > 630) { _parent.gameOver(); } if (canFly) { for (test in this.headHitTest) { var _local4 = headHitTest[test]; _local5 = _parent.levelHit(_local4); if ((_local5 != null) && (!collided)) { levelBounds = _local5.getBounds(); var _local6 = {x:levelBounds.xMin, y:levelBounds.yMin}; var _local3 = {x:levelBounds.xMax, y:levelBounds.yMax}; this.localToGlobal(_local6); this.localToGlobal(_local3); hitPoint = {x:_local4._x, y:_local4._y}; headHitTest.localToGlobal(hitPoint); switch (test) { case "headHitUpLeft" : case "headHitUpRight" : if (shipState eq "on ground") { break; } case "headHitTop" : this.yVel = this.yVel - ((_local3.y - hitPoint.y) / 150); break; case "headHitBottom" : this.yVel = this.yVel + (_local6.y + hitPoint.y); break; case "headHitLeft" : this.xVel = this.xVel + (_local3.x - (hitPoint.x / 150)); break; case "headHitRight" : this.xVel = this.xVel - (_local3.x - (hitPoint.x / 150)); } } } } if (((--justHitAGerm) <= 0) && (canFly)) { headGermHit = _parent.germHit(this.headHitTest); bodyGermHit = _parent.germHit(this.shipBodyTest); needleGermHit = _parent.germHit(_parent.needle); germHit = ((headGermHit != null) ? (headGermHit) : (bodyGermHit)); if (needleGermHit != null) { germHit = needleGermHit; } if ((germHit != null) && (germHit.germState == "swimming")) { if (((shipState != "on ground") && (germHit._y > (this._y - 15))) || (shieldOn)) { germHit.knockedOut(); _parent.addCombo(germHit); if (_parent.soundOn) { if ((germHit._y < this._y) && (shieldOn)) { this.zapSound.start(); } else { this.injectSound.start(); } } this.xVel = xVel * -0.7; yVel = yVel * -0.8; justHitAGerm = germWaitTime; } else if (needleGerm == null) { this.shipDamage(); germHit.damagedShip(); this.xVel = xVel * -1; yVel = yVel * -1; justHitAGerm = germWaitTime; } } if (justHitAGerm == germWaitTime) { } } if (this.yVel > maxVelocity) { this.yVel = maxVelocity; } if (this.yVel < _parent.minYVel) { this.yVel = _parent.minYVel; } if (this.xVel > maxVelocity) { this.xVel = maxVelocity; } if (this.xVel < (-maxVelocity)) { this.xVel = -maxVelocity; } this._x = this._x + xVel; this._y = this._y - yVel; if (this._x < 0) { this._x = 800; } if (this._x > 800) { this._x = 0; } this.symShipBody.crack.gotoAndStop(this.symShipBody._currentframe); if (shieldOn) { trace(shieldLeft); shieldLeft--; shield._alpha = (shieldLeft / shieldMax) * 100; if (shieldLeft <= 0) { shieldOn = false; shield.removeMovieClip(shield); } } } }; function addYVelocity(amount) { if (canFly) { this.yVel = this.yVel + amount; if ((++bubbleElapsed) >= bubbleInterval) { bubbleElapsed = 0; depth = _parent.getNextFreeDepth(); bub = _parent.attachMovie("shipBubble", "shipBubble" + depth, depth, {_x:this._x + (random(20) - 10), _y:this._y + 10}); bub.tween("_y", this._y + 70, random(10) / 10, "easeOutQuad", 0, function () { this.gotoAndPlay("pop"); }); } } } function addXVelocity(amount) { if (canFly) { this.xVel = this.xVel + amount; } } function xVelocityToFrame() { if (shipState != "on ground") { shipRunState = "standing"; } if ((xVel < 0.2) && (xVel > -0.2)) { this.symShipBody.gotoAndStop(centerFrameNum); if (shipState eq "on ground") { this.symShipLegs.gotoAndPlay("extended"); } shipRunState = "standing"; } else { if (shipState eq "on ground") { if ((xVel > 0) && (shipRunState != "runright")) { this.symShipLegs.gotoAndPlay("runright"); shipRunState = "runright"; } else if ((xVel < 0) && (shipRunState != "runleft")) { this.symShipLegs.gotoAndPlay("runleft"); shipRunState = "runleft"; } } if (xVel > 0.2) { if (xVel <= (1 * velFrMultiplier)) { this.symShipBody.gotoAndStop(centerFrameNum + 1); } else if (xVel <= (2 * velFrMultiplier)) { this.symShipBody.gotoAndStop(centerFrameNum + 2); } else if (xVel <= (3 * velFrMultiplier)) { this.symShipBody.gotoAndStop(centerFrameNum + 3); } else if (xVel > (4 * velFrMultiplier)) { this.symShipBody.gotoAndStop(centerFrameNum + 4); } } else if (xVel < 0.2) { if (xVel >= (-1 * velFrMultiplier)) { this.symShipBody.gotoAndStop(centerFrameNum - 1); } else if (xVel >= (-2 * velFrMultiplier)) { this.symShipBody.gotoAndStop(centerFrameNum - 2); } else if (xVel >= (-3 * velFrMultiplier)) { this.symShipBody.gotoAndStop(centerFrameNum - 3); } else if (xVel < (-4 * velFrMultiplier)) { this.symShipBody.gotoAndStop(centerFrameNum - 4); } } } } function setMood() { this.symShipBody.doc.eyes._x = Math.max(Math.min(2, (germPoint.x - _x) / 5), -2); this.symShipBody.doc.eyes._y = Math.max(Math.min(3.8, (germPoint.y - _y) / 5), -3.8); this.symShipBody.doc.outerEyes._x = Math.max(Math.min(1.8, (germPoint.x - _x) / 5), -1.8); this.symShipBody.doc.outerEyes._y = Math.max(Math.min(2, (germPoint.y - _y) / 5), -2); if (closestGerm.distanceToShip < 200) { if (closestGerm._y < _y) { symShipBody.doc.docMouth.gotoAndStop("scared"); } else { symShipBody.doc.docMouth.gotoAndStop("happy"); } } else { symShipBody.doc.docMouth.gotoAndStop("happy"); } if (shipState == "knocked out") { symShipBody.doc.docMouth.gotoAndStop("scared"); } } function heal() { hitsLeft = 3; this.symShipBody.crack.removeMovieClip(); _parent.HUD.damageBar.attachMovie("normalDamage", "statusText", 5); if (_parent.soundOn) { this.fixSound.start(); } } function shipDamage() { hitsLeft--; if (hitsLeft == 2) { this.symShipBody.attachMovie("crackHalf", "crack", this.symShipBody.depth + 1); _parent.HUD.damageBar.attachMovie("warningDamage", "statusText", 5); if (_parent.soundOn) { this.owSound.start(); this.crack1Sound.start(); } } if (hitsLeft == 1) { this.symShipBody.attachMovie("crackFull", "crack", this.symShipBody.depth + 1); _parent.HUD.damageBar.attachMovie("criticalDamage", "statusText", 5); if (_parent.soundOn) { this.owSound.start(); this.crack1Sound.start(); } } if (hitsLeft == 0) { switch (shipState) { case "flying" : break; case "landing" : case "on ground" : this.symShipLegs.gotoAndPlay("retract"); break; case "knocked out" : return(undefined); } canFly = false; if (yVel > 0) { yVel = 0; } shipState = "knocked out"; _parent.needle.gotoAndPlay("retracted"); _parent.HUD.damageBar.attachMovie("destroyedDamage", "statusText", 5); if (_parent.soundOn) { this.crack2Sound.start(); } } } function shieldStart() { shield = this.attachMovie("shield", "shield", 2000, {_x:0, _y:0, _alpha:100}); shieldLeft = shieldMax; this.shieldOn = true; if (_parent.soundOn) { this.shieldOnSound.start(); } }
Symbol 412 MovieClip Frame 16
gotoAndPlay ("swimming");
Symbol 412 MovieClip Frame 19
play();
Symbol 412 MovieClip Frame 22
stop();
Symbol 412 MovieClip Frame 23
play();
Symbol 412 MovieClip Frame 33
if ((--_parent.cyclesToDo) > 0) { this.gotoAndPlay("transform"); }
Symbol 412 MovieClip Frame 38
_parent.transformComplete = true;
Symbol 413 MovieClip [GermType3] Frame 1
function knockOut() { this.body.gotoAndPlay("knockout"); } function startSwimming() { this.body.gotoAndPlay("swimming"); } function startTransforming() { this.body.gotoAndPlay("transform"); } stop(); cyclesToDo = 8;
Symbol 429 MovieClip Frame 16
gotoAndPlay ("swimming");
Symbol 429 MovieClip Frame 17
play();
Symbol 429 MovieClip Frame 20
stop();
Symbol 429 MovieClip Frame 21
play();
Symbol 429 MovieClip Frame 30
if ((--_parent.cyclesToDo) > 0) { this.gotoAndPlay("transform"); }
Symbol 429 MovieClip Frame 52
_parent.transformComplete = true;
Symbol 430 MovieClip [GermType2] Frame 1
function knockOut() { this.body.gotoAndPlay("knockout"); this.type1Eye.gotoAndPlay("knockout"); this.type1Mouth.gotoAndPlay("knockout"); } function startSwimming() { this.body.gotoAndPlay("swimming"); this.type1Eye.gotoAndPlay("swimming"); this.type1Mouth.gotoAndPlay("swimming"); } function startTransforming() { this.body.gotoAndPlay("transform"); } stop(); cyclesToDo = 8;
Symbol 435 MovieClip Frame 17
gotoAndPlay (15);
Symbol 436 Button
on (release) { getURL ("http://www.wiggiworld.com", "_blank"); }
Symbol 445 MovieClip Frame 15
stop();
Symbol 447 Button
on (release) { _root.gotoAndPlay("start"); }
Symbol 461 MovieClip Frame 1
stop(); this.onEnterFrame = function () { bl = _root.getBytesLoaded(); bt = _root.getBytesTotal(); perc = (bl / bt) * 100; bar.bar._xscale = perc; if (perc >= 100) { this.gotoAndPlay("goplay"); delete this.onEnterFrame; } };
Symbol 461 MovieClip Frame 25
stop();
Symbol 469 MovieClip Frame 1
germ2Loop.stop(); germ3Loop.stop();
Symbol 469 MovieClip Frame 65
germ2Loop.play();
Symbol 469 MovieClip Frame 131
germ3Loop.play(); stop();
Symbol 473 Button
on (press) { if (!helpScreen) { gotoAndStop ("gameStart"); } }
Symbol 476 Button
on (press) { if (!helpScreen) { attachMovie("helpScreen", "helpScreen", 400, {_x:400, _y:300, _xscale:1, _yscale:1}); helpScreen.tween(["_xscale", "_yscale"], [100, 100], 0.5, "easeOutQuad"); } }
Symbol 482 Button
on (press) { if (!helpScreen) { attachMovie("creditsScreen", "creditsScreen", 400, {_x:728, _y:491, _xscale:1, _yscale:1}); creditsScreen.tween(["_xscale", "_yscale"], [100, 100], 0.5, "easeOutQuad"); } }
Symbol 485 Button
on (press) { musicOn = !musicOn; if (!musicOn) { bgMusic.stop(); } else { bgMusic.start(0, 999); } }
Symbol 488 Button
on (press) { soundOn = !soundOn; }
Symbol 494 Button
on (press) { _parent.musicOn = !_parent.musicOn; if (!_parent.musicOn) { _parent.bgMusic.stop(); } else { _parent.bgMusic.start(0, 999); } }
Symbol 495 Button
on (press) { _parent.soundOn = !_parent.soundOn; }
Symbol 498 MovieClip Frame 1
this.isExtended = true;
Symbol 498 MovieClip Frame 10
this.isExtended = true; stop();
Symbol 498 MovieClip Frame 11
this.isExtended = false;
Symbol 498 MovieClip Frame 20
this.isExtended = false; stop();
Symbol 503 Button
on (press) { this._visible = false; _parent.black.tween("_alpha", 0, 0.2, "linear", 0, function () { this.removeMovieClip(); }); _parent.unPauseGame(); }
Symbol 510 MovieClip Frame 1
function setLevel(level) { this.level = level; switch (level) { case 0 : currentLocation = "STOMACH"; bacteriaConcentration = "20%"; mapArrow._x = 157; mapArrow._y = 36; break; case 1 : currentLocation = "LIVER"; bacteriaConcentration = "34%"; mapStomach.gotoAndStop("clean"); mapArrow._x = 140; mapArrow._y = 6; break; case 2 : currentLocation = "LEFT LUNG"; bacteriaConcentration = "52%"; mapLiver.gotoAndStop("clean"); mapArrow._x = 107; mapArrow._y = -49; break; case 3 : currentLocation = "RIGHT LUNG"; bacteriaConcentration = "63%"; mapLeftLung.gotoAndStop("clean"); mapArrow._x = 194; mapArrow._y = -53; break; case 4 : currentLocation = "HEART"; bacteriaConcentration = "78%"; mapRightLung.gotoAndStop("clean"); mapArrow._x = 154; mapArrow._y = -29; break; case 5 : currentLocation = "BRAIN"; bacteriaConcentration = "92%"; mapHeart.gotoAndStop("clean"); mapArrow._x = 153; mapArrow._y = -99; } } this.onEnterFrame = function () { if (_visible && (_parent.level != this.level)) { setLevel(_parent.level); } };
Symbol 513 Button
on (press) { gotoAndPlay ("startPage"); }
Symbol 514 MovieClip Frame 1
_global.$createTweenController = function () { var _local3 = _root.createEmptyMovieClip("__tweenController__", 123432); _local3.$_tweenPropList = new Array(); _local3.$_tTime = getTimer(); _local3.onEnterFrame = _global.$updateTweens; }; ASSetPropFlags(_global, "$createTweenController", 1, 0); _global.$removeTweenController = function () { delete _root.__tweenController__.$_tweenPropList; delete _root.__tweenController__.$_tTime; delete _root.__tweenController__.onEnterFrame; _root.__tweenController__.removeMovieClip(); }; ASSetPropFlags(_global, "$removeTweenController", 1, 0); _global.$addTween = function (mtarget, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, extras) { if (timeSeconds == undefined) { timeSeconds = 0; } if ((animType == undefined) || (animType == "")) { animType = "easeOutExpo"; } if (delay == undefined) { delay = 0; } if (typeof(prop) == "string") { var _local7 = [prop]; var _local11 = [mtarget[prop]]; var _local9 = [propDest]; } else { var _local7 = []; var _local11 = []; var _local9 = []; for (var _local32 in prop) { _local11.push(mtarget[prop[_local32]]); } for (var _local32 in prop) { _local7.push(prop[_local32]); } for (var _local32 in propDest) { _local9.push(propDest[_local32]); } } var _local12 = false; if (_root.__tweenController__ == undefined) { _global.$createTweenController(); } var _local4 = _root.__tweenController__.$_tweenPropList; var _local8 = _root.__tweenController__.$_tTime; for (var _local32 in _local11) { if ((_local9[_local32] != undefined) && (!mtarget.$_isTweenLocked)) { if (mtarget.$_tweenCount > 0) { var _local3 = 0; while (_local3 < _local4.length) { if ((_local4[_local3]._targ == mtarget) && (_local4[_local3]._prop == _local7[_local32])) { if ((_local8 + (delay * 1000)) < _local4[_local3]._timeDest) { _local4.splice(_local3, 1); _local3--; mtarget.$_tweenCount--; } } _local3++; } } _local4.push({_prop:_local7[_local32], _targ:mtarget, _propStart:undefined, _propDest:_local9[_local32], _timeStart:_local8, _timeDest:_local8 + (timeSeconds * 1000), _animType:animType, _extra1:extra1, _extra2:extra2, _extras:extras, _delay:delay, _isPaused:false, _timePaused:0, _callback:(_local12 ? undefined : (callback))}); mtarget.$_tweenCount = ((mtarget.$_tweenCount > 0) ? (mtarget.$_tweenCount + 1) : 1); _local12 = true; } } ASSetPropFlags(mtarget, "$_tweenCount", 1, 0); }; ASSetPropFlags(_global, "$addTween", 1, 0); _global.$updateTweens = function () { var _local8 = (this.$_tTime = getTimer()); var _local6 = 0; while (_local6 < this.$_tweenPropList.length) { var _local3 = this.$_tweenPropList[_local6]; if (_local3._targ.toString() == undefined) { this.$_tweenPropList.splice(_local6, 1); _local6--; } else if (((_local3._timeStart + (_local3._delay * 1000)) <= _local8) && (!_local3._isPaused)) { if (_local3._propStart == undefined) { if (_local3._prop.substr(0, 10) == "__special_") { if (_local3._prop == "__special_mc_frame__") { _local3._propStart = _local3._targ._currentframe; } else if (_local3._prop == "__special_mc_ra__") { _local3._propStart = new Color(_local3._targ).getTransform().ra; } else if (_local3._prop == "__special_mc_rb__") { _local3._propStart = new Color(_local3._targ).getTransform().rb; } else if (_local3._prop == "__special_mc_ga__") { _local3._propStart = new Color(_local3._targ).getTransform().ga; } else if (_local3._prop == "__special_mc_gb__") { _local3._propStart = new Color(_local3._targ).getTransform().gb; } else if (_local3._prop == "__special_mc_ba__") { _local3._propStart = new Color(_local3._targ).getTransform().ba; } else if (_local3._prop == "__special_mc_bb__") { _local3._propStart = new Color(_local3._targ).getTransform().bb; } else if (_local3._prop == "__special_mc_aa__") { _local3._propStart = new Color(_local3._targ).getTransform().aa; } else if (_local3._prop == "__special_mc_ab__") { _local3._propStart = new Color(_local3._targ).getTransform().ab; } else if (_local3._prop == "__special_text_r__") { _local3._propStart = _local3._targ.textColor >> 16; } else if (_local3._prop == "__special_text_g__") { _local3._propStart = (_local3._targ.textColor & 65280) >> 8; } else if (_local3._prop == "__special_text_b__") { _local3._propStart = _local3._targ.textColor & 255; } else if (_local3._prop == "__special_sound_volume__") { _local3._propStart = _local3._targ.getVolume(); } else if (_local3._prop == "__special_sound_pan__") { _local3._propStart = _local3._targ.getPan(); } else if (_local3._prop == "__special_bst_t__") { _local3._propStart = 0; _local3._extras.__special_bst_ix__ = _local3._targ._x; _local3._extras.__special_bst_iy__ = _local3._targ._y; } else if (_local3._prop == "__special_blur_x__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BlurFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_blur_y__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BlurFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_color__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].color; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 16777215 /* 0xFFFFFF */; } } else if (_local3._prop == "__special_glow_alpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].alpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_glow_blurX__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_blurY__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_strength__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].strength; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_distance__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].distance; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_angle__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].angle; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 45; } } else if (_local3._prop == "__special_bevel_highlightColor__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].highlightColor; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 16777215 /* 0xFFFFFF */; } } else if (_local3._prop == "__special_bevel_highlightAlpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].highlightAlpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_shadowColor__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].shadowColor; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_shadowAlpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].shadowAlpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_blurX__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_blurY__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_strength__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].strength; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else { _local3._propStart = _local3._targ[_local3._prop]; } } else { _local3._propStart = _local3._targ[_local3._prop]; } } var _local10 = _local3._timeDest + (_local3._delay * 1000); if (_local10 <= _local8) { var _local4 = _local3._propDest; } else { var _local4 = _global.findTweenValue(_local3._propStart, _local3._propDest, _local3._timeStart, _local8 - (_local3._delay * 1000), _local3._timeDest, _local3._animType, _local3._extra1, _local3._extra2); } _local3._targ[_local3._prop] = (_local3._extras.mustRound ? (Math.round(_local4)) : (_local4)); if (_local3._prop == "__special_mc_frame__") { _local3._targ.gotoAndStop(Math.round(_local4)); } else if (_local3._prop == "__special_mc_ra__") { new Color(_local3._targ).setTransform({ra:_local4}); } else if (_local3._prop == "__special_mc_rb__") { new Color(_local3._targ).setTransform({rb:_local4}); } else if (_local3._prop == "__special_mc_ga__") { new Color(_local3._targ).setTransform({ga:_local4}); } else if (_local3._prop == "__special_mc_gb__") { new Color(_local3._targ).setTransform({gb:_local4}); } else if (_local3._prop == "__special_mc_ba__") { new Color(_local3._targ).setTransform({ba:_local4}); } else if (_local3._prop == "__special_mc_bb__") { new Color(_local3._targ).setTransform({bb:_local4}); } else if (_local3._prop == "__special_mc_aa__") { new Color(_local3._targ).setTransform({aa:_local4}); } else if (_local3._prop == "__special_mc_ab__") { new Color(_local3._targ).setTransform({ab:_local4}); } if (_local3._prop == "__special_bst_t__") { var _local7 = _local3._extras; var _local9 = _global.findPointOnCurve(_local7.__special_bst_ix__, _local7.__special_bst_iy__, _local7.__special_bst_cx__, _local7.__special_bst_cy__, _local7.__special_bst_dx__, _local7.__special_bst_dy__, _local4); if (_local3._extras.mustRound) { _local3._targ._x = Math.round(_local9.x); _local3._targ._y = Math.round(_local9.y); } else { _local3._targ._x = _local9.x; _local3._targ._y = _local9.y; } } if ((typeof(_local3._targ) != "movieclip") && (_local3._prop == "__special_text_b__")) { _local3._targ.textColor = ((_local3._targ.__special_text_r__ << 16) + (_local3._targ.__special_text_g__ << 8)) + _local3._targ.__special_text_b__; } if (_local3._prop == "__special_sound_volume__") { _local3._targ.setVolume(_local4); } if (_local3._prop == "__special_sound_pan__") { _local3._targ.setPan(_local4); } if (_local3._prop == "__special_blur_x__") { _global.$setFilterProperty(_local3._targ, "blur_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_blur_y__") { _global.$setFilterProperty(_local3._targ, "blur_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_glow_color__") { _global.$setFilterProperty(_local3._targ, "glow_color", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_glow_alpha__") { _global.$setFilterProperty(_local3._targ, "glow_alpha", _local4, _local3._extras); } if (_local3._prop == "__special_glow_blurX__") { _global.$setFilterProperty(_local3._targ, "glow_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_glow_blurY__") { _global.$setFilterProperty(_local3._targ, "glow_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_glow_strength__") { _global.$setFilterProperty(_local3._targ, "glow_strength", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_distance__") { _global.$setFilterProperty(_local3._targ, "bevel_distance", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_angle__") { _global.$setFilterProperty(_local3._targ, "bevel_angle", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_highlightColor__") { _global.$setFilterProperty(_local3._targ, "bevel_highlightColor", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_bevel_highlightAlpha__") { _global.$setFilterProperty(_local3._targ, "bevel_highlightAlpha", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_shadowColor__") { _global.$setFilterProperty(_local3._targ, "bevel_shadowColor", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_bevel_shadowAlpha__") { _global.$setFilterProperty(_local3._targ, "bevel_shadowAlpha", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_blurX__") { _global.$setFilterProperty(_local3._targ, "bevel_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_blurY__") { _global.$setFilterProperty(_local3._targ, "bevel_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_strength__") { _global.$setFilterProperty(_local3._targ, "bevel_strength", _local4, _local3._extras); } if (_local3._targ.onTweenUpdate != undefined) { _local3._targ.onTweenUpdate(_local3._prop); } if (_local10 <= _local8) { if (_local3._targ.onTweenComplete != undefined) { _local3._targ.onTweenComplete(_local3._prop); } _global.$stopTween(_local3._targ, [_local3._prop], false); _local6--; if (_local3._callback != undefined) { if (_global.backwardCallbackTweening) { var _local11 = _local3._targ.createEmptyMovieClip("__child__", 122344); _local3._callback.apply(_local11, null); _local11.removeMovieClip(); } else { _local3._callback.apply(_local3._targ, null); } } } } _local6++; } if (this.$_tweenPropList.length == 0) { _global.$removeTweenController(); } }; ASSetPropFlags(_global, "$updateTween", 1, 0); _global.$stopTween = function (mtarget, props, wipeFuture) { var _local4 = _root.__tweenController__.$_tweenPropList; var _local7; for (var _local9 in _local4) { _local7 = _local4[_local9]._prop; var _local5 = 0; while ((_local5 < props.length) || ((_local5 < 1) && (props == undefined))) { if (((_local4[_local9]._targ == mtarget) && ((_local7 == props[_local5]) || (props == undefined))) && (wipeFuture || ((_local4[_local9]._timeDest + (_local4[_local9]._delay * 1000)) <= getTimer()))) { switch (_local7) { case "__special_mc_frame__" : case "__special_mc_ra__" : case "__special_mc_rb__" : case "__special_mc_ga__" : case "__special_mc_gb__" : case "__special_mc_ba__" : case "__special_mc_bb__" : case "__special_mc_aa__" : case "__special_mc_ab__" : case "__special_sound_volume__" : case "__special_bst_t__" : delete mtarget[_local7]; break; case "__special_text_b__" : delete mtarget.__special_text_r__; delete mtarget.__special_text_g__; delete mtarget.__special_text_b__; } _local4.splice(_local9, 1); } _local5++; } } if (props == undefined) { delete mtarget.$_tweenCount; } else { mtarget.$_tweenCount = 0; for (var _local9 in _local4) { if (_local4[_local9]._targ == mtarget) { mtarget.$_tweenCount++; } } if (mtarget.$_tweenCount == 0) { delete mtarget.$_tweenCount; } } if (_local4.length == 0) { _global.$removeTweenController(); } }; ASSetPropFlags(_global, "$stopTween", 1, 0); _global.$setFilterProperty = function (mtarget, propName, propValue, extras) { var _local1; var _local7 = false; var _local3 = []; _local1 = 0; while (_local1 < mtarget.filters.length) { _local3.push(mtarget.filters[_local1]); _local1++; } if (propName.substr(0, 5) == "blur_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.BlurFilter) { _local3[_local1][propName.substr(5)] = propValue; if (extras.__special_blur_quality__ != undefined) { _local3[_local1].quality = extras.__special_blur_quality__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local9; var _local8 = ((extras.__special_blur_quality__ == undefined) ? 2 : (extras.__special_blur_quality__)); if (propName == "blur_blurX") { _local9 = new flash.filters.BlurFilter(propValue, 0, _local8); } if (propName == "blur_blurY") { _local9 = new flash.filters.BlurFilter(0, propValue, _local8); } _local3.push(_local9); } } else if (propName.substr(0, 5) == "glow_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.GlowFilter) { _local3[_local1][propName.substr(5)] = propValue; if (extras.__special_glow_quality__ != undefined) { _local3[_local1].quality = extras.__special_glow_quality__; } if (extras.__special_glow_inner__ != undefined) { _local3[_local1].inner = extras.__special_glow_inner__; } if (extras.__special_glow_knockout__ != undefined) { _local3[_local1].knockout = extras.__special_glow_knockout__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local8 = ((extras.__special_glow_quality__ == undefined) ? 2 : (extras.__special_glow_quality__)); var _local12 = ((extras.__special_glow_inner__ == undefined) ? false : (extras.__special_glow_inner__)); var _local10 = ((extras.__special_glow_knockout__ == undefined) ? false : (extras.__special_glow_knockout__)); if (propName == "glow_color") { var _local9 = new flash.filters.GlowFilter(propValue, 1, 0, 0, 1, _local8, _local12, _local10); } if (propName == "glow_alpha") { var _local9 = new flash.filters.GlowFilter(16777215, propValue, 0, 0, 1, _local8, _local12, _local10); } if (propName == "glow_blurX") { var _local9 = new flash.filters.GlowFilter(16777215, 1, propValue, 0, 1, _local8, _local12, _local10); } if (propName == "glow_blurY") { var _local9 = new flash.filters.GlowFilter(16777215, 1, 0, propValue, 1, _local8, _local12, _local10); } if (propName == "glow_strength") { var _local9 = new flash.filters.GlowFilter(16777215, 1, 0, 0, propValue, _local8, _local12, _local10); } _local3.push(_local9); } } else if (propName.substr(0, 6) == "bevel_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.BevelFilter) { _local3[_local1][propName.substr(6)] = propValue; if (extras.__special_bevel_quality__ != undefined) { _local3[_local1].quality = extras.__special_bevel_quality__; } if (extras.__special_bevel_type__ != undefined) { _local3[_local1].inner = extras.__special_bevel_type__; } if (extras.__special_bevel_knockout__ != undefined) { _local3[_local1].knockout = extras.__special_bevel_knockout__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local8 = ((extras.__special_bevel_quality__ == undefined) ? 2 : (extras.__special_bevel_quality__)); var _local11 = ((extras.__special_bevel_type__ == undefined) ? "inner" : (extras.__special_bevel_type__)); var _local10 = ((extras.__special_bevel_knockout__ == undefined) ? false : (extras.__special_bevel_knockout__)); if (propName == "bevel_distance") { var _local9 = new flash.filters.BevelFilter(propValue, 45, 16777215, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_angle") { var _local9 = new flash.filters.BevelFilter(0, propValue, 16777215, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_highlightColor") { var _local9 = new flash.filters.BevelFilter(0, 45, propValue, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_highlightAlpha") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, propValue, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_shadowColor") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, propValue, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_shadowAlpha") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, propValue, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_blurX") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, propValue, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_blurY") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, propValue, 1, _local8, _local11, _local10); } if (propName == "bevel_strength") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, 0, propValue, _local8, _local11, _local10); } _local3.push(_local9); } } else { return(undefined); } mtarget.filters = _local3; }; MovieClip.prototype.tween = (TextField.prototype.tween = (Sound.prototype.tween = function (prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2); })); ASSetPropFlags(MovieClip.prototype, "tween", 1, 0); ASSetPropFlags(TextField.prototype, "tween", 1, 0); ASSetPropFlags(Sound.prototype, "tween", 1, 0); MovieClip.prototype.roundedTween = (TextField.prototype.roundedTween = (Sound.prototype.roundedTween = function (prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); })); ASSetPropFlags(MovieClip.prototype, "roundedTween", 1, 0); ASSetPropFlags(TextField.prototype, "roundedTween", 1, 0); ASSetPropFlags(Sound.prototype, "roundedTween", 1, 0); MovieClip.prototype.stopTween = (TextField.prototype.stopTween = (Sound.prototype.stopTween = function (props) { if (typeof(props) == "string") { props = [props]; } if (props != undefined) { var _local4 = 1; while (_local4 < arguments.length) { props.push(arguments[_local4]); _local4++; } } _global.$stopTween(this, props, true); })); ASSetPropFlags(MovieClip.prototype, "stopTween", 1, 0); ASSetPropFlags(TextField.prototype, "stopTween", 1, 0); ASSetPropFlags(Sound.prototype, "stopTween", 1, 0); MovieClip.prototype.pauseTween = (TextField.prototype.pauseTween = (Sound.prototype.pauseTween = function (props) { if (props != undefined) { if (typeof(props) == "string") { props = [props]; } var _local6 = 1; while (_local6 < Arguments.length) { props.push(Arguments[_local6]); _local6++; } } var _local4 = _root.__tweenController__.$_tweenPropList; var _local5; for (var _local7 in _local4) { if ((_local4[_local7]._targ == this) && (!_local4[_local7]._isPaused)) { if (props != undefined) { _local5 = false; for (var _local6 in props) { if (props[_local6] == _local4[_local7]._prop) { _local5 = true; break; } } } if ((props == undefined) || (_local5)) { _local4[_local7]._isPaused = true; _local4[_local7]._timePaused = _root.__tweenController__.$_tTime; } } } })); ASSetPropFlags(MovieClip.prototype, "pauseTween", 1, 0); ASSetPropFlags(TextField.prototype, "pauseTween", 1, 0); ASSetPropFlags(Sound.prototype, "pauseTween", 1, 0); MovieClip.prototype.resumeTween = (TextField.prototype.resumeTween = (Sound.prototype.resumeTween = function (props) { if (props != undefined) { if (typeof(props) == "string") { props = [props]; } var _local7 = 1; while (_local7 < Arguments.length) { props.push(Arguments[_local7]); _local7++; } } var _local3 = _root.__tweenController__.$_tweenPropList; var _local5; var _local6; for (var _local8 in _local3) { if ((_local3[_local8]._targ == this) && (_local3[_local8]._isPaused)) { if (props != undefined) { _local5 = false; for (var _local7 in props) { if (props[_local7] == _local3[_local8]._prop) { _local5 = true; break; } } } if ((props == undefined) || (_local5)) { _local3[_local8]._isPaused = false; _local6 = _root.__tweenController__.$_tTime - _local3[_local8]._timePaused; _local3[_local8]._timeStart = _local3[_local8]._timeStart + _local6; _local3[_local8]._timeDest = _local3[_local8]._timeDest + _local6; _local3[_local8]._timePaused = 0; } } } })); ASSetPropFlags(MovieClip.prototype, "resumeTween", 1, 0); ASSetPropFlags(TextField.prototype, "resumeTween", 1, 0); ASSetPropFlags(Sound.prototype, "resumeTween", 1, 0); MovieClip.prototype.lockTween = (TextField.prototype.lockTween = (Sound.prototype.lockTween = function () { this.$_isTweenLocked = true; ASSetPropFlags(this, "this.$_isTweenLocked", 1, 0); })); ASSetPropFlags(MovieClip.prototype, "lockTween", 1, 0); ASSetPropFlags(TextField.prototype, "lockTween", 1, 0); ASSetPropFlags(Sound.prototype, "lockTween", 1, 0); MovieClip.prototype.unlockTween = (TextField.prototype.unlockTween = (Sound.prototype.unlockTween = function () { delete this.$_isTweenLocked; })); ASSetPropFlags(MovieClip.prototype, "unlockTween", 1, 0); ASSetPropFlags(TextField.prototype, "unlockTween", 1, 0); ASSetPropFlags(Sound.prototype, "unlockTween", 1, 0); MovieClip.prototype.getTweens = (TextField.prototype.getTweens = (Sound.prototype.getTweens = function () { return(this.$_tweenCount); })); ASSetPropFlags(MovieClip.prototype, "getTweens", 1, 0); ASSetPropFlags(TextField.prototype, "getTweens", 1, 0); ASSetPropFlags(Sound.prototype, "getTweens", 1, 0); MovieClip.prototype.isTweening = (TextField.prototype.isTweening = (Sound.prototype.isTweening = function () { return(((this.$_tweenCount > 0) ? true : false)); })); ASSetPropFlags(MovieClip.prototype, "isTweening", 1, 0); ASSetPropFlags(TextField.prototype, "isTweening", 1, 0); ASSetPropFlags(Sound.prototype, "isTweening", 1, 0); MovieClip.prototype.alphaTo = (TextField.prototype.alphaTo = function (propDest_a, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_alpha", propDest_a, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "alphaTo", 1, 0); ASSetPropFlags(TextField.prototype, "alphaTo", 1, 0); MovieClip.prototype.frameTo = function (propDest_frame, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_mc_frame__", propDest_frame, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(MovieClip.prototype, "frameTo", 1, 0); MovieClip.prototype.resizeTo = (TextField.prototype.resizeTo = function (propDest_width, propDest_height, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_width", "_height"], [propDest_width, propDest_height], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "resizeTo", 1, 0); ASSetPropFlags(TextField.prototype, "resizeTo", 1, 0); MovieClip.prototype.rotateTo = (TextField.prototype.rotateTo = function (propDest_rotation, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_rotation", propDest_rotation, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "rotateTo", 1, 0); ASSetPropFlags(TextField.prototype, "rotateTo", 1, 0); MovieClip.prototype.scaleTo = (TextField.prototype.scaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_xscale", "_yscale"], [propDest_scale, propDest_scale], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "scaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "scaleTo", 1, 0); MovieClip.prototype.xScaleTo = (TextField.prototype.xScaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_xscale", propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "xScaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "xScaleTo", 1, 0); MovieClip.prototype.yScaleTo = (TextField.prototype.yScaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_yscale", propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "yScaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "yScaleTo", 1, 0); TextField.prototype.scrollTo = function (propDest_scroll, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "scroll", propDest_scroll, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(TextField.prototype, "scrollTo", 1, 0); MovieClip.prototype.slideTo = (TextField.prototype.slideTo = function (propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "slideTo", 1, 0); ASSetPropFlags(TextField.prototype, "slideTo", 1, 0); MovieClip.prototype.roundedSlideTo = (TextField.prototype.roundedSlideTo = function (propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedSlideTo", 1, 0); MovieClip.prototype.xSlideTo = (TextField.prototype.xSlideTo = function (propDest_x, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_x", propDest_x, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "xSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "xSlideTo", 1, 0); MovieClip.prototype.roundedXSlideTo = (TextField.prototype.roundedXSlideTo = function (propDest_x, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_x", propDest_x, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedXSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedXSlideTo", 1, 0); MovieClip.prototype.ySlideTo = (TextField.prototype.ySlideTo = function (propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_y", propDest_y, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "ySlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "ySlideTo", 1, 0); MovieClip.prototype.roundedYSlideTo = (TextField.prototype.roundedYSlideTo = function (propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_y", propDest_y, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedYSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedYSlideTo", 1, 0); MovieClip.prototype.bezierSlideTo = (TextField.prototype.bezierSlideTo = function (cpoint_x, cpoint_y, propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = new Object(); _local3.__special_bst_ix__ = undefined; _local3.__special_bst_iy__ = undefined; _local3.__special_bst_cx__ = cpoint_x; _local3.__special_bst_cy__ = cpoint_y; _local3.__special_bst_dx__ = propDest_x; _local3.__special_bst_dy__ = propDest_y; _global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _local3); }); ASSetPropFlags(MovieClip.prototype, "bezierSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "bezierSlideTo", 1, 0); MovieClip.prototype.roundedBezierSlideTo = (TextField.prototype.roundedBezierSlideTo = function (cpoint_x, cpoint_y, propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = new Object(); _local3.__special_bst_ix__ = undefined; _local3.__special_bst_iy__ = undefined; _local3.__special_bst_cx__ = cpoint_x; _local3.__special_bst_cy__ = cpoint_y; _local3.__special_bst_dx__ = propDest_x; _local3.__special_bst_dy__ = propDest_y; _local3.mustRound = true; _global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _local3); }); ASSetPropFlags(MovieClip.prototype, "roundedBezierSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedBezierSlideTo", 1, 0); Sound.prototype.volumeTo = function (propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_sound_volume__", propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(Sound.prototype, "volumeTo", 1, 0); Sound.prototype.panTo = function (propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_sound_pan__", propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(Sound.prototype, "panTo", 1, 0); MovieClip.prototype.colorTo = function (propDest_color, timeSeconds, animType, delay, callback, extra1, extra2) { if (propDest_color == null) { this.colorTransformTo(100, 0, 100, 0, 100, 0, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2); } else { var _local3 = propDest_color >> 16; var _local5 = (propDest_color & 65280) >> 8; var _local4 = propDest_color & 255; this.colorTransformTo(0, _local3, 0, _local5, 0, _local4, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2); } }; ASSetPropFlags(MovieClip.prototype, "colorTo", 1, 0); TextField.prototype.colorTo = function (propDest_color, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = propDest_color >> 16; var _local6 = (propDest_color & 65280) >> 8; var _local4 = propDest_color & 255; _global.$addTween(this, ["__special_text_r__", "__special_text_g__", "__special_text_b__"], [_local3, _local6, _local4], timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(TextField.prototype, "colorTo", 1, 0); MovieClip.prototype.colorTransformTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_mc_ra__", "__special_mc_rb__", "__special_mc_ga__", "__special_mc_gb__", "__special_mc_ba__", "__special_mc_bb__", "__special_mc_aa__", "__special_mc_ab__"], [arguments[0].ra, arguments[0].rb, arguments[0].ga, arguments[0].gb, arguments[0].ba, arguments[0].bb, arguments[0].aa, arguments[0].ab], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6]); } else { _global.$addTween(this, ["__special_mc_ra__", "__special_mc_rb__", "__special_mc_ga__", "__special_mc_gb__", "__special_mc_ba__", "__special_mc_bb__", "__special_mc_aa__", "__special_mc_ab__"], [arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7]], arguments[8], arguments[9], arguments[10], arguments[11], arguments[12], arguments[13]); } }; ASSetPropFlags(MovieClip.prototype, "colorTransformTo", 1, 0); MovieClip.prototype.blurTo = (TextField.prototype.blurTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [arguments[0].blurX, arguments[0].blurY], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_blur_quality__:arguments[0].quality}); } else { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [arguments[0], arguments[0]], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7], {__special_blur_quality__:arguments[1]}); } }); ASSetPropFlags(MovieClip.prototype, "blurTo", 1, 0); ASSetPropFlags(TextField.prototype, "blurTo", 1, 0); MovieClip.prototype.xyBlurTo = (TextField.prototype.xyBlurTo = function (propDest_blurX, propDest_blurY, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [propDest_blurX, propDest_blurY], timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "xyBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyBlurTo", 1, 0); MovieClip.prototype.xBlurTo = (TextField.prototype.xBlurTo = function (propDest_blur, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_blur_x__", propDest_blur, timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "xBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "xBlurTo", 1, 0); MovieClip.prototype.yBlurTo = (TextField.prototype.yBlurTo = function (propDest_blur, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_blur_y__", propDest_blur, timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "yBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "yBlurTo", 1, 0); MovieClip.prototype.glowTo = (TextField.prototype.glowTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [arguments[0].color, arguments[0].alpha, arguments[0].blurX, arguments[0].blurY, arguments[0].strength], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_glow_quality__:arguments[0].quality, __special_glow_inner__:arguments[0].inner, __special_glow_knockout__:arguments[0].knockout}); } else { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [arguments[0], arguments[1], arguments[2], arguments[2], arguments[3]], arguments[7], arguments[8], arguments[9], arguments[10], arguments[11], arguments[12], {__special_glow_quality__:arguments[4], __special_glow_inner__:arguments[5], __special_glow_knockout__:arguments[6]}); } }); ASSetPropFlags(MovieClip.prototype, "glowTo", 1, 0); ASSetPropFlags(TextField.prototype, "glowTo", 1, 0); MovieClip.prototype.xyGlowTo = (TextField.prototype.xyGlowTo = function (propDest_color, propDest_alpha, propDest_blurX, propDest_blurY, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blurX, propDest_blurY, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xyGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyGlowTo", 1, 0); MovieClip.prototype.xGlowTo = (TextField.prototype.xGlowTo = function (propDest_color, propDest_alpha, propDest_blur, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "xGlowTo", 1, 0); MovieClip.prototype.yGlowTo = (TextField.prototype.yGlowTo = function (propDest_color, propDest_alpha, propDest_blur, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurY__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "yGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "yGlowTo", 1, 0); MovieClip.prototype.bevelTo = (TextField.prototype.bevelTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_strength__"], [arguments[0].distance, arguments[0].angle, arguments[0].highlightColor, arguments[0].highlightAlpha * 100, arguments[0].shadowColor, arguments[0].shadowAlpha * 100, arguments[0].blurX, arguments[0].blurY, arguments[0].strength], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_bevel_quality__:arguments[0].quality, __special_bevel_type__:arguments[0].type, __special_bevel_knockout__:arguments[0].knockout}); } else { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_strength__"], [arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[6], arguments[7]], arguments[11], arguments[12], arguments[13], arguments[14], arguments[15], arguments[16], {__special_bevel_quality__:arguments[8], __special_bevel_type__:arguments[9], __special_bevel_knockout__:arguments[10]}); } }); ASSetPropFlags(MovieClip.prototype, "bevelTo", 1, 0); ASSetPropFlags(TextField.prototype, "bevelTo", 1, 0); MovieClip.prototype.xyBevelTo = (TextField.prototype.xyBevelTo = function (propDest_distance, propDest_angle, propDest_highlightColor, propDest_highlightAlpha, propDest_shadowColor, propDest_shadowAlpha, propDest_blurX, propDest_blurY, propDest_strength, quality, type, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_blurY__", "__special_bevel_strength__"], [propDest_distance, propDest_angle, propDest_highlightColor, propDest_highlightAlpha, propDest_shadowColor, propDest_shadowAlpha, propDest_blur, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_bevel_quality__:quality, __special_bevel_type__:type, __special_bevel_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xyBevelTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyBevelTo", 1, 0); _global.findPointOnCurve = function (p1x, p1y, cx, cy, p2x, p2y, t) { return({x:p1x + (t * (((2 * (1 - t)) * (cx - p1x)) + (t * (p2x - p1x)))), y:p1y + (t * (((2 * (1 - t)) * (cy - p1y)) + (t * (p2y - p1y))))}); }; ASSetPropFlags(_global, "findPointOnCurve", 1, 0); _global.findTweenColor = function (objProp, tTime) { var _local8 = objProp._propStart >> 16; var _local4 = objProp._propDest >> 16; var _local5 = (objProp._propStart >> 8) & 255; var _local6 = (objProp._propDest >> 8) & 255; var _local9 = objProp._propStart & 255; var _local7 = objProp._propDest & 255; var _local12 = Math.round(_global.findTweenValue(_local8, _local4, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); var _local10 = Math.round(_global.findTweenValue(_local5, _local6, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); var _local3 = Math.round(_global.findTweenValue(_local9, _local7, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); return(((_local12 << 16) + (_local10 << 8)) + _local3); }; _global.findTweenValue = function (_propStart, _propDest, _timeStart, _timeNow, _timeDest, _animType, _extra1, _extra2) { var _local1 = _timeNow - _timeStart; var _local4 = _propStart; var _local2 = _propDest - _propStart; var _local3 = _timeDest - _timeStart; var _local6 = _extra1; var _local7 = _extra2; var _local5 = _extra1; switch (_animType.toLowerCase()) { case "linear" : return(((_local2 * _local1) / _local3) + _local4); case "easeinquad" : _local1 = _local1 / _local3; return(((_local2 * _local1) * _local1) + _local4); case "easeoutquad" : _local1 = _local1 / _local3; return((((-_local2) * _local1) * (_local1 - 2)) + _local4); case "easeinoutquad" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((_local2 / 2) * _local1) * _local1) + _local4); } _local1--; return((((-_local2) / 2) * ((_local1 * (_local1 - 2)) - 1)) + _local4); case "easeoutinquad" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuad") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuad") * 0.5) + (_local2 * 0.5)) + _local4); case "easeincubic" : _local1 = _local1 / _local3; return((((_local2 * _local1) * _local1) * _local1) + _local4); case "easeoutcubic" : _local1 = (_local1 / _local3) - 1; return((_local2 * (((_local1 * _local1) * _local1) + 1)) + _local4); case "easeinoutcubic" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((((_local2 / 2) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (((_local1 * _local1) * _local1) + 2)) + _local4); case "easeoutincubic" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutCubic") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInCubic") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinquart" : _local1 = _local1 / _local3; return(((((_local2 * _local1) * _local1) * _local1) * _local1) + _local4); case "easeoutquart" : _local1 = (_local1 / _local3) - 1; return(((-_local2) * ((((_local1 * _local1) * _local1) * _local1) - 1)) + _local4); case "easeinoutquart" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((((_local2 / 2) * _local1) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return((((-_local2) / 2) * ((((_local1 * _local1) * _local1) * _local1) - 2)) + _local4); case "easeoutinquart" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuart") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuart") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinquint" : _local1 = _local1 / _local3; return((((((_local2 * _local1) * _local1) * _local1) * _local1) * _local1) + _local4); case "easeoutquint" : _local1 = (_local1 / _local3) - 1; return((_local2 * (((((_local1 * _local1) * _local1) * _local1) * _local1) + 1)) + _local4); case "easeinoutquint" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((((((_local2 / 2) * _local1) * _local1) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (((((_local1 * _local1) * _local1) * _local1) * _local1) + 2)) + _local4); case "easeoutinquint" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuint") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuint") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinsine" : return((((-_local2) * Math.cos((_local1 / _local3) * (Math.PI/2))) + _local2) + _local4); case "easeoutsine" : return((_local2 * Math.sin((_local1 / _local3) * (Math.PI/2))) + _local4); case "easeinoutsine" : return((((-_local2) / 2) * (Math.cos((Math.PI * _local1) / _local3) - 1)) + _local4); case "easeoutinsine" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutSine") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInSine") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinexpo" : return(((_local1 == 0) ? (_local4) : ((_local2 * Math.pow(2, 10 * ((_local1 / _local3) - 1))) + _local4))); case "easeoutexpo" : return(((_local1 == _local3) ? (_local4 + _local2) : ((_local2 * ((-Math.pow(2, (-10 * _local1) / _local3)) + 1)) + _local4))); case "easeinoutexpo" : if (_local1 == 0) { return(_local4); } if (_local1 == _local3) { return(_local4 + _local2); } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((_local2 / 2) * Math.pow(2, 10 * (_local1 - 1))) + _local4); } _local1--; return(((_local2 / 2) * ((-Math.pow(2, -10 * _local1)) + 2)) + _local4); case "easeoutinexpo" : if (_local1 == 0) { return(_local4); } if (_local1 == _local3) { return(_local4 + _local2); } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((_local2 / 2) * ((-Math.pow(2, (-10 * _local1) / 1)) + 1)) + _local4); } return(((_local2 / 2) * (Math.pow(2, (10 * (_local1 - 2)) / 1) + 1)) + _local4); case "easeincirc" : _local1 = _local1 / _local3; return(((-_local2) * (Math.sqrt(1 - (_local1 * _local1)) - 1)) + _local4); case "easeoutcirc" : _local1 = (_local1 / _local3) - 1; return((_local2 * Math.sqrt(1 - (_local1 * _local1))) + _local4); case "easeinoutcirc" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((-_local2) / 2) * (Math.sqrt(1 - (_local1 * _local1)) - 1)) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (Math.sqrt(1 - (_local1 * _local1)) + 1)) + _local4); case "easeoutincirc" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutCirc") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInCirc") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / _local3; if (_local1 == 1) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.3; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } _local1 = _local1 - 1; return((-((_local6 * Math.pow(2, 10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7))) + _local4); case "easeoutelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / _local3; if (_local1 == 1) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.3; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } return((((_local6 * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7)) + _local2) + _local4); case "easeinoutelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / (_local3 / 2); if (_local1 == 2) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.45; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } if (_local1 < 1) { _local1 = _local1 - 1; return((-0.5 * ((_local6 * Math.pow(2, 10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7))) + _local4); } _local1 = _local1 - 1; return(((((_local6 * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7)) * 0.5) + _local2) + _local4); case "easeoutinelastic" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutElastic") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInElastic") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = _local1 / _local3; return((((_local2 * _local1) * _local1) * (((_local5 + 1) * _local1) - _local5)) + _local4); case "easeoutback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = (_local1 / _local3) - 1; return((_local2 * (((_local1 * _local1) * (((_local5 + 1) * _local1) + _local5)) + 1)) + _local4); case "easeinoutback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { _local5 = _local5 * 1.525; return(((_local2 / 2) * ((_local1 * _local1) * (((_local5 + 1) * _local1) - _local5))) + _local4); } _local1 = _local1 - 2; _local5 = _local5 * 1.525; return(((_local2 / 2) * (((_local1 * _local1) * (((_local5 + 1) * _local1) + _local5)) + 2)) + _local4); case "easeoutinback" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutBack") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInBack") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinbounce" : return((_local2 - findTweenValue(0, _local2, 0, _local3 - _local1, _local3, "easeOutBounce")) + _local4); case "easeoutbounce" : _local1 = _local1 / _local3; if (_local1 < 0.363636363636364) { return((_local2 * ((7.5625 * _local1) * _local1)) + _local4); } if (_local1 < 0.727272727272727) { _local1 = _local1 - 0.545454545454545; return((_local2 * (((7.5625 * _local1) * _local1) + 0.75)) + _local4); } if (_local1 < 0.909090909090909) { _local1 = _local1 - 0.818181818181818; return((_local2 * (((7.5625 * _local1) * _local1) + 0.9375)) + _local4); } _local1 = _local1 - 0.954545454545455; return((_local2 * (((7.5625 * _local1) * _local1) + 0.984375)) + _local4); case "easeinoutbounce" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeInBounce") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeOutBounce") * 0.5) + (_local2 * 0.5)) + _local4); case "easeoutinbounce" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutBounce") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInBounce") * 0.5) + (_local2 * 0.5)) + _local4); } trace(("MC TWEEN ### Error on transition: there's no \"" + _animType) + "\" animation type."); return(0); }; ASSetPropFlags(_global, "findTweenValue", 1, 0); musicOn = true; soundOn = true; this.bgMusic = new Sound(); bgMusic.attachSound("music"); bgMusic.stop(); if (musicOn) { bgMusic.start(0, 999); }
Symbol 514 MovieClip Frame 17
stop();
Symbol 514 MovieClip Frame 18
function init() { started = true; nextGermSpawn = germSpawnInterval; germArray = new Array(); nextGermDepth = 100; maxGerms = 0; score = 0; nextFreeDepth = 0; comboCounter = 0; doingFade = false; level = -1; wave = 0; HUD.damageBar.attachMovie("normalDamage", "statusText", 5); HUD.shieldMeter._xscale = 0; HUD.slowMeter._xscale = 0; levelArray = new Array(new Array(new Array(1, 1, 1), new Array(1, 1, 1, 1, 1), new Array(1, 1, 1, 2), new Array(1, 1, 2, 2), new Array(1, 1, 1, 2, 2)), new Array(new Array(1, 1, 1, 2), new Array(1, 1, 1, 1, 1, 1), new Array(1, 1, 2, 2), new Array(2, 1, 2, 2), new Array(1, 1, 1, 2, 3)), new Array(new Array(3, 1, 1), new Array(1, 1, 1, 1, 1), new Array(1, 1, 1, 2), new Array(2, 1, 2, 3), new Array(3, 2, 1, 2, 2)), new Array(new Array(1, 2, 2), new Array(2, 2, 1, 1, 3), new Array(2, 2, 1, 2), new Array(3, 1, 2, 2), new Array(3, 1, 1, 2, 2)), new Array(new Array(2, 2, 2, 3), new Array(1, 1, 2, 2, 3), new Array(1, 2, 2, 3), new Array(1, 1, 2, 2), new Array(2, 2, 2, 2, 2)), new Array(new Array(3, 1, 3, 2), new Array(2, 2, 2, 3, 3), new Array(1, 3, 3, 2), new Array(1, 3, 2, 2), new Array(3, 3, 3, 3, 3))); levelAcidTypes = new Array("acid", "blood", "blood", "blood", "blood", "brainFluid"); levelMusic = new Array("music3", "music", "music3", "music", "music3", "music"); this.HUD.swapDepths(25000); this.needle.swapDepths(50); this.symShip.swapDepths(51); fadeTextDepth = 30000; this.symLevelMap.swapDepths(35000); needle._xscale = symShip._xscale; needle._yscale = symShip._yscale; needle.gotoAndPlay("retracted"); nextLevel(); } function slow() { isSlow = true; slowLeft = slowMax; if (soundOn) { slowSound.start(); } } function nextLevel() { pauseGame(); doingFade = false; wave = 0; level++; if (levelArray.length >= (level + 1)) { this.currentLevel = this.attachMovie("level" + (level + 1), "currentLevel", -2000, {_x:0, _y:0}); symShip._x = currentLevel.playerStart._x; symShip._y = currentLevel.playerStart._y; symShip.xVel = 0; symShip.yVel = 0; this.attachMovie(levelAcidTypes[level], "acid", acidDepth, {_x:410, _y:520}); symLevelMap._xscale = 1; symLevelMap._yscale = 1; symLevelMap._visible = true; symLevelMap.tween(["_xscale", "_yscale"], [100, 100], 0.5, "easeOutQuad"); } else { symLevelMap = this.attachMovie("patientCured", "symLevelMap", symLevelMap.getDepth(), {_x:symLevelMap._x, _y:symLevelMap._y}); symLevelMap._xscale = 1; symLevelMap._yscale = 1; symLevelMap._visible = true; symLevelMap.finalScore = score; symLevelMap.tween(["_xscale", "_yscale"], [100, 100], 0.5, "easeOutQuad"); if (soundOn) { trace("cheer: " + cheerSound); this.cheerSound.start(); } _root.WPI_ArcadeStopSingleGame(score); } bgMusic.attachSound(levelMusic[level]); trace("attached music: " + levelMusic[level]); if (musicOn && (level < levelArray.length)) { bgMusic.stop(); bgMusic.start(0, 999); } } function pauseGame() { paused = true; for (g in symShip) { symShip[g].stop(); } symShip.stop(); for (g in germArray) { germArray[g].stop(); } } function unPauseGame() { paused = false; symShip.play(); for (g in germArray) { germArray[g].play(); } } function createFadeText(x, y, textToShow) { fadeText = this.createEmptyMovieClip("fadeText", fadeTextDepth); fadeText._x = x - 400; fadeText._y = y; fadeText.createTextField("fadeTextField", fadeTextDepth, 0, 0, 800, 200); var _local2 = new TextFormat(); _local2.color = 3394815 /* 0x33CCFF */; _local2.font = "Impact"; _local2.size = 60; _local2.align = "center"; fadeText.fadeTextField.text = textToShow; fadeText.fadeTextField.type = "static"; fadeText.fadeTextField.setTextFormat(_local2); fadeText.timeOut = 75; fadeText.timeElapsed = 0; fadeText.onEnterFrame = function () { if ((++this.timeElapsed) >= this.timeOut) { this.removeMovieClip(); } }; } function spawnGerm(gLevel) { yFound = false; do { randomY = random(maxGermY); this.germSpawnHitTest._y = randomY; if (this.levelHit(germSpawnHitTest) == null) { yFound = true; } } while (!yFound); newGerm = this.attachMovie("Germ", "germ" + (++nextGermDepth), nextGermDepth, {_x:-20, _y:randomY, level:gLevel}); germArray.push(newGerm); } function spawnWhiteCell() { yFound = false; do { randomY = random(300); this.germSpawnHitTest._y = randomY; if (this.levelHit(germSpawnHitTest) == null) { yFound = true; } } while (!yFound); whiteBloodCell = this.attachMovie("whiteBloodCell", "whiteCell", 20001, {_x:-20, _y:randomY, _xscale:35, _yscale:35}); } function getClosestGerm(x, y) { closestGerm = germArray[0]; for (g in this.germArray) { if (germArray[g].distanceToShip < closestGerm.distanceToShip) { closestGerm = germArray[g]; } } return(closestGerm); } function handleKeys() { if (Key.isDown(38) || (Key.isDown(87))) { symShip.addYVelocity(symShip.speed); } if (Key.isDown(37) || (Key.isDown(65))) { symShip.addXVelocity(-symShip.speed); } if (Key.isDown(39) || (Key.isDown(68))) { symShip.addXVelocity(symShip.speed); } } function levelHit(target, useGeom) { for (bit in currentLevel.levelGeom) { toTest = (useGeom ? (currentLevel.levelGeom[bit]) : (currentLevel.levelGeom[bit].levelHitTest)); if (toTest.hitTest(target)) { return(currentLevel.levelGeom[bit].levelHitTest); } } return(null); } function germHit(target) { for (g in this.germArray) { if (germArray[g].germBody.germHitTest.hitTest(target)) { return(germArray[g]); } } return(null); } function gameOver() { if (!isGameOver) { isGameOver = true; _root.WPI_ArcadeStopSingleGame(score); bloodWash = this.attachMovie("bloodWash", "bloodWash", 50000, {_yscale:1000, _x:400, _y:900}); bloodWash.tween("_y", -100, 2, "easeOutQuad", 0, function () { showGameOverScreen(); }); } } function showGameOverScreen() { gameOverScreen = this.attachMovie("gameOverScreen", "gameOverScreen", 50001, {_x:400, _y:300, _xscale:1, _yscale:1}); gameOverScreen.finalScore = score; gameOverScreen.tween(["_xscale", "_yscale"], [100, 100], 1, "easeOutQuad", 0, function () { failedSound.start(); }); } function removeAllClips() { for (obj in this) { if (typeof(this[obj]) == "movieclip") { this[obj].removeMovieClip(); } } } function addCombo(germ) { if ((++comboCounter) == healthComboThreshold) { depth = getNextFreeDepth(); this.attachMovie("healthPowerup", "healthPowerup" + depth, depth, {_x:germ._x, _y:germ._y}); depth = getNextFreeDepth(); combo = this.attachMovie("5xCombo", "5xCombo" + depth, depth, {_x:symShip._x, _y:symShip._y}); combo.tween("_y", symShip._y - 40, 1, "easeOutQuad", 0, function () { this.removeMovieClip(); }); comboCounter = 0; } } function collectGerm(germ) { plusScore = germ.score; if (germ.hitGround == false) { plusScore = plusScore + germ.score; depth = getNextFreeDepth(); bonus = this.attachMovie("midairBonus", "midairBonus" + depth, depth, {_x:symShip._x, _y:symShip._y}); bonus.tween("_y", symShip._y - 40, 1, "easeOutQuad", 0, function () { this.removeMovieClip(); }); } nDepth = getNextFreeDepth(); plusText = this.attachMovie("plusText", "plusText" + nDepth, nDepth, {_x:symShip._x, _y:symShip._y - 40}); plusText.plusText.text = "+" + plusScore; plusText.tween("_y", plusText._y - 40, 1, "easeOutQuad", 0, function () { this.removeMovieClip(); }); this.score = this.score + plusScore; removeGerm(germ); if (soundOn) { pickupSound.start(); } } function removeGerm(germ) { for (g in germArray) { if (germArray[g] == germ) { germArray.splice(g, 1); removeMovieClip(germ); } } } function getNextFreeDepth() { nextFreeDepth++; nextFreeDepth = nextFreeDepth % 2000; return(nextFreeDepth + 1000); } function getNextGermDepth() { nextGermDepth++; nextGermDepth = nextGermDepth % 500; return(nextFreeDepth + 200); } function distanceToShip(x, y) { xd = symShip._x - x; yd = symShip._y - y; return(Math.sqrt((xd * xd) + (yd * yd))); } function setGermRatios() { if (score == 0) { germType1 = 8; germType2 = 9; germType3 = 10; maxGerms = 5; } if (score > 50) { germType1 = 6; germType2 = 8; germType2 = 10; maxGerms = 8; } if (score > 100) { germType1 = 4; germType2 = 8; germType3 = 10; maxGerms = 10; } } function spawnBubble(x, y) { acid.spawnBubble(x, y); } _root.WPI_ArcadeStartSingleGame(); _global.$createTweenController = function () { var _local3 = _root.createEmptyMovieClip("__tweenController__", 123432); _local3.$_tweenPropList = new Array(); _local3.$_tTime = getTimer(); _local3.onEnterFrame = _global.$updateTweens; }; ASSetPropFlags(_global, "$createTweenController", 1, 0); _global.$removeTweenController = function () { delete _root.__tweenController__.$_tweenPropList; delete _root.__tweenController__.$_tTime; delete _root.__tweenController__.onEnterFrame; _root.__tweenController__.removeMovieClip(); }; ASSetPropFlags(_global, "$removeTweenController", 1, 0); _global.$addTween = function (mtarget, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, extras) { if (timeSeconds == undefined) { timeSeconds = 0; } if ((animType == undefined) || (animType == "")) { animType = "easeOutExpo"; } if (delay == undefined) { delay = 0; } if (typeof(prop) == "string") { var _local7 = [prop]; var _local11 = [mtarget[prop]]; var _local9 = [propDest]; } else { var _local7 = []; var _local11 = []; var _local9 = []; for (var _local32 in prop) { _local11.push(mtarget[prop[_local32]]); } for (var _local32 in prop) { _local7.push(prop[_local32]); } for (var _local32 in propDest) { _local9.push(propDest[_local32]); } } var _local12 = false; if (_root.__tweenController__ == undefined) { _global.$createTweenController(); } var _local4 = _root.__tweenController__.$_tweenPropList; var _local8 = _root.__tweenController__.$_tTime; for (var _local32 in _local11) { if ((_local9[_local32] != undefined) && (!mtarget.$_isTweenLocked)) { if (mtarget.$_tweenCount > 0) { var _local3 = 0; while (_local3 < _local4.length) { if ((_local4[_local3]._targ == mtarget) && (_local4[_local3]._prop == _local7[_local32])) { if ((_local8 + (delay * 1000)) < _local4[_local3]._timeDest) { _local4.splice(_local3, 1); _local3--; mtarget.$_tweenCount--; } } _local3++; } } _local4.push({_prop:_local7[_local32], _targ:mtarget, _propStart:undefined, _propDest:_local9[_local32], _timeStart:_local8, _timeDest:_local8 + (timeSeconds * 1000), _animType:animType, _extra1:extra1, _extra2:extra2, _extras:extras, _delay:delay, _isPaused:false, _timePaused:0, _callback:(_local12 ? undefined : (callback))}); mtarget.$_tweenCount = ((mtarget.$_tweenCount > 0) ? (mtarget.$_tweenCount + 1) : 1); _local12 = true; } } ASSetPropFlags(mtarget, "$_tweenCount", 1, 0); }; ASSetPropFlags(_global, "$addTween", 1, 0); _global.$updateTweens = function () { var _local8 = (this.$_tTime = getTimer()); var _local6 = 0; while (_local6 < this.$_tweenPropList.length) { var _local3 = this.$_tweenPropList[_local6]; if (_local3._targ.toString() == undefined) { this.$_tweenPropList.splice(_local6, 1); _local6--; } else if (((_local3._timeStart + (_local3._delay * 1000)) <= _local8) && (!_local3._isPaused)) { if (_local3._propStart == undefined) { if (_local3._prop.substr(0, 10) == "__special_") { if (_local3._prop == "__special_mc_frame__") { _local3._propStart = _local3._targ._currentframe; } else if (_local3._prop == "__special_mc_ra__") { _local3._propStart = new Color(_local3._targ).getTransform().ra; } else if (_local3._prop == "__special_mc_rb__") { _local3._propStart = new Color(_local3._targ).getTransform().rb; } else if (_local3._prop == "__special_mc_ga__") { _local3._propStart = new Color(_local3._targ).getTransform().ga; } else if (_local3._prop == "__special_mc_gb__") { _local3._propStart = new Color(_local3._targ).getTransform().gb; } else if (_local3._prop == "__special_mc_ba__") { _local3._propStart = new Color(_local3._targ).getTransform().ba; } else if (_local3._prop == "__special_mc_bb__") { _local3._propStart = new Color(_local3._targ).getTransform().bb; } else if (_local3._prop == "__special_mc_aa__") { _local3._propStart = new Color(_local3._targ).getTransform().aa; } else if (_local3._prop == "__special_mc_ab__") { _local3._propStart = new Color(_local3._targ).getTransform().ab; } else if (_local3._prop == "__special_text_r__") { _local3._propStart = _local3._targ.textColor >> 16; } else if (_local3._prop == "__special_text_g__") { _local3._propStart = (_local3._targ.textColor & 65280) >> 8; } else if (_local3._prop == "__special_text_b__") { _local3._propStart = _local3._targ.textColor & 255; } else if (_local3._prop == "__special_sound_volume__") { _local3._propStart = _local3._targ.getVolume(); } else if (_local3._prop == "__special_sound_pan__") { _local3._propStart = _local3._targ.getPan(); } else if (_local3._prop == "__special_bst_t__") { _local3._propStart = 0; _local3._extras.__special_bst_ix__ = _local3._targ._x; _local3._extras.__special_bst_iy__ = _local3._targ._y; } else if (_local3._prop == "__special_blur_x__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BlurFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_blur_y__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BlurFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_color__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].color; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 16777215 /* 0xFFFFFF */; } } else if (_local3._prop == "__special_glow_alpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].alpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_glow_blurX__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_blurY__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_glow_strength__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.GlowFilter) { _local3._propStart = _local3._targ.filters[_local5].strength; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_distance__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].distance; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_angle__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].angle; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 45; } } else if (_local3._prop == "__special_bevel_highlightColor__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].highlightColor; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 16777215 /* 0xFFFFFF */; } } else if (_local3._prop == "__special_bevel_highlightAlpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].highlightAlpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_shadowColor__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].shadowColor; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_shadowAlpha__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].shadowAlpha; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else if (_local3._prop == "__special_bevel_blurX__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].blurX; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_blurY__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].blurY; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 0; } } else if (_local3._prop == "__special_bevel_strength__") { var _local5 = 0; while (_local5 < _local3._targ.filters.length) { if (_local3._targ.filters[_local5] instanceof flash.filters.BevelFilter) { _local3._propStart = _local3._targ.filters[_local5].strength; } _local5++; } if (_local3._propStart == undefined) { _local3._propStart = 1; } } else { _local3._propStart = _local3._targ[_local3._prop]; } } else { _local3._propStart = _local3._targ[_local3._prop]; } } var _local10 = _local3._timeDest + (_local3._delay * 1000); if (_local10 <= _local8) { var _local4 = _local3._propDest; } else { var _local4 = _global.findTweenValue(_local3._propStart, _local3._propDest, _local3._timeStart, _local8 - (_local3._delay * 1000), _local3._timeDest, _local3._animType, _local3._extra1, _local3._extra2); } _local3._targ[_local3._prop] = (_local3._extras.mustRound ? (Math.round(_local4)) : (_local4)); if (_local3._prop == "__special_mc_frame__") { _local3._targ.gotoAndStop(Math.round(_local4)); } else if (_local3._prop == "__special_mc_ra__") { new Color(_local3._targ).setTransform({ra:_local4}); } else if (_local3._prop == "__special_mc_rb__") { new Color(_local3._targ).setTransform({rb:_local4}); } else if (_local3._prop == "__special_mc_ga__") { new Color(_local3._targ).setTransform({ga:_local4}); } else if (_local3._prop == "__special_mc_gb__") { new Color(_local3._targ).setTransform({gb:_local4}); } else if (_local3._prop == "__special_mc_ba__") { new Color(_local3._targ).setTransform({ba:_local4}); } else if (_local3._prop == "__special_mc_bb__") { new Color(_local3._targ).setTransform({bb:_local4}); } else if (_local3._prop == "__special_mc_aa__") { new Color(_local3._targ).setTransform({aa:_local4}); } else if (_local3._prop == "__special_mc_ab__") { new Color(_local3._targ).setTransform({ab:_local4}); } if (_local3._prop == "__special_bst_t__") { var _local7 = _local3._extras; var _local9 = _global.findPointOnCurve(_local7.__special_bst_ix__, _local7.__special_bst_iy__, _local7.__special_bst_cx__, _local7.__special_bst_cy__, _local7.__special_bst_dx__, _local7.__special_bst_dy__, _local4); if (_local3._extras.mustRound) { _local3._targ._x = Math.round(_local9.x); _local3._targ._y = Math.round(_local9.y); } else { _local3._targ._x = _local9.x; _local3._targ._y = _local9.y; } } if ((typeof(_local3._targ) != "movieclip") && (_local3._prop == "__special_text_b__")) { _local3._targ.textColor = ((_local3._targ.__special_text_r__ << 16) + (_local3._targ.__special_text_g__ << 8)) + _local3._targ.__special_text_b__; } if (_local3._prop == "__special_sound_volume__") { _local3._targ.setVolume(_local4); } if (_local3._prop == "__special_sound_pan__") { _local3._targ.setPan(_local4); } if (_local3._prop == "__special_blur_x__") { _global.$setFilterProperty(_local3._targ, "blur_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_blur_y__") { _global.$setFilterProperty(_local3._targ, "blur_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_glow_color__") { _global.$setFilterProperty(_local3._targ, "glow_color", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_glow_alpha__") { _global.$setFilterProperty(_local3._targ, "glow_alpha", _local4, _local3._extras); } if (_local3._prop == "__special_glow_blurX__") { _global.$setFilterProperty(_local3._targ, "glow_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_glow_blurY__") { _global.$setFilterProperty(_local3._targ, "glow_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_glow_strength__") { _global.$setFilterProperty(_local3._targ, "glow_strength", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_distance__") { _global.$setFilterProperty(_local3._targ, "bevel_distance", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_angle__") { _global.$setFilterProperty(_local3._targ, "bevel_angle", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_highlightColor__") { _global.$setFilterProperty(_local3._targ, "bevel_highlightColor", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_bevel_highlightAlpha__") { _global.$setFilterProperty(_local3._targ, "bevel_highlightAlpha", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_shadowColor__") { _global.$setFilterProperty(_local3._targ, "bevel_shadowColor", _global.findTweenColor(_local3, _local8), _local3._extras); } if (_local3._prop == "__special_bevel_shadowAlpha__") { _global.$setFilterProperty(_local3._targ, "bevel_shadowAlpha", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_blurX__") { _global.$setFilterProperty(_local3._targ, "bevel_blurX", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_blurY__") { _global.$setFilterProperty(_local3._targ, "bevel_blurY", _local4, _local3._extras); } if (_local3._prop == "__special_bevel_strength__") { _global.$setFilterProperty(_local3._targ, "bevel_strength", _local4, _local3._extras); } if (_local3._targ.onTweenUpdate != undefined) { _local3._targ.onTweenUpdate(_local3._prop); } if (_local10 <= _local8) { if (_local3._targ.onTweenComplete != undefined) { _local3._targ.onTweenComplete(_local3._prop); } _global.$stopTween(_local3._targ, [_local3._prop], false); _local6--; if (_local3._callback != undefined) { if (_global.backwardCallbackTweening) { var _local11 = _local3._targ.createEmptyMovieClip("__child__", 122344); _local3._callback.apply(_local11, null); _local11.removeMovieClip(); } else { _local3._callback.apply(_local3._targ, null); } } } } _local6++; } if (this.$_tweenPropList.length == 0) { _global.$removeTweenController(); } }; ASSetPropFlags(_global, "$updateTween", 1, 0); _global.$stopTween = function (mtarget, props, wipeFuture) { var _local4 = _root.__tweenController__.$_tweenPropList; var _local7; for (var _local9 in _local4) { _local7 = _local4[_local9]._prop; var _local5 = 0; while ((_local5 < props.length) || ((_local5 < 1) && (props == undefined))) { if (((_local4[_local9]._targ == mtarget) && ((_local7 == props[_local5]) || (props == undefined))) && (wipeFuture || ((_local4[_local9]._timeDest + (_local4[_local9]._delay * 1000)) <= getTimer()))) { switch (_local7) { case "__special_mc_frame__" : case "__special_mc_ra__" : case "__special_mc_rb__" : case "__special_mc_ga__" : case "__special_mc_gb__" : case "__special_mc_ba__" : case "__special_mc_bb__" : case "__special_mc_aa__" : case "__special_mc_ab__" : case "__special_sound_volume__" : case "__special_bst_t__" : delete mtarget[_local7]; break; case "__special_text_b__" : delete mtarget.__special_text_r__; delete mtarget.__special_text_g__; delete mtarget.__special_text_b__; } _local4.splice(_local9, 1); } _local5++; } } if (props == undefined) { delete mtarget.$_tweenCount; } else { mtarget.$_tweenCount = 0; for (var _local9 in _local4) { if (_local4[_local9]._targ == mtarget) { mtarget.$_tweenCount++; } } if (mtarget.$_tweenCount == 0) { delete mtarget.$_tweenCount; } } if (_local4.length == 0) { _global.$removeTweenController(); } }; ASSetPropFlags(_global, "$stopTween", 1, 0); _global.$setFilterProperty = function (mtarget, propName, propValue, extras) { var _local1; var _local7 = false; var _local3 = []; _local1 = 0; while (_local1 < mtarget.filters.length) { _local3.push(mtarget.filters[_local1]); _local1++; } if (propName.substr(0, 5) == "blur_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.BlurFilter) { _local3[_local1][propName.substr(5)] = propValue; if (extras.__special_blur_quality__ != undefined) { _local3[_local1].quality = extras.__special_blur_quality__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local9; var _local8 = ((extras.__special_blur_quality__ == undefined) ? 2 : (extras.__special_blur_quality__)); if (propName == "blur_blurX") { _local9 = new flash.filters.BlurFilter(propValue, 0, _local8); } if (propName == "blur_blurY") { _local9 = new flash.filters.BlurFilter(0, propValue, _local8); } _local3.push(_local9); } } else if (propName.substr(0, 5) == "glow_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.GlowFilter) { _local3[_local1][propName.substr(5)] = propValue; if (extras.__special_glow_quality__ != undefined) { _local3[_local1].quality = extras.__special_glow_quality__; } if (extras.__special_glow_inner__ != undefined) { _local3[_local1].inner = extras.__special_glow_inner__; } if (extras.__special_glow_knockout__ != undefined) { _local3[_local1].knockout = extras.__special_glow_knockout__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local8 = ((extras.__special_glow_quality__ == undefined) ? 2 : (extras.__special_glow_quality__)); var _local12 = ((extras.__special_glow_inner__ == undefined) ? false : (extras.__special_glow_inner__)); var _local10 = ((extras.__special_glow_knockout__ == undefined) ? false : (extras.__special_glow_knockout__)); if (propName == "glow_color") { var _local9 = new flash.filters.GlowFilter(propValue, 1, 0, 0, 1, _local8, _local12, _local10); } if (propName == "glow_alpha") { var _local9 = new flash.filters.GlowFilter(16777215, propValue, 0, 0, 1, _local8, _local12, _local10); } if (propName == "glow_blurX") { var _local9 = new flash.filters.GlowFilter(16777215, 1, propValue, 0, 1, _local8, _local12, _local10); } if (propName == "glow_blurY") { var _local9 = new flash.filters.GlowFilter(16777215, 1, 0, propValue, 1, _local8, _local12, _local10); } if (propName == "glow_strength") { var _local9 = new flash.filters.GlowFilter(16777215, 1, 0, 0, propValue, _local8, _local12, _local10); } _local3.push(_local9); } } else if (propName.substr(0, 6) == "bevel_") { _local1 = 0; while (_local1 < mtarget.filters.length) { if (_local3[_local1] instanceof flash.filters.BevelFilter) { _local3[_local1][propName.substr(6)] = propValue; if (extras.__special_bevel_quality__ != undefined) { _local3[_local1].quality = extras.__special_bevel_quality__; } if (extras.__special_bevel_type__ != undefined) { _local3[_local1].inner = extras.__special_bevel_type__; } if (extras.__special_bevel_knockout__ != undefined) { _local3[_local1].knockout = extras.__special_bevel_knockout__; } _local7 = true; break; } _local1++; } if (!_local7) { var _local8 = ((extras.__special_bevel_quality__ == undefined) ? 2 : (extras.__special_bevel_quality__)); var _local11 = ((extras.__special_bevel_type__ == undefined) ? "inner" : (extras.__special_bevel_type__)); var _local10 = ((extras.__special_bevel_knockout__ == undefined) ? false : (extras.__special_bevel_knockout__)); if (propName == "bevel_distance") { var _local9 = new flash.filters.BevelFilter(propValue, 45, 16777215, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_angle") { var _local9 = new flash.filters.BevelFilter(0, propValue, 16777215, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_highlightColor") { var _local9 = new flash.filters.BevelFilter(0, 45, propValue, 1, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_highlightAlpha") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, propValue, 0, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_shadowColor") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, propValue, 1, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_shadowAlpha") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, propValue, 0, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_blurX") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, propValue, 0, 1, _local8, _local11, _local10); } if (propName == "bevel_blurY") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, propValue, 1, _local8, _local11, _local10); } if (propName == "bevel_strength") { var _local9 = new flash.filters.BevelFilter(0, 45, 16777215, 1, 0, 1, 0, 0, propValue, _local8, _local11, _local10); } _local3.push(_local9); } } else { return(undefined); } mtarget.filters = _local3; }; MovieClip.prototype.tween = (TextField.prototype.tween = (Sound.prototype.tween = function (prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2); })); ASSetPropFlags(MovieClip.prototype, "tween", 1, 0); ASSetPropFlags(TextField.prototype, "tween", 1, 0); ASSetPropFlags(Sound.prototype, "tween", 1, 0); MovieClip.prototype.roundedTween = (TextField.prototype.roundedTween = (Sound.prototype.roundedTween = function (prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, prop, propDest, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); })); ASSetPropFlags(MovieClip.prototype, "roundedTween", 1, 0); ASSetPropFlags(TextField.prototype, "roundedTween", 1, 0); ASSetPropFlags(Sound.prototype, "roundedTween", 1, 0); MovieClip.prototype.stopTween = (TextField.prototype.stopTween = (Sound.prototype.stopTween = function (props) { if (typeof(props) == "string") { props = [props]; } if (props != undefined) { var _local4 = 1; while (_local4 < arguments.length) { props.push(arguments[_local4]); _local4++; } } _global.$stopTween(this, props, true); })); ASSetPropFlags(MovieClip.prototype, "stopTween", 1, 0); ASSetPropFlags(TextField.prototype, "stopTween", 1, 0); ASSetPropFlags(Sound.prototype, "stopTween", 1, 0); MovieClip.prototype.pauseTween = (TextField.prototype.pauseTween = (Sound.prototype.pauseTween = function (props) { if (props != undefined) { if (typeof(props) == "string") { props = [props]; } var _local6 = 1; while (_local6 < Arguments.length) { props.push(Arguments[_local6]); _local6++; } } var _local4 = _root.__tweenController__.$_tweenPropList; var _local5; for (var _local7 in _local4) { if ((_local4[_local7]._targ == this) && (!_local4[_local7]._isPaused)) { if (props != undefined) { _local5 = false; for (var _local6 in props) { if (props[_local6] == _local4[_local7]._prop) { _local5 = true; break; } } } if ((props == undefined) || (_local5)) { _local4[_local7]._isPaused = true; _local4[_local7]._timePaused = _root.__tweenController__.$_tTime; } } } })); ASSetPropFlags(MovieClip.prototype, "pauseTween", 1, 0); ASSetPropFlags(TextField.prototype, "pauseTween", 1, 0); ASSetPropFlags(Sound.prototype, "pauseTween", 1, 0); MovieClip.prototype.resumeTween = (TextField.prototype.resumeTween = (Sound.prototype.resumeTween = function (props) { if (props != undefined) { if (typeof(props) == "string") { props = [props]; } var _local7 = 1; while (_local7 < Arguments.length) { props.push(Arguments[_local7]); _local7++; } } var _local3 = _root.__tweenController__.$_tweenPropList; var _local5; var _local6; for (var _local8 in _local3) { if ((_local3[_local8]._targ == this) && (_local3[_local8]._isPaused)) { if (props != undefined) { _local5 = false; for (var _local7 in props) { if (props[_local7] == _local3[_local8]._prop) { _local5 = true; break; } } } if ((props == undefined) || (_local5)) { _local3[_local8]._isPaused = false; _local6 = _root.__tweenController__.$_tTime - _local3[_local8]._timePaused; _local3[_local8]._timeStart = _local3[_local8]._timeStart + _local6; _local3[_local8]._timeDest = _local3[_local8]._timeDest + _local6; _local3[_local8]._timePaused = 0; } } } })); ASSetPropFlags(MovieClip.prototype, "resumeTween", 1, 0); ASSetPropFlags(TextField.prototype, "resumeTween", 1, 0); ASSetPropFlags(Sound.prototype, "resumeTween", 1, 0); MovieClip.prototype.lockTween = (TextField.prototype.lockTween = (Sound.prototype.lockTween = function () { this.$_isTweenLocked = true; ASSetPropFlags(this, "this.$_isTweenLocked", 1, 0); })); ASSetPropFlags(MovieClip.prototype, "lockTween", 1, 0); ASSetPropFlags(TextField.prototype, "lockTween", 1, 0); ASSetPropFlags(Sound.prototype, "lockTween", 1, 0); MovieClip.prototype.unlockTween = (TextField.prototype.unlockTween = (Sound.prototype.unlockTween = function () { delete this.$_isTweenLocked; })); ASSetPropFlags(MovieClip.prototype, "unlockTween", 1, 0); ASSetPropFlags(TextField.prototype, "unlockTween", 1, 0); ASSetPropFlags(Sound.prototype, "unlockTween", 1, 0); MovieClip.prototype.getTweens = (TextField.prototype.getTweens = (Sound.prototype.getTweens = function () { return(this.$_tweenCount); })); ASSetPropFlags(MovieClip.prototype, "getTweens", 1, 0); ASSetPropFlags(TextField.prototype, "getTweens", 1, 0); ASSetPropFlags(Sound.prototype, "getTweens", 1, 0); MovieClip.prototype.isTweening = (TextField.prototype.isTweening = (Sound.prototype.isTweening = function () { return(((this.$_tweenCount > 0) ? true : false)); })); ASSetPropFlags(MovieClip.prototype, "isTweening", 1, 0); ASSetPropFlags(TextField.prototype, "isTweening", 1, 0); ASSetPropFlags(Sound.prototype, "isTweening", 1, 0); MovieClip.prototype.alphaTo = (TextField.prototype.alphaTo = function (propDest_a, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_alpha", propDest_a, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "alphaTo", 1, 0); ASSetPropFlags(TextField.prototype, "alphaTo", 1, 0); MovieClip.prototype.frameTo = function (propDest_frame, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_mc_frame__", propDest_frame, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(MovieClip.prototype, "frameTo", 1, 0); MovieClip.prototype.resizeTo = (TextField.prototype.resizeTo = function (propDest_width, propDest_height, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_width", "_height"], [propDest_width, propDest_height], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "resizeTo", 1, 0); ASSetPropFlags(TextField.prototype, "resizeTo", 1, 0); MovieClip.prototype.rotateTo = (TextField.prototype.rotateTo = function (propDest_rotation, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_rotation", propDest_rotation, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "rotateTo", 1, 0); ASSetPropFlags(TextField.prototype, "rotateTo", 1, 0); MovieClip.prototype.scaleTo = (TextField.prototype.scaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_xscale", "_yscale"], [propDest_scale, propDest_scale], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "scaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "scaleTo", 1, 0); MovieClip.prototype.xScaleTo = (TextField.prototype.xScaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_xscale", propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "xScaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "xScaleTo", 1, 0); MovieClip.prototype.yScaleTo = (TextField.prototype.yScaleTo = function (propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_yscale", propDest_scale, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "yScaleTo", 1, 0); ASSetPropFlags(TextField.prototype, "yScaleTo", 1, 0); TextField.prototype.scrollTo = function (propDest_scroll, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "scroll", propDest_scroll, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(TextField.prototype, "scrollTo", 1, 0); MovieClip.prototype.slideTo = (TextField.prototype.slideTo = function (propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "slideTo", 1, 0); ASSetPropFlags(TextField.prototype, "slideTo", 1, 0); MovieClip.prototype.roundedSlideTo = (TextField.prototype.roundedSlideTo = function (propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["_x", "_y"], [propDest_x, propDest_y], timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedSlideTo", 1, 0); MovieClip.prototype.xSlideTo = (TextField.prototype.xSlideTo = function (propDest_x, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_x", propDest_x, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "xSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "xSlideTo", 1, 0); MovieClip.prototype.roundedXSlideTo = (TextField.prototype.roundedXSlideTo = function (propDest_x, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_x", propDest_x, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedXSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedXSlideTo", 1, 0); MovieClip.prototype.ySlideTo = (TextField.prototype.ySlideTo = function (propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_y", propDest_y, timeSeconds, animType, delay, callback, extra1, extra2); }); ASSetPropFlags(MovieClip.prototype, "ySlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "ySlideTo", 1, 0); MovieClip.prototype.roundedYSlideTo = (TextField.prototype.roundedYSlideTo = function (propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "_y", propDest_y, timeSeconds, animType, delay, callback, extra1, extra2, {mustRound:true}); }); ASSetPropFlags(MovieClip.prototype, "roundedYSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedYSlideTo", 1, 0); MovieClip.prototype.bezierSlideTo = (TextField.prototype.bezierSlideTo = function (cpoint_x, cpoint_y, propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = new Object(); _local3.__special_bst_ix__ = undefined; _local3.__special_bst_iy__ = undefined; _local3.__special_bst_cx__ = cpoint_x; _local3.__special_bst_cy__ = cpoint_y; _local3.__special_bst_dx__ = propDest_x; _local3.__special_bst_dy__ = propDest_y; _global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _local3); }); ASSetPropFlags(MovieClip.prototype, "bezierSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "bezierSlideTo", 1, 0); MovieClip.prototype.roundedBezierSlideTo = (TextField.prototype.roundedBezierSlideTo = function (cpoint_x, cpoint_y, propDest_x, propDest_y, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = new Object(); _local3.__special_bst_ix__ = undefined; _local3.__special_bst_iy__ = undefined; _local3.__special_bst_cx__ = cpoint_x; _local3.__special_bst_cy__ = cpoint_y; _local3.__special_bst_dx__ = propDest_x; _local3.__special_bst_dy__ = propDest_y; _local3.mustRound = true; _global.$addTween(this, "__special_bst_t__", 1, timeSeconds, animType, delay, callback, extra1, extra2, _local3); }); ASSetPropFlags(MovieClip.prototype, "roundedBezierSlideTo", 1, 0); ASSetPropFlags(TextField.prototype, "roundedBezierSlideTo", 1, 0); Sound.prototype.volumeTo = function (propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_sound_volume__", propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(Sound.prototype, "volumeTo", 1, 0); Sound.prototype.panTo = function (propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_sound_pan__", propDest_volume, timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(Sound.prototype, "panTo", 1, 0); MovieClip.prototype.colorTo = function (propDest_color, timeSeconds, animType, delay, callback, extra1, extra2) { if (propDest_color == null) { this.colorTransformTo(100, 0, 100, 0, 100, 0, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2); } else { var _local3 = propDest_color >> 16; var _local5 = (propDest_color & 65280) >> 8; var _local4 = propDest_color & 255; this.colorTransformTo(0, _local3, 0, _local5, 0, _local4, undefined, undefined, timeSeconds, animType, delay, callback, extra1, extra2); } }; ASSetPropFlags(MovieClip.prototype, "colorTo", 1, 0); TextField.prototype.colorTo = function (propDest_color, timeSeconds, animType, delay, callback, extra1, extra2) { var _local3 = propDest_color >> 16; var _local6 = (propDest_color & 65280) >> 8; var _local4 = propDest_color & 255; _global.$addTween(this, ["__special_text_r__", "__special_text_g__", "__special_text_b__"], [_local3, _local6, _local4], timeSeconds, animType, delay, callback, extra1, extra2); }; ASSetPropFlags(TextField.prototype, "colorTo", 1, 0); MovieClip.prototype.colorTransformTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_mc_ra__", "__special_mc_rb__", "__special_mc_ga__", "__special_mc_gb__", "__special_mc_ba__", "__special_mc_bb__", "__special_mc_aa__", "__special_mc_ab__"], [arguments[0].ra, arguments[0].rb, arguments[0].ga, arguments[0].gb, arguments[0].ba, arguments[0].bb, arguments[0].aa, arguments[0].ab], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6]); } else { _global.$addTween(this, ["__special_mc_ra__", "__special_mc_rb__", "__special_mc_ga__", "__special_mc_gb__", "__special_mc_ba__", "__special_mc_bb__", "__special_mc_aa__", "__special_mc_ab__"], [arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7]], arguments[8], arguments[9], arguments[10], arguments[11], arguments[12], arguments[13]); } }; ASSetPropFlags(MovieClip.prototype, "colorTransformTo", 1, 0); MovieClip.prototype.blurTo = (TextField.prototype.blurTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [arguments[0].blurX, arguments[0].blurY], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_blur_quality__:arguments[0].quality}); } else { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [arguments[0], arguments[0]], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[7], {__special_blur_quality__:arguments[1]}); } }); ASSetPropFlags(MovieClip.prototype, "blurTo", 1, 0); ASSetPropFlags(TextField.prototype, "blurTo", 1, 0); MovieClip.prototype.xyBlurTo = (TextField.prototype.xyBlurTo = function (propDest_blurX, propDest_blurY, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_blur_x__", "__special_blur_y__"], [propDest_blurX, propDest_blurY], timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "xyBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyBlurTo", 1, 0); MovieClip.prototype.xBlurTo = (TextField.prototype.xBlurTo = function (propDest_blur, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_blur_x__", propDest_blur, timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "xBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "xBlurTo", 1, 0); MovieClip.prototype.yBlurTo = (TextField.prototype.yBlurTo = function (propDest_blur, quality, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, "__special_blur_y__", propDest_blur, timeSeconds, animType, delay, callback, extra1, extra2, {__special_blur_quality__:quality}); }); ASSetPropFlags(MovieClip.prototype, "yBlurTo", 1, 0); ASSetPropFlags(TextField.prototype, "yBlurTo", 1, 0); MovieClip.prototype.glowTo = (TextField.prototype.glowTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [arguments[0].color, arguments[0].alpha, arguments[0].blurX, arguments[0].blurY, arguments[0].strength], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_glow_quality__:arguments[0].quality, __special_glow_inner__:arguments[0].inner, __special_glow_knockout__:arguments[0].knockout}); } else { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [arguments[0], arguments[1], arguments[2], arguments[2], arguments[3]], arguments[7], arguments[8], arguments[9], arguments[10], arguments[11], arguments[12], {__special_glow_quality__:arguments[4], __special_glow_inner__:arguments[5], __special_glow_knockout__:arguments[6]}); } }); ASSetPropFlags(MovieClip.prototype, "glowTo", 1, 0); ASSetPropFlags(TextField.prototype, "glowTo", 1, 0); MovieClip.prototype.xyGlowTo = (TextField.prototype.xyGlowTo = function (propDest_color, propDest_alpha, propDest_blurX, propDest_blurY, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_blurY__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blurX, propDest_blurY, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xyGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyGlowTo", 1, 0); MovieClip.prototype.xGlowTo = (TextField.prototype.xGlowTo = function (propDest_color, propDest_alpha, propDest_blur, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurX__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "xGlowTo", 1, 0); MovieClip.prototype.yGlowTo = (TextField.prototype.yGlowTo = function (propDest_color, propDest_alpha, propDest_blur, propDest_strength, quality, inner, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_glow_color__", "__special_glow_alpha__", "__special_glow_blurY__", "__special_glow_strength__"], [propDest_color, propDest_alpha, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_glow_quality__:quality, __special_glow_inner__:inner, __special_glow_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "yGlowTo", 1, 0); ASSetPropFlags(TextField.prototype, "yGlowTo", 1, 0); MovieClip.prototype.bevelTo = (TextField.prototype.bevelTo = function () { if ((typeof(arguments[0]) == "object") && (arguments[0] != undefined)) { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_strength__"], [arguments[0].distance, arguments[0].angle, arguments[0].highlightColor, arguments[0].highlightAlpha * 100, arguments[0].shadowColor, arguments[0].shadowAlpha * 100, arguments[0].blurX, arguments[0].blurY, arguments[0].strength], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], {__special_bevel_quality__:arguments[0].quality, __special_bevel_type__:arguments[0].type, __special_bevel_knockout__:arguments[0].knockout}); } else { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_strength__"], [arguments[0], arguments[1], arguments[2], arguments[3], arguments[4], arguments[5], arguments[6], arguments[6], arguments[7]], arguments[11], arguments[12], arguments[13], arguments[14], arguments[15], arguments[16], {__special_bevel_quality__:arguments[8], __special_bevel_type__:arguments[9], __special_bevel_knockout__:arguments[10]}); } }); ASSetPropFlags(MovieClip.prototype, "bevelTo", 1, 0); ASSetPropFlags(TextField.prototype, "bevelTo", 1, 0); MovieClip.prototype.xyBevelTo = (TextField.prototype.xyBevelTo = function (propDest_distance, propDest_angle, propDest_highlightColor, propDest_highlightAlpha, propDest_shadowColor, propDest_shadowAlpha, propDest_blurX, propDest_blurY, propDest_strength, quality, type, knockout, timeSeconds, animType, delay, callback, extra1, extra2) { _global.$addTween(this, ["__special_bevel_distance__", "__special_bevel_angle__", "__special_bevel_highlightColor__", "__special_bevel_highlightAlpha__", "__special_bevel_shadowColor__", "__special_bevel_shadowAlpha__", "__special_bevel_blurX__", "__special_bevel_blurY__", "__special_bevel_blurY__", "__special_bevel_strength__"], [propDest_distance, propDest_angle, propDest_highlightColor, propDest_highlightAlpha, propDest_shadowColor, propDest_shadowAlpha, propDest_blur, propDest_blur, propDest_strength], timeSeconds, animType, delay, callback, extra1, extra2, {__special_bevel_quality__:quality, __special_bevel_type__:type, __special_bevel_knockout__:knockout}); }); ASSetPropFlags(MovieClip.prototype, "xyBevelTo", 1, 0); ASSetPropFlags(TextField.prototype, "xyBevelTo", 1, 0); _global.findPointOnCurve = function (p1x, p1y, cx, cy, p2x, p2y, t) { return({x:p1x + (t * (((2 * (1 - t)) * (cx - p1x)) + (t * (p2x - p1x)))), y:p1y + (t * (((2 * (1 - t)) * (cy - p1y)) + (t * (p2y - p1y))))}); }; ASSetPropFlags(_global, "findPointOnCurve", 1, 0); _global.findTweenColor = function (objProp, tTime) { var _local8 = objProp._propStart >> 16; var _local4 = objProp._propDest >> 16; var _local5 = (objProp._propStart >> 8) & 255; var _local6 = (objProp._propDest >> 8) & 255; var _local9 = objProp._propStart & 255; var _local7 = objProp._propDest & 255; var _local12 = Math.round(_global.findTweenValue(_local8, _local4, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); var _local10 = Math.round(_global.findTweenValue(_local5, _local6, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); var _local3 = Math.round(_global.findTweenValue(_local9, _local7, objProp._timeStart, tTime - (objProp._delay * 1000), objProp._timeDest, objProp._animType, objProp._extra1, objProp._extra2)); return(((_local12 << 16) + (_local10 << 8)) + _local3); }; _global.findTweenValue = function (_propStart, _propDest, _timeStart, _timeNow, _timeDest, _animType, _extra1, _extra2) { var _local1 = _timeNow - _timeStart; var _local4 = _propStart; var _local2 = _propDest - _propStart; var _local3 = _timeDest - _timeStart; var _local6 = _extra1; var _local7 = _extra2; var _local5 = _extra1; switch (_animType.toLowerCase()) { case "linear" : return(((_local2 * _local1) / _local3) + _local4); case "easeinquad" : _local1 = _local1 / _local3; return(((_local2 * _local1) * _local1) + _local4); case "easeoutquad" : _local1 = _local1 / _local3; return((((-_local2) * _local1) * (_local1 - 2)) + _local4); case "easeinoutquad" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((_local2 / 2) * _local1) * _local1) + _local4); } _local1--; return((((-_local2) / 2) * ((_local1 * (_local1 - 2)) - 1)) + _local4); case "easeoutinquad" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuad") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuad") * 0.5) + (_local2 * 0.5)) + _local4); case "easeincubic" : _local1 = _local1 / _local3; return((((_local2 * _local1) * _local1) * _local1) + _local4); case "easeoutcubic" : _local1 = (_local1 / _local3) - 1; return((_local2 * (((_local1 * _local1) * _local1) + 1)) + _local4); case "easeinoutcubic" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((((_local2 / 2) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (((_local1 * _local1) * _local1) + 2)) + _local4); case "easeoutincubic" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutCubic") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInCubic") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinquart" : _local1 = _local1 / _local3; return(((((_local2 * _local1) * _local1) * _local1) * _local1) + _local4); case "easeoutquart" : _local1 = (_local1 / _local3) - 1; return(((-_local2) * ((((_local1 * _local1) * _local1) * _local1) - 1)) + _local4); case "easeinoutquart" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((((_local2 / 2) * _local1) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return((((-_local2) / 2) * ((((_local1 * _local1) * _local1) * _local1) - 2)) + _local4); case "easeoutinquart" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuart") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuart") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinquint" : _local1 = _local1 / _local3; return((((((_local2 * _local1) * _local1) * _local1) * _local1) * _local1) + _local4); case "easeoutquint" : _local1 = (_local1 / _local3) - 1; return((_local2 * (((((_local1 * _local1) * _local1) * _local1) * _local1) + 1)) + _local4); case "easeinoutquint" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((((((_local2 / 2) * _local1) * _local1) * _local1) * _local1) * _local1) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (((((_local1 * _local1) * _local1) * _local1) * _local1) + 2)) + _local4); case "easeoutinquint" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutQuint") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInQuint") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinsine" : return((((-_local2) * Math.cos((_local1 / _local3) * (Math.PI/2))) + _local2) + _local4); case "easeoutsine" : return((_local2 * Math.sin((_local1 / _local3) * (Math.PI/2))) + _local4); case "easeinoutsine" : return((((-_local2) / 2) * (Math.cos((Math.PI * _local1) / _local3) - 1)) + _local4); case "easeoutinsine" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutSine") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInSine") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinexpo" : return(((_local1 == 0) ? (_local4) : ((_local2 * Math.pow(2, 10 * ((_local1 / _local3) - 1))) + _local4))); case "easeoutexpo" : return(((_local1 == _local3) ? (_local4 + _local2) : ((_local2 * ((-Math.pow(2, (-10 * _local1) / _local3)) + 1)) + _local4))); case "easeinoutexpo" : if (_local1 == 0) { return(_local4); } if (_local1 == _local3) { return(_local4 + _local2); } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((_local2 / 2) * Math.pow(2, 10 * (_local1 - 1))) + _local4); } _local1--; return(((_local2 / 2) * ((-Math.pow(2, -10 * _local1)) + 2)) + _local4); case "easeoutinexpo" : if (_local1 == 0) { return(_local4); } if (_local1 == _local3) { return(_local4 + _local2); } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return(((_local2 / 2) * ((-Math.pow(2, (-10 * _local1) / 1)) + 1)) + _local4); } return(((_local2 / 2) * (Math.pow(2, (10 * (_local1 - 2)) / 1) + 1)) + _local4); case "easeincirc" : _local1 = _local1 / _local3; return(((-_local2) * (Math.sqrt(1 - (_local1 * _local1)) - 1)) + _local4); case "easeoutcirc" : _local1 = (_local1 / _local3) - 1; return((_local2 * Math.sqrt(1 - (_local1 * _local1))) + _local4); case "easeinoutcirc" : _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { return((((-_local2) / 2) * (Math.sqrt(1 - (_local1 * _local1)) - 1)) + _local4); } _local1 = _local1 - 2; return(((_local2 / 2) * (Math.sqrt(1 - (_local1 * _local1)) + 1)) + _local4); case "easeoutincirc" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutCirc") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInCirc") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / _local3; if (_local1 == 1) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.3; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } _local1 = _local1 - 1; return((-((_local6 * Math.pow(2, 10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7))) + _local4); case "easeoutelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / _local3; if (_local1 == 1) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.3; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } return((((_local6 * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7)) + _local2) + _local4); case "easeinoutelastic" : if (_local1 == 0) { return(_local4); } _local1 = _local1 / (_local3 / 2); if (_local1 == 2) { return(_local4 + _local2); } if (!_local7) { _local7 = _local3 * 0.45; } if ((!_local6) || (_local6 < Math.abs(_local2))) { _local6 = _local2; _local5 = _local7 / 4; } else { _local5 = (_local7 / (Math.PI*2)) * Math.asin(_local2 / _local6); } if (_local1 < 1) { _local1 = _local1 - 1; return((-0.5 * ((_local6 * Math.pow(2, 10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7))) + _local4); } _local1 = _local1 - 1; return(((((_local6 * Math.pow(2, -10 * _local1)) * Math.sin((((_local1 * _local3) - _local5) * (Math.PI*2)) / _local7)) * 0.5) + _local2) + _local4); case "easeoutinelastic" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutElastic") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInElastic") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = _local1 / _local3; return((((_local2 * _local1) * _local1) * (((_local5 + 1) * _local1) - _local5)) + _local4); case "easeoutback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = (_local1 / _local3) - 1; return((_local2 * (((_local1 * _local1) * (((_local5 + 1) * _local1) + _local5)) + 1)) + _local4); case "easeinoutback" : if (_local5 == undefined) { _local5 = 1.70158; } _local1 = _local1 / (_local3 / 2); if (_local1 < 1) { _local5 = _local5 * 1.525; return(((_local2 / 2) * ((_local1 * _local1) * (((_local5 + 1) * _local1) - _local5))) + _local4); } _local1 = _local1 - 2; _local5 = _local5 * 1.525; return(((_local2 / 2) * (((_local1 * _local1) * (((_local5 + 1) * _local1) + _local5)) + 2)) + _local4); case "easeoutinback" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutBack") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInBack") * 0.5) + (_local2 * 0.5)) + _local4); case "easeinbounce" : return((_local2 - findTweenValue(0, _local2, 0, _local3 - _local1, _local3, "easeOutBounce")) + _local4); case "easeoutbounce" : _local1 = _local1 / _local3; if (_local1 < 0.363636363636364) { return((_local2 * ((7.5625 * _local1) * _local1)) + _local4); } if (_local1 < 0.727272727272727) { _local1 = _local1 - 0.545454545454545; return((_local2 * (((7.5625 * _local1) * _local1) + 0.75)) + _local4); } if (_local1 < 0.909090909090909) { _local1 = _local1 - 0.818181818181818; return((_local2 * (((7.5625 * _local1) * _local1) + 0.9375)) + _local4); } _local1 = _local1 - 0.954545454545455; return((_local2 * (((7.5625 * _local1) * _local1) + 0.984375)) + _local4); case "easeinoutbounce" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeInBounce") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeOutBounce") * 0.5) + (_local2 * 0.5)) + _local4); case "easeoutinbounce" : if (_local1 < (_local3 / 2)) { return((findTweenValue(0, _local2, 0, _local1 * 2, _local3, "easeOutBounce") * 0.5) + _local4); } return(((findTweenValue(0, _local2, 0, (_local1 * 2) - _local3, _local3, "easeInBounce") * 0.5) + (_local2 * 0.5)) + _local4); } trace(("MC TWEEN ### Error on transition: there's no \"" + _animType) + "\" animation type."); return(0); }; ASSetPropFlags(_global, "findTweenValue", 1, 0); this.setMask(maskArea); gravityConst = 1; acidSinkConst = -2; frictionConst = 4; minYVel = -15; germSpawnInterval = 30; maxGermY = 500; germSpeed = 3; minGermSpeed = 2; needleMinRotation = -15; needleMaxRotation = 140; healthComboThreshold = 5; acidDepth = 20000; blackDepth = 34000; isGameOver = false; paused = true; slowMax = 300; slowLeft = slowMax; isSlow = false; var cheerSound = new Sound(); cheerSound.attachSound("cheer.wav"); var failedSound = new Sound(); failedSound.attachSound("failed.wav"); var pickupSound = new Sound(); pickupSound.attachSound("pickup.wav"); var slowSound = new Sound(); slowSound.attachSound("water-slow.wav"); if (!started) { init(); } stop(); this.onEnterFrame = function () { if ((!paused) && (!isGameOver)) { if (symShip.canFly) { handleKeys(); } setGermRatios(); if (random(25) == 24) { spawnBubble(random(800), 610); } currentWave = levelArray[level][wave]; if (currentWave.length > 0) { if ((--nextGermSpawn) == 0) { spawnGerm(currentWave.shift()); nextGermSpawn = germSpawnInterval + (random(20) - 10); } } else if ((germArray.length == 0) && (!doingFade)) { wave++; if (levelArray[level].length > wave) { createFadeText(400, 250, "Wave " + (wave + 1)); } else if (!doingFade) { doingFade = true; black = this.attachMovie("black", "black", blackDepth, {_x:400, _y:300, _alpha:0}); black.tween("_alpha", 100, 0.5, "linear", 1, function () { nextLevel(); }); } } if (random(300) == 2) { if ((whiteBloodCell == undefined) || (whiteBloodCell._x > 820)) { spawnWhiteCell(); whiteBloodCell.dropped = false; } } if (whiteBloodCell._x < 830) { whiteBloodCell._x = whiteBloodCell._x + 4; if ((whiteBloodCell._x > 400) && (whiteBloodCell.dropped == false)) { switch (random(3)) { case 0 : power = "healthPowerUp"; break; case 1 : power = "slowPowerUp"; break; case 2 : power = "shieldPowerUp"; } depth = getNextFreeDepth(); powerUp = this.attachMovie(power, power + depth, depth, {_x:whiteBloodCell._x, _y:whiteBloodCell._y}); powerUp.canCollect = true; whiteBloodCell.dropped = true; } } needle._x = symShip._x; needle._y = symShip._y; if (isSlow) { if ((--slowLeft) <= 0) { isSlow = false; } HUD.slowMeter._xscale = (slowLeft / slowMax) * 100; } if (symShip.shieldOn) { HUD.shieldMeter._xscale = (symShip.shieldLeft / symShip.shieldMax) * 100; } } };
Symbol 514 MovieClip Frame 33
stop(); this.onEnterFrame = null; started = false; removeAllClips(); gotoAndPlay (1);

Library Items

Symbol 1 Sound [zap.wav]
Symbol 2 Sound [music3]
Symbol 3 Sound [music2]
Symbol 4 Sound [music]
Symbol 5 Sound [water-slow.wav]
Symbol 6 Sound [shield-on.wav]
Symbol 7 Sound [shield-off.wav]
Symbol 8 Sound [ratchet.wav]
Symbol 9 Sound [pickup.wav]
Symbol 10 Sound [ow.wav]
Symbol 11 Sound [inject.wav]
Symbol 12 Sound [grow.wav]
Symbol 13 Sound [failed.wav]
Symbol 14 Sound [crack2.wav]
Symbol 15 Sound [crack1.wav]
Symbol 16 Sound [cheer.wav]
Symbol 17 Sound [splash.wav]Used by:107
Symbol 18 Sound [squish.wav]Used by:365
Symbol 19 ShapeTweeningUsed by:25
Symbol 20 GraphicUsed by:21 473 476 479
Symbol 21 MovieClipUses:20Used by:25 30 35 79 189 191 195 197 199 201 205 207 209 211 370 413 430 514
Symbol 22 ShapeTweeningUsed by:25
Symbol 23 ShapeTweeningUsed by:25
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClip [brainFluid]Uses:19 21 22 23 24
Symbol 26 ShapeTweeningUsed by:30
Symbol 27 ShapeTweeningUsed by:30
Symbol 28 ShapeTweeningUsed by:30
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClip [blood]Uses:26 21 27 28 29
Symbol 31 ShapeTweeningUsed by:35
Symbol 32 ShapeTweeningUsed by:35
Symbol 33 ShapeTweeningUsed by:35
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClip [acid]Uses:31 21 32 33 34
Symbol 36 ShapeTweeningUsed by:67 473
Symbol 37 GraphicUsed by:67 473
Symbol 38 GraphicUsed by:67
Symbol 39 GraphicUsed by:67
Symbol 40 GraphicUsed by:67
Symbol 41 ShapeTweeningUsed by:67
Symbol 42 GraphicUsed by:67
Symbol 43 GraphicUsed by:67
Symbol 44 GraphicUsed by:67
Symbol 45 GraphicUsed by:67
Symbol 46 ShapeTweeningUsed by:67
Symbol 47 GraphicUsed by:67
Symbol 48 GraphicUsed by:67
Symbol 49 GraphicUsed by:67
Symbol 50 GraphicUsed by:67
Symbol 51 ShapeTweeningUsed by:67
Symbol 52 GraphicUsed by:67
Symbol 53 GraphicUsed by:67
Symbol 54 GraphicUsed by:67
Symbol 55 GraphicUsed by:67
Symbol 56 GraphicUsed by:67
Symbol 57 ShapeTweeningUsed by:67
Symbol 58 GraphicUsed by:67
Symbol 59 GraphicUsed by:67
Symbol 60 GraphicUsed by:67
Symbol 61 GraphicUsed by:67
Symbol 62 ShapeTweeningUsed by:67
Symbol 63 ShapeTweeningUsed by:67
Symbol 64 ShapeTweeningUsed by:67
Symbol 65 ShapeTweeningUsed by:67
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66Used by:79
Symbol 68 GraphicUsed by:73 473 476
Symbol 69 GraphicUsed by:73
Symbol 70 GraphicUsed by:73
Symbol 71 GraphicUsed by:73
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:68 69 70 71 72Used by:79 430
Symbol 74 GraphicUsed by:78 473 476
Symbol 75 GraphicUsed by:78
Symbol 76 GraphicUsed by:78
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:74 75 76 77Used by:79 430
Symbol 79 MovieClip [GermBody1]Uses:67 73 78 21Used by:80 467 473
Symbol 80 MovieClip [Germ]Uses:79
Symbol 81 ShapeTweeningUsed by:87
Symbol 82 ShapeTweeningUsed by:87
Symbol 83 GraphicUsed by:87
Symbol 84 GraphicUsed by:87
Symbol 85 GraphicUsed by:87
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClip [brainBubble]Uses:81 82 83 84 85 86
Symbol 88 ShapeTweeningUsed by:94
Symbol 89 ShapeTweeningUsed by:94
Symbol 90 GraphicUsed by:94
Symbol 91 GraphicUsed by:94
Symbol 92 GraphicUsed by:94
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClip [bloodBubble]Uses:88 89 90 91 92 93
Symbol 95 ShapeTweeningUsed by:101
Symbol 96 ShapeTweeningUsed by:101
Symbol 97 GraphicUsed by:101
Symbol 98 GraphicUsed by:101
Symbol 99 GraphicUsed by:101
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClip [acidBubble]Uses:95 96 97 98 99 100
Symbol 102 GraphicUsed by:107
Symbol 103 GraphicUsed by:107
Symbol 104 GraphicUsed by:107
Symbol 105 GraphicUsed by:107
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClip [bloodSplash]Uses:102 17 103 104 105 106
Symbol 108 GraphicUsed by:113
Symbol 109 GraphicUsed by:113
Symbol 110 GraphicUsed by:113
Symbol 111 GraphicUsed by:113
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClip [acidSplash]Uses:108 109 110 111 112
Symbol 114 GraphicUsed by:118
Symbol 115 GraphicUsed by:118
Symbol 116 GraphicUsed by:118
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClip [shipBubble]Uses:114 115 116 117
Symbol 119 GraphicUsed by:124
Symbol 120 GraphicUsed by:124
Symbol 121 GraphicUsed by:124
Symbol 122 GraphicUsed by:124
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClip [slowPowerUp]Uses:119 120 121 122 123
Symbol 125 GraphicUsed by:130
Symbol 126 GraphicUsed by:130
Symbol 127 GraphicUsed by:130
Symbol 128 GraphicUsed by:130
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClip [shieldPowerUp]Uses:125 126 127 128 129
Symbol 131 GraphicUsed by:136 308
Symbol 132 GraphicUsed by:136
Symbol 133 GraphicUsed by:136
Symbol 134 GraphicUsed by:136
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClip [healthPowerUp]Uses:131 132 133 134 135
Symbol 137 GraphicUsed by:154 185
Symbol 138 FontUsed by:139 140 147 155 156 270 492 500 501 504 505 508
Symbol 139 TextUses:138Used by:154
Symbol 140 TextUses:138Used by:154 185
Symbol 141 GraphicUsed by:146 503 513
Symbol 142 FontUsed by:143 502 511 512
Symbol 143 TextUses:142Used by:146 513
Symbol 144 GraphicUsed by:146 503 513
Symbol 145 GraphicUsed by:146 503 513
Symbol 146 ButtonUses:141 143 144 145Used by:154 185
Symbol 147 EditableTextUses:138Used by:154
Symbol 148 GraphicUsed by:153 184
Symbol 149 GraphicUsed by:153 184
Symbol 150 GraphicUsed by:153 184
Symbol 151 GraphicUsed by:153
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:148 149 150 151 152Used by:154
Symbol 154 MovieClip [gameOverScreen]Uses:137 139 140 146 147 153
Symbol 155 TextUses:138Used by:185
Symbol 156 EditableTextUses:138Used by:185
Symbol 157 GraphicUsed by:185
Symbol 158 ShapeTweeningUsed by:162
Symbol 159 ShapeTweeningUsed by:162
Symbol 160 GraphicUsed by:162
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:158 159 160 161Used by:185 510
Symbol 163 ShapeTweeningUsed by:167
Symbol 164 ShapeTweeningUsed by:167
Symbol 165 GraphicUsed by:167
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:163 164 165 166Used by:185 510
Symbol 168 ShapeTweeningUsed by:172
Symbol 169 ShapeTweeningUsed by:172
Symbol 170 GraphicUsed by:172
Symbol 171 GraphicUsed by:172
Symbol 172 MovieClipUses:168 169 170 171Used by:185 510
Symbol 173 ShapeTweeningUsed by:177
Symbol 174 ShapeTweeningUsed by:177
Symbol 175 GraphicUsed by:177
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClip [mapLiver]Uses:173 174 175 176Used by:185 510
Symbol 178 ShapeTweeningUsed by:182
Symbol 179 ShapeTweeningUsed by:182
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:178 179 180 181Used by:185 510
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:148 149 150 183Used by:185
Symbol 185 MovieClip [patientCured]Uses:137 155 140 146 156 157 162 167 172 177 182 184
Symbol 186 BitmapUsed by:187
Symbol 187 GraphicUses:186Used by:191
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:188 21Used by:190
Symbol 190 MovieClipUses:189Used by:191
Symbol 191 MovieClip [level6]Uses:187 190 21
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:201 209 211
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194 21Used by:200 204 206 208 210
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196 21Used by:200 204 206
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198 21Used by:200 204 206 208 210
Symbol 200 MovieClipUses:195 197 199Used by:201
Symbol 201 MovieClip [level5]Uses:193 200 21
Symbol 202 BitmapUsed by:203
Symbol 203 GraphicUses:202Used by:205 207 514
Symbol 204 MovieClipUses:195 197 199Used by:205
Symbol 205 MovieClip [level4]Uses:203 204 21
Symbol 206 MovieClipUses:195 197 199Used by:207
Symbol 207 MovieClip [level3]Uses:203 206 21
Symbol 208 MovieClipUses:199 195Used by:209
Symbol 209 MovieClip [level2]Uses:193 208 21
Symbol 210 MovieClip [levelGeom]Uses:199 195Used by:211
Symbol 211 MovieClip [level1]Uses:193 210 21
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClip [5xCombo]Uses:212
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClip [midairBonus]Uses:214
Symbol 216 GraphicUsed by:219
Symbol 217 FontUsed by:218
Symbol 218 TextUses:217Used by:219
Symbol 219 MovieClip [black]Uses:216 218
Symbol 220 FontUsed by:221
Symbol 221 EditableTextUses:220Used by:222
Symbol 222 MovieClip [plusText]Uses:221
Symbol 223 GraphicUsed by:232
Symbol 224 GraphicUsed by:232
Symbol 225 GraphicUsed by:232
Symbol 226 GraphicUsed by:232
Symbol 227 GraphicUsed by:232
Symbol 228 GraphicUsed by:232
Symbol 229 GraphicUsed by:232
Symbol 230 GraphicUsed by:232
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClip [crackFull]Uses:223 224 225 226 227 228 229 230 231
Symbol 233 GraphicUsed by:242
Symbol 234 GraphicUsed by:242
Symbol 235 GraphicUsed by:242
Symbol 236 GraphicUsed by:242
Symbol 237 GraphicUsed by:242
Symbol 238 GraphicUsed by:242
Symbol 239 GraphicUsed by:242
Symbol 240 GraphicUsed by:242
Symbol 241 GraphicUsed by:242
Symbol 242 MovieClip [crackHalf]Uses:233 234 235 236 237 238 239 240 241
Symbol 243 GraphicUsed by:312
Symbol 244 GraphicUsed by:312
Symbol 245 GraphicUsed by:268
Symbol 246 GraphicUsed by:256
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:247Used by:256
Symbol 249 GraphicUsed by:250
Symbol 250 MovieClipUses:249Used by:256
Symbol 251 GraphicUsed by:254
Symbol 252 GraphicUsed by:254
Symbol 253 GraphicUsed by:254
Symbol 254 MovieClipUses:251 252 253Used by:256
Symbol 255 GraphicUsed by:256
Symbol 256 MovieClipUses:246 248 250 254 255Used by:268
Symbol 257 GraphicUsed by:268
Symbol 258 MovieClipUsed by:268
Symbol 259 GraphicUsed by:268
Symbol 260 GraphicUsed by:268
Symbol 261 GraphicUsed by:268
Symbol 262 GraphicUsed by:268
Symbol 263 GraphicUsed by:268
Symbol 264 GraphicUsed by:268
Symbol 265 GraphicUsed by:268
Symbol 266 GraphicUsed by:268
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:245 256 257 258 259 260 261 262 263 264 265 266 267Used by:312 370
Symbol 269 GraphicUsed by:312
Symbol 270 TextUses:138Used by:312
Symbol 271 FontUsed by:272 279 281 283 292 294 296 309 310 311
Symbol 272 TextUses:271Used by:312
Symbol 273 GraphicUsed by:275 280 282 291 293 295
Symbol 274 GraphicUsed by:275 280 282 291 293 295
Symbol 275 ButtonUses:273 274Used by:312
Symbol 276 GraphicUsed by:278
Symbol 277 GraphicUsed by:278
Symbol 278 ButtonUses:276 277Used by:312
Symbol 279 TextUses:271Used by:312
Symbol 280 ButtonUses:273 274Used by:312
Symbol 281 TextUses:271Used by:312
Symbol 282 ButtonUses:273 274Used by:312
Symbol 283 TextUses:271Used by:312
Symbol 284 FontUsed by:285 287 288 289
Symbol 285 TextUses:284Used by:290
Symbol 286 GraphicUsed by:290
Symbol 287 TextUses:284Used by:290
Symbol 288 TextUses:284Used by:290
Symbol 289 TextUses:284Used by:290
Symbol 290 ButtonUses:285 286 287 288 289Used by:312
Symbol 291 ButtonUses:273 274Used by:312
Symbol 292 TextUses:271Used by:312
Symbol 293 ButtonUses:273 274Used by:312
Symbol 294 TextUses:271Used by:312
Symbol 295 ButtonUses:273 274Used by:312
Symbol 296 TextUses:271Used by:312
Symbol 297 ShapeTweeningUsed by:303
Symbol 298 GraphicUsed by:303
Symbol 299 ShapeTweeningUsed by:303
Symbol 300 ShapeTweeningUsed by:303
Symbol 301 ShapeTweeningUsed by:303
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClip [whiteBloodCell]Uses:297 298 299 300 301 302Used by:312
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:304Used by:312 496
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:306Used by:312 496
Symbol 308 MovieClipUses:131Used by:312
Symbol 309 TextUses:271Used by:312
Symbol 310 TextUses:271Used by:312
Symbol 311 TextUses:271Used by:312
Symbol 312 MovieClip [helpScreen]Uses:243 244 268 269 270 272 275 278 279 280 281 282 283 290 291 292 293 294 295 296 303 305 307 308 309 310 311
Symbol 313 GraphicUsed by:329
Symbol 314 FontUsed by:315 316 317 318 319 320 321 322 323 325 326
Symbol 315 TextUses:314Used by:329
Symbol 316 TextUses:314Used by:329
Symbol 317 TextUses:314Used by:329
Symbol 318 TextUses:314Used by:329
Symbol 319 TextUses:314Used by:329
Symbol 320 TextUses:314Used by:329
Symbol 321 TextUses:314Used by:329
Symbol 322 TextUses:314Used by:329
Symbol 323 TextUses:314Used by:329
Symbol 324 GraphicUsed by:327 328
Symbol 325 TextUses:314Used by:327
Symbol 326 TextUses:314Used by:327
Symbol 327 ButtonUses:324 325 326Used by:329
Symbol 328 ButtonUses:324Used by:329
Symbol 329 MovieClip [creditsScreen]Uses:313 315 316 317 318 319 320 321 322 323 327 328
Symbol 330 GraphicUsed by:333
Symbol 331 GraphicUsed by:333
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClip [shield]Uses:330 331 332
Symbol 334 GraphicUsed by:335
Symbol 335 MovieClip [normalDamage]Uses:334
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClip [warningDamage]Uses:336
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClip [criticalDamage]Uses:338
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClip [destroyedDamage]Uses:340
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClip [slowMeter]Uses:342Used by:496
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClip [shieldMeter]Uses:344Used by:496
Symbol 346 GraphicUsed by:365
Symbol 347 GraphicUsed by:365
Symbol 348 GraphicUsed by:365
Symbol 349 GraphicUsed by:365
Symbol 350 GraphicUsed by:365
Symbol 351 GraphicUsed by:365
Symbol 352 GraphicUsed by:365
Symbol 353 GraphicUsed by:365
Symbol 354 GraphicUsed by:365
Symbol 355 GraphicUsed by:365
Symbol 356 GraphicUsed by:365
Symbol 357 GraphicUsed by:365
Symbol 358 GraphicUsed by:365
Symbol 359 GraphicUsed by:365
Symbol 360 GraphicUsed by:365
Symbol 361 GraphicUsed by:365
Symbol 362 GraphicUsed by:365
Symbol 363 GraphicUsed by:365
Symbol 364 GraphicUsed by:365
Symbol 365 MovieClip [symShipLegs]Uses:346 347 348 349 350 351 352 353 354 18 355 356 357 358 359 360 361 362 363 364Used by:370
Symbol 366 GraphicUsed by:369
Symbol 367 GraphicUsed by:368
Symbol 368 MovieClipUses:367Used by:369
Symbol 369 MovieClipUses:366 368Used by:370
Symbol 370 MovieClip [symShip]Uses:365 268 21 369Used by:514
Symbol 371 ShapeTweeningUsed by:375
Symbol 372 ShapeTweeningUsed by:375
Symbol 373 ShapeTweeningUsed by:375
Symbol 374 GraphicUsed by:375
Symbol 375 MovieClip [bloodWash]Uses:371 372 373 374Used by:514
Symbol 376 GraphicUsed by:412 479
Symbol 377 GraphicUsed by:412 479
Symbol 378 GraphicUsed by:412
Symbol 379 GraphicUsed by:412
Symbol 380 GraphicUsed by:412
Symbol 381 GraphicUsed by:412
Symbol 382 GraphicUsed by:412
Symbol 383 GraphicUsed by:412
Symbol 384 GraphicUsed by:412
Symbol 385 GraphicUsed by:412
Symbol 386 GraphicUsed by:412
Symbol 387 GraphicUsed by:412
Symbol 388 GraphicUsed by:412
Symbol 389 GraphicUsed by:412
Symbol 390 GraphicUsed by:412
Symbol 391 GraphicUsed by:412
Symbol 392 GraphicUsed by:412
Symbol 393 GraphicUsed by:412
Symbol 394 GraphicUsed by:412
Symbol 395 GraphicUsed by:412
Symbol 396 GraphicUsed by:412
Symbol 397 GraphicUsed by:412
Symbol 398 GraphicUsed by:412
Symbol 399 GraphicUsed by:412
Symbol 400 ShapeTweeningUsed by:412
Symbol 401 GraphicUsed by:412
Symbol 402 ShapeTweeningUsed by:412
Symbol 403 GraphicUsed by:412
Symbol 404 GraphicUsed by:412
Symbol 405 ShapeTweeningUsed by:412
Symbol 406 ShapeTweeningUsed by:412
Symbol 407 GraphicUsed by:412
Symbol 408 ShapeTweeningUsed by:412
Symbol 409 GraphicUsed by:412
Symbol 410 ShapeTweeningUsed by:412
Symbol 411 GraphicUsed by:412
Symbol 412 MovieClipUses:376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411Used by:413
Symbol 413 MovieClip [GermType3]Uses:412 21Used by:468 479
Symbol 414 GraphicUsed by:429 476
Symbol 415 GraphicUsed by:429 476
Symbol 416 GraphicUsed by:429
Symbol 417 GraphicUsed by:429
Symbol 418 GraphicUsed by:429
Symbol 419 GraphicUsed by:429
Symbol 420 GraphicUsed by:429
Symbol 421 ShapeTweeningUsed by:429
Symbol 422 ShapeTweeningUsed by:429
Symbol 423 GraphicUsed by:429
Symbol 424 ShapeTweeningUsed by:429
Symbol 425 ShapeTweeningUsed by:429
Symbol 426 ShapeTweeningUsed by:429
Symbol 427 ShapeTweeningUsed by:429
Symbol 428 GraphicUsed by:429
Symbol 429 MovieClipUses:414 415 416 417 418 419 420 421 422 423 424 425 426 427 428Used by:430
Symbol 430 MovieClip [GermType2]Uses:429 73 78 21Used by:466 476
Symbol 431 GraphicUsed by:461
Symbol 432 GraphicUsed by:436
Symbol 433 GraphicUsed by:434 436
Symbol 434 MovieClipUses:433Used by:435
Symbol 435 MovieClipUses:434Used by:436
Symbol 436 ButtonUses:432 435 433Used by:437
Symbol 437 MovieClipUses:436Used by:461
Symbol 438 GraphicUsed by:442
Symbol 439 GraphicUsed by:440
Symbol 440 MovieClipUses:439Used by:442
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClipUses:438 440 441Used by:461
Symbol 443 GraphicUsed by:444 447
Symbol 444 MovieClipUses:443Used by:445
Symbol 445 MovieClipUses:444Used by:447
Symbol 446 GraphicUsed by:447
Symbol 447 ButtonUses:443 445 446Used by:461
Symbol 448 GraphicUsed by:461
Symbol 449 GraphicUsed by:461
Symbol 450 GraphicUsed by:461
Symbol 451 GraphicUsed by:461
Symbol 452 GraphicUsed by:461
Symbol 453 GraphicUsed by:461
Symbol 454 GraphicUsed by:461
Symbol 455 GraphicUsed by:461
Symbol 456 GraphicUsed by:461
Symbol 457 GraphicUsed by:461
Symbol 458 GraphicUsed by:461
Symbol 459 GraphicUsed by:461
Symbol 460 GraphicUsed by:461
Symbol 461 MovieClipUses:431 437 442 447 448 449 450 451 452 453 454 455 456 457 458 459 460Used by:Timeline
Symbol 462 GraphicUsed by:463
Symbol 463 MovieClipUses:462Used by:514
Symbol 464 GraphicUsed by:514
Symbol 465 GraphicUsed by:514
Symbol 466 MovieClipUses:430Used by:469
Symbol 467 MovieClipUses:79Used by:469
Symbol 468 MovieClipUses:413Used by:469
Symbol 469 MovieClipUses:466 467 468Used by:514
Symbol 470 GraphicUsed by:473 476 479 482 485 488 494 495
Symbol 471 GraphicUsed by:473
Symbol 472 GraphicUsed by:473
Symbol 473 ButtonUses:470 471 472 79 36 37 68 74 20Used by:514
Symbol 474 GraphicUsed by:476
Symbol 475 GraphicUsed by:476
Symbol 476 ButtonUses:470 474 475 430 414 415 68 74 20Used by:514
Symbol 477 GraphicUsed by:479
Symbol 478 GraphicUsed by:479
Symbol 479 ButtonUses:470 477 478 413 376 377 20Used by:514
Symbol 480 GraphicUsed by:482
Symbol 481 GraphicUsed by:482
Symbol 482 ButtonUses:470 480 481Used by:514
Symbol 483 GraphicUsed by:485 494
Symbol 484 GraphicUsed by:485 494
Symbol 485 ButtonUses:470 483 484Used by:514
Symbol 486 GraphicUsed by:488 495
Symbol 487 GraphicUsed by:488 495
Symbol 488 ButtonUses:470 486 487Used by:514
Symbol 489 GraphicUsed by:496
Symbol 490 GraphicUsed by:491
Symbol 491 MovieClipUses:490Used by:496
Symbol 492 EditableTextUses:138Used by:496
Symbol 493 GraphicUsed by:496
Symbol 494 ButtonUses:470 483 484Used by:496
Symbol 495 ButtonUses:470 486 487Used by:496
Symbol 496 MovieClipUses:489 491 305 307 492 493 345 343 494 495Used by:514
Symbol 497 GraphicUsed by:498
Symbol 498 MovieClipUses:497Used by:514
Symbol 499 GraphicUsed by:510
Symbol 500 TextUses:138Used by:510
Symbol 501 TextUses:138Used by:510
Symbol 502 TextUses:142Used by:503
Symbol 503 ButtonUses:141 502 144 145Used by:510
Symbol 504 EditableTextUses:138Used by:510
Symbol 505 EditableTextUses:138Used by:510
Symbol 506 GraphicUsed by:510
Symbol 507 GraphicUsed by:509
Symbol 508 TextUses:138Used by:509
Symbol 509 MovieClipUses:507 508Used by:510
Symbol 510 MovieClipUses:499 500 501 503 504 505 506 162 167 172 177 182 509Used by:514
Symbol 511 TextUses:142Used by:514
Symbol 512 EditableTextUses:142Used by:514
Symbol 513 ButtonUses:141 143 144 145Used by:514
Symbol 514 MovieClipUses:463 203 464 465 469 473 476 479 482 375 485 488 370 496 21 498 510 511 512 513Used by:Timeline

Instance Names

"gameBase"Frame 2Symbol 514 MovieClip
"acidHitTest"Symbol 25 MovieClip [brainFluid] Frame 1Symbol 21 MovieClip
"acidHitTest"Symbol 30 MovieClip [blood] Frame 1Symbol 21 MovieClip
"acidHitTest"Symbol 35 MovieClip [acid] Frame 1Symbol 21 MovieClip
"body"Symbol 79 MovieClip [GermBody1] Frame 1Symbol 67 MovieClip
"type1Eye"Symbol 79 MovieClip [GermBody1] Frame 1Symbol 73 MovieClip
"type1Mouth"Symbol 79 MovieClip [GermBody1] Frame 1Symbol 78 MovieClip
"germHitTest"Symbol 79 MovieClip [GermBody1] Frame 1Symbol 21 MovieClip
"germBottomRange"Symbol 79 MovieClip [GermBody1] Frame 1Symbol 21 MovieClip
"germTopRange"Symbol 79 MovieClip [GermBody1] Frame 1Symbol 21 MovieClip
"germBody"Symbol 80 MovieClip [Germ] Frame 1Symbol 79 MovieClip [GermBody1]
"sadPatient"Symbol 154 MovieClip [gameOverScreen] Frame 1Symbol 153 MovieClip
"mapStomach"Symbol 185 MovieClip [patientCured] Frame 1Symbol 162 MovieClip
"mapLeftLung"Symbol 185 MovieClip [patientCured] Frame 1Symbol 167 MovieClip
"mapHeart"Symbol 185 MovieClip [patientCured] Frame 1Symbol 172 MovieClip
"mapLiver"Symbol 185 MovieClip [patientCured] Frame 1Symbol 177 MovieClip [mapLiver]
"mapBrain"Symbol 185 MovieClip [patientCured] Frame 1Symbol 182 MovieClip
"mapRightLung"Symbol 185 MovieClip [patientCured] Frame 1Symbol 167 MovieClip
"happyPatient"Symbol 185 MovieClip [patientCured] Frame 1Symbol 184 MovieClip
"levelHitTest"Symbol 189 MovieClip Frame 1Symbol 21 MovieClip
"levelGeom"Symbol 191 MovieClip [level6] Frame 1Symbol 190 MovieClip
"playerStart"Symbol 191 MovieClip [level6] Frame 1Symbol 21 MovieClip
"levelHitTest"Symbol 195 MovieClip Frame 1Symbol 21 MovieClip
"levelHitTest"Symbol 197 MovieClip Frame 1Symbol 21 MovieClip
"levelHitTest"Symbol 199 MovieClip Frame 1Symbol 21 MovieClip
"levelGeom"Symbol 201 MovieClip [level5] Frame 1Symbol 200 MovieClip
"playerStart"Symbol 201 MovieClip [level5] Frame 1Symbol 21 MovieClip
"levelGeom"Symbol 205 MovieClip [level4] Frame 1Symbol 204 MovieClip
"playerStart"Symbol 205 MovieClip [level4] Frame 1Symbol 21 MovieClip
"levelGeom"Symbol 207 MovieClip [level3] Frame 1Symbol 206 MovieClip
"playerStart"Symbol 207 MovieClip [level3] Frame 1Symbol 21 MovieClip
"levelGeom"Symbol 209 MovieClip [level2] Frame 1Symbol 208 MovieClip
"playerStart"Symbol 209 MovieClip [level2] Frame 1Symbol 21 MovieClip
"levelGeom"Symbol 211 MovieClip [level1] Frame 1Symbol 210 MovieClip [levelGeom]
"playerStart"Symbol 211 MovieClip [level1] Frame 1Symbol 21 MovieClip
"plusText"Symbol 222 MovieClip [plusText] Frame 1Symbol 221 EditableText
"outerEyes"Symbol 256 MovieClip Frame 1Symbol 248 MovieClip
"eyes"Symbol 256 MovieClip Frame 1Symbol 250 MovieClip
"docMouth"Symbol 256 MovieClip Frame 1Symbol 254 MovieClip
"doc"Symbol 268 MovieClip Frame 1Symbol 256 MovieClip
"helpDoc"Symbol 312 MovieClip [helpScreen] Frame 1Symbol 268 MovieClip
"headHitTop"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitUpLeft"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitUpRight"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitLeft"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitRight"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitBottom"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitDownLeft"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitDownRight"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitLeft"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitRight"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitLeft"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitLeft"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitRight"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"headHitRight"Symbol 369 MovieClip Frame 1Symbol 368 MovieClip
"symShipLegs"Symbol 370 MovieClip [symShip] Frame 1Symbol 365 MovieClip [symShipLegs]
"symShipBody"Symbol 370 MovieClip [symShip] Frame 1Symbol 268 MovieClip
"shipNearTest"Symbol 370 MovieClip [symShip] Frame 1Symbol 21 MovieClip
"headHitTest"Symbol 370 MovieClip [symShip] Frame 1Symbol 369 MovieClip
"shipBodyTest"Symbol 370 MovieClip [symShip] Frame 1Symbol 21 MovieClip
"wholeHitTest"Symbol 370 MovieClip [symShip] Frame 1Symbol 21 MovieClip
"shipHitTest"Symbol 370 MovieClip [symShip] Frame 1Symbol 21 MovieClip
"needleProxCheck"Symbol 370 MovieClip [symShip] Frame 1Symbol 21 MovieClip
"body"Symbol 413 MovieClip [GermType3] Frame 1Symbol 412 MovieClip
"germHitTest"Symbol 413 MovieClip [GermType3] Frame 1Symbol 21 MovieClip
"germBottomRange"Symbol 413 MovieClip [GermType3] Frame 1Symbol 21 MovieClip
"germTopRange"Symbol 413 MovieClip [GermType3] Frame 1Symbol 21 MovieClip
"body"Symbol 430 MovieClip [GermType2] Frame 1Symbol 429 MovieClip
"type1Eye"Symbol 430 MovieClip [GermType2] Frame 1Symbol 73 MovieClip
"type1Mouth"Symbol 430 MovieClip [GermType2] Frame 1Symbol 78 MovieClip
"germHitTest"Symbol 430 MovieClip [GermType2] Frame 1Symbol 21 MovieClip
"germBottomRange"Symbol 430 MovieClip [GermType2] Frame 1Symbol 21 MovieClip
"germTopRange"Symbol 430 MovieClip [GermType2] Frame 1Symbol 21 MovieClip
"bar"Symbol 442 MovieClip Frame 1Symbol 440 MovieClip
"bar"Symbol 461 MovieClip Frame 1Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 8Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 9Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 10Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 11Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 12Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 13Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 14Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 15Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 16Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 17Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 18Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 19Symbol 442 MovieClip
"bar"Symbol 461 MovieClip Frame 20Symbol 442 MovieClip
"germ2Loop"Symbol 469 MovieClip Frame 1Symbol 466 MovieClip
"germ1Loop"Symbol 469 MovieClip Frame 1Symbol 467 MovieClip
"germ3Loop"Symbol 469 MovieClip Frame 1Symbol 468 MovieClip
"damageBar"Symbol 496 MovieClip Frame 1Symbol 491 MovieClip
"shieldMeter"Symbol 496 MovieClip Frame 1Symbol 345 MovieClip [shieldMeter]
"slowMeter"Symbol 496 MovieClip Frame 1Symbol 343 MovieClip [slowMeter]
"mapStomach"Symbol 510 MovieClip Frame 1Symbol 162 MovieClip
"mapLeftLung"Symbol 510 MovieClip Frame 1Symbol 167 MovieClip
"mapHeart"Symbol 510 MovieClip Frame 1Symbol 172 MovieClip
"mapLiver"Symbol 510 MovieClip Frame 1Symbol 177 MovieClip [mapLiver]
"mapBrain"Symbol 510 MovieClip Frame 1Symbol 182 MovieClip
"mapRightLung"Symbol 510 MovieClip Frame 1Symbol 167 MovieClip
"mapArrow"Symbol 510 MovieClip Frame 1Symbol 509 MovieClip
"maskArea"Symbol 514 MovieClip Frame 1Symbol 463 MovieClip
"symShip"Symbol 514 MovieClip Frame 18Symbol 370 MovieClip [symShip]
"HUD"Symbol 514 MovieClip Frame 18Symbol 496 MovieClip
"germSpawnHitTest"Symbol 514 MovieClip Frame 18Symbol 21 MovieClip
"needle"Symbol 514 MovieClip Frame 18Symbol 498 MovieClip
"symLevelMap"Symbol 514 MovieClip Frame 18Symbol 510 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "zap.wav"
ExportAssets (56)Timeline Frame 1Symbol 2 as "music3"
ExportAssets (56)Timeline Frame 1Symbol 3 as "music2"
ExportAssets (56)Timeline Frame 1Symbol 4 as "music"
ExportAssets (56)Timeline Frame 1Symbol 5 as "water-slow.wav"
ExportAssets (56)Timeline Frame 1Symbol 6 as "shield-on.wav"
ExportAssets (56)Timeline Frame 1Symbol 7 as "shield-off.wav"
ExportAssets (56)Timeline Frame 1Symbol 8 as "ratchet.wav"
ExportAssets (56)Timeline Frame 1Symbol 9 as "pickup.wav"
ExportAssets (56)Timeline Frame 1Symbol 10 as "ow.wav"
ExportAssets (56)Timeline Frame 1Symbol 11 as "inject.wav"
ExportAssets (56)Timeline Frame 1Symbol 12 as "grow.wav"
ExportAssets (56)Timeline Frame 1Symbol 13 as "failed.wav"
ExportAssets (56)Timeline Frame 1Symbol 14 as "crack2.wav"
ExportAssets (56)Timeline Frame 1Symbol 15 as "crack1.wav"
ExportAssets (56)Timeline Frame 1Symbol 16 as "cheer.wav"
ExportAssets (56)Timeline Frame 1Symbol 17 as "splash.wav"
ExportAssets (56)Timeline Frame 1Symbol 18 as "squish.wav"
ExportAssets (56)Timeline Frame 1Symbol 25 as "brainFluid"
ExportAssets (56)Timeline Frame 1Symbol 30 as "blood"
ExportAssets (56)Timeline Frame 1Symbol 35 as "acid"
ExportAssets (56)Timeline Frame 1Symbol 79 as "GermBody1"
ExportAssets (56)Timeline Frame 1Symbol 80 as "Germ"
ExportAssets (56)Timeline Frame 1Symbol 87 as "brainBubble"
ExportAssets (56)Timeline Frame 1Symbol 94 as "bloodBubble"
ExportAssets (56)Timeline Frame 1Symbol 101 as "acidBubble"
ExportAssets (56)Timeline Frame 1Symbol 107 as "bloodSplash"
ExportAssets (56)Timeline Frame 1Symbol 113 as "acidSplash"
ExportAssets (56)Timeline Frame 1Symbol 118 as "shipBubble"
ExportAssets (56)Timeline Frame 1Symbol 124 as "slowPowerUp"
ExportAssets (56)Timeline Frame 1Symbol 130 as "shieldPowerUp"
ExportAssets (56)Timeline Frame 1Symbol 136 as "healthPowerUp"
ExportAssets (56)Timeline Frame 1Symbol 154 as "gameOverScreen"
ExportAssets (56)Timeline Frame 1Symbol 177 as "mapLiver"
ExportAssets (56)Timeline Frame 1Symbol 185 as "patientCured"
ExportAssets (56)Timeline Frame 1Symbol 191 as "level6"
ExportAssets (56)Timeline Frame 1Symbol 201 as "level5"
ExportAssets (56)Timeline Frame 1Symbol 205 as "level4"
ExportAssets (56)Timeline Frame 1Symbol 207 as "level3"
ExportAssets (56)Timeline Frame 1Symbol 209 as "level2"
ExportAssets (56)Timeline Frame 1Symbol 210 as "levelGeom"
ExportAssets (56)Timeline Frame 1Symbol 211 as "level1"
ExportAssets (56)Timeline Frame 1Symbol 213 as "5xCombo"
ExportAssets (56)Timeline Frame 1Symbol 215 as "midairBonus"
ExportAssets (56)Timeline Frame 1Symbol 219 as "black"
ExportAssets (56)Timeline Frame 1Symbol 222 as "plusText"
ExportAssets (56)Timeline Frame 1Symbol 232 as "crackFull"
ExportAssets (56)Timeline Frame 1Symbol 242 as "crackHalf"
ExportAssets (56)Timeline Frame 1Symbol 303 as "whiteBloodCell"
ExportAssets (56)Timeline Frame 1Symbol 312 as "helpScreen"
ExportAssets (56)Timeline Frame 1Symbol 329 as "creditsScreen"
ExportAssets (56)Timeline Frame 1Symbol 333 as "shield"
ExportAssets (56)Timeline Frame 1Symbol 335 as "normalDamage"
ExportAssets (56)Timeline Frame 1Symbol 337 as "warningDamage"
ExportAssets (56)Timeline Frame 1Symbol 339 as "criticalDamage"
ExportAssets (56)Timeline Frame 1Symbol 341 as "destroyedDamage"
ExportAssets (56)Timeline Frame 1Symbol 343 as "slowMeter"
ExportAssets (56)Timeline Frame 1Symbol 345 as "shieldMeter"
ExportAssets (56)Timeline Frame 1Symbol 365 as "symShipLegs"
ExportAssets (56)Timeline Frame 1Symbol 370 as "symShip"
ExportAssets (56)Timeline Frame 1Symbol 375 as "bloodWash"
ExportAssets (56)Timeline Frame 1Symbol 413 as "GermType3"
ExportAssets (56)Timeline Frame 1Symbol 430 as "GermType2"

Labels

"start"Frame 2
"swimming"Symbol 67 MovieClip Frame 1
"knockout"Symbol 67 MovieClip Frame 18
"transform"Symbol 67 MovieClip Frame 22
"knockOut"Symbol 73 MovieClip Frame 2
"knockout"Symbol 78 MovieClip Frame 2
"swimming"Symbol 79 MovieClip [GermBody1] Frame 1
"pop"Symbol 118 MovieClip [shipBubble] Frame 2
"still"Symbol 124 MovieClip [slowPowerUp] Frame 1
"pulse"Symbol 124 MovieClip [slowPowerUp] Frame 2
"dissolve"Symbol 124 MovieClip [slowPowerUp] Frame 10
"still"Symbol 130 MovieClip [shieldPowerUp] Frame 1
"pulse"Symbol 130 MovieClip [shieldPowerUp] Frame 2
"dissolve"Symbol 130 MovieClip [shieldPowerUp] Frame 10
"still"Symbol 136 MovieClip [healthPowerUp] Frame 1
"pulse"Symbol 136 MovieClip [healthPowerUp] Frame 2
"dissolve"Symbol 136 MovieClip [healthPowerUp] Frame 10
"happyPatient"Symbol 154 MovieClip [gameOverScreen] Frame 1
"infected"Symbol 162 MovieClip Frame 1
"clean"Symbol 162 MovieClip Frame 22
"infected"Symbol 167 MovieClip Frame 1
"clean"Symbol 167 MovieClip Frame 22
"infected"Symbol 172 MovieClip Frame 1
"clean"Symbol 172 MovieClip Frame 22
"infected"Symbol 177 MovieClip [mapLiver] Frame 1
"clean"Symbol 177 MovieClip [mapLiver] Frame 22
"infected"Symbol 182 MovieClip Frame 1
"clean"Symbol 182 MovieClip Frame 22
"happyPatient"Symbol 185 MovieClip [patientCured] Frame 1
"happy"Symbol 254 MovieClip Frame 1
"scared"Symbol 254 MovieClip Frame 2
"talking"Symbol 254 MovieClip Frame 3
"center"Symbol 268 MovieClip Frame 5
"start"Symbol 312 MovieClip [helpScreen] Frame 1
"text1"Symbol 312 MovieClip [helpScreen] Frame 26
"text2"Symbol 312 MovieClip [helpScreen] Frame 27
"text3"Symbol 312 MovieClip [helpScreen] Frame 28
"text4"Symbol 312 MovieClip [helpScreen] Frame 29
"text5"Symbol 312 MovieClip [helpScreen] Frame 30
"text6"Symbol 312 MovieClip [helpScreen] Frame 31
"text7"Symbol 312 MovieClip [helpScreen] Frame 32
"retract"Symbol 365 MovieClip [symShipLegs] Frame 1
"retracted"Symbol 365 MovieClip [symShipLegs] Frame 5
"extend"Symbol 365 MovieClip [symShipLegs] Frame 6
"extended"Symbol 365 MovieClip [symShipLegs] Frame 10
"runleft"Symbol 365 MovieClip [symShipLegs] Frame 11
"runright"Symbol 365 MovieClip [symShipLegs] Frame 29
"swimming"Symbol 412 MovieClip Frame 1
"knockout"Symbol 412 MovieClip Frame 19
"transform"Symbol 412 MovieClip Frame 23
"swimming"Symbol 413 MovieClip [GermType3] Frame 1
"swimming"Symbol 429 MovieClip Frame 1
"knockout"Symbol 429 MovieClip Frame 17
"transform"Symbol 429 MovieClip Frame 21
"swimming"Symbol 430 MovieClip [GermType2] Frame 1
"goplay"Symbol 461 MovieClip Frame 2
"extend"Symbol 498 MovieClip Frame 1
"extended"Symbol 498 MovieClip Frame 10
"retract"Symbol 498 MovieClip Frame 11
"retracted"Symbol 498 MovieClip Frame 20
"startPage"Symbol 514 MovieClip Frame 1
"gameStart"Symbol 514 MovieClip Frame 18
"game Over"Symbol 514 MovieClip Frame 33

Dynamic Text Variables

finalScoreSymbol 147 EditableText""
finalScoreSymbol 156 EditableText""
_parent.scoreSymbol 492 EditableText""
currentLocationSymbol 504 EditableText""
bacteriaConcentrationSymbol 505 EditableText""
scoreSymbol 512 EditableText""




http://swfchan.com/8/39666/info.shtml
Created: 12/5 -2019 02:19:38 Last modified: 12/5 -2019 02:19:38 Server time: 05/05 -2024 07:38:36