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

<div style="position:absolute;top:-99px;left:-99px;"><img src="https://tools.swfchan.com/stathit.asp?noj=FRM42358062-17DC&rnd=42358062" width="1" height="1"></div>

armorgames cursor-attack-3-ad-f-1815.swf

This is the info page for
Flash #263895

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


Text
CURSOR ATTACK 3

Use the arrows to scroll through
the instructions

1/18

There are 55 levels, 10 avaiable from
the start. You must complete at least 8
of these levels to get the next 10. Use the
left and right arrows to change level.

2/18

Move with the mouse. Turn with left & right
or A & D. Click to shoot. Press space to restart
the level.

3/18

Collect all the orbs to complete the level

It doesn't matter if you lose orbs, just as long as
you collect them all.

4/18

Avoid walls

5/18

Sometimes, you will need to hover over this
orb to start the level

6/18

Shoot spheres to release orbs. Different spheres have
different effects

Most spheres can release orbs

7/18

If you shoot a green sphere, it will take orbs away
from you. But if you dont have any it will kill you.

8/18

Meteors will kill you if you touch them

9/18

Avoid the bullets of shooting orbs

10/18

If you shoot a cloud, it will grow, blocking
your view. It will eventually deflate.

11/18

If you shoot a
bomb, or move
into it, it will
explode.

12/18

Blade spheres will follow you around, but if they
hit you, you die.

13/18

Crystal spheres will make you grow.

14/18

These will make you disappear,
or make you hard to see

15/18

These will make you spin around, without
being able to control it.

16/18

You can submit your score at any time in the
game, but you can only submit it 3 times.
After that, you must clear data on options
submit it again.

17/18

If the game doesn't work, right click
and choose settings. Make sure you have
at least 10kb of space available, then close
the game to make it work.

18/18

testing

music

sponsor

This version is exlusive to www.armorgames.com

NAME:

SCORE:

score sent

TIME

ORBS

SCORE

TOTAL SCORE:

Initializing Sounds...

The Best Source For Free
Games!

ActionScript [AS1/AS2]

Frame 1
function makecursor() { xspeed = 0; yspeed = 0; spx = 0; spy = 0; speedx = 0; speedy = 0; ease = 2; reload = 0; rspeed = 3; rotspeed = 0; spinspeed = 0; free = true; locked = false; pressed = false; cscale = 100; opac = 100; paused = false; } function makesavedata() { if (savedata.data.reversed == undefined) { savedata.data.reversed = 1; } reversed = savedata.data.reversed; if (savedata.data.level == undefined) { savedata.data.level = 1; } level = savedata.data.level; if (savedata.data.stage == undefined) { savedata.data.stage = 1; } stage = savedata.data.stage; if (savedata.data.maxlevel == undefined) { savedata.data.maxlevel = 10; } maxlevel = savedata.data.maxlevel; if (savedata.data.complevels == undefined) { savedata.data.complevels = 0; } complevels = savedata.data.complevels; if (savedata.data.orbarray == undefined) { orbps = new Array(); i = 0; while (i < levelcount) { orbps.push(0); i++; } savedata.data.orbarray = orbps; } else { orbps = savedata.data.orbarray; } if (savedata.data.timearray == undefined) { ltimes = new Array(); i = 0; while (i < levelcount) { ltimes.push(999); i++; } savedata.data.timearray = ltimes; } else { ltimes = savedata.data.timearray; } if (savedata.data.pointsarray == undefined) { lpoints = new Array(); i = 0; while (i < levelcount) { lpoints.push((orbps[i] / ltimes[i]) * 100); i++; } savedata.data.pointsarray = lpoints; } else { lpoints = savedata.data.pointsarray; } if (savedata.data.curbg == undefined) { savedata.data.curbg = 1; } curbg = savedata.data.curbg; if (savedata.data.autobac == undefined) { savedata.data.autobac = true; } autobac = savedata.data.autobac; if (savedata.data.sentscore == undefined) { savedata.data.sentscore = false; } sentscore = savedata.data.sentscore; if (savedata.data.scoretimes == undefined) { savedata.data.scoretimes = 3; } scoretimes = savedata.data.scoretimes; } function doSomething() { } function changequal1() { _root._quality = "low"; } function changequal2() { _root._quality = "medium"; } function changequal3() { _root._quality = "high"; } _root.gamename = "Cursor_Attack_3"; movecursor = function () { if (!(_root._currentframe === 6)) { Mouse.hide(); } spx = cursor._x; spy = cursor._y; xspeed = (_xmouse - cursor._x) / ease; yspeed = (_ymouse - cursor._y) / ease; cursor._x = cursor._x + xspeed; cursor._y = cursor._y + yspeed; speedx = cursor._x - spx; speedy = cursor._y - spy; cursor._rotation = cursor._rotation + rotspeed; cursor._xscale = cursor._xscale + ((cscale - cursor._xscale) / 10); cursor._yscale = cursor._yscale + ((cscale - cursor._yscale) / 10); cursor._alpha = cursor._alpha + ((opac - cursor._alpha) / 10); if (locked) { cursor.xdif = ldown._x - cursor._x; cursor.ydif = ldown._y - cursor._y; cursor._rotation = (57.2957795130823 * Math.atan2(cursor.ydif, cursor.xdif)) + 90; } else if (spinspeed == 0) { if (reversed == 1) { if (Key.isDown(37) || (Key.isDown(65))) { if (rotspeed > -15) { rotspeed = rotspeed - 3; } } else if (Key.isDown(39) || (Key.isDown(68))) { if (rotspeed < 15) { rotspeed = rotspeed + 3; } } else { rotspeed = rotspeed * 0.5; } } else if (Key.isDown(39) || (Key.isDown(68))) { if (rotspeed > -15) { rotspeed = rotspeed - 3; } } else if (Key.isDown(37) || (Key.isDown(65))) { if (rotspeed < 15) { rotspeed = rotspeed + 3; } } else { rotspeed = rotspeed * 0.5; } } else { cursor._rotation = cursor._rotation + spinspeed; } reload++; if (reload >= rspeed) { if (pressed) { if (!dead) { if (shootable) { shoot(cursor._x, cursor._y, cursor._rotation, 1); } reload = 0; if (_currentframe == 56) { vtime--; } } } } }; levelcount = 55; sfxon = true; soundon = true; compgame = false; savedata = SharedObject.getLocal("ca3_savegame"); makesavedata(); makecursor(); MENU = new ContextMenu(); MENU.hideBuiltInItems(); Functioned = new ContextMenuItem("Paul Hogg 2008 \u00A9", doSomething); lowqual = new ContextMenuItem("Low Quality", changequal1); medqual = new ContextMenuItem("Medium Quality", changequal2); highqual = new ContextMenuItem("High Quality", changequal3); MENU.customItems.push(Functioned); MENU.customItems.push(lowqual); MENU.customItems.push(medqual); MENU.customItems.push(highqual); _root.menu = MENU; backgrounds.bgwall._x = ((curbg - 1) * -600) - backgrounds.bgwall._x; cursor.onEnterFrame = function () { urlStart = _url.indexOf("://") + 3; urlEnd = _url.indexOf("/", urlStart); domain = _url.substring(urlStart, urlEnd); LastDot = domain.lastIndexOf(".") - 1; domEnd = domain.lastIndexOf(".", LastDot) + 1; domain = domain.substring(domEnd, domain.length); if (domain != "armorgames.com") { _root._x = 50000; _root._y = 40000; } movecursor(); backgrounds.bgwall._x = backgrounds.bgwall._x + ((((curbg - 1) * -600) - backgrounds.bgwall._x) / 5); }; function __com_mochibot__(swfid, mc, lv, trk) { var x; var g; var s; var fv; var sb; var u; var res; var mb; var mbc; mb = "__mochibot__"; mbc = "mochibot.com"; g = (_global ? (_global) : (_level0._root)); if (g[mb + swfid]) { return(g[mb + swfid]); } s = System.security; x = mc._root.getSWFVersion; fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5))); if (!s) { s = {}; } sb = s.sandboxType; if (sb == "localWithFile") { return(null); } x = s.allowDomain; if (x) { s.allowDomain(mbc); } x = s.allowInsecureDomain; if (x) { s.allowInsecureDomain(mbc); } u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : ""); lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv)))); g[mb + "level"] = lv; if (fv == 5) { res = "_level" + lv; if (!eval (res)) { loadMovieNum (u, lv); } } else { res = mc.createEmptyMovieClip(mb + swfid, lv); res.loadMovie(u); } return(res); } function makearrays() { bullets = new Array(); greys = new Array(); shooters = new Array(); orbs = new Array(); meteors = new Array(); greens = new Array(); ghosts = new Array(); crystals = new Array(); confuses = new Array(); clouds = new Array(); bombs = new Array(); blades = new Array(); bits = new Array(); barscale = 0; bar._xscale = 0; totorbs = 0; corbs = 0; endtimer = 0; deathtimer = 0; leveltimer = 0; temp1 = 0; temp2 = 0; temp3 = 0; newrec = false; if (!(ldown._x === undefined)) { locked = true; } else { locked = false; } downsize = 10; ltext = "level " + (_root._currentframe - 7); shoveorbs = true; shootable = true; smashed = false; } function removearray(a) { i = 0; while (i < a.length) { o = a[i]; removeMovieClip(o); a.splice[i]; i++; } } function removestuff() { removearray(bullets); removearray(greys); removearray(shooters); removearray(orbs); removearray(meteors); removearray(greens); removearray(ghosts); removearray(crystals); removearray(confuses); removearray(clouds); removearray(bombs); removearray(blades); removearray(bits); opac = 100; cscale = 100; spinspeed = 0; dead = false; locked = false; cursor.gotoAndStop(1); } function endgame() { bar._xscale = bar._xscale + ((barscale - bar._xscale) / 5); if (bar._xscale < 0) { bar._visible = false; } if (cursor._y < 0) { cursor._y = 0; } if (cursor._y > 450) { cursor._y = 450; } if (cursor._x > 600) { cursor._x = 600; } if (cursor._x < 0) { cursor._x = 0; } if (!dead) { if (Key.isDown(2)) { dead = true; p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } } } if (corbs == totorbs) { if ((endtimer++) > 20) { if (orbps[level - 1] == 0) { complevels++; savedata.data.complevels = complevels; } if (complevels >= (maxlevel - (stage * 2))) { stage++; savedata.data.stage = stage; } maxlevel = stage * 10; savedata.data.maxlevel = maxlevel; temp1 = Math.round(barscale); temp2 = Math.round((leveltimer / 30) * 100) / 100; temp3 = Math.round(temp1 / temp2) * level; if (temp3 > lpoints[level - 1]) { orbps[level - 1] = temp1; ltimes[level - 1] = temp2; lpoints[level - 1] = temp3; savedata.data.orbarray[level - 1] = temp1; savedata.data.timearray[level - 1] = temp2; savedata.data.pointsarray[level - 1] = temp3; newrec = true; } removestuff(); if (_currentframe == 62) { compgame = true; } gotoAndStop (7); } } if (barscale < 0) { dead = true; } if (dead) { cursor.gotoAndStop(2); if (endtimer == 0) { if ((deathtimer++) > 20) { gust.stop("gust"); cursor.gotoAndStop(1); removestuff(); gotoAndStop (7); } } } if (!dead) { if (endtimer == 0) { if (walls.hitTest(cursor._x, cursor._y, true)) { dead = true; p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } } } } if (cursor._currentframe == 2) { if (sfxon) { smashsound(); } } leveltimer++; } function checkpress() { onMouseDown = function () { pressed = true; }; onMouseUp = function () { pressed = false; }; } function shoot(x, y, rot, who) { if (_currentframe >= 8) { if (!paused) { if (who == 1) { if (sfxon) { shot.start(); } } d = _root.getNextHighestDepth(); b = attachMovie("bullet", "bullet" + d, d); b._x = x; b._y = y; b._rotation = rot; b.who = who; b.gotoAndStop(who); b.xspeed = Math.sin(0.01745 * rot) * 10; b.yspeed = Math.cos(0.01745 * rot) * 10; bullets.push(b); } } } function movebullets() { i = 0; while (i <= bullets.length) { b = bullets[i]; b._x = b._x + b.xspeed; b._y = b._y - b.yspeed; if (b._currentframe == 1) { if (walls.hitTest(b._x, b._y, true)) { removeMovieClip(b); bullets.splice(i, 1); } } if ((b._currentframe == 2) || (b._currentframe == 3)) { if (cursor.hitTest(b._x, b._y, false)) { removeMovieClip(b); bullets.splice(i, 1); if (endtimer == 0) { barscale = barscale - (100 / totorbs); if (sfxon) { loseorb.start(); } if (barscale > 0) { makebit(bar._x + (5.784 * barscale), 15, 2); } } if (!dead) { if (barscale < 0) { p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } } } } } i++; } } function removebullets() { i = 0; while (i <= bullets.length) { b = bullets[i]; if ((((b._x > 610) || (b._x < -10)) || (b._y > 460)) || (b._y < -10)) { removeMovieClip(b); bullets.splice(i, 1); } i++; } } function moveorbs() { i = 0; while (i < orbs.length) { o = orbs[i]; o._x = o._x + ((o.endx - o._x) / 4); o._y = o._y + ((o.endy - o._y) / 4); if (o.endx > 600) { o.endx = 590; } if (o.endx < 0) { o.endx = 10; } if (o.endy > 450) { o.endy = 440; } if (o.endy < 0) { o.endy = 10; } if (o.active) { if (shoveorbs) { if (walls.hitTest(o._x, o._y, true)) { o.endx = o.endx + 5; o.endy = o.endy + 5; } } } if (!o.active) { if (o._y < 18) { removeMovieClip(o); orbs.splice(i, 1); } } if (cursor.hitTest(o)) { if (deathtimer == 0) { if (o.active) { o.active = false; corbs++; barscale = barscale + (100 / totorbs); o.endx = bar._x + (5.784 * barscale); o.endy = bar._y; if (sfxon) { getorb.start(); } } } } i++; } } function moveshooters() { i = 0; while (i < shooters.length) { s = shooters[i]; s.xdif = cursor._x - s._x; s.ydif = cursor._y - s._y; s.rot = Math.atan2(s.ydif, s.xdif) + (Math.PI/2); s._rotation = 57.2957795130823 * s.rot; if (random(s.count) == 0) { shoot(s._x + (Math.sin(s.rot) * 20), s._y - (Math.cos(s.rot) * 20), s._rotation, 2); } i++; } } function makeblade(x, y, scale, speed, orbs) { totorbs = totorbs + orbs; d = _root.getNextHighestDepth(); b = attachMovie("blade", "blade" + d, d); b._x = x; b._y = y; b._xscale = (b._yscale = scale); b.xdif = 0; b.ydif = 0; b.xdif2 = 0; b.ydif2 = 0; b.speed = speed; b.orbs = orbs; blades.push(b); } function makecrystal(x, y, speed, size, orbs) { totorbs = totorbs + orbs; d = _root.getNextHighestDepth(); c = attachMovie("crystal", "crystal" + d, d); c._x = x; c._y = y; c.orbs = orbs; c.xspeed = (Math.random() * (speed * 2)) - speed; c.yspeed = (Math.random() * (speed * 2)) - speed; c.rotspeed = (Math.random() * 6) - 3; c.size = size; crystals.push(c); } function movecrystals() { i = 0; while (i < crystals.length) { c = crystals[i]; movesphere(c, false); c._rotation = c._rotation + c.rotspeed; if (c._currentframe == 21) { if (c.orbs > 0) { p = 0; while (p < c.orbs) { makeorb(c._x, c._y, c._x + ((Math.random() * 60) - 30), c._y + ((Math.random() * 60) - 30), false); p++; } } removeMovieClip(c); crystals.splice(i, 1); } if (c._currentframe == 1) { j = 0; while (j < bullets.length) { b = bullets[j]; if ((b._currentframe == 1) || (b._currentframe == 3)) { if (c.hitTest(b._x, b._y, false)) { removeMovieClip(b); bullets.splice(j, 1); c.gotoAndPlay(2); cscale = c.size; } } j++; } } i++; } } function makeghost(x, y, speed, opac, orbs) { totorbs = totorbs + orbs; d = _root.getNextHighestDepth(); g = attachMovie("ghost", "ghost" + d, d); g._x = x; g._y = y; g.opac = opac; g.orbs = orbs; g.xspeed = (Math.random() * (speed * 2)) - speed; g.yspeed = (Math.random() * (speed * 2)) - speed; g.rotspeed = (Math.random() * 6) - 3; ghosts.push(g); } function moveghosts() { i = 0; while (i < ghosts.length) { g = ghosts[i]; movesphere(g, false); g._rotation = g._rotation + g.rotspeed; if (g._currentframe == 21) { p = 0; while (p < g.orbs) { makeorb(g._x, g._y, g._x + ((Math.random() * 60) - 30), g._y + ((Math.random() * 60) - 30), false); p++; } removeMovieClip(g); ghosts.splice(i, 1); } j = 0; while (j < bullets.length) { b = bullets[j]; if (g._currentframe == 1) { if ((b._currentframe == 1) || (b._currentframe == 3)) { if (g.hitTest(b._x, b._y, true)) { opac = g.opac; removeMovieClip(b); bullets.splice(j, 1); g.gotoAndPlay(2); } } } j++; } i++; } } function makeconfuse(x, y, speed, spinspeed, orbs) { totorbs = totorbs + orbs; d = _root.getNextHighestDepth(); c = attachMovie("confuse", "confuse" + d, d); c._x = x; c._y = y; c.orbs = orbs; c.xspeed = (Math.random() * (speed * 2)) - speed; c.yspeed = (Math.random() * (speed * 2)) - speed; c.rotspeed = (Math.random() * 8) - 4; c.spinspeed = spinspeed; confuses.push(c); } function moveconfuses() { i = 0; while (i < confuses.length) { c = confuses[i]; movesphere(c, false); c._rotation = c._rotation + c.rotspeed; if (c._currentframe == 21) { spinspeed = c.spinspeed; p = 0; while (p < c.orbs) { makeorb(c._x, c._y, c._x + ((Math.random() * 60) - 30), c._y + ((Math.random() * 60) - 30), false); p++; } removeMovieClip(c); confuses.splice(i, 1); } j = 0; while (j < bullets.length) { b = bullets[j]; if (c._currentframe == 1) { if ((b._currentframe == 1) || (b._currentframe == 3)) { if (c.hitTest(b._x, b._y, false)) { removeMovieClip(b); bullets.splice(j, 1); c.gotoAndPlay(2); } } } j++; } i++; } } function makebutton(ob) { ob.scale = 100; ob.scale1 = 0; ob.scale2 = 0; } function movebutton(ob, frame, go) { if (go == undefined) { go = true; } ob.scale1 = (ob.scale - ob._xscale) / 5; ob.scale2 = ob.scale2 + ob.scale1; ob._xscale = ob._xscale + ob.scale2; ob._yscale = ob._yscale + ob.scale2; ob.scale2 = ob.scale2 * 0.7; if (ob.hitTest(cursor._x, cursor._y, true)) { ob.scale = 150; } else { ob.scale = 100; } ob.onPress = function () { ob.scale = 100; }; if (go) { ob.onRelease = function () { if (sfxon) { click.start(); } gotoAndStop(frame); }; } } function makebutton2(ob) { ob.scale = 100; ob.scale1 = 0; ob.scale2 = 0; } function movebutton2(ob, d) { ob.scale1 = (ob.scale - ob._xscale) / 5; ob.scale2 = ob.scale2 + ob.scale1; ob._xscale = ob._xscale + ob.scale2; ob._yscale = ob._yscale + ob.scale2; ob.scale2 = ob.scale2 * 0.7; if (ob.hitTest(cursor._x, cursor._y, true)) { ob.scale = 150; } else { ob.scale = 100; } ob.onRelease = function () { newrecord.gotoAndStop(1); ob.scale = 100; if (d == 1) { if (level > 1) { level--; if (sfxon) { click.start(); } } } if (d == 2) { if ((level < levelcount) && (level < maxlevel)) { level++; if (sfxon) { click.start(); } } } savedata.data.level = level; }; } function makebit(x, y, type) { d = _root.getNextHighestDepth(); b = attachMovie("bit", "bit" + d, d); b.gotoAndStop(type); b._x = x; b._y = y; b.xspeed = (Math.random() * 10) - 5; b.yspeed = (-Math.random()) * 5; if (type == 1) { b.xspeed = ((Math.random() * 10) - 5) + (speedx / 5); b.yspeed = ((-Math.random()) * 5) + (speedy / 5); b.b2.gotoAndStop(random(4) + 1); b._xscale = (b._yscale = cscale); b._rotation = random(360); } bits.push(b); } function movebits() { i = 0; while (i < bits.length) { b = bits[i]; b._x = b._x + b.xspeed; b.xspeed = b.xspeed * 0.98; b._y = b._y + b.yspeed; b.yspeed++; i++; } } function pausegame() { if (Key.isDown(32)) { if (!paused) { if (!dead) { dead = true; p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } } } } if (porb._x == undefined) { } else if (porb._currentframe == 1) { paused = true; if (porb.hitTest(cursor._x, cursor._y, true)) { paused = false; porb.gotoAndPlay(2); } } } function movestuff() { pausegame(); if (!paused) { movebullets(); removebullets(); checkpress(); movegreys(); moveorbs(); movemeteors(); moveshooters(); moveclouds(); movebombs(); movegreens(); moveblades(); movecrystals(); moveghosts(); moveconfuses(); movebits(); endgame(); } } stop(); loader_xspeed = 2.5; loader_yspeed = 2.5; loader.onEnterFrame = function () { loader._x = loader._x + loader_xspeed; loader._y = loader._y + loader_yspeed; if ((loader._x > 600) || (loader._x < 0)) { loader_xspeed = loader_xspeed * -1.1; } if ((loader._y > 450) || (loader._y < 0)) { loader_yspeed = loader_yspeed * -1.1; } loaded = _root.getBytesLoaded(); total = _root.getBytesTotal(); percentage = Math.round((loaded / total) * 100); loader.perc = percentage + "%"; if (loaded == total) { gotoAndPlay (63); } }; __com_mochibot__("ce234e67", this, 10301, true); smashsound = function () { if (!smashed) { nsound = random(5); nname = _root["smash" + nsound]; nname.start(); smashed = true; } }; makegrey = function (x, y, scale, speed, orbs) { totorbs = totorbs + orbs; d = _root.getNextHighestDepth(); g = attachMovie("grey", "grey" + d, d); g._x = x; g._y = y; g._xscale = (g._yscale = scale); g.xspeed = (Math.random() * (speed * 2)) - speed; g.yspeed = (Math.random() * (speed * 2)) - speed; g.orbs = orbs; greys.push(g); }; movesphere = function (ob, shoot) { ob._x = ob._x + ob.xspeed; ob._y = ob._y + ob.yspeed; ob.left = ob._x; ob.right = ob._x; ob.top = ob._y; ob.bottom = ob._y; if (ob.right > 600) { ob._x = 600; ob.xspeed = ob.xspeed * -1; } if (ob.left < 0) { ob._x = 0; ob.xspeed = ob.xspeed * -1; } if (ob.top < 0) { ob._y = 0; ob.yspeed = ob.yspeed * -1; } if (ob.bottom > 450) { ob._y = 450; ob.yspeed = ob.yspeed * -1; } if (shoot) { shootsphere(ob, true); } }; shootsphere = function (ob, moves) { b = 0; while (b <= bullets.length) { bullet = bullets[b]; if (ob.hitTest(bullet._x, bullet._y, true)) { if ((bullet._currentframe == 1) || (bullet._currentframe == 3)) { ob._xscale = ob._xscale - downsize; ob._yscale = ob._yscale - downsize; if (moves) { ob.xspeed = ob.xspeed + (bullet.xspeed / 10); ob.yspeed = ob.yspeed - (bullet.yspeed / 10); } removeMovieClip(bullet); bullets.splice(b, 1); } } b++; } }; movegreys = function () { i = 0; while (i < greys.length) { g = greys[i]; movesphere(g, true); if (g._currentframe == 1) { if (g._xscale <= 55) { g.gotoAndPlay(2); } } else if (g._currentframe == 20) { j = 0; while (j < g.orbs) { makeorb(g._x, g._y, g._x + ((Math.random() * 60) - 30), g._y + ((Math.random() * 60) - 30), false); j++; } removeMovieClip(g); greys.splice(i, 1); } i++; } }; makeorb = function (x, y, ex, ey, single) { if (single) { totorbs++; } d = _root.getNextHighestDepth(); o = attachMovie("orb", "orb" + d, d); o._x = x; o._y = y; o._rotation = random(360); o.endx = ex; o.endy = ey; o.active = true; orbs.push(o); }; makemeteor = function (dir, scale, speed) { d = _root.getNextHighestDepth(); m = attachMovie("meteor", "meteor" + d, d); m.speed = speed; m._xscale = (m._yscale = scale); if (dir == 1) { m._x = random(600); m._y = (-m._width) / 2; } if (dir == 2) { m._y = random(400); m._x = 600 + (m._width / 2); } if (dir == 3) { m._x = random(600); m._y = 450 + (m._width / 2); } if (dir == 4) { m._y = random(400); m._x = (-m._width) / 2; } m.xdif = cursor._x - m._x; m.ydif = cursor._y - m._y; m.rot = Math.atan2(m.ydif, m.xdif) + (Math.PI/2); m._rotation = random(360); m.xspeed = Math.sin(m.rot) * speed; m.yspeed = Math.cos(m.rot) * speed; m.bounds = 0; meteors.push(m); }; movemeteors = function () { i = 0; while (i < meteors.length) { m = meteors[i]; m._x = m._x + m.xspeed; m._y = m._y - m.yspeed; m.bounds = m.getBounds(_root); if (m._x > (600 + m._width)) { removeMovieClip(m); meteors.splice(i, 1); } if (m._x < (-m._width)) { removeMovieClip(m); meteors.splice(i, 1); } if (m._y > (450 + m._height)) { removeMovieClip(m); meteors.splice(i, 1); } if (m._y < (-m._height)) { removeMovieClip(m); meteors.splice(i, 1); } m.xdif = cursor._x - m._x; m.ydif = cursor._y - m._y; m.dis = Math.sqrt((m.xdif * m.xdif) + (m.ydif * m.ydif)); if (endtimer == 0) { if (m.dis < (20 + cursor._width)) { if (!dead) { dead = true; p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } } } } i++; } }; makeshooter = function (x, y, count) { d = _root.getNextHighestDepth(); s = attachMovie("shooter", "shooter" + d, d); s._x = x; s._y = y; s.count = count; s.xdif = 0; s.ydif = 0; s.rot = 0; s.xdif = cursor._x - s._x; s.ydif = cursor._y - s._y; s.rot = Math.atan2(s.ydif, s.xdif) + (Math.PI/2); s._rotation = 57.2957795130823 * s.rot; shooters.push(s); }; makecloud = function (x, y, speed) { d = _root.getNextHighestDepth(); c = attachMovie("cloud", "cloud" + d, d); c._x = x; c._y = y; c.rotspeed = (Math.random() * 4) - 2; c.xspeed = (Math.random() * (speed * 2)) - speed; c.yspeed = (Math.random() * (speed * 2)) - speed; clouds.push(c); }; moveclouds = function () { i = 0; while (i < clouds.length) { c = clouds[i]; j = 0; while (j < bullets.length) { b = bullets[j]; if ((b._currentframe == 1) || (b._currentframe == 3)) { if (c._currentframe == 1) { if (c.hitTest(b._x, b._y, true)) { c.gotoAndPlay(2); gust.start(); removeMovieClip(b); bullets.splice(j, 1); } } } j++; } if (c._currentframe == 300) { gust.start(); } if (c._currentframe == 1) { movesphere(c, false); c._rotation = c._rotation + c.rotspeed; } else { c.swapDepths(_root.getNextHighestDepth()); } i++; } }; makegreen = function (x, y, scale, speed) { d = _root.getNextHighestDepth(); g = attachMovie("green", "green" + d, d); g._x = x; g._y = y; g._xscale = (g._yscale = scale); g.xspeed = (Math.random() * (speed * 2)) - speed; g.yspeed = (Math.random() * (speed * 2)) - speed; greens.push(g); }; movegreens = function () { i = 0; while (i < greens.length) { g = greens[i]; movesphere(g, false); j = 0; while (j < bullets.length) { b = bullets[j]; if (g.hitTest(b._x, b._y, true)) { g.xspeed = g.xspeed + (b.xspeed / 10); g.yspeed = g.yspeed - (b.yspeed / 10); removeMovieClip(b); bullets.splice(j, 1); g._xscale = g._xscale - downsize; g._yscale = g._yscale - downsize; if (endtimer == 0) { barscale = barscale - (100 / totorbs); if (barscale > 0) { makebit(bar._x + (5.784 * barscale), 15, 2); } } if (!dead) { if (barscale < 0) { p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } } } } j++; } if (g._xscale <= 55) { if (!dead) { dead = true; j = 0; while (j < 20) { makebit(cursor._x, cursor._y, 1); j++; } } if (g._currentframe == 1) { g.gotoAndPlay(2); } } i++; } }; makebomb = function (x, y, speed, orbs) { totorbs = totorbs + orbs; d = _root.getNextHighestDepth(); b = attachMovie("bomb", "bomb" + d, d); b._x = x; b._y = y; if (b.hitTest(cursor)) { b._x = random(600); b._y = random(400); } if (b.hitTest(cursor)) { b._x = random(600); b._y = random(400); } if (b.hitTest(cursor)) { b._x = random(600); b._y = random(400); } if (b.hitTest(cursor)) { b._x = random(600); b._y = random(400); } b.orbs = orbs; b.rotspeed = (Math.random() * 4) - 2; b.xspeed = (Math.random() * (speed * 2)) - speed; b.yspeed = (Math.random() * (speed * 2)) - speed; b._rotation = random(360); bombs.push(b); }; movebombs = function () { i = 0; while (i < bombs.length) { b = bombs[i]; movesphere(b, false); b._rotation = b._rotation + b.rotspeed; if (b._currentframe == 13) { if (b.orbs > 0) { p = 0; while (p < b.orbs) { makeorb(b._x, b._y, b._x + ((Math.random() * 60) - 30), b._y + ((Math.random() * 60) - 30), false); p++; } } removeMovieClip(b); bombs.splice(i, 1); } if (b.hitTest(cursor)) { if (b._currentframe == 1) { b.gotoAndPlay(2); if (sfxon) { explode.start(); } s = 0; while (s < 360) { shoot(b._x, b._y, s, 3); s = s + 20; } } } j = 0; while (j < bullets.length) { bu = bullets[j]; if (b._currentframe == 1) { if ((bu._currentframe == 1) || (bu._currentframe == 3)) { if (b.hitTest(bu._x, bu._y, true)) { if (sfxon) { explode.start(); } removeMovieClip(bu); bullets.splice(j, 1); b.gotoAndPlay(2); s = 0; while (s < 360) { shoot(b._x, b._y, s, 3); s = s + 20; } } } } j++; } i++; } }; moveblades = function () { i = 0; while (i < blades.length) { b = blades[i]; b.xdif = cursor._x - b._x; b.ydif = cursor._y - b._y; b._x = b._x + b.xdif2; b._y = b._y + b.ydif2; b._rotation = b._rotation + (b.xdif2 - b.ydif2); b.xdif2 = b.xdif2 + (b.xdif / b.speed); b.ydif2 = b.ydif2 + (b.ydif / b.speed); b.xdif2 = b.xdif2 * 0.95; b.ydif2 = b.ydif2 * 0.95; if (b._currentframe == 1) { if (b.hitTest(cursor._x, cursor._y, false)) { if (!dead) { j = 0; while (j < 20) { makebit(cursor._x, cursor._y, 1); j++; } dead = true; } } } if (b._currentframe == 21) { p = 0; while (p < b.orbs) { makeorb(b._x, b._y, b._x + ((Math.random() * 60) - 30), b._y + ((Math.random() * 60) - 30), false); p++; } removeMovieClip(b); blades.splice(i, 1); } if (b.orbs > 0) { if (b._currentframe == 1) { if (b._xscale <= 50) { b.gotoAndPlay(2); } j = 0; while (j < bullets.length) { bu = bullets[j]; if ((bu._currentframe == 1) || (bu._currentframe == 3)) { if (b.hitTest(bu._x, bu._y, false)) { removeMovieClip(bu); bullets.splice(j, 1); b._xscale = b._xscale - downsize; b._yscale = b._yscale - downsize; } } j++; } } } i++; } };
Frame 2
stop(); makebutton(startbutton); makebutton(options); makebutton(inst); makebutton(creds); makebutton(scores); makebutton(moregame); scores.onRelease = function () { getURL ("http://www.allgamesallfree.com/index.php?id=highscores&game=Cursor_Attack_3", "_blank"); }; moregame.onRelease = function () { getURL ("http://www.allgamesallfree.com/", "_blank"); }; onEnterFrame = function () { movebutton(startbutton, 7); movebutton(options, 3); movebutton(inst, 4); movebutton(creds, 5); movebutton(scores, 6, false); movebutton(moregame, 2, false); };
Frame 3
makebutton(backb); makebutton(remouse); makebutton(low); makebutton(med); makebutton(high); makebutton(clearsaved); makebutton(bgnext); makebutton(bgprev); makebutton(bgchooser); makebutton(smusic); makebutton(sfx); bgchooser.onRelease = function () { autobac = true; savedata.data.autobac = autobac; curbg = Math.ceil(level / 5); if (sfxon) { snap.start(); } }; remouse.onRelease = function () { reversed = reversed * -1; savedata.data.reversed = reversed; if (sfxon) { snap.start(); } }; low.onRelease = function () { _root._quality = "low"; if (sfxon) { snap.start(); } }; med.onRelease = function () { _root._quality = "medium"; if (sfxon) { snap.start(); } }; high.onRelease = function () { _root._quality = "high"; if (sfxon) { snap.start(); } }; clearsaved.onRelease = function () { savedata.clear(); makesavedata(); if (sfxon) { forget.start(); } }; bgnext.onRelease = function () { if (curbg < 11) { curbg++; if (sfxon) { snap.start(); } } savedata.data.curbg = curbg; autobac = false; savedata.data.autobac = autobac; }; bgprev.onRelease = function () { if (curbg > 1) { curbg--; if (sfxon) { snap.start(); } } savedata.data.curbg = curbg; autobac = false; savedata.data.autobac = autobac; }; smusic.onRelease = function () { if (soundon) { soundon = false; music.stop("music"); } else { if (sfxon) { snap.start(); } soundon = true; music.start(0, 1000); } }; sfx.onRelease = function () { if (sfxon) { sfxon = false; } else { sfxon = true; if (sfxon) { snap.start(); } } }; onEnterFrame = function () { movebutton(backb, 2); movebutton(remouse, 3, false); movebutton(low, 3, false); movebutton(med, 3, false); movebutton(high, 3, false); movebutton(clearsaved, 3, false); movebutton(bgnext, 3, false); movebutton(bgprev, 3, false); movebutton(bgchooser, 3, false); movebutton(smusic, 3, false); movebutton(sfx, 3, false); if (soundon) { smusic.gotoAndStop(2); } else { smusic.gotoAndStop(1); } if (sfxon) { sfx.gotoAndStop(2); } else { sfx.gotoAndStop(1); } if (autobac) { bgchooser.gotoAndStop(2); } else { bgchooser.gotoAndStop(1); } };
Frame 4
makebutton(backb); makebutton(prev); makebutton(nex); prev.onRelease = function () { if (!(screen._currentframe === 1)) { snap.start(); } screen.prevFrame(); }; nex.onRelease = function () { if (!(screen._currentframe === 18)) { snap.start(); } screen.nextFrame(); }; onEnterFrame = function () { movebutton(backb, 2); movebutton(prev, 2, false); movebutton(nex, 2, false); };
Frame 5
makebutton(backb); makebutton(jpn); makebutton(paul); makebutton(ewanh); makebutton(agaf); paul.onRelease = function () { if (sfxon) { click.start(); } getURL ("http://studiopaul.newgrounds.com/", "_blank"); }; ewanh.onRelease = function () { if (sfxon) { click.start(); } getURL ("http://falcoln.newgrounds.com/", "_blank"); }; agaf.onRelease = function () { if (sfxon) { click.start(); } getURL ("http://www.allgamesallfree.com/", "_blank"); }; jpn.onRelease = function () { if (sfxon) { click.start(); } getURL ("http://www.rigaudio.com/", "_blank"); }; onEnterFrame = function () { movebutton(backb, 2); movebutton(jpn, 5, false); movebutton(paul, 5, false); movebutton(ewanh, 5, false); movebutton(agaf, 5, false); };
Frame 6
makebutton(backb); backb.onRelease = function () { gotoAndStop (2); if (sfxon) { click.start(); } }; makebutton(sendscore); scorevar = totscore; sendscore.onRelease = function () { if (scoretimes > 0) { _root.add_pass = "flashapi"; _root.name = namevar; _root.score = scorevar; _root.loadVariables("http://www.allgamesallfree.com/new_score.php?game=" + _root.gamename, "POST"); getURL ("http://www.allgamesallfree.com/index.php?id=highscores&game=" + _root.gamename, "_blank"); scoretimes--; savedata.data.scoretimes = scoretimes; sendscore._visible = false; } }; onEnterFrame = function () { movebutton(backb, 2, false); movebutton(sendscore, 2, false); howmany = ("You can submit your score " + scoretimes) + " more time(s)"; };
Frame 7
totscore = 0; i = 0; while (i < 50) { totscore = totscore + lpoints[i]; i++; } tscore = "total score: " + totscore; makebutton(backb); makebutton(startbutton); makebutton2(barrow); makebutton2(farrow); makebutton(sends); cltime = ltimes[level - 1] + " seconds"; clorb = orbps[level - 1] + " %"; clpoint = lpoints[level - 1]; movebutton(backb, 2); movebutton(startbutton, 7 + level); movebutton2(farrow, 2); movebutton2(barrow, 1); leveltext = "level " + level; if (newrec) { newrecord.gotoAndPlay(2); newrec = false; } else { newrecord.gotoAndStop(1); } sends.onRelease = function () { if (sfxon) { click.start(); } gotoAndStop (6); }; onEnterFrame = function () { if (autobac) { curbg = Math.ceil(level / 5); } savedata.data.curbg = curbg; cltime = ltimes[level - 1] + " seconds"; clorb = orbps[level - 1] + " %"; clpoint = lpoints[level - 1]; movebutton(backb, 2); movebutton(startbutton, 7 + level); movebutton2(farrow, 2); movebutton2(barrow, 1); movebutton(sends, 7, false); leveltext = "level " + level; };
Frame 8
makearrays(); i = 0; while (i < 5) { makegrey(random(600), random(450), random(20) + 90, 5, 5); i++; } onEnterFrame = function () { movestuff(); };
Frame 9
makearrays(); i = 0; while (i < 3) { makegreen(random(600), random(450), random(50) + 100, 5); i++; } i = 0; while (i < 2) { makegrey(random(600), random(450), random(50) + 90, 6, 5); i++; } onEnterFrame = function () { movestuff(); };
Frame 10
makearrays(); i = 0; while (i < 3) { makegrey(random(600), random(450), random(60) + 90, 5, 10); i++; } onEnterFrame = function () { if (random(30) == 0) { makemeteor(random(4) + 1, 90, 5); } movestuff(); };
Frame 11
makearrays(); i = 0; while (i < 6) { makegrey(random(600), random(450), 90, 5, 2); i++; } i = 0; while (i < 6) { makecloud(random(600), random(400), 4); i++; } onEnterFrame = function () { movestuff(); };
Frame 12
makearrays(); makeshooter(300, 225, 25); i = 0; while (i < 6) { makegrey(random(600), random(450), 100, 7, 10); i++; } onEnterFrame = function () { movestuff(); };
Frame 13
makearrays(); i = 0; while (i < 5) { makegrey(random(600), random(450), 60, 0, 3); makebomb(random(600), random(450), 3, 0); i++; } onEnterFrame = function () { movestuff(); };
Frame 14
makearrays(); makeblade(300, 225, 100, 90, 10); makeblade(300, 225, 100, 95, 10); makeblade(300, 225, 100, 85, 10); onEnterFrame = function () { movestuff(); };
Frame 15
makearrays(); makeshooter(50, 50, 10); makeshooter(550, 400, 10); makecrystal(random(600), random(450), 5, 250, 10); makecrystal(random(600), random(450), 5, 250, 10); onEnterFrame = function () { movestuff(); };
Frame 16
makearrays(); i = 0; while (i < 10) { makeconfuse(random(600), random(450), 7, random(30) + 10, 5); i++; } onEnterFrame = function () { movestuff(); };
Frame 17
makearrays(); i = 0; while (i < 5) { makeghost(random(600), random(450), 5, Math.random() * 3, 4); i++; } onEnterFrame = function () { movestuff(); };
Frame 18
makearrays(); i = 0; while (i < 5) { makegrey(300, 225, 150, 12, 5); i++; } onEnterFrame = function () { movestuff(); };
Frame 19
makearrays(); makeorb(297, 70, 297, 70, true); makeorb(575, 228, 575, 228, true); makeorb(41, 228, 41, 228, true); makeorb(297, 412, 297, 412, true); onEnterFrame = function () { movestuff(); };
Frame 20
makearrays(); i = 0; while (i < 5) { makeghost(random(600), random(450), 5, 1, 5); i++; } onEnterFrame = function () { if (random(20) == 0) { makemeteor(random(5) + 1, 100, 6); } movestuff(); };
Frame 21
makearrays(); i = 0; while (i < 6) { makebomb(random(600), random(450), 6, 3); i++; } onEnterFrame = function () { movestuff(); };
Frame 22
makearrays(); makeshooter(300, 225, 10); i = 0; while (i < 50) { tx = random(600); ty = random(450); makeorb(tx, ty, tx, ty, true); i++; } onEnterFrame = function () { movestuff(); };
Frame 23
makearrays(); i = 0; while (i < 6) { makegrey(random(600), random(450), random(40) + 60, 6, 5); i++; } onEnterFrame = function () { if (random(27) == 0) { makemeteor(random(5) + 1, random(50) + 100, (Math.random() * 6) + 2); } movestuff(); };
Frame 24
makearrays(); i = 0; while (i < 5) { makeconfuse(random(600), random(450), 6, (Math.random() * 8) + 1, 4); i++; } i = 0; while (i < 10) { makegreen(random(600), random(450), 150, 5); i++; } onEnterFrame = function () { movestuff(); };
Frame 25
makearrays(); shoveorbs = false; i = 0; while (i < 6) { makegrey(random(600), random(450), 110, 7, 5); i++; } onEnterFrame = function () { movestuff(); walls._rotation = walls._rotation + 1; };
Frame 26
makearrays(); makecloud(random(600), random(450), 5); makecloud(random(600), random(450), 5); makecloud(random(600), random(450), 5); makeblade(100, 225, 200, random(40) + 70, 3); makeblade(100, 225, 200, random(40) + 70, 3); makeblade(500, 225, 200, random(40) + 70, 3); makeblade(500, 225, 200, random(40) + 70, 3); onEnterFrame = function () { movestuff(); };
Frame 27
makearrays(); i = 0; while (i < 8) { makecloud(random(600), random(450), 5); i++; } makeshooter(30, 225, 20); i = 0; while (i < 5) { makegrey(random(600), random(450), 90, 8, 5); i++; } onEnterFrame = function () { movestuff(); };
Frame 28
makearrays(); makeshooter(300, 225, 0); i = 0; while (i < 50) { tx = random(600); ty = random(450); makeorb(tx, ty, tx, ty, true); i++; } onEnterFrame = function () { movestuff(); };
Frame 29
makearrays(); onEnterFrame = function () { movestuff(); };
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 29
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Frame 30
makearrays(); i = 0; while (i < 5) { makegrey(random(600), random(450), 80, 6, 5); makegreen(random(600), random(450), 100, 0); i++; } ldown._visible = false; onEnterFrame = function () { movestuff(); if ((((speedx > 1) || (speedy > 1)) || (speedx < -1)) || (speedy < -1)) { ldown._x = cursor._x + (speedx * 5); ldown._y = cursor._y + (speedy * 5); } };
Frame 31
makearrays(); makegrey(random(600), random(450), 500, 5, 10); makegrey(random(600), random(450), 500, 5, 10); makegreen(300, 225, 1000, 6); onEnterFrame = function () { movestuff(); };
Frame 32
makearrays(); makeshooter(225, 100, 30); makeshooter(225, 500, 30); i = 0; while (i < 6) { makegrey(random(600), random(450), 100, 7, 1); i++; } onEnterFrame = function () { cursor._x = cursor._x + (random(20) - 10); cursor._y = cursor._y + (random(20) - 10); movestuff(); };
Frame 33
makearrays(); makeshooter(300, 225, 20); onEnterFrame = function () { movestuff(); };
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 33
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Frame 34
makearrays(); totorbs = 10; shootable = false; opac = 0; vtime = 15; made = false; onEnterFrame = function () { if (random(20) == 0) { if (!made) { makemeteor(random(4) + 1, 100, 6); } } vtime = vtime - 0.0333333333333333; if (vtime > 0) { vtime2 = Math.round(vtime * 100) / 100; } else { vtime2 = 0; if (!made) { made = true; opac = 100; i = 0; while (i < 10) { x = random(600); y = random(450); makeorb(x, y, x, y, false); i++; } } } movestuff(); };
Frame 35
makearrays(); i = 0; while (i < 4) { makegrey(random(600), random(450), random(200) + 100, 5, 10); i++; } shootable = false; onEnterFrame = function () { xdif = cursor._x - 300; ydif = cursor._y - 225; ang = Math.atan2(ydif, xdif) + (Math.PI/2); shooter._rotation = 57.2957795130823 * ang; shoot(300 + (Math.sin(ang) * 15), 225 - (Math.cos(ang) * 15), 57.2957795130823 * ang, 3); movestuff(); };
Frame 36
makearrays(); shoveorbs = false; i = 0; while (i < 3) { makegrey(random(600), random(450), 100, 4, 10); i++; } onEnterFrame = function () { if (!paused) { walls._rotation = walls._rotation + 0.3; } movestuff(); };
Frame 37
makearrays(); i = 0; while (i < 10) { makegrey(random(600), random(450), random(40) + 80, 8, 3); i++; } i = 0; while (i < 5) { makebomb(random(600), random(450), 5, 0); i++; } rot = 0; onEnterFrame = function () { rot = rot + 5; ldown._x = 300 + (Math.sin((Math.PI/180) * rot) * 150); ldown._y = 225 - (Math.cos((Math.PI/180) * rot) * 150); movestuff(); };
Frame 38
makearrays(); time = 0; makegrey(random(600), random(450), random(100) + 200, 8, 10); makegrey(random(600), random(450), random(100) + 200, 8, 10); onEnterFrame = function () { time++; if (time > 50) { i = 1; while (i < 5) { makemeteor(i, 100, 10); i++; } time = 0; } movestuff(); };
Frame 39
makearrays(); i = 0; while (i < 3) { makegrey(random(600), random(450), random(100) + 150, 5, 10); i++; } shoveorbs = false; onEnterFrame = function () { movestuff(); };
Frame 40
makearrays(); i = 0; while (i < 5) { makeghost(random(600), random(450), 1, Math.random() * 10, 0); makeconfuse(random(600), random(450), 1, random(10) + 5, 0); makegreen(random(600), random(450), random(50) + 60, 1); i++; } i = 0; while (i < 3) { makeghost(random(600), random(450), 10, Math.random() * 30, 3); makeconfuse(random(600), random(450), 10, random(10) + 5, 3); i++; } onEnterFrame = function () { movestuff(); };
Frame 41
makearrays(); i = 0; while (i < 6) { makecloud(random(600), random(450), (Math.random() * 5) + 2); makebomb(random(600), random(450), 4, 1); i++; } makeshooter(300, 225, 20); onEnterFrame = function () { movestuff(); };
Frame 42
makearrays(); totorbs++; time = 10; made = false; i = 0; while (i < 10) { makeshooter(random(300) + 300, random(450), 20); i++; } onEnterFrame = function () { if (time > 0) { time = time - 0.0333333333333333; vtime = Math.round(time * 100) / 100; } else { vtime = ""; time = 0; } if (vtime == 0) { if (!made) { makeorb(150, 225, 150, 225, false); made = true; } } movestuff(); };
Frame 43
makearrays(); makeblade(50, 225, random(30) + 90, random(40) + 60, 0); makeblade(550, 225, random(30) + 90, random(40) + 60, 0); makeblade(300, 50, random(30) + 90, random(40) + 60, 0); makeblade(300, 400, random(30) + 90, random(40) + 60, 0); onEnterFrame = function () { movestuff(); };
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 43
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Frame 44
makearrays(); totorbs = totorbs + 20; rx = 178; ry = 151; made = false; i = 0; while (i < 20) { makecrystal(random(600), random(450), 7, random(100) + 100, 0); i++; } makecrystal(random(600), random(450), 7, 500, 0); onEnterFrame = function () { if (cscale == 500) { if (((rx - 10) < cursor._x) && (cursor._x < (rx + 10))) { if (((ry - 10) < cursor._y) && (cursor._y < (ry + 10))) { if ((117 < cursor._rotation) && (cursor._rotation < 127)) { if (!made) { i = 0; while (i < 20) { makeorb(rx, ry, (468 + random(40)) - 20, (310 + random(40)) - 20, false); i++; } made = true; } } } } } movestuff(); };
Frame 45
makearrays(); shoveorbs = false; i = 0; while (i < 5) { makegrey(random(600), random(450), 100, 2, 5); i++; } onEnterFrame = function () { movestuff(); };
Frame 46
makearrays(); time = 17; vtime = 0; i = 0; while (i < 5) { makegrey(random(600), random(450), 200, 2, 1); i++; } onEnterFrame = function () { if (time > 0) { time = time - 0.0333333333333333; vtime = Math.round(time * 100) / 100; } else { vtime = 0; if (cursor._currentframe == 1) { p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } dead = true; } } movestuff(); };
Frame 47
makearrays(); vtime = 100; totorbs = 10; made = false; trot = Math.random() * 360; target.xspeed = Math.sin((Math.PI/180) * trot) * 12; target.yspeed = Math.cos((Math.PI/180) * trot) * 12; onEnterFrame = function () { if (vtime <= 0) { if (!made) { i = 0; while (i < 10) { makeorb(target._x, target._y, ((target._x + target.xspeed) + random(100)) - 50, ((target._y + target.yspeed) + random(100)) - 50, false); i++; } made = true; } target._alpha = target._alpha - 5; } else { target._x = target._x + target.xspeed; target._y = target._y + target.yspeed; if ((target._x > 600) || (target._x < 0)) { target.xspeed = target.xspeed * -1; } if ((target._y > 450) || (target._y < 0)) { target.yspeed = target.yspeed * -1; } if (target.hitTest(cursor._x, cursor._y, true)) { vtime = vtime - 1; target.gotoAndStop(2); } else { target.gotoAndStop(1); if (vtime < 100) { vtime++; } } } movestuff(); };
Frame 48
makearrays(); timer = 9; vtime = 9; race = false; pad._visible = false; onEnterFrame = function () { if (!race) { if (pad.hitTest(cursor._x, cursor._y, true)) { if (!paused) { race = true; } } } else if (timer > 0) { timer = timer - 0.0333333333333333; vtime = Math.round(timer * 100) / 100; } else { vtime = 0; if (cursor._currentframe == 1) { if (endtimer == 0) { p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } dead = true; } } } movestuff(); };
Instance of Symbol 277 MovieClip in Frame 48
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Frame 49
makearrays(); totorbs = 50; bxspeed = Math.random() * -10; byspeed = (Math.random() * 10) - 5; created = 0; onEnterFrame = function () { i = 0; while (i <= bullets.length) { b = bullets[i]; if (ball.hitTest(b._x, b._y, true)) { if (b._x < 250) { bxspeed = bxspeed + (b.xspeed / 20); byspeed = byspeed - (b.yspeed / 20); removeMovieClip(b); bullets.splice(i, 1); } } i++; } i = 0; while (i <= bullets.length) { b = bullets[i]; if (b._x > 250) { removeMovieClip(b); bullets.splice(i, 1); } i++; } ball._x = ball._x + bxspeed; ball._y = ball._y + byspeed; if (ball._x > 300) { p2._y = p2._y + (((ball._y - p2._y) / 10) - created); } if (ball._y > 450) { ball._y = 450; byspeed = byspeed * -1; } if (ball._y < 0) { ball._y = 0; byspeed = byspeed * -1; } if (ball._x < -15) { bxspeed = Math.random() * 10; byspeed = (Math.random() * 10) - 5; ball._x = 300; ball._y = 225; makebomb(random(600), random(450), 5, 0); } if (ball._x > 615) { bxspeed = (-Math.random()) * 6; byspeed = (Math.random() * 10) - 5; ball._x = 300; ball._y = 225; if (created < 5) { i = 0; while (i < 10) { px = random(350) + 250; py = random(450); makeorb(px, py, px, py, false); i++; } created++; } } if (p2.hitTest(ball._x + 15, ball._y, true)) { bxspeed = bxspeed * -1.05; byspeed = byspeed + ((ball._y - p2._y) / 10); } movestuff(); };
Frame 50
makearrays(); shoveorbs = false; i = 0; while (i < 4) { makebomb(random(600), random(450), 5, 10); i++; } onEnterFrame = function () { movestuff(); };
Frame 51
makearrays(); shoveorbs = false; i = 0; while (i < 5) { makegrey(random(600), random(450), random(50) + 100, (Math.random() * 6) + 1, 4); i++; } makeshooter(20, 225, 30); makeshooter(580, 225, 30); onEnterFrame = function () { movestuff(); };
Frame 52
makearrays(); i = 0; while (i < 6) { makegrey(random(600), random(450), 100, (Math.random() * 5) + 2, 4); makecloud(random(600), random(450), Math.random() * 10); i++; } onEnterFrame = function () { if (random(20) == 0) { makemeteor(random(4) + 1, (Math.random() * 20) + 80, 6); } movestuff(); };
Frame 53
makearrays(); makeshooter(570, 20, 40); makeshooter(30, 20, 40); shoveorbs = false; i = 0; while (i < 8) { makeghost(random(600), random(450), 6, Math.random() * 2, 5); i++; } onEnterFrame = function () { movestuff(); };
Frame 54
makearrays(); vtime = 0; i = 0; while (i < 100) { dx = random(600); dy = random(450); makeorb(dx, dy, dx, dy, true); i++; } onEnterFrame = function () { vtime = vtime + 0.0166666666666667; timer = Math.round(vtime * 100) / 100; i = 1; while (i <= 5) { if (timer == i) { makeblade(600 - cursor._x, 450 - cursor._y, 100, 150 + random(100), 0); } i++; } movestuff(); };
Frame 55
makearrays(); shoveorbs = false; makeghost(300, 225, 0, 5, 5); onEnterFrame = function () { movestuff(); };
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 55
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Frame 56
makearrays(); i = 0; while (i < 20) { makegrey(random(600), random(450), 56, 5, 3); i++; } i = 0; while (i < 5) { makebomb(random(600), random(450), 5, 0); i++; } vtime = 5; onEnterFrame = function () { if (endtimer == 0) { if (vtime < 0) { vtime = 0; if (cursor._currentframe == 1) { p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } dead = true; } } } movestuff(); };
Frame 57
makearrays(); shoveorbs = false; ex = 300; ey = 200; timer = 0; i = 0; while (i < 8) { makeconfuse(random(600), random(450), 7, (Math.random() * 10) + 20, 5); i++; } onEnterFrame = function () { timer++; if (timer > 60) { timer = 0; ex = cursor._x; ey = cursor._y; } if (random(50) == 0) { } walls._x = walls._x + ((ex - walls._x) / 5); walls._y = walls._y + ((ey - walls._y) / 5); movestuff(); };
Frame 58
makearrays(); totorbs = 12; shoveorbs = false; onEnterFrame = function () { if (porb.hitTest(cursor._x, cursor._y, true)) { walls.play(); } movestuff(); };
Frame 59
makearrays(); totorbs = 10; makeshooter(300, 10, 40); makeshooter(300, 440, 40); makeshooter(10, 225, 40); makeshooter(590, 225, 40); vtime = 20; timer = 20; made = false; onEnterFrame = function () { if (random(30) == 0) { makemeteor(3, random(50) + 50, (Math.random() * 3) + 7); } if (vtime == 0) { vtime = 0; if (!made) { made = true; i = 0; while (i < 10) { tx = random(450) + 50; ty = random(300) + 50; makeorb(tx, ty, tx, ty, false); i++; } } } else { timer = timer - 0.0333333333333333; vtime = Math.round(timer * 100) / 100; } movestuff(); };
Frame 60
makearrays(); totorbs = 10; order = new Array(1, 2, 3, 4, 5, 6); made = false; i = 1; while (i < 7) { b = _root["b" + i]; b._x = random(600); b._y = random(450); b.xspeed = (Math.random() * 10) - 5; b.yspeed = (Math.random() * 10) - 5; b.col = i; b.got = false; i++; } i = 0; while (i < 10) { makegreen(random(600), random(450), 70, 6); i++; } i = 0; while (i < 5) { makecloud(random(600), random(450), 6); i++; } onEnterFrame = function () { if (order.length == 0) { if (!made) { made = true; totorbs = 0; i = 0; while (i < 10) { makegrey(random(600), random(450), 100, 7, 1); i++; } } } i = 1; while (i < 7) { b = _root["b" + i]; b._x = b._x + b.xspeed; b._y = b._y + b.yspeed; if ((b._x > 600) || (b._x < 0)) { b.xspeed = b.xspeed * -1; } if ((b._y > 450) || (b._y < 0)) { b.yspeed = b.yspeed * -1; } if (b.got) { b._alpha = b._alpha - 5; } j = 0; while (j <= bullets.length) { bu = bullets[j]; if (bu._currentframe == 1) { if (b.hitTest(bu._x, bu._y, true)) { if (!b.got) { if (order[0] == b.col) { b.got = true; order.splice(0, 1); } else if (cursor._currentframe == 1) { p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } dead = true; } } } } j++; } i++; } movestuff(); };
Frame 61
makearrays(); shootable = false; schance = 300; onEnterFrame = function () { if (porb.hitTest(cursor._x, cursor._y, true)) { opac = 3; } movestuff(); };
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeorb(this._x, this._y, this._x, this._y, true); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Instance of Symbol 277 MovieClip in Frame 61
onClipEvent (load) { this._visible = false; _root.makeshooter(this._x, this._y, _root.schance); }
Frame 62
makearrays(); totorbs = 90; angle = 0; boss.xspeed = -3; boss.yspeed = 3; timer = 0; boss.active = false; boss.dead = false; boss.orbs = 0; boss.timer = 0; boss.vun = false; phaser = 0; i = 1; while (i < 7) { b = _root["b" + i]; b.dead = false; i++; } onEnterFrame = function () { if (!boss.dead) { if (!boss.vun) { boss._x = boss._x + boss.xspeed; boss._y = boss._y + boss.yspeed; } } timer++; angle = angle + 3; if ((boss._x > 600) || (boss._x < 0)) { boss.xspeed = boss.xspeed * -1; } if ((boss._y > 450) || (boss._y < 0)) { boss.yspeed = boss.yspeed * -1; } if (!boss.dead) { if (boss.hitTest(cursor._x, cursor._y, true)) { if (cursor._currentframe == 1) { p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } dead = true; } } } if (timer > 60) { timer = 0; } if (boss.active) { if (boss.vun) { b = 0; while (b <= bullets.length) { bullet = bullets[b]; if (boss.hitTest(bullet._x, bullet._y, true)) { if ((bullet._currentframe == 1) || (bullet._currentframe == 3)) { boss._xscale = boss._xscale - 0.5; boss._yscale = boss._yscale - 0.5; removeMovieClip(bullet); bullets.splice(b, 1); } } b++; } } i = 0; while (i < shooters.length) { s = shooters[i]; removeMovieClip(s); shooters.splice(i, 1); i++; } } if (!boss.active) { if (boss.orbs == 6) { if (corbs == 60) { boss.active = true; } } } else if (!boss.dead) { if (boss._xscale < 40) { boss.dead = true; boss.gotoAndPlay(4); if (sfxon) { explode2.start(); } i = 0; while (i < 30) { makeorb(boss._x, boss._y, random(600), random(450), false); i++; } } phaser++; boss.radius = boss._width / 2; if (phaser < 120) { randang = random(360); shoot(boss._x + (Math.sin(0.0174 * randang) * boss.radius), boss._y - (Math.cos(0.0174 * randang) * boss.radius), randang, 2); } if (phaser > 120) { boss.vun = true; } if (phaser > 240) { boss.vun = false; phaser = 0; } } if (!boss.dead) { if (boss.vun) { boss.gotoAndStop(3); } else { boss.gotoAndStop(1); } } i = 1; while (i < 7) { b = _root["b" + i]; b.rad = (boss._width / 2) + (b._width / 2); b._x = boss._x + (Math.sin((Math.PI/180) * (angle + (60 * i))) * b.rad); b._y = boss._y - (Math.cos((Math.PI/180) * (angle + (60 * i))) * b.rad); if (timer == (i * 10)) { if (!b.dead) { if (!boss.active) { shoot(b._x, b._y, (57.2957795130823 * Math.atan2(b._y - boss._y, b._x - boss._x)) + 90, 2); } } } if (b._currentframe == 3) { boss.orbs++; o = 0; while (o < 2) { totorbs = totorbs - 5; makegrey(random(600), random(450), random(100) + 100, 5, 5); o++; } makeshooter(b._x, b._y, 100); } if (b.hitTest(cursor._x, cursor._y, true)) { if (cursor._currentframe == 1) { p = 0; while (p < 20) { makebit(cursor._x, cursor._y, 1); p++; } dead = true; } } if (!b.dead) { if (b._xscale < 40) { b.gotoAndPlay(2); b.dead = true; explode.start(); } } j = 0; while (j <= bullets.length) { bu = bullets[j]; if (bu._currentframe == 1) { if (b.hitTest(bu._x, bu._y, true)) { removeMovieClip(bu); bullets.splice(j, 1); b._xscale = b._xscale - 5; b._yscale = b._yscale - 5; } } j++; } i++; } movestuff(); };
Frame 63
stopAllSounds();
Frame 64
stopAllSounds();
Frame 65
stopAllSounds();
Frame 66
stopAllSounds();
Frame 67
stopAllSounds();
Frame 68
stopAllSounds();
Frame 69
stopAllSounds();
Frame 70
stopAllSounds();
Frame 71
stopAllSounds();
Frame 72
stopAllSounds();
Frame 73
stopAllSounds();
Frame 74
stopAllSounds();
Frame 75
stopAllSounds();
Frame 76
stopAllSounds();
Frame 77
stopAllSounds();
Frame 78
stopAllSounds();
Frame 79
stop();
Instance of Symbol 420 MovieClip in Frame 79
onClipEvent (enterFrame) { if (this._currentframe == 115) { _root.gotoAndStop(3); } }
Frame 80
function makesounds() { getorb = new Sound(); getorb.attachSound("getorb"); shot = new Sound(); shot.attachSound("shot"); loseorb = new Sound(); loseorb.attachSound("loseorb"); smash0 = new Sound(); smash0.attachSound("smash0"); smash1 = new Sound(); smash1.attachSound("smash1"); smash2 = new Sound(); smash2.attachSound("smash2"); smash3 = new Sound(); smash3.attachSound("smash3"); smash4 = new Sound(); smash4.attachSound("smash4"); click = new Sound(); click.attachSound("click"); forget = new Sound(); forget.attachSound("forget"); snap = new Sound(); snap.attachSound("snap"); gust = new Sound(); gust.attachSound("gust"); music = new Sound(); music.attachSound("music"); explode = new Sound(); explode.attachSound("explode"); explode2 = new Sound(); explode2.attachSound("explode2"); } makesounds(); music.start(0, 99999); gotoAndStop (2);
Symbol 9 MovieClip [bit] Frame 1
stop();
Symbol 12 MovieClip [confuse] Frame 1
stop();
Symbol 12 MovieClip [confuse] Frame 21
stop();
Symbol 15 MovieClip [ghost] Frame 1
stop();
Symbol 15 MovieClip [ghost] Frame 21
stop();
Symbol 18 MovieClip [crystal] Frame 1
stop();
Symbol 18 MovieClip [crystal] Frame 21
stop();
Symbol 21 MovieClip [blade] Frame 1
stop();
Symbol 21 MovieClip [blade] Frame 21
stop();
Symbol 26 MovieClip [bomb] Frame 1
stop();
Symbol 26 MovieClip [bomb] Frame 13
stop();
Symbol 29 MovieClip [cloud] Frame 1
stop();
Symbol 29 MovieClip [cloud] Frame 400
gotoAndStop (1);
Symbol 35 MovieClip [meteor] Frame 1
stop();
Symbol 35 MovieClip [meteor] Frame 20
stop();
Symbol 38 MovieClip [green] Frame 1
stop();
Symbol 38 MovieClip [green] Frame 21
stop();
Symbol 41 MovieClip [grey] Frame 1
stop();
Symbol 41 MovieClip [grey] Frame 20
stop();
Symbol 44 MovieClip [bullet] Frame 1
stop();
Symbol 87 MovieClip Frame 1
stop();
Symbol 92 MovieClip Frame 1
stop();
Symbol 127 MovieClip Frame 1
stop();
Symbol 130 MovieClip Frame 1
stop();
Symbol 133 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 21
stop();
Instance of Symbol 5 MovieClip in Symbol 159 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(random(4) + 1); }
Instance of Symbol 5 MovieClip in Symbol 159 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(random(4) + 1); }
Instance of Symbol 5 MovieClip in Symbol 159 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(random(4) + 1); }
Instance of Symbol 5 MovieClip in Symbol 159 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(random(4) + 1); }
Instance of Symbol 5 MovieClip in Symbol 159 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(random(4) + 1); }
Symbol 159 MovieClip Frame 19
stop();
Symbol 165 MovieClip Frame 1
stop();
Symbol 165 MovieClip Frame 21
stop();
Symbol 171 MovieClip Frame 10
stop();
Instance of Symbol 44 MovieClip [bullet] in Symbol 182 MovieClip Frame 83
onClipEvent (load) { this.gotoAndStop(2); }
Instance of Symbol 44 MovieClip [bullet] in Symbol 182 MovieClip Frame 132
onClipEvent (load) { this.gotoAndStop(2); }
Instance of Symbol 44 MovieClip [bullet] in Symbol 188 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(2); }
Symbol 188 MovieClip Frame 21
stop();
Symbol 207 MovieClip Frame 1
stop();
Symbol 231 MovieClip Frame 1
stop();
Symbol 245 MovieClip Frame 25
stop();
Symbol 295 MovieClip Frame 1
i = 0; while (i < 21) { s = this["s" + i]; s._x = 600 + random(600); s._y = random(450); s.speed = (Math.random() * 5) + 2; i++; } onEnterFrame = function () { i = 0; while (i < 21) { s = this["s" + i]; s._x = s._x - s.speed; if (s._x < -50) { s._x = 660; s._y = random(450); } i++; } };
Symbol 304 MovieClip Frame 1
i = 0; while (i < 21) { s = this["s" + i]; s._x = random(600); s._y = random(450); i++; }
Symbol 309 MovieClip Frame 1
i = 1; while (i < 6) { w = this["w" + i]; if (!(i === 3)) { w._x = random(600); } i++; } onEnterFrame = function () { i = 1; while (i < 6) { w = this["w" + i]; w._y = w._y + 3; if (w._y > 475) { w._y = -25; w._x = random(600); } i++; } };
Symbol 316 MovieClip Frame 1
stop();
Symbol 330 MovieClip Frame 1
i = 0; while (i < 15) { s = this["s" + i]; s._x = random(600); s._y = (-random(450)) + 50; s.speed = (Math.random() * 3) + 2; i++; } onEnterFrame = function () { i = 0; while (i < 15) { s = this["s" + i]; s._y = s._y + s.speed; s.speed = s.speed + 0.1; if (s._y > 500) { s._y = -(random(450) + 50); s._x = random(600); s.speed = (Math.random() * 3) + 2; } i++; } };
Symbol 334 MovieClip Frame 1
onEnterFrame = function () { if (!_root.paused) { w2._rotation = w2._rotation + 1; } };
Symbol 339 MovieClip Frame 120
gotoAndPlay (1);
Symbol 349 MovieClip Frame 1
w1._rotation = (180 + random(40)) - 20; w2._rotation = random(360); w3._rotation = random(360); onEnterFrame = function () { if (!_root.paused) { w1._rotation = w1._rotation + 1; w2._rotation = w2._rotation - 2; w3._rotation = w3._rotation + 3; } };
Symbol 380 MovieClip Frame 1
stop();
Symbol 380 MovieClip Frame 786
stop();
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Instance of Symbol 277 MovieClip in Symbol 380 MovieClip Frame 786
onClipEvent (load) { this._visible = false; _root.makeorb(300 + this._x, 225 + this._y, 300 + this._x, 225 + this._y, false); }
Symbol 385 MovieClip Frame 1
stop();
Symbol 392 MovieClip Frame 1
stop();
Symbol 392 MovieClip Frame 16
stop();
Symbol 396 MovieClip Frame 1
stop();
Symbol 396 MovieClip Frame 35
stop();
Symbol 413 Button
on (release) { getURL ("http://www.allgamesallfree.com", "_blank"); }
Symbol 420 MovieClip Frame 97
stop(); _root.gotoAndStop(80);

Library Items

Symbol 1 GraphicUsed by:5
Symbol 2 GraphicUsed by:5
Symbol 3 GraphicUsed by:5
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:1 2 3 4Used by:9 159
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:8
Symbol 8 MovieClip [orb]Uses:7Used by:9 153 171
Symbol 9 MovieClip [bit]Uses:5 8
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12 201
Symbol 12 MovieClip [confuse]Uses:11Used by:201
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:15 198
Symbol 15 MovieClip [ghost]Uses:14Used by:198
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:16Used by:18 195
Symbol 18 MovieClip [crystal]Uses:17Used by:195
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:21
Symbol 21 MovieClip [blade]Uses:20Used by:192
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:26
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:24Used by:26 189 392 396
Symbol 26 MovieClip [bomb]Uses:23 25Used by:189
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:29 185
Symbol 29 MovieClip [cloud]Uses:28Used by:185
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:32
Symbol 32 MovieClip [shooter]Uses:31Used by:182  Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:35
Symbol 35 MovieClip [meteor]Uses:34Used by:179
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:38
Symbol 38 MovieClip [green]Uses:37Used by:176
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:41
Symbol 41 MovieClip [grey]Uses:40Used by:173
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:44
Symbol 44 MovieClip [bullet]Uses:43Used by:146 176 182 185 188 189 195 198 201
Symbol 45 GraphicUsed by:80
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:48
Symbol 48 MovieClipUses:47Used by:79
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:51
Symbol 51 MovieClipUses:50Used by:79
Symbol 52 BitmapUsed by:53
Symbol 53 GraphicUses:52Used by:54
Symbol 54 MovieClipUses:53Used by:79
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:57
Symbol 57 MovieClipUses:56Used by:79
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:60
Symbol 60 MovieClipUses:59Used by:79
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:63
Symbol 63 MovieClipUses:62Used by:79
Symbol 64 BitmapUsed by:65
Symbol 65 GraphicUses:64Used by:66
Symbol 66 MovieClipUses:65Used by:79
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:69
Symbol 69 MovieClipUses:68Used by:79
Symbol 70 BitmapUsed by:71
Symbol 71 GraphicUses:70Used by:72
Symbol 72 MovieClipUses:71Used by:79
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:75
Symbol 75 MovieClipUses:74Used by:79
Symbol 76 BitmapUsed by:77
Symbol 77 GraphicUses:76Used by:78
Symbol 78 MovieClipUses:77Used by:79
Symbol 79 MovieClipUses:48 51 54 57 60 63 66 69 72 75 78Used by:80
Symbol 80 MovieClipUses:45 79Used by:Timeline
Symbol 81 GraphicUsed by:84
Symbol 82 FontUsed by:83 88 139 140 141 142 143 148 149 152 154 157 161 162 169 170 172 174 175 177 178 180 181 183 184 186 187 190 191 193 194 196 197 199 200 202 203 204 205 206 213 214 219 222 225 226 227 228 230 232 235 236 237 238 239 240 241 242 246 247 248 249 250 251 252 253 254 255 256 262 263 264 265 266 267 270 271 272 273 278 279 280 281 284 285 286 287 290 291 292 296 297 298 300 301 305 306 310 311 312 313 317 322 323 329 331 335 336 341 342 351 352 353 356 381 382 383 386 389 397 398
Symbol 83 EditableTextUses:82Used by:84
Symbol 84 MovieClipUses:81 83Used by:Timeline
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:85Used by:87
Symbol 87 MovieClipUses:86Used by:147 153 160 168 173 176 179 182 185 189 192 195 198 201  Timeline
Symbol 88 TextUses:82Used by:92
Symbol 89 GraphicUsed by:92
Symbol 90 GraphicUsed by:92
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:88 89 90 91Used by:Timeline
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:96 98 100 102 104 106 110 112 116 118 120 122 124 127 130 133 136 212 216 221 231
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:94 95Used by:Timeline
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:94 97Used by:Timeline
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:94 99Used by:Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:94 101Used by:Timeline
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:94 103Used by:Timeline
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:94 105Used by:Timeline
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:Timeline
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:109 94Used by:Timeline
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClipUses:94 111Used by:Timeline
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:113Used by:Timeline
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClipUses:115 94Used by:Timeline
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117 94Used by:Timeline
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119 94Used by:Timeline
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121 94Used by:Timeline
Symbol 123 GraphicUsed by:124 136
Symbol 124 MovieClipUses:123 94Used by:Timeline
Symbol 125 GraphicUsed by:127
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:125 94 126Used by:Timeline
Symbol 128 GraphicUsed by:130
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:128 94 129Used by:Timeline
Symbol 131 GraphicUsed by:133
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:131 94 132Used by:Timeline
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:Timeline
Symbol 136 MovieClipUses:123 94Used by:Timeline
Symbol 137 GraphicUsed by:207
Symbol 138 GraphicUsed by:207
Symbol 139 TextUses:82Used by:207
Symbol 140 TextUses:82Used by:207
Symbol 141 TextUses:82Used by:207
Symbol 142 TextUses:82Used by:207
Symbol 143 TextUses:82Used by:147
Symbol 144 GraphicUsed by:146
Symbol 145 Sound [shot]Used by:146 188  Timeline
Symbol 146 MovieClipUses:144 44 145Used by:147 173
Symbol 147 MovieClipUses:87 143 146Used by:207
Symbol 148 TextUses:82Used by:207
Symbol 149 TextUses:82Used by:153
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:153  Timeline
Symbol 152 TextUses:82Used by:153
Symbol 153 MovieClipUses:149 8 87 151 152Used by:207
Symbol 154 TextUses:82Used by:207
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:155Used by:160
Symbol 157 TextUses:82Used by:160
Symbol 158 Sound [smash2]Used by:159  Timeline
Symbol 159 MovieClipUses:5 158Used by:160 168 176 179 182 192
Symbol 160 MovieClipUses:156 87 157 159Used by:207
Symbol 161 TextUses:82Used by:207
Symbol 162 TextUses:82Used by:168
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:163Used by:165 168
Symbol 165 MovieClipUses:164Used by:168  Timeline
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:168
Symbol 168 MovieClipUses:162 165 167 87 164 159Used by:207
Symbol 169 TextUses:82Used by:207
Symbol 170 TextUses:82Used by:173
Symbol 171 MovieClipUses:8Used by:173
Symbol 172 TextUses:82Used by:173
Symbol 173 MovieClipUses:87 41 170 146 171 172Used by:207
Symbol 174 TextUses:82Used by:207
Symbol 175 TextUses:82Used by:176
Symbol 176 MovieClipUses:175 38 87 44 159Used by:207
Symbol 177 TextUses:82Used by:207
Symbol 178 TextUses:82Used by:179
Symbol 179 MovieClipUses:87 178 35 159Used by:207
Symbol 180 TextUses:82Used by:207
Symbol 181 TextUses:82Used by:182
Symbol 182 MovieClipUses:87 32 181 44 159Used by:207
Symbol 183 TextUses:82Used by:207
Symbol 184 TextUses:82Used by:185
Symbol 185 MovieClipUses:87 29 184 44 28Used by:207
Symbol 186 TextUses:82Used by:207
Symbol 187 TextUses:82Used by:189
Symbol 188 MovieClipUses:44 145Used by:189
Symbol 189 MovieClipUses:187 87 26 44 25 188Used by:207
Symbol 190 TextUses:82Used by:207
Symbol 191 TextUses:82Used by:192
Symbol 192 MovieClipUses:191 87 21 159Used by:207
Symbol 193 TextUses:82Used by:207
Symbol 194 TextUses:82Used by:195
Symbol 195 MovieClipUses:194 87 18 44 17Used by:207
Symbol 196 TextUses:82Used by:207
Symbol 197 TextUses:82Used by:198
Symbol 198 MovieClipUses:197 87 15 44 14Used by:207
Symbol 199 TextUses:82Used by:207
Symbol 200 TextUses:82Used by:201
Symbol 201 MovieClipUses:200 87 12 44 11Used by:207
Symbol 202 TextUses:82Used by:207
Symbol 203 TextUses:82Used by:207
Symbol 204 TextUses:82Used by:207
Symbol 205 TextUses:82Used by:207
Symbol 206 TextUses:82Used by:207
Symbol 207 MovieClipUses:137 138 139 140 141 142 147 148 153 154 160 161 168 169 173 174 176 177 179 180 182 183 185 186 189 190 192 193 195 196 198 199 201 202 203 204 205 206Used by:Timeline
Symbol 208 GraphicUsed by:Timeline
Symbol 209 GraphicUsed by:210
Symbol 210 MovieClipUses:209Used by:Timeline
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClipUses:211 94Used by:Timeline
Symbol 213 TextUses:82Used by:Timeline
Symbol 214 TextUses:82Used by:Timeline
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215 94Used by:Timeline
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClipUses:217Used by:Timeline
Symbol 219 TextUses:82Used by:Timeline
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:220 94Used by:Timeline
Symbol 222 TextUses:82Used by:Timeline
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:223Used by:Timeline
Symbol 225 EditableTextUses:82Used by:Timeline
Symbol 226 TextUses:82Used by:Timeline
Symbol 227 TextUses:82Used by:Timeline
Symbol 228 EditableTextUses:82Used by:Timeline
Symbol 229 GraphicUsed by:231
Symbol 230 TextUses:82Used by:231
Symbol 231 MovieClipUses:229 94 230Used by:Timeline
Symbol 232 EditableTextUses:82Used by:Timeline
Symbol 233 GraphicUsed by:234
Symbol 234 MovieClipUses:233Used by:Timeline
Symbol 235 EditableTextUses:82Used by:Timeline
Symbol 236 TextUses:82Used by:Timeline
Symbol 237 TextUses:82Used by:Timeline
Symbol 238 TextUses:82Used by:Timeline
Symbol 239 EditableTextUses:82Used by:Timeline
Symbol 240 EditableTextUses:82Used by:Timeline
Symbol 241 EditableTextUses:82Used by:Timeline
Symbol 242 EditableTextUses:82Used by:Timeline
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:243Used by:245
Symbol 245 MovieClipUses:244Used by:Timeline
Symbol 246 EditableTextUses:82Used by:Timeline
Symbol 247 EditableTextUses:82Used by:Timeline
Symbol 248 EditableTextUses:82Used by:Timeline
Symbol 249 EditableTextUses:82Used by:Timeline
Symbol 250 EditableTextUses:82Used by:Timeline
Symbol 251 EditableTextUses:82Used by:Timeline
Symbol 252 EditableTextUses:82Used by:Timeline
Symbol 253 EditableTextUses:82Used by:Timeline
Symbol 254 EditableTextUses:82Used by:Timeline
Symbol 255 EditableTextUses:82Used by:Timeline
Symbol 256 EditableTextUses:82Used by:Timeline
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:257Used by:259
Symbol 259 MovieClipUses:258Used by:Timeline
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:260Used by:Timeline
Symbol 262 EditableTextUses:82Used by:Timeline
Symbol 263 EditableTextUses:82Used by:Timeline
Symbol 264 EditableTextUses:82Used by:Timeline
Symbol 265 EditableTextUses:82Used by:Timeline
Symbol 266 EditableTextUses:82Used by:Timeline
Symbol 267 EditableTextUses:82Used by:Timeline
Symbol 268 GraphicUsed by:269
Symbol 269 MovieClipUses:268Used by:Timeline
Symbol 270 EditableTextUses:82Used by:Timeline
Symbol 271 EditableTextUses:82Used by:Timeline
Symbol 272 EditableTextUses:82Used by:Timeline
Symbol 273 EditableTextUses:82Used by:Timeline
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:Timeline
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:276Used by:380  Timeline
Symbol 278 EditableTextUses:82Used by:Timeline
Symbol 279 EditableTextUses:82Used by:Timeline
Symbol 280 EditableTextUses:82Used by:Timeline
Symbol 281 EditableTextUses:82Used by:Timeline
Symbol 282 GraphicUsed by:283
Symbol 283 MovieClipUses:282Used by:Timeline
Symbol 284 EditableTextUses:82Used by:Timeline
Symbol 285 EditableTextUses:82Used by:Timeline
Symbol 286 EditableTextUses:82Used by:Timeline
Symbol 287 EditableTextUses:82Used by:Timeline
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:Timeline
Symbol 290 EditableTextUses:82Used by:Timeline
Symbol 291 EditableTextUses:82Used by:Timeline
Symbol 292 EditableTextUses:82Used by:Timeline
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:295 330
Symbol 295 MovieClipUses:294Used by:Timeline
Symbol 296 EditableTextUses:82Used by:Timeline
Symbol 297 EditableTextUses:82Used by:Timeline
Symbol 298 EditableTextUses:82Used by:Timeline
Symbol 299 GraphicUsed by:Timeline
Symbol 300 EditableTextUses:82Used by:Timeline
Symbol 301 EditableTextUses:82Used by:Timeline
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302Used by:304
Symbol 304 MovieClipUses:303Used by:Timeline
Symbol 305 EditableTextUses:82Used by:Timeline
Symbol 306 EditableTextUses:82Used by:Timeline
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:307Used by:309
Symbol 309 MovieClipUses:308Used by:Timeline
Symbol 310 EditableTextUses:82Used by:Timeline
Symbol 311 EditableTextUses:82Used by:Timeline
Symbol 312 EditableTextUses:82Used by:Timeline
Symbol 313 EditableTextUses:82Used by:Timeline
Symbol 314 GraphicUsed by:316
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:314 315Used by:Timeline
Symbol 317 EditableTextUses:82Used by:Timeline
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:Timeline
Symbol 320 GraphicUsed by:321
Symbol 321 MovieClipUses:320Used by:Timeline
Symbol 322 EditableTextUses:82Used by:Timeline
Symbol 323 EditableTextUses:82Used by:Timeline
Symbol 324 GraphicUsed by:Timeline
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:325Used by:Timeline
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClipUses:327Used by:Timeline
Symbol 329 EditableTextUses:82Used by:Timeline
Symbol 330 MovieClipUses:294Used by:Timeline
Symbol 331 EditableTextUses:82Used by:Timeline
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:334
Symbol 334 MovieClipUses:333Used by:Timeline
Symbol 335 EditableTextUses:82Used by:Timeline
Symbol 336 EditableTextUses:82Used by:Timeline
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:337Used by:339
Symbol 339 MovieClipUses:338Used by:340
Symbol 340 MovieClipUses:339Used by:Timeline
Symbol 341 EditableTextUses:82Used by:Timeline
Symbol 342 EditableTextUses:82Used by:Timeline
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:343Used by:349
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:345Used by:349
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:347Used by:349
Symbol 349 MovieClipUses:344 346 348Used by:350
Symbol 350 MovieClipUses:349Used by:Timeline
Symbol 351 EditableTextUses:82Used by:Timeline
Symbol 352 EditableTextUses:82Used by:Timeline
Symbol 353 EditableTextUses:82Used by:Timeline
Symbol 354 GraphicUsed by:355
Symbol 355 MovieClipUses:354Used by:Timeline
Symbol 356 EditableTextUses:82Used by:Timeline
Symbol 357 GraphicUsed by:380
Symbol 358 ShapeTweeningUsed by:380
Symbol 359 ShapeTweeningUsed by:380
Symbol 360 ShapeTweeningUsed by:380
Symbol 361 ShapeTweeningUsed by:380
Symbol 362 ShapeTweeningUsed by:380
Symbol 363 ShapeTweeningUsed by:380
Symbol 364 ShapeTweeningUsed by:380
Symbol 365 ShapeTweeningUsed by:380
Symbol 366 ShapeTweeningUsed by:380
Symbol 367 GraphicUsed by:380
Symbol 368 ShapeTweeningUsed by:380
Symbol 369 GraphicUsed by:380
Symbol 370 ShapeTweeningUsed by:380
Symbol 371 ShapeTweeningUsed by:380
Symbol 372 ShapeTweeningUsed by:380
Symbol 373 GraphicUsed by:380
Symbol 374 ShapeTweeningUsed by:380
Symbol 375 ShapeTweeningUsed by:380
Symbol 376 GraphicUsed by:380
Symbol 377 ShapeTweeningUsed by:380
Symbol 378 ShapeTweeningUsed by:380
Symbol 379 GraphicUsed by:380
Symbol 380 MovieClipUses:357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 277Used by:Timeline
Symbol 381 EditableTextUses:82Used by:Timeline
Symbol 382 EditableTextUses:82Used by:Timeline
Symbol 383 EditableTextUses:82Used by:Timeline
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClipUses:384Used by:Timeline
Symbol 386 EditableTextUses:82Used by:Timeline
Symbol 387 GraphicUsed by:388
Symbol 388 MovieClipUses:387Used by:Timeline
Symbol 389 EditableTextUses:82Used by:Timeline
Symbol 390 GraphicUsed by:392
Symbol 391 GraphicUsed by:392
Symbol 392 MovieClipUses:390 391 25Used by:Timeline
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClipUses:393Used by:396
Symbol 395 Sound [explode2]Used by:396  Timeline
Symbol 396 MovieClipUses:394 25 395Used by:Timeline
Symbol 397 EditableTextUses:82Used by:Timeline
Symbol 398 TextUses:82Used by:Timeline
Symbol 399 Sound [music]Used by:Timeline
Symbol 400 Sound [loseorb1]Used by:Timeline
Symbol 401 Sound [getorb]Used by:Timeline
Symbol 402 Sound [loseorb]Used by:Timeline
Symbol 403 Sound [smash1]Used by:Timeline
Symbol 404 Sound [gust]Used by:Timeline
Symbol 405 Sound [forget]Used by:Timeline
Symbol 406 Sound [click]Used by:Timeline
Symbol 407 Sound [snap]Used by:Timeline
Symbol 408 Sound [smash3]Used by:Timeline
Symbol 409 Sound [smash0]Used by:Timeline
Symbol 410 Sound [smash4]Used by:Timeline
Symbol 411 Sound [explode]Used by:Timeline
Symbol 412 GraphicUsed by:413  Timeline
Symbol 413 ButtonUses:412Used by:Timeline
Symbol 414 GraphicUsed by:415
Symbol 415 MovieClipUses:414Used by:420
Symbol 416 GraphicUsed by:420
Symbol 417 FontUsed by:418
Symbol 418 TextUses:417Used by:420
Symbol 419 GraphicUsed by:420
Symbol 420 MovieClipUses:415 416 418 419Used by:Timeline

Instance Names

"backgrounds"Frame 1Symbol 80 MovieClip
"loader"Frame 1Symbol 84 MovieClip
"cursor"Frame 1Symbol 87 MovieClip
"startbutton"Frame 2Symbol 96 MovieClip
"options"Frame 2Symbol 98 MovieClip
"inst"Frame 2Symbol 100 MovieClip
"creds"Frame 2Symbol 102 MovieClip
"scores"Frame 2Symbol 104 MovieClip
"moregame"Frame 2Symbol 106 MovieClip
"backb"Frame 3Symbol 110 MovieClip
"remouse"Frame 3Symbol 112 MovieClip
"low"Frame 3Symbol 116 MovieClip
"med"Frame 3Symbol 118 MovieClip
"high"Frame 3Symbol 120 MovieClip
"clearsaved"Frame 3Symbol 122 MovieClip
"bgnext"Frame 3Symbol 124 MovieClip
"bgprev"Frame 3Symbol 124 MovieClip
"bgchooser"Frame 3Symbol 127 MovieClip
"sfx"Frame 3Symbol 130 MovieClip
"smusic"Frame 3Symbol 133 MovieClip
"prev"Frame 4Symbol 136 MovieClip
"nex"Frame 4Symbol 136 MovieClip
"screen"Frame 4Symbol 207 MovieClip
"paul"Frame 5Symbol 212 MovieClip
"jpn"Frame 5Symbol 216 MovieClip
"ewanh"Frame 5Symbol 218 MovieClip
"agaf"Frame 5Symbol 221 MovieClip
"sendscore"Frame 6Symbol 231 MovieClip
"farrow"Frame 7Symbol 136 MovieClip
"barrow"Frame 7Symbol 136 MovieClip
"startbutton"Frame 7Symbol 96 MovieClip
"newrecord"Frame 7Symbol 245 MovieClip
"sends"Frame 7Symbol 231 MovieClip
"bar"Frame 8Symbol 151 MovieClip
"ldown"Frame 18Symbol 259 MovieClip
"walls"Frame 19Symbol 261 MovieClip
"porb"Frame 19Symbol 165 MovieClip
"ldown"Frame 20Symbol 259 MovieClip
"walls"Frame 25Symbol 269 MovieClip
"walls"Frame 29Symbol 275 MovieClip
"porb"Frame 29Symbol 165 MovieClip
"ldown"Frame 30Symbol 259 MovieClip
"walls"Frame 33Symbol 283 MovieClip
"porb"Frame 33Symbol 165 MovieClip
"shooter"Frame 35Symbol 32 MovieClip [shooter]
"walls"Frame 36Symbol 289 MovieClip
"porb"Frame 36Symbol 165 MovieClip
"ldown"Frame 37Symbol 259 MovieClip
"walls"Frame 39Symbol 295 MovieClip
"walls"Frame 43Symbol 304 MovieClip
"porb"Frame 43Symbol 165 MovieClip
"ccurse"Frame 44Symbol 87 MovieClip
"walls"Frame 45Symbol 309 MovieClip
"target"Frame 47Symbol 316 MovieClip
"pad"Frame 48Symbol 319 MovieClip
"walls"Frame 48Symbol 321 MovieClip
"porb"Frame 48Symbol 165 MovieClip
"ball"Frame 49Symbol 326 MovieClip
"p2"Frame 49Symbol 328 MovieClip
"walls"Frame 50Symbol 330 MovieClip
"walls"Frame 51Symbol 334 MovieClip
"porb"Frame 51Symbol 165 MovieClip
"walls"Frame 53Symbol 340 MovieClip
"porb"Frame 55Symbol 165 MovieClip
"walls"Frame 55Symbol 350 MovieClip
"walls"Frame 57Symbol 355 MovieClip
"walls"Frame 58Symbol 380 MovieClip
"porb"Frame 58Symbol 165 MovieClip
"b1"Frame 60Symbol 385 MovieClip
"b2"Frame 60Symbol 385 MovieClip
"b3"Frame 60Symbol 385 MovieClip
"b4"Frame 60Symbol 385 MovieClip
"b5"Frame 60Symbol 385 MovieClip
"b6"Frame 60Symbol 385 MovieClip
"walls"Frame 61Symbol 388 MovieClip
"porb"Frame 61Symbol 165 MovieClip
"b2"Frame 62Symbol 392 MovieClip
"b1"Frame 62Symbol 392 MovieClip
"b4"Frame 62Symbol 392 MovieClip
"b3"Frame 62Symbol 392 MovieClip
"b5"Frame 62Symbol 392 MovieClip
"b6"Frame 62Symbol 392 MovieClip
"boss"Frame 62Symbol 396 MovieClip
"b2"Symbol 9 MovieClip [bit] Frame 1Symbol 5 MovieClip
"bg1"Symbol 79 MovieClip Frame 1Symbol 48 MovieClip
"bg2"Symbol 79 MovieClip Frame 1Symbol 51 MovieClip
"bg3"Symbol 79 MovieClip Frame 1Symbol 54 MovieClip
"bg4"Symbol 79 MovieClip Frame 1Symbol 57 MovieClip
"bg5"Symbol 79 MovieClip Frame 1Symbol 60 MovieClip
"bg6"Symbol 79 MovieClip Frame 1Symbol 63 MovieClip
"bg7"Symbol 79 MovieClip Frame 1Symbol 66 MovieClip
"bg8"Symbol 79 MovieClip Frame 1Symbol 69 MovieClip
"bg9"Symbol 79 MovieClip Frame 1Symbol 72 MovieClip
"bg10"Symbol 79 MovieClip Frame 1Symbol 75 MovieClip
"bg11"Symbol 79 MovieClip Frame 1Symbol 78 MovieClip
"bgwall"Symbol 80 MovieClip Frame 1Symbol 79 MovieClip
"s0"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s1"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s2"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s3"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s4"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s5"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s6"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s7"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s8"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s9"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s10"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s11"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s12"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s13"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s14"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s15"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s16"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s17"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s18"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s19"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"s20"Symbol 295 MovieClip Frame 1Symbol 294 MovieClip
"w1"Symbol 309 MovieClip Frame 1Symbol 308 MovieClip
"w2"Symbol 309 MovieClip Frame 1Symbol 308 MovieClip
"w3"Symbol 309 MovieClip Frame 1Symbol 308 MovieClip
"w4"Symbol 309 MovieClip Frame 1Symbol 308 MovieClip
"s0"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s1"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s2"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s3"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s4"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s5"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s6"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s7"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s8"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s9"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s10"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s11"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s12"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s13"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s14"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s15"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s16"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s17"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s18"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s19"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"s20"Symbol 330 MovieClip Frame 1Symbol 294 MovieClip
"w2"Symbol 334 MovieClip Frame 1Symbol 333 MovieClip
"w1"Symbol 349 MovieClip Frame 1Symbol 344 MovieClip
"w2"Symbol 349 MovieClip Frame 1Symbol 346 MovieClip
"w3"Symbol 349 MovieClip Frame 1Symbol 348 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 8 as "orb"
ExportAssets (56)Timeline Frame 1Symbol 9 as "bit"
ExportAssets (56)Timeline Frame 1Symbol 12 as "confuse"
ExportAssets (56)Timeline Frame 1Symbol 15 as "ghost"
ExportAssets (56)Timeline Frame 1Symbol 18 as "crystal"
ExportAssets (56)Timeline Frame 1Symbol 21 as "blade"
ExportAssets (56)Timeline Frame 1Symbol 26 as "bomb"
ExportAssets (56)Timeline Frame 1Symbol 29 as "cloud"
ExportAssets (56)Timeline Frame 1Symbol 32 as "shooter"
ExportAssets (56)Timeline Frame 1Symbol 35 as "meteor"
ExportAssets (56)Timeline Frame 1Symbol 38 as "green"
ExportAssets (56)Timeline Frame 1Symbol 41 as "grey"
ExportAssets (56)Timeline Frame 1Symbol 44 as "bullet"
ExportAssets (56)Timeline Frame 4Symbol 145 as "shot"
ExportAssets (56)Timeline Frame 4Symbol 158 as "smash2"
ExportAssets (56)Timeline Frame 62Symbol 395 as "explode2"
ExportAssets (56)Timeline Frame 63Symbol 399 as "music"
ExportAssets (56)Timeline Frame 64Symbol 400 as "loseorb1"
ExportAssets (56)Timeline Frame 65Symbol 401 as "getorb"
ExportAssets (56)Timeline Frame 66Symbol 402 as "loseorb"
ExportAssets (56)Timeline Frame 67Symbol 403 as "smash1"
ExportAssets (56)Timeline Frame 68Symbol 404 as "gust"
ExportAssets (56)Timeline Frame 69Symbol 405 as "forget"
ExportAssets (56)Timeline Frame 70Symbol 406 as "click"
ExportAssets (56)Timeline Frame 71Symbol 407 as "snap"
ExportAssets (56)Timeline Frame 72Symbol 408 as "smash3"
ExportAssets (56)Timeline Frame 73Symbol 409 as "smash0"
ExportAssets (56)Timeline Frame 75Symbol 410 as "smash4"
ExportAssets (56)Timeline Frame 77Symbol 411 as "explode"

Dynamic Text Variables

percSymbol 83 EditableText""
namevarSymbol 225 EditableText""
scorevarSymbol 228 EditableText""
howmanySymbol 232 EditableText""
leveltextSymbol 235 EditableText""
tscoreSymbol 239 EditableText"TOTAL SCORE:"
cltimeSymbol 240 EditableText""
clorbSymbol 241 EditableText""
clpointSymbol 242 EditableText""
ltextSymbol 246 EditableText""
ltextSymbol 247 EditableText""
ltextSymbol 248 EditableText""
ltextSymbol 249 EditableText""
ltextSymbol 250 EditableText""
ltextSymbol 251 EditableText""
ltextSymbol 252 EditableText""
ltextSymbol 253 EditableText""
ltextSymbol 254 EditableText""
ltextSymbol 255 EditableText""
ltextSymbol 256 EditableText""
ltextSymbol 262 EditableText""
ltextSymbol 263 EditableText""
ltextSymbol 264 EditableText""
ltextSymbol 265 EditableText""
ltextSymbol 266 EditableText""
ltextSymbol 267 EditableText""
ltextSymbol 270 EditableText""
ltextSymbol 271 EditableText""
ltextSymbol 272 EditableText""
ltextSymbol 273 EditableText""
ltextSymbol 278 EditableText""
ltextSymbol 279 EditableText""
ltextSymbol 280 EditableText""
ltextSymbol 281 EditableText""
ltextSymbol 284 EditableText""
vtime2Symbol 285 EditableText""
ltextSymbol 286 EditableText""
ltextSymbol 287 EditableText""
ltextSymbol 290 EditableText""
ltextSymbol 291 EditableText""
ltextSymbol 292 EditableText""
ltextSymbol 296 EditableText""
ltextSymbol 297 EditableText""
ltextSymbol 298 EditableText""
vtimeSymbol 300 EditableText""
ltextSymbol 301 EditableText""
ltextSymbol 305 EditableText""
ltextSymbol 306 EditableText""
ltextSymbol 310 EditableText""
vtimeSymbol 311 EditableText""
ltextSymbol 312 EditableText""
vtimeSymbol 313 EditableText""
ltextSymbol 317 EditableText""
vtimeSymbol 322 EditableText""
ltextSymbol 323 EditableText""
ltextSymbol 329 EditableText""
ltextSymbol 331 EditableText""
ltextSymbol 335 EditableText""
ltextSymbol 336 EditableText""
ltextSymbol 341 EditableText""
ltextSymbol 342 EditableText""
ltextSymbol 351 EditableText""
vtimeSymbol 352 EditableText""
ltextSymbol 353 EditableText""
ltextSymbol 356 EditableText""
ltextSymbol 381 EditableText""
vtimeSymbol 382 EditableText""
ltextSymbol 383 EditableText""
ltextSymbol 386 EditableText""
ltextSymbol 389 EditableText""
ltextSymbol 397 EditableText""




https://swfchan.com/53/263895/info.shtml
Created: 16/4 -2026 18:54:48 Last modified: 16/4 -2026 18:54:48 Server time: 17/04 -2026 07:25:26