STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #31169 |
Loading 100% of 2.4 MB |
label |
©2007 Big Bomb Games This game may be redistributed without express permission from Big Bomb Games. In no event is Big Bomb Games liable for any damages resulting from the use, redistribution or republication of this game, or the inability to do so. |
This game may occasionally make a connection to Big Bomb Games during gameplay to trasmit non-personal information. This connection is made solely to count the number of times our games are played. Absolutely no personal or identifying information will be included in this transmission. To find out more about how Big Bomb Games protects the privacy of our members and visitors, please review our entire privacy at: http://www.bigbombgames.com/privacy |
label |
Can you make it through 9 dances to be crowned King of Disco? Roll your disco ball over lights on the dance floor to change them to your color. Control as much of the floor as possible during each 60+ second round, but be sure to pay attention to the goals for each round in order to continue play. Collect power-ups to gain the upper-hand. Controls: Accelerate/move forward Turn left Turn right Activate/use a power-up |
or |
space |
Power-ups Power-ups will periodically appear on the dance floor. Capturing them and using them effectively can make the difference between failure and success. There are 4 power-ups available: Bomb Color Burst Super Size Super Speed |
Bomb Bombs knock all other balls back at an alarming rate. Most effective when used to to fight other balls or when attemting to grab other power-ups. |
Color Burst The color burst expands around you when triggered and places any part of the floor it touches under your control. It's best used when you're trailing behind other balls and you need a quick boost in rank. |
Super Size Super size allows you to increase your mass without effecting your speed or handling. Use it when fighting other balls or to grab control of more squares at once. |
Super Speed Super speed dramatically increases your speed, allowing you to cross the dance floor faster than greased lightning. Avoid other balls when in use, however, as super speed decreases your stability in collisions. |
Tanner O'Maley |
speed acceleration handling mass |
scarlet |
yoshiro |
buttercup |
o |
score: |
o |
Time: |
6o:oo |
level 1 |
Game Type |
Game Description |
click "ready" or your space bar to continue |
goal: |
wrap up will review goal for level, show player performance against goal and tally bonuses |
goal achieved? |
yes/no |
best control |
yes/no |
bonus |
yes/no |
get ready for level 2 |
Game over |
Challenge your friends to beat your Disco Balls high score. |
Disco Lives! Play again (and again, and again.) |
Flaunt your disco talent on the Big Bomb Games scoreboard. |
Just say no to disco and quit this game. |
ActionScript [AS1/AS2]
Frame 1function nwmu() { getURL ("http://www.bigbombgames.com"); } nmu = new ContextMenu(); nmu.hideBuiltInItems(); menued = new ContextMenuItem("\u00A92007 Big Bomb Games", nwmu); nmu.customItems.push(menued); _root.menu = nmu; stop();Frame 2stop();Frame 3function moveball(ball) { tball = eval ("circle" + ball); if (!tball.inplay) { tball.ACCELERATING = false; tball.BRAKING = false; tball.TURNLEFT = false; tball.TURNRIGHT = false; } else { tball.framecount = tball.framecount + 1; tball.prex = tball._x; tball.prey = tball._y; if (tball.growing) { tball._xscale = tball._xscale + ((tball.currentscale - tball._xscale) / 8); tball._yscale = tball._yscale + ((tball.currentscale - tball._yscale) / 8); } else { tball._xscale = tball.originscale; tball._yscale = tball.originscale; tball.mass = tball.originmass; } if (tball.ACCELERATING) { if (tball.speed < tball.maxspeed) { tball.speed = tball.speed + tball.acceleration; } } else { tball.speed = tball.speed * tball.decelerate; } if (((ball == player) && (tball.speed < 0.1)) && (tball.speed > -0.1)) { tball.speed = 0; } if (tball.TURNLEFT) { tball._rotation = tball._rotation - tball.handling; } else if (tball.TURNRIGHT) { tball._rotation = tball._rotation + tball.handling; } tball.shine._rotation = tball._rotation * -1; tball.xaccel = tball.speed * Math.sin(tball._rotation * (Math.PI/180)); tball.yaccel = (tball.speed * Math.cos(tball._rotation * (Math.PI/180))) * -1; tball.xspeed = tball.xspeed + ((tball.xaccel - tball.xspeed) / 10); tball.yspeed = tball.yspeed + ((tball.yaccel - tball.yspeed) / 10); tball._y = tball._y + tball.yspeed; tball._x = tball._x + tball.xspeed; tball.ACCELERATING = false; tball.BRAKING = false; tball.TURNLEFT = false; tball.TURNRIGHT = false; } } function checkhits() { i = 1; while (i < 5) { temp1 = eval ("circle" + i); radius1 = temp1.currentwidth / 2; j = i + 1; while (j < 5) { temp2 = eval ("circle" + j); radius2 = temp2.currentwidth / 2; rdistance = radius1 + radius2; xdistance = temp1._x - temp2._x; ydistance = temp1._y - temp2._y; tdistance = Math.sqrt((xdistance * xdistance) + (ydistance * ydistance)); if (tdistance < rdistance) { cdistance = (rdistance - tdistance) / 2; tangent1 = (Math.atan2(Number(temp1._y - temp2._y), Number(temp1._x - temp2._x)) * 180) / Math.PI; if (tangent1 < -90) { tangent1 = tangent1 + 270; } else { tangent1 = tangent1 - 90; } temp2._x = temp2._x + (cdistance * Math.sin(tangent1 * (Math.PI/180))); temp2._y = temp2._y + ((cdistance * Math.cos(tangent1 * (Math.PI/180))) * -1); temp1._x = temp1._x + ((cdistance * Math.sin(tangent1 * (Math.PI/180))) * -1); temp1._y = temp1._y + (cdistance * Math.cos(tangent1 * (Math.PI/180))); if (temp1.maxspeed > temp2.maxspeed) { max = temp2.maxspeed; } else { max = temp1.maxspeed; } speed1 = temp1.speed; speed2 = temp2.speed; if (speed1 > max) { speed1 = max; } if (speed2 > max) { speed2 = max; } xspeed1 = temp1.speed * Math.sin(tangent1 * (Math.PI/180)); yspeed1 = (temp1.speed * Math.cos(tangent1 * (Math.PI/180))) * -1; xspeed2 = (temp2.speed * Math.sin(tangent1 * (Math.PI/180))) * -1; yspeed2 = temp2.speed * Math.cos(tangent1 * (Math.PI/180)); energy1m = temp1.mass * temp1.speed; energy2m = temp2.mass * temp2.speed; energy1 = energy1m / (energy1m + energy2m); energy2 = energy2m / (energy1m + energy2m); temp1.xspeed = temp1.xspeed + ((xspeed2 * energy1) - (xspeed1 * energy2)); if (Math.abs(temp1.xspeed) > max) { temp1.xspeed = (temp1.speed * temp1.xspeed) / Math.abs(temp1.xspeed); } temp1.yspeed = temp1.yspeed + ((yspeed2 * energy1) - (yspeed1 * energy2)); if (Math.abs(temp1.yspeed) > max) { temp1.yspeed = (temp1.speed * temp1.yspeed) / Math.abs(temp1.yspeed); } temp2.xspeed = temp2.xspeed + ((xspeed1 * energy2) - (xspeed2 * energy1)); if (Math.abs(temp2.xspeed) > max) { temp2.xspeed = (temp2.speed * temp2.xspeed) / Math.abs(temp2.xspeed); } temp2.yspeed = temp2.yspeed + ((yspeed1 * energy2) - (yspeed2 * energy1)); if (Math.abs(temp2.yspeed) > max) { temp2.yspeed = (temp2.speed * temp2.yspeed) / Math.abs(temp2.yspeed); } sfballhit.play(); } j++; } if (temp1._y < (yboard[0] - (temp1._width / 2))) { temp1._y = yboard[1] - ((temp1._width / 2) + 0); } if (temp1._y > (yboard[1] + (temp1._width / 2))) { temp1._y = yboard[0] + ((temp1._width / 2) + 0); } if (temp1._x < (xboard[0] - (temp1._width / 2))) { temp1._x = xboard[1] - ((temp1._width / 2) + 0); } if ((temp1._x > (xboard[1] + (temp1._width / 2))) && (temp1._x < xboard[2])) { temp1._x = xboard[0] + ((temp1._width / 2) + 0); } i++; } } function loadlvl() { fc1._alpha = 25; fc2._alpha = 25; fc3._alpha = 25; fc4._alpha = 25; fc1.express.gotoAndStop(1); fc2.express.gotoAndStop(1); fc3.express.gotoAndStop(1); fc4.express.gotoAndStop(1); score1._alpha = 25; score2._alpha = 25; score3._alpha = 25; score4._alpha = 25; score1.score = 0; score2.score = 0; score3.score = 0; score4.score = 0; tgl = 0; powerx = 0; powery = 0; switch (currlvl) { case 1 : gtype = "Quartermaster"; voice = gtquartermaster; gdesc = "Control at least 25 percent of the floor when time runs out."; rbc = 0.25; pbc = 0; rnk = 0; board = "5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5"; circle1.inplay = false; circle2.inplay = false; circle3.inplay = true; circle4.inplay = false; return; case 2 : gtype = "Half Full"; voice = gthalffull; gdesc = "Control at least 5o percent of the floor when time runs out."; rbc = 0.5; pbc = 0; rnk = 0; board = "4,4,4,4,0,1,1,1,1,4,4,4,4,0,1,1,1,1,4,4,4,4,0,1,1,1,1,4,4,4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,2,2,2,3,3,3,3,0,2,2,2,2,3,3,3,3,0,2,2,2,2,3,3,3,3,0,2,2,2,2"; circle1.inplay = false; circle2.inplay = false; circle3.inplay = false; circle4.inplay = true; return; case 3 : gtype = "Speed Round"; voice = gtspeedround; gdesc = "Gain control of 65 percent of the floor within sixty seconds."; rbc = 0; pbc = 0.65; rnk = 0; board = "0,5,5,5,5,5,5,5,0,5,0,5,5,5,5,5,0,5,5,5,0,5,5,5,0,5,5,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,5,5,5,5,5,0,5,5,5,0,5,5,5,0,5,5,5,5,5,0,5,0,5,5,5,5,5,5,5,0"; circle1.inplay = false; circle2.inplay = true; circle3.inplay = false; circle4.inplay = false; return; case 4 : gtype = "Deuce"; voice = gtdeuce; gdesc = "Finish in 1st or 2nd place."; rbc = 0; pbc = 0; rnk = 2; board = "1,1,5,5,5,5,5,5,5,1,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,5,5,5,5,0,5,5,5,0,5,5,5,5,0,5,5,5,0,5,5,5,5,0,5,5,5,0,5,5,5,5,0,0,0,0,0,5,5,4,5,5,5,5,5,5,5,3,4,4,5,5,5,5,5,3,3"; circle1.inplay = false; circle2.inplay = true; circle3.inplay = true; circle4.inplay = false; return; case 5 : gtype = "Dominator"; voice = gtdominator; gdesc = "Control half the floor for any moment during the round."; rbc = 0; pbc = 0.5; rnk = 0; board = "0,2,2,2,0,0,1,3,0,3,3,2,0,1,1,3,3,1,1,3,0,1,5,0,0,2,2,0,1,0,5,5,5,1,0,2,0,1,5,5,5,5,5,1,0,2,0,1,5,5,5,0,1,0,2,2,0,0,5,1,0,3,1,2,3,3,1,1,0,2,3,3,0,3,1,0,0,2,2,2,0"; circle1.inplay = false; circle2.inplay = false; circle3.inplay = true; circle4.inplay = true; return; case 6 : gtype = "King of the Hill"; voice = gtking; gdesc = "Control more of the floor than any other ball when time runs out."; rbc = 0; pbc = 0; rnk = 1; board = "5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,4,5,5,5,5,5,5,1,4,2,5,5,5,5,5,5,4,2,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5"; circle1.inplay = false; circle2.inplay = true; circle3.inplay = false; circle4.inplay = true; return; case 7 : gtype = "Quartermaster"; voice = gtquartermaster; gdesc = "Control at least 25 percent of the floor when time runs out."; rbc = 0.25; pbc = 0; rnk = 0; board = "3,3,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,5,5,5,5,5,0,0,0,0,5,5,5,5,5,0,0,0,0,5,5,5,5,5,0,0,0,0,5,5,5,5,5,0,0,0,0,5,5,5,5,5,0,0,2,2,0,0,0,0,0,1,1,2,2,0,0,0,0,0,1,1"; circle1.inplay = true; circle2.inplay = true; circle3.inplay = true; circle4.inplay = true; return; case 8 : gtype = "Deuce"; voice = gtdeuce; gdesc = "Finish in 1st or 2nd place."; rbc = 0; pbc = 0; rnk = 2; board = "1,1,1,1,5,2,2,2,2,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,2,1,0,0,1,5,2,0,0,2,5,0,0,5,5,5,0,0,5,4,0,0,4,5,3,0,0,3,4,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,3,4,4,4,4,5,3,3,3,3"; circle1.inplay = true; circle2.inplay = true; circle3.inplay = true; circle4.inplay = true; return; case 9 : gtype = "King of the Hill"; voice = gtking; gdesc = "Control more of the floor than any other ball when time runs out."; rbc = 0; pbc = 0; rnk = 1; board = "2,2,2,0,0,0,3,3,3,2,2,2,0,0,0,3,3,3,2,2,2,0,0,0,3,3,3,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,1,1,1,0,0,0,4,4,4,1,1,1,0,0,0,4,4,4,1,1,1,0,0,0,4,4,4"; circle1.inplay = true; circle2.inplay = true; circle3.inplay = true; circle4.inplay = true; return; default : gtype = "error"; gdesc = "an error has occurred."; rbc = 0; pbc = 0; rnk = 0; board = "0"; circle1.inplay = false; circle2.inplay = false; circle3.inplay = false; circle4.inplay = false; } } function buildout() { boardtotal = 0; boardarray = board.split(","); i = 0; while (i < boardarray.length) { if (boardarray[i] > 0) { var _local1 = stg.box.duplicateMovieClip("box" + i, i); _local1._x = ((i % 9) * 45) + 40; _local1._y = (int(i / 9) * 45) + 40; _local1.hitvalue = boardarray[i]; _local1.boardvalue = i; boardtotal = boardtotal + 1; } i++; } } function startlevel() { stopAllSounds(); sfdisco.gotoAndPlay(2); ccontrol = 0; hcontrol = 0; tcontrol = 0; startDate = new Date(); targetTime = startDate.getTime() + 64500; i = 1; while (i < 5) { tfc = eval ("fc" + i); tsc = eval ("score" + i); tcr = eval ("circle" + i); tfc._alpha = 25; tsc._alpha = 25; tsc.score = 0; tcr.acceleration = unperform[(i - 1) * 3]; tcr._x = unperform[((i - 1) * 3) + 1]; tcr._y = unperform[((i - 1) * 3) + 2]; if (tcr.inplay || (i == player)) { tcr.acceleration = perform[(i - 1) * 3]; tcr._x = perform[((i - 1) * 3) + 1]; tcr._y = perform[((i - 1) * 3) + 2]; tcr.framecount = 95; tcr.ACCELERATING = true; tfc._alpha = 100; tfc.express.gotoAndStop(3); tsc._alpha = 100; } if (i == player) { if (tcr.inplay) { circle1.inplay = true; circle1.acceleration = perform[0]; circle1._x = perform[1]; circle1._y = perform[2]; circle1.framecount = 95; circle1.ACCELERATING = true; fc1._alpha = 100; fc1.express.gotoAndStop(3); score1._alpha = 100; } else { tcr.inplay = true; } } i++; } } function playlevel() { currentDate = new Date(); currentTime = currentDate.getTime(); if (currentTime > targetTime) { i = 1; while (i < 5) { tcr = eval ("circle" + i); tcr.acceleration = unperform[(i - 1) * 3]; tcr._x = unperform[((i - 1) * 3) + 1]; tcr._y = unperform[((i - 1) * 3) + 2]; tcr.speed = 0; tcr.xspeed = 0; tcr.yspeed = 0; tcr.inplay = false; tcr._rotation = 45 + (i * 90); i++; } i = 0; while (i < total) { tbx = eval ("stg.box" + i); removeMovieClip(tbx); i++; } delete onEnterFrame; timedisplay = "o:oo"; gotoAndStop ("endround"); } else { rSeconds = int((targetTime - currentTime) / 1000); r100s = int(((targetTime - currentTime) % 1000) / 10); rTime = rSeconds + ":"; if (r100s < 10) { rTime = rTime + "0"; } rTime = rTime + r100s; timedisplay = rTime.split("0").join("o"); currentscores(); boardleader(); checkhits(); if (((int((targetTime - currentTime) / 100) % 10) == 0) && (!newlights)) { newlights = true; random1 = random(boardarray.length); random2 = random(boardarray.length); random3 = random(boardarray.length); random4 = random(boardarray.length); random5 = random(boardarray.length); random6 = random(boardarray.length); random7 = random(boardarray.length); random8 = random(boardarray.length); random9 = random(boardarray.length); i = 0; while (i < boardarray.length) { templight = eval ("stg.box" + i); if (((((((((i == random1) || (i == random2)) || (i == random3)) || (i == random4)) || (i == random5)) || (i == random6)) || (i == random7)) || (i == random8)) || (i == random8)) { templight.light._alpha = 100; } else { templight.light._alpha = 0; } i++; } } else if ((int((targetTime - currentTime) / 100) % 10) > 0) { newlights = false; } } } function rqpowerup() { if (current == "play") { gotoAndStop ("powerup"); } } function plpowerup() { powerup = new Array("bomb", "burst", "speed", "grow"); p = 0; while (p < 4) { powertemp = eval (powerup[p]); powertemp._x = powertemp.originx; powertemp._y = powertemp.originy; if (powerup[p] == ppu) { ppuval = p; } else { powertemp.hitvalue = 5; } p++; } powerx = 0; powery = 0; if (current == "play") { if (ppuval < 10) { powerup.splice(ppuval, 1); } powerselection = eval (powerup[random(powerup.length)]); powerlocation = random(total); powerselection._x = ((powerlocation % 9) * 45) + 40; powerselection._y = (int(powerlocation / 9) * 45) + 40; powerx = powerselection._x; powery = powerselection._y; ppu = powerselection.ppu; gotoAndStop ("play"); } } function boardleader() { lscore = eval (("score" + player) + ".score"); currentlead = player; i = 1; while (i < 5) { tscore = eval (("score" + i) + ".score"); if ((tscore > lscore) && (i != currentlead)) { lscore = tscore; currentlead = i; } i++; } leader = eval ("fc" + currentlead); indicator.yl = leader._y; indicator._y = indicator._y + ((indicator.yl - indicator._y) / 8); lscore = eval (("score" + currentlead) + ".score"); currentloss = currentlead; i = 1; while (i < 5) { tplay = eval ("circle" + i); tface = eval ("fc" + i); tscore = eval (("score" + i) + ".score"); if ((tscore < lscore) && (tplay.inplay)) { lscore = tscore; currentloss = i; } i++; } i = 1; while (i < 5) { tplay = eval ("circle" + i); tface = eval ("fc" + i); if (i == currentlead) { tface.express.gotoAndStop(2); } else if (i == currentloss) { tface.express.gotoAndStop(4); } else if (tplay.inplay) { tface.express.gotoAndStop(3); } i++; } } function currentscores() { score1.score = 0; score2.score = 0; score3.score = 0; score4.score = 0; score5.score = 0; i = 0; while (i < boardarray.length) { if (boardarray[i] > 0) { temp0 = eval ("stg.box" + i); score0 = eval ("score" + temp0.hitvalue); score0.score = score0.score + 1; } i++; } temp3 = eval (("score" + player) + ".score"); ccontrol = temp3; if (temp3 > hcontrol) { hcontrol = temp3; } if (((pbc > 0) && (tcontrol == 0)) && (ccontrol >= int(pbc * boardtotal))) { tcontrol = rSeconds + 1; vogoalachieved.play(); } } gid = 4; pscore = 0; player = 1; ppu = ""; ppuval = 10; current = "origin"; currlvl = 1; total = 81; score1.score = 0; score2.score = 0; score3.score = 0; score4.score = 0; fc1._alpha = 0; fc2._alpha = 0; fc3._alpha = 0; fc4._alpha = 0; perform = new Array(1, 34.5, 34.5, 1.5, 410, 25, 2, 410, 410, 1.25, 25.5, 410); unperform = new Array(0, 630, 35, 0, 630, 135, 0, 630, 335, 0, 630, 235); xboard = new Array(0, 440, 600); yboard = new Array(0, 440); gamemusic = new Sound(this); gamemusic.attachSound("intermission"); gamemusic.setVolume(0); gamemusic.start(0, 99); musicvolume = 0; onEnterFrame = function () { if (musicvolume < 100) { musicvolume = musicvolume + 1; gamemusic.setVolume(musicvolume); } else { delete onEnterFrame; } }; stop();Instance of Symbol 44 MovieClip "stg" in Frame 3/* no clip actions */Instance of Symbol 49 MovieClip "bomb" in Frame 3onClipEvent (load) { this.hitvalue = 5; this.originx = this._x; this.originy = this._y; this.ppu = "bomb"; } onClipEvent (enterFrame) { if (this.hitvalue == 5) { i = 1; while (i < 5) { temp = eval ("_root.circle" + i); rdistance = (temp._width / 2) + (this._width / 2); xdistance = temp._x - this._x; ydistance = temp._y - this._y; tdistance = Math.sqrt((xdistance * xdistance) + (ydistance * ydistance)); if (tdistance < rdistance) { _parent.powerx = 0; _parent.powery = 0; this.temp2 = eval ("_parent.fc" + i); this.temp2.gotoAndStop(this.ppu); if (i != _parent.player) { this.hitvalue = i; this.gotoAndPlay("bomb"); } else { this._x = originx; this._y = originy; } } i++; } } else { j = 1; while (j < 5) { if (j != this.hitvalue) { temp2 = eval ("_root.circle" + j); rdistance = (temp2._width / 2) + (this._width / 2); xdistance = temp2._x - this._x; ydistance = temp2._y - this._y; tdistance = Math.sqrt((xdistance * xdistance) + (ydistance * ydistance)); if (tdistance < rdistance) { tangent1 = (Math.atan2(Number(this._y - temp2._y), Number(this._x - temp2._x)) * 180) / Math.PI; if (tangent1 < -90) { tangent1 = tangent1 + 270; } else { tangent1 = tangent1 - 90; } temp2.xspeed = 20 * Math.sin(tangent1 * (Math.PI/180)); temp2.yspeed = (20 * Math.cos(tangent1 * (Math.PI/180))) * -1; } } j++; } } }Instance of Symbol 57 MovieClip "burst" in Frame 3onClipEvent (load) { this.hitvalue = 5; this.originx = this._x; this.originy = this._y; this.ppu = "burst"; } onClipEvent (enterFrame) { if (this.hitvalue == 5) { i = 1; while (i < 5) { temp = eval ("_root.circle" + i); rdistance = (temp._width / 2) + (this._width / 2); xdistance = temp._x - this._x; ydistance = temp._y - this._y; tdistance = Math.sqrt((xdistance * xdistance) + (ydistance * ydistance)); if (tdistance < rdistance) { _parent.powerx = 0; _parent.powery = 0; this.temp2 = eval ("_parent.fc" + i); this.temp2.gotoAndStop(this.ppu); if (i != _parent.player) { this.hitvalue = i; this.gotoAndPlay("bomb"); } else { this._x = originx; this._y = originy; } } i++; } } }Instance of Symbol 60 MovieClip "speed" in Frame 3onClipEvent (load) { this.hitvalue = 5; this.originx = this._x; this.originy = this._y; this.ppu = "speed"; } onClipEvent (enterFrame) { if (this.hitvalue == 5) { i = 1; while (i < 5) { this.temp = eval ("_root.circle" + i); rdistance = (this.temp._width / 2) + (this._width / 2); xdistance = this.temp._x - this._x; ydistance = this.temp._y - this._y; tdistance = Math.sqrt((xdistance * xdistance) + (ydistance * ydistance)); if (tdistance < rdistance) { _parent.powerx = 0; _parent.powery = 0; this.temp2 = eval ("_parent.fc" + i); this.temp2.gotoAndStop(this.ppu); this._x = originx; this._y = originy; if (i != _parent.player) { this.hitvalue = i; this.speeder = eval ("_root.circle" + i); this.hit.gotoAndStop("speed"); } } i++; } } }Instance of Symbol 64 MovieClip "grow" in Frame 3onClipEvent (load) { this.hitvalue = 5; this.originx = this._x; this.originy = this._y; this.ppu = "grow"; } onClipEvent (enterFrame) { if (this.hitvalue == 5) { i = 1; while (i < 5) { this.temp = eval ("_root.circle" + i); rdistance = (this.temp._width / 2) + (this._width / 2); xdistance = this.temp._x - this._x; ydistance = this.temp._y - this._y; tdistance = Math.sqrt((xdistance * xdistance) + (ydistance * ydistance)); if (tdistance < rdistance) { _parent.powerx = 0; _parent.powery = 0; this.temp2 = eval ("_parent.fc" + i); this.temp2.gotoAndStop(this.ppu); this._x = originx; this._y = originy; if (i != _parent.player) { this.hitvalue = i; this.grower = eval ("_root.circle" + i); this.hit.gotoAndStop("grow"); } } i++; } } }Instance of Symbol 49 MovieClip "pbomb" in Frame 3onClipEvent (load) { this.hitvalue = 5; this.originx = this._x; this.originy = this._y; } onClipEvent (enterFrame) { j = 1; while (j < 5) { if (j != this.hitvalue) { temp2 = eval ("_parent.circle" + j); rdistance = (temp2._width / 2) + (this._width / 2); xdistance = temp2._x - this._x; ydistance = temp2._y - this._y; tdistance = Math.sqrt((xdistance * xdistance) + (ydistance * ydistance)); if (tdistance < rdistance) { tangent1 = (Math.atan2(Number(this._y - temp2._y), Number(this._x - temp2._x)) * 180) / Math.PI; if (tangent1 < -90) { tangent1 = tangent1 + 270; } else { tangent1 = tangent1 - 90; } temp2.xspeed = 20 * Math.sin(tangent1 * (Math.PI/180)); temp2.yspeed = (20 * Math.cos(tangent1 * (Math.PI/180))) * -1; } } j++; } }Instance of Symbol 57 MovieClip "pburst" in Frame 3onClipEvent (load) { this.hitvalue = 5; this.originx = this._x; this.originy = this._y; } onClipEvent (enterFrame) { if (this._x < 500) { this.hitvalue = _parent.player; this.play(); } }Instance of Symbol 60 MovieClip "pspeed" in Frame 3onClipEvent (load) { this.hitvalue = 5; this.originx = this._x; this.originy = this._y; }Instance of Symbol 64 MovieClip "pgrow" in Frame 3onClipEvent (load) { this.hitvalue = 5; this.originx = this._x; this.originy = this._y; }Instance of Symbol 66 MovieClip "circle1" in Frame 3onClipEvent (load) { this.hitvalue = 1; this.inplay = false; this.speed = 0; this.xspeed = 0; this.yspeed = 0; this.mass = (((12.5663706143592 * (this._width / 2)) * (this._width / 2)) * (this._width / 2)) / 3; this.maxspeed = 8.5; this.acceleration = 0; this.handling = 10; this.deceleration = 10; this.decelerate = (100 - deceleration) / 100; this.originspeed = this.maxspeed; this.originmass = this.mass; this.originwidth = this._width; this.currentwidth = this._width; this.originscale = this._xscale; this.currentscale = this._xscale; this.growing = false; this._rotation = 135; this.ACCELERATING = true; this.fc = eval ("_parent.fc" + this.hitvalue); } onClipEvent (enterFrame) { _parent.moveball(1); if (_parent.player == 1) { if (Key.isDown(38) || (Key.isDown(87))) { this.ACCELERATING = true; } if (Key.isDown(37) || (Key.isDown(65))) { this.TURNLEFT = true; } else if (Key.isDown(39) || (Key.isDown(68))) { this.TURNRIGHT = true; } if (Key.isDown(40) || (Key.isDown(32))) { this.fc.dppowerup(); } } else { this.waypoint = eval ("_parent.stg.box" + this.waypointcount); this.xdistance = this._x - this.waypoint._x; this.ydistance = this._y - this.waypoint._y; this.distance = Math.sqrt((this.xdistance * this.xdistance) + (this.ydistance * this.ydistance)); if (this.distance < this.previousdistance) { this.ACCELERATING = true; } this.previousdistance = this.distance; this.tangent = (Math.atan2(Number(this._y - this.waypoint._y), Number(this._x - this.waypoint._x)) * 180) / Math.PI; if (this.tangent < -90) { this.tangent = this.tangent + 270; } else { this.tangent = this.tangent - 90; } if (((this.tangent - this._rotation) < (-this.handling)) || ((this.tangent - this._rotation) > this.handling)) { if ((this.tangent > (this._rotation + 180)) || ((this.tangent < this._rotation) && (this.tangent > (this._rotation - 180)))) { this.TURNLEFT = true; } else { this.TURNRIGHT = true; } } if (this.waypoint.hitTest(this._x, this._y, true) || (this.framecount > 100)) { this.framecount = 0; this.hitarray = new Array(); i = 0; while (i < _parent.total) { if (((((_parent.boardarray[i] > 0) && ((i % 9) > 2)) && ((i % 9) < 6)) && (int(i / 9) > 2)) && (int(i / 9) < 6)) { this.hitarray.push(i); this.hitarray.push(i); this.hitarray.push(i); this.hitarray.push(i); } else if (((((_parent.boardarray[i] > 0) && ((i % 9) > 1)) && ((i % 9) < 7)) && (int(i / 9) > 1)) && (int(i / 9) < 7)) { this.hitarray.push(i); this.hitarray.push(i); this.hitarray.push(i); } else if (((((_parent.boardarray[i] > 0) && ((i % 9) > 0)) && ((i % 9) < 8)) && (int(i / 9) > 0)) && (int(i / 9) < 8)) { this.hitarray.push(i); this.hitarray.push(i); } else if (_parent.boardarray[i] > 0) { this.hitarray.push(i); } i++; } this.waypointcount = this.hitarray[random(this.hitarray.length)]; } } }Instance of Symbol 68 MovieClip "circle3" in Frame 3onClipEvent (load) { this.hitvalue = 3; this.inplay = false; this.speed = 0; this.xspeed = 0; this.yspeed = 0; this.mass = (((12.5663706143592 * (this._width / 2)) * (this._width / 2)) * (this._width / 2)) / 3; this.maxspeed = 10.5; this.acceleration = 0; this.maxspeed = 10.5; this.handling = 15; this.deceleration = 10; this.decelerate = (100 - deceleration) / 100; this.originspeed = this.maxspeed; this.originmass = this.mass; this.originwidth = this._width; this.currentwidth = this._width; this.originscale = this._xscale; this.currentscale = this._xscale; this.growing = false; this._rotation = -45; this.ACCELERATING = true; this.framecount = 0; this.fc = eval ("_parent.fc" + this.hitvalue); } onClipEvent (enterFrame) { _parent.moveball(3); if (_parent.player == 3) { if (Key.isDown(38) || (Key.isDown(87))) { this.ACCELERATING = true; } if (Key.isDown(37) || (Key.isDown(65))) { this.TURNLEFT = true; } else if (Key.isDown(39) || (Key.isDown(68))) { this.TURNRIGHT = true; } if (Key.isDown(40) || (Key.isDown(32))) { this.fc.dppowerup(); } } else { this.waypoint = eval ("_parent.stg.box" + this.waypointcount); if (_parent.powerx > 0) { this.targetx = _parent.powerx; this.targety = _parent.powery; } else { this.targetx = this.waypoint._x; this.targety = this.waypoint._y; } this.xdistance = this._x - this.targetx; this.ydistance = this._y - this.targety; this.distance = Math.sqrt((this.xdistance * this.xdistance) + (this.ydistance * this.ydistance)); if (this.distance < this.previousdistance) { this.ACCELERATING = true; } this.previousdistance = this.distance; this.tangent = (Math.atan2(Number(this._y - this.targety), Number(this._x - this.targetx)) * 180) / Math.PI; if (this.tangent < -90) { this.tangent = this.tangent + 270; } else { this.tangent = this.tangent - 90; } if (((this.tangent - this._rotation) < (-this.handling)) || ((this.tangent - this._rotation) > this.handling)) { if ((this.tangent > (this._rotation + 180)) || ((this.tangent < this._rotation) && (this.tangent > (this._rotation - 180)))) { this.TURNLEFT = true; } else { this.TURNRIGHT = true; } } if (this.waypoint.hitTest(this._x, this._y, true) || (this.framecount > 100)) { this.framecount = 0; this.hitarray = new Array(); i = 0; while (i < _parent.total) { if ((_parent.boardarray[i] > 0) && (_parent.boardarray[i] != this.hitvalue)) { this.hitarray.push(i); } i++; } this.waypointcount = this.hitarray[random(this.hitarray.length)]; } } }Instance of Symbol 70 MovieClip "circle2" in Frame 3onClipEvent (load) { this.hitvalue = 2; this.inplay = false; this.speed = 0; this.xspeed = 0; this.yspeed = 0; this.mass = (((12.5663706143592 * (this._width / 2)) * (this._width / 2)) * (this._width / 2)) / 3; this.maxspeed = 9.5; this.acceleration = 0; this.handling = 10; this.deceleration = 5; this.decelerate = (100 - deceleration) / 100; this.originspeed = this.maxspeed; this.originmass = this.mass; this.originwidth = this._width; this.currentwidth = this._width; this.originscale = this._xscale; this.currentscale = this._xscale; this.growing = false; this._rotation = -135; this.ACCELERATING = true; this.framecount = 0; this.fc = eval ("_parent.fc" + this.hitvalue); } onClipEvent (enterFrame) { _parent.moveball(2); if (_parent.player == 2) { if (Key.isDown(38) || (Key.isDown(87))) { this.ACCELERATING = true; } if (Key.isDown(37) || (Key.isDown(65))) { this.TURNLEFT = true; } else if (Key.isDown(39) || (Key.isDown(68))) { this.TURNRIGHT = true; } if (Key.isDown(40) || (Key.isDown(32))) { this.fc.dppowerup(); } } else { this.waypoint = eval ("_parent.stg.box" + this.waypointcount); this.xdistance = this._x - this.waypoint._x; this.ydistance = this._y - this.waypoint._y; this.distance = Math.sqrt((this.xdistance * this.xdistance) + (this.ydistance * this.ydistance)); if (this.distance < this.previousdistance) { this.ACCELERATING = true; } this.previousdistance = this.distance; this.tangent = (Math.atan2(Number(this._y - this.waypoint._y), Number(this._x - this.waypoint._x)) * 180) / Math.PI; if (this.tangent < -90) { this.tangent = this.tangent + 270; } else { this.tangent = this.tangent - 90; } if (((this.tangent - this._rotation) < (-this.handling)) || ((this.tangent - this._rotation) > this.handling)) { if ((this.tangent > (this._rotation + 180)) || ((this.tangent < this._rotation) && (this.tangent > (this._rotation - 180)))) { this.TURNLEFT = true; } else { this.TURNRIGHT = true; } } if (this.waypoint.hitTest(this._x, this._y, true) || (this.framecount > 100)) { this.framecount = 0; this.hitarray = new Array(); i = 0; while (i < _parent.total) { this.xval = ((i % 9) * 45) + 40; this.yval = (int(i / 9) * 45) + 40; this.diffx = Math.abs(this._x - this.xval); this.diffy = Math.abs(this._y - this.yval); if (((_parent.boardarray[i] > 0) && (_parent.boardarray[i] != this.hitvalue)) && ((this.diffx < 60) || (this.diffy < 60))) { this.hitarray.push(i); this.hitarray.push(i); this.hitarray.push(i); this.hitarray.push(i); } i++; } this.waypointcount = this.hitarray[random(this.hitarray.length)]; } } }Instance of Symbol 72 MovieClip "circle4" in Frame 3onClipEvent (load) { this.hitvalue = 4; this.inplay = false; this.speed = 0; this.xspeed = 0; this.yspeed = 0; this.mass = (((12.5663706143592 * (this._width / 2)) * (this._width / 2)) * (this._width / 2)) / 3; this.maxspeed = 11.5; this.acceleration = 0; this.handling = 10; this.deceleration = 5; this.decelerate = (100 - deceleration) / 100; this.originspeed = this.maxspeed; this.originmass = this.mass; this.originwidth = this._width; this.currentwidth = this._width; this.originscale = this._xscale; this.currentscale = this._xscale; this.growing = false; this._rotation = 45; this.ACCELERATING = true; this.framecount = 0; this.fc = eval ("_parent.fc" + this.hitvalue); } onClipEvent (enterFrame) { _parent.moveball(4); if (_parent.player == 4) { if (Key.isDown(38) || (Key.isDown(87))) { this.ACCELERATING = true; } if (Key.isDown(37) || (Key.isDown(65))) { this.TURNLEFT = true; } else if (Key.isDown(39) || (Key.isDown(68))) { this.TURNRIGHT = true; } if (Key.isDown(40) || (Key.isDown(32))) { this.fc.dppowerup(); } } else { this.waypoint = eval ("_parent.stg.box" + this.waypointcount); this.xdistance = this._x - this.waypoint._x; this.ydistance = this._y - this.waypoint._y; this.distance = Math.sqrt((this.xdistance * this.xdistance) + (this.ydistance * this.ydistance)); if (this.distance < this.previousdistance) { this.ACCELERATING = true; } this.previousdistance = this.distance; this.tangent = (Math.atan2(Number(this._y - this.waypoint._y), Number(this._x - this.waypoint._x)) * 180) / Math.PI; if (this.tangent < -90) { this.tangent = this.tangent + 270; } else { this.tangent = this.tangent - 90; } if (((this.tangent - this._rotation) < (-this.handling)) || ((this.tangent - this._rotation) > this.handling)) { if ((this.tangent > (this._rotation + 180)) || ((this.tangent < this._rotation) && (this.tangent > (this._rotation - 180)))) { this.TURNLEFT = true; } else { this.TURNRIGHT = true; } } if (this.waypoint.hitTest(this._x, this._y, true) || (this.framecount > 100)) { this.framecount = 0; this.hitarray = new Array(); fscore = _parent.boardtotal; lscore = 0; i = 1; while (i < 4) { tscore = eval (("_parent.score" + i) + ".score"); if (tscore > lscore) { lscore = tscore; currentlead = i; } fscore = fscore - tscore; i++; } fscore = fscore - _parent.score4.score; if (fscore > lscore) { currentlead = 5; } i = 0; while (i < _parent.total) { if (_parent.boardarray[i] == currentlead) { this.hitarray.push(i); } i++; } this.waypointcount = this.hitarray[random(this.hitarray.length)]; } } }Instance of Symbol 148 MovieClip "btnpvc" in Frame 3onClipEvent (load) { this.lbl = "privacy"; } on (press) { _parent.pvt.aph = 100; _parent.pvt.scl = 100; _parent.pvt.ok.enabled = true; _parent.btnins.enabled = false; _parent.btnpvc.enabled = false; _parent.btnlgl.enabled = false; _parent.btnply.enabled = false; _parent.btnins._alpha = 50; _parent.btnpvc._alpha = 50; _parent.btnlgl._alpha = 50; _parent.btnply._alpha = 50; }Instance of Symbol 148 MovieClip "btnins" in Frame 3onClipEvent (load) { this.lbl = "instructions"; } on (press) { _parent.nst.gotoAndStop(1); _parent.nst.aph = 100; _parent.nst.scl = 100; _parent.nst.ok.enabled = true; _parent.nst.nxt.enabled = true; _parent.btnins.enabled = false; _parent.btnpvc.enabled = false; _parent.btnlgl.enabled = false; _parent.btnply.enabled = false; _parent.btnins._alpha = 50; _parent.btnpvc._alpha = 50; _parent.btnlgl._alpha = 50; _parent.btnply._alpha = 50; }Instance of Symbol 148 MovieClip "btnlgl" in Frame 3onClipEvent (load) { this.lbl = "legal"; } on (press) { _parent.lgt.aph = 100; _parent.lgt.scl = 100; _parent.lgt.ap.enabled = true; _parent.lgt.da.enabled = true; _parent.btnins.enabled = false; _parent.btnpvc.enabled = false; _parent.btnlgl.enabled = false; _parent.btnply.enabled = false; _parent.btnins._alpha = 50; _parent.btnpvc._alpha = 50; _parent.btnlgl._alpha = 50; _parent.btnply._alpha = 50; }Instance of Symbol 148 MovieClip "btnply" in Frame 3onClipEvent (load) { this.lbl = "play"; } on (press) { _parent.gotoAndStop("select"); }Instance of Symbol 155 MovieClip "lgt" in Frame 3onClipEvent (load) { this.aph = 0; this.scl = 50; } onClipEvent (enterFrame) { this._alpha = this._alpha + ((this.aph - this._alpha) / 2); this._xscale = this._xscale + ((this.scl - this._xscale) / 2); this._yscale = this._yscale + ((this.scl - this._yscale) / 2); }Instance of Symbol 159 MovieClip "pvt" in Frame 3onClipEvent (load) { this.aph = 0; this.scl = 50; } onClipEvent (enterFrame) { this._alpha = this._alpha + ((this.aph - this._alpha) / 2); this._xscale = this._xscale + ((this.scl - this._xscale) / 2); this._yscale = this._yscale + ((this.scl - this._yscale) / 2); }Instance of Symbol 176 MovieClip "nst" in Frame 3onClipEvent (load) { this.aph = 0; this.scl = 50; } onClipEvent (enterFrame) { this._alpha = this._alpha + ((this.aph - this._alpha) / 2); this._xscale = this._xscale + ((this.scl - this._xscale) / 2); this._yscale = this._yscale + ((this.scl - this._yscale) / 2); }Frame 4buttonclick.play(); soundplayed = false; stop();Instance of Symbol 158 MovieClip "playyellow" in Frame 4onClipEvent (load) { this.lbl = "yellow"; this.scaler = 100; } on (press) { _parent.player = 2; _parent.gotoAndStop("build"); _parent.pscore = 0; } onClipEvent (enterFrame) { this._xscale = this._xscale + ((this.scaler - this._xscale) / 2); this._yscale = this._yscale + ((this.scaler - this._yscale) / 2); } on (rollOver) { this.scaler = 200; } on (rollOut) { this.scaler = 100; } on (releaseOutside) { this.scaler = 100; }Instance of Symbol 158 MovieClip "playblue" in Frame 4onClipEvent (load) { this.lbl = "blue"; this.scaler = 100; } on (press) { _parent.player = 1; _parent.gotoAndStop("build"); _parent.pscore = 0; } onClipEvent (enterFrame) { this._xscale = this._xscale + ((this.scaler - this._xscale) / 2); this._yscale = this._yscale + ((this.scaler - this._yscale) / 2); } on (rollOver) { this.scaler = 200; } on (rollOut) { this.scaler = 100; } on (releaseOutside) { this.scaler = 100; }Instance of Symbol 158 MovieClip "playred" in Frame 4onClipEvent (load) { this.lbl = "red"; this.scaler = 100; } on (press) { _parent.player = 4; _parent.gotoAndStop("build"); _parent.pscore = 0; } onClipEvent (enterFrame) { this._xscale = this._xscale + ((this.scaler - this._xscale) / 2); this._yscale = this._yscale + ((this.scaler - this._yscale) / 2); } on (rollOver) { this.scaler = 200; } on (rollOut) { this.scaler = 100; } on (releaseOutside) { this.scaler = 100; }Instance of Symbol 158 MovieClip "playgreen" in Frame 4onClipEvent (load) { this.lbl = "green"; this.scaler = 100; } on (press) { _parent.player = 3; _parent.gotoAndStop("build"); _parent.pscore = 0; } onClipEvent (enterFrame) { this._xscale = this._xscale + ((this.scaler - this._xscale) / 2); this._yscale = this._yscale + ((this.scaler - this._yscale) / 2); } on (rollOver) { this.scaler = 200; } on (rollOut) { this.scaler = 100; } on (releaseOutside) { this.scaler = 100; }Instance of Symbol 179 MovieClip in Frame 4onClipEvent (load) { this.scaler = 60; } on (press) { _parent.player = 3; _parent.gotoAndStop("build"); _parent.pscore = 0; } onClipEvent (enterFrame) { this._xscale = this._xscale + ((this.scaler - this._xscale) / 3); this._yscale = this._yscale + ((this.scaler - this._yscale) / 3); } on (rollOver) { this.scaler = 75; _parent.statgreen.la = 75; } on (rollOut) { this.scaler = 60; _parent.statgreen.la = 0; } on (releaseOutside) { this.scaler = 60; _parent.statgreen.la = 0; }Instance of Symbol 182 MovieClip in Frame 4onClipEvent (load) { this.scaler = 60; } on (press) { _parent.player = 2; _parent.gotoAndStop("build"); _parent.pscore = 0; } onClipEvent (enterFrame) { this._xscale = this._xscale + ((this.scaler - this._xscale) / 3); this._yscale = this._yscale + ((this.scaler - this._yscale) / 3); } on (rollOver) { this.scaler = 75; _parent.statyellow.la = 75; } on (rollOut) { this.scaler = 60; _parent.statyellow.la = 0; } on (releaseOutside) { this.scaler = 60; _parent.statyellow.la = 0; }Instance of Symbol 185 MovieClip in Frame 4onClipEvent (load) { this.scaler = 60; } on (press) { _parent.player = 1; _parent.gotoAndStop("build"); _parent.pscore = 0; } onClipEvent (enterFrame) { this._xscale = this._xscale + ((this.scaler - this._xscale) / 3); this._yscale = this._yscale + ((this.scaler - this._yscale) / 3); } on (rollOver) { this.scaler = 75; _parent.statblue.la = 75; } on (rollOut) { this.scaler = 60; _parent.statblue.la = 0; } on (releaseOutside) { this.scaler = 60; _parent.statblue.la = 0; }Instance of Symbol 188 MovieClip in Frame 4onClipEvent (load) { this.scaler = 60; } on (press) { _parent.player = 4; _parent.gotoAndStop("build"); _parent.pscore = 0; } onClipEvent (enterFrame) { this._xscale = this._xscale + ((this.scaler - this._xscale) / 3); this._yscale = this._yscale + ((this.scaler - this._yscale) / 3); } on (rollOver) { this.scaler = 75; _parent.statred.la = 75; } on (rollOut) { this.scaler = 60; _parent.statred.la = 0; } on (releaseOutside) { this.scaler = 60; _parent.statred.la = 0; }Instance of Symbol 196 MovieClip "statblue" in Frame 4onClipEvent (load) { _alpha = 0; la = 0; } onClipEvent (enterFrame) { _alpha = (_alpha + ((la - _alpha) / 6)); }Instance of Symbol 202 MovieClip "statred" in Frame 4onClipEvent (load) { _alpha = 0; la = 0; } onClipEvent (enterFrame) { _alpha = (_alpha + ((la - _alpha) / 6)); }Instance of Symbol 208 MovieClip "statgreen" in Frame 4onClipEvent (load) { _alpha = 0; la = 0; } onClipEvent (enterFrame) { _alpha = (_alpha + ((la - _alpha) / 6)); }Instance of Symbol 214 MovieClip "statyellow" in Frame 4onClipEvent (load) { _alpha = 0; la = 0; } onClipEvent (enterFrame) { _alpha = (_alpha + ((la - _alpha) / 6)); }Frame 5leveldisplay = "level " + currlvl; timedisplay = "64:oo"; loadlvl(); gametype = gtype; gamedescription = gdesc; playbtn.lbl = "ready!"; startL = false; onEnterFrame = function () { if (startL && ((int(gamemusic.position / 100) % 5) == 0)) { buildout(); startlevel(); gotoAndStop ("play"); delete onEnterFrame; } }; if (!soundplayed) { buttonclick.play(); } soundplayed = true; setTimeout(function () { voice.play(); }, 500); Mouse.show(); stop();Instance of Symbol 225 MovieClip "indicator" in Frame 5onClipEvent (load) { this.yl = this._y; }Instance of Symbol 158 MovieClip "playbtn" in Frame 5on (press) { _parent.startL = true; } onClipEvent (enterFrame) { if (Key.isDown(32)) { _parent.startL = true; } }Frame 6current = "play"; setTimeout(function () { rqpowerup(); }, 10000); onEnterFrame = function () { playlevel(); }; Mouse.hide(); stop();Frame 7plpowerup();Frame 8current = "wrapup"; plpowerup(); currlvl = currlvl + 1; onEnterFrame = function () { boardleader(); }; if (rnk > 0) { playerrank = 1; i = 1; while (i < 5) { pcperformance = eval (("score" + i) + ".score"); if ((i != player) && (pcperformance > ccontrol)) { playerrank = playerrank + 1; } i++; } msg = "your rank"; performance = playerrank; if (playerrank <= rnk) { achieve = "yes"; kudos = 5 + ((rnk - playerrank) * 25); } else { achieve = "no"; kudos = 0; } } else if (rbc > 0) { gcontrol = int(boardtotal * rbc); msg = "you control"; performance = int((100 * ccontrol) / boardtotal).toString().split("0").join("o") + " pct"; if (ccontrol >= gcontrol) { achieve = "yes"; kudos = (5 + ccontrol) - gcontrol; } else { achieve = "no"; kudos = 0; } } else if (pbc == 0.65) { gcontrol = int(boardtotal * pbc); msg = "your time"; performance = (64 - tcontrol).toString().split("0").join("o") + " sec"; if (hcontrol >= gcontrol) { achieve = "yes"; kudos = 5 + tcontrol; } else { achieve = "no"; kudos = 0; } } else { gcontrol = int(boardtotal * pbc); msg = "best control"; performance = int((100 * hcontrol) / boardtotal).toString().split("0").join("o") + " pct"; if (hcontrol >= gcontrol) { achieve = "yes"; kudos = 5 + tcontrol; } else { achieve = "no"; kudos = 0; } } if ((currlvl < 10) && (achieve == "yes")) { lvl = "get ready for level " + currlvl; nxtlvl = "build"; } else { lvl = "game over"; nxtlvl = "endgame"; } gamemusic = new Sound(this); gamemusic.attachSound("intermission"); gamemusic.start(0, 99); if (achieve == "yes") { voice = vogoalachieved; } else { voice = vofailure; } setTimeout(function () { voice.play(); }, 3000); stop();Frame 9fc1._alpha = 25; fc2._alpha = 25; fc3._alpha = 25; fc4._alpha = 25; if (disapprove) { btnpost.enabled = false; btnpost._alpha = 0; btnplay.enabled = false; btnplay._alpha = 0; btnchl.enabled = false; btnchl._alpha = 0; } else { cypherArray = [19, 17, 13, 11, 7, 5]; cypher = random(6); cypherValue = cypherArray[cypher]; validate = int(Math.sqrt(((cypherValue * cypherValue) * pscore) * gid)); postURL = "http://www.bigbombgames.com/postscore.asp"; chalURL = "http://www.bigbombgames.com/challenge.asp?gid=" + gid; sString = ((((((("?gid=" + gid) + "&v1=") + cypher) + "&v2=") + pscore) + "&v3=") + validate) + "&v4=1"; loadVariables ((("http://www.bigbombgames.com/ping.asp?gid=" + gid) + "&tid=") + int(currentTime / 1000), this); } Mouse.show(); stop();Instance of Symbol 158 MovieClip "btnplay" in Frame 9onClipEvent (load) { this.lbl = "play again"; } on (press) { _parent.fc1._alpha = 0; _parent.fc2._alpha = 0; _parent.fc3._alpha = 0; _parent.fc4._alpha = 0; _parent.currlvl = 1; _parent.gotoAndStop("select"); } on (rollOver) { _parent.plymsg.aph = 100; _parent.plymsg.scl = 100; } on (rollOut) { _parent.plymsg.aph = 0; _parent.plymsg.scl = 50; }Instance of Symbol 158 MovieClip "btnquit" in Frame 9onClipEvent (load) { this.lbl = "quit"; } on (press) { getURL ("/"); } on (rollOver) { _parent.qtmsg.aph = 100; _parent.qtmsg.scl = 100; } on (rollOut) { _parent.qtmsg.aph = 0; _parent.qtmsg.scl = 50; }Instance of Symbol 158 MovieClip "btnpost" in Frame 9onClipEvent (load) { this.lbl = "post score"; } on (press) { getURL (_parent.postURL + _parent.sString, "_blank"); _parent.pstmsg.aph = 0; _parent.pstmsg.scl = 50; this._alpha = 25; this.enabled = false; } on (rollOver) { _parent.pstmsg.aph = 100; _parent.pstmsg.scl = 100; } on (rollOut) { _parent.pstmsg.aph = 0; _parent.pstmsg.scl = 50; }Instance of Symbol 158 MovieClip "btnchl" in Frame 9onClipEvent (load) { this.lbl = "challenge"; } on (press) { getURL (_parent.chalURL, "_blank"); } on (rollOver) { _parent.chlmsg.aph = 100; _parent.chlmsg.scl = 100; } on (rollOut) { _parent.chlmsg.aph = 0; _parent.chlmsg.scl = 50; }Instance of Symbol 242 MovieClip "chlmsg" in Frame 9onClipEvent (load) { this.aph = 0; this.scl = 50; } onClipEvent (enterFrame) { this._alpha = this._alpha + ((this.aph - this._alpha) / 2); this._xscale = this._xscale + ((this.scl - this._xscale) / 2); this._yscale = this._yscale + ((this.scl - this._yscale) / 2); }Instance of Symbol 244 MovieClip "plymsg" in Frame 9onClipEvent (load) { this.aph = 0; this.scl = 50; } onClipEvent (enterFrame) { this._alpha = this._alpha + ((this.aph - this._alpha) / 2); this._xscale = this._xscale + ((this.scl - this._xscale) / 2); this._yscale = this._yscale + ((this.scl - this._yscale) / 2); }Instance of Symbol 246 MovieClip "pstmsg" in Frame 9onClipEvent (load) { this.aph = 0; this.scl = 50; } onClipEvent (enterFrame) { this._alpha = this._alpha + ((this.aph - this._alpha) / 2); this._xscale = this._xscale + ((this.scl - this._xscale) / 2); this._yscale = this._yscale + ((this.scl - this._yscale) / 2); }Instance of Symbol 248 MovieClip "qtmsg" in Frame 9onClipEvent (load) { this.aph = 0; this.scl = 50; } onClipEvent (enterFrame) { this._alpha = this._alpha + ((this.aph - this._alpha) / 2); this._xscale = this._xscale + ((this.scl - this._xscale) / 2); this._yscale = this._yscale + ((this.scl - this._yscale) / 2); }Symbol 18 MovieClip Frame 1Symbol 19 MovieClip Frame 1onEnterFrame = function () { totalBytes = _parent.getBytesTotal(); loadedBytes = _parent.getBytesLoaded(); percent = Math.ceil((loadedBytes / totalBytes) * 100); if (percent < 100) { gotoAndStop(percent); loading = ((("Loading " + percent) + "% of ") + (int((totalBytes / 1024) / 10.24) / 100)) + " MB"; } else { _parent.gotoAndStop("loaded"); } };Symbol 19 MovieClip Frame 100loading = ("Loading 100% of " + (int(loadedBytes() / 100) / 1000)) + " MB"; stop();Symbol 31 MovieClip Frame 1_parent.explode = new Sound(this); _parent.explode.attachSound("explode"); _parent.explode.start(0, false);Symbol 31 MovieClip Frame 63setTimeout(function () { play(); }, 3000); stop();Symbol 31 MovieClip Frame 64_parent.gotoAndStop("origin"); stop();Symbol 43 MovieClip Frame 5stop();Instance of Symbol 43 MovieClip "box" in Symbol 44 MovieClip Frame 1onClipEvent (load) { this.gotoAndStop(this.hitvalue); } onClipEvent (enterFrame) { i = 1; while (i < 5) { this.temp = eval ("_parent._parent.circle" + i); if (this.hitTest(this.temp.hit)) { if ((i == _parent._parent.player) && (this.hitvalue != i)) { _parent._parent.pscore = _parent._parent.pscore + 1; display = _parent._parent.pscore.toString(); _parent._parent.scoredisplay = display.split("0").join("o"); } this.hitvalue = i; } i++; } if (_parent._parent.burst.hitvalue < 5) { this.burstdistance = Math.sqrt(((this._x - _parent._parent.burst._x) * (this._x - _parent._parent.burst._x)) + ((this._y - _parent._parent.burst._y) * (this._y - _parent._parent.burst._y))) - Math.sqrt(this._width * this._width); if (this.burstdistance < (_parent._parent.burst._width / 2)) { this.hitvalue = _parent._parent.burst.hitvalue; this.gotoAndStop(_parent._parent.burst.hitvalue); } } if (_parent._parent.pburst.hitvalue < 5) { this.pburstdistance = Math.sqrt(((this._x - _parent._parent.pburst._x) * (this._x - _parent._parent.pburst._x)) + ((this._y - _parent._parent.pburst._y) * (this._y - _parent._parent.pburst._y))) - Math.sqrt(this._width * this._width); if (this.pburstdistance < (_parent._parent.pburst._width / 2)) { this.hitvalue = _parent._parent.pburst.hitvalue; this.gotoAndStop(_parent._parent.pburst.hitvalue); } } this.gotoAndStop(this.hitvalue); }Symbol 49 MovieClip Frame 1stop();Symbol 49 MovieClip Frame 16gotoAndPlay (1); this.hitvalue = 5; this._x = this.originx; this._y = this.originy;Symbol 57 MovieClip Frame 1stop();Symbol 57 MovieClip Frame 16gotoAndPlay (1); this.hitvalue = 5; this._x = this.originx; this._y = this.originy;Symbol 59 MovieClip Frame 1this._parent.hitvalue = 5; stop();Symbol 59 MovieClip Frame 2this._parent.speeder.maxspeed = this._parent.speeder.originspeed * 2; this._parent.speeder.speed = this._parent.speeder.maxspeed; setTimeout(function () { gotoAndStop ("break"); }, 5000); stop();Symbol 59 MovieClip Frame 3this._parent.speeder.maxspeed = this._parent.speeder.originspeed; _parent._parent.pugetsmall.play(); setTimeout(function () { gotoAndStop ("done"); }, 2500); stop();Symbol 59 MovieClip Frame 4if (this._parent.speeder.speed > this._parent.speeder.maxspeed) { this._parent.speeder.speed = this._parent.speeder.maxspeed; } gotoAndStop ("origin");Symbol 63 MovieClip Frame 1this._parent.hitvalue = 5; stop();Symbol 63 MovieClip Frame 2this._parent.grower.growing = true; this._parent.grower.currentscale = this._parent.grower.originscale * 1.5; this._parent.grower.currentwidth = this._parent.grower.originwidth * 1.5; this._parent.grower.mass = (((12.5663706143592 * (this._parent.grower.currentwidth / 2)) * (this._parent.grower.currentwidth / 2)) * (this._parent.grower.currentwidth / 2)) / 3; setTimeout(function () { gotoAndStop ("shrink"); }, 5000); stop();Symbol 63 MovieClip Frame 3this._parent.grower.currentscale = this._parent.grower.originscale; _parent._parent.pugetsmall.play(); setTimeout(function () { gotoAndStop ("done"); }, 2500); stop();Symbol 63 MovieClip Frame 4this._parent.grower.growing = false; this._parent.grower.currentwidth = this._parent.grower.originwidth; gotoAndStop ("origin");Symbol 81 MovieClip Frame 1stop();Symbol 81 MovieClip Frame 2stop();Symbol 81 MovieClip Frame 3stop();Symbol 81 MovieClip Frame 4stop();Symbol 82 MovieClip Frame 1function dppowerup() { } cpu = "none"; stop();Symbol 82 MovieClip Frame 2function dppowerup() { _parent.pbomb._x = _parent.circle1._x; _parent.pbomb._y = _parent.circle1._y; _parent.pbomb.hitvalue = 1; _parent.pbomb.gotoAndPlay("bomb"); gotoAndStop ("origin"); _parent.pubomb.play(); } cpu = "bomb"; if (_parent.player != 1) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pubomb.play(); } else { _parent.vobomb.play(); } stop();Symbol 82 MovieClip Frame 3function dppowerup() { _parent.pburst._x = _parent.circle1._x; _parent.pburst._y = _parent.circle1._y; _parent.pburst.hitvalue = 1; _parent.pburst.gotoAndPlay("bomb"); gotoAndStop ("origin"); _parent.pubomb.play(); } cpu = "burst"; if (_parent.player != 1) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pubomb.play(); } else { _parent.vocolorburst.play(); } stop();Symbol 82 MovieClip Frame 4function dppowerup() { _parent.pspeed.hitvalue = 1; _parent.pspeed.speeder = _parent.circle1; _parent.pspeed.hit.gotoAndStop("speed"); gotoAndStop ("origin"); _parent.pugetbig.play(); } cpu = "speed"; if (_parent.player != 1) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pugetbig.play(); } else { _parent.vospeed.play(); } stop();Symbol 82 MovieClip Frame 5function dppowerup() { _parent.pgrow.hitvalue = 1; _parent.pgrow.grower = _root.circle1; _parent.pgrow.hit.gotoAndStop("grow"); gotoAndStop ("origin"); _parent.pugetbig.play(); } cpu = "grow"; if (_parent.player != 1) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pugetbig.play(); } else { _parent.vosize.play(); } stop();Symbol 90 MovieClip Frame 1stop();Symbol 90 MovieClip Frame 2stop();Symbol 90 MovieClip Frame 3stop();Symbol 90 MovieClip Frame 4stop();Symbol 91 MovieClip Frame 1function dppowerup() { } cpu = "none"; stop();Symbol 91 MovieClip Frame 2function dppowerup() { _parent.pbomb._x = _parent.circle2._x; _parent.pbomb._y = _parent.circle2._y; _parent.pbomb.hitvalue = 2; _parent.pbomb.gotoAndPlay("bomb"); gotoAndStop ("origin"); _parent.pubomb.play(); } cpu = "bomb"; if (_parent.player != 2) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pubomb.play(); } else { _parent.vobomb.play(); } stop();Symbol 91 MovieClip Frame 3function dppowerup() { _parent.pburst._x = _parent.circle2._x; _parent.pburst._y = _parent.circle2._y; _parent.pburst.hitvalue = 2; _parent.pburst.gotoAndPlay("bomb"); gotoAndStop ("origin"); _parent.pubomb.play(); } cpu = "burst"; if (_parent.player != 2) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pubomb.play(); } else { _parent.vocolorburst.play(); } stop();Symbol 91 MovieClip Frame 4function dppowerup() { _parent.pspeed.hitvalue = 2; _parent.pspeed.speeder = _parent.circle2; _parent.pspeed.hit.gotoAndStop("speed"); gotoAndStop ("origin"); _parent.pugetbig.play(); } cpu = "speed"; if (_parent.player != 2) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pugetbig.play(); } else { _parent.vospeed.play(); } stop();Symbol 91 MovieClip Frame 5function dppowerup() { _parent.pgrow.hitvalue = 2; _parent.pgrow.grower = _root.circle2; _parent.pgrow.hit.gotoAndStop("grow"); gotoAndStop ("origin"); _parent.pugetbig.play(); } cpu = "grow"; if (_parent.player != 2) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pugetbig.play(); } else { _parent.vosize.play(); } stop();Symbol 99 MovieClip Frame 1stop();Symbol 99 MovieClip Frame 2stop();Symbol 99 MovieClip Frame 3stop();Symbol 99 MovieClip Frame 4stop();Symbol 100 MovieClip Frame 1function dppowerup() { } cpu = "none"; stop();Symbol 100 MovieClip Frame 2function dppowerup() { _parent.pbomb._x = _parent.circle3._x; _parent.pbomb._y = _parent.circle3._y; _parent.pbomb.hitvalue = 3; _parent.pbomb.gotoAndPlay("bomb"); gotoAndStop ("origin"); _parent.pubomb.play(); } cpu = "bomb"; if (_parent.player != 3) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pubomb.play(); } else { _parent.vobomb.play(); } stop();Symbol 100 MovieClip Frame 3function dppowerup() { _parent.pburst._x = _parent.circle3._x; _parent.pburst._y = _parent.circle3._y; _parent.pburst.hitvalue = 3; _parent.pburst.gotoAndPlay("bomb"); gotoAndStop ("origin"); _parent.pubomb.play(); } cpu = "burst"; if (_parent.player != 3) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pubomb.play(); } else { _parent.vocolorburst.play(); } stop();Symbol 100 MovieClip Frame 4function dppowerup() { _parent.pspeed.hitvalue = 3; _parent.pspeed.speeder = _parent.circle3; _parent.pspeed.hit.gotoAndStop("speed"); gotoAndStop ("origin"); _parent.pugetbig.play(); } cpu = "speed"; if (_parent.player != 3) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pugetbig.play(); } else { _parent.vospeed.play(); } stop();Symbol 100 MovieClip Frame 5function dppowerup() { _parent.pgrow.hitvalue = 3; _parent.pgrow.grower = _root.circle3; _parent.pgrow.hit.gotoAndStop("grow"); gotoAndStop ("origin"); _parent.pugetbig.play(); } cpu = "grow"; if (_parent.player != 3) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pugetbig.play(); } else { _parent.vosize.play(); } stop();Symbol 108 MovieClip Frame 1stop();Symbol 108 MovieClip Frame 2stop();Symbol 108 MovieClip Frame 3stop();Symbol 108 MovieClip Frame 4stop();Symbol 109 MovieClip Frame 1function dppowerup() { } cpu = "none"; stop();Symbol 109 MovieClip Frame 2function dppowerup() { _parent.pbomb._x = _parent.circle1._x; _parent.pbomb._y = _parent.circle1._y; _parent.pbomb.hitvalue = 4; _parent.pbomb.gotoAndPlay("bomb"); gotoAndStop ("origin"); _parent.pubomb.play(); } cpu = "bomb"; if (_parent.player != 4) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pubomb.play(); } else { _parent.vobomb.play(); } stop();Symbol 109 MovieClip Frame 3function dppowerup() { _parent.pburst._x = _parent.circle4._x; _parent.pburst._y = _parent.circle4._y; _parent.pburst.hitvalue = 4; _parent.pburst.gotoAndPlay("bomb"); gotoAndStop ("origin"); _parent.pubomb.play(); } cpu = "burst"; if (_parent.player != 4) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pubomb.play(); } else { _parent.vocolorburst.play(); } stop();Symbol 109 MovieClip Frame 4function dppowerup() { _parent.pspeed.hitvalue = 4; _parent.pspeed.speeder = _parent.circle4; _parent.pspeed.hit.gotoAndStop("speed"); gotoAndStop ("origin"); _parent.pugetbig.play(); } cpu = "speed"; if (_parent.player != 4) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pugetbig.play(); } else { _parent.vospeed.play(); } stop();Symbol 109 MovieClip Frame 5function dppowerup() { _parent.pgrow.hitvalue = 4; _parent.pgrow.grower = _root.circle4; _parent.pgrow.hit.gotoAndStop("grow"); gotoAndStop ("origin"); _parent.pugetbig.play(); } cpu = "grow"; if (_parent.player != 4) { setTimeout(function () { gotoAndStop ("origin"); }, 2000); _parent.pugetbig.play(); } else { _parent.vosize.play(); } stop();Symbol 111 MovieClip Frame 1stop();Symbol 113 MovieClip Frame 1stop();Symbol 115 MovieClip Frame 1stop();Symbol 117 MovieClip Frame 1stop();Symbol 119 MovieClip Frame 1stop();Symbol 121 MovieClip Frame 1stop();Symbol 123 MovieClip Frame 1stop();Symbol 125 MovieClip Frame 1stop();Symbol 127 MovieClip Frame 1stop();Symbol 129 MovieClip Frame 1stop();Symbol 131 MovieClip Frame 1stop();Symbol 133 MovieClip Frame 1stop();Symbol 135 MovieClip Frame 1stop();Symbol 137 MovieClip Frame 1removeMovieClip(this); stop();Symbol 139 MovieClip Frame 1removeMovieClip(this); stop();Symbol 141 MovieClip Frame 1stop();Symbol 142 MovieClip Frame 1stop();Symbol 144 MovieClip Frame 1stop();Instance of Symbol 148 MovieClip "ap" in Symbol 155 MovieClip Frame 1onClipEvent (load) { this.lbl = "approve"; this.ennabled = false; } on (press) { this.enabled = false; _parent.da.enabled = false; _parent.aph = 0; _parent.scl = 50; _parent._parent.btnins.enabled = true; _parent._parent.btnpvc.enabled = true; _parent._parent.btnlgl.enabled = true; _parent._parent.btnply.enabled = true; _parent._parent.btnins._alpha = 100; _parent._parent.btnpvc._alpha = 100; _parent._parent.btnlgl._alpha = 100; _parent._parent.btnply._alpha = 100; }Instance of Symbol 148 MovieClip "da" in Symbol 155 MovieClip Frame 1onClipEvent (load) { this.lbl = "disapprove"; this.ennabled = false; } on (press) { this.enabled = false; _parent.ap.enabled = false; _parent.aph = 0; _parent.scl = 50; _parent._parent.btnins.enabled = true; _parent._parent.btnpvc.enabled = true; _parent._parent.btnlgl.enabled = true; _parent._parent.btnply.enabled = true; _parent._parent.btnins._alpha = 100; _parent._parent.btnpvc._alpha = 100; _parent._parent.btnlgl._alpha = 100; _parent._parent.btnply._alpha = 100; _parent._parent.disapprove = true; _parent._parent.gotoAndStop("endgame"); }Instance of Symbol 158 MovieClip "ok" in Symbol 159 MovieClip Frame 1onClipEvent (load) { this.lbl = "okay"; this.ennabled = false; } on (press) { this.enabled = false; _parent.aph = 0; _parent.scl = 50; _parent._parent.btnins.enabled = true; _parent._parent.btnpvc.enabled = true; _parent._parent.btnlgl.enabled = true; _parent._parent.btnply.enabled = true; _parent._parent.btnins._alpha = 100; _parent._parent.btnpvc._alpha = 100; _parent._parent.btnlgl._alpha = 100; _parent._parent.btnply._alpha = 100; }Symbol 169 MovieClip Frame 35_parent._parent.pubomb.play();Symbol 169 MovieClip Frame 46stop();Symbol 171 MovieClip Frame 1b1.gotoAndStop(1); b2.gotoAndStop(1); b3.gotoAndStop(1); b4.gotoAndStop(1); b5.gotoAndStop(1); b6.gotoAndStop(1); b7.gotoAndStop(1); b8.gotoAndStop(1); b9.gotoAndStop(1); b10.gotoAndStop(1); b11.gotoAndStop(1); b12.gotoAndStop(1);Symbol 171 MovieClip Frame 18b2.gotoAndStop(4);Symbol 171 MovieClip Frame 25_parent._parent.pubomb.gotoAndPlay(2); b5.gotoAndStop(4);Symbol 171 MovieClip Frame 27b1.gotoAndStop(4); b3.gotoAndStop(4); b4.gotoAndStop(4); b6.gotoAndStop(4);Symbol 171 MovieClip Frame 28b8.gotoAndStop(4);Symbol 171 MovieClip Frame 29b7.gotoAndStop(4); b9.gotoAndStop(4);Symbol 171 MovieClip Frame 31b11.gotoAndStop(4);Symbol 171 MovieClip Frame 33b10.gotoAndStop(4); b12.gotoAndStop(4);Symbol 171 MovieClip Frame 50stop();Symbol 173 MovieClip Frame 30_parent._parent.pugetbig.play();Symbol 173 MovieClip Frame 46stop();Symbol 175 MovieClip Frame 16_parent._parent.pugetbig.play();Symbol 175 MovieClip Frame 35stop();Symbol 176 MovieClip Frame 1stop();Instance of Symbol 158 MovieClip "ok" in Symbol 176 MovieClip Frame 1onClipEvent (load) { this.lbl = "okay"; this.enabled = false; } on (press) { this.enabled = false; _parent.nxt.enabled = false; _parent.aph = 0; _parent.scl = 50; _parent._parent.btnins.enabled = true; _parent._parent.btnpvc.enabled = true; _parent._parent.btnlgl.enabled = true; _parent._parent.btnply.enabled = true; _parent._parent.btnins._alpha = 100; _parent._parent.btnpvc._alpha = 100; _parent._parent.btnlgl._alpha = 100; _parent._parent.btnply._alpha = 100; }Instance of Symbol 158 MovieClip "nxt" in Symbol 176 MovieClip Frame 1onClipEvent (load) { this.lbl = "power-ups"; this.enabled = false; } on (press) { _parent.gotoAndStop(2); }Symbol 176 MovieClip Frame 2stop();Instance of Symbol 158 MovieClip in Symbol 176 MovieClip Frame 2onClipEvent (load) { this.lbl = "okay"; } on (press) { _parent.aph = 0; _parent.scl = 50; _parent._parent.btnins.enabled = true; _parent._parent.btnpvc.enabled = true; _parent._parent.btnlgl.enabled = true; _parent._parent.btnply.enabled = true; _parent._parent.btnins._alpha = 100; _parent._parent.btnpvc._alpha = 100; _parent._parent.btnlgl._alpha = 100; _parent._parent.btnply._alpha = 100; _parent.gotoAndStop(1); }Instance of Symbol 158 MovieClip "nxt" in Symbol 176 MovieClip Frame 2onClipEvent (load) { this.lbl = "bomb"; } on (press) { _parent.gotoAndStop(3); }Symbol 176 MovieClip Frame 3example.gotoAndPlay(1); stop();Instance of Symbol 158 MovieClip "nxt" in Symbol 176 MovieClip Frame 3onClipEvent (load) { this.lbl = "burst"; } on (press) { _parent.gotoAndStop(4); }Symbol 176 MovieClip Frame 4example.gotoAndPlay(1); stop();Instance of Symbol 158 MovieClip in Symbol 176 MovieClip Frame 4onClipEvent (load) { this.lbl = "okay"; this.enabled = false; } on (press) { _parent.aph = 0; _parent.scl = 50; _parent._parent.btnins.enabled = true; _parent._parent.btnpvc.enabled = true; _parent._parent.btnlgl.enabled = true; _parent._parent.btnply.enabled = true; _parent._parent.btnins._alpha = 100; _parent._parent.btnpvc._alpha = 100; _parent._parent.btnlgl._alpha = 100; _parent._parent.btnply._alpha = 100; _parent.gotoAndStop(1); }Instance of Symbol 158 MovieClip "nxt" in Symbol 176 MovieClip Frame 4onClipEvent (load) { this.lbl = "size"; } on (press) { _parent.gotoAndStop(5); }Symbol 176 MovieClip Frame 5example.gotoAndPlay(1); stop();Instance of Symbol 158 MovieClip in Symbol 176 MovieClip Frame 5onClipEvent (load) { this.lbl = "okay"; } on (press) { _parent.aph = 0; _parent.scl = 50; _parent._parent.btnins.enabled = true; _parent._parent.btnpvc.enabled = true; _parent._parent.btnlgl.enabled = true; _parent._parent.btnply.enabled = true; _parent._parent.btnins._alpha = 100; _parent._parent.btnpvc._alpha = 100; _parent._parent.btnlgl._alpha = 100; _parent._parent.btnply._alpha = 100; _parent.gotoAndStop(1); }Instance of Symbol 158 MovieClip "nxt" in Symbol 176 MovieClip Frame 5onClipEvent (load) { this.lbl = "speed"; } on (press) { _parent.gotoAndStop(6); }Symbol 176 MovieClip Frame 6example.gotoAndPlay(1); stop();Symbol 238 MovieClip Frame 70achievedisplay = _parent.achieve;Symbol 238 MovieClip Frame 105messagedisplay = _parent.msg;Symbol 238 MovieClip Frame 140performancedisplay = _parent.performance;Symbol 238 MovieClip Frame 210kudosdisplay = _parent.kudos.toString().split("0").join("o"); _parent.pscore = _parent.pscore + _parent.kudos; _parent.scoredisplay = _parent.pscore.toString().split("0").join("o");Symbol 238 MovieClip Frame 260lvldisplay = _parent.lvl;Symbol 238 MovieClip Frame 325_parent.gotoAndStop(_parent.nxtlvl);
Library Items
Symbol 1 Sound [explode] | ||
Symbol 2 Sound [intermission] | ||
Symbol 3 Sound [ballhit] | Used by:142 | |
Symbol 4 Sound [buttonpress] | Used by:111 | |
Symbol 5 Graphic | Used by:115 142 144 Timeline | |
Symbol 6 Graphic | Used by:Timeline | |
Symbol 7 Graphic | Used by:8 | |
Symbol 8 MovieClip | Uses:7 | Used by:19 31 |
Symbol 9 ShapeTweening | Used by:11 | |
Symbol 10 Graphic | Used by:11 64 | |
Symbol 11 MovieClip | Uses:9 10 | Used by:19 31 |
Symbol 12 Font | Used by:13 154 156 162 163 165 166 170 172 174 241 243 245 247 | |
Symbol 13 EditableText | Uses:12 | Used by:19 |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:14 | Used by:19 31 |
Symbol 16 ShapeTweening | Used by:18 | |
Symbol 17 Graphic | Used by:18 48 59 63 | |
Symbol 18 MovieClip | Uses:16 17 | Used by:19 |
Symbol 19 MovieClip | Uses:8 11 13 15 18 | Used by:Timeline |
Symbol 20 Graphic | Used by:21 | |
Symbol 21 MovieClip | Uses:20 | Used by:31 |
Symbol 22 Graphic | Used by:23 | |
Symbol 23 MovieClip | Uses:22 | Used by:31 |
Symbol 24 Graphic | Used by:25 | |
Symbol 25 MovieClip | Uses:24 | Used by:31 |
Symbol 26 Graphic | Used by:27 | |
Symbol 27 MovieClip | Uses:26 | Used by:31 |
Symbol 28 Graphic | Used by:31 44 | |
Symbol 29 Graphic | Used by:30 | |
Symbol 30 MovieClip | Uses:29 | Used by:31 |
Symbol 31 MovieClip | Uses:8 11 15 21 23 25 27 28 30 | Used by:Timeline |
Symbol 32 Graphic | Used by:33 | |
Symbol 33 MovieClip | Uses:32 | Used by:44 |
Symbol 34 Graphic | Used by:43 | |
Symbol 35 Graphic | Used by:36 | |
Symbol 36 MovieClip | Uses:35 | Used by:43 |
Symbol 37 Graphic | Used by:43 | |
Symbol 38 Graphic | Used by:43 148 158 | |
Symbol 39 Graphic | Used by:43 | |
Symbol 40 Graphic | Used by:43 | |
Symbol 41 Graphic | Used by:43 | |
Symbol 42 Graphic | Used by:43 | |
Symbol 43 MovieClip | Uses:34 36 37 38 39 40 41 42 | Used by:44 171 |
Symbol 44 MovieClip | Uses:28 33 43 | Used by:Timeline |
Symbol 45 Graphic | Used by:49 | |
Symbol 46 Graphic | Used by:47 | |
Symbol 47 MovieClip | Uses:46 | Used by:49 57 60 64 66 68 70 72 |
Symbol 48 MovieClip | Uses:17 | Used by:49 57 66 68 70 72 169 171 |
Symbol 49 MovieClip | Uses:45 47 48 | Used by:82 91 100 109 169 176 Timeline |
Symbol 50 Graphic | Used by:57 | |
Symbol 51 ShapeTweening | Used by:56 | |
Symbol 52 ShapeTweening | Used by:56 | |
Symbol 53 ShapeTweening | Used by:56 | |
Symbol 54 ShapeTweening | Used by:56 | |
Symbol 55 Graphic | Used by:56 | |
Symbol 56 MovieClip | Uses:51 52 53 54 55 | Used by:57 |
Symbol 57 MovieClip | Uses:50 56 47 48 | Used by:82 91 100 109 171 176 Timeline |
Symbol 58 Graphic | Used by:60 | |
Symbol 59 MovieClip | Uses:17 | Used by:60 |
Symbol 60 MovieClip | Uses:58 47 59 | Used by:82 91 100 109 175 176 Timeline |
Symbol 61 Graphic | Used by:64 | |
Symbol 62 ShapeTweening | Used by:64 | |
Symbol 63 MovieClip | Uses:17 | Used by:64 |
Symbol 64 MovieClip | Uses:61 62 47 63 10 | Used by:82 91 100 109 173 176 Timeline |
Symbol 65 Graphic | Used by:66 | |
Symbol 66 MovieClip | Uses:65 47 48 | Used by:169 173 Timeline |
Symbol 67 Graphic | Used by:68 | |
Symbol 68 MovieClip | Uses:67 47 48 | Used by:169 173 Timeline |
Symbol 69 Graphic | Used by:70 | |
Symbol 70 MovieClip | Uses:69 47 48 | Used by:175 Timeline |
Symbol 71 Graphic | Used by:72 | |
Symbol 72 MovieClip | Uses:71 47 48 | Used by:171 Timeline |
Symbol 73 Graphic | Used by:82 | |
Symbol 74 Graphic | Used by:81 90 99 108 | |
Symbol 75 Bitmap | Used by:76 | |
Symbol 76 Graphic | Uses:75 | Used by:81 |
Symbol 77 Bitmap | Used by:78 | |
Symbol 78 Graphic | Uses:77 | Used by:81 |
Symbol 79 Bitmap | Used by:80 | |
Symbol 80 Graphic | Uses:79 | Used by:81 |
Symbol 81 MovieClip | Uses:74 76 78 80 | Used by:82 |
Symbol 82 MovieClip | Uses:73 81 49 57 60 64 | Used by:Timeline |
Symbol 83 Graphic | Used by:91 | |
Symbol 84 Bitmap | Used by:85 | |
Symbol 85 Graphic | Uses:84 | Used by:90 |
Symbol 86 Bitmap | Used by:87 | |
Symbol 87 Graphic | Uses:86 | Used by:90 |
Symbol 88 Bitmap | Used by:89 | |
Symbol 89 Graphic | Uses:88 | Used by:90 |
Symbol 90 MovieClip | Uses:74 85 87 89 | Used by:91 |
Symbol 91 MovieClip | Uses:83 90 49 57 60 64 | Used by:Timeline |
Symbol 92 Graphic | Used by:100 | |
Symbol 93 Bitmap | Used by:94 | |
Symbol 94 Graphic | Uses:93 | Used by:99 |
Symbol 95 Bitmap | Used by:96 | |
Symbol 96 Graphic | Uses:95 | Used by:99 |
Symbol 97 Bitmap | Used by:98 | |
Symbol 98 Graphic | Uses:97 | Used by:99 |
Symbol 99 MovieClip | Uses:74 94 96 98 | Used by:100 |
Symbol 100 MovieClip | Uses:92 99 49 57 60 64 | Used by:Timeline |
Symbol 101 Graphic | Used by:109 | |
Symbol 102 Bitmap | Used by:103 | |
Symbol 103 Graphic | Uses:102 | Used by:108 |
Symbol 104 Bitmap | Used by:105 | |
Symbol 105 Graphic | Uses:104 | Used by:108 |
Symbol 106 Bitmap | Used by:107 | |
Symbol 107 Graphic | Uses:106 | Used by:108 |
Symbol 108 MovieClip | Uses:74 103 105 107 | Used by:109 |
Symbol 109 MovieClip | Uses:101 108 49 57 60 64 | Used by:Timeline |
Symbol 110 Graphic | Used by:111 113 117 119 121 123 125 127 129 131 133 135 137 139 141 | |
Symbol 111 MovieClip | Uses:110 4 | Used by:Timeline |
Symbol 112 Sound | Used by:113 | |
Symbol 113 MovieClip | Uses:110 112 | Used by:Timeline |
Symbol 114 Sound | Used by:115 | |
Symbol 115 MovieClip | Uses:5 114 | Used by:Timeline |
Symbol 116 Sound | Used by:117 | |
Symbol 117 MovieClip | Uses:110 116 | Used by:Timeline |
Symbol 118 Sound | Used by:119 | |
Symbol 119 MovieClip | Uses:110 118 | Used by:Timeline |
Symbol 120 Sound | Used by:121 | |
Symbol 121 MovieClip | Uses:110 120 | Used by:Timeline |
Symbol 122 Sound | Used by:123 | |
Symbol 123 MovieClip | Uses:110 122 | Used by:Timeline |
Symbol 124 Sound | Used by:125 | |
Symbol 125 MovieClip | Uses:110 124 | Used by:Timeline |
Symbol 126 Sound | Used by:127 | |
Symbol 127 MovieClip | Uses:110 126 | Used by:Timeline |
Symbol 128 Sound | Used by:129 | |
Symbol 129 MovieClip | Uses:110 128 | Used by:Timeline |
Symbol 130 Sound | Used by:131 | |
Symbol 131 MovieClip | Uses:110 130 | Used by:Timeline |
Symbol 132 Sound | Used by:133 | |
Symbol 133 MovieClip | Uses:110 132 | Used by:Timeline |
Symbol 134 Sound | Used by:135 | |
Symbol 135 MovieClip | Uses:110 134 | Used by:Timeline |
Symbol 136 Sound | Used by:137 | |
Symbol 137 MovieClip | Uses:110 136 | Used by:Timeline |
Symbol 138 Sound | Used by:139 | |
Symbol 139 MovieClip | Uses:110 138 | Used by:Timeline |
Symbol 140 Sound | Used by:141 | |
Symbol 141 MovieClip | Uses:110 140 | Used by:Timeline |
Symbol 142 MovieClip | Uses:5 3 | Used by:Timeline |
Symbol 143 Sound | Used by:144 | |
Symbol 144 MovieClip | Uses:5 143 | Used by:Timeline |
Symbol 145 Graphic | Used by:148 158 | |
Symbol 146 Font | Used by:147 157 219 220 221 222 223 226 227 228 229 230 231 232 233 234 235 236 237 239 | |
Symbol 147 EditableText | Uses:146 | Used by:148 |
Symbol 148 MovieClip | Uses:145 147 38 | Used by:155 Timeline |
Symbol 149 Graphic | Used by:152 | |
Symbol 150 Graphic | Used by:152 | |
Symbol 151 Graphic | Used by:152 | |
Symbol 152 MovieClip | Uses:149 150 151 | Used by:Timeline |
Symbol 153 Graphic | Used by:155 159 176 | |
Symbol 154 Text | Uses:12 | Used by:155 |
Symbol 155 MovieClip | Uses:153 154 148 | Used by:Timeline |
Symbol 156 Text | Uses:12 | Used by:159 |
Symbol 157 EditableText | Uses:146 | Used by:158 |
Symbol 158 MovieClip | Uses:145 157 38 | Used by:159 176 Timeline |
Symbol 159 MovieClip | Uses:153 156 158 | Used by:Timeline |
Symbol 160 Graphic | Used by:176 | |
Symbol 161 Font | Used by:162 164 165 166 170 172 174 217 | |
Symbol 162 Text | Uses:161 12 | Used by:176 |
Symbol 163 Text | Uses:12 | Used by:176 |
Symbol 164 Text | Uses:161 | Used by:176 |
Symbol 165 Text | Uses:161 12 | Used by:176 |
Symbol 166 Text | Uses:161 12 | Used by:176 |
Symbol 167 Graphic | Used by:169 171 173 175 | |
Symbol 168 Graphic | Used by:169 175 | |
Symbol 169 MovieClip | Uses:167 168 68 66 49 48 | Used by:176 |
Symbol 170 Text | Uses:161 12 | Used by:176 |
Symbol 171 MovieClip | Uses:43 167 72 57 48 | Used by:176 |
Symbol 172 Text | Uses:161 12 | Used by:176 |
Symbol 173 MovieClip | Uses:167 68 66 64 | Used by:176 |
Symbol 174 Text | Uses:161 12 | Used by:176 |
Symbol 175 MovieClip | Uses:167 168 70 60 | Used by:176 |
Symbol 176 MovieClip | Uses:153 160 162 163 164 158 165 166 169 49 170 171 57 172 173 64 174 175 60 | Used by:Timeline |
Symbol 177 Bitmap | Used by:178 | |
Symbol 178 Graphic | Uses:177 | Used by:179 |
Symbol 179 MovieClip | Uses:178 | Used by:Timeline |
Symbol 180 Bitmap | Used by:181 | |
Symbol 181 Graphic | Uses:180 | Used by:182 |
Symbol 182 MovieClip | Uses:181 | Used by:Timeline |
Symbol 183 Bitmap | Used by:184 | |
Symbol 184 Graphic | Uses:183 | Used by:185 |
Symbol 185 MovieClip | Uses:184 | Used by:Timeline |
Symbol 186 Bitmap | Used by:187 | |
Symbol 187 Graphic | Uses:186 | Used by:188 |
Symbol 188 MovieClip | Uses:187 | Used by:Timeline |
Symbol 189 Graphic | Used by:192 | |
Symbol 190 Font | Used by:191 194 198 204 210 | |
Symbol 191 Text | Uses:190 | Used by:192 |
Symbol 192 MovieClip | Uses:189 191 | Used by:196 |
Symbol 193 Graphic | Used by:195 | |
Symbol 194 Text | Uses:190 | Used by:195 201 207 213 |
Symbol 195 MovieClip | Uses:193 194 | Used by:196 |
Symbol 196 MovieClip | Uses:192 195 | Used by:Timeline |
Symbol 197 Graphic | Used by:199 | |
Symbol 198 Text | Uses:190 | Used by:199 |
Symbol 199 MovieClip | Uses:197 198 | Used by:202 |
Symbol 200 Graphic | Used by:201 | |
Symbol 201 MovieClip | Uses:200 194 | Used by:202 |
Symbol 202 MovieClip | Uses:199 201 | Used by:Timeline |
Symbol 203 Graphic | Used by:205 | |
Symbol 204 Text | Uses:190 | Used by:205 |
Symbol 205 MovieClip | Uses:203 204 | Used by:208 |
Symbol 206 Graphic | Used by:207 | |
Symbol 207 MovieClip | Uses:206 194 | Used by:208 |
Symbol 208 MovieClip | Uses:205 207 | Used by:Timeline |
Symbol 209 Graphic | Used by:211 | |
Symbol 210 Text | Uses:190 | Used by:211 |
Symbol 211 MovieClip | Uses:209 210 | Used by:214 |
Symbol 212 Graphic | Used by:213 | |
Symbol 213 MovieClip | Uses:212 194 | Used by:214 |
Symbol 214 MovieClip | Uses:211 213 | Used by:Timeline |
Symbol 215 Graphic | Used by:Timeline | |
Symbol 216 Graphic | Used by:218 | |
Symbol 217 EditableText | Uses:161 | Used by:218 |
Symbol 218 MovieClip | Uses:216 217 | Used by:Timeline |
Symbol 219 EditableText | Uses:146 | Used by:Timeline |
Symbol 220 EditableText | Uses:146 | Used by:Timeline |
Symbol 221 EditableText | Uses:146 | Used by:Timeline |
Symbol 222 EditableText | Uses:146 | Used by:Timeline |
Symbol 223 EditableText | Uses:146 | Used by:Timeline |
Symbol 224 Graphic | Used by:225 | |
Symbol 225 MovieClip | Uses:224 | Used by:Timeline |
Symbol 226 EditableText | Uses:146 | Used by:Timeline |
Symbol 227 EditableText | Uses:146 | Used by:Timeline |
Symbol 228 Text | Uses:146 | Used by:Timeline |
Symbol 229 EditableText | Uses:146 | Used by:Timeline |
Symbol 230 EditableText | Uses:146 | Used by:Timeline |
Symbol 231 EditableText | Uses:146 | Used by:238 |
Symbol 232 EditableText | Uses:146 | Used by:238 |
Symbol 233 EditableText | Uses:146 | Used by:238 |
Symbol 234 EditableText | Uses:146 | Used by:238 |
Symbol 235 EditableText | Uses:146 | Used by:238 |
Symbol 236 EditableText | Uses:146 | Used by:238 |
Symbol 237 EditableText | Uses:146 | Used by:238 |
Symbol 238 MovieClip | Uses:231 232 233 234 235 236 237 | Used by:Timeline |
Symbol 239 Text | Uses:146 | Used by:Timeline |
Symbol 240 Graphic | Used by:242 244 246 248 | |
Symbol 241 Text | Uses:12 | Used by:242 |
Symbol 242 MovieClip | Uses:240 241 | Used by:Timeline |
Symbol 243 Text | Uses:12 | Used by:244 |
Symbol 244 MovieClip | Uses:240 243 | Used by:Timeline |
Symbol 245 Text | Uses:12 | Used by:246 |
Symbol 246 MovieClip | Uses:240 245 | Used by:Timeline |
Symbol 247 Text | Uses:12 | Used by:248 |
Symbol 248 MovieClip | Uses:240 247 | Used by:Timeline |
Instance Names
"stg" | Frame 3 | Symbol 44 MovieClip |
"bomb" | Frame 3 | Symbol 49 MovieClip |
"burst" | Frame 3 | Symbol 57 MovieClip |
"speed" | Frame 3 | Symbol 60 MovieClip |
"grow" | Frame 3 | Symbol 64 MovieClip |
"pbomb" | Frame 3 | Symbol 49 MovieClip |
"pburst" | Frame 3 | Symbol 57 MovieClip |
"pspeed" | Frame 3 | Symbol 60 MovieClip |
"pgrow" | Frame 3 | Symbol 64 MovieClip |
"circle1" | Frame 3 | Symbol 66 MovieClip |
"circle3" | Frame 3 | Symbol 68 MovieClip |
"circle2" | Frame 3 | Symbol 70 MovieClip |
"circle4" | Frame 3 | Symbol 72 MovieClip |
"fc1" | Frame 3 | Symbol 82 MovieClip |
"fc2" | Frame 3 | Symbol 91 MovieClip |
"fc3" | Frame 3 | Symbol 100 MovieClip |
"fc4" | Frame 3 | Symbol 109 MovieClip |
"buttonclick" | Frame 3 | Symbol 111 MovieClip |
"pubomb" | Frame 3 | Symbol 113 MovieClip |
"pugetbig" | Frame 3 | Symbol 115 MovieClip |
"pugetsmall" | Frame 3 | Symbol 117 MovieClip |
"vobomb" | Frame 3 | Symbol 119 MovieClip |
"vocolorburst" | Frame 3 | Symbol 121 MovieClip |
"gtdeuce" | Frame 3 | Symbol 123 MovieClip |
"gtdominator" | Frame 3 | Symbol 125 MovieClip |
"vofailure" | Frame 3 | Symbol 127 MovieClip |
"vogoalachieved" | Frame 3 | Symbol 129 MovieClip |
"gthalffull" | Frame 3 | Symbol 131 MovieClip |
"gtking" | Frame 3 | Symbol 133 MovieClip |
"gtquartermaster" | Frame 3 | Symbol 135 MovieClip |
"vosize" | Frame 3 | Symbol 137 MovieClip |
"vospeed" | Frame 3 | Symbol 139 MovieClip |
"gtspeedround" | Frame 3 | Symbol 141 MovieClip |
"sfballhit" | Frame 3 | Symbol 142 MovieClip |
"sfdisco" | Frame 3 | Symbol 144 MovieClip |
"btnpvc" | Frame 3 | Symbol 148 MovieClip |
"btnins" | Frame 3 | Symbol 148 MovieClip |
"btnlgl" | Frame 3 | Symbol 148 MovieClip |
"btnply" | Frame 3 | Symbol 148 MovieClip |
"lgt" | Frame 3 | Symbol 155 MovieClip |
"pvt" | Frame 3 | Symbol 159 MovieClip |
"nst" | Frame 3 | Symbol 176 MovieClip |
"playyellow" | Frame 4 | Symbol 158 MovieClip |
"playblue" | Frame 4 | Symbol 158 MovieClip |
"playred" | Frame 4 | Symbol 158 MovieClip |
"playgreen" | Frame 4 | Symbol 158 MovieClip |
"statblue" | Frame 4 | Symbol 196 MovieClip |
"statred" | Frame 4 | Symbol 202 MovieClip |
"statgreen" | Frame 4 | Symbol 208 MovieClip |
"statyellow" | Frame 4 | Symbol 214 MovieClip |
"score1" | Frame 5 | Symbol 218 MovieClip |
"score2" | Frame 5 | Symbol 218 MovieClip |
"score3" | Frame 5 | Symbol 218 MovieClip |
"score4" | Frame 5 | Symbol 218 MovieClip |
"indicator" | Frame 5 | Symbol 225 MovieClip |
"playbtn" | Frame 5 | Symbol 158 MovieClip |
"wrap" | Frame 8 | Symbol 238 MovieClip |
"btnplay" | Frame 9 | Symbol 158 MovieClip |
"btnquit" | Frame 9 | Symbol 158 MovieClip |
"btnpost" | Frame 9 | Symbol 158 MovieClip |
"btnchl" | Frame 9 | Symbol 158 MovieClip |
"chlmsg" | Frame 9 | Symbol 242 MovieClip |
"plymsg" | Frame 9 | Symbol 244 MovieClip |
"pstmsg" | Frame 9 | Symbol 246 MovieClip |
"qtmsg" | Frame 9 | Symbol 248 MovieClip |
"light" | Symbol 43 MovieClip Frame 1 | Symbol 36 MovieClip |
"box" | Symbol 44 MovieClip Frame 1 | Symbol 43 MovieClip |
"hit" | Symbol 49 MovieClip Frame 1 | Symbol 48 MovieClip |
"hit" | Symbol 57 MovieClip Frame 1 | Symbol 48 MovieClip |
"hit" | Symbol 60 MovieClip Frame 1 | Symbol 59 MovieClip |
"hit" | Symbol 64 MovieClip Frame 1 | Symbol 63 MovieClip |
"shine" | Symbol 66 MovieClip Frame 1 | Symbol 47 MovieClip |
"hit" | Symbol 66 MovieClip Frame 1 | Symbol 48 MovieClip |
"shine" | Symbol 68 MovieClip Frame 1 | Symbol 47 MovieClip |
"hit" | Symbol 68 MovieClip Frame 1 | Symbol 48 MovieClip |
"shine" | Symbol 70 MovieClip Frame 1 | Symbol 47 MovieClip |
"hit" | Symbol 70 MovieClip Frame 1 | Symbol 48 MovieClip |
"shine" | Symbol 72 MovieClip Frame 1 | Symbol 47 MovieClip |
"hit" | Symbol 72 MovieClip Frame 1 | Symbol 48 MovieClip |
"express" | Symbol 82 MovieClip Frame 1 | Symbol 81 MovieClip |
"express" | Symbol 91 MovieClip Frame 1 | Symbol 90 MovieClip |
"express" | Symbol 100 MovieClip Frame 1 | Symbol 99 MovieClip |
"express" | Symbol 109 MovieClip Frame 1 | Symbol 108 MovieClip |
"ap" | Symbol 155 MovieClip Frame 1 | Symbol 148 MovieClip |
"da" | Symbol 155 MovieClip Frame 1 | Symbol 148 MovieClip |
"ok" | Symbol 159 MovieClip Frame 1 | Symbol 158 MovieClip |
"b1" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b2" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b3" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b4" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b5" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b6" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b7" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b8" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b9" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b10" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b11" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"b12" | Symbol 171 MovieClip Frame 1 | Symbol 43 MovieClip |
"ok" | Symbol 176 MovieClip Frame 1 | Symbol 158 MovieClip |
"nxt" | Symbol 176 MovieClip Frame 1 | Symbol 158 MovieClip |
"nxt" | Symbol 176 MovieClip Frame 2 | Symbol 158 MovieClip |
"example" | Symbol 176 MovieClip Frame 3 | Symbol 169 MovieClip |
"nxt" | Symbol 176 MovieClip Frame 3 | Symbol 158 MovieClip |
"example" | Symbol 176 MovieClip Frame 4 | Symbol 171 MovieClip |
"nxt" | Symbol 176 MovieClip Frame 4 | Symbol 158 MovieClip |
"nxt" | Symbol 176 MovieClip Frame 5 | Symbol 158 MovieClip |
"statblue2" | Symbol 196 MovieClip Frame 1 | Symbol 195 MovieClip |
"statred2" | Symbol 202 MovieClip Frame 1 | Symbol 201 MovieClip |
"statgreen2" | Symbol 208 MovieClip Frame 1 | Symbol 207 MovieClip |
"statyellow2" | Symbol 214 MovieClip Frame 1 | Symbol 213 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "explode" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "intermission" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "ballhit" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "buttonpress" |
Labels
"loading" | Frame 1 |
"loaded" | Frame 2 |
"origin" | Frame 3 |
"select" | Frame 4 |
"build" | Frame 5 |
"play" | Frame 6 |
"powerup" | Frame 7 |
"endround" | Frame 8 |
"endgame" | Frame 9 |
"bomb" | Symbol 49 MovieClip Frame 5 |
"bomb" | Symbol 57 MovieClip Frame 5 |
"origin" | Symbol 59 MovieClip Frame 1 |
"speed" | Symbol 59 MovieClip Frame 2 |
"break" | Symbol 59 MovieClip Frame 3 |
"done" | Symbol 59 MovieClip Frame 4 |
"origin" | Symbol 63 MovieClip Frame 1 |
"grow" | Symbol 63 MovieClip Frame 2 |
"shrink" | Symbol 63 MovieClip Frame 3 |
"done" | Symbol 63 MovieClip Frame 4 |
"origin" | Symbol 82 MovieClip Frame 1 |
"bomb" | Symbol 82 MovieClip Frame 2 |
"burst" | Symbol 82 MovieClip Frame 3 |
"speed" | Symbol 82 MovieClip Frame 4 |
"grow" | Symbol 82 MovieClip Frame 5 |
"origin" | Symbol 91 MovieClip Frame 1 |
"bomb" | Symbol 91 MovieClip Frame 2 |
"burst" | Symbol 91 MovieClip Frame 3 |
"speed" | Symbol 91 MovieClip Frame 4 |
"grow" | Symbol 91 MovieClip Frame 5 |
"origin" | Symbol 100 MovieClip Frame 1 |
"bomb" | Symbol 100 MovieClip Frame 2 |
"burst" | Symbol 100 MovieClip Frame 3 |
"speed" | Symbol 100 MovieClip Frame 4 |
"grow" | Symbol 100 MovieClip Frame 5 |
"origin" | Symbol 109 MovieClip Frame 1 |
"bomb" | Symbol 109 MovieClip Frame 2 |
"burst" | Symbol 109 MovieClip Frame 3 |
"speed" | Symbol 109 MovieClip Frame 4 |
"grow" | Symbol 109 MovieClip Frame 5 |
Dynamic Text Variables
loading | Symbol 13 EditableText | "Loading 100% of 2.4 MB" |
lbl | Symbol 147 EditableText | "label" |
lbl | Symbol 157 EditableText | "label" |
score | Symbol 217 EditableText | "o" |
scoredisplay | Symbol 220 EditableText | "o" |
timedisplay | Symbol 222 EditableText | "6o:oo" |
leveldisplay | Symbol 223 EditableText | "level 1" |
gametype | Symbol 226 EditableText | "Game Type" |
gamedescription | Symbol 227 EditableText | "Game Description" |
gametype2 | Symbol 229 EditableText | "goal:" |
gamedescription | Symbol 230 EditableText | "wrap up will review goal for level, show player performance against goal and tally bonuses" |
goaldisplay | Symbol 231 EditableText | "goal achieved?" |
achievedisplay | Symbol 232 EditableText | "yes/no" |
messagedisplay | Symbol 233 EditableText | "best control" |
performancedisplay | Symbol 234 EditableText | "yes/no" |
bonusdisplay | Symbol 235 EditableText | "bonus" |
kudosdisplay | Symbol 236 EditableText | "yes/no" |
lvldisplay | Symbol 237 EditableText | "get ready for level 2" |
|