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

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

squares2.swf

This is the info page for
Flash #7190

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


Text
<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"> </FONT></P>

2

s

e

r

a

u

q

loading

invincibility

slow motion

+1000 points

mini square

evil squares

speed

-1000 points

big square

you lost

try again

music

www.albinoblacksheep.com

help

play

this is your square. it is
controlled by the mouse.

this is an enemy.  if you hit
one of these, you lose.

hitting one of these will give
you points.  however,
it will make the game faster
and your square larger.

this is a powerdown.
if you hit this, it is bad.

this is a powerup.
try to hit these.

you will get more points per square as the game goes on.
your score will also slowly rise, and as the game goes on,
your will rise faster.
powerups:
+1000 points - adds 1000 points to your score
invincibility - makes you invincible for 6 seconds
slow motion - slows the game down for 6 seconds
mini square - makes your square 40% smaller
powerdowns:
-1000 points - subtracts 1000 points from your score
evil squares - all of the squares are enemies for 6 seconds
speed - speeds the game up for 6 seconds
big square - makes your square 40% bigger

by gavin shapiro

ActionScript [AS1/AS2]

Frame 1
_global.speedmult = 10;
Frame 2
_global.speedmult = 1; score = 0; _root.invincible = 0; _root.slower = 0; numsquares = int((speedmult - 1) / 0.07) + " squares"; _root.evilsquares = 0; _root.lead.setVolume(_root.leadvol); _root.bass.setVolume(0); stop(); startDrag ("square2", true); Mouse.hide();
Instance of Symbol 85 MovieClip "square2" in Frame 2
onClipEvent (enterFrame) { if (((this.hitTest(_root.enemyr) | this.hittest(_root.enemyb)) | this.hittest(_root.enemyl)) | this.hittest(_root.enemyt)) { if (_root.invincible != 1) { _root.gotoAndStop("gameover"); } } if (((this.hitTest(_root.goodr) | this.hittest(_root.goodb)) | this.hittest(_root.goodl)) | this.hittest(_root.goodt)) { if (_root.evilsquares == 1) { _root.gotoAndStop("gameover"); } } } onClipEvent (enterFrame) { _root.score = _root.score + (0.02 * _global.speedmult); _root.intscore = int(_root.score); if (int((speedmult - 1) / 0.07) != 1) { _root.numsquares = int((speedmult - 1) / 0.07) + " squares"; } if (int((speedmult - 1) / 0.07) == 1) { _root.numsquares = int((speedmult - 1) / 0.07) + " square"; } }
Instance of Symbol 87 MovieClip "enemyr" in Frame 2
onClipEvent (load) { function reset() { this._x = 600; this._y = random(400); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { if (_root.slower == 0) { this._x = this._x - enemySpeed; } if (_root.slower == 1) { this._x = this._x - 1; } if (_root.slower == 2) { this._x = this._x - (enemySpeed + 3); } if (this._x < -10) { reset(); } }
Instance of Symbol 87 MovieClip "enemyl" in Frame 2
onClipEvent (load) { function reset() { this._x = -50; this._y = random(400); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { if (_root.slower == 0) { this._x = this._x - (-enemySpeed); } if (_root.slower == 1) { this._x = this._x - -1; } if (_root.slower == 2) { this._x = this._x - (-(enemySpeed + 3)); } if (this._x > 560) { reset(); } }
Instance of Symbol 87 MovieClip "enemyt" in Frame 2
onClipEvent (load) { function reset() { this._y = -50; this._x = random(550); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { if (_root.slower == 0) { this._y = this._y - (-enemySpeed); } if (_root.slower == 1) { this._y = this._y - -1; } if (_root.slower == 2) { this._y = this._y - (-(enemySpeed + 3)); } if (this._y > 410) { reset(); } }
Instance of Symbol 87 MovieClip "enemyb" in Frame 2
onClipEvent (load) { function reset() { this._y = 450; this._x = random(550); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { if (_root.slower == 0) { this._y = this._y - enemySpeed; } if (_root.slower == 1) { this._y = this._y - 1; } if (_root.slower == 2) { this._y = this._y - (enemySpeed + 3); } if (this._y < -10) { reset(); } }
Instance of Symbol 89 MovieClip "powerup" in Frame 2
onClipEvent (load) { function reset() { whichside = random(4); enemySpeed = 3 + speedmult; if (whichside == 0) { this._x = -700 * enemySpeed; this._y = random(400); } if (whichside == 1) { this._x = 550 + (700 * enemySpeed); this._y = random(400); } if (whichside == 2) { this._y = -700 * enemyspeed; this._x = random(550); } if (whichside == 3) { this._y = 400 + (enemyspeed * 700); this._x = random(550); } } reset(); } onClipEvent (enterFrame) { if (whichside == 0) { this._x = this._x + enemySpeed; if (this._x > 560) { reset(); } } if (whichside == 1) { this._x = this._x - enemySpeed; if (this._x < -10) { reset(); } } if (whichside == 2) { this._y = this._y + enemySpeed; if (this._y > 410) { reset(); } } if (whichside == 3) { this._y = this._y - enemySpeed; if (this._y < -10) { reset(); } } if (this.hitTest(_root.square2)) { powerupwav = new Sound(); powerupwav.attachSound("powerupwav"); powerupwav.start(); buttonover = new Sound(); buttonover.attachSound("buttonover"); buttonover.start(); randpowerup = random(4); if ((randpowerup == 0) & (_root.evilsquares == 0)) { _root.powerups.gotoAndPlay(2); _root.invincible = 1; } else if ((randpowerup == 1) & (_root.slower == 0)) { _root.powerups.gotoAndPlay(362); _root.slower = 1; _root.lead.setVolume(0); _root.bass.setVolume(_root.bassvol); } else if (randpowerup == 2) { _root.powerups.gotoAndPlay(722); _root.score = _root.score + 1000; } else if (randpowerup == 3) { _root.powerups.gotoAndPlay(812); } else if (((randpowerup == 0) & (_root.evilsquares == 1)) | ((randpowerup == 1) & (_root.slower == 2))) { _root.powerups.gotoAndPlay(722); _root.score = _root.score + 1000; } reset(); } }
Instance of Symbol 90 MovieClip in Frame 2
onClipEvent (load) { function reset() { whichside = random(4); enemySpeed = 3 + speedmult; if (whichside == 0) { this._x = -400 * enemySpeed; this._y = random(400); } if (whichside == 1) { this._x = 550 + (400 * enemySpeed); this._y = random(400); } if (whichside == 2) { this._y = -400 * enemySpeed; this._x = random(550); } if (whichside == 3) { this._y = 400 + (enemySpeed * 400); this._x = random(550); } } reset(); } onClipEvent (enterFrame) { if (whichside == 0) { this._x = this._x + enemySpeed; if (this._x > 560) { reset(); } } if (whichside == 1) { this._x = this._x - enemySpeed; if (this._x < -10) { reset(); } } if (whichside == 2) { this._y = this._y + enemySpeed; if (this._y > 410) { reset(); } } if (whichside == 3) { this._y = this._y - enemySpeed; if (this._y < -10) { reset(); } } if (this.hitTest(_root.square2)) { powerdownwav = new Sound(); powerdownwav.attachSound("powerdownwav"); powerdownwav.start(); randpowerdown = random(4); if ((randpowerdown == 0) & (_root.invincible == 0)) { _root.powerdowns.gotoAndPlay(2); _root.goodl.gotoAndPlay(2); _root.goodr.gotoAndPlay(2); _root.goodt.gotoAndPlay(2); _root.goodb.gotoAndPlay(2); _root.evilsquares = 1; } else if ((randpowerdown == 1) & (_root.slower == 0)) { _root.powerdowns.gotoAndPlay(362); _root.slower = 2; } else if (randpowerdown == 2) { _root.powerdowns.gotoAndPlay(722); _root.score = _root.score - 1000; } else if (randpowerdown == 3) { _root.powerdowns.gotoAndPlay(812); } else if (((randpowerdown == 0) & (_root.invincible == 1)) | ((randpowerdown == 1) & (_root.slower == 1))) { _root.powerdowns.gotoAndPlay(722); _root.score = _root.score - 1000; } reset(); } }
Instance of Symbol 91 MovieClip "goodb" in Frame 2
onClipEvent (load) { function reset() { this._y = 450; this._x = random(550); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { if (_root.slower == 0) { this._y = this._y - enemySpeed; } if (_root.slower == 1) { this._y = this._y - 1; } if (_root.slower == 2) { this._y = this._y - (enemySpeed + 3); } if (this._y < -10) { reset(); } if (this.hitTest(_root.square2)) { squarewav = new Sound(); squarewav.attachSound("squarewav"); squarewav.start(); if (_root.evilsquares == 0) { _root.score = _root.score + int(speedmult * 20); reset(); _global.speedmult = _global.speedmult + 0.07; _root.square2._xscale = _root.square2._xscale * 1.01; _root.square2._yscale = _root.square2._xscale; } } }
Instance of Symbol 91 MovieClip "goodt" in Frame 2
onClipEvent (load) { function reset() { this._y = -50; this._x = random(550); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { if (_root.slower == 0) { this._y = this._y - (-enemySpeed); } if (_root.slower == 1) { this._y = this._y - -1; } if (_root.slower == 2) { this._y = this._y - (-(enemySpeed + 3)); } if (this._y > 410) { reset(); } if (this.hitTest(_root.square2)) { squarewav = new Sound(); squarewav.attachSound("squarewav"); squarewav.start(); if (_root.evilsquares == 0) { _root.score = _root.score + int(speedmult * 20); reset(); _global.speedmult = _global.speedmult + 0.07; _root.square2._xscale = _root.square2._xscale * 1.01; _root.square2._yscale = _root.square2._xscale; } } }
Instance of Symbol 91 MovieClip "goodl" in Frame 2
onClipEvent (load) { function reset() { this._x = -50; this._y = random(400); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { if (_root.slower == 0) { this._x = this._x - (-enemySpeed); } if (_root.slower == 1) { this._x = this._x - -1; } if (_root.slower == 2) { this._x = this._x - (-(enemySpeed + 3)); } if (this._x > 560) { reset(); } if (this.hitTest(_root.square2)) { squarewav = new Sound(); squarewav.attachSound("squarewav"); squarewav.start(); if (_root.evilsquares == 0) { _root.score = _root.score + int(speedmult * 20); reset(); _global.speedmult = _global.speedmult + 0.07; _root.square2._xscale = _root.square2._xscale * 1.01; _root.square2._yscale = _root.square2._xscale; } } }
Instance of Symbol 91 MovieClip "goodr" in Frame 2
onClipEvent (load) { function reset() { this._x = 600; this._y = random(400); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { if (_root.slower == 0) { this._x = this._x - enemySpeed; } if (_root.slower == 1) { this._x = this._x - 1; } if (_root.slower == 2) { this._x = this._x - (enemySpeed + 3); } if (this._x < -10) { reset(); } if (this.hitTest(_root.square2)) { squarewav = new Sound(); squarewav.attachSound("squarewav"); squarewav.start(); if (_root.evilsquares == 0) { _root.score = _root.score + int(speedmult * 20); reset(); _global.speedmult = _global.speedmult + 0.07; _root.square2._xscale = _root.square2._xscale * 1.01; _root.square2._yscale = _root.square2._xscale; } } }
Frame 5
Mouse.show(); die = new Sound(); die.attachSound("die"); die.start(); _root.intscore = "final score: " + _root.intscore; if (int((speedmult - 1) / 0.07) != 1) { totalsquares = ("you got " + int((speedmult - 1) / 0.07)) + " squares"; } if (int((speedmult - 1) / 0.07) == 1) { totalsquares = "you got 1 square"; } _root.lead.setVolume(0); _root.bass.setVolume(_root.bassvol); if (_root.music == 0) { musicbutton._alpha = 20; } else if (_root.music == 1) { musicbutton._alpha = 100; } _global.speedmult = 10; _root.slower = 0; _root.invincible = 0;
Instance of Symbol 87 MovieClip "enemyr" in Frame 5
onClipEvent (load) { function reset() { this._x = 600; this._y = random(400); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { this._x = this._x - enemySpeed; if (this._x < -10) { reset(); } }
Instance of Symbol 87 MovieClip "enemyl" in Frame 5
onClipEvent (load) { function reset() { this._x = -50; this._y = random(400); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { this._x = this._x - (-enemySpeed); if (this._x > 560) { reset(); } }
Instance of Symbol 87 MovieClip "enemyt" in Frame 5
onClipEvent (load) { function reset() { this._y = -50; this._x = random(550); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { this._y = this._y - (-enemySpeed); if (this._y > 410) { reset(); } }
Instance of Symbol 87 MovieClip "enemyb" in Frame 5
onClipEvent (load) { function reset() { this._y = 450; this._x = random(550); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { this._y = this._y - enemySpeed; if (this._y < -10) { reset(); } }
Instance of Symbol 91 MovieClip "goodb" in Frame 5
onClipEvent (load) { function reset() { this._y = 450; this._x = random(550); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { this._y = this._y - enemySpeed; if (this._y < -10) { reset(); } if (this.hitTest(_root.square2)) { _root.score = _root.score + int(speedmult * 20); reset(); _global.speedmult = _global.speedmult + 0.07; _root.square2._xscale = _root.square2._xscale * 1.01; _root.square2._yscale = _root.square2._xscale; } }
Instance of Symbol 91 MovieClip "goodt" in Frame 5
onClipEvent (load) { function reset() { this._y = -50; this._x = random(550); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { this._y = this._y - (-enemySpeed); if (this._y > 410) { reset(); } if (this.hitTest(_root.square2)) { _root.score = _root.score + int(speedmult * 20); reset(); _global.speedmult = _global.speedmult + 0.07; _root.square2._xscale = _root.square2._xscale * 1.01; _root.square2._yscale = _root.square2._xscale; } }
Instance of Symbol 91 MovieClip "goodl" in Frame 5
onClipEvent (load) { function reset() { this._x = -50; this._y = random(400); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { this._x = this._x - (-enemySpeed); if (this._x > 560) { reset(); } if (this.hitTest(_root.square2)) { _root.score = _root.score + int(speedmult * 20); reset(); _global.speedmult = _global.speedmult + 0.07; _root.square2._xscale = _root.square2._xscale * 1.01; _root.square2._yscale = _root.square2._xscale; } }
Instance of Symbol 91 MovieClip "goodr" in Frame 5
onClipEvent (load) { function reset() { this._x = 600; this._y = random(400); enemySpeed = random(3) + speedmult; this._xscale = random(50) + 75; this._yscale = this._xscale; } reset(); } onClipEvent (enterFrame) { this._x = this._x - enemySpeed; if (this._x < -10) { reset(); } if (this.hitTest(_root.square2)) { _root.score = _root.score + int(speedmult * 20); reset(); _global.speedmult = _global.speedmult + 0.07; _root.square2._xscale = _root.square2._xscale * 1.01; _root.square2._yscale = _root.square2._xscale; } }
Frame 6
_global.speedmult = 10; stop();
Frame 7
lead = new Sound(_root.leadmc); lead.attachSound("gamemusic"); lead.start(0, 999); bass = new Sound(_root.bassmc); bass.attachSound("menumusic"); bass.start(0, 999); _root.bassvol = 75; _root.leadvol = 100; music = 1; _root.lead.setVolume(0); _root.bass.setVolume(_root.bassvol); _global.speedmult = 10; stop();
Symbol 12 MovieClip [FLabelSymbol] Frame 1
#initclip 2 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var val = this.hostComponent.styleTable.embedFonts.value; if (val != undefined) { this.labelField.embedFonts = val; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (tmpColor == undefined) { tmpColor = (enable ? 0 : 8947848); } this.setColor(tmpColor); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 21 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 27 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 33 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame4, "shadow"); component.registerSkinElement(frame2, "darkshadow"); component.registerSkinElement(frame3, "highlight"); component.registerSkinElement(frame1, "highlight3D");
Symbol 39 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 40 MovieClip [fpb_states] Frame 1
stop();
Symbol 40 MovieClip [fpb_states] Frame 2
stop();
Symbol 40 MovieClip [fpb_states] Frame 3
stop();
Symbol 40 MovieClip [fpb_states] Frame 4
stop();
Symbol 41 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var i in this.styleFormat_prm) { this.setStyleProperty(i, this.styleFormat_prm[i]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var funct in this.methodTable) { this[funct](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var inner = this.styleTable.focusRectInner.value; var outer = this.styleTable.focusRectOuter.value; if (inner == undefined) { inner = 16777215 /* 0xFFFFFF */; } if (outer == undefined) { outer = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, outer); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, inner); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { this.drawFocusRect(); } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var tmpValue = parseInt(value); if (!isNaN(tmpValue)) { value = tmpValue; } var global = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!global)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var textProp = propName.subString(4, propName.length); this.textStyle[textProp] = value; this.invalidate("setSize"); } else { for (var j in this.styleTable[propName].coloredMCs) { var myColor = new Color(this.styleTable[propName].coloredMCs[j]); if (this.styleTable[propName].value == undefined) { var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; myColor.setTransform(myTObj); } else { myColor.setRGB(value); } } } this.styleTable[propName].useGlobal = global; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var myColor = new Color(skinMCRef); myColor.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var i in arguments[0]) { this[i] = arguments[0][i]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var arg = 0; while (arg < arguments.length) { var mcRef = arguments[arg]; this.listeners[arguments[arg]] = mcRef; for (var i in this) { if (this.isAStyle(i)) { mcRef.updateStyleProperty(this, i.toString()); } } arg++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var prop in this) { if (this.isAStyle(prop)) { if (component.styleTable[prop].useGlobal == this.isGlobal) { component.styleTable[prop].useGlobal = true; var value = (this.isGlobal ? undefined : (globalStyleFormat[prop])); component.setStyleProperty(prop, value, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var count = 0; for (var i in this.listeners) { var component = this.listeners[i]; if (arguments.length > 0) { var j = 0; while (j < arguments.length) { if (this.isAStyle(arguments[j])) { component.updateStyleProperty(this, arguments[j]); } j++; } } else { for (var j in this) { if (this.isAStyle(j)) { component.updateStyleProperty(this, j.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 45 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 45 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 48 MovieClip [FPushButtonSymbol] Frame 1
#initclip 3 function FPushButtonClass() { this.init(); } FPushButtonClass.prototype = new FUIComponentClass(); Object.registerClass("FPushButtonSymbol", FPushButtonClass); FPushButtonClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fpb_states", "fpbState_mc", 1); this.attachMovie("FLabelSymbol", "fLabel_mc", 2); this.attachMovie("fpb_hitArea", "fpb_hitArea_mc", 3); super.init(); this.btnState = false; this.setClickHandler(this.clickHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_PUSHBUTTON = 43; this.STATE_SYSTEM_PRESSED = 8; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FPushButtonClass.prototype.setHitArea = function (w, h) { var hit = this.fpb_hitArea_mc; this.hitArea = hit; hit._visible = false; hit._width = w; hit._height = ((arguments.length > 1) ? (h) : (hit._height)); }; FPushButtonClass.prototype.setSize = function (w, h) { w = ((w < 6) ? 6 : (w)); if (arguments.length > 1) { if (h < 6) { h = 6; } } super.setSize(w, h); this.setLabel(this.getLabel()); this.arrangeLabel(); this.setHitArea(w, h); this.boundingBox_mc._width = w; this.boundingBox_mc._height = h; this.drawFrame(); if (this.focused) { super.myOnSetFocus(); } this.initContentPos("fLabel_mc"); }; FPushButtonClass.prototype.arrangeLabel = function () { var label = this.fLabel_mc; var h = this.height; var w = (this.width - 2); var b = 1; this.fLabel_mc.setSize(w - (b * 4)); label._x = b * 3; label._y = (h / 2) - (label._height / 2); }; FPushButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FPushButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); this.arrangeLabel(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FPushButtonClass.prototype.getEnabled = function () { return(this.enabled); }; FPushButtonClass.prototype.setEnabled = function (enable) { if (enable || (enable == undefined)) { this.gotoFrame(1); this.drawFrame(); this.flabel_mc.setEnabled(true); this.enabled = true; super.setEnabled(true); } else { this.gotoFrame(4); this.drawFrame(); this.flabel_mc.setEnabled(false); this.enabled = false; super.setEnabled(false); } }; FPushButtonClass.prototype.txtFormat = function () { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = "center")) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 1)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 1)) : undefined); if (this.fLabel_mc._height > this.height) { super.setSize(this.width, this.fLabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FPushButtonClass.prototype.drawFrame = function () { var b = 1; var x1 = 0; var y1 = 0; var x2 = this.width; var y2 = this.height; var mc_array = ["up_mc", "over_mc", "down_mc", "disabled_mc"]; var frame = mc_array[this.fpbState_mc._currentframe - 1]; var mc = "frame"; var i = 0; while (i < 6) { x1 = x1 + ((i % 2) * b); y1 = y1 + ((i % 2) * b); x2 = x2 - (((i + 1) % 2) * b); y2 = y2 - (((i + 1) % 2) * b); var w = (Math.abs(x1 - x2) + (2 * b)); var h = (Math.abs(y1 - y2) + (2 * b)); this.fpbState_mc[frame][mc + i]._width = w; this.fpbState_mc[frame][mc + i]._height = h; this.fpbState_mc[frame][mc + i]._x = x1 - b; this.fpbState_mc[frame][mc + i]._y = y1 - b; i++; } }; FPushButtonClass.prototype.setClickHandler = function (chng, obj) { this.handlerObj = ((arguments.length < 2) ? (this._parent) : (obj)); this.clickHandler = chng; }; FPushButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.clickHandler](this); }; FPushButtonClass.prototype.initContentPos = function (mc) { this.incrVal = 1; this.initx = this[mc]._x - (this.getBtnState() * this.incrVal); this.inity = this[mc]._y - (this.getBtnState() * this.incrVal); this.togx = this.initx + this.incrVal; this.togy = this.inity + this.incrVal; }; FPushButtonClass.prototype.setBtnState = function (state) { this.btnState = state; if (state) { this.fLabel_mc._x = this.togx; this.fLabel_mc._y = this.togy; } else { this.fLabel_mc._x = this.initx; this.fLabel_mc._y = this.inity; } }; FPushButtonClass.prototype.getBtnState = function () { return(this.btnState); }; FPushButtonClass.prototype.myOnSetFocus = function () { this.focused = true; super.myOnSetFocus(); }; FPushButtonClass.prototype.onPress = function () { this.pressFocus(); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); this.setBtnState(true); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FPushButtonClass.prototype.onRelease = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); this.executeCallBack(); this.setBtnState(false); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FPushButtonClass.prototype.onRollOver = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); }; FPushButtonClass.prototype.onRollOut = function () { this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onReleaseOutside = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOut = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOver = function () { this.setBtnState(true); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); }; FPushButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this.pressOnce == undefined)) { this.onPress(); this.pressOnce = 1; } }; FPushButtonClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.onRelease(); this.pressOnce = undefined; } }; FPushButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_PUSHBUTTON); }; FPushButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FPushButtonClass.prototype.get_accState = function (childId) { if (this.pressOnce) { return(this.master.STATE_SYSTEM_PRESSED); } return(this.master.STATE_SYSTEM_DEFAULT); }; FPushButtonClass.prototype.get_accDefaultAction = function (childId) { return("Press"); }; FPushButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.onPress(); this.master.onRelease(); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 57 MovieClip [squares2] Frame 121
gotoAndPlay (61);
Symbol 61 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { } else { _root.gotoAndPlay(7); }
Symbol 61 MovieClip Frame 2
gotoAndPlay (1);
Symbol 72 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 360
_root.invincible = 0;
Symbol 72 MovieClip Frame 361
stop();
Symbol 72 MovieClip Frame 720
_root.slower = 0; _root.lead.setVolume(_root.leadvol); _root.bass.setVolume(0);
Symbol 72 MovieClip Frame 721
stop();
Symbol 72 MovieClip Frame 811
stop(); _root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 812
_root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 813
_root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 814
_root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 815
_root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 816
_root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 817
_root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 818
_root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 819
_root.square2._xscale = _root.square2._xscale * 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 72 MovieClip Frame 900
stop();
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 360
_root.evilsquares = 0; _root.goodl.gotoAndPlay(7); _root.goodr.gotoAndPlay(7); _root.goodt.gotoAndPlay(7); _root.goodb.gotoAndPlay(7);
Symbol 81 MovieClip Frame 361
stop();
Symbol 81 MovieClip Frame 720
_root.slower = 0;
Symbol 81 MovieClip Frame 721
stop();
Symbol 81 MovieClip Frame 811
stop(); _root.square2._xscale = _root.square2._xscale / 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 81 MovieClip Frame 812
_root.square2._xscale = _root.square2._xscale / 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 81 MovieClip Frame 813
_root.square2._xscale = _root.square2._xscale / 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 81 MovieClip Frame 814
_root.square2._xscale = _root.square2._xscale / 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 81 MovieClip Frame 815
_root.square2._xscale = _root.square2._xscale / 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 81 MovieClip Frame 816
_root.square2._xscale = _root.square2._xscale / 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 81 MovieClip Frame 817
_root.square2._xscale = _root.square2._xscale / 0.95; _root.square2._yscale = _root.square2._xscale;
Symbol 81 MovieClip Frame 900
stop();
Symbol 85 MovieClip Frame 60
gotoAndPlay (1);
Symbol 85 MovieClip Frame 71
gotoAndPlay (1);
Symbol 89 MovieClip Frame 60
gotoAndPlay (1);
Symbol 90 MovieClip Frame 60
gotoAndPlay (1);
Symbol 91 MovieClip Frame 1
stop();
Symbol 91 MovieClip Frame 6
stop();
Symbol 91 MovieClip Frame 11
stop();
Symbol 95 Button
on (release) { gotoAndPlay (2); } on (rollOver) { playsquare._alpha = 100; playsquare.gotoAndPlay(61); } on (rollOut) { playsquare._alpha = 0; }
Symbol 100 Button
on (rollOver) { playsquare2._alpha = 100; playsquare2.gotoAndPlay(61); } on (rollOut) { playsquare2._alpha = 0; } on (release) { if (_root.music == 1) { _root.bassvol = 0; _root.leadvol = 0; _root.lead.setVolume(0); _root.bass.setVolume(_root.bassvol); musicbutton._alpha = 20; _root.music = 0; } else if (_root.music == 0) { _root.bassvol = 75; _root.leadvol = 100; _root.lead.setVolume(0); _root.bass.setVolume(_root.bassvol); musicbutton._alpha = 100; _root.music = 1; } }
Symbol 103 Button
on (release) { getURL ("http://www.albinoblacksheep.com", "_blank"); } on (rollOver) { playsquare3._alpha = 100; playsquare3.gotoAndPlay(61); } on (rollOut) { playsquare3._alpha = 0; }
Symbol 106 Button
on (release) { gotoAndPlay (2); } on (rollOver) { playsquare2._alpha = 100; playsquare2.gotoAndPlay(61); } on (rollOut) { playsquare2._alpha = 0; }
Symbol 109 Button
on (release) { gotoAndPlay (2); } on (rollOver) { playsquare._alpha = 100; playsquare.gotoAndPlay(61); } on (rollOut) { playsquare._alpha = 0; }
Symbol 110 Button
on (release) { _root.gotoAndPlay(2); } on (rollOver) { _root.playsquare._alpha = 100; _root.playsquare.gotoAndPlay(61); } on (rollOut) { _root.playsquare._alpha = 0; }
Symbol 111 Button
on (release) { _root.gotoAndPlay("helpframe"); } on (rollOver) { _root.playsquare2._alpha = 100; _root.playsquare2.gotoAndPlay(61); } on (rollOut) { _root.playsquare2._alpha = 0; }
Symbol 112 MovieClip Frame 54
stop();
Symbol 114 MovieClip Frame 25
stop();
Symbol 123 MovieClip Frame 30
stop();
Symbol 125 MovieClip Frame 60
stop();

Library Items

Symbol 1 Sound [squarewav]
Symbol 2 Sound [powerupwav]
Symbol 3 Sound [powerdownwav]
Symbol 4 Sound [die]
Symbol 5 Sound [menumusic]
Symbol 6 Sound [gamemusic]
Symbol 7 Sound [buttonover]Used by:95 100 106 109 110 111 113
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClip [fpb_hitArea]Uses:8
Symbol 10 FontUsed by:11
Symbol 11 EditableTextUses:10Used by:12
Symbol 12 MovieClip [FLabelSymbol]Uses:11
Symbol 13 GraphicUsed by:14 15 22 23 28 29 30 31 34 35
Symbol 14 MovieClipUses:13Used by:21
Symbol 15 MovieClipUses:13Used by:21
Symbol 16 GraphicUsed by:17 18 24 25 36 37
Symbol 17 MovieClipUses:16Used by:21
Symbol 18 MovieClipUses:16Used by:21
Symbol 19 GraphicUsed by:20 26 32 38
Symbol 20 MovieClipUses:19Used by:21
Symbol 21 MovieClipUses:14 15 17 18 20Used by:40
Symbol 22 MovieClipUses:13Used by:27
Symbol 23 MovieClipUses:13Used by:27
Symbol 24 MovieClipUses:16Used by:27
Symbol 25 MovieClipUses:16Used by:27
Symbol 26 MovieClipUses:19Used by:27
Symbol 27 MovieClipUses:22 23 24 25 26Used by:40
Symbol 28 MovieClipUses:13Used by:33
Symbol 29 MovieClipUses:13Used by:33
Symbol 30 MovieClipUses:13Used by:33
Symbol 31 MovieClipUses:13Used by:33
Symbol 32 MovieClipUses:19Used by:33
Symbol 33 MovieClipUses:28 29 30 31 32Used by:40
Symbol 34 MovieClipUses:13Used by:39
Symbol 35 MovieClipUses:13Used by:39
Symbol 36 MovieClipUses:16Used by:39
Symbol 37 MovieClipUses:16Used by:39
Symbol 38 MovieClipUses:19Used by:39
Symbol 39 MovieClipUses:34 35 36 37 38Used by:40
Symbol 40 MovieClip [fpb_states]Uses:21 27 33 39
Symbol 41 MovieClip [FUIComponentSymbol]
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:45
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClip [FBoundingBoxSymbol]Uses:43 44Used by:48
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:48
Symbol 48 MovieClip [FPushButtonSymbol]Uses:45 47
Symbol 49 FontUsed by:50 51 52 53 54 55 56 60 64 66 68 70 73 75 77 79 82 83 92 93 96 97 98 101 104 107 115 116 117 118 119 120 124
Symbol 50 TextUses:49Used by:57
Symbol 51 TextUses:49Used by:57
Symbol 52 TextUses:49Used by:57
Symbol 53 TextUses:49Used by:57
Symbol 54 TextUses:49Used by:57
Symbol 55 TextUses:49Used by:57
Symbol 56 TextUses:49Used by:57
Symbol 57 MovieClip [squares2]Uses:50 51 52 53 54 55 56Used by:Timeline
Symbol 58 MovieClip [leadmc]Used by:Timeline
Symbol 59 MovieClip [bassmc]Used by:Timeline
Symbol 60 TextUses:49Used by:61
Symbol 61 MovieClipUses:60Used by:Timeline
Symbol 62 GraphicUsed by:72 81
Symbol 63 GraphicUsed by:72 81
Symbol 64 TextUses:49Used by:65
Symbol 65 MovieClipUses:64Used by:72 81
Symbol 66 TextUses:49Used by:67
Symbol 67 MovieClipUses:66Used by:72
Symbol 68 TextUses:49Used by:69
Symbol 69 MovieClipUses:68Used by:72
Symbol 70 TextUses:49Used by:71
Symbol 71 MovieClipUses:70Used by:72
Symbol 72 MovieClipUses:62 63 65 67 69 71Used by:Timeline
Symbol 73 TextUses:49Used by:74
Symbol 74 MovieClipUses:73Used by:81
Symbol 75 TextUses:49Used by:76
Symbol 76 MovieClipUses:75Used by:81
Symbol 77 TextUses:49Used by:78
Symbol 78 MovieClipUses:77Used by:81
Symbol 79 TextUses:49Used by:80
Symbol 80 MovieClipUses:79Used by:81
Symbol 81 MovieClipUses:62 63 74 76 65 78 80Used by:Timeline
Symbol 82 EditableTextUses:49Used by:Timeline
Symbol 83 EditableTextUses:49Used by:Timeline
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:121  Timeline
Symbol 86 GraphicUsed by:87 91
Symbol 87 MovieClipUses:86Used by:121  Timeline
Symbol 88 GraphicUsed by:89 90
Symbol 89 MovieClipUses:88Used by:121  Timeline
Symbol 90 MovieClipUses:88Used by:121  Timeline
Symbol 91 MovieClipUses:86Used by:121  Timeline
Symbol 92 TextUses:49Used by:Timeline
Symbol 93 TextUses:49Used by:95
Symbol 94 GraphicUsed by:95
Symbol 95 ButtonUses:93 94 7Used by:Timeline
Symbol 96 EditableTextUses:49Used by:Timeline
Symbol 97 EditableTextUses:49Used by:Timeline
Symbol 98 TextUses:49Used by:100
Symbol 99 GraphicUsed by:100
Symbol 100 ButtonUses:98 99 7Used by:Timeline
Symbol 101 TextUses:49Used by:103
Symbol 102 GraphicUsed by:103
Symbol 103 ButtonUses:101 102Used by:Timeline
Symbol 104 TextUses:49Used by:106 111 113
Symbol 105 GraphicUsed by:106 111 113
Symbol 106 ButtonUses:104 105 7Used by:112
Symbol 107 TextUses:49Used by:109 110
Symbol 108 GraphicUsed by:109 110
Symbol 109 ButtonUses:107 108 7Used by:112
Symbol 110 ButtonUses:107 108 7Used by:112
Symbol 111 ButtonUses:104 105 7Used by:112
Symbol 112 MovieClipUses:106 109 110 111Used by:Timeline
Symbol 113 ButtonUses:104 105 7Used by:114
Symbol 114 MovieClipUses:113Used by:Timeline
Symbol 115 TextUses:49Used by:121
Symbol 116 TextUses:49Used by:121
Symbol 117 TextUses:49Used by:121
Symbol 118 TextUses:49Used by:121
Symbol 119 TextUses:49Used by:121
Symbol 120 TextUses:49Used by:121
Symbol 121 MovieClipUses:85 87 91 89 90 115 116 117 118 119 120Used by:123
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:121 122Used by:Timeline
Symbol 124 TextUses:49Used by:125
Symbol 125 MovieClipUses:124Used by:Timeline

Instance Names

"bassmc"Frame 1Symbol 59 MovieClip [bassmc]
"leadmc"Frame 1Symbol 58 MovieClip [leadmc]
"powerups"Frame 2Symbol 72 MovieClip
"powerdowns"Frame 2Symbol 81 MovieClip
"square2"Frame 2Symbol 85 MovieClip
"enemyr"Frame 2Symbol 87 MovieClip
"enemyl"Frame 2Symbol 87 MovieClip
"enemyt"Frame 2Symbol 87 MovieClip
"enemyb"Frame 2Symbol 87 MovieClip
"powerup"Frame 2Symbol 89 MovieClip
"goodb"Frame 2Symbol 91 MovieClip
"goodt"Frame 2Symbol 91 MovieClip
"goodl"Frame 2Symbol 91 MovieClip
"goodr"Frame 2Symbol 91 MovieClip
"enemyr"Frame 5Symbol 87 MovieClip
"enemyl"Frame 5Symbol 87 MovieClip
"enemyt"Frame 5Symbol 87 MovieClip
"enemyb"Frame 5Symbol 87 MovieClip
"goodb"Frame 5Symbol 91 MovieClip
"goodt"Frame 5Symbol 91 MovieClip
"goodl"Frame 5Symbol 91 MovieClip
"goodr"Frame 5Symbol 91 MovieClip
"totalsquares"Frame 5Symbol 97 EditableText
"playsquare"Frame 5Symbol 85 MovieClip
"musicbutton"Frame 5Symbol 100 Button
"playsquare2"Frame 5Symbol 85 MovieClip
"playsquare3"Frame 5Symbol 85 MovieClip
"playsquare"Frame 6Symbol 85 MovieClip
"playsquare"Frame 7Symbol 85 MovieClip
"playsquare2"Frame 7Symbol 85 MovieClip
"labelField"Symbol 12 MovieClip [FLabelSymbol] Frame 1Symbol 11 EditableText
"frame1"Symbol 21 MovieClip Frame 1Symbol 14 MovieClip
"frame2"Symbol 21 MovieClip Frame 1Symbol 15 MovieClip
"frame3"Symbol 21 MovieClip Frame 1Symbol 17 MovieClip
"frame4"Symbol 21 MovieClip Frame 1Symbol 18 MovieClip
"frame5"Symbol 21 MovieClip Frame 1Symbol 20 MovieClip
"frame1"Symbol 27 MovieClip Frame 1Symbol 22 MovieClip
"frame2"Symbol 27 MovieClip Frame 1Symbol 23 MovieClip
"frame3"Symbol 27 MovieClip Frame 1Symbol 24 MovieClip
"frame4"Symbol 27 MovieClip Frame 1Symbol 25 MovieClip
"frame5"Symbol 27 MovieClip Frame 1Symbol 26 MovieClip
"frame1"Symbol 33 MovieClip Frame 1Symbol 28 MovieClip
"frame2"Symbol 33 MovieClip Frame 1Symbol 29 MovieClip
"frame3"Symbol 33 MovieClip Frame 1Symbol 30 MovieClip
"frame4"Symbol 33 MovieClip Frame 1Symbol 31 MovieClip
"frame5"Symbol 33 MovieClip Frame 1Symbol 32 MovieClip
"frame1"Symbol 39 MovieClip Frame 1Symbol 34 MovieClip
"frame2"Symbol 39 MovieClip Frame 1Symbol 35 MovieClip
"frame3"Symbol 39 MovieClip Frame 1Symbol 36 MovieClip
"frame4"Symbol 39 MovieClip Frame 1Symbol 37 MovieClip
"frame5"Symbol 39 MovieClip Frame 1Symbol 38 MovieClip
"up_mc"Symbol 40 MovieClip [fpb_states] Frame 1Symbol 21 MovieClip
"over_mc"Symbol 40 MovieClip [fpb_states] Frame 2Symbol 27 MovieClip
"down_mc"Symbol 40 MovieClip [fpb_states] Frame 3Symbol 33 MovieClip
"disabled_mc"Symbol 40 MovieClip [fpb_states] Frame 4Symbol 39 MovieClip
"boundingBox"Symbol 45 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 43 MovieClip
"boundingBox2"Symbol 45 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 43 MovieClip
"boundingBox_mc"Symbol 48 MovieClip [FPushButtonSymbol] Frame 1Symbol 45 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 48 MovieClip [FPushButtonSymbol] Frame 1Symbol 47 MovieClip
"playbutton"Symbol 112 MovieClip Frame 39Symbol 109 Button
"playbutton"Symbol 112 MovieClip Frame 53Symbol 110 Button

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "squarewav"
ExportAssets (56)Timeline Frame 1Symbol 2 as "powerupwav"
ExportAssets (56)Timeline Frame 1Symbol 3 as "powerdownwav"
ExportAssets (56)Timeline Frame 1Symbol 4 as "die"
ExportAssets (56)Timeline Frame 1Symbol 5 as "menumusic"
ExportAssets (56)Timeline Frame 1Symbol 6 as "gamemusic"
ExportAssets (56)Timeline Frame 1Symbol 7 as "buttonover"
ExportAssets (56)Timeline Frame 1Symbol 9 as "fpb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 12 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 40 as "fpb_states"
ExportAssets (56)Timeline Frame 1Symbol 41 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 45 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 48 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 57 as "squares2"
ExportAssets (56)Timeline Frame 1Symbol 58 as "leadmc"
ExportAssets (56)Timeline Frame 1Symbol 59 as "bassmc"
ExportAssets (56)Timeline Frame 1Symbol 59 as "bassmc"
ExportAssets (56)Timeline Frame 1Symbol 58 as "leadmc"
ExportAssets (56)Timeline Frame 2Symbol 59 as "bassmc"
ExportAssets (56)Timeline Frame 2Symbol 58 as "leadmc"
ExportAssets (56)Timeline Frame 3Symbol 59 as "bassmc"
ExportAssets (56)Timeline Frame 3Symbol 58 as "leadmc"
ExportAssets (56)Timeline Frame 4Symbol 59 as "bassmc"
ExportAssets (56)Timeline Frame 4Symbol 58 as "leadmc"
ExportAssets (56)Timeline Frame 5Symbol 7 as "buttonover"
ExportAssets (56)Timeline Frame 5Symbol 7 as "buttonover"
ExportAssets (56)Timeline Frame 5Symbol 59 as "bassmc"
ExportAssets (56)Timeline Frame 5Symbol 58 as "leadmc"
ExportAssets (56)Timeline Frame 6Symbol 7 as "buttonover"
ExportAssets (56)Timeline Frame 6Symbol 7 as "buttonover"
ExportAssets (56)Timeline Frame 6Symbol 7 as "buttonover"
ExportAssets (56)Timeline Frame 6Symbol 7 as "buttonover"
ExportAssets (56)Timeline Frame 6Symbol 7 as "buttonover"
ExportAssets (56)Timeline Frame 6Symbol 59 as "bassmc"
ExportAssets (56)Timeline Frame 6Symbol 58 as "leadmc"
ExportAssets (56)Timeline Frame 7Symbol 57 as "squares2"
ExportAssets (56)Timeline Frame 7Symbol 59 as "bassmc"
ExportAssets (56)Timeline Frame 7Symbol 58 as "leadmc"

Labels

"gameover"Frame 5
"helpframe"Frame 6
#"Symbol_10"Symbol 9 MovieClip [fpb_hitArea] Frame 1
"Symbol_32"Symbol 12 MovieClip [FLabelSymbol] Frame 1
"up"Symbol 40 MovieClip [fpb_states] Frame 1
"over"Symbol 40 MovieClip [fpb_states] Frame 2
"down"Symbol 40 MovieClip [fpb_states] Frame 3
"disabled"Symbol 40 MovieClip [fpb_states] Frame 4
"Symbol_36"Symbol 41 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 45 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 45 MovieClip [FBoundingBoxSymbol] Frame 2

Dynamic Text Variables

intscoreSymbol 82 EditableText""
numsquaresSymbol 83 EditableText""
intscoreSymbol 96 EditableText""
totalsquaresSymbol 97 EditableText""




http://swfchan.com/2/7190/info.shtml
Created: 12/8 -2019 04:02:36 Last modified: 12/8 -2019 04:02:36 Server time: 18/04 -2024 22:18:18