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

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

Bubblewrap.swf

This is the info page for
Flash #20639

(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>

000

Total:

Total:

Popped:

Auto-Timer:

0

00

00

000

:

.

000

0

00

00

000

:

.

You popped the bubbles
in some amount of time
with or without Manic Mode!

000

0

00

00

000

:

.

<P ALIGN="LEFT"><FONT FACE="CAC Moose" SIZE="17" COLOR="#3366CC">Help with &quot;Buddy Bubbles&quot;</FONT></P><P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="12" COLOR="#3366CC">As you may know from reading the <SBR/><FONT COLOR="#695CF7"><A HREF="http://www.virtual-bubblewrap.com/bubbleinfo.shtml" target = "_blank">Diagnostics</A></FONT> page, Buddy Bubbles are <SBR/>joined such that they re-inflate each <SBR/>other. &nbsp;To pop both, you must hold one <SBR/>down while pressing the other. &nbsp;Use &quot;B&quot; <SBR/>on your keyboard to achieve this effect.</FONT></P>

Manic Mode tip
Hold the "Shift" key while
popping to temporarily
enable Manic Mode without
checking the box.

For more information, visit:

ActionScript [AS1/AS2]

Frame 1
function Pop() { } function enableSheet(enable) { if (enable) { onpress = Pop.prototype.onPress; } else { onpress = null; } var col = 0; while (col < bubbleCols) { var row = 0; while (row < bubbleRows) { sheet[(("pr" + row) + "c") + col].onPress = onpress; sheet[(("pr" + row) + "c") + col].useHandCursor = enable; row++; } col++; } } function resetSheet() { numpoppable = (numpopped = (nummanic = 0)); var col = 0; while (col < bubbleCols) { var row = 0; while (row < bubbleRows) { sheet[(("pr" + row) + "c") + col].onLoad(); row++; } col++; } } function restartTimer() { minutes = "00"; seconds = "00"; tenths = "0"; buttonPressTime = (getTimer() / 1000) - pauseLength; pause(); } function pause() { pauseTime = getTimer() / 1000; timing = false; txtMin.setTextFormat(timerOff); txtColon.setTextFormat(timerOff); txtSec.setTextFormat(timerOff); txtDot.setTextFormat(timerOff); txtTen.setTextFormat(timerOff); } function unpause() { unpauseTime = getTimer() / 1000; pauseLength = (unpauseTime - pauseTime) + pauseLength; timing = true; txtMin.setNewTextFormat(timerOn); txtColon.setNewTextFormat(timerOn); txtSec.setNewTextFormat(timerOn); txtDot.setNewTextFormat(timerOn); txtTen.setNewTextFormat(timerOn); txtMin.setTextFormat(timerOn); txtColon.setTextFormat(timerOn); txtSec.setTextFormat(timerOn); txtDot.setTextFormat(timerOn); txtTen.setTextFormat(timerOn); } Math.randomBetween = function (a, b) { return(a + Math.floor(Math.random() * ((b - a) + 1))); }; Pop.prototype = new MovieClip(); Pop.prototype.onLoad = function () { if (this.poppable) { if (Math.randomBetween(1, 300) == 1) { buddycase = Math.randomBetween(1, 3); switch (buddycase) { case 1 : buddyc = this.c - 1; buddyr = this.r; break; case 2 : buddyc = this.c; buddyr = this.r - 1; if ((this.r % 2) == 0) { buddyc--; } break; case 3 : buddyc = this.c + 1; buddyr = this.r - 1; if ((this.r % 2) != 0) { break; } buddyc--; } if (sheet[(("pr" + buddyr) + "c") + buddyc].poppable) { this.buddy = (("pr" + buddyr) + "c") + buddyc; sheet[(("pr" + buddyr) + "c") + buddyc].buddy = (("pr" + this.r) + "c") + this.c; } } else { this.buddy = null; } this.gotoAndStop(Math.randombetween(1, 6)); numpoppable++; } else { this.gotoAndStop(Math.randombetween(10, 15)); } }; Pop.prototype.onPress = function (manic) { if (this._currentframe < 10) { this.gotoAndStop(Math.randomBetween(10, 15)); specialrandom = Math.randomBetween(1, 2000); if (((this.buddy != null) && (!Key.isDown(66))) && (sheet[this.buddy]._currentFrame >= 10)) { sheet[this.buddy].gotoAndStop(Math.randomBetween(1, 6)); buddysound.start(); numpopped--; if (manic) { nummanic--; } } else if ((specialrandom < 5) && (!manic)) { specialsound[specialrandom].start(); } else if (specialrandom == 5) { fartx = this._x; farty = this._y; fartinst = ("inst" + fartx) + farty; sheet.attachMovie("fart", fartinst, numpoppable * 2, {_x:fartx, _y:farty}); } else { popsound[Math.randomBetween(1, 9)].start(); } numpopped++; if (numpopped == 1) { unpause(); } if (manic) { nummanic++; } if (numpopped == numpoppable) { pause(); _root.play(); } } }; Pop.prototype.onRollOver = function () { if (Key.isDown(16) || (chkManic.getValue())) { this.onPress(true); } }; Pop.prototype.poppable = true; Pop.prototype.buddy = null; Pop.prototype.r = (Pop.prototype.c = 0); Object.registerClass("Pop", Pop); var startx = 2; var starty = 8; var xPitch = 33; var yPitch = 29; timerOn = new TextFormat(); timerOff = new TextFormat(); timerOn.color = 34816; timerOff.color = 16711680 /* 0xFF0000 */; var bubbleCols = (Math.round(sheet._width / xPitch) + 1); var bubbleRows = (Math.round(sheet._height / yPitch) + 1); popsound = new Array(); var n = 1; while (n < 10) { popsound[n] = new Sound(); popsound[n].attachSound("bw-pop" + n); n++; } specialsound = new Array(); var n = 1; while (n < 5) { specialsound[n] = new Sound(); n++; } specialsound[1].attachSound("aroogalong"); specialsound[2].attachSound("flush3"); specialsound[3].attachSound("splash"); specialsound[4].attachSound("splat"); buddysound = new Sound(); buddysound.attachSound("buddyswap"); if (!bubblesmade) { numpoppable = (numpopped = (nummanic = 0)); var col = 0; while (col < bubbleCols) { var row = 0; while (row < bubbleRows) { var x = ((col * xPitch) + startx); if ((row % 2) != 0) { x = x + (xPitch / 2); } var y = ((row * yPitch) + starty); sheet.attachMovie("Pop", (("pr" + row) + "c") + col, (bubbleCols * row) + col, {_x:x, _y:y, r:row, c:col}); newBubble = sheet[(("pr" + row) + "c") + col]; if ((((newBubble.getBounds(sheetmask).xMax > sheetmask._width) || (newBubble.getBounds(sheetmask).xMin < 0)) || (newBubble.getBounds(sheetmask).yMax > sheetmask._height)) || (newBubble.getBounds(sheetmask).yMin < 0)) { newBubble.poppable = false; } row++; } col++; } bubblesmade = true; } _root.onEnterFrame = function () { totalTime = (getTimer() / 1000) - pauseLength; goTime = totalTime - buttonPressTime; if (timing) { hours = Math.floor(goTime / 3600); minutes = Math.floor(((goTime / 3600) - hours) * 60); seconds = Math.floor(((((goTime / 3600) - hours) * 60) - minutes) * 60); tenths = Math.floor((gotime - ((seconds + (minutes * 60)) + (hours * 3600))) * 10); minutes = minutes + (hours * 60); if (seconds < 10) { seconds = "0" + seconds; } if (minutes < 10) { minutes = "0" + minutes; } if (minutes == "99") { if (seconds == "59") { if ((tenths = "9")) { pause(); _root.play(); } } } } }; stop();
Instance of Symbol 112 MovieClip [FCheckBoxSymbol] "chkManic" in Frame 1
//component parameters onClipEvent (initialize) { label = ""; initialValue = false; labelPlacement = "right"; changeHandler = ""; }
Frame 5
enableSheet(false); if (numpopped == 1) { bubplural = ""; } else { bubplural = "s"; } popreport = (("You popped " + numpopped) + " bubble") + bubplural; mintext = new String(minutes); if (mintext.charAt(0) == "0") { mintext = mintext.slice(1); } if (mintext == "1") { minplural = ""; } else { minplural = "s"; } sectext = new String(seconds); tentext = new String(tenths); if (sectext.charAt(0) == "0") { sectext = sectext.slice(1); } if ((sectext == "1") && (tentext == "0")) { secplural = ""; } else { secplural = "s"; } if (mintext != "0") { minreport = (mintext + " minute") + minplural; } else { minreport = ""; } if (minreport != "") { secreport = " and " + sectext; } else { secreport = sectext; } if (tentext != "0") { secreport = secreport + ("." + tentext); } secreport = secreport + (" second" + secplural); if ((minreport == "") && (tenths == "0")) { secreport = secreport + " flat"; } if ((sectext == "0") && (tentext == "0")) { secreport = " flat"; } timereport = ("in " + minreport) + secreport; if (((minutes == 99) && (seconds == 59)) && (tenths == 9)) { timereport = "and ran out the timer"; } if (nummanic == 0) { manicreport = "without using "; } else if (nummanic == numpopped) { manicreport = "using "; } else { manicreport = ("with " + Math.round((100 * nummanic) / numpopped)) + "% use of "; } manicreport = manicreport + "Manic Mode!"; youpopped = (((popreport + newline) + timereport) + newline) + manicreport; stop();
Frame 10
enableSheet(false); stop();
Symbol 26 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 29 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 32 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 34 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 37 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 40 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "check");
Symbol 41 MovieClip [fcb_states] Frame 1
stop();
Symbol 41 MovieClip [fcb_states] Frame 2
stop();
Symbol 41 MovieClip [fcb_states] Frame 3
stop();
Symbol 41 MovieClip [fcb_states] Frame 4
stop();
Symbol 41 MovieClip [fcb_states] Frame 5
stop();
Symbol 41 MovieClip [fcb_states] Frame 6
stop();
Symbol 45 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 53 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 59 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 65 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 71 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 72 MovieClip [fpb_states] Frame 1
stop();
Symbol 72 MovieClip [fpb_states] Frame 2
stop();
Symbol 72 MovieClip [fpb_states] Frame 3
stop();
Symbol 72 MovieClip [fpb_states] Frame 4
stop();
Symbol 73 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 76 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 76 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 79 MovieClip [FPushButtonSymbol] Frame 1
#initclip 4 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 104 MovieClip [Pop] Frame 1
stop();
Symbol 104 MovieClip [Pop] Frame 2
stop();
Symbol 104 MovieClip [Pop] Frame 3
stop();
Symbol 104 MovieClip [Pop] Frame 4
stop();
Symbol 104 MovieClip [Pop] Frame 5
stop();
Symbol 104 MovieClip [Pop] Frame 6
stop();
Symbol 104 MovieClip [Pop] Frame 10
stop();
Symbol 104 MovieClip [Pop] Frame 11
stop();
Symbol 104 MovieClip [Pop] Frame 12
stop();
Symbol 104 MovieClip [Pop] Frame 13
stop();
Symbol 104 MovieClip [Pop] Frame 14
stop();
Symbol 104 MovieClip [Pop] Frame 15
stop();
Symbol 109 MovieClip [fart] Frame 18
stop(); unloadMovie (this);
Symbol 112 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 3 function FCheckBoxClass() { this.init(); } FCheckBoxClass.prototype = new FUIComponentClass(); Object.registerClass("FCheckBoxSymbol", FCheckBoxClass); FCheckBoxClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1); this.attachMovie("fcb_states", "fcb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this.setChangeHandler(this.changeHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.initialValue == undefined) { this.setCheckState(false); } else { this.setCheckState(this.initialValue); } if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_CHECKBUTTON = 44; this.STATE_SYSTEM_CHECKED = 16; 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; }; FCheckBoxClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var halfLabelH = (this.fLabel_mc._height / 2); var halfFrameH = (this.fcb_states_mc._height / 2); var vertCenter = (halfFrameH - halfLabelH); var checkWidth = this.fcb_states_mc._width; var frame = this.fcb_states_mc; var label = this.fLabel_mc; var w = 0; if (frame._width > this.width) { w = 0; } else { w = this.width - frame._width; } this.fLabel_mc.setSize(w); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.fcb_states_mc._x = 0; this.fLabel_mc._x = checkWidth; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.fcb_states_mc._x = this.width - checkWidth; this.txtFormat("right"); } this.fLabel_mc._y = vertCenter; this.fcb_hitArea_mc._y = vertCenter; }; FCheckBoxClass.prototype.txtFormat = function (pos) { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = pos)) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 0)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 0)) : 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); }; FCheckBoxClass.prototype.setHitArea = function (w, h) { var hit = this.fcb_hitArea_mc; this.hitArea = hit; if (this.fcb_states_mc._width > w) { hit._width = this.fcb_states_mc._width; } else { hit._width = w; } hit._visible = false; if (arguments.length > 1) { hit._height = h; } }; FCheckBoxClass.prototype.setSize = function (w) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.fcb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FCheckBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 1); }; FCheckBoxClass.prototype.onPress = function () { this.pressFocus(); _root.focusRect.removeMovieClip(); var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedPress"); } else { states.gotoAndStop("press"); } }; FCheckBoxClass.prototype.onRelease = function () { this.fcb_states_mc.gotoAndStop("up"); this.setValue(!this.checked); }; FCheckBoxClass.prototype.onReleaseOutside = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedEnabled"); } else { states.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOut = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedEnabled"); } else { states.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOver = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedPress"); } else { states.gotoAndStop("press"); } }; FCheckBoxClass.prototype.setValue = function (checkedValue) { if (checkedValue || (checkedValue == undefined)) { this.setCheckState(checkedValue); } else if (checkedValue == false) { this.setCheckState(checkedValue); } this.executeCallBack(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FCheckBoxClass.prototype.setCheckState = function (checkedValue) { var states = this.fcb_states_mc; if (this.enable) { this.flabel_mc.setEnabled(true); if (checkedValue || (checkedValue == undefined)) { states.gotoAndStop("checkedEnabled"); this.enabled = true; this.checked = true; } else { states.gotoAndStop("up"); this.enabled = true; this.checked = false; } } else { this.flabel_mc.setEnabled(false); if (checkedValue || (checkedValue == undefined)) { states.gotoAndStop("checkedDisabled"); this.enabled = false; this.checked = true; } else { states.gotoAndStop("uncheckedDisabled"); this.enabled = false; this.checked = false; this.focusRect.removeMovieClip(); } } }; FCheckBoxClass.prototype.getValue = function () { return(this.checked); }; FCheckBoxClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; Super.setEnabled(true); } else { this.enable = false; Super.setEnabled(false); } this.setCheckState(this.checked); }; FCheckBoxClass.prototype.getEnabled = function () { return(this.enable); }; FCheckBoxClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FCheckBoxClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FCheckBoxClass.prototype.setTextColor = function (color) { this.fLabel_mc.labelField.textColor = color; }; FCheckBoxClass.prototype.myOnKeyDown = function () { if (((Key.getCode() == 32) && (this.pressOnce == undefined)) && (this.enabled == true)) { this.setValue(!this.getValue()); this.pressOnce = true; } }; FCheckBoxClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.pressOnce = undefined; } }; FCheckBoxClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_CHECKBUTTON); }; FCheckBoxClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FCheckBoxClass.prototype.get_accState = function (childId) { if (this.master.getValue()) { return(this.master.STATE_SYSTEM_CHECKED); } return(0); }; FCheckBoxClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getValue()) { return("UnCheck"); } return("Check"); }; FCheckBoxClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 117 Button
on (release) { click = new Sound(); click.attachSound("must-have-more"); click.start(); resetSheet(); restartTimer(); }
Symbol 121 Button
on (release) { pause(); _root.gotoAndStop(10); }
Symbol 139 Button
on (release) { click = new Sound(); click.attachSound("must-have-more"); click.start(); _root.gotoAndStop(1); enableSheet(true); restartTimer(); resetSheet(); }
Symbol 140 Button
on (release) { _root.gotoAndStop(10); }
Symbol 156 Button
on (press) { click = new Sound(); click.attachSound("must-have-more"); click.start(); _root.gotoAndStop(1); enableSheet(true); restartTimer(); resetSheet(); }
Symbol 158 Button
on (release) { if (numpopped != numpoppable) { _root.gotoAndStop(1); enableSheet(true); if (numpopped > 0) { unpause(); } else { restartTimer(); } } else { _root.gotoAndStop(5); } }
Symbol 173 Button
on (release) { getURL ("http://www.virtual-bubblewrap.com/about.shtml", "_top"); }
Symbol 176 Button
on (release) { if (numpopped != numpoppable) { _root.gotoAndStop(1); enableSheet(true); if (numpopped > 0) { unpause(); } else { restartTimer(); } } else { _root.gotoAndStop(5); } }

Library Items

Symbol 1 Sound [splat]
Symbol 2 Sound [splash]
Symbol 3 Sound [must-have-more]
Symbol 4 Sound [flush3]
Symbol 5 Sound [bw-pop9]
Symbol 6 Sound [bw-pop8]
Symbol 7 Sound [bw-pop7]
Symbol 8 Sound [bw-pop6]
Symbol 9 Sound [bw-pop5]
Symbol 10 Sound [bw-pop4]
Symbol 11 Sound [bw-pop3]
Symbol 12 Sound [bw-pop2]
Symbol 13 Sound [bw-pop1]
Symbol 14 Sound [buddyswap]
Symbol 15 Sound [aroogalong]
Symbol 16 GraphicUsed by:17 42
Symbol 17 MovieClip [fcb_hitArea]Uses:16
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:26
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:26
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:26
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:24Used by:26
Symbol 26 MovieClipUses:19 21 23 25Used by:41
Symbol 27 GraphicUsed by:28 74
Symbol 28 MovieClipUses:27Used by:29
Symbol 29 MovieClipUses:28Used by:41
Symbol 30 GraphicUsed by:31 33 49 50 56 57 68 69
Symbol 31 MovieClipUses:30Used by:32
Symbol 32 MovieClipUses:31Used by:41
Symbol 33 MovieClipUses:30Used by:34
Symbol 34 MovieClipUses:33Used by:41
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:37
Symbol 37 MovieClipUses:36Used by:41
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:40
Symbol 40 MovieClipUses:39Used by:41
Symbol 41 MovieClip [fcb_states]Uses:26 29 32 34 37 40
Symbol 42 MovieClip [fpb_hitArea]Uses:16
Symbol 43 FontUsed by:44
Symbol 44 EditableTextUses:43Used by:45
Symbol 45 MovieClip [FLabelSymbol]Uses:44
Symbol 46 GraphicUsed by:47 48 54 55 60 61 62 63 66 67
Symbol 47 MovieClipUses:46Used by:53
Symbol 48 MovieClipUses:46Used by:53
Symbol 49 MovieClipUses:30Used by:53
Symbol 50 MovieClipUses:30Used by:53
Symbol 51 GraphicUsed by:52 58 64 70
Symbol 52 MovieClipUses:51Used by:53
Symbol 53 MovieClipUses:47 48 49 50 52Used by:72
Symbol 54 MovieClipUses:46Used by:59
Symbol 55 MovieClipUses:46Used by:59
Symbol 56 MovieClipUses:30Used by:59
Symbol 57 MovieClipUses:30Used by:59
Symbol 58 MovieClipUses:51Used by:59
Symbol 59 MovieClipUses:54 55 56 57 58Used by:72
Symbol 60 MovieClipUses:46Used by:65
Symbol 61 MovieClipUses:46Used by:65
Symbol 62 MovieClipUses:46Used by:65
Symbol 63 MovieClipUses:46Used by:65
Symbol 64 MovieClipUses:51Used by:65
Symbol 65 MovieClipUses:60 61 62 63 64Used by:72
Symbol 66 MovieClipUses:46Used by:71
Symbol 67 MovieClipUses:46Used by:71
Symbol 68 MovieClipUses:30Used by:71
Symbol 69 MovieClipUses:30Used by:71
Symbol 70 MovieClipUses:51Used by:71
Symbol 71 MovieClipUses:66 67 68 69 70Used by:72
Symbol 72 MovieClip [fpb_states]Uses:53 59 65 71
Symbol 73 MovieClip [FUIComponentSymbol]
Symbol 74 MovieClipUses:27Used by:76
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClip [FBoundingBoxSymbol]Uses:74 75Used by:79 112
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:79
Symbol 79 MovieClip [FPushButtonSymbol]Uses:76 78
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:104
Symbol 82 BitmapUsed by:83
Symbol 83 GraphicUses:82Used by:104
Symbol 84 BitmapUsed by:85
Symbol 85 GraphicUses:84Used by:104
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:104
Symbol 88 BitmapUsed by:89
Symbol 89 GraphicUses:88Used by:104
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:104
Symbol 92 BitmapUsed by:93
Symbol 93 GraphicUses:92Used by:104
Symbol 94 BitmapUsed by:95
Symbol 95 GraphicUses:94Used by:104
Symbol 96 BitmapUsed by:97
Symbol 97 GraphicUses:96Used by:104
Symbol 98 BitmapUsed by:99
Symbol 99 GraphicUses:98Used by:104
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:104
Symbol 102 BitmapUsed by:103
Symbol 103 GraphicUses:102Used by:104
Symbol 104 MovieClip [Pop]Uses:81 83 85 87 89 91 93 95 97 99 101 103
Symbol 105 SoundUsed by:109
Symbol 106 ShapeTweeningUsed by:109
Symbol 107 ShapeTweeningUsed by:109
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClip [fart]Uses:105 106 107 108
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:112
Symbol 112 MovieClip [FCheckBoxSymbol]Uses:76 111Used by:Timeline
Symbol 113 GraphicUsed by:117 139
Symbol 114 GraphicUsed by:117 139
Symbol 115 GraphicUsed by:117 139
Symbol 116 GraphicUsed by:117 139
Symbol 117 ButtonUses:113 114 115 116Used by:Timeline
Symbol 118 GraphicUsed by:Timeline
Symbol 119 BitmapUsed by:120
Symbol 120 GraphicUses:119Used by:121 140 158
Symbol 121 ButtonUses:120Used by:Timeline
Symbol 122 FontUsed by:123 124 125 126 127 132 141 145 159 163 167 168
Symbol 123 EditableTextUses:122Used by:Timeline
Symbol 124 TextUses:122Used by:Timeline
Symbol 125 TextUses:122Used by:Timeline
Symbol 126 TextUses:122Used by:Timeline
Symbol 127 TextUses:122Used by:Timeline
Symbol 128 FontUsed by:129 130 131 133 134 142 143 144 146 147 160 161 162 164 165
Symbol 129 EditableTextUses:128Used by:Timeline
Symbol 130 EditableTextUses:128Used by:Timeline
Symbol 131 EditableTextUses:128Used by:Timeline
Symbol 132 EditableTextUses:122Used by:Timeline
Symbol 133 EditableTextUses:128Used by:Timeline
Symbol 134 EditableTextUses:128Used by:Timeline
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:137
Symbol 137 MovieClipUses:136Used by:Timeline
Symbol 138 GraphicUsed by:Timeline
Symbol 139 ButtonUses:113 114 115 116Used by:Timeline
Symbol 140 ButtonUses:120Used by:Timeline
Symbol 141 EditableTextUses:122Used by:Timeline
Symbol 142 EditableTextUses:128Used by:Timeline
Symbol 143 EditableTextUses:128Used by:Timeline
Symbol 144 EditableTextUses:128Used by:Timeline
Symbol 145 EditableTextUses:122Used by:Timeline
Symbol 146 EditableTextUses:128Used by:Timeline
Symbol 147 EditableTextUses:128Used by:Timeline
Symbol 148 GraphicUsed by:Timeline
Symbol 149 GraphicUsed by:Timeline
Symbol 150 GraphicUsed by:Timeline
Symbol 151 FontUsed by:152 167 168 169
Symbol 152 EditableTextUses:151Used by:Timeline
Symbol 153 GraphicUsed by:156
Symbol 154 GraphicUsed by:156
Symbol 155 GraphicUsed by:156
Symbol 156 ButtonUses:153 154 155Used by:Timeline
Symbol 157 SoundUsed by:Timeline
Symbol 158 ButtonUses:120Used by:Timeline
Symbol 159 EditableTextUses:122Used by:Timeline
Symbol 160 EditableTextUses:128Used by:Timeline
Symbol 161 EditableTextUses:128Used by:Timeline
Symbol 162 EditableTextUses:128Used by:Timeline
Symbol 163 EditableTextUses:122Used by:Timeline
Symbol 164 EditableTextUses:128Used by:Timeline
Symbol 165 EditableTextUses:128Used by:Timeline
Symbol 166 GraphicUsed by:Timeline
Symbol 167 EditableTextUses:151 122Used by:Timeline
Symbol 168 TextUses:151 122Used by:Timeline
Symbol 169 TextUses:151Used by:Timeline
Symbol 170 GraphicUsed by:173
Symbol 171 GraphicUsed by:173
Symbol 172 GraphicUsed by:173
Symbol 173 ButtonUses:170 171 172Used by:Timeline
Symbol 174 GraphicUsed by:176
Symbol 175 GraphicUsed by:176
Symbol 176 ButtonUses:174 175Used by:Timeline

Instance Names

"chkManic"Frame 1Symbol 112 MovieClip [FCheckBoxSymbol]
"txtTen"Frame 1Symbol 129 EditableText
"txtSec"Frame 1Symbol 130 EditableText
"txtMin"Frame 1Symbol 131 EditableText
"txtColon"Frame 1Symbol 133 EditableText
"txtDot"Frame 1Symbol 134 EditableText
"sheetmask"Frame 1Symbol 137 MovieClip
"sheet"Frame 1Symbol 137 MovieClip
"txtTen"Frame 5Symbol 142 EditableText
"txtSec"Frame 5Symbol 143 EditableText
"txtMin"Frame 5Symbol 144 EditableText
"txtColon"Frame 5Symbol 146 EditableText
"txtDot"Frame 5Symbol 147 EditableText
"txtTen"Frame 10Symbol 160 EditableText
"txtSec"Frame 10Symbol 161 EditableText
"txtMin"Frame 10Symbol 162 EditableText
"txtColon"Frame 10Symbol 164 EditableText
"txtDot"Frame 10Symbol 165 EditableText
"highlight3D_mc"Symbol 26 MovieClip Frame 1Symbol 19 MovieClip
"highlight_mc"Symbol 26 MovieClip Frame 1Symbol 21 MovieClip
"shadow_mc"Symbol 26 MovieClip Frame 1Symbol 23 MovieClip
"darkshadow_mc"Symbol 26 MovieClip Frame 1Symbol 25 MovieClip
"background_mc"Symbol 29 MovieClip Frame 1Symbol 28 MovieClip
"background_mc"Symbol 32 MovieClip Frame 1Symbol 31 MovieClip
"background_mc"Symbol 34 MovieClip Frame 1Symbol 33 MovieClip
"check_mc"Symbol 37 MovieClip Frame 1Symbol 36 MovieClip
"check_mc"Symbol 40 MovieClip Frame 1Symbol 39 MovieClip
"fcb_frame_mc"Symbol 41 MovieClip [fcb_states] Frame 1Symbol 26 MovieClip
"frb_frame_mc"Symbol 41 MovieClip [fcb_states] Frame 1Symbol 29 MovieClip
"labelField"Symbol 45 MovieClip [FLabelSymbol] Frame 1Symbol 44 EditableText
"frame1"Symbol 53 MovieClip Frame 1Symbol 47 MovieClip
"frame2"Symbol 53 MovieClip Frame 1Symbol 48 MovieClip
"frame3"Symbol 53 MovieClip Frame 1Symbol 49 MovieClip
"frame4"Symbol 53 MovieClip Frame 1Symbol 50 MovieClip
"frame5"Symbol 53 MovieClip Frame 1Symbol 52 MovieClip
"frame1"Symbol 59 MovieClip Frame 1Symbol 54 MovieClip
"frame2"Symbol 59 MovieClip Frame 1Symbol 55 MovieClip
"frame3"Symbol 59 MovieClip Frame 1Symbol 56 MovieClip
"frame4"Symbol 59 MovieClip Frame 1Symbol 57 MovieClip
"frame5"Symbol 59 MovieClip Frame 1Symbol 58 MovieClip
"frame1"Symbol 65 MovieClip Frame 1Symbol 60 MovieClip
"frame2"Symbol 65 MovieClip Frame 1Symbol 61 MovieClip
"frame3"Symbol 65 MovieClip Frame 1Symbol 62 MovieClip
"frame4"Symbol 65 MovieClip Frame 1Symbol 63 MovieClip
"frame5"Symbol 65 MovieClip Frame 1Symbol 64 MovieClip
"frame1"Symbol 71 MovieClip Frame 1Symbol 66 MovieClip
"frame2"Symbol 71 MovieClip Frame 1Symbol 67 MovieClip
"frame3"Symbol 71 MovieClip Frame 1Symbol 68 MovieClip
"frame4"Symbol 71 MovieClip Frame 1Symbol 69 MovieClip
"frame5"Symbol 71 MovieClip Frame 1Symbol 70 MovieClip
"up_mc"Symbol 72 MovieClip [fpb_states] Frame 1Symbol 53 MovieClip
"over_mc"Symbol 72 MovieClip [fpb_states] Frame 2Symbol 59 MovieClip
"down_mc"Symbol 72 MovieClip [fpb_states] Frame 3Symbol 65 MovieClip
"disabled_mc"Symbol 72 MovieClip [fpb_states] Frame 4Symbol 71 MovieClip
"boundingBox"Symbol 76 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 74 MovieClip
"boundingBox2"Symbol 76 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 74 MovieClip
"boundingBox_mc"Symbol 79 MovieClip [FPushButtonSymbol] Frame 1Symbol 76 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 79 MovieClip [FPushButtonSymbol] Frame 1Symbol 78 MovieClip
"boundingBox_mc"Symbol 112 MovieClip [FCheckBoxSymbol] Frame 1Symbol 76 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 112 MovieClip [FCheckBoxSymbol] Frame 1Symbol 111 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "splat"
ExportAssets (56)Timeline Frame 1Symbol 2 as "splash"
ExportAssets (56)Timeline Frame 1Symbol 3 as "must-have-more"
ExportAssets (56)Timeline Frame 1Symbol 4 as "flush3"
ExportAssets (56)Timeline Frame 1Symbol 5 as "bw-pop9"
ExportAssets (56)Timeline Frame 1Symbol 6 as "bw-pop8"
ExportAssets (56)Timeline Frame 1Symbol 7 as "bw-pop7"
ExportAssets (56)Timeline Frame 1Symbol 8 as "bw-pop6"
ExportAssets (56)Timeline Frame 1Symbol 9 as "bw-pop5"
ExportAssets (56)Timeline Frame 1Symbol 10 as "bw-pop4"
ExportAssets (56)Timeline Frame 1Symbol 11 as "bw-pop3"
ExportAssets (56)Timeline Frame 1Symbol 12 as "bw-pop2"
ExportAssets (56)Timeline Frame 1Symbol 13 as "bw-pop1"
ExportAssets (56)Timeline Frame 1Symbol 14 as "buddyswap"
ExportAssets (56)Timeline Frame 1Symbol 15 as "aroogalong"
ExportAssets (56)Timeline Frame 1Symbol 17 as "fcb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 41 as "fcb_states"
ExportAssets (56)Timeline Frame 1Symbol 42 as "fpb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 45 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 72 as "fpb_states"
ExportAssets (56)Timeline Frame 1Symbol 73 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 76 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 79 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 104 as "Pop"
ExportAssets (56)Timeline Frame 1Symbol 109 as "fart"
ExportAssets (56)Timeline Frame 1Symbol 76 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 2Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 3Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 4Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 5Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 6Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 7Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 8Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 9Symbol 112 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 10Symbol 112 as "FCheckBoxSymbol"

Labels

"up"Symbol 41 MovieClip [fcb_states] Frame 1
"press"Symbol 41 MovieClip [fcb_states] Frame 2
"uncheckedDisabled"Symbol 41 MovieClip [fcb_states] Frame 3
"checkedDisabled"Symbol 41 MovieClip [fcb_states] Frame 4
"checkedPress"Symbol 41 MovieClip [fcb_states] Frame 5
"checkedEnabled"Symbol 41 MovieClip [fcb_states] Frame 6
#"Symbol_10"Symbol 42 MovieClip [fpb_hitArea] Frame 1
"Symbol_32"Symbol 45 MovieClip [FLabelSymbol] Frame 1
"up"Symbol 72 MovieClip [fpb_states] Frame 1
"over"Symbol 72 MovieClip [fpb_states] Frame 2
"down"Symbol 72 MovieClip [fpb_states] Frame 3
"disabled"Symbol 72 MovieClip [fpb_states] Frame 4
"Symbol_36"Symbol 73 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 76 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 76 MovieClip [FBoundingBoxSymbol] Frame 2

Dynamic Text Variables

numpoppedSymbol 123 EditableText"000"
_root.tenthsSymbol 129 EditableText"0"
_root.secondsSymbol 130 EditableText"00"
_root.minutesSymbol 131 EditableText"00"
numpoppableSymbol 132 EditableText"000"
numpoppedSymbol 141 EditableText"000"
_root.tenthsSymbol 142 EditableText"0"
_root.secondsSymbol 143 EditableText"00"
_root.minutesSymbol 144 EditableText"00"
numpoppableSymbol 145 EditableText"000"
youpoppedSymbol 152 EditableText"You popped the bubbles in some amount of time with or without Manic Mode!"
numpoppedSymbol 159 EditableText"000"
_root.tenthsSymbol 160 EditableText"0"
_root.secondsSymbol 161 EditableText"00"
_root.minutesSymbol 162 EditableText"00"
numpoppableSymbol 163 EditableText"000"




http://swfchan.com/5/20639/info.shtml
Created: 29/5 -2019 03:26:27 Last modified: 29/5 -2019 03:26:27 Server time: 04/05 -2024 13:09:08