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

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

Extreme Particle Suite.swf

This is the info page for
Flash #25923

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


Text
?

© 2007 Lucas Paakh

X4

X4

X4

0

X2

X2

X2

UBER
BRIX

UBER
BRIX

UBER
BRIX

LIFE

LIFE

LIFE

+0:10

+0:10

+0:10

Green

Blue

Red

Attack Shape

Attack Path

Delete

Strength

Speed

Move

<p align="center"><font face="Agency FB" size="35" color="#000000" letterSpacing="0.000000" kerning="0">Shift</font></p>

<p align="center"><font face="Agency FB" size="35" color="#000000" letterSpacing="0.000000" kerning="0">Ctrl</font></p>

Rotate

<p align="center"><font face="Agency FB" size="35" color="#000000" letterSpacing="0.000000" kerning="0">X</font></p>

<p align="center"><font face="Agency FB" size="35" color="#000000" letterSpacing="0.000000" kerning="0">Z</font></p>

Speed

SPACE SURFER

Main Menu

Main Menu

Main Menu

Start Game

Start Game

Start Game

Orbs run in two
streams outside of the
tunnel.  Avoid the red
stream while collecting
the green stream.

Avoid

Gather

Powerup

Score

Orbs Left to Collect

Bonus Timer

0

Score:

0

Orbs:

Bonus:

0

0

Final Score

Menu

Menu

Menu

0

0

Play For High Scores on MoFunZone.com

Play For High Scores on MoFunZone.com

Play For High Scores on MoFunZone.com

More Games

More Games

More Games

More Games

Start

New Fairy

Main Menu

ATTACKS
The beads are color coded to represent attacks.  To create an attack, drag same-colored beads from their trays onto the pie graph above them.  For example, if you want to create an attack where a circle shoots out in a zigzag pattern, drag the red bead under Attack Path onto the zigzag symbol, and the red bead under Attack Shape onto the circle.   The symbol on the bead will change to represent what shape is currently set.


SPEED vs. STRENGTH
A fairy's speed represents how often it will attack; its strength represents how many particles it will attack with.  The most powerful setting lies somewhere in the middle, rather than at the extremes.

Time Trial Mode

Time Trial Mode

Time Trial Mode

Survival Mode

Survival Mode

Survival Mode

BRICK SLAYER

Double

Main Menu

Main Menu

Main Menu

SCORE

GAUGE

0

0

00

GAME OVER

0

Final Score

Play For High Scores on MoFunZone.com

Play For High Scores on MoFunZone.com

Play For High Scores on MoFunZone.com

Play For High Scores on MoFunZone.com

Menu

Menu

Menu

More Games

More Games

More Games

ActionScript [AS1/AS2]

Frame 6
var MenuSoundTimer = 0; var TempX = 0; var TempY = 0; var TempR = 0; var PTC; var TCol = new Object(); var TColObj; Shot = new Sound(); Shot.attachSound("ShotSound"); Pop = new Sound(); Pop.attachSound("PopSound"); Impact = new Sound(); Impact.attachSound("ImpactSound"); Hit = new Sound(); Hit.attachSound("HitSound"); Firework1 = new Sound(); Firework1.attachSound("Firework1"); Firework2 = new Sound(); Firework2.attachSound("Firework2"); Firework3 = new Sound(); Firework3.attachSound("Firework3"); Firework4 = new Sound(); Firework4.attachSound("Firework4"); var FireworkArray = new Array(Firework1, Firework2, Firework3, Firework4); Stud = new Sound(); Stud.attachSound("Stud"); Octopus = new Sound(); Octopus.attachSound("Octopus"); Legion = new Sound(); Legion.attachSound("Legion");
Frame 8
if (MenuSoundTimer == 4) { TempR = 10 + Math.ceil(Math.random() * 10); TempX = Math.random() * Stage.width; TempY = Math.random() * Stage.height; a = 0; while (a < TempR) { PTC = MMParticles.attachMovie("Particle", MMParticles.getNextHighestDepth(), MMParticles.getNextHighestDepth()); PTC.Shape.gotoAndStop("Teardrop"); PTC._x = TempX; PTC._y = TempY; PTC._rotation = (a * 360) / TempR; TCol.ra = Math.ceil(Math.random() * 100); TCol.ga = Math.ceil(Math.random() * 100); TCol.ba = Math.ceil(Math.random() * 100); TCol.aa = 100; TColObj = new Color(PTC); TColObj.setTransform(TCol); a++; } MenuSoundTimer = 0; } else { MenuSoundTimer++; }
Frame 9
gotoAndPlay ("MMMain");
Frame 10
var Ready = false; Octopus.start(); Octopus.onSoundComplete = function () { Octopus.start(); };
Frame 12
gotoAndPlay ("SSMenuMain");
Frame 80
var Score = 0; var FinalScore = 0; var Orbs = 400; var GreenOrbPoints = 30; var RedOrbPoints = -30; var NoRed = true; var PowerupTimer = 0; var TextTimer = 0; var GameTimer2 = 0; var GameTimer = 3000; var GreenPulse = false; var TimeBonus = 5000; var SpeedBonus = 2000; var SpeedTimer = 0; var SoundTime = 0; Ready = true;
Frame 81
ScoreText.text = Score; OrbsText.text = Orbs; if (Orbs <= 0) { if (GameTimer <= 0) { TimeBonus = 0; } SpeedBonus = Math.ceil(SpeedBonus / (((GameTimer2 - SpeedTimer) / 90) + 1)); FinalScore = (Score + TimeBonus) + SpeedBonus; Orbs = 0; OrbsText.text = Orbs; gotoAndPlay ("SSGameOverStart"); } if (CamShaker.Cam.Speed > 1.15) { SpeedTimer++; } if (PowerupTimer > 0) { PowerupTimer--; } else { NoRed = false; GreenPulse = false; } if (TextTimer > 0) { TextTimer--; PowerupText._visible = true; } else { PowerupText._visible = false; } GameTimer2++; if (GameTimer > 0) { GameTimer--; TimeText.text = Math.ceil(GameTimer / 30); } if (SoundTime > 0) { SoundTime--; }
Frame 82
gotoAndPlay ("SSGameMain");
Frame 84
Ready = false; TimeBonusText.text = "Time Bonus: +" + TimeBonus; SpeedBonusText.text = "Speed Bonus: +" + SpeedBonus; ScoreText.text = "Total: " + FinalScore;
Frame 85
gotoAndPlay ("SSGameOver");
Frame 86
function NewFairy() { if (FairyNumber < 5) { FairyNumber = FairyNumber + 1; Fairy[FairyNumber] = Fairies.attachMovie("Fairy", "Fairy" + FairyNumber, Fairies.getNextHighestDepth()); Fairy[FairyNumber]._x = -100; Fairy[FairyNumber]._y = -100; Gadget[FairyNumber] = Gadgets.attachMovie("Gadget", "Gadget" + FairyNumber, Gadgets.getNextHighestDepth()); Gadget[FairyNumber]._x = (Gadget[FairyNumber]._width / 2) + (20 * FairyNumber); Gadget[FairyNumber]._y = (Gadget[FairyNumber]._height / 2) + (20 * FairyNumber); PTC = Gadget[FairyNumber].attachMovie("Fairy", "DummyFairy", Gadget[FairyNumber].getNextHighestDepth()); PTC._x = Gadget[FairyNumber].FairyWindow._x; PTC._y = Gadget[FairyNumber].FairyWindow._y; PTC.gotoAndStop("Pause"); AttackHolder[FairyNumber] = Attacks.createEmptyMovieClip("AttackHolder" + FairyNumber, Attacks.getNextHighestDepth()); } } function BeginFight() { if (FairyNumber >= 2) { Directions._visible = false; a = 1; while (a <= FairyNumber) { Gadget[a]._visible = false; MenuBox._visible = false; BrandingButton._visible = false; Fairy[a]._x = Math.random() * Stage.width; Fairy[a]._y = Math.random() * Stage.height; Fairy[a].LifeBar = Fairies.attachMovie("LifeBar", "LifeBar" + a, Fairies.getNextHighestDepth()); Fairy[a].LifeBar._x = 20; Fairy[a].LifeBar._y = 20 * a; ColTemp = new Color(Fairy[a].LifeBar); ColTemp.setTransform(Fairy[a].Col); Ready = true; _root._quality = "LOW"; a++; } } } function Victory(Winner) { Victor = Winner; Ready = false; _root._quality = "HIGH"; a = 1; while (a <= FairyNumber) { Fairy[a].gotoAndPlay("Main"); Fairy[a].LifeBar.swapDepths(0); Fairy[a].LifeBar.removeMovieClip(); a++; } Fairy[Winner].Graphic.Eyes._x = 0; Fairy[Winner].Graphic.Eyes._y = 0; Fairy[Winner].Graphic.Wings._x = 0; Fairy[Winner].Graphic.Wings._y = 0; gotoAndPlay ("PGVictory"); } function DeleteFairy(ID) { FairyNumber = FairyNumber - 1; Fairy[ID].swapDepths(0); Fairy[ID].removeMovieClip(); Fairy[ID] = undefined; Gadget[ID].swapDepths(0); Gadget[ID].removeMovieClip(); Gadget[ID] = undefined; AttackHolder[ID].swapDepths(0); AttackHolder[ID].removeMovieClip(); AttackHolder[ID] = undefined; Fairy.sort(); Gadget.sort(); AttackHolder.sort(); } var PTC; var a; var FairyNumber = 0; var Fairy = new Array(0, undefined); var Gadget = new Array(0, undefined); var AttackHolder = new Array(0, undefined); var Ready = false; var ColTmp = new Color(); var VTimer = 0; var Victor; NewFairy(); Gadget[1].BlueBar.Slider._x = 0; NewFairy(); Gadget[2].RedBar.Slider._x = 0; Gadget[2]._y = Gadget[2]._y + 150; Legion.start(); Legion.onSoundComplete = function () { Legion.start(); };
Frame 87
if (!Ready) { a = 1; while (a <= FairyNumber) { Fairy[a].Enemy = Fairy[a - 1]; Fairy[a].Col.ra = (Gadget[a].RedBar.Slider._x * 100) / Gadget[a].RedBar.Bar._width; Fairy[a].Col.ga = (Gadget[a].GreenBar.Slider._x * 100) / Gadget[a].GreenBar.Bar._width; Fairy[a].Col.ba = (Gadget[a].BlueBar.Slider._x * 100) / Gadget[a].BlueBar.Bar._width; Fairy[a].Col.aa = 100; Fairy[a].ColImt.setTransform(Fairy[a].Col); Fairy[a].Col.ra = (Gadget[a].RedBar.Slider._x * 100) / Gadget[a].RedBar.Bar._width; Fairy[a].ID = a; Fairy[a].PTCStrength = 15 + ((Gadget[a].StrSpdBar.Slider._x * 85) / Gadget[a].StrSpdBar.Bar._width); Fairy[a].PTCSpeed = 15 + (85 - ((Gadget[a].StrSpdBar.Slider._x * 85) / Gadget[a].StrSpdBar.Bar._width)); Gadget[a].ID = a; ColTemp = new Color(AttackHolder[a]); ColTemp.setTransform(Fairy[a].Col); b = 1; while (b <= 5) { Fairy[a].AttackPathArray[b] = Gadget[a].AttackPathArray[b]; Fairy[a].AttackShapeArray[b] = Gadget[a].AttackShapeArray[b]; b++; } Gadget[a].DummyFairy.Col.ra = (Gadget[a].RedBar.Slider._x * 100) / Gadget[a].RedBar.Bar._width; Gadget[a].DummyFairy.Col.ga = (Gadget[a].GreenBar.Slider._x * 100) / Gadget[a].GreenBar.Bar._width; Gadget[a].DummyFairy.Col.ba = (Gadget[a].BlueBar.Slider._x * 100) / Gadget[a].BlueBar.Bar._width; Gadget[a].DummyFairy.Col.aa = 100; Gadget[a].DummyFairy.ColImt.setTransform(Gadget[a].DummyFairy.Col); a++; } Fairy[1].Enemy = Fairy[FairyNumber]; }
Frame 88
gotoAndPlay ("PGMain");
Frame 92
VTimer++; Fairy[Victor]._x = Fairy[Victor]._x - ((Fairy[Victor]._x - (Stage.width / 2)) / 30); Fairy[Victor]._y = Fairy[Victor]._y - ((Fairy[Victor]._y - (Stage.height / 2)) / 30); Fairy[Victor]._xscale = Fairy[Victor]._xscale - ((Fairy[Victor]._xscale - 2000) / 30); Fairy[Victor]._yscale = Fairy[Victor]._yscale - ((Fairy[Victor]._yscale - 2000) / 30); if (VTimer == 90) { a = 1; while (a <= FairyNumber) { Gadget[a]._visible = true; MenuBox._visible = true; BrandingButton._visible = true; Fairy[a]._x = -100; Fairy[a]._y = -100; Fairy[a]._xscale = 100; Fairy[a]._yscale = 100; Fairy[a].Dead = false; VTimer = 0; Directions._visible = true; gotoAndPlay ("PGMain"); a++; } }
Frame 93
gotoAndPlay ("PGVictory");
Frame 94
Stud.start(); Stud.onSoundComplete = function () { Stud.start(); };
Frame 95
Started = false;
Frame 96
gotoAndPlay ("BSMenu");
Frame 97
_quality = "MEDIUM";
Frame 168
var Score = 0; var ProjMult = 1; var PowMult = 1; var HitWorth = 5; var PowTime = 0; var BrickRand = 0.2; var UberTime = 0; var ShotSoundTime = 0; Started = true; var Min = 1; var Sec = 0; var Mili = 0; if (Mode == "Time") { LifeBar._visible = false; } if (Mode == "Survival") { MinText._visible = false; SecText._visible = false; }
Frame 169
if (PowTime > 0) { PowTime--; } else { PowMult = 1; } if (UberTime > 0) { UberTime--; } else { BrickRand = 0.2; } if (Score < 0) { Score = 0; } ScoreText.text = Score; if (ShotSoundTime > 0) { ShotSoundTime--; } if ((Mode == "Survival") && (LifeBar.Mask._xscale <= 0)) { LifeBar.Mask = 0; gotoAndPlay ("BSGameOverStart"); } if (Mode == "Time") { if (Mili <= 0) { Mili = 25; if (Sec <= 0) { Sec = 59; if (Min <= 0) { BrickRand = 0; Mili = 0; Sec = 0; Min = 0; MinText.text = Min + ":"; SecText.text = "0" + Sec; gotoAndPlay ("BSGameOverStart"); } else { Min--; } } else { Sec--; } } else { Mili--; } MinText.text = Min + ":"; if (Sec < 10) { SecText.text = "0" + Sec; } else { SecText.text = Sec; } }
Frame 170
gotoAndPlay ("BSMain");
Frame 171
Started = false; _quality = "HIGH";
Frame 258
ScoreText.text = Score;
Frame 259
gotoAndPlay ("BSGameOver");
Symbol 11 MovieClip [LogoParticle] Frame 81
this.swapDepths(0); this.removeMovieClip();
Symbol 37 MovieClip Frame 11
_parent.gotoAndStop(2);
Symbol 47 MovieClip Frame 1
this.onEnterFrame = function () { bytesloaded = Math.round(_root.getBytesLoaded()); bytestotal = Math.round(_root.getBytesTotal()); percent = bytesloaded / bytestotal; barmask._xscale = percent * 100; };
Symbol 79 MovieClip Frame 1
if (Math.random() > 0.5) { _xscale = (-_xscale); _x = (_x - _parent.shiftamt); }
Symbol 79 MovieClip Frame 90
if (_parent.isloaded) { _parent.gotoAndStop(10); } else { thenextframe = Math.ceil(Math.random() * 8) + 1; if (thenextframe == _parent._currentframe) { _parent.nextFrame(); } else { _parent.gotoAndStop(thenextframe); } }
Symbol 90 MovieClip Frame 1
if (Math.random() > 0.5) { _xscale = (-_xscale); _x = (_x - _parent.shiftamt); }
Symbol 90 MovieClip Frame 90
if (_parent.isloaded) { _parent.gotoAndStop(10); } else { thenextframe = Math.ceil(Math.random() * 8) + 1; if (thenextframe == _parent._currentframe) { _parent.nextFrame(); } else { _parent.gotoAndStop(thenextframe); } }
Symbol 98 MovieClip Frame 1
if (Math.random() > 0.5) { _xscale = (-_xscale); _x = (_x - _parent.shiftamt); }
Symbol 98 MovieClip Frame 90
if (_parent.isloaded) { _parent.gotoAndStop(10); } else { thenextframe = Math.ceil(Math.random() * 8) + 1; if (thenextframe == _parent._currentframe) { _parent.nextFrame(); } else { _parent.gotoAndStop(thenextframe); } }
Symbol 106 MovieClip Frame 1
if (Math.random() > 0.5) { _xscale = (-_xscale); _x = (_x - _parent.shiftamt); }
Symbol 106 MovieClip Frame 90
if (_parent.isloaded) { _parent.gotoAndStop(10); } else { thenextframe = Math.ceil(Math.random() * 8) + 1; if (thenextframe == _parent._currentframe) { _parent.nextFrame(); } else { _parent.gotoAndStop(thenextframe); } }
Symbol 114 MovieClip Frame 1
if (Math.random() > 0.5) { _xscale = (-_xscale); _x = (_x - _parent.shiftamt); }
Symbol 114 MovieClip Frame 90
if (_parent.isloaded) { _parent.gotoAndStop(10); } else { thenextframe = Math.ceil(Math.random() * 8) + 1; if (thenextframe == _parent._currentframe) { _parent.nextFrame(); } else { _parent.gotoAndStop(thenextframe); } }
Symbol 122 MovieClip Frame 1
if (Math.random() > 0.5) { _xscale = (-_xscale); _x = (_x - _parent.shiftamt); }
Symbol 122 MovieClip Frame 90
if (_parent.isloaded) { _parent.gotoAndStop(10); } else { thenextframe = Math.ceil(Math.random() * 8) + 1; if (thenextframe == _parent._currentframe) { _parent.nextFrame(); } else { _parent.gotoAndStop(thenextframe); } }
Symbol 130 MovieClip Frame 1
if (Math.random() > 0.5) { _xscale = (-_xscale); _x = (_x - _parent.shiftamt); }
Symbol 130 MovieClip Frame 90
if (_parent.isloaded) { _parent.gotoAndStop(10); } else { thenextframe = Math.ceil(Math.random() * 8) + 1; if (thenextframe == _parent._currentframe) { _parent.nextFrame(); } else { _parent.gotoAndStop(thenextframe); } }
Symbol 138 MovieClip Frame 1
if (Math.random() > 0.5) { _xscale = (-_xscale); _x = (_x - _parent.shiftamt); }
Symbol 138 MovieClip Frame 90
if (_parent.isloaded) { _parent.gotoAndStop(10); } else { thenextframe = Math.ceil(Math.random() * 8) + 1; if (thenextframe == _parent._currentframe) { _parent.gotoAndStop(2); } else { _parent.gotoAndStop(thenextframe); } }
Symbol 145 MovieClip Frame 133
_root.play();
Symbol 146 MovieClip Frame 1
stop(); _root.stop(); shiftamt = 17; isloaded = false; this.onEnterFrame = function () { bytesloaded = Math.round(_root.getBytesLoaded()); bytestotal = Math.round(_root.getBytesTotal()); percent = bytesloaded / bytestotal; if (bytesloaded == bytestotal) { isloaded = true; } }; this.onRelease = function () { getURL ("http://www.mofunzone.com/", "_blank"); };
Symbol 148 Button
on (release) { getURL ("http://www.Particlasm.com/", "_blank"); }
Symbol 154 MovieClip Frame 10
stop();
Symbol 159 MovieClip Frame 10
stop();
Symbol 164 MovieClip Frame 10
stop();
Symbol 169 MovieClip Frame 10
stop();
Symbol 174 MovieClip Frame 10
stop();
Symbol 179 MovieClip Frame 10
stop();
Symbol 184 MovieClip Frame 10
stop();
Symbol 189 MovieClip Frame 10
stop();
Symbol 194 MovieClip Frame 10
stop();
Symbol 197 MovieClip Frame 20
stop();
Symbol 198 MovieClip Frame 1
_root.stop(); var PTC; var a; var CurrentItem; var Rand; var Rand2; LogoSound = new Sound(); LogoSound.attachSound("HitSound");
Symbol 198 MovieClip Frame 5
CurrentItem = LogoP; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 9
CurrentItem = LogoC; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 13
CurrentItem = LogoR; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 17
CurrentItem = LogoT; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 21
CurrentItem = LogoI; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 25
CurrentItem = LogoA; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 29
CurrentItem = LogoM; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 33
CurrentItem = LogoA2; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 37
CurrentItem = LogoS; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 41
CurrentItem = LogoL; Rand = Math.random() * 360; Rand2 = 5 + Math.ceil(Math.random() * 5); a = 1; while (a <= Rand2) { PTC = LogoParticleHolder.attachMovie("LogoParticle", LogoParticleHolder.getNextHighestDepth(), LogoParticleHolder.getNextHighestDepth()); PTC._x = CurrentItem._x; PTC._y = CurrentItem._y; PTC._rotation = Rand + ((a * 360) / Rand2); a++; } LogoSound.start();
Symbol 198 MovieClip Frame 131
stop(); _root.play();
Symbol 217 MovieClip Frame 10
gotoAndPlay ("Run");
Symbol 217 MovieClip Frame 19
gotoAndPlay ("Jump");
Symbol 219 Button
on (release) { stopAllSounds(); Shot.start(); gotoAndPlay (94); } on (rollOver) { Pop.start(); }
Symbol 230 Button
on (release) { stopAllSounds(); Hit.start(); gotoAndPlay (10); } on (rollOver) { Pop.start(); }
Symbol 238 MovieClip Frame 6
if (Math.random() > 0.5) { gotoAndPlay ("Flap"); }
Symbol 244 MovieClip Frame 2
if (Math.random() < 0.97) { gotoAndPlay ("Open"); }
Symbol 247 Button
on (release) { stopAllSounds(); Hit.start(); gotoAndPlay (86); } on (rollOver) { Pop.start(); }
Symbol 250 Button
on (release) { getURL ("http://www.MoFunZone.com/", "_blank"); }
Symbol 256 Button
on (release) { getURL ("http://www.MoFunZone.com/", "_blank"); } on (rollOver) { Pop.start(); }
Symbol 287 MovieClip [PointPowerup2] Frame 2
if (_root.Deleter.hitTest(this)) { this.swapDepths(0); this.removeMovieClip(); } if (_root.Cam.Hero.Destroyer.Hit.hitTest(this)) { _root.PowMult = _root.PowMult * 4; _root.PowTime = 300; _root.Pop.start(); this.gotoAndPlay("Death"); }
Symbol 287 MovieClip [PointPowerup2] Frame 3
gotoAndPlay ("Main");
Symbol 287 MovieClip [PointPowerup2] Frame 16
this.swapDepths(0); this.removeMovieClip();
Symbol 308 MovieClip [BackgroundParticles] Frame 1
if (Math.ceil(Math.random() * 2) == 2) { this._xscale = this._xscale * -1; } gotoAndStop(Math.ceil(Math.random() * 20)); this.onEnterFrame = function () { if (_root.Deleter.hitTest(this)) { this.swapDepths(0); this.removeMovieClip(); } };
Symbol 311 MovieClip [BrickWall] Frame 1
function Explode() { a = 0; while (a < 10) { if (a < 5) { PTC = _root.Cam.Hero.MovingCamera.Proj.attachMovie("Shrapnel", _root.Cam.Hero.MovingCamera.Proj.getNextHighestDepth(), _root.Cam.Hero.MovingCamera.Proj.getNextHighestDepth()); PTC._x = this._x; PTC._y = this._y; PTC._rotation = Math.random() * 359; } PTC = _root.Cam.Hero.MovingCamera.Harmless.attachMovie("Puff", _root.Cam.Hero.MovingCamera.Harmless.getNextHighestDepth(), _root.Cam.Hero.MovingCamera.Harmless.getNextHighestDepth()); PTC._x = (this._x + (Math.random() * 20)) - (Math.random() * 20); PTC._y = (this._y + (Math.random() * 20)) - (Math.random() * 20); PTC._rotation = Math.random() * 359; a++; } _root.Score = _root.Score + ((_root.HitWorth * _root.PowMult) * _root.ProjMult); PTC = _root.Cam.Hero.MovingCamera.Harmless.attachMovie("PointParticle", _root.Cam.Hero.MovingCamera.Harmless.getNextHighestDepth(), _root.Cam.Hero.MovingCamera.Harmless.getNextHighestDepth()); PTC._x = this._x; PTC._y = this._y; PTC.PointParticleText.text = "+" + ((_root.HitWorth * _root.PowMult) * _root.ProjMult); if (_root.ShotSoundTime <= 0) { _root.Shot.start(); _root.ShotSoundTime = _root.ShotSoundTime + 1; } _root.Cam.gotoAndPlay("CameraShake"); this.swapDepths(0); this.removeMovieClip(); } var PTC;
Symbol 311 MovieClip [BrickWall] Frame 2
if (_root.Deleter.hitTest(this)) { this.swapDepths(0); this.removeMovieClip(); } if (_root.Cam.Hero.Destroyer.Hit.hitTest(this)) { _root.ProjMult = 1; _root.LifeBar.Mask._xscale = _root.LifeBar.Mask._xscale - 2; Explode(); } if (_root.Cam.Hero.MovingCamera.Proj.hitTest((((this._x + this._parent._x) + this._parent._parent._x) + this._parent._parent._parent._x) + this._parent._parent._parent._parent._x, (((this._y + this._parent._y) + this._parent._parent._y) + this._parent._parent._parent._y) + this._parent._parent._parent._parent._y, true)) { _root.ProjMult++; Explode(); }
Symbol 311 MovieClip [BrickWall] Frame 3
gotoAndPlay ("Main");
Symbol 314 MovieClip [PointParticle] Frame 2
if (_root.Deleter.hitTest(this)) { this.swapDepths(0); this.removeMovieClip(); }
Symbol 314 MovieClip [PointParticle] Frame 3
gotoAndPlay ("Main");
Symbol 317 MovieClip [Puff] Frame 11
this.swapDepths(0); this.removeMovieClip();
Symbol 322 MovieClip [PointPowerup] Frame 2
if (_root.Deleter.hitTest(this)) { this.swapDepths(0); this.removeMovieClip(); } if (_root.Cam.Hero.Destroyer.Hit.hitTest(this)) { _root.PowMult = _root.PowMult * 2; _root.PowTime = 300; _root.Pop.start(); this.gotoAndPlay("Death"); }
Symbol 322 MovieClip [PointPowerup] Frame 3
gotoAndPlay ("Main");
Symbol 322 MovieClip [PointPowerup] Frame 16
this.swapDepths(0); this.removeMovieClip();
Symbol 327 MovieClip [UberBrickPowerup] Frame 2
if (_root.Deleter.hitTest(this)) { this.swapDepths(0); this.removeMovieClip(); } if (_root.Cam.Hero.Destroyer.Hit.hitTest(this)) { _root.BrickRand = 0.7; _root.UberTime = _root.UberTime + 150; _root.Pop.start(); this.gotoAndPlay("Death"); }
Symbol 327 MovieClip [UberBrickPowerup] Frame 3
gotoAndPlay ("Main");
Symbol 327 MovieClip [UberBrickPowerup] Frame 16
this.swapDepths(0); this.removeMovieClip();
Symbol 331 MovieClip [Shrapnel] Frame 15
this.swapDepths(0); this.removeMovieClip();
Symbol 336 MovieClip [LifePowerup] Frame 2
if (_root.Deleter.hitTest(this)) { this.swapDepths(0); this.removeMovieClip(); } if (_root.Cam.Hero.Destroyer.Hit.hitTest(this)) { if ((_root.LifeBar.Mask._xscale + 25) <= 100) { _root.LifeBar.Mask._xscale = _root.LifeBar.Mask._xscale + 25; } else { _root.LifeBar.Mask._xscale = 100; } _root.Pop.start(); this.gotoAndPlay("Death"); }
Symbol 336 MovieClip [LifePowerup] Frame 3
gotoAndPlay ("Main");
Symbol 336 MovieClip [LifePowerup] Frame 16
this.swapDepths(0); this.removeMovieClip();
Symbol 341 MovieClip [TimePowerup] Frame 2
if (_root.Deleter.hitTest(this)) { this.swapDepths(0); this.removeMovieClip(); } if (_root.Cam.Hero.Destroyer.Hit.hitTest(this)) { _root.Sec = _root.Sec + 10; if (_root.Sec > 59) { _root.Sec = _root.Sec - 59; _root.Min = _root.Min + 1; } _root.Pop.start(); this.gotoAndPlay("Death"); }
Symbol 341 MovieClip [TimePowerup] Frame 3
gotoAndPlay ("Main");
Symbol 341 MovieClip [TimePowerup] Frame 16
this.swapDepths(0); this.removeMovieClip();
Symbol 344 MovieClip [Square] Frame 3
gotoAndPlay ("Main");
Symbol 350 MovieClip [Bomb] Frame 1
var PTC;
Symbol 350 MovieClip [Bomb] Frame 2
if (this.Bomb.hitTest(_root.CamShaker.Cam.Surfer) && (this._parent._parent._xscale > 200)) { a = 0; while (a < 20) { PTC = _root.CamShaker.Cam.Squares.attachMovie("FlameShot", _root.CamShaker.Cam.Squares.getNextHighestDepth(), _root.CamShaker.Cam.Squares.getNextHighestDepth()); PTC._x = 0; PTC._y = 0; PTC._rotation = Math.random() * 359; a++; } _root.Score = _root.Score + _root.RedOrbPoints; if (_root.Score < 0) { _root.Score = 0; } if (_root.SoundTime <= 0) { _root.Impact.start(); _root.SoundTime = _root.SoundTime + 1; } _root.Orbs = _root.Orbs - 1; _root.BackLight.gotoAndPlay("Red"); _root.CamShaker.gotoAndPlay("Shake"); this.swapDepths(0); this.removeMovieClip(); }
Symbol 350 MovieClip [Bomb] Frame 3
gotoAndPlay ("Main");
Symbol 353 MovieClip [FlameShot] Frame 1
if (Math.random() < 0.3) { gotoAndPlay ("Out"); } if (Math.random() < 0.3) { gotoAndPlay ("In"); }
Symbol 353 MovieClip [FlameShot] Frame 11
this.swapDepths(0); this.removeMovieClip();
Symbol 353 MovieClip [FlameShot] Frame 23
this.swapDepths(0); this.removeMovieClip();
Symbol 353 MovieClip [FlameShot] Frame 35
this.swapDepths(0); this.removeMovieClip();
Symbol 356 MovieClip [GreenOrb] Frame 1
var PTC;
Symbol 356 MovieClip [GreenOrb] Frame 2
if (this.Orb.hitTest(_root.CamShaker.Cam.Surfer) && (this._parent._parent._xscale > 200)) { a = 0; while (a < 20) { PTC = _root.CamShaker.Cam.Squares.attachMovie("GreenShot", _root.CamShaker.Cam.Squares.getNextHighestDepth(), _root.CamShaker.Cam.Squares.getNextHighestDepth()); PTC._x = 0; PTC._y = 0; PTC._rotation = Math.random() * 359; a++; } if (_root.SoundTime <= 0) { _root.Hit.start(); _root.SoundTime = _root.SoundTime + 1; } _root.Score = _root.Score + _root.GreenOrbPoints; _root.Orbs = _root.Orbs - 1; _root.BackLight.gotoAndPlay("Green"); _root.CamShaker.gotoAndPlay("Shake"); this.swapDepths(0); this.removeMovieClip(); }
Symbol 356 MovieClip [GreenOrb] Frame 3
gotoAndPlay ("Main");
Symbol 359 MovieClip [GreenShot] Frame 1
if (Math.random() < 0.3) { gotoAndPlay ("Out"); } if (Math.random() < 0.3) { gotoAndPlay ("In"); }
Symbol 359 MovieClip [GreenShot] Frame 11
this.swapDepths(0); this.removeMovieClip();
Symbol 359 MovieClip [GreenShot] Frame 23
this.swapDepths(0); this.removeMovieClip();
Symbol 359 MovieClip [GreenShot] Frame 35
this.swapDepths(0); this.removeMovieClip();
Symbol 362 MovieClip [PowerupOrb] Frame 1
var PTC; var Rand;
Symbol 362 MovieClip [PowerupOrb] Frame 2
if (this.Orb.hitTest(_root.CamShaker.Cam.Surfer) && (this._parent._parent._xscale > 200)) { a = 0; while (a < 20) { PTC = _root.CamShaker.Cam.Squares.attachMovie("BlueShot", _root.CamShaker.Cam.Squares.getNextHighestDepth(), _root.CamShaker.Cam.Squares.getNextHighestDepth()); PTC._x = 0; PTC._y = 0; PTC._rotation = Math.random() * 359; a++; } if (_root.SoundTime <= 0) { _root.Shot.start(); _root.SoundTime = _root.SoundTime + 1; } Rand = Math.ceil(Math.random() * 4); if (Rand == 1) { _root.NoRed = true; _root.PowerupTimer = 150; _root.TextTimer = 60; _root.PowerupText.text = "No Bombs!!"; } if (Rand == 2) { _root.TextTimer = 60; _root.PowerupText.text = "10 Orbs Added!"; _root.Orbs = _root.Orbs + 10; } if (Rand == 3) { _root.TextTimer = 60; _root.PowerupText.text = "Score +1000!"; _root.Score = _root.Score + 1000; } if (Rand == 4) { _root.GreenPulse = true; _root.PowerupTimer = 30; _root.TextTimer = 60; _root.PowerupText.text = "Green Pulse!"; } _root.BackLight.gotoAndPlay("Blue"); _root.CamShaker.gotoAndPlay("Shake"); this.swapDepths(0); this.removeMovieClip(); }
Symbol 362 MovieClip [PowerupOrb] Frame 3
gotoAndPlay ("Main");
Symbol 365 MovieClip [BlueShot] Frame 1
if (Math.random() < 0.3) { gotoAndPlay ("Out"); } if (Math.random() < 0.3) { gotoAndPlay ("In"); }
Symbol 365 MovieClip [BlueShot] Frame 26
this.swapDepths(0); this.removeMovieClip();
Symbol 365 MovieClip [BlueShot] Frame 53
this.swapDepths(0); this.removeMovieClip();
Symbol 365 MovieClip [BlueShot] Frame 80
this.swapDepths(0); this.removeMovieClip();
Symbol 367 MovieClip [Fairy] Frame 1
var Speed = 10; var Ease = 60; var Bounce = 0; var Enemy; var Damage = 3; var Col = new Object(); var ColImt = new Color(Graphic.Body); var SpkCol; var AttackPathArray = new Array(); var AttackShapeArray = new Array(); var ID = 0; var PTCStrength = 100; var PTCSpeed = 100; var NextX = (Math.random() * Stage.width); var NextY = (Math.random() * Stage.height); var a = 0; var b = 0; var rand = 0; var LifeBar; var Dead = false; var PTC;
Symbol 367 MovieClip [Fairy] Frame 2
if (_root.Ready) { PTC = _root.Harmless.attachMovie("Sparkle", _root.Harmless.getNextHighestDepth(), _root.Harmless.getNextHighestDepth()); PTC._x = (this._x + (Math.random() * 50)) - (Math.random() * 50); PTC._y = (this._y + (Math.random() * 50)) - (Math.random() * 50); SpkCol = new Color(PTC); SpkCol.setTransform(Col); if ((((this._x < (NextX + Ease)) && (this._x > (NextX - Ease))) && (this._y < (NextY + Ease))) && (this._y > (NextY - Ease))) { NextY = Math.random() * Stage.height; NextX = Math.random() * Stage.width; } Bounce = (Math.abs(this._x - (this._x + ((NextX - this._x) / Speed))) + Math.abs(this._y - (this._y + ((NextY - this._y) / Speed)))) * 2; this._x = this._x + ((NextX - this._x) / Speed); this._y = this._y + ((NextY - this._y) / Speed); Graphic.Wings._x = -(((Enemy._x - this._x) * (Graphic.Body._width / 1.5)) / Stage.width); Graphic.Eyes._x = ((Enemy._x - this._x) * (Graphic.Body._width / 1.5)) / Stage.width; Graphic.Wings._y = -(((Enemy._y - this._y) * (Graphic.Body._height / 1.5)) / Stage.height); Graphic.Eyes._y = ((Enemy._y - this._y) * (Graphic.Body._height / 1.5)) / Stage.height; a = 0; while (a < _root.Fairy.length) { if (_root.Fairy[a] != this) { if (this.hitTest(_root.Fairy[a])) { b = 1; while (b <= 10) { PTC = _root.Harmless.attachMovie("Hit", _root.Harmless.getNextHighestDepth(), _root.Harmless.getNextHighestDepth()); PTC._x = this._x; PTC._y = this._y; PTC._rotation = 36 * b; b++; } _root.FireworkArray[Math.floor(Math.random() * 3)].start(); NextX = this._x + ((this._x - _root.Fairy[a]._x) * 6); NextY = this._y + ((this._y - _root.Fairy[a]._y) * 6); LifeBar._xscale = LifeBar._xscale - Damage; } if (_root.AttackHolder[a].hitTest(this._x, this._y, true)) { b = 1; while (b <= 10) { PTC = _root.Harmless.attachMovie("Hit", _root.Harmless.getNextHighestDepth(), _root.Harmless.getNextHighestDepth()); PTC._x = this._x; PTC._y = this._y; PTC._rotation = 36 * b; b++; } _root.FireworkArray[Math.floor(Math.random() * 3)].start(); NextX = NextX + ((this._x - NextX) * 4); NextY = NextY + ((this._y - NextY) * 4); LifeBar._xscale = LifeBar._xscale - Damage; } } a++; } if ((this._y + this._height) > Stage.height) { NextY = this._y - Bounce; } if ((this._y - this._height) < 0) { NextY = this._y + Bounce; } if ((this._x + this._width) > Stage.width) { NextX = this._x - Bounce; } if ((this._x - this._width) < 0) { NextX = this._x + Bounce; } a = 1; while (a <= 5) { if (Math.random() < (PTCSpeed / 1500)) { _root.FireworkArray[Math.floor(Math.random() * 3)].start(); rand = Math.random() * 360; b = 1; while (b <= Math.round(PTCStrength / 4)) { _root.PTC = _root.AttackHolder[ID].attachMovie("Particle", _root.AttackHolder[ID].getNextHighestDepth(), _root.AttackHolder[ID].getNextHighestDepth()); _root.PTC.gotoAndPlay(AttackPathArray[a]); _root.PTC.Shape.gotoAndStop(AttackShapeArray[a]); _root.PTC._x = this._x; _root.PTC._y = this._y; _root.PTC._rotation = ((b * 360) / Math.round(PTCStrength / 5)) + rand; b++; } } a++; } if (LifeBar._xscale <= 0) { b = 1; while (b <= 100) { _root.PTC = _root.Harmless.attachMovie("DeathHit", _root.Harmless.getNextHighestDepth(), _root.Harmless.getNextHighestDepth()); _root.PTC._x = (this._x + (Math.random() * 100)) - (Math.random() * 100); _root.PTC._y = (this._y + (Math.random() * 100)) - (Math.random() * 100); _root.PTC._rotation = Math.random() * 360; b++; } this.gotoAndStop("Pause"); this._x = -100; this._y = -100; Dead = true; LifeBar.swapDepths(0); LifeBar.removeMovieClip(); } if (Enemy.Dead == true) { a = 1; while (a <= _root.FairyNumber) { if ((_root.Fairy[a] != this) && (_root.Fairy[a].Dead == false)) { Enemy = _root.Fairy[a]; } if ((a == _root.FairyNumber) && (Enemy.Dead == true)) { _root.Victory(ID); } a++; } } }
Symbol 367 MovieClip [Fairy] Frame 3
gotoAndPlay ("Main");
Symbol 370 MovieClip [Hit] Frame 36
this.swapDepths(0); this.removeMovieClip();
Symbol 382 MovieClip [Particle] Frame 34
this.swapDepths(0); this.removeMovieClip();
Symbol 382 MovieClip [Particle] Frame 77
this.swapDepths(0); this.removeMovieClip();
Symbol 382 MovieClip [Particle] Frame 131
this.swapDepths(0); this.removeMovieClip();
Symbol 382 MovieClip [Particle] Frame 174
this.swapDepths(0); this.removeMovieClip();
Symbol 382 MovieClip [Particle] Frame 220
this.swapDepths(0); this.removeMovieClip();
Instance of Symbol 386 MovieClip "Slider" in Symbol 389 MovieClip Frame 1
onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.Bar._x + (this._parent.Bar._width / 2))) { this._x = this._parent.Bar._x + (this._parent.Bar._width / 2); } if (this._x < (this._parent.Bar._x - (this._parent.Bar._width / 2))) { this._x = this._parent.Bar._x - (this._parent.Bar._width / 2); } this._y = this._parent.Bar._y; }
Symbol 407 MovieClip Frame 1
stop();
Symbol 407 MovieClip Frame 2
stop();
Symbol 407 MovieClip Frame 3
stop();
Symbol 407 MovieClip Frame 4
stop();
Symbol 407 MovieClip Frame 5
stop();
Instance of Symbol 407 MovieClip "Attack1Placer" in Symbol 408 MovieClip Frame 1
onClipEvent (load) { var ID = 1; this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Square.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Square"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Circle.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Circle"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Ring.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Ring"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Teardrop.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Star.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Star"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack2Placer" in Symbol 408 MovieClip Frame 1
onClipEvent (load) { var ID = 2; this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Square.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Square"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Circle.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Circle"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Ring.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Ring"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Teardrop.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Star.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Star"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack3Placer" in Symbol 408 MovieClip Frame 1
onClipEvent (load) { var ID = 3; this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Square.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Square"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Circle.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Circle"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Ring.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Ring"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Teardrop.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Star.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Star"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack4Placer" in Symbol 408 MovieClip Frame 1
onClipEvent (load) { var ID = 4; this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Square.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Square"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Circle.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Circle"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Ring.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Ring"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Teardrop.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Star.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Star"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack5Placer" in Symbol 408 MovieClip Frame 1
onClipEvent (load) { var ID = 5; this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Square.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Square"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Circle.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Circle"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Ring.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Ring"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Teardrop.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Teardrop"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } if (this._parent.Star.hitTest(this)) { this._parent._parent.AttackShapeArray[ID] = "Star"; this.gotoAndStop(this._parent._parent.AttackShapeArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack1Placer" in Symbol 413 MovieClip Frame 1
onClipEvent (load) { var ID = 1; this._parent._parent.AttackPathArray[ID] = "Straight"; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Curved.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Curved"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Flower.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Flower"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Loop.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Loop"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Straight.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Straight"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.ZigZag.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "ZigZag"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack2Placer" in Symbol 413 MovieClip Frame 1
onClipEvent (load) { var ID = 2; this._parent._parent.AttackPathArray[ID] = "Straight"; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Curved.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Curved"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Flower.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Flower"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Loop.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Loop"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Straight.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Straight"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.ZigZag.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "ZigZag"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack3Placer" in Symbol 413 MovieClip Frame 1
onClipEvent (load) { var ID = 3; this._parent._parent.AttackPathArray[ID] = "Straight"; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Curved.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Curved"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Flower.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Flower"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Loop.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Loop"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Straight.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Straight"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.ZigZag.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "ZigZag"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack4Placer" in Symbol 413 MovieClip Frame 1
onClipEvent (load) { var ID = 4; this._parent._parent.AttackPathArray[ID] = "Straight"; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Curved.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Curved"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Flower.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Flower"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Loop.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Loop"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Straight.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Straight"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.ZigZag.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "ZigZag"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } }
Instance of Symbol 407 MovieClip "Attack5Placer" in Symbol 413 MovieClip Frame 1
onClipEvent (load) { var ID = 5; this._parent._parent.AttackPathArray[ID] = "Straight"; } onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this); } } onClipEvent (mouseUp) { stopDrag(); } onClipEvent (enterFrame) { if (this._x > (this._parent.DragBounds._x + (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x + (this._parent.DragBounds._width / 2); } if (this._x < (this._parent.DragBounds._x - (this._parent.DragBounds._width / 2))) { this._x = this._parent.DragBounds._x - (this._parent.DragBounds._width / 2); } if (this._y > (this._parent.DragBounds._y + (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y + (this._parent.DragBounds._height / 2); } if (this._y < (this._parent.DragBounds._y - (this._parent.DragBounds._height / 2))) { this._y = this._parent.DragBounds._y - (this._parent.DragBounds._height / 2); } if (this._parent.Curved.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Curved"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Flower.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Flower"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Loop.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Loop"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.Straight.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "Straight"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } if (this._parent.ZigZag.hitTest(this)) { this._parent._parent.AttackPathArray[ID] = "ZigZag"; this.gotoAndStop(this._parent._parent.AttackPathArray[ID]); } }
Symbol 415 Button
on (release) { _root.DeleteFairy(ID); }
Symbol 419 MovieClip [Gadget] Frame 1
var AttackPathArray = new Array(); var AttackShapeArray = new Array(); var ID = 0;
Instance of Symbol 384 MovieClip in Symbol 419 MovieClip [Gadget] Frame 1
onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this._parent); this._parent.swapDepths(this._parent._parent.getNextHighestDepth()); } } onClipEvent (mouseUp) { stopDrag(); }
Symbol 419 MovieClip [Gadget] Frame 3
gotoAndPlay ("Main");
Symbol 421 MovieClip [DeathHit] Frame 36
this.swapDepths(0); this.removeMovieClip();
Symbol 422 MovieClip [Sparkle] Frame 31
this.swapDepths(0); this.removeMovieClip();
Symbol 425 MovieClip [MMParticle] Frame 81
this.swapDepths(0); this.removeMovieClip();
Symbol 433 MovieClip Frame 2
gotoAndPlay ("Normal");
Symbol 433 MovieClip Frame 7
gotoAndPlay ("Normal");
Symbol 433 MovieClip Frame 12
gotoAndPlay ("Normal");
Symbol 433 MovieClip Frame 17
gotoAndPlay ("Normal");
Symbol 437 MovieClip Frame 2
if (Key.isDown(37) && (this._rotation > -45)) { this._rotation = this._rotation - 5; } if (Key.isDown(39) && (this._rotation < 45)) { this._rotation = this._rotation + 5; } if ((!Key.isDown(39)) && (!Key.isDown(37))) { this._rotation = this._rotation - (5 * (this._rotation / Math.abs(this._rotation))); } this.Burners._yscale = ((_root.CamShaker.Cam.Speed - 1) * 100) / (_root.CamShaker.Cam.MaxSpeed - 1);
Symbol 437 MovieClip Frame 3
gotoAndPlay ("Main");
Symbol 438 MovieClip Frame 1
function Colorize(Num) { var _local1 = new Object(); _local1.ga = 0; if (Num > (SquareNumber / 2)) { _local1.ra = 100 - Math.round(((SquareNumber - Num) * 200) / SquareNumber); _local1.ba = Math.round(((SquareNumber - Num) * 100) / SquareNumber); _local1.aa = 100; } else { _local1.ra = 100 - Math.round((Num * 200) / SquareNumber); _local1.ba = Math.round((Num * 100) / SquareNumber); _local1.aa = 100; } ColorArray[Num].setTransform(_local1); } var SquareNumber = 40; var SquareSpacing = 1.2; var MaxSpeed = 1.2; var Speed = 1.01; var Dodge = 0.25; var CurrentSquare = 31; var OuterSquare = 800; Rotation = 3; var GreenStreamX = ((Math.random() * 9999) - (Math.random() * 9999)); var GreenStreamY = ((Math.random() * 9999) - (Math.random() * 9999)); var PTC; SquareArray = new Array(SquareNumber); ParticleArray = new Array(SquareNumber); ModX = new Array(SquareNumber); ModY = new Array(SquareNumber); var ModR = 0; var a; var b; var FinalX = 0; var FinalY = 0; var MoveX = 0; var MoveY = 0; var NewX = 0; var NewY = 0; ColorArray = new Array(SquareNumber); a = 1; while (a < SquareNumber) { SquareArray[a] = this.Squares.attachMovie("Square", "Square" + a, this.Squares.getNextHighestDepth()); SquareArray[a]._xscale = SquareArray[a - 1]._xscale * SquareSpacing; ModX[a] = NewX; ModY[a] = NewY; if ((a == 1) || (a == 0)) { SquareArray[a]._xscale = 1; } SquareArray[a]._yscale = SquareArray[a]._xscale; SquareArray[a]._x = 0; SquareArray[a]._y = 0; ColorArray[a] = new Color(SquareArray[a].Square); ParticleArray[a] = SquareArray[a].createEmptyMovieClip("PARTICLEZZZ", SquareArray[a].getNextHighestDepth()); b = 0; while (b < (Math.random() * 5)) { PTC = ParticleArray[a].attachMovie("Star", ParticleArray[a].getNextHighestDepth(), ParticleArray[a].getNextHighestDepth()); PTC.Star._x = SquareArray[a].Square._width + (Math.random() * 3000); PTC._rotation = Math.random() * 359; b++; } Colorize(a); a++; }
Symbol 438 MovieClip Frame 2
a = 1; while (a < SquareNumber) { Colorize(a); if (SquareArray[a]._xscale <= Math.pow(SquareSpacing, SquareNumber - 1)) { SquareArray[a]._xscale = SquareArray[a]._xscale * Speed; SquareArray[a]._yscale = SquareArray[a]._xscale; FinalX = (ModX[a] + MoveX) * SquareArray[a]._xscale; FinalY = (ModY[a] + MoveY) * SquareArray[a]._yscale; FinalX = FinalX * Speed; FinalY = FinalY * Speed; SquareArray[a]._x = FinalX; SquareArray[a]._y = FinalY; SquareArray[a]._rotation = ModR; } else { SquareArray[a].clear(); SquareArray[a]._xscale = 1; SquareArray[a]._yscale = 1; ModX[a] = NewX; ModY[a] = NewY; SquareArray[a]._rotation = ModR; if (CurrentSquare != 1) { CurrentSquare--; } else { CurrentSquare = SquareNumber - 1; } b = a; while (b <= (a + SquareNumber)) { if (b <= SquareNumber) { SquareArray[b].swapDepths(SquareArray[b]._parent.getNextHighestDepth()); } else { SquareArray[b - SquareNumber].swapDepths(SquareArray[b - SquareNumber]._parent.getNextHighestDepth()); } b++; } ParticleArray[a].swapDepths(0); ParticleArray[a].removeMovieClip(); ParticleArray[a] = SquareArray[a].createEmptyMovieClip("PARTICLEZZZ", SquareArray[a].getNextHighestDepth()); if (_root.Ready == true) { if ((_root.NoRed == false) && ((((SquareArray[CurrentSquare]._y > OuterSquare) || (SquareArray[CurrentSquare]._y < (-OuterSquare))) || (SquareArray[CurrentSquare]._x > OuterSquare)) || (SquareArray[CurrentSquare]._x < (-OuterSquare)))) { b = 0; while (b < Math.ceil(Math.random() * 4)) { PTC = ParticleArray[a].attachMovie("Bomb", ParticleArray[a].getNextHighestDepth(), ParticleArray[a].getNextHighestDepth()); PTC.Bomb._x = (((-((ModX[CurrentSquare] + MoveX) * 100)) * Speed) + (Math.random() * 100)) - (Math.random() * 100); PTC.Bomb._y = (((-((ModY[CurrentSquare] + MoveY) * 100)) * Speed) + (Math.random() * 100)) - (Math.random() * 100); PTC._rotation = -ModR; b++; } } GreenStreamX = GreenStreamX + ((Math.random() * 30) - (Math.random() * 30)); GreenStreamY = GreenStreamY + ((Math.random() * 30) - (Math.random() * 30)); if ((GreenStreamX > (OuterSquare * 4)) || (GreenStreamX < ((-OuterSquare) * 4))) { GreenStreamX = GreenStreamX / 4; } if ((GreenStreamY > (OuterSquare * 4)) || (GreenStreamY < ((-OuterSquare) * 4))) { GreenStreamY = GreenStreamY / 4; } if (Math.random() < 0.001) { GreenStreamX = (Math.random() * 2000) - (Math.random() * 2000); GreenStreamY = (Math.random() * 2000) - (Math.random() * 2000); } PTC = ParticleArray[a].attachMovie("GreenOrb", ParticleArray[a].getNextHighestDepth(), ParticleArray[a].getNextHighestDepth()); PTC.Orb._x = GreenStreamX + (Math.random() * 100); PTC.Orb._y = GreenStreamY + (Math.random() * 100); if (_root.GreenPulse == true) { b = 0; while (b < 10) { PTC = ParticleArray[a].attachMovie("GreenOrb", ParticleArray[a].getNextHighestDepth(), ParticleArray[a].getNextHighestDepth()); PTC.Orb._x = GreenStreamX + (Math.random() * 200); PTC.Orb._y = GreenStreamY + (Math.random() * 200); b++; } } if (Math.random() < 0.01) { PTC = ParticleArray[a].attachMovie("PowerupOrb", ParticleArray[a].getNextHighestDepth(), ParticleArray[a].getNextHighestDepth()); PTC.Orb._x = GreenStreamX + (Math.random() * 100); PTC.Orb._y = GreenStreamY + (Math.random() * 100); } PTC = ParticleArray[a].attachMovie("GreenOrb", ParticleArray[a].getNextHighestDepth(), ParticleArray[a].getNextHighestDepth()); PTC.Orb._x = OuterSquare + (Math.random() * 500); PTC.Orb._y = OuterSquare + (Math.random() * 500); PTC._rotation = Math.random() * 359; } b = 0; while (b < (10 + (Math.random() * 10))) { PTC = ParticleArray[a].attachMovie("Star", ParticleArray[a].getNextHighestDepth(), ParticleArray[a].getNextHighestDepth()); PTC.Star._x = SquareArray[a].Square._width + (Math.random() * 3500); PTC._rotation = Math.random() * 359; b++; } } a++; } if (Key.isDown(38) && (MoveY < 30)) { MoveY = MoveY + Dodge; } if (Key.isDown(40) && (MoveY > -30)) { MoveY = MoveY + (-Dodge); } if (Key.isDown(37) && (MoveX < 30)) { MoveX = MoveX + Dodge; } if (Key.isDown(39) && (MoveX > -30)) { MoveX = MoveX + (-Dodge); } if (Key.isDown(90)) { ModR = ModR + Rotation; } if (Key.isDown(88)) { ModR = ModR - Rotation; } if (Key.isDown(16) && (Speed < MaxSpeed)) { Speed = Speed + 0.003; } if (Key.isDown(17) && (Speed > 1)) { if (Speed < 1.005) { Speed = 1; } else { Speed = Speed - 0.003; } }
Symbol 438 MovieClip Frame 3
gotoAndPlay ("Main");
Symbol 439 MovieClip Frame 2
gotoAndPlay ("Normal");
Symbol 457 Button
on (release) { stopAllSounds(); Hit.start(); gotoAndPlay ("MMStart"); } on (rollOver) { Pop.start(); }
Symbol 461 Button
on (release) { Hit.start(); gotoAndPlay ("SSBegin"); } on (rollOver) { Pop.start(); }
Symbol 468 Button
on (release) { getURL ("http://www.MoFunZone.com/", "_blank"); }
Symbol 484 Button
on (release) { gotoAndPlay ("SSMenuMain"); }
Symbol 490 Button
on (release) { getURL ("http://www.mofunzone.com/online_games/extreme_particle_suite.shtml", "_blank"); }
Symbol 495 Button
on (release) { getURL ("http://www.MoFunZone.com/", "_blank"); }
Symbol 498 Button
on (release) { _root.BeginFight(); }
Symbol 499 Button
on (release) { _root.NewFairy(); }
Symbol 500 Button
on (release) { stopAllSounds(); _root.gotoAndPlay("MMStart"); }
Instance of Symbol 384 MovieClip in Symbol 504 MovieClip Frame 1
onClipEvent (mouseDown) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { startDrag (this._parent); } } onClipEvent (mouseUp) { stopDrag(); }
Symbol 508 Button
on (release) { getURL ("http://www.mofunzone.com/", "_blank"); }
Symbol 512 MovieClip Frame 1
var Jump = 0; var UpSwitch = false; var X; var Y;
Symbol 512 MovieClip Frame 2
if ((Key.isDown(38) && (Jump < 2)) && (UpSwitch == false)) { UpSwitch = true; Jump++; Y = -80; this.Graphic.gotoAndPlay("Jump"); } if (!Key.isDown(38)) { UpSwitch = false; } if ((Y < 50) && (Jump > 0)) { Y = Y + 10; } if (((this._y + Y) > 180) && (Jump > 0)) { this._y = 180; Jump = 0; Y = 0; this.Graphic.gotoAndPlay("Run"); } if (Key.isDown(37)) { X = -40; } if (Key.isDown(39)) { X = 40; } if ((!Key.isDown(39)) && (!Key.isDown(37))) { if ((X < 0) || (X > 0)) { X = X - ((Math.abs(X) / X) * 5); } } if ((this._x > ((Stage.width / 2) - 50)) && (X > 0)) { X = 0; } if ((this._x < (((-Stage.width) / 2) + 50)) && (X < 0)) { X = 0; } this._y = this._y + Y; this._x = this._x + X;
Symbol 512 MovieClip Frame 3
gotoAndPlay ("Main");
Symbol 513 MovieClip Frame 1
var PTC; a = 0; while (a < 20) { PTC = this.BackgroundParticles.attachMovie("BackgroundParticles", this.BackgroundParticles.getNextHighestDepth(), this.BackgroundParticles.getNextHighestDepth()); PTC._x = (Math.random() * Stage.width) - (Math.random() * Stage.width); PTC._y = 0; if (Math.random() > 0.5) { PTC._x = PTC._x + (PTC._width * 2); } a++; }
Symbol 513 MovieClip Frame 2
MovingCamera._x = MovingCamera._x - 30; BackgroundParticles._x = BackgroundParticles._x - 10; if (Math.random() < 0.1) { PTC = this.BackgroundParticles.attachMovie("BackgroundParticles", this.BackgroundParticles.getNextHighestDepth(), this.BackgroundParticles.getNextHighestDepth()); PTC._x = ((-this.BackgroundParticles._x) + (Stage.width / 2)) + PTC._width; PTC._y = 0; if (Math.random() > 0.5) { PTC._x = PTC._x + (PTC._width * 2); } } if (_root.Started) { if (Math.random() < _root.BrickRand) { PTC = this.MovingCamera.Items.attachMovie("BrickWall", this.MovingCamera.Items.getNextHighestDepth(), this.MovingCamera.Items.getNextHighestDepth()); PTC._x = ((-this.MovingCamera._x) + (Stage.width / 2)) + PTC._width; PTC._y = ((Math.random() * Stage.height) / 2) - ((Math.random() * Stage.height) / 2); } if (Math.random() < 0.003) { PTC = this.MovingCamera.Items.attachMovie("PointPowerup", this.MovingCamera.Items.getNextHighestDepth(), this.MovingCamera.Items.getNextHighestDepth()); PTC._x = ((-this.MovingCamera._x) + (Stage.width / 2)) + PTC._width; PTC._y = ((Math.random() * Stage.height) / 2) - ((Math.random() * Stage.height) / 2); } if (Math.random() < 0.001) { PTC = this.MovingCamera.Items.attachMovie("PointPowerup2", this.MovingCamera.Items.getNextHighestDepth(), this.MovingCamera.Items.getNextHighestDepth()); PTC._x = ((-this.MovingCamera._x) + (Stage.width / 2)) + PTC._width; PTC._y = ((Math.random() * Stage.height) / 2) - ((Math.random() * Stage.height) / 2); } if (Math.random() < 0.001) { PTC = this.MovingCamera.Items.attachMovie("UberBrickPowerup", this.MovingCamera.Items.getNextHighestDepth(), this.MovingCamera.Items.getNextHighestDepth()); PTC._x = ((-this.MovingCamera._x) + (Stage.width / 2)) + PTC._width; PTC._y = ((Math.random() * Stage.height) / 2) - ((Math.random() * Stage.height) / 2); } if ((Math.random() < 0.003) && (_root.Mode == "Survival")) { PTC = this.MovingCamera.Items.attachMovie("LifePowerup", this.MovingCamera.Items.getNextHighestDepth(), this.MovingCamera.Items.getNextHighestDepth()); PTC._x = ((-this.MovingCamera._x) + (Stage.width / 2)) + PTC._width; PTC._y = ((Math.random() * Stage.height) / 2) - ((Math.random() * Stage.height) / 2); } if ((Math.random() < 0.001) && (_root.Mode == "Time")) { PTC = this.MovingCamera.Items.attachMovie("TimePowerup", this.MovingCamera.Items.getNextHighestDepth(), this.MovingCamera.Items.getNextHighestDepth()); PTC._x = ((-this.MovingCamera._x) + (Stage.width / 2)) + PTC._width; PTC._y = ((Math.random() * Stage.height) / 2) - ((Math.random() * Stage.height) / 2); } }
Symbol 513 MovieClip Frame 3
gotoAndPlay ("Main");
Symbol 514 MovieClip Frame 1
var Shake = 1;
Symbol 514 MovieClip Frame 3
gotoAndPlay ("Normal");
Symbol 514 MovieClip Frame 4
if (Shake == 2) { Shake = 1; this.gotoAndPlay(this._currentframe + 1); } else { Shake = 2; }
Symbol 518 Button
on (release) { _root.Mode = "Time"; gotoAndPlay ("BSBegin"); _root.Shot.start(); } on (rollOver) { _root.Pop.start(); }
Symbol 522 Button
on (release) { _root.Mode = "Survival"; gotoAndPlay ("BSBegin"); _root.Shot.start(); } on (rollOver) { _root.Pop.start(); }
Symbol 524 MovieClip Frame 77
stop();
Symbol 525 MovieClip Frame 77
stop();
Symbol 527 MovieClip Frame 77
stop();
Symbol 531 Button
on (release) { stopAllSounds(); gotoAndPlay ("MMStart"); _root.Shot.start(); } on (rollOver) { _root.Pop.start(); }
Symbol 551 Button
on (release) { getURL ("http://www.mofunzone.com/online_games/extreme_particle_suite.shtml", "_blank"); }
Symbol 555 Button
on (release) { gotoAndPlay ("BSMenu"); }
Symbol 559 Button
on (release) { getURL ("http://www.MoFunZone.com/", "_blank"); }

Library Items

Symbol 1 Sound [ShotSound]
Symbol 2 Sound [PopSound]
Symbol 3 Sound [ImpactSound]
Symbol 4 Sound [HitSound]
Symbol 5 Sound [Firework4]
Symbol 6 Sound [Firework3]
Symbol 7 Sound [Firework2]
Symbol 8 Sound [Firework1]
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:11
Symbol 11 MovieClip [LogoParticle]Uses:10
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:37 38 139
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:37 38 139
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:16Used by:37 38 139
Symbol 18 GraphicUsed by:19 20 33
Symbol 19 MovieClipUses:18Used by:37 38 139
Symbol 20 MovieClipUses:18Used by:37 38 139
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:37 38 139
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:37 38 139
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:37 38 139
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:37 38 139
Symbol 29 GraphicUsed by:30 34
Symbol 30 MovieClipUses:29Used by:37 38 139
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:37 38 139
Symbol 33 MovieClipUses:18Used by:37 38 139
Symbol 34 MovieClipUses:29Used by:37 38 139
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:37 38 139
Symbol 37 MovieClipUses:13 15 17 19 20 22 24 26 28 30 32 33 34 36Used by:146
Symbol 38 MovieClipUses:13 15 19 22 26 30 32 33 34 36 28 24 20 17Used by:146
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:146
Symbol 41 GraphicUsed by:146
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:47
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:46
Symbol 46 MovieClipUses:45Used by:47
Symbol 47 MovieClipUses:43 46Used by:146
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:79 90 98 106 114 122 130 138 145
Symbol 50 GraphicUsed by:79
Symbol 51 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 52 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:79 90 98 106 114 122 130 138
Symbol 55 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 56 GraphicUsed by:74 79
Symbol 57 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 58 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 59 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 60 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 61 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 62 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 63 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 64 FontUsed by:65
Symbol 65 EditableTextUses:64Used by:79 90 98 106 114 122 130 138
Symbol 66 GraphicUsed by:79
Symbol 67 ShapeTweeningUsed by:79
Symbol 68 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 69 ShapeTweeningUsed by:79
Symbol 70 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 71 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 72 GraphicUsed by:79
Symbol 73 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 74 MovieClipUses:56Used by:79
Symbol 75 SoundUsed by:79 90 98 106 114 122 130 138
Symbol 76 GraphicUsed by:79 90 98 106 114 122 130 138 145
Symbol 77 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 78 GraphicUsed by:79 90 98 106 114 122 130 138
Symbol 79 MovieClipUses:49 50 51 52 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78Used by:146
Symbol 80 GraphicUsed by:90
Symbol 81 GraphicUsed by:87 90
Symbol 82 GraphicUsed by:90 98 106 114 122 130 138
Symbol 83 GraphicUsed by:90
Symbol 84 ShapeTweeningUsed by:90
Symbol 85 ShapeTweeningUsed by:90
Symbol 86 GraphicUsed by:90
Symbol 87 MovieClipUses:81Used by:90
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:90
Symbol 90 MovieClipUses:49 80 51 52 54 55 81 57 58 59 60 61 62 63 82 65 83 84 68 85 70 71 86 73 87 75 76 77 78 89Used by:146
Symbol 91 GraphicUsed by:98
Symbol 92 GraphicUsed by:97 98
Symbol 93 GraphicUsed by:98
Symbol 94 ShapeTweeningUsed by:98
Symbol 95 ShapeTweeningUsed by:98
Symbol 96 GraphicUsed by:98
Symbol 97 MovieClipUses:92Used by:98
Symbol 98 MovieClipUses:49 91 51 52 54 55 92 57 58 59 60 61 62 63 82 65 93 94 68 95 70 71 96 73 97 75 76 77 78Used by:146
Symbol 99 GraphicUsed by:106
Symbol 100 GraphicUsed by:105 106
Symbol 101 GraphicUsed by:106
Symbol 102 ShapeTweeningUsed by:106
Symbol 103 ShapeTweeningUsed by:106
Symbol 104 GraphicUsed by:106
Symbol 105 MovieClipUses:100Used by:106
Symbol 106 MovieClipUses:49 99 51 52 54 55 100 57 58 59 60 61 62 63 82 65 101 102 68 103 70 71 104 73 105 75 76 77 78Used by:146
Symbol 107 GraphicUsed by:114
Symbol 108 GraphicUsed by:113 114
Symbol 109 GraphicUsed by:114
Symbol 110 ShapeTweeningUsed by:114
Symbol 111 ShapeTweeningUsed by:114
Symbol 112 GraphicUsed by:114
Symbol 113 MovieClipUses:108Used by:114
Symbol 114 MovieClipUses:49 107 51 52 54 55 108 57 58 59 60 61 62 63 82 65 109 110 68 111 70 71 112 73 113 75 76 77 78Used by:146
Symbol 115 GraphicUsed by:122
Symbol 116 GraphicUsed by:121 122
Symbol 117 GraphicUsed by:122
Symbol 118 ShapeTweeningUsed by:122
Symbol 119 ShapeTweeningUsed by:122
Symbol 120 GraphicUsed by:122
Symbol 121 MovieClipUses:116Used by:122
Symbol 122 MovieClipUses:49 115 51 52 54 55 116 57 58 59 60 61 62 63 82 65 117 118 68 119 70 71 120 73 121 75 76 77 78Used by:146
Symbol 123 GraphicUsed by:130
Symbol 124 GraphicUsed by:129 130
Symbol 125 GraphicUsed by:130
Symbol 126 ShapeTweeningUsed by:130
Symbol 127 ShapeTweeningUsed by:130
Symbol 128 GraphicUsed by:130
Symbol 129 MovieClipUses:124Used by:130
Symbol 130 MovieClipUses:49 123 51 52 54 55 124 57 58 59 60 61 62 63 82 65 125 126 68 127 70 71 128 73 129 75 76 77 78Used by:146
Symbol 131 GraphicUsed by:138
Symbol 132 GraphicUsed by:137 138
Symbol 133 GraphicUsed by:138
Symbol 134 ShapeTweeningUsed by:138
Symbol 135 ShapeTweeningUsed by:138
Symbol 136 GraphicUsed by:138
Symbol 137 MovieClipUses:132Used by:138
Symbol 138 MovieClipUses:49 131 51 52 54 55 132 57 58 59 60 61 62 63 82 65 133 134 68 135 70 71 136 73 137 75 76 77 78Used by:146
Symbol 139 MovieClipUses:13 15 19 22 26 30 32 33 34 36 28 24 20 17Used by:146
Symbol 140 GraphicUsed by:145
Symbol 141 GraphicUsed by:145
Symbol 142 GraphicUsed by:145
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:143Used by:145
Symbol 145 MovieClipUses:49 76 140 141 142 144 SS1Used by:146
Symbol 146 MovieClipUses:37 38 40 41 47 79 90 98 106 114 122 130 138 139 145Used by:Timeline
Symbol 147 GraphicUsed by:148 388 433
Symbol 148 ButtonUses:147Used by:198
Symbol 149 MovieClipUsed by:198
Symbol 150 ShapeTweeningUsed by:154
Symbol 151 ShapeTweeningUsed by:154
Symbol 152 ShapeTweeningUsed by:154
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:150 151 152 153Used by:198
Symbol 155 ShapeTweeningUsed by:159
Symbol 156 ShapeTweeningUsed by:159
Symbol 157 ShapeTweeningUsed by:159
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:155 156 157 158Used by:198
Symbol 160 ShapeTweeningUsed by:164
Symbol 161 ShapeTweeningUsed by:164
Symbol 162 ShapeTweeningUsed by:164
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:160 161 162 163Used by:198
Symbol 165 ShapeTweeningUsed by:169
Symbol 166 ShapeTweeningUsed by:169
Symbol 167 ShapeTweeningUsed by:169
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:165 166 167 168Used by:198
Symbol 170 ShapeTweeningUsed by:174
Symbol 171 ShapeTweeningUsed by:174
Symbol 172 ShapeTweeningUsed by:174
Symbol 173 GraphicUsed by:174 328 373 387 420 457 461 484 490 495 518 522 531 551 555 559
Symbol 174 MovieClipUses:170 171 172 173Used by:198
Symbol 175 ShapeTweeningUsed by:179
Symbol 176 ShapeTweeningUsed by:179
Symbol 177 ShapeTweeningUsed by:179
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:175 176 177 178Used by:198
Symbol 180 ShapeTweeningUsed by:184
Symbol 181 ShapeTweeningUsed by:184
Symbol 182 ShapeTweeningUsed by:184
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:180 181 182 183Used by:198
Symbol 185 ShapeTweeningUsed by:189
Symbol 186 ShapeTweeningUsed by:189
Symbol 187 ShapeTweeningUsed by:189
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:185 186 187 188Used by:198
Symbol 190 ShapeTweeningUsed by:194
Symbol 191 ShapeTweeningUsed by:194
Symbol 192 ShapeTweeningUsed by:194
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:190 191 192 193Used by:198
Symbol 195 GraphicUsed by:196
Symbol 196 MovieClipUses:195Used by:197
Symbol 197 MovieClipUses:196Used by:198
Symbol 198 MovieClipUses:148 149 154 159 164 169 174 179 184 189 194 197Used by:Timeline
Symbol 199 MovieClip [ParticleHolder]Used by:438 511 513  Timeline
Symbol 200 GraphicUsed by:204 219
Symbol 201 ShapeTweeningUsed by:204 219
Symbol 202 ShapeTweeningUsed by:204
Symbol 203 GraphicUsed by:204
Symbol 204 MovieClipUses:200 201 202 203Used by:219
Symbol 205 GraphicUsed by:206 219
Symbol 206 MovieClipUses:205Used by:207
Symbol 207 MovieClipUses:206Used by:217
Symbol 208 GraphicUsed by:209 219
Symbol 209 MovieClipUses:208Used by:216
Symbol 210 GraphicUsed by:211 219
Symbol 211 MovieClipUses:210Used by:216
Symbol 212 GraphicUsed by:213 219
Symbol 213 MovieClipUses:212Used by:216
Symbol 214 GraphicUsed by:215 219
Symbol 215 MovieClipUses:214Used by:216
Symbol 216 MovieClipUses:209 211 213 215Used by:217
Symbol 217 MovieClipUses:207 216Used by:218 512
Symbol 218 MovieClipUses:217Used by:219
Symbol 219 ButtonUses:204 218 200 201 205 208 210 212 214Used by:Timeline
Symbol 220 GraphicUsed by:224 230
Symbol 221 ShapeTweeningUsed by:224 230
Symbol 222 ShapeTweeningUsed by:224
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:220 221 222 223Used by:230
Symbol 225 GraphicUsed by:226 230
Symbol 226 MovieClipUses:225Used by:229 437
Symbol 227 GraphicUsed by:228 230
Symbol 228 MovieClipUses:227Used by:229 437
Symbol 229 MovieClipUses:226 228Used by:230
Symbol 230 ButtonUses:224 229 220 221 225 227Used by:Timeline
Symbol 231 GraphicUsed by:235 247
Symbol 232 ShapeTweeningUsed by:235 247
Symbol 233 ShapeTweeningUsed by:235
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:231 232 233 234Used by:247
Symbol 236 GraphicUsed by:237 247
Symbol 237 MovieClipUses:236Used by:238
Symbol 238 MovieClipUses:237Used by:245 366
Symbol 239 GraphicUsed by:240 247
Symbol 240 MovieClipUses:239Used by:245 366
Symbol 241 GraphicUsed by:244 247
Symbol 242 GraphicUsed by:244
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:241 242 243Used by:245 366
Symbol 245 MovieClipUses:238 240 244Used by:246
Symbol 246 MovieClipUses:245Used by:247
Symbol 247 ButtonUses:235 246 231 232 236 239 241Used by:Timeline
Symbol 248 BitmapUsed by:249
Symbol 249 GraphicUses:248Used by:250
Symbol 250 ButtonUses:249Used by:Timeline
Symbol 251 GraphicUsed by:255 256
Symbol 252 ShapeTweeningUsed by:255 256
Symbol 253 ShapeTweeningUsed by:255
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:251 252 253 254Used by:256
Symbol 256 ButtonUses:255 251 252Used by:Timeline
Symbol 257 GraphicUsed by:260
Symbol 258 FontUsed by:259 390 391 392 409 410 416 417 418 440 445 446 447 448 449 450 454 455 456 458 459 460 462 463 464 465 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 485 486 487 488 489 491 492 493 494 501 502 503
Symbol 259 TextUses:258Used by:260
Symbol 260 ButtonUses:257 259Used by:Timeline
Symbol 261 GraphicUsed by:278
Symbol 262 ShapeTweeningUsed by:278
Symbol 263 ShapeTweeningUsed by:278
Symbol 264 ShapeTweeningUsed by:278
Symbol 265 ShapeTweeningUsed by:278
Symbol 266 ShapeTweeningUsed by:278
Symbol 267 ShapeTweeningUsed by:278
Symbol 268 ShapeTweeningUsed by:278
Symbol 269 ShapeTweeningUsed by:278
Symbol 270 ShapeTweeningUsed by:278
Symbol 271 ShapeTweeningUsed by:278
Symbol 272 ShapeTweeningUsed by:278
Symbol 273 ShapeTweeningUsed by:278
Symbol 274 ShapeTweeningUsed by:278
Symbol 275 ShapeTweeningUsed by:278
Symbol 276 ShapeTweeningUsed by:278
Symbol 277 GraphicUsed by:278
Symbol 278 MovieClipUses:261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277Used by:Timeline
Symbol 279 GraphicUsed by:286 321 326 335 340
Symbol 280 FontUsed by:281 283 285 318 319 320 323 324 325 332 333 334 337 338 339
Symbol 281 TextUses:280Used by:286
Symbol 282 GraphicUsed by:286 321 326 335 340
Symbol 283 TextUses:280Used by:286
Symbol 284 GraphicUsed by:286 321 326 335 340
Symbol 285 TextUses:280Used by:286
Symbol 286 MovieClipUses:279 281 282 283 284 285Used by:287
Symbol 287 MovieClip [PointPowerup2]Uses:286Used by:Timeline
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:308
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:308
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:308
Symbol 294 GraphicUsed by:295
Symbol 295 MovieClipUses:294Used by:308
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:308
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:308
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:300Used by:308
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302Used by:308
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:304Used by:308
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:306Used by:308
Symbol 308 MovieClip [BackgroundParticles]Uses:289 291 293 295 297 299 301 303 305 307Used by:Timeline
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:309Used by:311  Timeline
Symbol 311 MovieClip [BrickWall]Uses:310Used by:Timeline
Symbol 312 FontUsed by:313
Symbol 313 EditableTextUses:312Used by:314
Symbol 314 MovieClip [PointParticle]Uses:313Used by:Timeline
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315Used by:317
Symbol 317 MovieClip [Puff]Uses:316Used by:Timeline
Symbol 318 TextUses:280Used by:321
Symbol 319 TextUses:280Used by:321
Symbol 320 TextUses:280Used by:321
Symbol 321 MovieClipUses:279 318 282 319 284 320Used by:322
Symbol 322 MovieClip [PointPowerup]Uses:321Used by:Timeline
Symbol 323 TextUses:280Used by:326
Symbol 324 TextUses:280Used by:326
Symbol 325 TextUses:280Used by:326
Symbol 326 MovieClipUses:279 323 282 324 284 325Used by:327
Symbol 327 MovieClip [UberBrickPowerup]Uses:326Used by:Timeline
Symbol 328 MovieClipUses:173Used by:331 457 461 484 490 495 512 518 522 531 551 555 559  Timeline
Symbol 329 GraphicUsed by:330
Symbol 330 MovieClipUses:329Used by:331
Symbol 331 MovieClip [Shrapnel]Uses:328 330Used by:Timeline
Symbol 332 TextUses:280Used by:335
Symbol 333 TextUses:280Used by:335
Symbol 334 TextUses:280Used by:335
Symbol 335 MovieClipUses:279 332 282 333 284 334Used by:336
Symbol 336 MovieClip [LifePowerup]Uses:335Used by:Timeline
Symbol 337 TextUses:280Used by:340
Symbol 338 TextUses:280Used by:340
Symbol 339 TextUses:280Used by:340
Symbol 340 MovieClipUses:279 337 282 338 284 339Used by:341
Symbol 341 MovieClip [TimePowerup]Uses:340Used by:Timeline
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342Used by:344
Symbol 344 MovieClip [Square]Uses:343Used by:Timeline
Symbol 345 GraphicUsed by:346 374
Symbol 346 MovieClipUses:345Used by:347
Symbol 347 MovieClip [Star]Uses:346Used by:Timeline
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClipUses:348Used by:350  Timeline
Symbol 350 MovieClip [Bomb]Uses:349Used by:Timeline
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351Used by:353
Symbol 353 MovieClip [FlameShot]Uses:352Used by:Timeline
Symbol 354 GraphicUsed by:355
Symbol 355 MovieClipUses:354Used by:356  Timeline
Symbol 356 MovieClip [GreenOrb]Uses:355Used by:Timeline
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClipUses:357Used by:359
Symbol 359 MovieClip [GreenShot]Uses:358Used by:Timeline
Symbol 360 GraphicUsed by:361
Symbol 361 MovieClipUses:360Used by:362  Timeline
Symbol 362 MovieClip [PowerupOrb]Uses:361Used by:Timeline
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClipUses:363Used by:365
Symbol 365 MovieClip [BlueShot]Uses:364Used by:Timeline
Symbol 366 MovieClipUses:238 240 244Used by:367
Symbol 367 MovieClip [Fairy]Uses:366Used by:Timeline
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClipUses:368Used by:370 381 421
Symbol 370 MovieClip [Hit]Uses:369Used by:Timeline
Symbol 371 GraphicUsed by:372
Symbol 372 MovieClipUses:371Used by:381 422
Symbol 373 MovieClipUses:173Used by:381
Symbol 374 MovieClipUses:345Used by:381
Symbol 375 GraphicUsed by:376
Symbol 376 MovieClipUses:375Used by:381
Symbol 377 GraphicUsed by:378
Symbol 378 MovieClipUses:377Used by:381
Symbol 379 GraphicUsed by:380
Symbol 380 MovieClipUses:379Used by:381
Symbol 381 MovieClipUses:372 373 374 376 378 380 369Used by:382
Symbol 382 MovieClip [Particle]Uses:381Used by:Timeline
Symbol 383 GraphicUsed by:384
Symbol 384 MovieClipUses:383Used by:419 504
Symbol 385 GraphicUsed by:386
Symbol 386 MovieClipUses:385Used by:389 419 504
Symbol 387 MovieClipUses:173Used by:408 413 419
Symbol 388 MovieClipUses:147Used by:389
Symbol 389 MovieClipUses:388 386Used by:419
Symbol 390 TextUses:258Used by:419
Symbol 391 TextUses:258Used by:419
Symbol 392 TextUses:258Used by:419
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClipUses:393Used by:408
Symbol 395 GraphicUsed by:396
Symbol 396 MovieClipUses:395Used by:408 413
Symbol 397 GraphicUsed by:407
Symbol 398 GraphicUsed by:407
Symbol 399 GraphicUsed by:407
Symbol 400 GraphicUsed by:407
Symbol 401 GraphicUsed by:407
Symbol 402 GraphicUsed by:407
Symbol 403 GraphicUsed by:407
Symbol 404 GraphicUsed by:407
Symbol 405 GraphicUsed by:407
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClipUses:397 398 399 400 401 402 403 404 405 406Used by:408 413
Symbol 408 MovieClipUses:387 394 396 407Used by:419
Symbol 409 TextUses:258Used by:419
Symbol 410 TextUses:258Used by:419
Symbol 411 GraphicUsed by:412
Symbol 412 MovieClipUses:411Used by:413
Symbol 413 MovieClipUses:387 412 396 407Used by:419
Symbol 414 GraphicUsed by:415 498 499 500
Symbol 415 ButtonUses:414Used by:419
Symbol 416 TextUses:258Used by:419
Symbol 417 TextUses:258Used by:419
Symbol 418 TextUses:258Used by:419
Symbol 419 MovieClip [Gadget]Uses:384 386 387 389 390 391 392 408 409 410 413 415 416 417 418Used by:Timeline
Symbol 420 MovieClip [LifeBar]Uses:173Used by:Timeline
Symbol 421 MovieClip [DeathHit]Uses:369Used by:Timeline
Symbol 422 MovieClip [Sparkle]Uses:372Used by:Timeline
Symbol 423 GraphicUsed by:424
Symbol 424 MovieClipUses:423Used by:425
Symbol 425 MovieClip [MMParticle]Uses:424Used by:Timeline
Symbol 426 Sound [Stud]Used by:Timeline
Symbol 427 Sound [Octopus]Used by:Timeline
Symbol 428 Sound [Legion]Used by:Timeline
Symbol 429 Sound [MinisterOfPain]Used by:Timeline
Symbol 430 GraphicUsed by:433
Symbol 431 GraphicUsed by:433
Symbol 432 GraphicUsed by:433
Symbol 433 MovieClipUses:147 430 431 432Used by:Timeline
Symbol 434 GraphicUsed by:435
Symbol 435 MovieClipUses:434Used by:436
Symbol 436 MovieClipUses:435Used by:437
Symbol 437 MovieClipUses:226 228 436Used by:438
Symbol 438 MovieClipUses:199 437Used by:439
Symbol 439 MovieClipUses:438Used by:Timeline
Symbol 440 TextUses:258Used by:451
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClipUses:441Used by:451 524 525
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:443Used by:451 524 525
Symbol 445 EditableTextUses:258Used by:451
Symbol 446 EditableTextUses:258Used by:451
Symbol 447 TextUses:258Used by:451
Symbol 448 EditableTextUses:258Used by:451
Symbol 449 EditableTextUses:258Used by:451
Symbol 450 TextUses:258Used by:451
Symbol 451 MovieClipUses:440 442 444 445 446 447 448 449 450Used by:Timeline
Symbol 452 FontUsed by:453 515 516 517 519 520 521 523 526 528 529 530 532 533 534 535 536 544 545 546 547 548 549 550 552 553 554 556 557 558
Symbol 453 TextUses:452Used by:Timeline
Symbol 454 TextUses:258Used by:457
Symbol 455 TextUses:258Used by:457
Symbol 456 TextUses:258Used by:457
Symbol 457 ButtonUses:328 454 455 456 173Used by:Timeline
Symbol 458 TextUses:258Used by:461
Symbol 459 TextUses:258Used by:461
Symbol 460 TextUses:258Used by:461
Symbol 461 ButtonUses:328 458 459 460 173Used by:Timeline
Symbol 462 TextUses:258Used by:Timeline
Symbol 463 TextUses:258Used by:Timeline
Symbol 464 TextUses:258Used by:Timeline
Symbol 465 TextUses:258Used by:Timeline
Symbol 466 BitmapUsed by:467
Symbol 467 GraphicUses:466Used by:468 507 508
Symbol 468 ButtonUses:467Used by:Timeline
Symbol 469 TextUses:258Used by:Timeline
Symbol 470 TextUses:258Used by:Timeline
Symbol 471 TextUses:258Used by:Timeline
Symbol 472 EditableTextUses:258Used by:Timeline
Symbol 473 TextUses:258Used by:Timeline
Symbol 474 EditableTextUses:258Used by:Timeline
Symbol 475 TextUses:258Used by:Timeline
Symbol 476 EditableTextUses:258Used by:Timeline
Symbol 477 TextUses:258Used by:Timeline
Symbol 478 EditableTextUses:258Used by:Timeline
Symbol 479 EditableTextUses:258Used by:Timeline
Symbol 480 TextUses:258Used by:Timeline
Symbol 481 TextUses:258Used by:484
Symbol 482 TextUses:258Used by:484
Symbol 483 TextUses:258Used by:484
Symbol 484 ButtonUses:328 481 482 483 173Used by:Timeline
Symbol 485 EditableTextUses:258Used by:Timeline
Symbol 486 EditableTextUses:258Used by:Timeline
Symbol 487 TextUses:258Used by:490
Symbol 488 TextUses:258Used by:490
Symbol 489 TextUses:258Used by:490
Symbol 490 ButtonUses:328 487 488 489 173Used by:Timeline
Symbol 491 TextUses:258Used by:495
Symbol 492 TextUses:258Used by:495
Symbol 493 TextUses:258Used by:495
Symbol 494 TextUses:258Used by:495
Symbol 495 ButtonUses:328 491 492 493 173 494Used by:Timeline
Symbol 496 GraphicUsed by:497
Symbol 497 MovieClipUses:496Used by:504
Symbol 498 ButtonUses:414Used by:504
Symbol 499 ButtonUses:414Used by:504
Symbol 500 ButtonUses:414Used by:504
Symbol 501 TextUses:258Used by:504
Symbol 502 TextUses:258Used by:504
Symbol 503 TextUses:258Used by:504
Symbol 504 MovieClipUses:384 386 497 498 499 500 501 502 503Used by:Timeline
Symbol 505 FontUsed by:506
Symbol 506 EditableTextUses:505Used by:Timeline
Symbol 507 MovieClipUses:467Used by:508
Symbol 508 ButtonUses:507 467Used by:Timeline
Symbol 509 GraphicUsed by:510
Symbol 510 MovieClipUses:509Used by:513
Symbol 511 MovieClipUses:199Used by:513
Symbol 512 MovieClipUses:328 217Used by:513
Symbol 513 MovieClipUses:510 199 511 512Used by:514
Symbol 514 MovieClipUses:513Used by:Timeline
Symbol 515 TextUses:452Used by:518
Symbol 516 TextUses:452Used by:518
Symbol 517 TextUses:452Used by:518
Symbol 518 ButtonUses:328 515 516 517 173Used by:Timeline
Symbol 519 TextUses:452Used by:522
Symbol 520 TextUses:452Used by:522
Symbol 521 TextUses:452Used by:522
Symbol 522 ButtonUses:328 519 520 521 173Used by:Timeline
Symbol 523 TextUses:452Used by:Timeline
Symbol 524 MovieClipUses:442 444Used by:Timeline
Symbol 525 MovieClipUses:442 444Used by:Timeline
Symbol 526 TextUses:452Used by:527
Symbol 527 MovieClipUses:526Used by:Timeline
Symbol 528 TextUses:452Used by:531
Symbol 529 TextUses:452Used by:531
Symbol 530 TextUses:452Used by:531
Symbol 531 ButtonUses:328 528 529 530 173Used by:Timeline
Symbol 532 TextUses:452Used by:Timeline
Symbol 533 TextUses:452Used by:Timeline
Symbol 534 EditableTextUses:452Used by:Timeline
Symbol 535 EditableTextUses:452Used by:Timeline
Symbol 536 EditableTextUses:452Used by:Timeline
Symbol 537 GraphicUsed by:538
Symbol 538 MovieClipUses:537Used by:543
Symbol 539 GraphicUsed by:543
Symbol 540 GraphicUsed by:541
Symbol 541 MovieClipUses:540Used by:542
Symbol 542 MovieClipUses:541Used by:543
Symbol 543 MovieClipUses:538 539 542Used by:Timeline
Symbol 544 TextUses:452Used by:Timeline
Symbol 545 EditableTextUses:452Used by:Timeline
Symbol 546 TextUses:452Used by:Timeline
Symbol 547 TextUses:452Used by:551
Symbol 548 TextUses:452Used by:551
Symbol 549 TextUses:452Used by:551
Symbol 550 TextUses:452Used by:551
Symbol 551 ButtonUses:328 547 548 549 173 550Used by:Timeline
Symbol 552 TextUses:452Used by:555
Symbol 553 TextUses:452Used by:555
Symbol 554 TextUses:452Used by:555
Symbol 555 ButtonUses:328 552 553 554 173Used by:Timeline
Symbol 556 TextUses:452Used by:559
Symbol 557 TextUses:452Used by:559
Symbol 558 TextUses:452Used by:559
Symbol 559 ButtonUses:328 556 557 558 173Used by:Timeline
Streaming Sound 1Used by:Symbol 145 MovieClip

Instance Names

"MMParticles"Frame 3Symbol 199 MovieClip [ParticleHolder]
"BackLight"Frame 10Symbol 433 MovieClip
"CamShaker"Frame 10Symbol 439 MovieClip
"ScoreText"Frame 80Symbol 472 EditableText
"OrbsText"Frame 80Symbol 474 EditableText
"PowerupText"Frame 80Symbol 476 EditableText
"TimeText"Frame 80Symbol 478 EditableText
"ScoreText"Frame 84Symbol 479 EditableText
"TimeBonusText"Frame 84Symbol 485 EditableText
"SpeedBonusText"Frame 84Symbol 486 EditableText
"SubmitButton"Frame 84Symbol 490 Button
"MenuBox"Frame 86Symbol 504 MovieClip
"Directions"Frame 86Symbol 506 EditableText
"BrandingButton"Frame 86Symbol 508 Button
"Gadgets"Frame 86Symbol 199 MovieClip [ParticleHolder]
"Harmless"Frame 86Symbol 199 MovieClip [ParticleHolder]
"Attacks"Frame 86Symbol 199 MovieClip [ParticleHolder]
"Fairies"Frame 86Symbol 199 MovieClip [ParticleHolder]
"Deleter"Frame 94Symbol 328 MovieClip
"Cam"Frame 94Symbol 514 MovieClip
"ScoreText"Frame 168Symbol 534 EditableText
"MinText"Frame 168Symbol 535 EditableText
"SecText"Frame 168Symbol 536 EditableText
"LifeBar"Frame 168Symbol 543 MovieClip
"ScoreText"Frame 258Symbol 545 EditableText
"SubmitButton"Frame 258Symbol 551 Button
"barmask"Symbol 47 MovieClip Frame 1Symbol 43 MovieClip
"LogoParticleHolder"Symbol 198 MovieClip Frame 1Symbol 149 MovieClip
"LogoP"Symbol 198 MovieClip Frame 5Symbol 154 MovieClip
"LogoR"Symbol 198 MovieClip Frame 13Symbol 164 MovieClip
"LogoT"Symbol 198 MovieClip Frame 17Symbol 169 MovieClip
"LogoI"Symbol 198 MovieClip Frame 21Symbol 174 MovieClip
"LogoA"Symbol 198 MovieClip Frame 25Symbol 179 MovieClip
"LogoM"Symbol 198 MovieClip Frame 29Symbol 184 MovieClip
"LogoA2"Symbol 198 MovieClip Frame 33Symbol 179 MovieClip
"LogoS"Symbol 198 MovieClip Frame 37Symbol 189 MovieClip
"LogoL"Symbol 198 MovieClip Frame 41Symbol 194 MovieClip
"LogoCom"Symbol 198 MovieClip Frame 65Symbol 197 MovieClip
"Head"Symbol 217 MovieClip Frame 1Symbol 216 MovieClip
"Wings"Symbol 245 MovieClip Frame 1Symbol 238 MovieClip
"Body"Symbol 245 MovieClip Frame 1Symbol 240 MovieClip
"Eyes"Symbol 245 MovieClip Frame 1Symbol 244 MovieClip
"PointParticleText"Symbol 314 MovieClip [PointParticle] Frame 1Symbol 313 EditableText
"Square"Symbol 344 MovieClip [Square] Frame 1Symbol 343 MovieClip
"Star"Symbol 347 MovieClip [Star] Frame 1Symbol 346 MovieClip
"Bomb"Symbol 350 MovieClip [Bomb] Frame 1Symbol 349 MovieClip
"Orb"Symbol 356 MovieClip [GreenOrb] Frame 1Symbol 355 MovieClip
"Orb"Symbol 362 MovieClip [PowerupOrb] Frame 1Symbol 361 MovieClip
"Wings"Symbol 366 MovieClip Frame 1Symbol 238 MovieClip
"Body"Symbol 366 MovieClip Frame 1Symbol 240 MovieClip
"Eyes"Symbol 366 MovieClip Frame 1Symbol 244 MovieClip
"Graphic"Symbol 367 MovieClip [Fairy] Frame 1Symbol 366 MovieClip
"Shape"Symbol 382 MovieClip [Particle] Frame 1Symbol 381 MovieClip
"Shape"Symbol 382 MovieClip [Particle] Frame 37Symbol 381 MovieClip
"Shape"Symbol 382 MovieClip [Particle] Frame 80Symbol 381 MovieClip
"Shape"Symbol 382 MovieClip [Particle] Frame 134Symbol 381 MovieClip
"Shape"Symbol 382 MovieClip [Particle] Frame 177Symbol 381 MovieClip
"Bar"Symbol 389 MovieClip Frame 1Symbol 388 MovieClip
"Slider"Symbol 389 MovieClip Frame 1Symbol 386 MovieClip
"DragBounds"Symbol 408 MovieClip Frame 1Symbol 387 MovieClip
"Tray"Symbol 408 MovieClip Frame 1Symbol 387 MovieClip
"Star"Symbol 408 MovieClip Frame 1Symbol 396 MovieClip
"Ring"Symbol 408 MovieClip Frame 1Symbol 396 MovieClip
"Circle"Symbol 408 MovieClip Frame 1Symbol 396 MovieClip
"Square"Symbol 408 MovieClip Frame 1Symbol 396 MovieClip
"Teardrop"Symbol 408 MovieClip Frame 1Symbol 396 MovieClip
"Attack1Placer"Symbol 408 MovieClip Frame 1Symbol 407 MovieClip
"Attack2Placer"Symbol 408 MovieClip Frame 1Symbol 407 MovieClip
"Attack3Placer"Symbol 408 MovieClip Frame 1Symbol 407 MovieClip
"Attack4Placer"Symbol 408 MovieClip Frame 1Symbol 407 MovieClip
"Attack5Placer"Symbol 408 MovieClip Frame 1Symbol 407 MovieClip
"DragBounds"Symbol 413 MovieClip Frame 1Symbol 387 MovieClip
"Tray"Symbol 413 MovieClip Frame 1Symbol 387 MovieClip
"Loop"Symbol 413 MovieClip Frame 1Symbol 396 MovieClip
"Flower"Symbol 413 MovieClip Frame 1Symbol 396 MovieClip
"Curved"Symbol 413 MovieClip Frame 1Symbol 396 MovieClip
"ZigZag"Symbol 413 MovieClip Frame 1Symbol 396 MovieClip
"Straight"Symbol 413 MovieClip Frame 1Symbol 396 MovieClip
"Attack1Placer"Symbol 413 MovieClip Frame 1Symbol 407 MovieClip
"Attack2Placer"Symbol 413 MovieClip Frame 1Symbol 407 MovieClip
"Attack3Placer"Symbol 413 MovieClip Frame 1Symbol 407 MovieClip
"Attack4Placer"Symbol 413 MovieClip Frame 1Symbol 407 MovieClip
"Attack5Placer"Symbol 413 MovieClip Frame 1Symbol 407 MovieClip
"Graphic"Symbol 419 MovieClip [Gadget] Frame 1Symbol 386 MovieClip
"FairyWindow"Symbol 419 MovieClip [Gadget] Frame 1Symbol 387 MovieClip
"GreenBar"Symbol 419 MovieClip [Gadget] Frame 1Symbol 389 MovieClip
"BlueBar"Symbol 419 MovieClip [Gadget] Frame 1Symbol 389 MovieClip
"RedBar"Symbol 419 MovieClip [Gadget] Frame 1Symbol 389 MovieClip
"AttackPie"Symbol 419 MovieClip [Gadget] Frame 1Symbol 413 MovieClip
"NewFairyButton"Symbol 419 MovieClip [Gadget] Frame 1Symbol 415 Button
"StrSpdBar"Symbol 419 MovieClip [Gadget] Frame 1Symbol 389 MovieClip
"Bar"Symbol 437 MovieClip Frame 1Symbol 226 MovieClip
"Board"Symbol 437 MovieClip Frame 1Symbol 228 MovieClip
"Burners"Symbol 437 MovieClip Frame 1Symbol 436 MovieClip
"FarParticles"Symbol 438 MovieClip Frame 1Symbol 199 MovieClip [ParticleHolder]
"Squares"Symbol 438 MovieClip Frame 1Symbol 199 MovieClip [ParticleHolder]
"Surfer"Symbol 438 MovieClip Frame 1Symbol 437 MovieClip
"Cam"Symbol 439 MovieClip Frame 1Symbol 438 MovieClip
"NewFairyButton"Symbol 504 MovieClip Frame 1Symbol 498 Button
"NewFairyButton"Symbol 504 MovieClip Frame 1Symbol 499 Button
"MainMenuButton"Symbol 504 MovieClip Frame 1Symbol 500 Button
"Harmless"Symbol 511 MovieClip Frame 1Symbol 199 MovieClip [ParticleHolder]
"Items"Symbol 511 MovieClip Frame 1Symbol 199 MovieClip [ParticleHolder]
"Proj"Symbol 511 MovieClip Frame 1Symbol 199 MovieClip [ParticleHolder]
"Hit"Symbol 512 MovieClip Frame 1Symbol 328 MovieClip
"Graphic"Symbol 512 MovieClip Frame 1Symbol 217 MovieClip
"Background"Symbol 513 MovieClip Frame 1Symbol 510 MovieClip
"BackgroundParticles"Symbol 513 MovieClip Frame 1Symbol 199 MovieClip [ParticleHolder]
"MovingCamera"Symbol 513 MovieClip Frame 1Symbol 511 MovieClip
"Destroyer"Symbol 513 MovieClip Frame 1Symbol 512 MovieClip
"Hero"Symbol 514 MovieClip Frame 1Symbol 513 MovieClip
"Mask"Symbol 543 MovieClip Frame 1Symbol 538 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 131 bytes "..$1$zx$OkTYcz.H/2RG2awe/cb671."
ExportAssets (56)Timeline Frame 1Symbol 1 as "ShotSound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "PopSound"
ExportAssets (56)Timeline Frame 1Symbol 3 as "ImpactSound"
ExportAssets (56)Timeline Frame 1Symbol 4 as "HitSound"
ExportAssets (56)Timeline Frame 1Symbol 5 as "Firework4"
ExportAssets (56)Timeline Frame 1Symbol 6 as "Firework3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "Firework2"
ExportAssets (56)Timeline Frame 1Symbol 8 as "Firework1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "LogoParticle"
ExportAssets (56)Timeline Frame 3Symbol 199 as "ParticleHolder"
ExportAssets (56)Timeline Frame 3Symbol 287 as "PointPowerup2"
ExportAssets (56)Timeline Frame 3Symbol 308 as "BackgroundParticles"
ExportAssets (56)Timeline Frame 3Symbol 311 as "BrickWall"
ExportAssets (56)Timeline Frame 3Symbol 314 as "PointParticle"
ExportAssets (56)Timeline Frame 3Symbol 317 as "Puff"
ExportAssets (56)Timeline Frame 3Symbol 322 as "PointPowerup"
ExportAssets (56)Timeline Frame 3Symbol 327 as "UberBrickPowerup"
ExportAssets (56)Timeline Frame 3Symbol 331 as "Shrapnel"
ExportAssets (56)Timeline Frame 3Symbol 336 as "LifePowerup"
ExportAssets (56)Timeline Frame 3Symbol 341 as "TimePowerup"
ExportAssets (56)Timeline Frame 3Symbol 344 as "Square"
ExportAssets (56)Timeline Frame 3Symbol 347 as "Star"
ExportAssets (56)Timeline Frame 3Symbol 350 as "Bomb"
ExportAssets (56)Timeline Frame 3Symbol 353 as "FlameShot"
ExportAssets (56)Timeline Frame 3Symbol 356 as "GreenOrb"
ExportAssets (56)Timeline Frame 3Symbol 359 as "GreenShot"
ExportAssets (56)Timeline Frame 3Symbol 362 as "PowerupOrb"
ExportAssets (56)Timeline Frame 3Symbol 365 as "BlueShot"
ExportAssets (56)Timeline Frame 3Symbol 367 as "Fairy"
ExportAssets (56)Timeline Frame 3Symbol 370 as "Hit"
ExportAssets (56)Timeline Frame 3Symbol 382 as "Particle"
ExportAssets (56)Timeline Frame 3Symbol 419 as "Gadget"
ExportAssets (56)Timeline Frame 3Symbol 420 as "LifeBar"
ExportAssets (56)Timeline Frame 3Symbol 421 as "DeathHit"
ExportAssets (56)Timeline Frame 3Symbol 422 as "Sparkle"
ExportAssets (56)Timeline Frame 3Symbol 425 as "MMParticle"
ExportAssets (56)Timeline Frame 3Symbol 426 as "Stud"
ExportAssets (56)Timeline Frame 4Symbol 427 as "Octopus"
ExportAssets (56)Timeline Frame 5Symbol 428 as "Legion"
ExportAssets (56)Timeline Frame 7Symbol 429 as "MinisterOfPain"

Labels

"Dump"Frame 3
"MMLoad"Frame 6
"MMStart"Frame 7
"MMMain"Frame 8
"MMLoop"Frame 9
"ssMenuLoad"Frame 10
"ssMenuMain"Frame 11
"SSMenuLoop"Frame 12
"SSBegin"Frame 13
"SSGameLoad"Frame 80
"SSGameMain"Frame 81
"SSGameLoop"Frame 82
"SSGameOverStart"Frame 83
"SSGameOver"Frame 84
"PGLoad"Frame 86
"PGMain"Frame 87
"PGLoop"Frame 88
"PGVictory"Frame 92
"BSMenuLoad"Frame 94
"BSMenu"Frame 95
"BSMenuLoop"Frame 96
"BSBegin"Frame 97
"BSLoad"Frame 168
"BSMain"Frame 169
"BSLoop"Frame 170
"BSGameOverStart"Frame 171
"BSGameOver"Frame 258
"BSGameOverLoop"Frame 259
"Run"Symbol 217 MovieClip Frame 1
"Jump"Symbol 217 MovieClip Frame 11
"Flap"Symbol 238 MovieClip Frame 1
"Open"Symbol 244 MovieClip Frame 1
"Blink"Symbol 244 MovieClip Frame 3
"Load"Symbol 287 MovieClip [PointPowerup2] Frame 1
"Main"Symbol 287 MovieClip [PointPowerup2] Frame 2
"Loop"Symbol 287 MovieClip [PointPowerup2] Frame 3
"Death"Symbol 287 MovieClip [PointPowerup2] Frame 4
"Load"Symbol 311 MovieClip [BrickWall] Frame 1
"Main"Symbol 311 MovieClip [BrickWall] Frame 2
"Loop"Symbol 311 MovieClip [BrickWall] Frame 3
"Load"Symbol 314 MovieClip [PointParticle] Frame 1
"Main"Symbol 314 MovieClip [PointParticle] Frame 2
"Loop"Symbol 314 MovieClip [PointParticle] Frame 3
"Load"Symbol 322 MovieClip [PointPowerup] Frame 1
"Main"Symbol 322 MovieClip [PointPowerup] Frame 2
"Loop"Symbol 322 MovieClip [PointPowerup] Frame 3
"Death"Symbol 322 MovieClip [PointPowerup] Frame 4
"Load"Symbol 327 MovieClip [UberBrickPowerup] Frame 1
"Main"Symbol 327 MovieClip [UberBrickPowerup] Frame 2
"Loop"Symbol 327 MovieClip [UberBrickPowerup] Frame 3
"Death"Symbol 327 MovieClip [UberBrickPowerup] Frame 4
"Load"Symbol 336 MovieClip [LifePowerup] Frame 1
"Main"Symbol 336 MovieClip [LifePowerup] Frame 2
"Loop"Symbol 336 MovieClip [LifePowerup] Frame 3
"Death"Symbol 336 MovieClip [LifePowerup] Frame 4
"Load"Symbol 341 MovieClip [TimePowerup] Frame 1
"Main"Symbol 341 MovieClip [TimePowerup] Frame 2
"Loop"Symbol 341 MovieClip [TimePowerup] Frame 3
"Death"Symbol 341 MovieClip [TimePowerup] Frame 4
"Load"Symbol 344 MovieClip [Square] Frame 1
"Main"Symbol 344 MovieClip [Square] Frame 2
"Loop"Symbol 344 MovieClip [Square] Frame 3
"Load"Symbol 350 MovieClip [Bomb] Frame 1
"Main"Symbol 350 MovieClip [Bomb] Frame 2
"Loop"Symbol 350 MovieClip [Bomb] Frame 3
"Over"Symbol 353 MovieClip [FlameShot] Frame 1
"In"Symbol 353 MovieClip [FlameShot] Frame 13
"Out"Symbol 353 MovieClip [FlameShot] Frame 25
"Load"Symbol 356 MovieClip [GreenOrb] Frame 1
"Main"Symbol 356 MovieClip [GreenOrb] Frame 2
"Loop"Symbol 356 MovieClip [GreenOrb] Frame 3
"Over"Symbol 359 MovieClip [GreenShot] Frame 1
"In"Symbol 359 MovieClip [GreenShot] Frame 13
"Out"Symbol 359 MovieClip [GreenShot] Frame 25
"Load"Symbol 362 MovieClip [PowerupOrb] Frame 1
"Main"Symbol 362 MovieClip [PowerupOrb] Frame 2
"Loop"Symbol 362 MovieClip [PowerupOrb] Frame 3
"Over"Symbol 365 MovieClip [BlueShot] Frame 1
"In"Symbol 365 MovieClip [BlueShot] Frame 28
"Out"Symbol 365 MovieClip [BlueShot] Frame 55
"Load"Symbol 367 MovieClip [Fairy] Frame 1
"Main"Symbol 367 MovieClip [Fairy] Frame 2
"Loop"Symbol 367 MovieClip [Fairy] Frame 3
"Pause"Symbol 367 MovieClip [Fairy] Frame 4
"Square"Symbol 381 MovieClip Frame 1
"Circle"Symbol 381 MovieClip Frame 2
"Teardrop"Symbol 381 MovieClip Frame 3
"Ring"Symbol 381 MovieClip Frame 4
"Star"Symbol 381 MovieClip Frame 5
"Straight"Symbol 382 MovieClip [Particle] Frame 1
"ZigZag"Symbol 382 MovieClip [Particle] Frame 37
"Flower"Symbol 382 MovieClip [Particle] Frame 80
"Curved"Symbol 382 MovieClip [Particle] Frame 134
"Loop"Symbol 382 MovieClip [Particle] Frame 177
"Straight"Symbol 407 MovieClip Frame 1
"Curved"Symbol 407 MovieClip Frame 2
"ZigZag"Symbol 407 MovieClip Frame 3
"Loop"Symbol 407 MovieClip Frame 4
"Flower"Symbol 407 MovieClip Frame 5
"Teardrop"Symbol 407 MovieClip Frame 8
"Star"Symbol 407 MovieClip Frame 9
"Ring"Symbol 407 MovieClip Frame 10
"Circle"Symbol 407 MovieClip Frame 11
"Square"Symbol 407 MovieClip Frame 12
"Load"Symbol 419 MovieClip [Gadget] Frame 1
"Main"Symbol 419 MovieClip [Gadget] Frame 2
"Loop"Symbol 419 MovieClip [Gadget] Frame 3
"Normal"Symbol 433 MovieClip Frame 1
"Red"Symbol 433 MovieClip Frame 5
"Green"Symbol 433 MovieClip Frame 10
"Blue"Symbol 433 MovieClip Frame 15
"Load"Symbol 437 MovieClip Frame 1
"Main"Symbol 437 MovieClip Frame 2
"Loop"Symbol 437 MovieClip Frame 3
"Load"Symbol 438 MovieClip Frame 1
"Main"Symbol 438 MovieClip Frame 2
"Loop"Symbol 438 MovieClip Frame 3
"Normal"Symbol 439 MovieClip Frame 1
"Shake"Symbol 439 MovieClip Frame 3
"Variables"Symbol 512 MovieClip Frame 1
"Main"Symbol 512 MovieClip Frame 2
"Loop"Symbol 512 MovieClip Frame 3
"Variables"Symbol 513 MovieClip Frame 1
"Main"Symbol 513 MovieClip Frame 2
"Loop"Symbol 513 MovieClip Frame 3
"Load"Symbol 514 MovieClip Frame 1
"Normal"Symbol 514 MovieClip Frame 2
"Loop"Symbol 514 MovieClip Frame 3
"CameraShake"Symbol 514 MovieClip Frame 4




http://swfchan.com/6/25923/info.shtml
Created: 23/5 -2019 06:24:50 Last modified: 23/5 -2019 06:24:50 Server time: 17/05 -2024 07:00:51