STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229455 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2574 · P5148 |
This is the info page for Flash #62254 |
<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"> </FONT></P> |
RETRIV |
RETRIV |
RETRIEVAL MISSION |
Begins 0800 Standard other w |
Rescue ID 03 Obtain personnel and return as escort |
Other worldly tran |
03 |
6'5" Aprox 125lbs age 60+ Full Combat Suite Anticipated to be decrepit |
It has been one week since the Surveyor team was supposed to return from the New Earth. I suspect their capture, and wish to attempt their rescue. |
Number Eighty Two , you are my first choice for this delicate matter. You are charged with the recovery of the surviving units in the Surveying Team. |
Eighty-Two has gained the professor's favor, but I will show him that I am more capable than that wench. |
82 |
Ah Eighty-Two, ready as allways. Remember to mark the gate area as soon as you land. In 60 hours, return with the surveyors to that area and I will bring you home. |
You can count on me father. |
One more thing. I'm sick of losing soldiers to the natives, so if you too are captured, I will send the entire army to get you out forcefuly. Now, go, and good luck. |
1km |
CIAO SYSTEM |
CIAO SYSTEM |
ARTIFICIAL OBJECT |
Oh crotch! A town marker! I bet that's where the surveyors are being held! |
To be continued... |
ActionScript [AS1/AS2]
Frame 1if (_framesloaded == _totalframes) { gotoAndPlay (3); }Frame 2gotoAndPlay (1);Frame 3stop();Frame 1680stop();Symbol 5 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; }; #endinitclipSymbol 14 MovieClip Frame 1var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");Symbol 20 MovieClip Frame 1var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");Symbol 26 MovieClip Frame 1var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame4, "shadow"); component.registerSkinElement(frame2, "darkshadow"); component.registerSkinElement(frame3, "highlight"); component.registerSkinElement(frame1, "highlight3D");Symbol 32 MovieClip Frame 1var 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 [fpb_states] Frame 1stop();Symbol 33 MovieClip [fpb_states] Frame 2stop();Symbol 33 MovieClip [fpb_states] Frame 3stop();Symbol 33 MovieClip [fpb_states] Frame 4stop();Symbol 34 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)); }; #endinitclipSymbol 38 MovieClip [FBoundingBoxSymbol] Frame 1var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();Symbol 38 MovieClip [FBoundingBoxSymbol] Frame 2component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();Symbol 41 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 69 Buttonon (release) { gotoAndPlay (4); }Symbol 452 Buttonon (release) { gotoAndPlay (4); }
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip [fpb_hitArea] | Uses:1 | |
Symbol 3 Font | Used by:4 | |
Symbol 4 EditableText | Uses:3 | Used by:5 |
Symbol 5 MovieClip [FLabelSymbol] | Uses:4 | |
Symbol 6 Graphic | Used by:7 8 15 16 21 22 23 24 27 28 | |
Symbol 7 MovieClip | Uses:6 | Used by:14 |
Symbol 8 MovieClip | Uses:6 | Used by:14 |
Symbol 9 Graphic | Used by:10 11 17 18 29 30 44 Timeline | |
Symbol 10 MovieClip | Uses:9 | Used by:14 |
Symbol 11 MovieClip | Uses:9 | Used by:14 |
Symbol 12 Graphic | Used by:13 19 25 31 | |
Symbol 13 MovieClip | Uses:12 | Used by:14 |
Symbol 14 MovieClip | Uses:7 8 10 11 13 | Used by:33 |
Symbol 15 MovieClip | Uses:6 | Used by:20 |
Symbol 16 MovieClip | Uses:6 | Used by:20 |
Symbol 17 MovieClip | Uses:9 | Used by:20 |
Symbol 18 MovieClip | Uses:9 | Used by:20 |
Symbol 19 MovieClip | Uses:12 | Used by:20 |
Symbol 20 MovieClip | Uses:15 16 17 18 19 | Used by:33 |
Symbol 21 MovieClip | Uses:6 | Used by:26 |
Symbol 22 MovieClip | Uses:6 | Used by:26 |
Symbol 23 MovieClip | Uses:6 | Used by:26 |
Symbol 24 MovieClip | Uses:6 | Used by:26 |
Symbol 25 MovieClip | Uses:12 | Used by:26 |
Symbol 26 MovieClip | Uses:21 22 23 24 25 | Used by:33 |
Symbol 27 MovieClip | Uses:6 | Used by:32 |
Symbol 28 MovieClip | Uses:6 | Used by:32 |
Symbol 29 MovieClip | Uses:9 | Used by:32 |
Symbol 30 MovieClip | Uses:9 | Used by:32 |
Symbol 31 MovieClip | Uses:12 | Used by:32 |
Symbol 32 MovieClip | Uses:27 28 29 30 31 | Used by:33 |
Symbol 33 MovieClip [fpb_states] | Uses:14 20 26 32 | |
Symbol 34 MovieClip [FUIComponentSymbol] | ||
Symbol 35 Graphic | Used by:36 | |
Symbol 36 MovieClip | Uses:35 | Used by:38 |
Symbol 37 Graphic | Used by:38 | |
Symbol 38 MovieClip [FBoundingBoxSymbol] | Uses:36 37 | Used by:41 |
Symbol 39 Graphic | Used by:40 | |
Symbol 40 MovieClip | Uses:39 | Used by:41 |
Symbol 41 MovieClip [FPushButtonSymbol] | Uses:38 40 | |
Symbol 42 Graphic | Used by:Timeline | |
Symbol 43 Graphic | Used by:Timeline | |
Symbol 44 MovieClip | Uses:9 | Used by:Timeline |
Symbol 45 Graphic | Used by:46 | |
Symbol 46 MovieClip | Uses:45 | Used by:Timeline |
Symbol 47 Graphic | Used by:Timeline | |
Symbol 48 Graphic | Used by:Timeline | |
Symbol 49 Graphic | Used by:Timeline | |
Symbol 50 Graphic | Used by:65 | |
Symbol 51 Graphic | Used by:65 | |
Symbol 52 Graphic | Used by:65 | |
Symbol 53 Graphic | Used by:65 | |
Symbol 54 Graphic | Used by:65 | |
Symbol 55 Graphic | Used by:65 | |
Symbol 56 Graphic | Used by:65 | |
Symbol 57 Graphic | Used by:65 | |
Symbol 58 Graphic | Used by:65 | |
Symbol 59 Graphic | Used by:65 | |
Symbol 60 Graphic | Used by:65 | |
Symbol 61 Graphic | Used by:65 | |
Symbol 62 Graphic | Used by:65 | |
Symbol 63 Graphic | Used by:65 | |
Symbol 64 Graphic | Used by:65 | |
Symbol 65 MovieClip | Uses:50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | Used by:Timeline |
Symbol 66 Graphic | Used by:69 | |
Symbol 67 Graphic | Used by:69 | |
Symbol 68 Sound | Used by:69 | |
Symbol 69 Button | Uses:66 67 68 | Used by:Timeline |
Symbol 70 Sound | Used by:Timeline | |
Symbol 71 Graphic | Used by:Timeline | |
Symbol 72 Bitmap | Used by:73 | |
Symbol 73 Graphic | Uses:72 | Used by:Timeline |
Symbol 74 Graphic | Used by:Timeline | |
Symbol 75 Font | Used by:76 77 81 82 83 84 85 86 | |
Symbol 76 Text | Uses:75 | Used by:Timeline |
Symbol 77 Text | Uses:75 | Used by:Timeline |
Symbol 78 Graphic | Used by:79 Timeline | |
Symbol 79 Button | Uses:78 | Used by:Timeline |
Symbol 80 Graphic | Used by:Timeline | |
Symbol 81 Text | Uses:75 | Used by:Timeline |
Symbol 82 Text | Uses:75 | Used by:Timeline |
Symbol 83 Text | Uses:75 | Used by:Timeline |
Symbol 84 Text | Uses:75 | Used by:Timeline |
Symbol 85 Text | Uses:75 | Used by:Timeline |
Symbol 86 Text | Uses:75 | Used by:Timeline |
Symbol 87 Text | Used by:Timeline | |
Symbol 88 Graphic | Used by:Timeline | |
Symbol 89 Font | Used by:90 100 116 277 290 299 437 449 | |
Symbol 90 Text | Uses:89 | Used by:Timeline |
Symbol 91 Graphic | Used by:Timeline | |
Symbol 92 Graphic | Used by:Timeline | |
Symbol 93 Graphic | Used by:Timeline | |
Symbol 94 ShapeTweening | Used by:Timeline | |
Symbol 95 ShapeTweening | Used by:Timeline | |
Symbol 96 ShapeTweening | Used by:Timeline | |
Symbol 97 ShapeTweening | Used by:Timeline | |
Symbol 98 ShapeTweening | Used by:Timeline | |
Symbol 99 Graphic | Used by:297 Timeline | |
Symbol 100 Text | Uses:89 | Used by:Timeline |
Symbol 101 Graphic | Used by:Timeline | |
Symbol 102 Graphic | Used by:Timeline | |
Symbol 103 Graphic | Used by:Timeline | |
Symbol 104 Graphic | Used by:Timeline | |
Symbol 105 Graphic | Used by:Timeline | |
Symbol 106 Graphic | Used by:Timeline | |
Symbol 107 Graphic | Used by:Timeline | |
Symbol 108 Graphic | Used by:Timeline | |
Symbol 109 Graphic | Used by:Timeline | |
Symbol 110 Graphic | Used by:Timeline | |
Symbol 111 ShapeTweening | Used by:Timeline | |
Symbol 112 ShapeTweening | Used by:Timeline | |
Symbol 113 Graphic | Used by:Timeline | |
Symbol 114 ShapeTweening | Used by:Timeline | |
Symbol 115 Graphic | Used by:Timeline | |
Symbol 116 Text | Uses:89 | Used by:Timeline |
Symbol 117 Graphic | Used by:Timeline | |
Symbol 118 Graphic | Used by:136 | |
Symbol 119 Graphic | Used by:136 | |
Symbol 120 Graphic | Used by:136 | |
Symbol 121 Graphic | Used by:136 | |
Symbol 122 Graphic | Used by:136 | |
Symbol 123 Graphic | Used by:136 | |
Symbol 124 Graphic | Used by:136 | |
Symbol 125 Graphic | Used by:136 | |
Symbol 126 Graphic | Used by:136 | |
Symbol 127 Graphic | Used by:136 | |
Symbol 128 Graphic | Used by:136 | |
Symbol 129 Graphic | Used by:136 | |
Symbol 130 Graphic | Used by:136 | |
Symbol 131 Graphic | Used by:136 | |
Symbol 132 Graphic | Used by:136 | |
Symbol 133 Graphic | Used by:136 | |
Symbol 134 Graphic | Used by:136 | |
Symbol 135 Graphic | Used by:136 | |
Symbol 136 MovieClip | Uses:118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | Used by:Timeline |
Symbol 137 Graphic | Used by:Timeline | |
Symbol 138 Graphic | Used by:Timeline | |
Symbol 139 Graphic | Used by:140 | |
Symbol 140 MovieClip | Uses:139 | Used by:Timeline |
Symbol 141 Graphic | Used by:Timeline | |
Symbol 142 Graphic | Used by:Timeline | |
Symbol 143 Graphic | Used by:Timeline | |
Symbol 144 Graphic | Used by:Timeline | |
Symbol 145 Graphic | Used by:Timeline | |
Symbol 146 Graphic | Used by:Timeline | |
Symbol 147 Graphic | Used by:Timeline | |
Symbol 148 Graphic | Used by:Timeline | |
Symbol 149 Graphic | Used by:Timeline | |
Symbol 150 Graphic | Used by:Timeline | |
Symbol 151 Sound | Used by:Timeline | |
Symbol 152 Graphic | Used by:Timeline | |
Symbol 153 Graphic | Used by:Timeline | |
Symbol 154 Graphic | Used by:Timeline | |
Symbol 155 Graphic | Used by:Timeline | |
Symbol 156 Graphic | Used by:Timeline | |
Symbol 157 Graphic | Used by:Timeline | |
Symbol 158 Graphic | Used by:Timeline | |
Symbol 159 Graphic | Used by:Timeline | |
Symbol 160 Graphic | Used by:Timeline | |
Symbol 161 Graphic | Used by:Timeline | |
Symbol 162 Graphic | Used by:Timeline | |
Symbol 163 ShapeTweening | Used by:Timeline | |
Symbol 164 Graphic | Used by:Timeline | |
Symbol 165 Graphic | Used by:Timeline | |
Symbol 166 Graphic | Used by:Timeline | |
Symbol 167 Graphic | Used by:Timeline | |
Symbol 168 Graphic | Used by:Timeline | |
Symbol 169 Graphic | Used by:Timeline | |
Symbol 170 Graphic | Used by:Timeline | |
Symbol 171 Graphic | Used by:Timeline | |
Symbol 172 Bitmap | Used by:173 | |
Symbol 173 Graphic | Uses:172 | Used by:Timeline |
Symbol 174 Graphic | Used by:Timeline | |
Symbol 175 Graphic | Used by:Timeline | |
Symbol 176 Graphic | Used by:Timeline | |
Symbol 177 Graphic | Used by:178 | |
Symbol 178 MovieClip | Uses:177 | Used by:Timeline |
Symbol 179 Graphic | Used by:Timeline | |
Symbol 180 Graphic | Used by:Timeline | |
Symbol 181 Graphic | Used by:Timeline | |
Symbol 182 Graphic | Used by:Timeline | |
Symbol 183 Graphic | Used by:Timeline | |
Symbol 184 Graphic | Used by:Timeline | |
Symbol 185 Graphic | Used by:Timeline | |
Symbol 186 Graphic | Used by:Timeline | |
Symbol 187 Graphic | Used by:Timeline | |
Symbol 188 Graphic | Used by:Timeline | |
Symbol 189 Graphic | Used by:Timeline | |
Symbol 190 Graphic | Used by:Timeline | |
Symbol 191 Graphic | Used by:Timeline | |
Symbol 192 Graphic | Used by:Timeline | |
Symbol 193 Graphic | Used by:Timeline | |
Symbol 194 Graphic | Used by:Timeline | |
Symbol 195 Graphic | Used by:Timeline | |
Symbol 196 Graphic | Used by:Timeline | |
Symbol 197 Graphic | Used by:Timeline | |
Symbol 198 Graphic | Used by:Timeline | |
Symbol 199 Graphic | Used by:Timeline | |
Symbol 200 Graphic | Used by:Timeline | |
Symbol 201 Graphic | Used by:Timeline | |
Symbol 202 Graphic | Used by:Timeline | |
Symbol 203 Graphic | Used by:Timeline | |
Symbol 204 Graphic | Used by:Timeline | |
Symbol 205 Graphic | Used by:Timeline | |
Symbol 206 Graphic | Used by:Timeline | |
Symbol 207 Graphic | Used by:Timeline | |
Symbol 208 Graphic | Used by:Timeline | |
Symbol 209 Graphic | Used by:Timeline | |
Symbol 210 Graphic | Used by:Timeline | |
Symbol 211 Graphic | Used by:Timeline | |
Symbol 212 Graphic | Used by:Timeline | |
Symbol 213 Graphic | Used by:Timeline | |
Symbol 214 Graphic | Used by:Timeline | |
Symbol 215 Graphic | Used by:Timeline | |
Symbol 216 Graphic | Used by:Timeline | |
Symbol 217 Graphic | Used by:Timeline | |
Symbol 218 Graphic | Used by:Timeline | |
Symbol 219 Graphic | Used by:Timeline | |
Symbol 220 Graphic | Used by:Timeline | |
Symbol 221 Graphic | Used by:Timeline | |
Symbol 222 Graphic | Used by:Timeline | |
Symbol 223 Graphic | Used by:Timeline | |
Symbol 224 Graphic | Used by:Timeline | |
Symbol 225 Graphic | Used by:Timeline | |
Symbol 226 Graphic | Used by:Timeline | |
Symbol 227 Graphic | Used by:Timeline | |
Symbol 228 Graphic | Used by:Timeline | |
Symbol 229 Graphic | Used by:Timeline | |
Symbol 230 Graphic | Used by:Timeline | |
Symbol 231 Graphic | Used by:Timeline | |
Symbol 232 Graphic | Used by:Timeline | |
Symbol 233 Font | Used by:234 371 419 | |
Symbol 234 Text | Uses:233 | Used by:Timeline |
Symbol 235 Graphic | Used by:255 | |
Symbol 236 Graphic | Used by:255 | |
Symbol 237 Graphic | Used by:255 | |
Symbol 238 Graphic | Used by:255 | |
Symbol 239 Graphic | Used by:255 | |
Symbol 240 Graphic | Used by:255 | |
Symbol 241 Graphic | Used by:255 | |
Symbol 242 Graphic | Used by:255 | |
Symbol 243 Graphic | Used by:255 | |
Symbol 244 Graphic | Used by:255 | |
Symbol 245 Graphic | Used by:255 | |
Symbol 246 Graphic | Used by:255 | |
Symbol 247 Graphic | Used by:255 | |
Symbol 248 Graphic | Used by:255 | |
Symbol 249 Graphic | Used by:255 | |
Symbol 250 Graphic | Used by:255 | |
Symbol 251 Graphic | Used by:255 | |
Symbol 252 Graphic | Used by:255 | |
Symbol 253 Graphic | Used by:255 | |
Symbol 254 Graphic | Used by:255 | |
Symbol 255 MovieClip | Uses:235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | Used by:Timeline |
Symbol 256 Graphic | Used by:Timeline | |
Symbol 257 Graphic | Used by:Timeline | |
Symbol 258 Graphic | Used by:Timeline | |
Symbol 259 Graphic | Used by:Timeline | |
Symbol 260 ShapeTweening | Used by:Timeline | |
Symbol 261 ShapeTweening | Used by:Timeline | |
Symbol 262 Graphic | Used by:Timeline | |
Symbol 263 Graphic | Used by:Timeline | |
Symbol 264 ShapeTweening | Used by:Timeline | |
Symbol 265 ShapeTweening | Used by:Timeline | |
Symbol 266 Graphic | Used by:Timeline | |
Symbol 267 ShapeTweening | Used by:Timeline | |
Symbol 268 ShapeTweening | Used by:Timeline | |
Symbol 269 ShapeTweening | Used by:Timeline | |
Symbol 270 ShapeTweening | Used by:Timeline | |
Symbol 271 Graphic | Used by:Timeline | |
Symbol 272 ShapeTweening | Used by:Timeline | |
Symbol 273 ShapeTweening | Used by:Timeline | |
Symbol 274 ShapeTweening | Used by:Timeline | |
Symbol 275 Graphic | Used by:Timeline | |
Symbol 276 Graphic | Used by:Timeline | |
Symbol 277 Text | Uses:89 | Used by:Timeline |
Symbol 278 Graphic | Used by:Timeline | |
Symbol 279 Graphic | Used by:Timeline | |
Symbol 280 Graphic | Used by:Timeline | |
Symbol 281 Graphic | Used by:Timeline | |
Symbol 282 Graphic | Used by:Timeline | |
Symbol 283 ShapeTweening | Used by:Timeline | |
Symbol 284 ShapeTweening | Used by:Timeline | |
Symbol 285 ShapeTweening | Used by:Timeline | |
Symbol 286 ShapeTweening | Used by:Timeline | |
Symbol 287 ShapeTweening | Used by:Timeline | |
Symbol 288 ShapeTweening | Used by:Timeline | |
Symbol 289 Graphic | Used by:Timeline | |
Symbol 290 Text | Uses:89 | Used by:Timeline |
Symbol 291 Graphic | Used by:Timeline | |
Symbol 292 ShapeTweening | Used by:297 | |
Symbol 293 ShapeTweening | Used by:297 | |
Symbol 294 ShapeTweening | Used by:297 | |
Symbol 295 ShapeTweening | Used by:297 | |
Symbol 296 ShapeTweening | Used by:297 | |
Symbol 297 MovieClip | Uses:292 293 294 295 296 99 | Used by:Timeline |
Symbol 298 Graphic | Used by:Timeline | |
Symbol 299 Text | Uses:89 | Used by:Timeline |
Symbol 300 Graphic | Used by:Timeline | |
Symbol 301 Graphic | Used by:Timeline | |
Symbol 302 Graphic | Used by:Timeline | |
Symbol 303 Graphic | Used by:Timeline | |
Symbol 304 Graphic | Used by:Timeline | |
Symbol 305 Graphic | Used by:Timeline | |
Symbol 306 Graphic | Used by:Timeline | |
Symbol 307 Graphic | Used by:Timeline | |
Symbol 308 Graphic | Used by:Timeline | |
Symbol 309 Graphic | Used by:Timeline | |
Symbol 310 Graphic | Used by:Timeline | |
Symbol 311 Graphic | Used by:Timeline | |
Symbol 312 Graphic | Used by:Timeline | |
Symbol 313 Graphic | Used by:Timeline | |
Symbol 314 Graphic | Used by:Timeline | |
Symbol 315 Graphic | Used by:Timeline | |
Symbol 316 Graphic | Used by:Timeline | |
Symbol 317 Graphic | Used by:Timeline | |
Symbol 318 Graphic | Used by:Timeline | |
Symbol 319 Graphic | Used by:Timeline | |
Symbol 320 Graphic | Used by:Timeline | |
Symbol 321 Graphic | Used by:Timeline | |
Symbol 322 Graphic | Used by:Timeline | |
Symbol 323 Graphic | Used by:Timeline | |
Symbol 324 Graphic | Used by:Timeline | |
Symbol 325 Graphic | Used by:Timeline | |
Symbol 326 Graphic | Used by:Timeline | |
Symbol 327 Graphic | Used by:Timeline | |
Symbol 328 Sound | Used by:Timeline | |
Symbol 329 Graphic | Used by:Timeline | |
Symbol 330 Graphic | Used by:Timeline | |
Symbol 331 Graphic | Used by:Timeline | |
Symbol 332 Graphic | Used by:Timeline | |
Symbol 333 Graphic | Used by:Timeline | |
Symbol 334 Graphic | Used by:Timeline | |
Symbol 335 Graphic | Used by:Timeline | |
Symbol 336 Bitmap | Used by:337 | |
Symbol 337 Graphic | Uses:336 | Used by:Timeline |
Symbol 338 Graphic | Used by:Timeline | |
Symbol 339 Graphic | Used by:427 | |
Symbol 340 Graphic | Used by:427 | |
Symbol 341 Graphic | Used by:370 | |
Symbol 342 Font | Used by:343 | |
Symbol 343 Text | Uses:342 | Used by:370 |
Symbol 344 Graphic | Used by:370 | |
Symbol 345 Graphic | Used by:370 | |
Symbol 346 Graphic | Used by:370 | |
Symbol 347 Graphic | Used by:370 | |
Symbol 348 Graphic | Used by:370 | |
Symbol 349 Graphic | Used by:370 | |
Symbol 350 Graphic | Used by:370 | |
Symbol 351 Graphic | Used by:370 | |
Symbol 352 Graphic | Used by:370 | |
Symbol 353 Graphic | Used by:370 | |
Symbol 354 Graphic | Used by:370 | |
Symbol 355 Graphic | Used by:370 | |
Symbol 356 Graphic | Used by:370 | |
Symbol 357 Graphic | Used by:370 | |
Symbol 358 Graphic | Used by:370 | |
Symbol 359 Graphic | Used by:370 | |
Symbol 360 Graphic | Used by:370 | |
Symbol 361 Graphic | Used by:370 | |
Symbol 362 Graphic | Used by:370 | |
Symbol 363 Graphic | Used by:370 | |
Symbol 364 Graphic | Used by:370 | |
Symbol 365 Graphic | Used by:370 | |
Symbol 366 Graphic | Used by:370 | |
Symbol 367 Graphic | Used by:370 | |
Symbol 368 Graphic | Used by:370 | |
Symbol 369 Graphic | Used by:370 | |
Symbol 370 MovieClip | Uses:341 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 | Used by:427 |
Symbol 371 EditableText | Uses:233 | Used by:427 |
Symbol 372 Graphic | Used by:417 | |
Symbol 373 Graphic | Used by:417 | |
Symbol 374 Graphic | Used by:417 | |
Symbol 375 Graphic | Used by:417 | |
Symbol 376 Graphic | Used by:417 | |
Symbol 377 Graphic | Used by:417 | |
Symbol 378 Graphic | Used by:417 | |
Symbol 379 Graphic | Used by:417 | |
Symbol 380 Graphic | Used by:417 | |
Symbol 381 Graphic | Used by:417 | |
Symbol 382 Graphic | Used by:417 | |
Symbol 383 Graphic | Used by:417 | |
Symbol 384 Graphic | Used by:417 | |
Symbol 385 Graphic | Used by:417 | |
Symbol 386 Graphic | Used by:417 | |
Symbol 387 Graphic | Used by:417 | |
Symbol 388 Graphic | Used by:417 | |
Symbol 389 Graphic | Used by:417 | |
Symbol 390 Graphic | Used by:417 | |
Symbol 391 Graphic | Used by:417 | |
Symbol 392 Graphic | Used by:417 | |
Symbol 393 Graphic | Used by:417 | |
Symbol 394 Graphic | Used by:417 | |
Symbol 395 Graphic | Used by:417 | |
Symbol 396 Graphic | Used by:417 | |
Symbol 397 Graphic | Used by:417 | |
Symbol 398 Graphic | Used by:417 | |
Symbol 399 Graphic | Used by:417 | |
Symbol 400 Graphic | Used by:417 | |
Symbol 401 Graphic | Used by:417 | |
Symbol 402 Graphic | Used by:417 | |
Symbol 403 Graphic | Used by:417 | |
Symbol 404 Graphic | Used by:417 | |
Symbol 405 Graphic | Used by:417 | |
Symbol 406 Graphic | Used by:417 | |
Symbol 407 Graphic | Used by:417 | |
Symbol 408 Graphic | Used by:417 | |
Symbol 409 Graphic | Used by:417 | |
Symbol 410 Graphic | Used by:417 | |
Symbol 411 Graphic | Used by:417 | |
Symbol 412 Graphic | Used by:417 | |
Symbol 413 Graphic | Used by:417 | |
Symbol 414 Graphic | Used by:417 | |
Symbol 415 Graphic | Used by:417 | |
Symbol 416 Graphic | Used by:417 | |
Symbol 417 MovieClip | Uses:372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | Used by:427 |
Symbol 418 Graphic | Used by:427 | |
Symbol 419 EditableText | Uses:233 | Used by:427 |
Symbol 420 Graphic | Used by:427 | |
Symbol 421 Graphic | Used by:427 | |
Symbol 422 Graphic | Used by:426 | |
Symbol 423 Font | Used by:424 | |
Symbol 424 Text | Uses:423 | Used by:425 |
Symbol 425 MovieClip | Uses:424 | Used by:426 |
Symbol 426 MovieClip | Uses:422 425 | Used by:427 |
Symbol 427 MovieClip | Uses:339 340 370 371 417 418 419 420 421 426 | Used by:Timeline |
Symbol 428 Sound | Used by:Timeline | |
Symbol 429 Graphic | Used by:Timeline | |
Symbol 430 Graphic | Used by:Timeline | |
Symbol 431 Graphic | Used by:Timeline | |
Symbol 432 Graphic | Used by:Timeline | |
Symbol 433 Graphic | Used by:434 | |
Symbol 434 MovieClip | Uses:433 | Used by:Timeline |
Symbol 435 Graphic | Used by:436 | |
Symbol 436 MovieClip | Uses:435 | Used by:Timeline |
Symbol 437 Text | Uses:89 | Used by:Timeline |
Symbol 438 Graphic | Used by:Timeline | |
Symbol 439 Bitmap | Used by:440 | |
Symbol 440 Graphic | Uses:439 | Used by:Timeline |
Symbol 441 Graphic | Used by:442 | |
Symbol 442 MovieClip | Uses:441 | Used by:Timeline |
Symbol 443 Graphic | Used by:Timeline | |
Symbol 444 Graphic | Used by:Timeline | |
Symbol 445 Graphic | Used by:Timeline | |
Symbol 446 Graphic | Used by:Timeline | |
Symbol 447 Graphic | Used by:Timeline | |
Symbol 448 Graphic | Used by:Timeline | |
Symbol 449 Text | Uses:89 | Used by:Timeline |
Symbol 450 Graphic | Used by:452 | |
Symbol 451 Graphic | Used by:452 | |
Symbol 452 Button | Uses:450 451 | Used by:Timeline |
Symbol 453 Graphic | Used by:Timeline | |
Symbol 454 Graphic | Used by:Timeline | |
Streaming Sound 1 | Used by:Timeline |
Instance Names
"labelField" | Symbol 5 MovieClip [FLabelSymbol] Frame 1 | Symbol 4 EditableText |
"frame1" | Symbol 14 MovieClip Frame 1 | Symbol 7 MovieClip |
"frame2" | Symbol 14 MovieClip Frame 1 | Symbol 8 MovieClip |
"frame3" | Symbol 14 MovieClip Frame 1 | Symbol 10 MovieClip |
"frame4" | Symbol 14 MovieClip Frame 1 | Symbol 11 MovieClip |
"frame5" | Symbol 14 MovieClip Frame 1 | Symbol 13 MovieClip |
"frame1" | Symbol 20 MovieClip Frame 1 | Symbol 15 MovieClip |
"frame2" | Symbol 20 MovieClip Frame 1 | Symbol 16 MovieClip |
"frame3" | Symbol 20 MovieClip Frame 1 | Symbol 17 MovieClip |
"frame4" | Symbol 20 MovieClip Frame 1 | Symbol 18 MovieClip |
"frame5" | Symbol 20 MovieClip Frame 1 | Symbol 19 MovieClip |
"frame1" | Symbol 26 MovieClip Frame 1 | Symbol 21 MovieClip |
"frame2" | Symbol 26 MovieClip Frame 1 | Symbol 22 MovieClip |
"frame3" | Symbol 26 MovieClip Frame 1 | Symbol 23 MovieClip |
"frame4" | Symbol 26 MovieClip Frame 1 | Symbol 24 MovieClip |
"frame5" | Symbol 26 MovieClip Frame 1 | Symbol 25 MovieClip |
"frame1" | Symbol 32 MovieClip Frame 1 | Symbol 27 MovieClip |
"frame2" | Symbol 32 MovieClip Frame 1 | Symbol 28 MovieClip |
"frame3" | Symbol 32 MovieClip Frame 1 | Symbol 29 MovieClip |
"frame4" | Symbol 32 MovieClip Frame 1 | Symbol 30 MovieClip |
"frame5" | Symbol 32 MovieClip Frame 1 | Symbol 31 MovieClip |
"up_mc" | Symbol 33 MovieClip [fpb_states] Frame 1 | Symbol 14 MovieClip |
"over_mc" | Symbol 33 MovieClip [fpb_states] Frame 2 | Symbol 20 MovieClip |
"down_mc" | Symbol 33 MovieClip [fpb_states] Frame 3 | Symbol 26 MovieClip |
"disabled_mc" | Symbol 33 MovieClip [fpb_states] Frame 4 | Symbol 32 MovieClip |
"boundingBox" | Symbol 38 MovieClip [FBoundingBoxSymbol] Frame 1 | Symbol 36 MovieClip |
"boundingBox2" | Symbol 38 MovieClip [FBoundingBoxSymbol] Frame 2 | Symbol 36 MovieClip |
"boundingBox_mc" | Symbol 41 MovieClip [FPushButtonSymbol] Frame 1 | Symbol 38 MovieClip [FBoundingBoxSymbol] |
"deadPreview" | Symbol 41 MovieClip [FPushButtonSymbol] Frame 1 | Symbol 40 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 31 bytes "..$1$mG$dN0PAZs31kilBu4cUtAP2.." |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "fpb_hitArea" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "FLabelSymbol" |
ExportAssets (56) | Timeline Frame 1 | Symbol 33 as "fpb_states" |
ExportAssets (56) | Timeline Frame 1 | Symbol 34 as "FUIComponentSymbol" |
ExportAssets (56) | Timeline Frame 1 | Symbol 38 as "FBoundingBoxSymbol" |
ExportAssets (56) | Timeline Frame 1 | Symbol 41 as "FPushButtonSymbol" |
Labels
#"Symbol_10" | Symbol 2 MovieClip [fpb_hitArea] Frame 1 |
"Symbol_32" | Symbol 5 MovieClip [FLabelSymbol] Frame 1 |
"up" | Symbol 33 MovieClip [fpb_states] Frame 1 |
"over" | Symbol 33 MovieClip [fpb_states] Frame 2 |
"down" | Symbol 33 MovieClip [fpb_states] Frame 3 |
"disabled" | Symbol 33 MovieClip [fpb_states] Frame 4 |
"Symbol_36" | Symbol 34 MovieClip [FUIComponentSymbol] Frame 1 |
"enabled" | Symbol 38 MovieClip [FBoundingBoxSymbol] Frame 1 |
"disabled" | Symbol 38 MovieClip [FBoundingBoxSymbol] Frame 2 |
|