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

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

Attack of the Tweety Zombies.swf

This is the info page for
Flash #254846

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


Text
0

<P ALIGN="CENTER"></P>

<P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Animation Direction/Supervision</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Steve Belfer</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Game Design/Programming</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Andrew Rapo</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Senior Producer</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Sam Ades</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Producer</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Andrew Feinstein</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Titles</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Jennifer Branch</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Animation/Art</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Verrell Bowers</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Jennifer Branch</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Martin Cendreda</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Jennifer Cogan</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Kevin Dooley</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">David Fain</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Kristen McCormick</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Carlos Palazio</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Jennifer Sachs</FONT></P><P ALIGN="CENTER"></P>

99999

9

000

PRIVACY POLICY

PRIVACY POLICY

PRIVACY POLICY

© Warner Bros.

9

9

99999

99999

www.looneytunes.com

ActionScript [AS1/AS2]

Frame 1
function cTimer() { this.startTime = getTimer(); } cTimer.prototype.restartTimer = function () { this.startTime = getTimer(); }; cTimer.prototype.milliseconds = function () { return(getTimer() - this.startTime); }; cTimer.prototype.seconds = function () { return(int((getTimer() - this.startTime) / 1000)); }; iZombieSpawnTimer = new cTimer(); iCollisionTimer = new cTimer(); iSpawnFrequencyTimer = new cTimer(); iBatSpawnTimer = new cTimer(); iStunnedTimer = new cTimer(); iLevelPauseTimer = new cTimer(); iHowlTimer = new cTimer(); function cCharacter(clip, x, y, x_vel, y_vel, x_max, x_min, y_max, y_min) { this.pClip = clip; this.pX = x; this.pY = y; this.pXVel = x_vel; this.pYVel = y_vel; this.pXMax = x_max; this.pXMin = x_min; this.pYMax = y_max; this.pYMin = y_min; this.pLastDirection = "Left"; this.pAlive = true; this.pLives = 9; this.pJumping = false; this.pDucking = false; this.pStunned = false; } function mKeyStroke() { var i; var key_down = -1; if (400 < (getTimer() - _root.gCrTimer)) { i = 1; while (i < 91) { if (Key.isDown(i)) { key_down = i; } i++; } if (key_down >= 65) { _root.gCrCheck = (_root.gCrCheck + key_down) + ":"; _root.gCrTimer = getTimer(); if (_root.gCrCheck == "67:82:69:68:73:84:83:") { _root.mCr(); } } else if ((key_down == 13) || (key_down == 32)) { _root.gCrCheck = ""; _root.gCrTimer = getTimer(); } } } function mCr() { _root.CR.duplicateMovieClip("CR_1", 1000); _root.CR_1._x = 250; _root.CR_1._y = 187.5; _root.CR_1._xscale = 100; _root.CR_1._yscale = 100; _root.gCRt = _root.gCRtemp; _root.CR_1.gotoAndPlay("Show"); } cCharacter.prototype.mDestructor = function () { }; cCharacter.prototype.mSetXVelocity = function (x_vel) { this.pXVel = x_vel; }; cCharacter.prototype.mSetYVelocity = function (y_vel) { if (this.pY == 0) { this.pYVel = y_vel; } }; cCharacter.prototype.mForceYVelocity = function (y_vel) { this.pYVel = y_vel; }; cCharacter.prototype.mReset = function () { this.pAlive = true; this.pJumping = false; this.pDucking = false; this.pStunned = false; this.pXVel = 0; this.pYVel = 0; this.mStop(); }; cCharacter.prototype.mZapped = function () { if (this.pLives < 2) { this.pAlive = false; _root.screamSound.start(); } else { _root.aGhosts[_root.gNextGhost].mPlay(10 - this.pLives); this.pLives = this.pLives - 1; _root.gNextGhost = _root.gNextGhost + 1; if (_root.gGhostCount < _root.gNextGhost) { _root.gNextGhost = 1; } _root.ahhSound.start(); this.pStunned = true; _root.iStunnedTimer.restartTimer(); } }; cCharacter.prototype.mDuck = function () { if (this.pY == 0) { this.pXVel = 0; this.pDucking = true; } }; cCharacter.prototype.mStop = function () { if (this.pLastDirection == "Left") { this.pClip.gotoAndPlay("StopLeft"); } else if (this.pLastDirection == "Right") { this.pClip.gotoAndPlay("StopRight"); } }; cCharacter.prototype.mSetAnimation = function () { if (this.pStunned) { if (this.pLastDirection == "Left") { this.pClip.gotoAndPlay("StunnedLeft"); } else if (this.pLastDirection == "Right") { this.pClip.gotoAndPlay("StunnedRight"); } } else if (0 < this.pY) { this.pDucking = false; if (0 < this.pXVel) { if (!this.pJumping) { _root.bounceSound.start(); this.pClip.gotoAndPlay("JumpRight"); this.pLastDirection = "Right"; this.pJumping = true; } } else if (this.pXVel < 0) { if (!this.pJumping) { _root.bounceSound.start(); this.pClip.gotoAndPlay("JumpLeft"); this.pLastDirection = "Left"; this.pJumping = true; } } else if (!this.pJumping) { _root.bounceSound.start(); if (this.pLastDirection == "Left") { this.pClip.gotoAndPlay("JumpLeft"); } else if (this.pLastDirection == "Right") { this.pClip.gotoAndPlay("JumpRight"); } this.pJumping = true; } } else { this.pJumping = false; if (0 < this.pXVel) { this.pDucking = false; this.pClip.gotoAndPlay("Right"); this.pLastDirection = "Right"; } else if (this.pXVel < 0) { this.pDucking = false; this.pClip.gotoAndPlay("Left"); this.pLastDirection = "Left"; } else if (this.pDucking) { if (this.pLastDirection == "Left") { this.pClip.gotoAndPlay("DuckLeft"); } else if (this.pLastDirection == "Right") { this.pClip.gotoAndPlay("DuckRight"); } } else if (this.pLastDirection == "Left") { this.pClip.gotoAndPlay("StopLeft"); } else if (this.pLastDirection == "Right") { this.pClip.gotoAndPlay("StopRight"); } } }; cCharacter.prototype.mMove = function () { var x_vel = this.pXVel; if (0 < this.pY) { x_vel = x_vel * 2; } if (this.pAlive) { this.pClip._visible = 1; if (0 < (this.pY + this.pYVel)) { this.pY = this.pY + this.pYVel; this.pYVel = this.pYVel - 10; } else { this.pY = 0; this.pYVel = 0; } if (((this.pX + x_vel) < this.pXMax) && (this.pXMin < (this.pX + x_vel))) { this.pX = this.pX + x_vel; if (0 < this.pXVel) { if (0 < (this.pXVel - 2)) { this.pXVel = this.pXVel - 2; } else { this.pXVel = 0; } } else if (this.pXVel < 0) { if ((this.pXVel + 2) < 0) { this.pXVel = this.pXVel + 2; } else { this.pXVel = 0; } } } else { this.pXVel = 0; } this.mSetAnimation(); } else { this.pClip.gotoAndPlay("Zapped"); if (this.pY < 400) { this.pY = this.pY + 10; } } this.pClip._x = _root.SYLVESTER_x_start; this.pClip._y = this.pYMin - this.pY; }; function cZombie(clip, x, y, x_vel, y_vel, x_max, x_min, y_max, y_min) { this.pClip = clip; this.pX = x; this.pY = y; this.pXVel = x_vel; this.pYVel = y_vel; this.pXMax = x_max; this.pXMin = x_min; this.pYMax = y_max; this.pYMin = y_min; this.pLastDirection = "Left"; this.pAlive = false; this.pClip.pParent = this; this.pSpawning = false; this.pCollisionTimer = new _root.cTimer(); this.pLives = 1; } cZombie.prototype.mDestructor = function () { }; cZombie.prototype.mDump = function () { trace("Clip: " + this.pClip); trace("Alive: " + this.pAlive); trace("XVel: " + this.pXVel); trace("X: " + this.pX); }; cZombie.prototype.mSetXVelocity = function (x_vel) { this.pXVel = x_vel; }; cZombie.prototype.mSetYVelocity = function (y_vel) { if (this.pY == 0) { this.pYVel = y_vel; } }; cZombie.prototype.mSylvesterCall = function () { var random_sound = random(_root.gZombieSoundsCount); _root.aZombieSounds[random_sound].start(); }; cZombie.prototype.mZapped = function () { var points; this.pLives = this.pLives - 1; if (this.pLives < 1) { this.pAlive = false; _root.gZombiesKilled = _root.gZombiesKilled + 1; } else { trace("Zombie: zapped" + this.pLives); this.pClip._alpha = 100 * (this.pLives / 3); } _root.zapSound.start(); points = 25 * (3 - this.pLives); _root.gScore = _root.gScore + points; _root.aPoints[_root.gNextPoints].mPlay(points, this.pX); _root.gNextPoints = _root.gNextPoints + 1; if (_root.gPointsCount < _root.gNextPoints) { _root.gNextPoints = 1; } }; cZombie.prototype.mCheckCollision = function () { var x_distance = Math.abs(this.pX - _root.iSylvester.pX); var y_distance = Math.abs(this.pY - _root.iSylvester.pY); if ((this.pAlive && (x_distance < 30)) && (y_distance < 30)) { if (2 < this.pCollisionTimer.seconds()) { this.pCollisionTimer.restartTimer(); _root.iSylvester.mZapped(); } } else if (this.pAlive && (x_distance < 50)) { if ((y_distance < 75) && (_root.iSylvester.pYVel < 0)) { trace("SylvesterY: " + _root.iSylvester.pY); _root.iSylvester.mForceYVelocity(30); this.mZapped(); } } }; cZombie.prototype.mReset = function () { this.pAlive = false; this.pSpawning = true; this.pLives = 0; this.pX = -1000; this.pY = 0; this.pXVel = 0; this.pYVel = 0; this.pLastDirection == "Left"; this.pClip.gotoAndPlay("StopLeft"); this.pClip._x = -1000; }; cZombie.prototype.mSpawn = function (x) { var x_temp = (555 - random(1300)); this.pSpawning = true; _root.gZombiesSpawned = _root.gZombiesSpawned + 1; this.pClip._alpha = 100; this.pClip._visible = 1; this.pLives = _root.gZombieLives; this.pX = x_temp; this.pXVel = 2 + random(8); if (_root.iSylvester.pX < this.pX) { this.pXVel = -this.pXVel; } if (this.pXVel >= 0) { this.pClip.gotoAndPlay("SpawnRight"); this.pLastDirection = "Right"; } else if (this.pXVel < 0) { this.pClip.gotoAndPlay("SpawnLeft"); this.pLastDirection = "Left"; } }; cZombie.prototype.mMove = function () { if (this.pAlive) { this.pClip._visible = 1; if (_root.iSylvester.pX < this.pX) { if (0 < this.pXVel) { this.pXVel = -this.pXVel; } } else if (this.pX < _root.iSylvester.pX) { if (this.pXVel < 0) { this.pXVel = -this.pXVel; } } if (((this.pX + this.pXVel) < this.pXMax) && (this.pXMin < (this.pX + this.pXVel))) { this.pX = this.pX + this.pXVel; if (0 < this.pXVel) { this.pClip.gotoAndPlay("Right"); this.pLastDirection = "Right"; } else if (this.pXVel < 0) { this.pClip.gotoAndPlay("Left"); this.pLastDirection = "Left"; } else if (this.pLastDirection == "Left") { this.pClip.gotoAndPlay("StopLeft"); } else if (this.pLastDirection == "Right") { this.pClip.gotoAndPlay("StopRight"); } } else { this.pXVel = -this.pXVel; } } else if (!this.pSpawning) { if (this.pLastDirection != "Zapped") { this.pClip.gotoAndPlay("Zapped"); this.pClip.zombie.gotoAndPlay(random(12)); this.pLastDirection = "Zapped"; } } this.pClip._x = (this.pX - _root.iSylvester.pX) + _root.iSylvester.pClip._x; this.pClip._y = this.pYMin + (_root.iSylvester.pY / 4); }; function cBat(clip, x, y, x_vel, y_vel, x_max, x_min, y_max, y_min) { this.pClip = clip; this.pX = x; this.pY = y; this.pXVel = x_vel; this.pYVel = y_vel; this.pXMax = x_max; this.pXMin = x_min; this.pYMax = y_max; this.pYMin = y_min; this.pLastDirection = "Left"; this.pAlive = false; this.pClip.pParent = this; this.pSpawning = false; this.pCollisionTimer = new _root.cTimer(); this.pLives = 1; } cBat.prototype.mDestructor = function () { }; cBat.prototype.mDump = function () { trace("Clip: " + this.pClip); trace("Alive: " + this.pAlive); trace("XVel: " + this.pXVel); }; cBat.prototype.mSetXVelocity = function (x_vel) { this.pXVel = x_vel; }; cBat.prototype.mSetYVelocity = function (y_vel) { if (this.pY == 0) { this.pYVel = y_vel; } }; cBat.prototype.mCheckCollision = function () { var x_distance = Math.abs(this.pX - _root.iSylvester.pX); var y_distance = Math.abs(this.pY - _root.iSylvester.pY); if ((this.pAlive && (x_distance < 30)) && (!_root.iSylvester.pDucking)) { if (2 < this.pCollisionTimer.seconds()) { this.pCollisionTimer.restartTimer(); _root.iSylvester.mZapped(); _root.batSound.start(); } } }; cBat.prototype.mReset = function () { this.pAlive = false; this.pSpawning = false; this.pLives = 0; this.pX = -1000; this.pY = 0; this.pXVel = 0; this.pYVel = 0; this.pLastDirection == "Left"; this.pClip.gotoAndPlay("Left"); this.pClip._x = -1000; }; cBat.prototype.mSpawn = function () { var random_direction = random(2); var x_temp; var y_temp; if (random_direction == 1) { x_temp = 555; this.pXVel = -_root.gBatSpeed; } else { x_temp = -745; this.pXVel = _root.gBatSpeed; } this.pClip._alpha = 100; this.pX = x_temp; this.pY = y_temp; this.pAlive = true; trace((((("Bat:spawn: " + this.pX) + ", ") + this.pY) + ", ") + this.pXVel); _root.batSound.start(); }; cBat.prototype.mMove = function () { if (this.pAlive) { this.pClip._visible = 1; if (((this.pX + this.pXVel) < this.pXMax) && (this.pXMin < (this.pX + this.pXVel))) { this.pX = this.pX + this.pXVel; if (0 < this.pXVel) { this.pClip.gotoAndPlay("Right"); this.pLastDirection = "Right"; } else if (this.pXVel < 0) { this.pClip.gotoAndPlay("Left"); this.pLastDirection = "Left"; } } else { this.pAlive = false; this.pClip._visible = 0; } } this.pClip._x = (this.pX - _root.iSylvester.pX) + _root.iSylvester.pClip._x; this.pClip._y = this.pYMin + (_root.iSylvester.pY / 4); }; function cGhost(clip, x_start, y_start) { this.pClip = clip; this.pXStart = x_start; this.pYStart = y_start; this.pX = 0; this.pY = -1000; this.pXVel = 0; this.pYVel = 10; this.pLife = 1; this.pAlive = false; } cGhost.prototype.mDestructor = function () { }; cGhost.prototype.mSetXVelocity = function (x_vel) { this.pXVel = x_vel; }; cGhost.prototype.mSetYVelocity = function (y_vel) { if (this.pY == 0) { this.pYVel = y_vel; } }; cGhost.prototype.mForceYVelocity = function (y_vel) { this.pYVel = y_vel; }; cGhost.prototype.mReset = function () { this.pAlive = false; this.pLife = 1; this.pX = 0; this.pY = 0; this.pXVel = 0; this.pYVel = 0; this.pClip.life.gotoAndPlay((this.pLife * 2) - 1); this.pClip._visible = 0; this.pClip._x = -1000; }; cGhost.prototype.mPlay = function (life) { this.pLife = life; this.pAlive = true; this.pY = 0; }; cGhost.prototype.mMove = function () { if (this.pAlive) { this.pClip._visible = 1; if (this.pY < 400) { this.pY = this.pY + 10; this.pClip.life.gotoAndPlay((this.pLife * 2) - 1); } else { this.pAlive = false; this.pY = -1000; } } this.pClip._x = _root.GHOST_x_start; this.pClip._y = this.pYStart - this.pY; }; function cPoints(clip, x_start, y_start) { this.pClip = clip; this.pXStart = x_start; this.pYStart = y_start; this.pX = 0; this.pY = -1000; this.pXVel = 0; this.pYVel = 10; this.pValue = 25; this.pAlive = false; } cPoints.prototype.mDestructor = function () { }; cPoints.prototype.mSetXVelocity = function (x_vel) { this.pXVel = x_vel; }; cPoints.prototype.mSetYVelocity = function (y_vel) { if (this.pY == 0) { this.pYVel = y_vel; } }; cPoints.prototype.mForceYVelocity = function (y_vel) { this.pYVel = y_vel; }; cPoints.prototype.mReset = function () { this.pAlive = false; this.pX = -1000; this.pY = 0; this.pXVel = 0; this.pYVel = 0; this.pValue = 0; this.pClip._x = -1000; }; cPoints.prototype.mPlay = function (value, x) { this.pX = x; this.pValue = value; this.pAlive = true; this.pY = 0; }; cPoints.prototype.mMove = function () { if (this.pAlive) { this.pClip._visible = 1; if (this.pY < 400) { this.pY = this.pY + 10; this.pClip.pPoints = this.pValue; } else { this.pAlive = false; this.pY = -1000; } } this.pClip._x = (this.pX - _root.iSylvester.pX) + _root.iSylvester.pClip._x; this.pClip._y = (this.pYStart - this.pY) + (_root.iSylvester.pY / 4); }; function mSyncBGs() { var MG_new = (MG_start - _root.iSylvester.pX); var MG_y_new = (MG_y_start + (_root.iSylvester.pY / 4)); var BG_new = (BG_start - (_root.iSylvester.pX / 2)); var BG_y_new = (BG_y_start + (_root.iSylvester.pY / 8)); if ((MG_new < _root.MG_max) && (_root.MG_min < MG_new)) { _root.MG_main._x = MG_new; _root.BG_main._x = BG_new; } _root.MG_main._y = MG_y_new; _root.BG_main._y = BG_y_new; } BG_start = 319; BG_y_start = 448; BG_max = 549; BG_min = 170; BG_main._x = BG_start; BG_width = BG_max - BG_min; MG_start = 188; MG_y_start = 200; MG_max = 648; MG_min = -100; MG_main._x = MG_start; MG_width = MG_max - MG_min; function mKillAll() { _root.iSylvester.pAlive = false; _root.iSylvester.pClip.removeMovieClip(); i = 1; while (i < (_root.gZombieCount + 1)) { _root.aZombies[i].pAlive = false; _root.aZombies[i].pClip.removeMovieClip(); i++; } i = 1; while (i < (_root.gGhostCount + 1)) { _root.aGhosts[i].pAlive = false; _root.aGhosts[i].pClip.removeMovieClip(); i++; } i = 1; while (i < (_root.gBatCount + 1)) { _root.aBats[i].pAlive = false; _root.aBats[i].pClip.removeMovieClip(); i++; } i = 1; while (i < (_root.gPointsCount + 1)) { _root.aPoints[i].pAlive = false; _root.aPoints[i].pClip.removeMovieClip(); i++; } } function mHideAll() { _root.iSylvester.pClip._visible = 0; i = 1; while (i < (_root.gZombieCount + 1)) { _root.aZombies[i].pClip._visible = 0; i++; } i = 1; while (i < (_root.gGhostCount + 1)) { _root.aGhosts[i].pClip._visible = 0; i++; } i = 1; while (i < (_root.gBatCount + 1)) { _root.aBats[i].pClip._visible = 0; i++; } i = 1; while (i < (_root.gPointsCount + 1)) { _root.aPoints[i].pClip._visible = 0; i++; } } function mNextLevel() { _root.iSylvester.mReset(); i = 1; while (i < (_root.gZombieCount + 1)) { _root.aZombies[i].mReset(); i++; } i = 1; while (i < (_root.gGhostCount + 1)) { _root.aGhosts[i].mReset(); i++; } i = 1; while (i < (_root.gBatCount + 1)) { _root.aBats[i].mReset(); i++; } i = 1; while (i < (_root.gPointsCount + 1)) { _root.aPoints[i].mReset(); i++; } }
Frame 2
Set("_level0:gWTE_TF", 55); _root.gVersionNum = "1.0";
Frame 3
Set("_level0:gWTE_ID", "Zombie"); Set("_level0:gTracking_URL", "http://looneytunes.warnerbros.com/tracking.html"); Set("_level0:gEpisode_ID", "EXE");
Frame 4
Set("_level0:gWTE_FL", _framesloaded); Set("_level0:gWTE_PL", int((_level0:gWTE_FL / _level0:gWTE_TF) * 100)); Set("_level0:gWTE_PLtxt", _level0:gWTE_PL add "%"); ifFrameLoaded (135) { Set("_level0:gGameLoaded", true); gotoAndPlay (9); }
Frame 6
gotoAndPlay (4);
Frame 9
SYLVESTER_x_start = sylvester._x; SYLVESTER_y_start = sylvester._y; ZOMBIE_x_start = tweety._x; ZOMBIE_y_start = tweety._y; GHOST_x_start = ghost._x; GHOST_y_start = ghost._y; POINTS_x_start = POINTS_type._x; POINTS_y_start = POINTS_type._y; BAT_x_start = bat._x; BAT_y_start = bat._y; bounceSound = new Sound(); bounceSound.attachSound("Whoosh"); zapSound = new Sound(); zapSound.attachSound("Bounce"); ahhSound = new Sound(); ahhSound.attachSound("SylvesterGasp"); screamSound = new Sound(); screamSound.attachSound("17_"); batSound = new Sound(); batSound.attachSound("BatwSonar.aif"); aZombieSounds = new Array(); gZombieSoundsCount = 5; aZombieSounds[1] = new Sound(); aZombieSounds[1].attachSound("BwainsLoud"); aZombieSounds[2] = new Sound(); aZombieSounds[2].attachSound("TweetyGrunt1"); aZombieSounds[3] = new Sound(); aZombieSounds[3].attachSound("TweetyGrunt2"); aZombieSounds[4] = new Sound(); aZombieSounds[4].attachSound("TweetySylvester1"); aZombieSounds[5] = new Sound(); aZombieSounds[5].attachSound("TweetySylvester2"); howlOwlSound = new Sound(); howlOwlSound.attachSound("HowlOwl"); _root.gHowlDelay = 60;
Frame 11
stop(); sylvester.duplicateMovieClip("sylvester_1", 50); iSylvester = new cCharacter(sylvester_1, 0, 0, 0, 0, 280, -450, SYLVESTER_y_start + 300, SYLVESTER_y_start); sylvester._visible = 0; sylvester_1._visible = 0; tweety.duplicateMovieClip("tweety_1", 10); tweety.duplicateMovieClip("tweety_2", 11); tweety.duplicateMovieClip("tweety_3", 12); tweety.duplicateMovieClip("tweety_4", 13); tweety.duplicateMovieClip("tweety_5", 14); tweety.duplicateMovieClip("tweety_6", 15); tweety.duplicateMovieClip("tweety_7", 16); tweety.duplicateMovieClip("tweety_8", 17); tweety.duplicateMovieClip("tweety_9", 18); tweety.duplicateMovieClip("tweety_10", 19); tweety.duplicateMovieClip("tweety_11", 20); tweety.duplicateMovieClip("tweety_12", 21); tweety.duplicateMovieClip("tweety_13", 22); tweety.duplicateMovieClip("tweety_14", 23); tweety.duplicateMovieClip("tweety_15", 24); tweety.duplicateMovieClip("tweety_16", 25); tweety.duplicateMovieClip("tweety_17", 26); tweety.duplicateMovieClip("tweety_18", 27); tweety.duplicateMovieClip("tweety_19", 28); tweety.duplicateMovieClip("tweety_20", 29); aZombies = new Array(); gZombieCount = 20; gNextZombie = 20; aZombies[1] = new cZombie(tweety_1, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[2] = new cZombie(tweety_2, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[3] = new cZombie(tweety_3, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[4] = new cZombie(tweety_4, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[5] = new cZombie(tweety_5, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[6] = new cZombie(tweety_6, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[7] = new cZombie(tweety_7, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[8] = new cZombie(tweety_8, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[9] = new cZombie(tweety_9, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[10] = new cZombie(tweety_10, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[11] = new cZombie(tweety_11, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[12] = new cZombie(tweety_12, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[13] = new cZombie(tweety_13, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[14] = new cZombie(tweety_14, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[15] = new cZombie(tweety_15, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[16] = new cZombie(tweety_16, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[17] = new cZombie(tweety_17, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[18] = new cZombie(tweety_18, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[19] = new cZombie(tweety_19, -1000, 0, -5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); aZombies[20] = new cZombie(tweety_20, -1000, 0, 5, 0, 555, -750, ZOMBIE_y_start + 300, ZOMBIE_y_start); tweety._visible = 0; ghost._y = -1000; ghost.duplicateMovieClip("ghost_1", 7); ghost.duplicateMovieClip("ghost_2", 8); ghost.duplicateMovieClip("ghost_3", 9); aGhosts = new Array(); gGhostCount = 3; gNextGhost = 1; aGhosts[1] = new cGhost(ghost_1, GHOST_x_start, GHOST_y_start); aGhosts[2] = new cGhost(ghost_2, GHOST_x_start, GHOST_y_start); aGhosts[3] = new cGhost(ghost_3, GHOST_x_start, GHOST_y_start); ghost._visible = 0; POINTS_type.duplicateMovieClip("points_1", 40); POINTS_type.duplicateMovieClip("points_2", 41); POINTS_type.duplicateMovieClip("points_3", 42); POINTS_type.duplicateMovieClip("points_4", 43); POINTS_type.duplicateMovieClip("points_5", 44); aPoints = new Array(); gPointsCount = 5; gNextPoints = 1; aPoints[1] = new cPoints(points_1, POINTS_x_start, POINTS_y_start); aPoints[2] = new cPoints(points_2, POINTS_x_start, POINTS_y_start); aPoints[3] = new cPoints(points_3, POINTS_x_start, POINTS_y_start); aPoints[4] = new cPoints(points_4, POINTS_x_start, POINTS_y_start); aPoints[5] = new cPoints(points_5, POINTS_x_start, POINTS_y_start); POINTS_type._visible = 0; bat.duplicateMovieClip("bat_1", 4); bat.duplicateMovieClip("bat_2", 5); bat.duplicateMovieClip("bat_3", 6); aBats = new Array(); gBatCount = 3; gNextBat = 1; aBats[1] = new cBat(bat_1, -1000, 0, 0, 0, 555, -750, BAT_y_start + 300, BAT_y_start); aBats[2] = new cBat(bat_2, -1000, 0, 0, 0, 555, -750, BAT_y_start + 300, BAT_y_start); aBats[3] = new cBat(bat_3, -1000, 0, 0, 0, 555, -750, BAT_y_start + 300, BAT_y_start); bat._visible = 0; _root.iBatSpawnTimer.restartTimer(); MASK_type.duplicateMovieClip("mask", 100); _root.iZombieSpawnTimer.restartTimer(); gScore = 0; gLevel = 1; _root.mNextLevel(); _root.mSyncBGs();
Frame 12
loadVariablesNum ((((_level0:gTracking_URL add "?episode=") add _level0:gEpisode_ID) add "&stage=5&id=") add _level0:gWTE_ID, 0);
Frame 13
if (_root.gLevel == 1) { _root.gNextBatDelayRange = 7; _root.gNextBatDelay = 45; _root.gNextZombieDelayRange = 7; _root.gNextZombieDelay = 2; _root.gMaxZombies = 10; _root.gZombieLives = 1; _root.gMaxBats = 1; _root.gBatSpeed = 10; _root.gZombieVelocityRange = 7; } else if (_root.gLevel == 2) { _root.gNextBatDelayRange = 10; _root.gNextBatDelay = 30; _root.gNextZombieDelayRange = 5; _root.gNextZombieDelay = 2; _root.gMaxZombies = 15; _root.gZombieLives = 2; _root.gMaxBats = 1; _root.gBatSpeed = 15; _root.gZombieVelocityRange = 14; } else if (_root.gLevel == 3) { _root.gNextBatDelayRange = 10; _root.gNextBatDelay = 20; _root.gNextZombieDelayRange = 3; _root.gNextZombieDelay = 2; _root.gMaxZombies = 20; _root.gZombieLives = 2; _root.gMaxBats = 2; _root.gBatSpeed = 15; _root.gZombieVelocityRange = 21; } else if (3 < _root.gLevel) { } _root.gZombiesKilled = 0; _root.gZombiesSpawned = 0; gNextZombie = 20; _root.iBatSpawnTimer.restartTimer(); _root.iZombieSpawnTimer.restartTimer(); _root.iHowlTimer.restartTimer();
Frame 16
if (!_root.iSylvester.pStunned) { if (Key.isDown(Key.RIGHT)) { _root.iSylvester.mSetXVelocity(20); } else if (Key.isDown(Key.LEFT)) { _root.iSylvester.mSetXVelocity(-20); } if (Key.isDown(Key.SPACE)) { _root.iSylvester.mSetYVelocity(40); } if (Key.isDown(Key.UP)) { _root.iSylvester.mSetYVelocity(40); } if (Key.isDown(Key.DOWN)) { _root.iSylvester.mDuck(); } if (Key.isDown(Key.SHIFT)) { _root.iSylvester.mDuck(); } } if (!_root.iSylvester.pAlive) { _root.mKillAll(); _root.gotoAndPlay("End"); } if ((_root.gZombiesKilled == _root.gMaxZombies) && (_root.iSylvester.pY == 0)) { _root.mNextLevel(); if (2 < _root.gLevel) { _root.mKillAll(); _root.gotoAndPlay("Win"); } else { _root.gotoAndPlay("LevelComplete"); } } else { if (500 < _root.iStunnedTimer.milliseconds()) { _root.iSylvester.pStunned = false; } if (_root.gHowlDelay < _root.iHowlTimer.seconds()) { _root.iHowlTimer.restartTimer(); _root.howlOwlSound.start(); _root.gHowlDelay = 30 + random(30); } if (20 < _root.iSpawnFrequencyTimer.seconds()) { _root.iSpawnFrequencyTimer.restartTimer(); _root.gNextZombieDelayRange = _root.gNextZombieDelayRange - 1; if (_root.gNextZombieDelayRange < 1) { _root.gNextZombieDelayRange = 0; } } if ((_root.gNextZombieDelay < _root.iZombieSpawnTimer.seconds()) && (_root.gZombiesSpawned < _root.gMaxZombies)) { _root.iZombieSpawnTimer.restartTimer(); _root.gNextZombieDelay = 2 + random(_root.gNextZombieDelayRange); _root.aZombies[_root.gNextZombie].mSpawn(); _root.gNextZombie = _root.gNextZombie - 1; if (_root.gNextZombie < 1) { _root.gNextZombie = 10; } } if (_root.gNextBatDelay < _root.iBatSpawnTimer.seconds()) { i = 1; while (i < (_root.gMaxBats + 1)) { if (!_root.aBats[i].pAlive) { _root.iBatSpawnTimer.restartTimer(); _root.gNextBatDelay = 2 + random(_root.gNextBatDelayRange); _root.aBats[i].mSpawn(); } i++; } } _root.iSylvester.mMove(); i = 1; while (i < (_root.gZombieCount + 1)) { _root.aZombies[i].mMove(); _root.aZombies[i].mCheckCollision(); i++; } i = 1; while (i < (_root.gGhostCount + 1)) { _root.aGhosts[i].mMove(); i++; } i = 1; while (i < (_root.gMaxBats + 1)) { _root.aBats[i].mMove(); _root.aBats[i].mCheckCollision(); i++; } i = 1; while (i < (_root.gPointsCount + 1)) { _root.aPoints[i].mMove(); i++; } _root.mKeyStroke(); _root.mSyncBGs(); _root.gLives = _root.iSylvester.pLives; }
Frame 17
gotoAndPlay(_currentframe - 1);
Frame 18
_root.iLevelPauseTimer.restartTimer();
Frame 19
if (3 < _root.iLevelPauseTimer.seconds()) { _root.gLevel = _root.gLevel + 1; _root.gotoAndPlay("NextLevel"); }
Frame 20
_root.gotoAndPlay(_currentframe - 1);
Frame 105
_root.gotoAndPlay("Promo");
Frame 222
stop();
Symbol 18 MovieClip Frame 5
stop();
Symbol 22 MovieClip Frame 5
stop();
Symbol 26 Button
on (press) { pParent.mDump(); }
Symbol 76 MovieClip Frame 1
Symbol 76 MovieClip Frame 25
_parent.pParent.mSylvesterCall();
Symbol 76 MovieClip Frame 67
_parent.pParent.pAlive = true; _parent.pParent.pSpawning = false;
Symbol 77 MovieClip Frame 5
stop();
Symbol 77 MovieClip Frame 10
stop();
Symbol 77 MovieClip Frame 15
stop();
Symbol 77 MovieClip Frame 20
stop();
Symbol 77 MovieClip Frame 21
Symbol 77 MovieClip Frame 25
stop();
Symbol 77 MovieClip Frame 26
Symbol 77 MovieClip Frame 30
stop();
Symbol 77 MovieClip Frame 31
Symbol 77 MovieClip Frame 35
stop();
Symbol 118 MovieClip Frame 3
stop();
Symbol 119 MovieClip Frame 3
stop();
Symbol 120 MovieClip Frame 5
stop();
Symbol 120 MovieClip Frame 10
stop();
Symbol 120 MovieClip Frame 15
stop();
Symbol 120 MovieClip Frame 20
stop();
Symbol 120 MovieClip Frame 25
stop();
Symbol 120 MovieClip Frame 30
stop();
Symbol 120 MovieClip Frame 35
stop();
Symbol 120 MovieClip Frame 40
stop();
Symbol 120 MovieClip Frame 45
stop();
Symbol 120 MovieClip Frame 50
stop();
Symbol 137 MovieClip Frame 2
stop();
Symbol 137 MovieClip Frame 4
stop();
Symbol 137 MovieClip Frame 6
stop();
Symbol 137 MovieClip Frame 8
stop();
Symbol 137 MovieClip Frame 10
stop();
Symbol 137 MovieClip Frame 12
stop();
Symbol 137 MovieClip Frame 14
stop();
Symbol 137 MovieClip Frame 16
stop();
Symbol 137 MovieClip Frame 18
stop();
Symbol 144 MovieClip Frame 4
stop();
Symbol 144 MovieClip Frame 9
stop();
Symbol 145 Button
on (release) { _root.iSylvester.pAlive = true; _root.iSylvester.pLives = 9; _root.iSylvester.pY = 0; _root.iZombie.pAlive = true; _root.gScore = 0; }
Symbol 146 Button
on (release) { gotoAndPlay (10); }
Symbol 147 Button
on (release) { gotoAndPlay (1); }
Symbol 156 MovieClip Frame 2
stop();
Symbol 157 MovieClip Frame 1
_visible = 0;
Symbol 157 MovieClip Frame 5
stop();
Symbol 157 MovieClip Frame 10
_visible = 1;
Symbol 157 MovieClip Frame 360
gotoAndPlay (1);
Symbol 161 Button
on (release) { play(); }
Symbol 165 MovieClip Frame 2
_root._quality = "HIGH";
Symbol 165 MovieClip Frame 4
stop();
Symbol 165 MovieClip Frame 6
_root._quality = "MEDIUM";
Symbol 165 MovieClip Frame 9
stop();
Symbol 165 MovieClip Frame 11
_root._quality = "LOW";
Symbol 165 MovieClip Frame 14
stop();
Symbol 165 MovieClip Frame 16
_root._quality = "BEST";
Symbol 165 MovieClip Frame 19
stop();
Symbol 183 Button
on (release) { _root.play(); }
Symbol 189 Button
on (release) { getURL ("http://looneytunes.warnerbros.com/privacy.html"); }
Symbol 190 MovieClip Frame 64
stop();
Symbol 196 Button
on (release) { getURL ("http://www.looneytunes.com"); }
Symbol 240 MovieClip Frame 86
stop();
Symbol 259 Button
on (release) { _root.gotoAndPlay("Replay"); }
Symbol 263 Button
on (release) { getURL ("http://www.looneytunes.com"); }
Symbol 269 Button
on (release) { getURL ("http://www.looneytunes.com"); }

Library Items

Symbol 1 Sound [Whoosh]
Symbol 2 Sound [TweetySylvester2]
Symbol 3 Sound [TweetySylvester1]
Symbol 4 Sound [TweetyGrunt2]
Symbol 5 Sound [TweetyGrunt1]
Symbol 6 Sound [BwainsLoud]
Symbol 7 Sound [Bounce]
Symbol 8 Sound [BatwSonar.aif]
Symbol 9 Sound [17_]
Symbol 10 Sound [SylvesterGasp]Used by:240
Symbol 11 Sound [HowlOwl]Used by:Timeline
Symbol 12 GraphicUsed by:157 190 240  Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:Timeline
Symbol 15 GraphicUsed by:Timeline
Symbol 16 BitmapUsed by:17
Symbol 17 GraphicUses:16Used by:18
Symbol 18 MovieClipUses:17Used by:190  Timeline
Symbol 19 GraphicUsed by:22
Symbol 20 FontUsed by:21 166 167 170 185 186 187 199 201 265 266 268
Symbol 21 EditableTextUses:20Used by:22
Symbol 22 MovieClipUses:19 21Used by:190  Timeline
Symbol 23 GraphicUsed by:24 38 76
Symbol 24 MovieClipUses:23Used by:77
Symbol 25 GraphicUsed by:26 145 146 147 161
Symbol 26 ButtonUses:25Used by:77
Symbol 27 GraphicUsed by:38 75
Symbol 28 GraphicUsed by:38 76
Symbol 29 GraphicUsed by:38 76
Symbol 30 GraphicUsed by:38 76
Symbol 31 GraphicUsed by:38 76
Symbol 32 GraphicUsed by:38 76
Symbol 33 GraphicUsed by:38 76
Symbol 34 GraphicUsed by:38 76
Symbol 35 GraphicUsed by:38 76
Symbol 36 GraphicUsed by:38 76
Symbol 37 GraphicUsed by:38 76
Symbol 38 MovieClipUses:27 28 29 30 31 32 33 34 35 36 23 37Used by:77
Symbol 39 GraphicUsed by:76
Symbol 40 SoundUsed by:76  Timeline
Symbol 41 GraphicUsed by:76
Symbol 42 GraphicUsed by:76
Symbol 43 GraphicUsed by:76
Symbol 44 GraphicUsed by:76
Symbol 45 GraphicUsed by:76  Timeline
Symbol 46 GraphicUsed by:76
Symbol 47 GraphicUsed by:76  Timeline
Symbol 48 GraphicUsed by:76  Timeline
Symbol 49 GraphicUsed by:76 190  Timeline
Symbol 50 GraphicUsed by:76
Symbol 51 GraphicUsed by:76
Symbol 52 GraphicUsed by:76
Symbol 53 GraphicUsed by:76
Symbol 54 GraphicUsed by:76
Symbol 55 GraphicUsed by:76
Symbol 56 GraphicUsed by:76
Symbol 57 GraphicUsed by:76
Symbol 58 GraphicUsed by:76
Symbol 59 GraphicUsed by:76
Symbol 60 GraphicUsed by:76
Symbol 61 GraphicUsed by:76  Timeline
Symbol 62 GraphicUsed by:76  Timeline
Symbol 63 GraphicUsed by:76  Timeline
Symbol 64 GraphicUsed by:76  Timeline
Symbol 65 GraphicUsed by:76  Timeline
Symbol 66 GraphicUsed by:76  Timeline
Symbol 67 GraphicUsed by:76  Timeline
Symbol 68 GraphicUsed by:76
Symbol 69 GraphicUsed by:76  Timeline
Symbol 70 GraphicUsed by:76
Symbol 71 GraphicUsed by:76  Timeline
Symbol 72 GraphicUsed by:76
Symbol 73 GraphicUsed by:76  Timeline
Symbol 74 GraphicUsed by:76
Symbol 75 MovieClipUses:27Used by:76
Symbol 76 MovieClipUses: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 66 67 68 69 70 71 72 73 74 75 28 29 30 31 32 33 34 35 36 23 37Used by:77
Symbol 77 MovieClipUses:24 26 38 76Used by:Timeline
Symbol 78 GraphicUsed by:86
Symbol 79 GraphicUsed by:86
Symbol 80 GraphicUsed by:86
Symbol 81 GraphicUsed by:86
Symbol 82 GraphicUsed by:86
Symbol 83 GraphicUsed by:86
Symbol 84 GraphicUsed by:86
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:78 79 80 81 82 83 84 85Used by:120
Symbol 87 GraphicUsed by:98
Symbol 88 GraphicUsed by:98
Symbol 89 GraphicUsed by:98
Symbol 90 GraphicUsed by:98
Symbol 91 GraphicUsed by:98
Symbol 92 GraphicUsed by:98
Symbol 93 GraphicUsed by:98
Symbol 94 GraphicUsed by:98
Symbol 95 GraphicUsed by:98
Symbol 96 GraphicUsed by:98
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:87 88 89 90 91 92 93 94 95 96 97Used by:120
Symbol 99 GraphicUsed by:107
Symbol 100 GraphicUsed by:107
Symbol 101 GraphicUsed by:107
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 MovieClipUses:99 100 101 102 103 104 105 106Used by:120
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:110 111
Symbol 110 MovieClipUses:109Used by:120
Symbol 111 MovieClipUses:109Used by:120
Symbol 112 GraphicUsed by:118 119
Symbol 113 GraphicUsed by:118 119
Symbol 114 GraphicUsed by:117
Symbol 115 GraphicUsed by:117
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:114 115 116Used by:118 119
Symbol 118 MovieClipUses:112 113 117Used by:120
Symbol 119 MovieClipUses:112 113 117Used by:120
Symbol 120 MovieClipUses:86 98 107 110 111 118 119Used by:Timeline
Symbol 121 GraphicUsed by:127
Symbol 122 GraphicUsed by:127
Symbol 123 GraphicUsed by:127
Symbol 124 GraphicUsed by:127
Symbol 125 GraphicUsed by:127
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:121 122 123 124 125 126Used by:138
Symbol 128 GraphicUsed by:137
Symbol 129 GraphicUsed by:137
Symbol 130 GraphicUsed by:137
Symbol 131 GraphicUsed by:137
Symbol 132 GraphicUsed by:137
Symbol 133 GraphicUsed by:137
Symbol 134 GraphicUsed by:137
Symbol 135 GraphicUsed by:137
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:128 129 130 131 132 133 134 135 136Used by:138
Symbol 138 MovieClipUses:127 137Used by:Timeline
Symbol 139 GraphicUsed by:143
Symbol 140 GraphicUsed by:143
Symbol 141 GraphicUsed by:143
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:139 140 141 142Used by:144
Symbol 144 MovieClipUses:143Used by:Timeline
Symbol 145 ButtonUses:25Used by:Timeline
Symbol 146 ButtonUses:25Used by:157
Symbol 147 ButtonUses:25Used by:157
Symbol 148 GraphicUsed by:157  Timeline
Symbol 149 GraphicUsed by:157  Timeline
Symbol 150 GraphicUsed by:157  Timeline
Symbol 151 GraphicUsed by:157  Timeline
Symbol 152 GraphicUsed by:157  Timeline
Symbol 153 GraphicUsed by:157  Timeline
Symbol 154 FontUsed by:155 191
Symbol 155 EditableTextUses:154Used by:156
Symbol 156 MovieClipUses:155Used by:157
Symbol 157 MovieClipUses:12 146 147 148 149 150 151 152 153 156Used by:Timeline
Symbol 158 FontUsed by:159
Symbol 159 EditableTextUses:158Used by:Timeline
Symbol 160 GraphicUsed by:165
Symbol 161 ButtonUses:25Used by:165
Symbol 162 GraphicUsed by:165
Symbol 163 GraphicUsed by:165
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:160 161 162 163 164Used by:Timeline
Symbol 166 EditableTextUses:20Used by:Timeline
Symbol 167 EditableTextUses:20Used by:Timeline
Symbol 168 GraphicUsed by:Timeline
Symbol 169 GraphicUsed by:Timeline
Symbol 170 EditableTextUses:20Used by:171
Symbol 171 MovieClipUses:170Used by:Timeline
Symbol 172 GraphicUsed by:190  Timeline
Symbol 173 GraphicUsed by:190  Timeline
Symbol 174 GraphicUsed by:190
Symbol 175 GraphicUsed by:190
Symbol 176 GraphicUsed by:190
Symbol 177 GraphicUsed by:190
Symbol 178 GraphicUsed by:190
Symbol 179 GraphicUsed by:183
Symbol 180 GraphicUsed by:183
Symbol 181 GraphicUsed by:183
Symbol 182 GraphicUsed by:183 263 269
Symbol 183 ButtonUses:179 180 181 182Used by:190
Symbol 184 SoundUsed by:190
Symbol 185 TextUses:20Used by:189
Symbol 186 TextUses:20Used by:189
Symbol 187 TextUses:20Used by:189
Symbol 188 GraphicUsed by:189
Symbol 189 ButtonUses:185 186 187 188Used by:190
Symbol 190 MovieClipUses:172 49 173 174 12 18 22 175 176 177 178 183 184 189Used by:Timeline
Symbol 191 TextUses:154Used by:Timeline
Symbol 192 GraphicUsed by:194
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:192 193Used by:196
Symbol 195 GraphicUsed by:196
Symbol 196 ButtonUses:194 195Used by:Timeline
Symbol 197 SoundUsed by:Timeline
Symbol 198 GraphicUsed by:Timeline
Symbol 199 EditableTextUses:20Used by:Timeline
Symbol 200 GraphicUsed by:Timeline
Symbol 201 EditableTextUses:20Used by:Timeline
Symbol 202 GraphicUsed by:240
Symbol 203 GraphicUsed by:204 240
Symbol 204 MovieClipUses:203Used by:240
Symbol 205 GraphicUsed by:235 240
Symbol 206 GraphicUsed by:240
Symbol 207 GraphicUsed by:240
Symbol 208 GraphicUsed by:240
Symbol 209 GraphicUsed by:240
Symbol 210 GraphicUsed by:240
Symbol 211 GraphicUsed by:240
Symbol 212 GraphicUsed by:240
Symbol 213 GraphicUsed by:240
Symbol 214 SoundUsed by:235 240
Symbol 215 GraphicUsed by:240
Symbol 216 GraphicUsed by:240
Symbol 217 GraphicUsed by:240
Symbol 218 GraphicUsed by:240
Symbol 219 GraphicUsed by:240
Symbol 220 GraphicUsed by:240
Symbol 221 GraphicUsed by:240
Symbol 222 GraphicUsed by:240
Symbol 223 GraphicUsed by:240
Symbol 224 GraphicUsed by:240
Symbol 225 GraphicUsed by:235 240
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:226Used by:235 240
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:228Used by:235 240
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClipUses:230Used by:235 240
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:235 240
Symbol 234 GraphicUsed by:235 240
Symbol 235 MovieClipUses:225 227 229 231 233 205 234 214Used by:240
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:240
Symbol 238 GraphicUsed by:240
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:202 204 205 206 207 208 209 10 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 203 225 227 229 231 233 234 235 237 238 239 12Used by:Timeline
Symbol 241 GraphicUsed by:Timeline
Symbol 242 GraphicUsed by:Timeline
Symbol 243 GraphicUsed by:Timeline
Symbol 244 GraphicUsed by:Timeline
Symbol 245 GraphicUsed by:Timeline
Symbol 246 GraphicUsed by:Timeline
Symbol 247 GraphicUsed by:Timeline
Symbol 248 GraphicUsed by:Timeline
Symbol 249 GraphicUsed by:Timeline
Symbol 250 GraphicUsed by:Timeline
Symbol 251 GraphicUsed by:Timeline
Symbol 252 GraphicUsed by:Timeline
Symbol 253 GraphicUsed by:Timeline
Symbol 254 GraphicUsed by:Timeline
Symbol 255 GraphicUsed by:259
Symbol 256 GraphicUsed by:259
Symbol 257 GraphicUsed by:259
Symbol 258 GraphicUsed by:259
Symbol 259 ButtonUses:255 256 257 258Used by:Timeline
Symbol 260 GraphicUsed by:263
Symbol 261 GraphicUsed by:263
Symbol 262 GraphicUsed by:263
Symbol 263 ButtonUses:260 261 262 182Used by:Timeline
Symbol 264 GraphicUsed by:Timeline
Symbol 265 EditableTextUses:20Used by:Timeline
Symbol 266 EditableTextUses:20Used by:Timeline
Symbol 267 GraphicUsed by:Timeline
Symbol 268 TextUses:20Used by:269
Symbol 269 ButtonUses:268 182Used by:Timeline
Symbol 270 GraphicUsed by:Timeline
Symbol 271 GraphicUsed by:Timeline
Symbol 272 GraphicUsed by:Timeline
Symbol 273 GraphicUsed by:Timeline
Symbol 274 GraphicUsed by:Timeline
Symbol 275 GraphicUsed by:Timeline
Symbol 276 GraphicUsed by:Timeline

Instance Names

"MASK_type"Frame 1Symbol 14 MovieClip
"BG_main"Frame 9Symbol 18 MovieClip
"MG_main"Frame 9Symbol 22 MovieClip
"tweety"Frame 9Symbol 77 MovieClip
"sylvester"Frame 9Symbol 120 MovieClip
"ghost"Frame 9Symbol 138 MovieClip
"bat"Frame 9Symbol 144 MovieClip
"CR"Frame 9Symbol 157 MovieClip
"POINTS_type"Frame 9Symbol 171 MovieClip
"zombie"Symbol 77 MovieClip Frame 1Symbol 24 MovieClip
"zombie"Symbol 77 MovieClip Frame 11Symbol 38 MovieClip
"zombie"Symbol 77 MovieClip Frame 26Symbol 76 MovieClip
"sylvester"Symbol 120 MovieClip Frame 1Symbol 86 MovieClip
"sylvester"Symbol 120 MovieClip Frame 11Symbol 98 MovieClip
"sylvester"Symbol 138 MovieClip Frame 1Symbol 127 MovieClip
"life"Symbol 138 MovieClip Frame 1Symbol 137 MovieClip
"BG_main"Symbol 190 MovieClip Frame 57Symbol 18 MovieClip
"MG_main"Symbol 190 MovieClip Frame 57Symbol 22 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "Whoosh"
ExportAssets (56)Timeline Frame 1Symbol 2 as "TweetySylvester2"
ExportAssets (56)Timeline Frame 1Symbol 3 as "TweetySylvester1"
ExportAssets (56)Timeline Frame 1Symbol 4 as "TweetyGrunt2"
ExportAssets (56)Timeline Frame 1Symbol 5 as "TweetyGrunt1"
ExportAssets (56)Timeline Frame 1Symbol 6 as "BwainsLoud"
ExportAssets (56)Timeline Frame 1Symbol 7 as "Bounce"
ExportAssets (56)Timeline Frame 1Symbol 8 as "BatwSonar.aif"
ExportAssets (56)Timeline Frame 1Symbol 9 as "17_"
ExportAssets (56)Timeline Frame 1Symbol 10 as "SylvesterGasp"
ExportAssets (56)Timeline Frame 1Symbol 11 as "HowlOwl"
ExportAssets (56)Timeline Frame 11Symbol 11 as "HowlOwl"
ExportAssets (56)Timeline Frame 21Symbol 10 as "SylvesterGasp"

Labels

"loading"Frame 4
"loaded"Frame 9
"Replay"Frame 11
"NextLevel"Frame 13
"LevelComplete"Frame 18
"Win"Frame 21
"End"Frame 107
"GameLoaded"Frame 135
"Promo"Frame 188
"Init"Symbol 18 MovieClip Frame 1
"Init"Symbol 22 MovieClip Frame 1
"StopLeft"Symbol 77 MovieClip Frame 1
"StopRight"Symbol 77 MovieClip Frame 6
"Left"Symbol 77 MovieClip Frame 11
"Right"Symbol 77 MovieClip Frame 16
"Zapped"Symbol 77 MovieClip Frame 21
"SpawnLeft"Symbol 77 MovieClip Frame 26
"SpawnRight"Symbol 77 MovieClip Frame 31
"StopLeft"Symbol 120 MovieClip Frame 1
"StopRight"Symbol 120 MovieClip Frame 6
"Left"Symbol 120 MovieClip Frame 11
"Right"Symbol 120 MovieClip Frame 16
"JumpLeft"Symbol 120 MovieClip Frame 21
"JumpRight"Symbol 120 MovieClip Frame 26
"StunnedLeft"Symbol 120 MovieClip Frame 31
"StunnedRight"Symbol 120 MovieClip Frame 36
"DuckLeft"Symbol 120 MovieClip Frame 41
"DuckRight"Symbol 120 MovieClip Frame 46
"Zapped"Symbol 138 MovieClip Frame 1
"Left"Symbol 144 MovieClip Frame 1
"Right"Symbol 144 MovieClip Frame 5
"Hide"Symbol 157 MovieClip Frame 1
"Show"Symbol 157 MovieClip Frame 10
"HI"Symbol 165 MovieClip Frame 1
"MED"Symbol 165 MovieClip Frame 5
"LOW"Symbol 165 MovieClip Frame 10
"BEST"Symbol 165 MovieClip Frame 15

Dynamic Text Variables

_root.gVersionNumSymbol 21 EditableText"0"
_root.gCRtSymbol 155 EditableText"<P ALIGN="CENTER"></P>"
_root.gCRtempSymbol 159 EditableText"<P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Animation Direction/Supervision</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Steve Belfer</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Game Design/Programming</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Andrew Rapo</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Senior Producer</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Sam Ades</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Producer</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Andrew Feinstein</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Titles</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Jennifer Branch</FONT></P><P ALIGN="CENTER"></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC"><B>Animation/Art</B></FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Verrell Bowers</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Jennifer Branch</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Martin Cendreda</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Jennifer Cogan</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Kevin Dooley</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">David Fain</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Kristen McCormick</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Carlos Palazio</FONT></P><P ALIGN="CENTER"><FONT FACE="_sans" SIZE="17" COLOR="#CCCCCC">Jennifer Sachs</FONT></P><P ALIGN="CENTER"></P>"
_root.gScoreSymbol 166 EditableText"99999"
_root.gLivesSymbol 167 EditableText"9"
pPointsSymbol 170 EditableText"000"
_root.gLevelSymbol 199 EditableText"9"
_root.gLevelSymbol 201 EditableText"9"
_root.gScoreSymbol 265 EditableText"99999"
_root.gScoreSymbol 266 EditableText"99999"




http://swfchan.com/51/254846/info.shtml
Created: 21/10 -2023 10:53:30 Last modified: 21/10 -2023 10:54:03 Server time: 31/10 -2024 23:27:38