STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #28779 |
Megaman vs Metroid, by Staticreator |
Death, Obj |
Image |
Megaman Script |
Pause Menu |
Pickup |
Samus Boss |
Zoomer |
Menu System |
Bubble Door Script |
Skree Script |
Ripper Script |
Rio Script |
Sinky Sand Script |
Bubble Script |
MB Bubble Script |
Waver Script |
Zeb Script |
SpitFire Script |
Credits Script |
00/00 (00) |
ActionScript [AS1/AS2]
Frame 1_accProps = new Object(); _accProps.silent = false; fscommand ("allowscale", "false"); stopAllSounds(); this.currentFrame = "preloader"; this.checkSize = function () { with (this) { _xscale = (_yscale = screenAdjust * 100); _x = (screenAdjust - 1) * -256; _y = (screenAdjust - 1) * -232; resizeBlock._visible = screenAdjust <= 1; } }; if (!this.screenAdjust) { this.screenAdjust = 2; } this.checkSize(); this._quality = "LOW"; this.play();Frame 2if (this.getBytesLoaded() == this.getBytesTotal()) { this.play(); } else { this.stop(); }Frame 3if (this.getBytesLoaded() == this.getBytesTotal()) { this.stop(); } else { this.gotoAndStop("preloader"); }Instance of Symbol 171 MovieClip in Frame 3onClipEvent (load) { this.mouseIsDown = false; } on (press) { this.mouseIsDown = true; } on (release) { if (this.mouseIsDown) { this._parent.gotoAndStop((this._parent.currentFrame = "game")); this.mouseIsDown = false; } } on (releaseOutside) { this.mouseIsDown = false; }Frame 4if (this.currentFrame == "game") { this.checkSize = function () { with (this) { _xscale = (_yscale = screenAdjust * 100); _x = (screenAdjust - 1) * -256; _y = (screenAdjust - 1) * -232; resizeBlock._visible = screenAdjust <= 1; } }; this.attachMovie("resizeBlock", "resizeBlock", 5, {_x:128, _y:116}); this.checkSize(); this.gameCore.gameCore.healthBar = this.healthBar; this.gameCore.gameCore.enemyBar = this.enemyBar; this.gameCore.gameCore.weaponBar = this.weaponBar; this.gameCore.gameCore.readyImage = this.readyImage; this.gameCore.gameCore.score = this.score; this.gameCore.gameCore.fps = this.fpsButton.fps; this.gameCore.gameCore.console = this.console; this.gameCore.gameCore.pauseMenu = this.pauseMenu; this.gameCore.gameCore.parent = this; this.gameCore.gameCore.load(this.importData); this.gotoAndStop((this.currentFrame = "rGame")); } else { this.gotoAndStop(this.currentFrame); }Frame 5this.gotoAndStop(this.currentFrame);Frame 7this.gotoAndStop(this.currentFrame);Symbol 21 MovieClip [letter] Frame 1this.stop();Symbol 33 MovieClip [megamanFont] Frame 1#initclip 1 function FontLetter() { this.gotoAndStop(this.lst.indexOf(this.symbol) + 1); var newColor = new Color(this); newColor.setRGB(this.rgb); } Object.registerClass("megamanFont", FontLetter); FontLetter.prototype = new MovieClip(); FontLetter.prototype.lst = "abcdefghijklmnopqrstuvwxyz*.,'0123456789!-=?\u00A9<>/^#"; delete p; #endinitclipSymbol 34 MovieClip Frame 1var bytesLoaded = (_parent.getBytesLoaded() / 1024); var bytesTotal = (_parent.getBytesTotal() / 1024); loadingBar.gotoAndStop(Math.floor((bytesLoaded / bytesTotal) * 41) + 1); if (bytesLoaded >= bytesTotal) { this._parent.play(); } var str = (((Math.floor(bytesLoaded) + "kb out of ") + Math.floor(bytesTotal)) + "kb loaded"); if (this.oldStr != str) { for (var i in this.letters) { this.letters[i].removeMovieClip(); } this.letters = []; var i = 0; var pX = 0; var pY = 0; while (i <= (str.length - 1)) { if (str.charAt(i) != " ") { letters[i] = fontSys.attachMovie("megamanFont", "font_" + i, i, {symbol:str.charAt(i), rgb:16777215, _x:8 * i, _y:0}); } i++; pX++; } this.oldStr = str; } this._alpha = 100;Symbol 34 MovieClip Frame 7this.gotoAndPlay(1);Symbol 168 MovieClip [runnerPreloader] Frame 1#initclip 2 function runnerPreloader() { this.rTick = 2; this.rPos = 0; this.r1Pos = 0; this.r2Pos = 0; this.endX = 0; this.mode = false; this.lTime = getTimer(); this.setSprites(); } Object.registerClass("runnerPreloader", runnerPreloader); var p = ((runnerPreloader.prototype = new MovieClip())); p.setSprites = function () { with (this) { r1.gotoAndStop((r1.index = (Math.floor((Math.random() * r1._totalframes) / 3) * 3) + 1)); r2.index = (Math.floor((Math.random() * (r2._totalframes - 3)) / 3) * 3) + 1; if (r2.index >= r1.index) { r2.index = r2.index + 3; } r2.gotoAndStop(r2.index); var r1b = r1.getBounds(r1); var r2b = r2.getBounds(r2); var i = 0; while (i <= 1) { var clip = (i ? (r1) : (r2)); var b = (i ? (r1b) : (r2b)); var j = 1; while (j <= 2) { clip.gotoAndStop(j + clip.index); var bounds = clip.getBounds(clip); if (bounds.xMin < b.xMin) { b.xMin = bounds.xMin; } if (bounds.xMax > b.xMax) { b.xMax = bounds.xMax; } j++; } i++; } rPos = 0; r1.gotoAndStop(r1.index); r2.gotoAndStop(r2.index); if ((mode = !mode)) { r1._xscale = (r2._xscale = -100); r2._x = r2b.xMin; r1._x = ((r2b.xMin - r2b.xMax) + r1b.xMin) - 25; endX = 256 + r1b.xMax; } else { r1._xscale = (r2._xscale = 100); r2._x = 256 - r2b.xMin; r1._x = (((256 - r2b.xMin) + r2b.xMax) - r1b.xMin) + 25; endX = -r1b.xMax; } } }; p.onEnterFrame = function () { var cTime = getTimer(); with (this) { var frameAdj = ((cTime - lTime) / 16.6666666666667); if (((rTick = rTick - frameAdj)) <= 0) { r1.gotoAndStop((((++rPos) > 3) ? ((rPos = 0)) : (((rPos == 3) ? 1 : (rPos)))) + r1.index); r2.gotoAndStop(((rPos == 3) ? 1 : (rPos)) + r2.index); rTick = rTick + 8; } if (mode) { r2._x = r2._x + (1.5 * frameAdj); if (((r1._x = r1._x + (1.5 * frameAdj))) >= endX) { setSprites(); } } else { r2._x = r2._x - (1.5 * frameAdj); if (((r1._x = r1._x - (1.5 * frameAdj))) <= endX) { setSprites(); } } lTime = cTime; } }; #endinitclipSymbol 177 MovieClip [resizeBlock] Frame 1this.lastTime = getTimer(); this.onEnterFrame = function () { if ((getTimer() - this.lastTime) >= 120000) { if (this._visible) { this.play(); } this.lastTime = getTimer(); } }; this.stop();Symbol 177 MovieClip [resizeBlock] Frame 120this.gotoAndStop(1);Symbol 179 MovieClip [MegamanEngine] Frame 1#initclip 4 function LibItem(str, command) { this.str = str; this.command = command; } _global.MME = new Object(); _global.maps = new Object(); MME.collisionDetect = function () { with (this.root) { var i = 0; while (i <= (eList.length - 1)) { if (eList[i].active && (this.hitTest(eList[i]))) { return(eList[i]); } i++; } } return(null); }; MME.enemyCollisionDetect = function () { with (this) { if (root.megamanLink.megaman.active && (hitTest(root.megamanLink.megaman))) { return(root.megamanLink.megaman); } } return(null); }; MME.emptyFunction = function () { }; MME.SpecialSetPosition = function (i, j) { with (this.root.mapObj) { this._x = offsetX + i; this._y = offsetY + j; } }; MME.SpecialSetPositionTile = function (i, j) { with (this.root.mapObj) { this._x = offsetX + (i * 16); this._y = offsetY + (j * 16); } }; MME.SpecialGetPosition = function (i, j) { with (this.root.mapObj) { return({x:offsetX + i, y:offsetY + j}); } }; MME.SpecialGetPositionTile = function (i, j) { with (this.root.mapObj) { return({x:offsetX + (i * 16), y:offsetY + (j * 16)}); } }; MME.EmptyActiveClip = function () { }; var p = ((MME.EmptyActiveClip.prototype = new MovieClip())); p.destroy = MME.emptyFunction; p.hide = MME.emptyFunction; p.show = MME.emptyFunction; p.control = MME.emptyFunction; p.init = MME.emptyFunction; p.setPos = MME.SpecialSetPosition; p.setPosTile = MME.SpecialSetPositionTile; p.getPos = MME.SpecialGetPosition; p.getPosTile = MME.SpecialGetPositionTile; delete p; MME.EmptyActiveObj = function () { }; var p = MME.EmptyActiveObj.prototype; p.destroy = MME.emptyFunction; p.hide = MME.emptyFunction; p.show = MME.emptyFunction; p.control = MME.emptyFunction; p.init = MME.emptyFunction; p.getPos = MME.SpecialGetPosition; p.getPosTile = MME.SpecialGetPositionTile; delete p; MME.ActiveGroup = function () { this.c = {}; }; var p = ((MME.ActiveGroup.prototype = new MME.EmptyActiveObj())); p.addClip = function () { this.c[arguments[0]] = {linkID:arguments[1], depthType:arguments[2]}; }; p.applyClips = function (obj) { for (var i in this.c) { if (this[i] != obj) { obj[i] = this[i]; } } }; p.init = function () { for (var i in this.c) { this[i].init(); } }; p.attachClips = function () { with (this) { for (var i in c) { this[i] = root.attachMov(c[i].linkID, root.registerDepth(c[i].depthType)); } } }; p.hide = function () { for (var i in this.c) { this[i].hide(); } }; p.show = function () { for (var i in this.c) { this[i].show(); } }; p.destroy = function () { for (var i in this.c) { if (this[i].__proto__.destroy || (this[i].destroy)) { this[i].destroy(); } else { this[i].removeMovieClip(); this.root.unregisterDepth(this[i].getDepth()); } } }; delete p; MME.ActiveClip = function () { }; var p = ((MME.ActiveClip.prototype = new MME.EmptyActiveClip())); p.attachMov = function (linkID, depth, initObj) { return(this.attachMovie(linkID, (linkID + "_") + depth, depth, initObj)); }; p.hide = function () { if (this.visStore == undefined) { this.visStore = this._visible; this._visible = false; } }; p.show = function () { if (this.visStore != undefined) { this._visible = this.visStore; delete this.visStore; } }; p.destroy = function () { this.root.unregisterDepth(this.getDepth()); this.removeMovieClip(); }; delete p; MME.EnemyControl = function () { this.off = 0; this.active = true; this.lst = []; }; MME.EnemyControl.prototype = new MME.EmptyActiveObj(); MME.EnemyControl.prototype.push = function (obj) { return((this.lst[this.lst.length] = obj)); }; MME.EnemyControl.prototype.fullCheck = function () { var count = false; var preOff = ((this.off = 0)); while ((preOff != this.off) && (count)) { this.control(); count = true; } }; MME.EnemyControl.prototype.control = function () { var bnds; var obj; with (this) { off = ((off >= 2) ? 0 : (off + 1)); switch (root.mapObj.scroll) { case 0 : case 2 : var i = off; while (i <= (lst.length - 1)) { bnds = ((obj = lst[i])).getBounds(root); if (((bnds.xMax - 8) < root.mapPosX) || ((bnds.xMin + 8) > (root.mapPosX + 256))) { if ((!obj.ecDisabled) && (obj.active)) { obj.ecDisabled = true; obj.ecVisible = obj._visible; obj.active = (obj._visible = false); } } else if (obj.ecDisabled) { obj.ecDisabled = false; obj._visible = obj.ecVisible; obj.active = true; } i = i + 3; } return(undefined); case 1 : case 3 : var i = off; while (i <= (lst.length - 1)) { bnds = ((obj = lst[i])).getBounds(root); if (((bnds.yMax - 8) < root.mapPosY) || ((bnds.yMin + 8) > (root.mapPosY + 232))) { if ((!obj.ecDisabled) && (obj.active)) { obj.ecDisabled = true; obj.ecVisible = obj._visible; obj.active = (obj._visible = false); } } else if (obj.ecDisabled) { obj.ecDisabled = false; obj._visible = obj.ecVisible; obj.active = true; } i = i + 3; } return(undefined); } } }; MME.MapData = function () { this.linkID = arguments[0]; this.dataStartX = (this.offsetX = arguments[1]); this.dataStartY = (this.offsetY = arguments[2]); this.startX = arguments[3]; this.startY = arguments[4]; this.scroll = arguments[5]; this.onBegin = arguments[6]; this.onStart = arguments[7]; this.trans = arguments[8]; this.map = arguments[9]; this.altMap = arguments[10]; this.height = this.map.length; this.width = this.map[0].length; }; MME.MapTrans = function () { this.mapID = arguments[0]; this.offsetX = arguments[1]; this.offsetY = arguments[2]; this.scrollType = arguments[3]; this.newScroll = arguments[4]; this.push = arguments[5]; }; MME.MegamanEngine = function () { this.mapPosX = 0; this.mapPosY = 0; this.maps = new Object(); this.mapData = null; this.mapObj = null; this.soundList = new Object(); this.sndBGmusic = null; this.activeObj = new Array(); this.lastTime = getTimer(); this.key = new Object(); this.resetKeys(1); this.depthList = new Array(); this.megamanLink = null; this.onEnterFrameSub = null; this.currentArea = null; this.speed = 1; this.menuStatus = 0; this.showFPS = this._url.indexOf("http") < 0; this.showEnemy = false; this.showWeapon = false; this.showReady = false; this.hideHUD = false; this._quality = "LOW"; this.eList = new Array(); this.chtSys = new MME.CheatSystem(this, "chtSys"); this.ahoy = sharedobject.getlocal("mmvs"); this.ahoy.tStatus = "none"; this.debugMap = false; this.cheatSkipMov = false; this.freezeCheck = false; this.char = 0; this.forceLag = 0; this.forceMax = false; this.removeLimit = false; this.onEnterFrameSub = null; this.reloadData = null; this.musicOn = true; }; Object.registerClass("MegamanEngine", MME.MegamanEngine); var p = ((MME.MegamanEngine.prototype = new MovieClip())); p.load = function (data) { this.reloadData = data; this.onEngineLoad = data.onEngineLoad; this.onEngineLoad(data); delete this.onEngineLoad; }; p.reloadGame = function () { this.unloadAll(); stopAllSounds(); this._x = (this._y = 0); this.pauseMenu.gotoAndStop(1); this.load(this.reloadData); }; p.clearSA = function () { delete this.ahoy.onStatus; delete this.ahoy.tmpInfo; this.ahoy.tStatus = "none"; }; p.saveArray = function (id, arr) { var out = 0; var i = 0; while (i <= (arr.length - 1)) { if (arr[i]) { out = out + Math.pow(2, i); } i++; } this.ahoy.data[id] = out; if (this.ahoy.tStatus == "none") { var jiggle = this.ahoy.flush(100); if (jiggle == "pending") { this.ahoy.onStatus = function (i) { this.tStatus = "status"; trace((("listen status, " + i) + " : ") + typeof(i.code)); this.tmpInfo = i.code; }; this.ahoy.tmpInfo = null; this.ahoy.tStatus = "waiting"; } else { this.ahoy.tStatus = "autoreturn"; } } trace("-----------"); if (this.ahoy.tStatus == "status") { trace("recieved status"); if (this.ahoy.tmpInfo == "SharedObject.Flush.Success") { trace("success, to verify"); } else if (this.ahoy.tmpInfo == "SharedObject.Flush.Failed") { trace("fail, return false"); this.clearSA(); return(false); } } else if (this.ahoy.tStatus == "autoreturn") { if (jiggle == false) { return(jiggle); } } else if (this.ahoy.tStatus == "waiting") { return("pending"); } trace("flush success, verifying data"); var verify = this.getCookie(id, arr.length); if ((verify == null) || (verify.length != arr.length)) { return(false); } var i = 0; while (i <= (arr.length - 1)) { if (arr[i] != verify[i]) { trace("verify failure, return false"); return(false); } i++; } trace("data validated, return true"); return(true); }; p.getArray = function (id, digits) { var out = new Array(); var conv = this.ahoy.data[id]; trace((((("getArray gets (" + this.ahoy.data) + " : ") + this.ahoy.data[id]) + ") ") + conv); if (typeof(conv) != "number") { return(null); } if (!digits) { digits = 0; } while (conv >= Math.pow(2, digits)) { digits++; } if (digits == 0) { out[0] = 0; return(out); } var i = 0; while (i <= (digits - 1)) { out[i] = conv % 2; conv = Math.floor(conv / 2); i++; } return(out); }; p.startArea = function (areaID) { this.currentArea = areaID; this.startLevel(this.currentArea[(areaID.onStart ? (areaID.onStart(this)) : 0)], "introLevel"); }; p.drawInfo = function () { var colorList = [16711680, 65280, 255, 16711935]; var mpObj = this.mapObj; with (mpObj.createEmptyMovieClip("tileClip", 10)) { var slb = 0; while (slb <= (mpObj.map.length - 1)) { var slc = 0; while (slc <= (mpObj.map[slb].length - 1)) { var col = colorList[mpObj.map[slb][slc]]; var x = (((slc * 16) + mpObj.dataStartX) + mpObj.startX); var y = (((slb * 16) + mpObj.dataStartY) + mpObj.startY); lineStyle(0, col, 100); beginFill(col, 100); moveTo(x + 4, y + 4); lineTo(x + 12, y + 4); lineTo(x + 12, y + 12); lineTo(x + 4, y + 12); lineTo(x + 4, y + 4); endFill(); if (this.mapObj.altMap[slb][slc]) { lineStyle(0, 65535, 100); beginFill(65535, 100); moveTo(x + 8, y + 5); lineTo(x + 5, y + 8); lineTo(x + 8, y + 11); lineTo(x + 11, y + 8); lineTo(x + 8, y + 5); endFill(); } slc++; } slb++; } } }; p.startLevel = function (levelData, loadType) { if (loadType == "transLevel") { var data = this.currentArea[levelData.mapID]; var newLevelObj = this.attachMov(data.linkID, this.registerDepth("back"), data); newLevelObj.plfrms = []; var trans = (new MME.Trans()); trans.root = this; trans.setTrans(levelData, this.mapObj, newLevelObj); this.mapObj = (this.mapData = newLevelObj); this.attachObj(trans); if (data.onBegin) { data.onBegin(this, trans); } } else if (loadType == "introLevel") { var data = levelData; var newLevelObj = this.attachMov(data.linkID, this.registerDepth("back"), data); this.mapObj = (this.mapData = newLevelObj); newLevelObj.plfrms = []; newLevelObj._x = -levelData.startX; newLevelObj._y = -levelData.startY; this.mapPosX = (this._x = 0); this.mapPosY = (this._y = 0); var obj = {}; if (data.onBegin) { data.onBegin(this, obj); } if (data.onStart) { data.onStart(this, obj); } if (this.freezeCheck) { this.freeDragMap(); } } if (this.debugMap) { newLevelObj.onMouseDown = function () { this._parent.consoleMsg(((((((("mousex " + ((this._xmouse - data.dataStartX) - data.startX)) + ", mousey ") + ((this._ymouse - data.dataStartY) - data.startY)) + "\r") + "tilex ") + Math.floor(((this._xmouse - data.dataStartX) - data.startX) / 16)) + ", tiley ") + Math.floor(((this._ymouse - data.dataStartY) - data.startY) / 16), 10); }; this.drawInfo(); } }; p.freeDragMap = function () { this.doEffect("pause", 0); this.mapObj.root = this; this.tmpSaveX = this._x; this.tmpSaveY = this._y; this.mapObj.onEnterFrame = function () { if (Key.isDown(32)) { delete this.onEnterFrame; delete this.root.onPress; delete this.root.onRelease; delete this.root.onReleaseOutside; this.root._x = this.root.tmpSaveX; this.root._y = this.root.tmpSaveY; delete this.root.tmpSaveX; delete this.root.tmpSaveY; this.root.doEffect("pause", 1); } }; this.onPress = function () { this.startDrag(); }; this.onRelease = (this.onReleaseOutside = function () { this.stopDrag(); }); }; MME.Trans = function () { this.scrollType = null; this.oldMap = null; this.oldMapData = null; this.active = false; this.data1 = 0; this.subMode = 0; this.startX = 0; this.startY = 0; this.endX = 0; this.endY = 0; this.megamanPos = 0; }; MME.Trans.prototype = new MME.EmptyActiveObj(); MME.Trans.prototype.setTrans = function (data, oldMap, newMap) { this.data = data; this.oldMap = oldMap; this.newMap = newMap; this.scrollType = data.scrollType; this.active = true; this.data1 = 0; this.subMode = 0; this.root.doEffect("destroy", 0, true); this.root.megamanLink.active = false; newMap._x = ((oldMap._x + oldMap.startX) + data.offsetX) - newMap.startX; newMap._y = ((oldMap._y + oldMap.startY) + data.offsetY) - newMap.startY; this.root.mapPosX = (oldMap._x + oldMap.startX) + data.offsetX; this.root.mapPosY = (oldMap._y + oldMap.startY) + data.offsetY; newMap.offsetX = newMap.offsetX + this.root.mapPosX; newMap.offsetY = newMap.offsetY + this.root.mapPosY; switch (newMap.scroll) { case 0 : case 2 : this.root.mapPosX = this.root.mapPosX + data.newScroll; break; case 1 : case 3 : this.root.mapPosY = this.root.mapPosY + data.newScroll; } this.startX = this.root._x; this.startY = this.root._y; switch (this.scrollType) { case "up" : this.endY = -232; this.endX = 0; this.megStart = this.root.megamanLink.megaman._y; this.megEnd = -data.push; break; case "down" : this.endY = 232; this.endX = 0; this.megStart = this.root.megamanLink.megaman._y; this.megEnd = data.push; break; case "right" : this.endX = -256; this.endY = 0; this.megStart = this.root.megamanLink.megaman._x; this.megEnd = data.push; break; case "left" : this.endX = 256; this.endY = 0; this.megStart = this.root.megamanLink.megaman._x; this.megEnd = -data.push; break; default : trace(("ERROR! " + this.scrollType) + " scrollType not supported!"); } this.setScrollX = -((this.root.mapPosX + this.endX) + this.startX); this.setScrollY = -((this.root.mapPosY + this.endY) + this.startY); this.root.warnChange(); }; MME.Trans.prototype.destroy = function () { this.root.megamanLink.active = true; this.root.megamanLink.transferFix = false; this.root.unregisterDepth(this.oldMap.getDepth()); this.oldMap.removeMovieClip(); if (this.newMap.onStart) { this.newMap.onStart(this.root, this); } if (this.root.freezeCheck) { this.root.freeDragMap(); } }; MME.Trans.prototype.control = function (f) { with (this) { if (subMode == 0) { if (((data1 = data1 + f)) > 60) { data1 = 60; } root._x = startX - (setScrollX * (data1 / -60)); root._y = startY - (setScrollY * (data1 / -60)); if (data1 == 60) { data1 = 0; subMode = 1; startX = root._x; startY = root._y; root.warnChange(); } } else if (subMode == 1) { if (((data1 = data1 + f)) > 60) { data1 = 60; } root._x = startX - (endX * (data1 / -60)); root._y = startY - (endY * (data1 / -60)); switch (scrollType) { case "up" : case "down" : root.megamanLink.megaman._y = megStart - (megEnd * (data1 / (-60))); break; case "left" : case "right" : root.megamanLink.megaman._x = megStart - (megEnd * (data1 / (-60))); } with (root.megamanLink.megaman) { if (mode == "climb") { } } if (data1 == 60) { subMode = 2; } } else if (subMode == 2) { root.destroySelf(this); } } }; MME.KeyCatcher = function () { this.reportObj = null; this.reportProp = null; this.list = new Object(); Key.addListener(this); }; MME.KeyCatcher.prototype = new MovieClip(); MME.KeyCatcher.prototype.setReport = function (func, obj) { this.reportFunc = func; this.reportObj = obj; }; MME.KeyCatcher.prototype.blockKey = function (keyCode) { this.list[keyCode] = 2; }; MME.KeyCatcher.prototype.onKeyDown = function () { if (this.list[Key.getCode()] != 2) { this.list[Key.getCode()] = 1; } }; MME.KeyCatcher.prototype.onKeyUp = function () { if (this.list[Key.getCode()]) { if (((this.list[Key.getCode()] != 2) && (this.reportObj)) && (this.reportFunc)) { this.reportFunc(this.reportObj, Key.getCode()); } this.list[Key.getCode()] = 0; } }; MME.KeyCatcher.prototype.destroy = function () { this.root.unregisterDepth(this.getDepth()); Key.removeListener(this); this.subRemoveMovieClip(); }; MME.KeyCatcher.prototype.subRemoveMovieClip = MME.KeyCatcher.prototype.removeMovieClip; MME.KeyCatcher.prototype.removeMovieClip = function () { Key.removeListener(this); this.subRemoveMovieClip(); }; MME.Movie = function () { this.active = true; this.complete = false; this.isComplete = false; this.isPlaying = this._totalframes > 1; this.frame = 0; this.reportList = []; this.clipList = {}; if (!this.onComplete) { this.onComplete = null; } }; MME.Movie.prototype = new MME.ActiveClip(); MME.Movie.prototype.gts = MME.Movie.prototype.gotoAndStop; MME.Movie.prototype.gtp = MME.Movie.prototype.gotoAndPlay; MME.Movie.prototype.s = MME.Movie.prototype.stop; MME.Movie.prototype.p = MME.Movie.prototype.play; MME.Movie.prototype.gotoAndStop = function (frame) { this.isPlaying = false; this.gts(Math.floor((this.frame = frame)) + 1); }; MME.Movie.prototype.gotoAndPlay = function (frame) { this.isPlaying = true; this.gtp(Math.floor((this.frame = frame)) + 1); }; MME.Movie.prototype.stop = function () { this.isPlaying = false; this.s(); }; MME.Movie.prototype.play = function () { this.isPlaying = true; this.p(); }; MME.Movie.prototype.play = function () { this.isPlaying = true; this.p(); }; MME.Movie.prototype.addClip = function (obj) { this.clipList[obj._name] = obj; this.clipList[obj._name].frm = this.clipList[obj._name]._currentframe; }; MME.Movie.prototype.control = function (f) { if (this.isPlaying) { var inc = Math.floor(this.frame); var cFrm = Math.floor((this.frame = this.frame + f)); while (this.isPlaying && (inc < cFrm)) { inc++; while (inc > this._totalframes) { inc = inc - (this._totalframes - 1); cFrm = cFrm - (this._totalframes - 1); this.frame = this.frame - (this._totalframes - 1); } this.gts(Math.floor(inc) + 1); this.onEnterFrame2(); } if (this.isPlaying) { for (var i in this.reportList) { this.reportList[i].control(f); } for (var i in this.clipList) { with (this.clipList[i]) { frm = frm + f; while (frm > _totalframes) { frm = frm - (_totalframes - 1); } gotoAndStop(Math.floor(frm)); } } } } if ((this.complete || (this.root.cheatSkipMov)) && (!this.isComplete)) { this.isComplete = true; if (this.onComplete) { this.onComplete(); } } if (((!this.complete) || (!this.root.cheatSkipMov)) && (this.isComplete)) { this.isComplete = false; } }; Array.prototype.addItem = function (data) { this[this.length] = data; }; Array.prototype.removeItem = function (index) { this.splice(index, 1); }; ASSetPropFlags(Array.prototype, ["addItem", "removeItem"], 1); MME.LocArray = function () { var rArr = {}; var i = 0; while (i <= (arguments.length - 1)) { arguments[i + 3] = arguments[i + 3] + arguments[i + 1]; arguments[i + 4] = arguments[i + 4] + arguments[i + 2]; var y = arguments[i + 2]; while (y <= (arguments[i + 4] - 1)) { if (!rArr[y]) { rArr[y] = {}; } var x = arguments[i + 1]; while (x <= (arguments[i + 3] - 1)) { rArr[y][x] = arguments[i]; x++; } y++; } i = i + 5; } return(rArr); }; p.consoleMsg = function (msg, timeout) { this.console.showMsg(msg, (timeout ? (timeout) : 3)); }; MME.HealthSys = function (max, reset, clip) { this.clip = null; this.health = 0; this.max = 0; this.min = 0; this.dead = false; if (max) { this.setMax(max); } if (clip) { this.setClip(clip); } if (reset) { this.reset(); } }; MME.HealthSys.prototype.setClip = function (clip) { this.clip = clip; this.checkClip(); }; MME.HealthSys.prototype.checkClip = function () { if (this.clip) { if (this.max != this.min) { this.clip.gotoAndStop((Math.floor((this.health / (this.max - this.min)) * (this.clip._totalframes - 1)) + 1) + this.min); } else { this.clip.gotoAndStop(1); } } }; MME.HealthSys.prototype.setMax = function (max, reset) { if ((this.health > ((this.max = max))) || (reset)) { this.health = max; } this.dead = this.health <= this.min; this.checkClip(); }; MME.HealthSys.prototype.setMin = function (min) { if (this.health <= ((this.min = min))) { this.health = min; this.dead = true; } this.checkClip(); }; MME.HealthSys.prototype.set = function (health) { var preHealth = this.health; if (((this.health = health)) <= this.min) { this.health = this.min; this.dead = true; } else if (health >= this.max) { this.health = this.max; this.dead = false; } this.checkClip(); return(preHealth - this.health); }; MME.HealthSys.prototype.adj = function (change) { return(this.set(this.health + change)); }; MME.HealthSys.prototype.kill = function () { var preHealth = this.health; this.health = this.min; this.dead = true; this.checkClip(); return(preHealth - this.min); }; MME.HealthSys.prototype.reset = function () { this.health = this.max; this.dead = false; this.checkClip(); }; MME.TransObj = function (root) { this.root = root; this.list = []; }; MME.TransObj.prototype = new MME.EmptyActiveObj(); MME.TransObj.prototype.destroy = function () { for (var i in this.list) { this.root.unregisterDepth(this.list[i].getDepth()); this.list[i].removeMovieClip(); } this.list = []; }; MME.TransObj.prototype.addClip = function (clip, depthType, x, y, frame) { var npos = this.getPos(x, y); with ((this.list[this.list.length] = this.root.attachMov(clip, this.root.registerDepth(depthType)))) { gotoAndStop((frame ? (frame) : 1)); _x = npos.x; _y = npos.y; } }; MME.TransObj.prototype.addClipTile = function (clip, depthType, x, y, frame) { var npos = this.getPosTile(x, y); with ((this.list[this.list.length] = this.root.attachMov(clip, this.root.registerDepth(depthType), new EmptyActiveClip()))) { gotoAndStop((frame ? (frame) : 1)); _x = npos.x; _y = npos.y; } }; MME.Pause = function (timeout, onComplete, data) { this.active = true; this.data1 = timeout; this.onComplete = onComplete; this.data = data; }; MME.Pause.prototype = new MME.EmptyActiveObj(); MME.Pause.prototype.control = function (f) { if (((this.data1 = this.data1 - f)) <= 0) { this.onComplete(this.data); this.active = false; root.destroyActiveObj(root.findActiveObj(this)); } }; MME.MovieShow = function () { this.show = []; this.pos = 0; this.keyIsDown = false; this.canSkip = false; this.isDown(); this.onComplete = null; this.active = false; }; MME.MovieShow.prototype.isDown = function () { if ((Key.isDown(32) || (Key.isDown(13))) || (Key.isDown(this.root.key.keyStart))) { if (!this.keyIsDown) { this.keyIsDown = true; return(this.canSkip); } } else { this.keyIsDown = false; } return(false); }; MME.MovieShow.prototype.destroy = function () { if (this.pos <= (this.show.length - 1)) { this.show[this.pos].destroy(); } }; MME.MovieShow.prototype.init = function (onComplete) { var waitTime = 0; var index = 0; this.onComplete = onComplete; var i = 1; while (i <= (arguments.length - 1)) { switch (typeof(arguments[i])) { case "object" : case "movieclip" : this.show[index] = arguments[i]; this.show[index].wait = waitTime; this.show[index].playMov = false; this.show[index].root = this.root; this.show[index++].parent = this; waitTime = 0; break; case "number" : waitTime = waitTime + arguments[i]; } i++; } this.pos = 0; this.active = true; }; MME.MovieShow.prototype.control = function (f) { if (this.show[this.pos].playMov) { if (this.show[this.pos].onTick(f) || (this.isDown())) { this.show[this.pos].destroy(); if ((++this.pos) > (this.show.length - 1)) { this.onComplete(); this.root.destroySelf(this); } } } else { if (this.isDown()) { if ((++this.pos) > (this.show.length - 1)) { this.onComplete(); this.root.destroySelf(this); return(undefined); } } if (((this.show[this.pos].wait = this.show[this.pos].wait - f)) <= 0) { this.show[this.pos].create(); this.show[this.pos].playMov = true; this.control(0); } } }; p.resetKeys = function (type) { switch (type) { case 1 : this.key.keyJump = 90; this.key.keyShoot = 88; this.key.keyLeft = Key.LEFT; this.key.keyRight = Key.RIGHT; this.key.keyUpward = Key.UP; this.key.KeyDownward = Key.DOWN; this.key.keyStart = Key.ENTER; return; case 2 : this.key.keyJump = 191; this.key.keyShoot = 190; this.key.keyLeft = 65; this.key.keyRight = 68; this.key.keyUpward = 87; this.key.KeyDownward = 83; this.key.keyStart = Key.ENTER; } }; p.resetHUD = function () { with (this) { if (hideHUD) { healthBar._visible = (enemyBar._visible = (weaponBar._visible = (readyImage._visible = (score._visible = false)))); } else { healthBar._visible = true; enemyBar._visible = showEnemy; weaponBar._visible = showWeapon; readyImage._visible = showReady; score._visible = true; } fps._parent._visible = showFPS; } }; p.canMoveHorizontal = (p.chkMapH = function (a, b, x) { with (this.mapObj) { for (var i in pltfrms) { with (pltfrms[i]) { if (((x > x1) && (x < x2)) && ((((a <= y1) && (b >= y1)) || ((a <= y2) && (b >= y2))) || ((a >= y1) && (b <= y2)))) { return(false); } } } b = Math.floor((b - offsetY) / 16); x = Math.floor((x - offsetX) / 16); a = Math.floor((a - offsetY) / 16); while (a <= b) { if (map[a][x] == 2) { return(false); } a++; } return(true); } }); p.canMoveVertical = (p.chkMapV = function (a, b, y, o) { with (this.mapObj) { for (var i in pltfrms) { with (pltfrms[i]) { if (((y > y1) && (y < y2)) && ((((a <= x1) && (b >= x1)) || ((a <= x2) && (b >= x2))) || ((a >= x1) && (b <= x2)))) { return(false); } } } b = Math.floor((b - offsetX) / 16); y = Math.floor((y - offsetY) / 16); a = Math.floor((a - offsetX) / 16); while (a <= b) { if ((map[y][a] == 2) || (o && (map[y][a] == 3))) { return(false); } a++; } return(true); } }); p.canMoveBox = (p.chkMapBX = function (x, y, a, b, o) { with (this.mapObj) { a = Math.floor((a - offsetX) / 16); b = Math.floor((b - offsetY) / 16); x = Math.floor((x - offsetX) / 16); while (x <= a) { y = Math.floor((y - offsetY) / 16); while (y <= b) { if ((map[y][x] == 2) || (o && (map[y][x] == 3))) { return(false); } y++; } x++; } return(true); } }); p.canMovePos = (p.chkMapPos = function (x, y, o) { with (this.mapObj) { return((o ? ((map[(y = Math.floor((y - offsetY) / 16))][(x = Math.floor((x - offsetX) / 16))] == 2) || (map[y][x] == 3)) : (map[Math.floor((y - offsetY) / 16)][Math.floor((x - offsetX) / 16)] == 2))); } }); p.prepareSound = function (soundID) { if (!this.soundList[soundID]) { this.soundList[soundID] = []; } var index = this.soundList[soundID].length; this.soundList[soundID][index] = new Sound(this); this.soundList[soundID][index].attachSound(soundID); this.soundList[soundID][index].root = this; return(this.soundList[soundID][index]); }; p.startSound = function (sound, loop) { var snd = this.soundList[sound]; if (!snd) { var out = this.prepareSound(sound); out.start(0, (loop ? 1000000000 : 0)); out.loopin = loop; return(out); } var i = 0; while (i <= (snd.length - 1)) { if (!snd[i].position) { snd[i].start(0, (loop ? 1000000000 : 0)); snd[i].loopin = loop; return(snd[i]); } i++; } var out = this.prepareSound(sound); out.start(0, (loop ? 1000000000 : 0)); out.loopin = loop; return(out); }; p.stopSound = function (sound) { var snd = this.soundList[sound]; var i = 0; while (i <= (snd.length - 1)) { if (snd[i].position) { snd[i].stop(sound); } i++; } }; p.setBGmusic = function (snd) { this.sndBGmusic = snd; }; p.stopBGmusic = function () { this.stopSound(this.sndBGmusic); }; p.startBGmusic = function () { this.startSound(this.sndBGmusic); }; p.registerDepth = function (type) { var index = 0; switch (type) { case "low" : index = 100; break; case "high" : index = 200; break; case "fg" : index = 300; break; case "powerfg" : index = 400; } while (this.depthList[index]) { index++; } this.depthList[index] = true; return(index); }; p.unregisterDepth = function (depth) { this.depthList[depth] = false; }; p.registerEnemy = function (obj) { var returnIndex = this.eList.length; this.eList[returnIndex] = obj; return(returnIndex); }; p.unregisterEnemy = function (obj) { for (var i in this.eList) { if (obj == this.eList[i]) { this.eList.removeItem(i); } } }; p.getRoot = function (obj) { obj.root = this; return(obj); }; p.SetRoot = function (root) { this.root = root; }; p.attachMov = function (clipID, newDepth, initObj) { if (!initObj) { initObj = {root:this}; } else { initObj.root = this; } duplicateMovieClip (clipID, (clipID + "_") + newDepth, newDepth); return(this.attachMovie(clipID, (clipID + "_") + newDepth, newDepth, initObj)); }; p.attachObjMov = function (clipID, depthType, attachFirst) { return(this.attachObj(this.attachMov(clipID, this.registerDepth(depthType)), attachFirst)); }; p.attachObj = function (obj, startOfList) { obj.root = this; if (startOfList) { this.activeObj.unshift(obj); } else { this.activeObj.addItem(obj); } return(obj); }; p.findActiveObj = function (obj) { obj.searchFind = true; var ica = 0; while (ica <= (this.activeObj.length - 1)) { if (this.activeObj[ica].searchFind) { delete this.activeObj[ica].searchFind; return(ica); } ica++; } return(-1); }; p.destroyActiveObj = function (index) { this.activeObj[index].destroy(); this.activeObj.removeItem(index); }; p.destroySelf = function (obj) { this.destroyActiveObj(this.findActiveObj(obj)); }; p.unloadAll = function () { this.doEffect("destroy"); this.megamanLink = null; this.unregisterDepth(mapObj.getDepth()); this.mapObj.removeMovieClip(); }; p.doEffect = function (effect, direction, special) { if (effect == "pause") { if (!direction) { var rmg = 0; while (rmg <= (this.activeObj.length - 1)) { if (!this.activeObj[rmg].altActive) { this.activeObj[rmg].altActive = this.activeObj[rmg].active; this.activeObj[rmg].active = false; } rmg++; } } else { var rmf = 0; while (rmf <= (this.activeObj.length - 1)) { if (this.activeObj[rmf].altActive != undefined) { this.activeObj[rmf].active = this.activeObj[rmf].altActive; delete this.activeObj[rmf].altActive; } rmf++; } } } else if (effect == "hide") { if (!direction) { var rmg = 0; while (rmg <= (this.activeObj.length - 1)) { this.activeObj[rmg].hide(special); rmg++; } } else { var rmf = 0; while (rmf <= (this.activeObj.length - 1)) { this.activeObj[rmf].show(special); rmf++; } } } else if (effect == "destroy") { while (this.activeObj.length > (special ? 1 : 0)) { var pos = (((special && (this.megamanLink)) && (this.findActiveObj(this.megamanLink) == 0)) ? 1 : 0); this.destroyActiveObj(pos); } } }; MME.CheatSystem = function (parent, pProp) { this.pProp = pProp; this.str = ""; this.max = 0; this.parent = parent; this.cheatSpeedUp = 0; var i = 0; while (i <= (this.lib.length - 1)) { if (this.lib[i].str.length > this.max) { this.max = this.lib[i].str.length; } i++; } _global.onOrOff = function (bool) { return((bool ? "on" : (((bool == undefined) ? "error" : "off")))); }; Key.addListener(this); }; MME.CheatSystem.prototype.init = function (prop) { this.pProp = prop; Key.addListener(this); }; MME.CheatSystem.prototype.onKeyDown = function () { if (this.cheatSpeedUp && (Key.getCode() == 192)) { this.parent.speed = 2; } }; MME.CheatSystem.prototype.onKeyUp = function () { with (this) { if (((str = str + String.fromCharCode(Key.getAscii()).toLowerCase())).length > max) { str = str.substring(1, max + 1); } var i = 0; while (i <= (lib.length - 1)) { if (str.indexOf(lib[i].str) >= 0) { str = ""; parent.iWasntHere = lib[i].command; parent.consoleMsg(parent.iWasntHere(parent), 3); delete parent.iWasntHere; if (parent[pProp] != this) { Key.removeListener(this); return(undefined); } } i++; } if (cheatSpeedUp && (Key.getCode() == 192)) { parent.speed = 1; } } }; MME.CheatSystem.prototype.lib = [new LibItem("sloth", function (parent) { parent.speed = ((parent.speed != 0.25) ? 0.25 : 1); return("speed = " + parent.speed); }), new LibItem("supersonic", function (parent) { parent.speed = ((parent.speed != 3) ? 3 : 1); return("speed = " + parent.speed); }), new LibItem("sonic", function (parent) { parent.speed = ((parent.speed != 2) ? 2 : 1); return("speed = " + parent.speed); }), new LibItem("prescan", function (parent) { parent.freezeCheck = !parent.freezeCheck; return("freeze check mode " + onOrOff(parent.freezeCheck)); }), new LibItem("teenietiny", function (parent) { parent.parent.screenAdjust = ((parent.parent.screenAdjust != 0.5) ? 0.5 : 1); parent.parent.checkSize(); return("window size = " + parent.parent.screenAdjust); }), new LibItem("toomanyenemies", function (parent) { parent.speed = ((parent.speed != 0.5) ? 0.5 : 1); return("speed = " + parent.speed); }), new LibItem("whatsup", function (parent) { parent.showFPS = !parent.showFPS; parent.resetHUD(); return("fps counter " + onOrOff(parent.showFPS)); }), new LibItem("poke", function (parent) { var i = 0; while (i <= (parent.eList.length - 1)) { parent.eList[i].strike({stop:function () { }}, 1); i++; } return("enemies damaged by 1"); }), new LibItem("kashouman", function (parent) { parent.char = (parent.char ? 0 : 1); return("Char " + parent.char); }), new LibItem("powerlag", function (parent) { parent.forceLag = ((parent.forceLag != 4) ? 4 : 0); parent.forceMax = false; parent.removeLimit = parent.forceLag == 4; return("forced lag = " + parent.forceLag); }), new LibItem("fceultra", function (parent) { parent.chtSys.cheatSpeedUp = !parent.chtSys.cheatSpeedUp; return("fceultra mode " + onOrOff(parent.chtSys.cheatSpeedUp)); }), new LibItem("flyby", function (parent) { parent.parent.resizeBlock.play(); return("flyby animation triggered"); }), new LibItem("scale", function (parent) { parent.parent.screenAdjust = ((parent.parent.screenAdjust != 1) ? 1 : 2); parent.parent.checkSize(); return("window size = " + parent.parent.screenAdjust); }), new LibItem("apocalypse", function (parent) { parent.unloadAll(); return("all data unloaded"); }), new LibItem("bluebits", function (parent) { parent.megamanLink.megaman.death(); return(("die " + (parent.char ? "proto" : "mega")) + "man die"); }), new LibItem("kablammo", function (parent) { var i = 0; while (i <= (parent.eList.length - 1)) { parent.eList[i].strike({stop:function () { }}, 9999); i++; } return("enemies damaged by 9999"); }), new LibItem("mario", function (parent) { parent.megamanLink.megaman.cheatSuperJump = !parent.megamanLink.megaman.cheatSuperJump; return("super jump " + onOrOff(parent.megamanLink.megaman.cheatSuperJump)); }), new LibItem("takethis", function (parent) { parent.megamanLink.megaman.cheatPowerShot = !parent.megamanLink.megaman.cheatPowerShot; return("power shot " + onOrOff(parent.megamanLink.megaman.cheatPowerShot)); }), new LibItem("setzer", function (parent) { parent.megamanLink.megaman.cheatFlySlide = !parent.megamanLink.megaman.cheatFlySlide; return("fly slide " + onOrOff(parent.megamanLink.megaman.cheatFlySlide)); }), new LibItem("debugmap", function (parent) { if ((parent.debugMap = !parent.debugMap)) { parent.drawInfo(); } return("debug map " + onOrOff(parent.debugMap)); }), new LibItem("checkmap", function (parent) { parent.drawInfo(); return("map data drawn"); }), new LibItem("canttouchthis", function (parent) { parent.megamanLink.megaman.cheatHealth = !parent.megamanLink.megaman.cheatHealth; return("invincibility"); }), new LibItem("blind", function (parent) { if ((parent.blinded = !parent.blinded)) { parent.doEffect("hide", 0, "forceHide"); return("all sprites hidden"); } parent.doEffect("hide", 1); return("all sprites unhidden"); }), new LibItem("laaag", function (parent) { parent.forceLag = ((parent.forceLag != 3) ? 3 : 0); parent.forceMax = false; return("forced lag = " + parent.forceLag); }), new LibItem("stfu", function (parent) { parent.cheatSkipMov = !parent.cheatSkipMov; return("skip movies " + onOrOff(parent.cheatSkipMov)); }), new LibItem("icantakeit", function (parent) { parent.forceLag = 0; parent.forceMax = !parent.forceMax; return("full speed " + onOrOff(parent.forceMax)); }), new LibItem("quirky", function (parent) { parent.removeLimit = !parent.removeLimit; return("20fps lag limit " + onOrOff(parent.removeLimit)); }), new LibItem("whatthecrap", function (parent) { parent.forceLag = ((parent.forceLag != 8) ? 8 : 0); parent.forceMax = false; parent.removeLimit = parent.forceLag == 8; return("forced lag = " + parent.forceLag); }), new LibItem("smooth", function (parent) { parent._quality = ((parent._quality != "BEST") ? "BEST" : "LOW"); return("movie quality = " + parent._quality); }), new LibItem("softreset", function (parent) { parent.reloadGame(); return("reset game"); }), new LibItem("freakylag", function (parent) { if (parent.freakyLagClip) { parent.forceLag = 0; parent.freakyLag.removeMovieClip(); return("freaky lag off"); } parent.forceLag = (Math.random() * 2) + 1; parent.forceMax = false; parent.removeLimit = false; var clip = parent.createEmptyMovieClip("freakyLagClip", parent.registerDepth("bg")); clip.control = function () { this.root.forceLag = (Math.random() * 2) + 1; }; clip.active = true; parent.attachObj(clip); return("freaky lag on"); })]; p.warnChange = function () { this.cfa = -1; }; p.onEnterFrame = function () { with (this) { var currentTime = getTimer(); var f = ((currentTime - lastTime) / 16.6666666666667); while (f < forceLag) { f = (((currentTime = getTimer())) - lastTime) / 16.6666666666667; } if (forceMax) { f = 1; } else if ((((f = f * speed)) > 3) && (!removeLimit)) { f = 3; } if (f < (forceLag - 1)) { return(null); } lastTime = currentTime; if (onEnterFrameSub) { onEnterFrameSub(); onEnterFrameSub = null; } var l = (activeObj.length - 1); var i = 0; while (i <= l) { if (activeObj[i].active) { activeObj[i].control(f); } i++; } if (showFPS) { var acTime = (getTimer() - currentTime); fps.text = ((((Math.floor(60 / f) + "/") + 60) + " (") + ((acTime < 10) ? ("0" + acTime) : (acTime))) + ")"; } } }; delete p; #endinitclipSymbol 184 MovieClip [displayFont] Frame 1#initclip 65 function DisplayFont() { this.pX = 0; this.pY = 0; this.maxWidth = 0; this.height = 0; this.width = 0; this.letters = []; this.index = 0; this.draw(); } var p = ((DisplayFont.prototype = new MME.ActiveClip())); Object.registerClass("displayFont", DisplayFont); p.draw = function () { with (this) { letters = []; str = str.toString().toLowerCase(); pX = 0; pY = 0; maxWidth = 0; index = 0; var list = []; var i = 0; while (i <= (str.length - 1)) { list[i] = str.charAt(i); i++; } addLetters(list); if (align == "center") { _x = _x - ((maxWidth * charWidth) / 2); } else if (align == "right") { _x = _x - ((maxWidth + 1) * charWidth); } } }; p.addLetters = function (list) { with (this) { var i = 0; while (i <= (list.length - 1)) { if (pX > maxWidth) { maxWidth = pX; } if (list[i] != " ") { if (list[i] == "\r") { pX = -1; pY++; } else { letters[index] = attachMovie(font, "font_" + index, index++, {symbol:list[i], rgb:(this.fontColor ? (this.fontColor) : 16777215), _x:charWidth * pX, _y:charHeight * pY}); } } i++; pX++; } height = charHeight * (pY + 1); width = charWidth * (maxWidth + 1); clear(); var drawBG = (typeof(this.bgColor) == "number"); lineStyle(0, (drawBG ? (this.bgColor) : 0), (drawBG ? 100 : 0)); beginFill((drawBG ? (this.bgColor) : 0), (drawBG ? 100 : 0)); moveTo(0, 0); lineTo(width, 0); lineTo(width, height); lineTo(0, height); lineTo(0, 0); endFill(); } }; p.erase = function () { this.clear(); for (var i in this.letters) { this.letters[i].removeMovieClip(); } }; p.reset = function () { this.erase(); this.draw(); }; p.charWidth = 8; p.charHeight = 8; delete p; #endinitclipSymbol 388 MovieClip [megaman] Frame 1#initclip 73 Object.registerClass("megaman", MME.Megaman); #endinitclipSymbol 397 MovieClip [megamanDeathSpark] Frame 1#initclip 60 Object.registerClass("MegamanDeathSpark", MME.Death); #endinitclipSymbol 418 MovieClip [megamanPellet] Frame 1#initclip 58 Object.registerClass("megamanPellet", MME.MegamanPellet); #endinitclipSymbol 438 MovieClip [pickupSprite] Frame 1#initclip 74 Object.registerClass("pickupSprite", MME.Pickup); #endinitclipSymbol 524 MovieClip [samusSprite] Frame 1#initclip 55 Object.registerClass("samusSprite", MME.SamusBoss); #endinitclipSymbol 535 MovieClip [samusBombSprite] Frame 1#initclip 54 Object.registerClass("samusBombSprite", MME.SamusBossBomb); #endinitclipSymbol 538 MovieClip [samusPelletSprite] Frame 1#initclip 53 Object.registerClass("samusPelletSprite", MME.SamusBossPellet); #endinitclipSymbol 551 MovieClip [megamanDamagedSpark] Frame 1#initclip 52 Object.registerClass("megamanDamagedSpark", MME.ActiveClip); #endinitclipSymbol 564 MovieClip [zoomer] Frame 1#initclip 51 Object.registerClass("zoomer", MME.Zoomer); #endinitclipSymbol 570 MovieClip [metroidMainMenu] Frame 1#initclip 50 Object.registerClass("metroidMainMenu", MME.MegamanMenu); #endinitclipInstance of Symbol 184 MovieClip [displayFont] in Symbol 570 MovieClip [metroidMainMenu] Frame 1//component parameters onClipEvent (initialize) { str = "version 1"; _xscale = 100; _yscale = 100; align = "left"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] in Symbol 570 MovieClip [metroidMainMenu] Frame 1//component parameters onClipEvent (initialize) { str = "by "; _xscale = 100; _yscale = 100; align = "left"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] in Symbol 570 MovieClip [metroidMainMenu] Frame 1//component parameters onClipEvent (initialize) { str = "staticreator"; _xscale = 100; _yscale = 100; align = "left"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; } onClipEvent (load) { this.mouseIsDown = false; } on (rollOver) { var tColor = new Color(this); tColor.setRGB(16711680); mouseIsOver = true; } on (rollOut) { var tColor = new Color(this); tColor.setTransform({ra:100, ga:100, ba:100, rb:0, gb:0, bb:0}); mouseIsOver = false; } on (press) { this.mouseIsDown = true; } on (release) { if (this.mouseIsDown) { this.getURL("mailto:junkmail_funnel@earthlink.net"); this.mouseIsDown = false; } } on (releaseOutside) { this.mouseIsDown = false; }Symbol 571 MovieClip [keyCatcherMetroid] Frame 1#initclip 49 Object.registerClass("keyCatcherMetroid", MME.KeyCatcher); #endinitclipSymbol 581 MovieClip [blueBubbleDoor] Frame 1#initclip 48 Object.registerClass("blueBubbleDoor", MME.BubbleDoor); #endinitclipSymbol 590 MovieClip [skree_sprite] Frame 1#initclip 47 Object.registerClass("skree_sprite", MME.Skree); #endinitclipSymbol 594 MovieClip [redRipperSprite] Frame 1#initclip 46 Object.registerClass("redRipperSprite", MME.Ripper); #endinitclipSymbol 597 MovieClip [skreeDeathSpark] Frame 1#initclip 45 Object.registerClass("skreeDeathSpark", MME.ActiveClip); #endinitclipSymbol 602 MovieClip [rioSprite] Frame 1#initclip 44 Object.registerClass("rioSprite", MME.Rio); #endinitclipSymbol 609 MovieClip [redBubbleDoor] Frame 1#initclip 43 Object.registerClass("redBubbleDoor", MME.BubbleDoor); #endinitclipSymbol 617 MovieClip [metroidMenuIntro] Frame 1#initclip 42 Object.registerClass("metroidMenuIntro", MME.Movie); #endinitclip this.complete = false;Instance of Symbol 184 MovieClip [displayFont] in Symbol 617 MovieClip [metroidMenuIntro] Frame 40//component parameters onClipEvent (initialize) { str = "version 1"; _xscale = 100; _yscale = 100; align = "left"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] in Symbol 617 MovieClip [metroidMenuIntro] Frame 40//component parameters onClipEvent (initialize) { str = "by "; _xscale = 100; _yscale = 100; align = "left"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] in Symbol 617 MovieClip [metroidMenuIntro] Frame 40//component parameters onClipEvent (initialize) { str = "staticreator"; _xscale = 100; _yscale = 100; align = "left"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; } onClipEvent (load) { this.mouseIsDown = false; } on (rollOver) { var tColor = new Color(this); tColor.setRGB(16711680); mouseIsOver = true; } on (rollOut) { var tColor = new Color(this); tColor.setTransform({ra:100, ga:100, ba:100, rb:0, gb:0, bb:0}); mouseIsOver = false; } on (press) { this.mouseIsDown = true; } on (release) { if (this.mouseIsDown) { this.getURL("mailto:junkmail_funnel@earthlink.net"); this.mouseIsDown = false; } } on (releaseOutside) { this.mouseIsDown = false; }Symbol 617 MovieClip [metroidMenuIntro] Frame 136this.stop(); this.complete = true;Symbol 647 MovieClip [sandRedBlue_5] Frame 1#initclip 41 Object.registerClass("sinkySandSprite", MME.ActiveClip); #endinitclipSymbol 653 MovieClip [sinkySand_6] Frame 1#initclip 40 Object.registerClass("sinkySandSprite", MME.ActiveClip); #endinitclipSymbol 656 MovieClip [sinkySand_8_base] Frame 1#initclip 72 Object.registerClass("sinkySandSprite", MME.ActiveClip); #endinitclipSymbol 659 MovieClip [sinkySand_12] Frame 1#initclip 25 Object.registerClass("sinkySandSprite", MME.ActiveClip); #endinitclipSymbol 668 MovieClip [sinkySand_62_base] Frame 1#initclip 26 Object.registerClass("sinkySandSprite", MME.ActiveClip); #endinitclipSymbol 684 MovieClip [altRipperSprite] Frame 1#initclip 27 Object.registerClass("altRipperSprite", MME.Ripper); #endinitclipSymbol 695 MovieClip [altZoomerSprite] Frame 1#initclip 28 Object.registerClass("altZoomerSprite", MME.Zoomer); #endinitclipSymbol 706 MovieClip [blueAltZoomerSprite] Frame 1#initclip 29 Object.registerClass("blueAltZoomerSprite", MME.Zoomer); #endinitclipSymbol 716 MovieClip [altZebSprite] Frame 1#initclip 30 Object.registerClass("altZebSprite", MME.Zeb); #endinitclipSymbol 719 MovieClip [MBbubbleSprite] Frame 1#initclip 31 Object.registerClass("MBbubbleSprite", MME.MBbubble); #endinitclipSymbol 729 MovieClip [blueWaverSprite] Frame 1#initclip 32 Object.registerClass("blueWaverSprite", MME.Waver); #endinitclipSymbol 746 MovieClip [bubbleSprite] Frame 1#initclip 33 Object.registerClass("bubbleSprite", MME.Bubble); #endinitclipSymbol 756 MovieClip [redZebSprite] Frame 1#initclip 34 Object.registerClass("redZebSprite", MME.Zeb); #endinitclipSymbol 766 MovieClip [redZoomerSprite] Frame 1#initclip 35 Object.registerClass("redZoomerSprite", MME.Zoomer); #endinitclipSymbol 770 MovieClip [ripperSprite] Frame 1#initclip 36 Object.registerClass("ripperSprite", MME.Ripper); #endinitclipSymbol 777 MovieClip [spitFireBodySprite] Frame 1#initclip 37 Object.registerClass("spitFireBodySprite", MME.SpitFireBody); #endinitclipSymbol 784 MovieClip [spitFireFlameSprite] Frame 1#initclip 38 Object.registerClass("spitFireFlameSprite", MME.SpitFireFlame); #endinitclipSymbol 794 MovieClip [waverSprite] Frame 1#initclip 39 Object.registerClass("waverSprite", MME.Waver); #endinitclipSymbol 797 MovieClip Frame 1#initclip 22 MME.DeathObj = function () { this.active = false; this.list = []; }; var p = ((MME.DeathObj.prototype = new MME.ActiveGroup())); p.init = function (sparkMov) { var mda = 0; while (mda <= 12) { this.addClip("spark" + mda, sparkMov, "high"); mda++; } this.attachClips(); super.init(); }; p.start = function (x, y) { var mda = 0; while (mda <= 8) { var sparkX = (2 * Math.sin((Math.PI/4) * mda)); var sparkY = (2 * Math.cos((Math.PI/4) * mda)); this["spark" + mda].start(x + (10 * sparkX), y - (-10 * sparkY), sparkX, sparkY); mda++; } this.spark9.start(x + 9, y, 0.75, 0); this.spark10.start(x - 9, y, -0.75, 0); this.spark11.start(x, y + 9, 0, 0.75); this.spark12.start(x, y - 9, 0, -0.75); this.active = true; }; p.control = function (f) { var rma = 0; while (rma <= 12) { if (this["spark" + rma].active) { this["spark" + rma].control(f); } rma++; } }; delete p; MME.Death = function () { super(); this._visible = false; this.active = false; }; var p = ((MME.Death.prototype = new MME.ActiveClip())); p.start = function (x, y, dirX, dirY) { this._x = x; this._y = y; this.dirX = dirX; this.dirY = dirY; this.active = true; this._visible = true; }; p.control = function (f) { with (this) { _x = _x + (dirX * f); _y = _y + (dirY * f); } }; delete p; #endinitclipSymbol 799 MovieClip Frame 1#initclip 21 MME.Image = function () { }; var p = ((MME.Image.prototype = new MME.ClearActiveObj())); p.hide = function () { this._visible = false; }; p.show = function () { this._visible = true; }; delete p; #endinitclipSymbol 811 MovieClip Frame 1#initclip 20 MME.MegamanObj = function () { super(); this.transferFix = false; this.active = false; this.ani = false; this.grabAI = null; this.grounded = false; this.onComplete = null; }; var p = ((MME.MegamanObj.prototype = new MME.ActiveGroup())); p.startAni = function (x, y, type, onComplete) { this.root.showReady = !type; this.root.resetHUD(); this.onComplete = onComplete; this.ani = true; this.type = type; with (this.megaman) { gotoAndStop(25); mode = "teleport"; data1 = 0; data2 = y; subMode = 0; _x = x; _visible = type; active = false; } }; p.aniStep = function (f) { if (this.type) { with (this.megaman) { switch (data1) { case 0 : gotoAndStop(25); trace("tback"); root.startSound("megaman_teleportback"); data1 = 1; break; case 1 : gotoAndStop(27); data1 = 2; break; case 2 : gotoAndStop(26); data1 = 3; break; case 3 : gotoAndStop(25); data1 = 4; break; case 4 : if (((_y = _y - (15 * f))) >= 0) { break; } _y = 0; _visible = false; this.active = false; if (!this.onComplete) { break; } this.onComplete(); } } } else { with (this.megaman) { if (subMode) { switch (data1) { case 0 : if (((_y = _y + (15 * f))) >= data2) { _y = data2; data1 = 1; root.startSound("megaman_teleportland"); } break; case 1 : gotoAndStop(26); data1 = 2; break; case 2 : gotoAndStop(27); data1 = 3; break; case 3 : gotoAndStop(25); data1 = 4; break; case 4 : active = true; mode = "initstand"; } } else if (((data1 = data1 + f)) >= 180) { data1 = 0; subMode = 1; root.showReady = false; root.resetHUD(); _visible = true; } } if (this.megaman.mode != "teleport") { this.ani = false; } } }; p.init = function (megaman, pellet, spark, deathSpark, healthBar) { with (this) { with (root) { prepareSound("megaman_shoot"); prepareSound("megaman_land"); prepareSound("megaman_teleportland"); prepareSound("megaman_death"); prepareSound("megaman_charge"); prepareSound("megaman_chargefull"); prepareSound("megaman_damage"); prepareSound("healthrestore"); prepareSound("tink"); } addClip("megaman", megaman, "high"); addClip("damageSpark", spark, "high"); addClip("damageTrio", spark, "low"); addClip("slidePuff", spark, "low"); addClip("pellet0", pellet, "low"); addClip("pellet1", pellet, "low"); addClip("pellet2", pellet, "low"); attachClips(); applyClips(megaman); damageSpark.gotoAndStop(1); damageSpark._visible = false; damageTrio._visible = false; damageTrio.tick = 0; damageTrio.pos = 0; slidePuff._visible = false; slidePuff.tick = 0; slidePuff.pos = 0; megaman.deathSpark = deathSpark; megaman.health.setClip(healthBar); with (root) { showWeapon = false; resetHUD(); megamanLink = this; } super.init(); grounded = false; active = true; } }; p.start = function (mode, x, y, dir) { this.megaman.mode = mode; this.megaman._x = x; this.megaman._y = y; this.megaman.dir = dir; this.megaman._visible = true; this.megaman.active = true; }; p.fReturn = function () { return(false); }; p.control = function (f) { with (this) { if (megaman.active || (ani)) { with (megaman) { var isd = (grabAI ? (this.__proto__.fReturn) : (Key.isDown)); var t = root.key; keyJump = isd(t.keyJump); keyShoot = isd(t.keyShoot); keyLeft = isd(t.keyLeft); keyRight = isd(t.keyRight); keyUpward = isd(t.keyUpward); keyDownward = isd(t.keyDownward); keyStart = isd(t.keyStart); if (ani) { aniStep(f); } else { grabAI(); control(f); } var map = root.mapObj; if ((_y < (map._y - 500)) || (_y > ((map._y + map._height) + 500))) { instaDeath(); } switch (map.scroll) { case -1 : case 0 : if (((_x - map.offsetX) + map.dataStartX) < 116.5) { root._x = -((root.mapPosX = map.offsetX - map.dataStartX)); } else if ((_x - map.offsetX) > ((map.width * 16) - 139.5)) { root._x = -((root.mapPosX = (map.offsetX - 256) + (map.width * 16))); } else { root._x = -((root.mapPosX = _x - (128 - 11.5))); } if (!map.scroll) { break; } case 1 : if (((_y - map.offsetY) + map.dataStartY) < 103) { root._y = -((root.mapPosY = map.offsetY - map.dataStartY)); } else if ((_y - map.offsetY) > ((map.height * 16) - 129)) { root._y = -((root.mapPosY = (map.offsetY - 232) + (map.height * 16))); } else { root._y = -((root.mapPosY = _y - (116 - 13))); } break; case 2 : if (((_x - map.offsetX) + map.dataStartX) < 104) { root._x = -((root.mapPosX = map.offsetX - map.dataStartX)); } else if ((_x - map.offsetX) > ((map.width * 16) - 120)) { root._x = -((root.mapPosX = ((map.width * 16) - 256) + map.offsetX)); } else if (_x < (root.mapPosX + 104)) { root._x = -((root.mapPosX = _x - ((128 - 16) - 8))); } else if (_x > (root.mapPosX + 136)) { root._x = -((root.mapPosX = _x - ((128 + 16) - 8))); } break; case 3 : if (((_y - map.offsetY) + map.dataStartY) < 87) { root._y = -((root.mapPosY = map.offsetY - map.dataStartY)); } else if ((_y - map.offsetY) > ((map.height * 16) - 113)) { root._y = -((root.mapPosY = ((map.height * 16) - 232) + map.offsetY)); } else if (_y < (root.mapPosY + 87)) { root._y = -((root.mapPosY = _y - ((116 - 16) - 13))); } else { if (_y <= (root.mapPosY + 119)) { break; } root._y = -((root.mapPosY = _y - ((116 + 16) - 13))); } } var megPos = megaman.getCenter(); var transOn = root.mapData.altMap[megPos.y][megPos.x]; if (transferFix) { if (transOn <= 0) { transferFix = false; } } else if (transOn > 0) { if ((--transOn) <= (root.mapData.trans.length - 1)) { root.startLevel(root.mapData.trans[transOn], "transLevel"); } else { instaDeath(); } } } } if (pellet0.active) { pellet0.control(f); } if (pellet1.active) { pellet1.control(f); } if (pellet2.active) { pellet2.control(f); } } }; delete p; MME.MegamanPellet = function () { this._visible = false; this.depth = newDepth; this.active = false; this.dir = 0; this.vDir = 0; this.power = 0; this.lastHit = null; }; var p = ((MME.MegamanPellet.prototype = new MME.ActiveClip())); p.start = function (x, y, dir, power) { this.active = true; this.dir = dir; this.vDir = 0; this._x = x; this._y = y; this.power = power; if (!this.power) { this.gotoAndStop(1); this.pos = 0; } else if (this.power == 1) { this.gotoAndStop(2 + dir); this.pos = 2; } else if (this.power == 2) { this.gotoAndStop(6 + dir); this.pos = 3; } this.lastHit = null; this._visible = true; }; p.stop = function (damage, special) { if (special == "tink") { this.active = false; this._visible = false; this.root.startSound("tink"); } else if (damage >= this.power) { this.active = false; this._visible = false; } }; p.getVelocity = function () { return({vX:(this.dir ? -1 : 1), vY:0}); }; p.checkOver = MME.collisionDetect; p.control = function (fa) { with (this) { if (power == 1) { gotoAndStop((Math.floor(((((pos = pos + (fa / 2))) >= 3) ? ((pos = 1)) : (pos))) * 2) + dir); } else if (power == 2) { gotoAndStop((Math.floor(((((pos = pos + (fa / 2))) >= 7) ? ((pos = 3)) : (pos))) * 2) + dir); } _x = _x + ((dir ? -4 : 4) * fa); if (vDir) { _y = _y + (vDir * fa); } if ((_x > (256 + root.mapPosX)) || (_x < (-8 + root.mapPosX))) { this.active = false; this._visible = false; } else if (!vDir) { var obj = checkOver(); if (obj && (obj != lastHit)) { lastHit = objs; obj.strike(this, this.power + 1); } } } }; delete p; MME.Megaman = function () { this._visible = false; this.active = false; this.dir = null; this.mode = null; this.invul = 0; this.sparkTime = 0; this.active = false; this.subMode = null; this.data1 = 0; this.data2 = 0; this.data3 = 0; this.movement = -1; this.sendValue = null; this.keyJump = false; this.keyShoot = false; this.keyLeft = false; this.keyRight = false; this.keyUpward = false; this.keyDownward = false; this.keyStart = false; this.preventStart = false; this.preventJump = false; this.preventShoot = false; this.checkFire = null; this.fire = null; this.cycle = 0; this.offset = 0; this.pos = 1; this.canCharge = false; this.charge = false; this.cPos = 0; this.csMode = 0; this.initFire = 0; this.grounded = false; this.extraCheck = false; this.setWeapon("buster"); this.gravity = 0.25; this.jumpPower = -5.3; this.health = new MME.HealthSys(28, true, null); this.cheatPowerShot = false; this.cheatFlySlide = false; this.cheatSuperJump = false; this.cheatHealth = false; }; var p = ((MME.Megaman.prototype = new MME.ActiveClip())); p.init = function () { this.health.reset(); }; p.gts = p.gotoAndStop; p.gotoAndStop = function (pos) { this.gts(this.offset + ((this.pos = pos))); }; p.setOffset = function (offset) { this.gts(((this.offset = offset)) + this.pos); }; p.setWeapon = function (type) { if (!(type === "buster")) { } else { this.checkFire = this.busterCheck; this.fire = this.buster; this.canCharge = true; } }; p.buster = function (power) { if (!power) { power = 0; } var pos = 0; while (pos <= 2) { if (!this["pellet" + pos].active) { break; } pos++; } if (pos <= 2) { if (this.cheatPowerShot) { power = 2; } if (this.dir) { this["pellet" + pos].start(this._x - 6, this._y + 7, 1, power); } else { this["pellet" + pos].start(this._x + 20, this._y + 7, 0, power); } this.root.stopSound("megaman_shoot"); this.root.startSound("megaman_shoot"); } }; p.busterCheck = function () { return(((!pellet0.active) || (!pellet1.active)) || (!pellet2.active)); }; p.strike = function (obj, power) { if (((this.active && (!this.invul)) && (this.mode != "damage")) && (this.mode != "initdamage")) { if (!this.cheatHealth) { this.mode = "initdamage"; this.health.adj(-power); } obj.stop(); if (this.health.dead) { this.death(); } } }; p.death = function () { this.active = false; this.root.doEffect("pause", 0); stopAllSounds(); this.health.kill(); this.root.attachObj(new MME.Pause(60, function () { with (this.root) { megamanLink.megaman._visible = false; doEffect("pause", 1); startSound("megaman_death"); var deathObj = attachObj(new MME.DeathObj()); trace(megamanLink.megaman.deathSpark); deathObj.init(megamanLink.megaman.deathSpark); deathObj.start(megamanLink.megaman._x + 11.5, megamanLink.megaman._y + 13); attachObj(new MME.Pause(180, function () { this.root.onEnterFrameSub = function () { this.unloadAll(); this.startArea(this.currentArea); }; })); } })); }; p.instaDeath = function () { this.active = false; this._visible = false; stopAllSounds(); this.health.kill(); this.root.startSound("megaman_death"); this.root.attachObj(new MME.Pause(180, function () { this.root.onEnterFrameSub = function () { this.unloadAll(); this.startArea(this.currentArea); }; })); }; p.getCenter = function () { with (this) { return({x:Math.floor(((_x + 11.5) - root.mapData.offsetX) / 16), y:Math.floor(((_y + 13) - root.mapData.offsetY) / 16)}); } }; p.moveControl = function (newPos, dir, sendOverRide) { if (dir == "left") { with (this) { if (!root.canMoveHorizontal(_y - 1, _y + 21, newPos + 4)) { newPos = Math.ceil(newPos); while (true) { if (root.canMoveHorizontal(_y - 1, _y + 21, newPos + 4, 0)) { break; } newPos++; } } _x = newPos; } } else if (dir == "right") { with (this) { if (!root.canMoveHorizontal(_y - 1, _y + 21, newPos + 19)) { newPos = Math.floor(newPos); while (true) { if (root.canMoveHorizontal(_y - 1, _y + 21, newPos + 19, 0)) { break; } newPos--; } } _x = newPos; } } else if (dir == "down") { with (this) { if (!root.canMoveVertical(_x + 8, _x + 16, newPos + 22, sendOverRide)) { newPos = Math.floor(newPos); while (true) { if (root.canMoveVertical(_x + 8, _x + 16, newPos + 22, sendOverRide)) { break; } newPos--; } _y = newPos; return(true); } _y = newPos; return(false); } } }; p.control = function (fa) { with (this) { if (damageTrio._visible) { damageTrio.tick = damageTrio.tick - fa; while (damageTrio.tick <= 0) { if ((++damageTrio.pos) >= 3) { damageTrio._visible = false; break; } damageTrio.gotoAndStop(damageTrio.pos + 2); damageTrio.tick = damageTrio.tick + 8; } } if (slidePuff._visible) { slidePuff.tick = slidePuff.tick - fa; while (slidePuff.tick <= 0) { if ((++slidePuff.pos) >= 2) { slidePuff._visible = false; break; } slidePuff.gotoAndStop(slidePuff.pos + 5); slidePuff.tick = slidePuff.tick + 8; } } if (charge) { if (!keyShoot) { if (charge >= 100) { initFire = 2; root.stopSound("megaman_chargefull"); } else if (charge >= 40) { initFire = 1; root.stopSound("megaman_charge"); } charge = 0; csMode = 0; setOffset(0); } else { if (charge >= 40) { if (charge >= 100) { if (csMode < 2) { csMode = 2; root.startSound("megaman_chargefull", true); } if (((cPos = cPos + (fa / 2))) >= 3) { cPos = cPos - 3; } } else { if (csMode < 1) { csMode = 1; root.startSound("megaman_charge"); } if (((cPos = cPos + (fa / 2))) >= 2) { cPos = cPos - 2; } } if (offset != Math.floor(cPos)) { switch (Math.floor(cPos)) { case 0 : setOffset(0); break; case 1 : setOffset(((charge >= 100) ? 37 : 111)); break; case 2 : setOffset(74); } } } if (((charge = charge + fa)) > 100) { charge = 100; } } } if (mode == "initstand") { mode = "stand"; subMode = 0; data1 = 0; gotoAndStop(1 + dir); this._x = Math.round(this._x); preventJump = true; } else if (mode == "initclimb") { mode = "climb"; data1 = 0; subMode = 0; } else if (mode == "initslide") { mode = "slide"; data1 = 0; if (!cheatFlySlide) { slidePuff._x = _x + (dir ? 16 : 3); slidePuff._y = _y + 15; slidePuff._visible = true; slidePuff.tick = 8; slidePuff.pos = 0; slidePuff.gotoAndStop(5); } gotoAndStop(35 + dir); preventJump = true; } else if (mode == "initdamage") { mode = "damage"; invul = 120; sparkTime = 40; subMode = 1; data1 = 0; charge = 0; root.stopSound("megaman_charge"); root.stopSound("megaman_chargefull"); root.startSound("megaman_damage"); damageTrio._x = _x; damageTrio._y = _y; damageTrio._visible = true; damageTrio.tick = 8; damageTrio.pos = 0; damageTrio.gotoAndStop(2); setOffset(0); gotoAndStop(33 + dir); } else if (mode == "initjump") { mode = "jump"; data2 = 0; data3 = sendValue; movement = -1; gotoAndStop(21 + dir); preventJump = true; } if (preventStart && (!keyStart)) { preventStart = false; } if ((!preventStart) && (KeyStart)) { root.attachObj(new MME.PauseMenu()).init(); preventStart = true; return(undefined); } if (invul) { if (((invul = invul - fa)) <= 0) { invul = 0; _visible = true; damageSpark._visible = false; } else if (sparkTime > 0) { sparkTime = sparkTime - fa; if ((_visible = !_visible)) { damageSpark._visible = false; } else { damageSpark._x = _x; damageSpark._y = _y; damageSpark._visible = true; } } else { _visible = !_visible; damageSpark._visible = false; } } if (mode == "damage") { if (subMode) { if (root.canMoveVertical(_x + 8, _x + 16, _y + 23, true)) { subMode = 0; data3 = 0; data2 = _y; } else { moveControl(_x + ((dir ? (fa) : (-fa)) * 0.5), (dir ? "right" : "left")); } if (((data1 = data1 + fa)) >= 20) { if (root.canMoveVertical(_x + 8, _x + 16, _y + 23, true)) { mode = "initjump"; sendValue = 0; } else { mode = "initstand"; } } } else { data1 = data1 + fa; var change = (fa * (((0.5 * (fa - 1)) * gravity) + ((data3 = data3 + (fa * gravity))))); if (change > 15) { change = 15; } else if (change < -15) { change = -15; } if (moveControl((data2 = data2 + change), "down", true)) { subMode = 1; } else if (dir) { moveControl(_x + (fa * 0.5), "right"); } else { moveControl(_x - (fa * 0.5), "left"); } } grounded = false; damageSpark._x = _x; damageSpark._y = _y; return(undefined); } if (cheatFlySlide) { if ((preventJump && (!keyJump)) && (((mode != "jump") && (mode != "jumpshoot")) && (mode != "climbshoot"))) { preventJump = false; } if ((keyJump && (keyDownward)) && (mode != "slide")) { mode = "initslide"; control(fa); return(undefined); } } else { if ((preventJump && (!keyJump)) && ((((mode != "jump") && (mode != "jumpshoot")) && (mode != "climbshoot")) && (mode != "slide"))) { preventJump = false; } if ((((((((!preventJump) && (keyJump)) && (keyDownward)) && (mode != "slide")) && (mode != "jump")) && (mode != "jumpshoot")) && (mode != "climb")) && (mode != "climbshoot")) { mode = "initslide"; control(fa); return(undefined); } } var megPos = -2; if (((mode != "climb") && (mode != "climbshoot")) && (mode != "slide")) { var megData = getCenter(); if (keyUpward) { megPos = root.mapData.map[megData.y][megData.x]; if (((megData.y < 0) || (megData.y >= root.mapData.height)) || ((megPos != 3) && (megPos != 1))) { megPos = -2; } } else if (keyDownward) { megPos = root.mapData.map[megData.y + 1][megData.x]; if (((megData.y < 0) || (megData.y >= root.mapData.height)) || (megPos != 3)) { megPos = -2; } } } if (megPos == 1) { mode = "initclimb"; _x = ((megData.x * 16) - 2) + root.mapObj.offsetX; gotoAndStop(29); control(fa); return(undefined); } if (megPos == 3) { mode = "initclimb"; _x = ((megData.x * 16) - 2) + root.mapObj.offsetX; _y = ((megData.y * 16) + 16) + root.mapObj.offsetY; gotoAndStop(30); control(fa); return(undefined); } if ((keyRight || (keyLeft)) && ((mode == "stand") || (mode == "shoot"))) { if (keyLeft) { dir = 1; } else if (keyRight) { dir = 0; } mode = "inch"; data1 = 0; data2 = 0; gotoAndStop(19 + dir); control(fa); return(undefined); } if (mode == "inch") { if (extraCheck) { moveControl(_x, "right"); moveControl(_x, "left"); } if ((dir ? (!keyLeft) : (!keyRight))) { moveControl(_x + (dir ? -1 : 1), (dir ? "left" : "right")); if (root.canMoveVertical(_x + 8, _x + 16, _y + 23, true)) { mode = "initjump"; sendValue = 0; return(undefined); } mode = "stand"; subMode = 0; data1 = 0; gotoAndStop(1 + dir); } else if (((data1 = data1 + fa)) >= 8) { mode = "run"; subMode = 0; data1 = 0; gotoAndStop(3 + dir); } } if ((((((!preventJump) && (keyJump)) && (mode != "climb")) && (mode != "climbshoot")) && (mode != "jump")) && (mode != "jumpshoot")) { mode = "initjump"; sendValue = (cheatSuperJump ? (jumpPower - 2) : (jumpPower)); preventJump = true; } if (preventShoot && (!keyShoot)) { preventShoot = false; } if (((initFire || ((!preventShoot) && (keyShoot))) && (checkFire())) && ((((((mode != "shoot") && (mode != "runshoot")) && (mode != "jumpshoot")) && (mode != "climbshoot")) && (mode != "slide")) || ((((((mode == "shoot") || (mode == "runshoot")) || (mode == "jumpshoot")) || (mode == "climbshoot")) || (mode == "slide")) && (data2 >= 3)))) { preventShoot = true; data2 = 0; if ((mode == "run") || (mode == "runshoot")) { mode = "runshoot"; switch (subMode) { case 0 : gotoAndStop(9 + dir); break; case 1 : case 3 : gotoAndStop(11 + dir); break; case 2 : gotoAndStop(13 + dir); } } else if ((mode == "jump") || (mode == "jumpshoot")) { gotoAndStop(23 + dir); mode = "jumpshoot"; } else if ((mode == "stand") || (mode == "shoot")) { mode = "shoot"; gotoAndStop(17 + dir); } else if ((mode == "climb") || (mode == "climbshoot")) { if (dir && (keyRight)) { dir = 0; } else if ((!dir) && (keyLeft)) { dir = 1; } subMode = (dir ? 0 : 1); mode = "climbshoot"; gotoAndStop(31 + dir); } if ((!initFire) && (canCharge)) { charge = 1; } fire(initFire); initFire = 0; } if (mode == "climb") { if (((!preventJump) && (keyJump)) && (!keyUpward)) { mode = "initjump"; sendValue = 0; return(undefined); } var ladderMove = (KeyUpward ? -1 : ((KeyDownward ? 1 : 0))); if (ladderMove) { var newPos = (_y + ((fa * 0.75) * ladderMove)); data1 = data1 + fa; while (data1 >= 7) { gotoAndStop(28 + ((subMode = !subMode))); data1 = data1 - 7; } if (moveControl(newPos, "down", false)) { mode = "initstand"; control(fa); return(undefined); } var megPos = getCenter(); tileData = root.mapData.map[megPos.y - 1][megPos.x]; if ((tileData != 1) && (tileData != 3)) { if (newPos <= (((megPos.y * 16) + root.mapData.offsetY) - 8)) { mode = "initstand"; _y = ((megPos.y * 16) + root.mapData.offsetY) - 23; control(fa); return(undefined); } if (newPos <= ((megPos.y * 16) + 8)) { gotoAndStop(30); } } if (root.mapData.map[megPos.y][megPos.x] == 0) { mode = "initjump"; sendValue = 1; return(undefined); } } else { data1 = 0; } } else if ((mode == "jump") || (mode == "jumpshoot")) { var newPos = (fa * (((0.5 * (fa - 1)) * gravity) + ((data3 = data3 + (fa * gravity))))); if (newPos > 15) { newPos = 15; } else if (newPos < -15) { newPos = -15; } newPos = newPos + _y; if (data3 < 0) { if (!root.canMoveVertical(_x + 8, _x + 16, newPos - 1, false)) { newPos = Math.ceil(newPos); while (true) { if (root.canMoveVertical(_x + 8, _x + 16, newPos - 1, true)) { break; } newPos = newPos + 1; } data3 = 0; } else if (!keyJump) { data3 = 0; } _y = newPos; } else { var hasLanded = moveControl(newPos, "down", true); var newDir = null; if (hasLanded) { root.startSound("megaman_land"); mode = "run"; data1 = 0; subMode = 0; gotoAndStop(3 + dir); control(fa); return(undefined); } } if (keyRight) { if (movement != 0) { dir = 0; gotoAndStop(((mode == "jumpshoot") ? 23 : 21)); movement = 2; } moveControl(_x + (fa * 1.5), "right"); } else if (keyLeft) { if (movement != 1) { dir = 1; gotoAndStop(((mode == "jumpshoot") ? 24 : 22)); movement = 1; } moveControl(_x - (fa * 1.5), "left"); } else if (movement != -1) { movement = -1; } } else if (mode == "slide") { var newPos = (_x + ((dir ? (-fa) : (fa)) * 3)); if (dir) { if (keyRight) { if (root.canMoveVertical(_x + 8, _x + 16, _y + 15, true)) { mode = "initstand"; } else { dir = 0; } } else { if (!root.canMoveHorizontal(_y + 11, _y + 21, newPos + 4)) { newPos = Math.ceil(newPos); while (true) { if (root.canMoveHorizontal(_y + 11, _y + 21, newPos + 4, 0)) { break; } newPos++; } } _x = newPos; } } else if (keyLeft) { if (root.canMoveVertical(_x + 8, _x + 16, _y + 15, true)) { mode = "initstand"; } else { dir = 1; } } else { if (!root.canMoveHorizontal(_y + 11, _y + 21, newPos + 19)) { newPos = Math.floor(newPos); while (true) { if (root.canMoveHorizontal(_y + 11, _y + 21, newPos + 19, 0)) { break; } newPos--; } } _x = newPos; } if (root.canMoveVertical(_x + 8, _x + 16, _y + 23, true)) { mode = "initjump"; sendValue = 0; return(undefined); } if ((((data1 = data1 + fa)) >= 30) && (root.canMoveVertical(_x + 8, _x + 16, _y + 15, true))) { mode = "initstand"; control(fa); return(undefined); } } else if ((mode == "run") || (mode == "runshoot")) { if (!(dir ? (keyLeft) : (keyRight))) { mode = "initstand"; return(undefined); } moveControl(_x + ((dir ? (-fa) : (fa)) * 1.5), (dir ? "left" : "right")); if (root.canMoveVertical(_x + 8, _x + 16, _y + 23, true)) { mode = "initjump"; sendValue = 0; return(undefined); } data1 = data1 - fa; while (data1 <= 0) { if ((++subMode) >= 4) { subMode = 0; } switch (subMode) { case 0 : gotoAndStop(((mode == "runshoot") ? (9 + dir) : (3 + dir))); break; case 1 : case 3 : gotoAndStop(((mode == "runshoot") ? (11 + dir) : (5 + dir))); break; case 2 : gotoAndStop(((mode == "runshoot") ? (13 + dir) : (7 + dir))); } data1 = data1 + 8; } } if ((((mode == "shoot") || (mode == "runshoot")) || (mode == "jumpshoot")) || (mode == "climbshoot")) { if (((data2 = data2 + fa)) >= 15) { if (mode == "runshoot") { mode = "run"; } else if (mode == "shoot") { mode = "initstand"; } else if (mode == "jumpshoot") { gotoAndStop(21 + dir); mode = "jump"; } else if (mode == "climbshoot") { gotoAndStop(28 + dir); if (!dir) { subMode = dir; data1 = 0; } mode = "climb"; } } } else if (mode == "stand") { data1 = data1 + fa; if (true) { if (subMode == 0) { if (data1 >= 97) { gotoAndStop(15 + dir); subMode = 1; } } if (subMode == 1) { if (data1 >= 107) { gotoAndStop(1 + dir); subMode = 0; data1 = 0; // unexpected jump } } } if (extraCheck) { moveControl(_x, "right"); moveControl(_x, "left"); } } grounded = (((((mode == "stand") || (mode == "run")) || (mode == "runshoot")) || (mode == "slide")) || (mode == "shoot")) || (mode == "inch"); } }; delete p; #endinitclipSymbol 813 MovieClip Frame 1#initclip 19 MME.PauseMenu = function () { this.data1 = 0; this.active = false; this.altActive = true; this.preventStart = true; }; var p = ((MME.PauseMenu.prototype = new MME.ActiveClip())); p.init = function () { with (this) { root.doEffect("hide", 0, "staticShow"); root.doEffect("pause", 0); root.hideHUD = true; root.resetHUD(); active = true; root.pauseMenu.gotoAndStop(1); } }; p.attachMovies = function () { with (this.root.pauseMenu) { attachMovie("displayFont", "css", 100, {str:"change\rscreen\rsize", align:"left", rgb:0, font:"megamanFont", _x:16, _y:16, useHandCursor:true, root:this.root, onPress:function () { this.root.parent.screenAdjust = ((this.root.parent.screenAdjust != 1) ? 1 : 2); this.root.parent.checkSize(); }}); attachMovie("displayFont", "rg", 102, {str:"reset\rgame", align:"left", rgb:0, font:"megamanFont", _x:16, _y:48, useHandCursor:true, root:this.root, parent:this, onPress:function () { var rootSave = this.root; rootSave.pauseMenu.gotoAndStop(1); this.parent.removeMovies(); rootSave.reloadGame(); }}); } }; p.removeMovies = function () { with (this.root.pauseMenu) { css.removeMovieClip(); rg.removeMovieClip(); } }; p.destroy = function () { with (this) { root.doEffect("hide", 1); root.doEffect("pause", 1); root.hideHUD = false; root.resetHUD(); } }; p.control = function (fa) { with (this) { if (preventStart && (!Key.isDown(root.key.keyStart))) { preventStart = false; } if (data1 < 16) { data1 = data1 + fa; if (data1 >= 16) { attachMovies(); data1 = 16; preventStart = true; } root.pauseMenu.gotoAndStop(Math.floor(data1)); } else if (data1 >= 31) { preventStart = true; root.destroyActiveObj(root.findActiveObj(this)); } else if (data1 > 16) { data1 = data1 + fa; if (data1 >= 31) { data1 = 31; } root.pauseMenu.gotoAndStop(Math.floor(data1)); } else if ((!preventStart) && (Key.isDown(root.key.keyStart))) { removeMovies(); data1 = 16.0001; } } }; delete p; #endinitclipSymbol 815 MovieClip Frame 1#initclip 18 _global.MME.Pickup = function () { super(); this.isPickup = false; this.active = false; this.type = null; this.tick = 0; this.pos = 0; this.accel = 0; this.timeout = 0; this.jump = false; this.assign = null; }; var p = ((MME.Pickup.prototype = new MME.ActiveClip())); p.checkOver = MME.enemyCollisionDetect; p.smlHealth = 0.1; p.bigHealth = 0.25; p.init = function (x, y, data, jumpOn) { if (typeof(data) == "object") { var options = data; this.type = options.type; } else { var options = null; this.type = data; } this.active = true; this._x = x; this._y = y; with (this) { switch (this.type) { case "death" : isPickup = false; tick = 3; gotoAndStop((pos = 1)); jump = false; var total = 0; var i = 0; while (i <= (root.activeObj.length - 1)) { if (root.activeObj[i].isPickup) { total++; } i++; } if (total < 3) { if (options) { var sml = options.smlHealth; var big = options.bigHealth; } else { var sml = smlHealth; var big = bigHealth; } var range = Math.random(); if (range < big) { root.attachObj(root.attachMov("pickupSprite", root.registerDepth("high"))).init(_x, _y, "healthBig", true); } else if (range < sml) { root.attachObj(root.attachMov("pickupSprite", root.registerDepth("high"))).init(_x, _y, "healthSmall", true); } } return; case "healthBig" : isPickup = true; timeout = 60 * 20; tick = 10; gotoAndStop((pos = 5)); accel = (jumpOn ? (-3) : 0); jump = true; return; case "healthSmall" : isPickup = true; timeout = 60 * 20; tick = 10; gotoAndStop((pos = 7)); accel = (jumpOn ? (-3) : 0); jump = true; return; case "healthRestore" : isPickup = false; if (assign.health.health < assign.health.max) { root.startSound("healthrestore", true); tick = 5; root.doEffect("pause", 0); active = true; _visible = false; jump = false; } else { root.destroySelf(this); } } } }; p.groundCheck = function (newPos) { switch (this.type) { case "healthBig" : return(this.root.canMoveVertical(this._x - 6, this._x + 6, newPos + 6, true)); case "healthSmall" : return(this.root.canMoveVertical(this._x - 2, this._x + 2, newPos + 2, true)); } }; p.control = function (fa) { with (this) { if (jump) { var newPos = (fa * (((0.5 * (fa - 1)) * 0.25) + ((accel = accel + (fa * 0.25))))); if (newPos > 15) { newPos = 15; } else if (newPos < -15) { newPos = -15; } if (accel < 0) { if (!groundCheck((newPos = _y + newPos))) { newPos = Math.ceil(newPos); while (true) { if (groundCheck(newPos)) { break; } newPos = newPos + 1; } accel = 0; } } else if (!groundCheck((newPos = _y + newPos))) { newPos = Math.floor(newPos); while (true) { if (groundCheck(newPos)) { break; } newPos = newPos - 1; } jump = false; } _y = newPos; } switch (type) { case "death" : if (((tick = tick - fa)) <= 0) { pos++; if (pos > 4) { root.destroySelf(this); } else { gotoAndStop(pos); } tick = 3; } return; case "healthBig" : if (((tick = tick - fa)) <= 0) { gotoAndStop((pos = ((pos == 5) ? 6 : 5))); tick = 10; } if (((timeout = timeout - fa)) <= 0) { root.destroySelf(this); } var obj = checkOver(); if (obj) { assign = obj; timeout = 10; init(0, 0, "healthRestore"); } return; case "healthSmall" : if (((tick = tick - fa)) <= 0) { gotoAndStop((pos = ((pos == 7) ? 8 : 7))); tick = 10; } if (((timeout = timeout - fa)) <= 0) { root.destroySelf(this); } var obj = checkOver(); if (obj) { assign = obj; timeout = 5; init(0, 0, "healthRestore"); } return; case "healthRestore" : if (((tick = tick - fa)) > 0) { break; } assign.health.adj(1); timeout--; if ((timeout <= 0) || (assign.health.health >= assign.health.max)) { root.stopSound("healthrestore"); root.doEffect("pause", 1); root.destroySelf(this); } tick = 5; } } }; #endinitclipSymbol 825 MovieClip Frame 1#initclip 17 MME.SamusBossObj = function () { super(); this.active = false; this.animate = false; this.data1 = 0; this.data2 = 0; this.mode = null; }; var p = ((MME.SamusBossObj.prototype = new MME.ActiveGroup())); p.init = function (samus, pellet, bomb, healthBar) { with (this) { addClip("samus", samus, "high"); addClip("pellet0", pellet, "low"); addClip("pellet1", pellet, "low"); addClip("pellet2", pellet, "low"); addClip("bomb0", bomb, "low"); addClip("bomb1", bomb, "low"); addClip("bomb2", bomb, "low"); attachClips(); this.samus.health.setClip(healthBar); this.samus.parent = this; applyClips(this.samus); super.init(); active = true; } }; p.start = function (doAni, mode, x, y, dir, onDeath, onStart) { this.root.registerEnemy(this.samus); this.samus.setPos(x, y); this.samus.mode = mode; this.samus.dir = dir; this.samus.objParent = this; if (doAni) { stopAllSounds(); if (this.root.musicOn) { this.root.startSound("samus_intro"); } this.samus.active = false; this.samus._visible = false; this.animate = true; this.data1 = 90; this.mode = 0; this.samus.health.kill(); } else { this.samus.health.reset(); stopAllSounds(); if (this.root.musicOn) { this.root.startSound("samusBossMusic", true); } this.samus.active = true; this.samus.control(0); } this.samus.onDeath = onDeath; this.onStart = onStart; this.aiConstructor(); }; p.aniStep = function (f) { this.data1 = this.data1 - f; while (this.data1 <= 0) { if (this.mode < 5) { this.mode++; } switch (this.mode) { case 1 : this.samus.gotoAndStop(50); break; case 2 : this.samus.gotoAndStop(51); break; case 3 : this.samus.gotoAndStop(52); break; case 4 : this.samus.gotoAndStop(1); break; case 5 : this.root.startSound("healthrestore", true); this.samus._visible = true; this.data2 = 5; this.mode = 6; case 6 : this.data2 = this.data2 - f; while (this.data2 <= 0) { this.samus.health.adj(1); if (this.samus.health.health >= this.samus.health.max) { this.root.stopSound("healthrestore"); this.samus.active = true; this.animate = false; this.samus.control(0); if (this.onStart) { this.onStart(); } } this.data2 = this.data2 + 5; } return(undefined); } this.data1 = this.data1 + 90; } if ((this.mode >= 1) && (this.mode < 5)) { this.samus._visible = !this.samus._visible; } }; p.aiConstructor = function () { this.searchMode = true; this.attackType = ""; this.timeout = 10; this.dirToBe = 0; }; p.ai = function (f) { with (this) { var m = root.megamanLink.megaman; if (timeout) { if (((timeout = timeout - f)) > 0) { return(undefined); } timeout = 0; } if (searchMode) { var mtp = m.getCenter(); var stp = samus.getCenter(); if (stp.y <= 8) { attackType = "getoffpltfrm"; mode = 0; searchMode = false; dirToBe = stp.x > 7; } else if (mtp.y <= 8) { if ((stp.x >= 6) && (stp.x <= 8)) { attackType = "moveout"; mode = 0; dirToBe = stp.x < 6; searchMode = false; } else if ((((mtp.x >= 6) && (mtp.x <= 8)) && ((stp.x < 6) || (stp.x > 8))) && (stp.y > 8)) { attackType = (rndChoose() ? "jmpatpltfrm" : "jmpshtpltfrm"); dirToBe = stp.x < 7; mode = 0; searchMode = false; } else if (stp.y > 8) { attackType = "strkabov"; mode = 0; searchMode = false; } } else if (mtp.y > 8) { if (stp.y > 8) { if (rndChoose()) { attackType = "bombrun"; mode = 0; searchMode = false; } else if (Math.abs(stp.x - mtp.x) > 6) { attackType = "shootem"; mode = 0; searchMode = false; data1 = 0; data2 = 0; samus.move = -1; } else { attackType = "jmpatpltfrm"; dirToBe = stp.x < 7; mode = 0; searchMode = false; } } } return(undefined); } if (attackType.length) { switch (attackType) { case "jmpshtpltfrm" : switch (mode) { case 0 : samus.jump = true; mode = 1; if (samus.dir != dirToBe) { samus.move = dirToBe; } break; case 1 : samus.move = -1; var stp = samus.getCenter(); var mtp = m.getCenter(); if (samus.shoot) { samus.shoot = false; } if (stp.y <= mtp.y) { samus.shoot = true; } case 2 : if (samus.mode != "stand") { break; } samus.jump = false; searchMode = true; } return; case "jmpatpltfrm" : switch (mode) { case 0 : samus.move = dirToBe; mode = 1; break; case 1 : samus.jump = true; mode = 2; break; case 2 : var stp = samus.getCenter(); var mtp = m.getCenter(); if (((dirToBe == 0) && (mtp.x >= stp.x)) || ((dirToBe == 1) && (mtp.x <= stp.x))) { samus.jump = false; mode = 3; } else if (samus.mode == "stand") { samus.jump = false; samus.move = -1; searchMode = true; } else if (((stp.y >= 8) && (stp.x >= 5)) && (stp.x <= 9)) { samus.move = -1; } else { samus.move = dirToBe; } break; case 3 : var stp = samus.getCenter(); var mtp = m.getCenter(); if (mtp.x > stp.x) { samus.move = 1; } else if (mtp.x < stp.x) { samus.move = 0; } else { samus.move = -1; } if (samus.mode != "stand") { break; } samus.jump = false; samus.move = -1; searchMode = true; } return; case "getoffpltfrm" : switch (mode) { case 0 : samus.jump = true; samus.move = dirToBe; mode = 1; break; case 1 : var stp = samus.getCenter(); if ((stp.x < 6) || (stp.x > 8)) { samus.jump = false; mode = 2; } case 2 : if ((samus.mode == "stand") || (samus.mode == "run")) { samus.jump = false; samus.move = -1; searchMode = true; } else { if (mode == 2) { var stp = samus.getCenter(); } if (!((stp.x < 3) || (stp.x > 14))) { break; } samus.move = -1; } } return; case "bombrun" : switch (mode) { case 0 : samus.morph = true; mode = 1; data1 = 37 / 2; samus.move = stp.x < mtp.x; break; case 1 : var stp = samus.getCenter(); var mtp = m.getCenter(); if (samus.move && (stp.x > (mtp.x + 2))) { samus.move = 0; } else if ((!samus.move) && (stp.x < (mtp.x - 2))) { samus.move = 1; } if (((data1 = data1 - f)) <= 0) { samus.shoot = true; if ((++data2) >= 3) { mode = 2; } data1 = data1 + 37; } else if (samus.shoot) { samus.shoot = false; } break; case 2 : var stp = samus.getCenter(); var mtp = m.getCenter(); if (samus.move && (stp.x > (mtp.x + 2))) { samus.move = 0; } else if ((!samus.move) && (stp.x < (mtp.x - 2))) { samus.move = 1; } if (((data1 = data1 - f)) > 0) { break; } samus.morph = false; samus.move = -1; searchMode = true; } return; case "strkabov" : if (mode) { var stp = samus.getCenter(); var mtp = m.getCenter(); if ((mtp.y > 8) || ((mtp.x >= 6) && (mtp.x <= 8))) { samus.aimUp = false; samus.shoot = false; samus.move = -1; searchMode = true; } if (((data1 = data1 - f)) <= 0) { samus.shoot = true; data1 = data1 + 15; } else { samus.shoot = false; } if (stp.x > mtp.x) { samus.move = 0; } else if (stp.x < mtp.x) { samus.move = 1; } else { samus.move = -1; } } else { samus.aimUp = true; mode = 1; data1 = 15; } return; case "moveout" : switch (mode) { case 0 : samus.move = -1; mode = 1; break; case 1 : var stp = samus.getCenter(); if ((stp.x < 4) || (stp.x > 10)) { samus.move = -1; searchMode = true; } else { samus.move = stp.x >= 7; } } return; case "shootem" : var stp = samus.getCenter(); var mtp = m.getCenter(); if (samus.dir != (stp.x < mtp.x)) { samus.move = stp.x < mtp.x; } else { samus.move - 1; } if (((data1 = data1 - f)) <= 0) { samus.shoot = true; data1 = data1 + 20; data2++; } else { samus.shoot = false; if (!((data2 > 3) || (Math.abs(stp.x - mtp.x) > 6))) { break; } searchMode = true; } } } } }; p.rndChoose = function () { return(Math.round(Math.random())); }; p.control = function (f) { with (this) { if (samus.active) { with (samus) { ai(f); samus.control(f); var stp = getCenter(); if ((((stp.y < 0) || (stp.y > 15)) || (stp.x < 0)) || (stp.x > 14)) { trace("samus fell off map?"); strike({}, 9999); } } } else if (animate) { aniStep(f); } if (pellet0.active) { pellet0.control(f); } if (pellet1.active) { pellet1.control(f); } if (pellet2.active) { pellet2.control(f); } if (bomb0.active) { bomb0.control(f); } if (bomb1.active) { bomb1.control(f); } if (bomb2.active) { bomb2.control(f); } } }; MME.SamusBoss = function () { this.active = false; this.mode = ""; this.dir = 0; this.data1 = 0; this.data2 = 0; this.data3 = 0; this.data4 = 0; this.vY = 0; this.invul = 0; this.health = new MME.HealthSys(28, true, null); this.aim = false; this.aimUp = false; this.shoot = false; this.shooting = false; this.jump = false; this.jumping = false; this.move = -1; this.movement = -1; this.morph = false; this.morphed = false; this.onDeath = null; this.deadWaiting = false; }; var p = ((MME.SamusBoss.prototype = new MME.ActiveClip())); p.getPellet = function () { with (this) { if (!pellet0.active) { return(pellet0); } if (!pellet1.active) { return(pellet1); } if (!pellet2.active) { return(pellet2); } return(null); } }; p.getBomb = function () { with (this) { if (!bomb0.active) { return(bomb0); } if (!bomb1.active) { return(bomb1); } if (!bomb2.active) { return(bomb2); } return(null); } }; p.getCenter = function () { with (this) { return({x:Math.floor(((_x + 8) - root.mapData.offsetX) / 16), y:Math.floor(((_y + 16) - root.mapData.offsetY) / 16)}); } }; p.strike = function (obj, power) { with (this) { if (((invul <= 0) && (active)) && (!deadWaiting)) { invul = 30; obj.stop(this.health.adj(-power)); if (this.health.dead) { stopAllSounds(); root.doEffect("pause", 0); deadWaiting = true; _visible = true; root.megamanLink.megaman._visible = true; root.attachObj(new MME.Pause(60, function (obj) { with (this.root) { doEffect("pause", 1); root.score.adjScore(20); megamanLink.megaman.active = false; startSound("megaman_death"); var deathObj = attachObj(new MME.DeathObj()); deathObj.init("samusDeathSprite"); if (obj.samus.mode == "morph") { deathObj.start(obj.samus._x + 5, obj.samus._y + 7); } else { deathObj.start(obj.samus._x + 9, obj.samus._y + 17); } attachObj(new MME.Pause(180, obj.samus.onDeath)); root.destroyActiveObj(root.findActiveObj(obj)); } }, objParent)); } } } }; p.checkMove = function (newPos, dira, alt) { with (this) { switch (dira) { case "left" : return((alt ? (root.canMoveHorizontal(_y + 2, _y + 11, newPos)) : (root.canMoveHorizontal(_y, _y + 31, newPos + 8)))); case "right" : return((alt ? (root.canMoveHorizontal(_y + 2, _y + 11, newPos + 11)) : (root.canMoveHorizontal(_y, _y + 31, newPos + 13)))); case "down" : return((alt ? (root.canMoveVertical(_x + 1, _x + 10, newPos + 13)) : (root.canMoveVertical(_x + 8, _x + 13, newPos + 31)))); case "up" : return((alt ? (root.canMoveVertical(_x + 1, _x + 10, newPos)) : (root.canMoveVertical(_x + 8, _x + 13, newPos)))); } } }; p.moveControl = function (newPos, dir, alt) { if (dir == "left") { with (this) { if (!checkMove(newPos, "left", alt)) { newPos = Math.ceil(newPos); while (true) { if (checkMove(newPos, "left", alt)) { break; } newPos = newPos + 1; } } _x = newPos; } } else if (dir == "right") { with (this) { if (!checkMove(newPos, "right", alt)) { newPos = Math.floor(newPos); while (true) { if (checkMove(newPos, "right", alt)) { break; } newPos = newPos - 1; } } _x = newPos; } } else if (dir == "down") { with (this) { if (!checkMove(newPos, "down", alt)) { newPos = Math.floor(newPos); while (true) { if (checkMove(newPos, "down", alt)) { break; } newPos = newPos - 1; } _y = newPos; return(true); } _y = newPos; return(false); } } else if (dir == "up") { with (this) { if (!checkMove(newPos, "up", alt)) { newPos = Math.ceil(newPos); while (true) { if (checkMove(newPos, "up", alt)) { break; } newPos = newPos + 1; } _y = newPos; return(true); } _y = newPos; return(false); } } }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { if (mode == "initstand") { mode = "stand"; if (aim) { gotoAndStop(6 + dir); } else { gotoAndStop(2 + dir); } } else if (mode == "initrun") { data1 = 0; data2 = 0; mode = "run"; if (aim) { gotoAndStop((22 + data1) + dir); } else { gotoAndStop((10 + data1) + dir); } } else if (mode == "initrunshoot") { data3 = 15; mode = "runshoot"; if (aim) { gotoAndStop((22 + data1) + dir); } else { gotoAndStop((16 + data1) + dir); } } else if (mode == "initshoot") { data1 = 15; mode = "shoot"; if (aim) { gotoAndStop(8 + dir); } else { gotoAndStop(4 + dir); } } else if (mode == "initjump") { root.stopSound("samus_walk"); root.startSound("samus_jump"); data1 = -5.7; data2 = ((movement < 0) ? 1 : 0); data3 = 0; data4 = 0; mode = "jump"; if (data2) { gotoAndStop((aim ? 30 : 28) + dir); } else { gotoAndStop(34 + dir); } } else if (mode == "initfall") { data1 = 0; data2 = 1; data3 = 0; data4 = 0; mode = "jump"; gotoAndStop((aim ? 30 : 28) + dir); } else if (mode == "initjumpshoot") { data2 = 1; mode = "jumpshoot"; if (aim) { gotoAndStop(30 + dir); } else { gotoAndStop(32 + dir); } } else if (mode == "initmorph") { root.startSound("samus_morph"); _y = _y + 8; data1 = 0; data2 = 0; data3 = 0; mode = "morph"; gotoAndStop(42 + dir); } if (invul) { invul = invul - f; _visible = !_visible; if (invul <= 0) { _visible = true; } } else if (!_visible) { _visible = true; } if (shoot != shooting) { shooting = shoot; if (shooting) { if (mode == "morph") { var temp = getBomb(); if (temp) { root.startSound("samus_dropbomb"); temp.start(_x + 3, _y + 6); } } else { var temp = getPellet(); if (temp) { root.startSound("samus_shoot"); if (aim) { temp.start(_x + 10, _y - 5, 0, 1, false); } else { temp.start(_x + (dir ? 16 : 3), _y + 9, (dir ? 0 : 1), 0, false); } if ((mode == "stand") || (mode == "shoot")) { mode = "initshoot"; control(f); } else if ((mode == "run") || (mode == "runshoot")) { mode = "initrunshoot"; control(f); } else if ((mode == "jump") || (mode == "jumpshoot")) { mode = "initjumpshoot"; } } } } } if (jump != jumping) { jumping = jump; if (jumping && (mode != "morph")) { if ((this.mode != "jump") && (this.mode != "jumpshoot")) { this.mode = "initjump"; control(f); return(undefined); } } } if (morph != morphed) { morphed = morph; if (((morphed && (mode != "jump")) && (mode != "jumpshoot")) && (mode != "morph")) { this.mode = "initmorph"; control(f); return(undefined); } } if (move != movement) { movement = move; if ((mode == "jump") || (mode == "jumpshoot")) { if (movement >= 0) { if (data2) { if (dir != movement) { gotoAndStop(28 + ((dir = movement))); } } else { gotoAndStop((34 + data4) + ((dir = movement))); } } } else if (mode == "morph") { if (movement >= 0) { dir = movement; } } else if (movement < 0) { root.stopSound("samus_walk"); mode = "initstand"; } else { if (((mode != "run") && (mode != "runshoot")) && (mode != "morph")) { root.startSound("samus_walk", true); } dir = movement; mode = "initrun"; } control(f); return(undefined); } if (aimUp != aim) { aim = aimUp; if (aim) { if (mode == "stand") { gotoAndStop(6 + dir); } else if (mode == "shoot") { gotoAndStop(8 + dir); } else if (mode == "run") { gotoAndStop((16 + data1) + dir); } else if (mode == "runshoot") { gotoAndStop((16 + data1) + dir); } else if ((mode == "jump") || (mode == "jumpshoot")) { data2 = 1; gotoAndStop(30 + dir); } } else if (mode == "stand") { gotoAndStop(2 + dir); } else { if (mode == "shoot") { mode = "initstand"; control(f); return(null); } if (mode == "run") { gotoAndStop((10 + data1) + dir); } else if (mode == "runshoot") { gotoAndStop((16 + data1) + dir); } else if ((mode == "jump") || (mode == "jumpshoot")) { if (data2 == 1) { gotoAndStop(28 + dir); } } } } if (mode == "run") { data2 = data2 - f; while (data2 <= 0) { data1 = ((data1 >= 4) ? 0 : (data1 + 2)); if (aim) { gotoAndStop((22 + data1) + dir); } else { gotoAndStop((10 + data1) + dir); } data2 = data2 + 3; } moveControl(_x + ((dir ? 1.5 : -1.5) * f), (dir ? "right" : "left")); if (root.canMoveVertical(_x + 8, _x + 13, _y + 32)) { root.stopSound("samus_walk"); mode = "initfall"; } } else if (mode == "runshoot") { if (((data3 = data3 - f)) > 0) { data2 = data2 - f; while (data2 <= 0) { data1 = ((data1 >= 4) ? 0 : (data1 + 2)); if (aim) { gotoAndStop((22 + data1) + dir); } else { gotoAndStop((16 + data1) + dir); } data2 = data2 + 3; } moveControl(_x + ((dir ? 1.5 : -1.5) * f), (dir ? "right" : "left")); if (root.canMoveVertical(_x + 8, _x + 13, _y + 32)) { root.stopSound("samus_walk"); mode = "initfall"; } } else { mode = "run"; gotoAndStop((10 + data1) + dir); } } else if (mode == "shoot") { if (((data1 = data1 - f)) <= 0) { mode = "initstand"; control(0); } } else if ((mode == "jump") || (mode == "jumpshoot")) { if (!data2) { data3 = data3 - f; while (data3 <= 0) { data4 = ((data4 >= 6) ? 0 : (data4 + 2)); gotoAndStop((34 + data4) + dir); data3 = data3 + 2; } } if (movement >= 0) { moveControl(_x + ((dir ? 1.5 : -1.5) * f), (dir ? "right" : "left")); } var newPos = (_y + (f * (((0.5 * (f - 1)) * 0.1) + ((data1 = data1 + (f * 0.1)))))); if (data1 < 0) { if (moveControl(newPos, "up") || (!jumping)) { data1 = 0; } } else if (moveControl(newPos, "down")) { root.startSound("samus_land"); if (movement >= 0) { root.startSound("samus_walk", true); mode = "initrun"; } else { mode = "initstand"; } } } else if (mode == "morph") { data1 = data1 - f; while (data1 <= 0) { gotoAndStop((42 + ((data2 = ((data2 >= 6) ? 0 : (data2 + 2))))) + dir); data1 = data1 + 2.5; } if (moveControl(_y + (f * (((0.5 * (f - 1)) * 0.1) + ((data3 = data3 + (f * 0.1))))), "down", true)) { if (data3 > 3) { data3 = -2; } else { data3 = -0.5; if (!morphed) { this.mode = "initstand"; _y = _y - 18; vY = 0; if (movement >= 0) { movement = -1; } control(f); return(undefined); } } } if (movement >= 0) { moveControl(_x + ((dir ? 1.5 : -1.5) * f), (dir ? "right" : "left"), true); } } if (invul <= 0) { var obj = checkOver(); if (obj) { obj.strike(this, 2); } } } }; MME.SamusBossBomb = function () { this.active = false; this._visible = false; this.tick = 0; this.pos = 0; this.timer = 0; }; var p = ((MME.SamusBossBomb.prototype = new MovieClip())); p.start = function (x, y) { this._x = x; this._y = y; this.gotoAndStop(1); this.tick = 0; this.pos = 0; this.timer = 0; this.active = (this._visible = true); }; p.stop = function () { this.active = (this._visible = false); }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { if (((timer = timer + f)) < 100) { tick = tick - f; while (tick <= 0) { gotoAndStop(((pos = !pos)) + 1); tick = tick + 3; } } else { _visible = !_visible; if ((pos < 2) && (timer > 100)) { root.startSound("samus_explosion"); pos = 2; gotoAndStop(3); } if ((pos < 3) && (timer > 105)) { pos = 3; gotoAndStop(4); } if ((pos < 4) && (timer > 108)) { pos = 4; gotoAndStop(5); } if ((pos < 5) && (timer > 120)) { pos = 5; stop(); } var obj = checkOver(); if (obj) { obj.strike(this, 3); } } } }; MME.SamusBossPellet = function () { this.active = false; this._visible = false; this.max = 0; this.dir = 0; this.vDir = 0; }; var p = ((MME.SamusBossPellet.prototype = new MME.ActiveClip())); p.start = function (x, y, dir, vDir, isMissle) { this._x = x; this._y = y; this.dir = dir; this.vDir = vDir; if (vDir) { this.max = this._y + (dir ? 100 : -100); } else { this.max = this._x + (dir ? -100 : 100); } if (isMissle) { this.gotoAndStop(2 + dir); } else { this.gotoAndStop(1); } this.active = (this._visible = true); }; p.stop = function () { this.active = (this._visible = false); }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { if (vDir) { _y = _y - ((dir ? -3 : 3) * f); } else { _x = _x + ((dir ? -3 : 3) * f); } var check = this.checkOver(); if (check) { check.strike(this, 2); } if (!root.canMoveHorizontal(_y, _y, _x)) { stop(); } else if (vDir) { if ((_y > (232 + root.mapPosY)) || (_y < root.mapPosY)) { stop(); } else if ((!dir) && (_y < max)) { stop(); } else if (dir && (_y > max)) { stop(); } } else if ((_x > (256 + root.mapPosX)) || (_x < root.mapPosX)) { stop(); } else if (dir && (_x < max)) { stop(); } else if ((!dir) && (_x > max)) { stop(); } } }; #endinitclipSymbol 828 MovieClip Frame 1#initclip 16 _global.MME.Zoomer = function () { super(); this.active = false; this.tileX = 0; this.tileY = 0; this.move = 0; this.pos = 0; this.mode = 0; this.ang = 0; this.tick = 0; this.frame = false; this.health = new MME.HealthSys(3, true, null); }; var p = ((MME.Zoomer.prototype = new MME.ActiveClip())); p.init = function (x, y, ang, pos, move, healthMax) { this.root.prepareSound("enemy_dead"); this.active = true; this.tileX = x; this.tileY = y; this.move = move; this.pos = pos; this.mode = 0; this.ang = ang; this.tick = 0; this.frame = false; this.health.reset(); this.gotoAndStop((frame + (ang * 2)) + 1); this.root.registerEnemy(this); this.control(0); }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.checkMap = function (ang, move, extend) { switch (ang) { case 0 : return({y:extend * (-1), x:move}); case 1 : return({y:move, x:extend}); case 2 : return({y:extend, x:move * (-1)}); case 3 : return({y:move * (-1), x:extend * (-1)}); } }; p.strike = function (obj, power) { trace(((("strike zoomer " + power) + " (") + obj) + ")"); if (this.active) { with (this) { if (power >= 3) { obj.stop(health.kill()); } else { obj.stop(health.adj(-power)); } root.startSound("enemy_dead"); if (health.dead) { root.score.adjScore(health.max); var depth = root.registerDepth("high"); var x = _x; var y = _y; if (ang == 0) { y = y - 8; } else if (ang == 1) { x = x + 8; } else if (ang == 2) { y = y + 8; } else if (ang == 3) { x = x - 8; } root.attachObjMov("pickupSprite", "low").init(x, y, "death"); root.destroySelf(this); } } } }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { pos = pos + ((0.75 * f) * Math.abs(move)); if ((mode < 1) && (pos >= 8)) { var adj = checkMap(ang, move, 1); if (root.mapObj.map[tileY + adj.y][tileX + adj.x]) { tileY = tileY + adj.y; tileX = tileX + adj.x; if (((ang = ang - move)) < 0) { ang = 3; } else if (ang > 3) { ang = 0; } mode = 1; tick = 0; } } if ((mode < 2) && (pos >= 22)) { var adj = checkMap(ang, move, 0); if (root.mapObj.map[tileY + adj.y][tileX + adj.x]) { tileY = tileY + adj.y; tileX = tileX + adj.x; pos = pos - 16; } else { if (((ang = ang + move)) < 0) { ang = 3; } else if (ang > 3) { ang = 0; } tick = 0; pos = pos - 28; } mode = 0; } if (((tick = tick - f)) <= 0) { gotoAndStop((((frame = !frame)) + (ang * 2)) + 1); tick = 3; } switch (ang) { case 0 : _x = ((tileX * 16) + ((move > 0) ? (pos) : ((-pos) + 16))) + root.mapData.offsetX; _y = (tileY * 16) + root.mapData.offsetY; break; case 1 : _x = ((tileX * 16) + 16) + root.mapData.offsetX; _y = ((tileY * 16) + ((move > 0) ? (pos) : ((-pos) + 16))) + root.mapData.offsetY; break; case 2 : _x = (((tileX * 16) + 16) - ((move > 0) ? (pos) : ((-pos) + 16))) + root.mapData.offsetX; _y = ((tileY * 16) + 16) + root.mapData.offsetY; break; case 3 : _x = (tileX * 16) + root.mapData.offsetX; _y = (((tileY * 16) + 16) - ((move > 0) ? (pos) : ((-pos) + 16))) + root.mapData.offsetY; } var obj = checkOver(); if (obj) { obj.strike(this, 2); } } }; delete p; #endinitclipSymbol 830 MovieClip Frame 1#initclip 15 MME.MenuData = function () { this.gotoID = arguments[0]; this.onSelect = arguments[1]; }; MME.MegamanMenu = function () { this.active = false; this.menuData = null; this.subMenu = null; this.menu = new Array(); this.fontSys = null; this.cursor = null; this.focus = null; this.startX = 0; this.startY = 0; this.marginX = 0; this.marginY = 0; this.cursorStartX = 0; this.cursorStartY = 0; this.preventUpward = true; this.preventDownward = true; this.preventStart = true; }; var p = ((MME.MegamanMenu.prototype = new MME.ActiveClip())); p.init = function (menuData, fontClip, cursorClip) { this.fontClip = fontClip; this.cursorClip = cursorClip; this.loadMenu(menuData); }; p.setStyle = function () { this.startX = arguments[0]; this.startY = arguments[1]; this.marginX = arguments[2]; this.marginY = arguments[3]; this.cursorStartX = arguments[4]; this.cursorStartY = arguments[5]; }; p.destroyMenu = function (index) { with (this) { menu[index].removeMovieClip(); } }; p.loadMenu = function (menuData) { this.menuData = menuData; with (this) { cursor = attachMov(cursorClip, 0); focus = -1; loadSubMenu(menuData.initMenu(root.menuStatus)); } }; p.loadSubMenu = function (subMenu, reload) { this.subMenu = subMenu; this.tempLocal = null; with (this) { if (!reload) { var i = 0; while (i <= (menu.length - 1)) { destroyMenu(i); i++; } menu = new Array(); } this.gotoAndStop(menuData.bgFrame(subMenu)); var lsa = 0; var pos = 0; while (lsa <= (menuData[subMenu].length - 1)) { if (!menuData[subMenu][lsa]) { } else { tempLocal = menuData[subMenu][lsa].gotoID; if (typeof(tempLocal) == "function") { tempLocal = tempLocal(); } if ((!reload) || (reload && (templocal != menu[pos].text))) { if (reload) { destroyMenu(pos); } menu[pos] = attachMov(fontClip, lsa + 1, {str:tempLocal, font:"megamanFont", useHandCursor:true, _x:startX + (marginX * lsa), _y:startY + (marginY * lsa)}); menu[pos].text = tempLocal; menu[pos].onRelease = function () { this.click = true; }; menu[pos].onRollOver = function () { this.hover = true; }; menu[pos].click = false; menu[pos].hover = false; menu[pos].menu = this; menu[pos].root = this.root; menu[pos].cursorIndex = lsa; menu[pos].onSelect = menuData[subMenu][lsa].onSelect; } pos++; } lsa++; } if (focus < 0) { setFocus(0); } if (focus > (menu.length - 1)) { setFocus(menu.length - 1); } active = true; delete tempLocal; } }; p.dynRun = function (index) { var data = this.menu[index].onSelect(); switch (data.type) { case "menuChange" : var i = 0; while (i <= (menu.length - 1)) { destroyMenu(i); i++; } this.loadSubMenu(data.pos); case "refreshMenu" : this.loadSubMenu(this.subMenu, true); } }; p.control = function () { with (this) { var isd = Key.isDown; if (preventUpward && (!isd(root.key.keyUpward))) { preventUpward = false; } if (preventDownward && (!isd(root.key.keyDownward))) { preventDownward = false; } if (preventStart && (!isd(root.key.keyStart))) { preventStart = false; } var lsa = 0; while (lsa <= (menu.length - 1)) { if (menu[lsa].hover) { menu[lsa].hover = false; setFocus(lsa); } if (menu[lsa].click) { menu[lsa].click = false; if (dynRun(lsa)) { return(null); } } lsa++; } if ((!preventUpward) && (isd(root.key.keyUpward))) { var toFocus = (focus - 1); if (toFocus < 0) { toFocus = menu.length - 1; } setFocus(toFocus); preventUpward = true; } else if ((!preventDownward) && (isd(root.key.keyDownward))) { var toFocus = (focus + 1); if (toFocus > (this.menu.length - 1)) { toFocus = 0; } setFocus(toFocus); preventDownward = true; } if ((!preventStart) && (isd(root.key.keyStart))) { preventStart = true; if (dynRun(focus)) { return(null); } } } }; p.setFocus = function (focusPos) { with (this) { focus = focusPos; cursor._x = cursorStartX + (marginX * menu[focus].cursorIndex); cursor._y = cursorStartY + (marginY * menu[focus].cursorIndex); } }; delete p; #endinitclipSymbol 833 MovieClip Frame 1#initclip 14 MME.BubbleDoor = function () { super(); this.mode = 0; this.subMode = 0; this.tick = 0; this.cover = null; this.active = false; this.shutUp = false; }; var p = ((MME.BubbleDoor.prototype = new MME.ActiveClip())); p.hide = function (type) { if (type != "staticShow") { super.hide(); } }; p.init = function (xTile, yTile, mode) { this.xTile = xTile; this.yTile = yTile; this._x = (xTile * 16) + this.root.mapObj.offsetX; this._y = (yTile * 16) + this.root.mapObj.offsetY; super.init(); this.shutUp = mode == 1; this.root.registerEnemy(this); this.cover = this.checkOver(); if (this.cover) { this.cover._visible = false; this.gotoAndStop(4); this.mode = 5; this.tick = 7; this.subMode = 1; this.setFree(); } else { this.mode = 0; this.gotoAndStop(1); this.subMode = 0; this.setSolid(); } this.active = true; }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.strike = function (obj, power) { if (this.active && (!this.mode)) { if (this.shutUp) { obj.stop(0, "tink"); } else { this.mode = 1; this.tick = 0; obj.stop(9999); } } }; p.setSolid = function () { with (this) { var map = root.mapObj.map; var i = 0; while (i <= 1) { map[yTile][xTile + i] = (map[yTile + 1][xTile + i] = (map[yTile + 2][xTile + i] = 2)); i++; } } }; p.setFree = function () { with (this) { var map = root.mapObj.map; var i = 0; while (i <= 1) { map[yTile][xTile + i] = (map[yTile + 1][xTile + i] = (map[yTile + 2][xTile + i] = 0)); i++; } } }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { switch (mode) { case 0 : return; case 1 : gotoAndStop(2); mode = 2; return; case 2 : gotoAndStop(1); mode = 3; tick = 15; return; case 3 : if (((tick = tick - f)) <= 0) { root.stopSound("samus_doorchange"); root.startSound("samus_doorchange"); if (subMode) { cover._visible = true; } gotoAndStop(3); mode = 4; tick = 7; } return; case 4 : if (((tick = tick - f)) <= 0) { setFree(); gotoAndStop(4); mode = 5; if (subMode) { subMode = 0; tick = 0; } else { tick = 60 * 3; } } return; case 5 : if (((tick = tick - f)) <= 0) { if (subMode) { root.stopSound("samus_doorchange"); root.startSound("samus_doorchange"); gotoAndStop(3); mode = 6; } else if (!this.checkOver()) { root.stopSound("samus_doorchange"); root.startSound("samus_doorchange"); setSolid(); gotoAndStop(3); mode = 6; } tick = 7; } return; case 6 : if (((tick = tick - f)) > 0) { break; } if (subMode) { mode = 3; tick = 60 * 1.7; } else { mode = 0; } gotoAndStop(1); } } }; #endinitclipSymbol 835 MovieClip Frame 1#initclip 13 MME.SkreeDeathSpark = function () { this.active = false; this.timeout = 0; this.health = 0; this.pos = 0; this.dir = 0; this.tick = 0; this.mode = 0; this.landed = false; }; var p = ((MME.SkreeDeathSpark.prototype = new MME.ActiveGroup())); p.init = function (x, y, sparkClip) { with (this) { addClip("spark0", sparkClip, "low"); addClip("spark1", sparkClip, "low"); addClip("spark2", sparkClip, "low"); addClip("spark3", sparkClip, "low"); attachClips(); spark0.velX = -4; spark0.velY = 0; spark1.velX = 4; spark1.velY = 0; spark2.velX = -2; spark2.velY = -4; spark3.velX = 2; spark3.velY = -4; } var i = 0; while (i <= 3) { this["spark" + i].checkOver = MME.enemyCollisionDetect; this["spark" + i]._x = x; this["spark" + i]._y = y; i++; } this.timeout = 10; this.active = true; }; p.control = function (f) { if (((this.timeout = this.timeout - f)) <= 0) { this.root.destroySelf(this); return(undefined); } var i = 0; while (i <= 3) { var cs = this["spark" + i]; cs._x = cs._x + (cs.velX * f); cs._y = cs._y + (cs.velY * f); var obj = cs.checkOver(); if (obj) { obj.strike(cs, 2); } i++; } }; delete p; MME.Skree = function () { this.active = false; this.mode = 0; this.tick = 0; this.pos = 0; this.dir = 0; this.speed = 0; this.timeout = 0; this.health = new MME.HealthSys(4, true, null); }; var p = ((MME.Skree.prototype = new MME.ActiveClip())); p.init = function (x, y, deathSparkClip) { this.deathSparkClip = deathSparkClip; var loc = this.getPos(x, y); this._x = loc.x; this._y = loc.y; this.pos = 0; this.dir = 0; this.tick = 0; this.mode = 0; this.timeout = 0; this.health.reset(); this.landed = false; this.gotoAndStop(1); this.active = true; this.root.registerEnemy(this); }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.strike = function (obj, power) { if (this.active) { with (this) { if (power >= 3) { obj.stop(health.kill()); } else { obj.stop(health.adj(-power)); } root.startSound("enemy_dead"); if (health.dead) { root.score.adjScore(health.max); root.attachObjMov("pickupSprite", "low").init(_x + 8, _y + 12, "death"); root.destroySelf(this); } } } }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { tick = tick - f; while (tick <= 0) { gotoAndStop(((pos >= 2) ? ((pos = 0)) : (++pos)) + 1); tick = tick + ((mode == 0) ? 8 : 2); } var meg = root.megamanLink.megaman; var newPos = _y; switch (mode) { case 0 : var dist = (_x - meg._x); if ((dist <= 32) && (dist >= -8)) { dir = 0; mode = 1; speed = 1; timeout = 20; } else if ((dist >= -40) && (dist <= -8)) { dir = 1; mode = 1; speed = 1; timeout = 20; } break; case 1 : if (((timeout = timeout - f)) <= 0) { if (landed) { root.attachObj(new MME.SkreeDeathSpark()).init(_x + 8, _y + 12, deathSparkClip); root.destroySelf(this); return(undefined); } dir = (_x - meg._x) <= 0; speed = 1.5; timeout = 20; } _x = _x + (((dir ? 0.85 : (-0.85)) * speed) * f); newPos = newPos + (f * speed); } if (!root.canMoveVertical(_x, _x + 16, newPos + 24, true)) { newPos = Math.floor(newPos); while (true) { if (root.canMoveVertical(_x, _x + 16, newPos + 24, true)) { break; } newPos = newPos - 1; } landed = true; timeout = 120; speed = 0; } _y = newPos; var obj = checkOver(); if (obj) { obj.strike(this, 3); } } }; delete p; #endinitclipSymbol 837 MovieClip Frame 1#initclip 12 MME.Ripper = function () { super(); this.dir = 0; this.x = 0; this.y = 0; this.pos = 0; this.active = false; this.tick = 0; this.frm = false; }; var p = ((MME.Ripper.prototype = new MME.ActiveClip())); p.init = function (tileX, tileY, dir) { this.dir = dir; this.x = tileX; this.y = tileY; this._y = ((this.y * 16) + this.root.mapData.offsetY) + 3; this.gotoAndStop(1 + dir); this.pos = 0; this.control(0); this.root.registerEnemy(this); this.active = true; }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.strike = function (obj, power) { if (this.active) { with (this) { if (power >= 3) { obj.stop(health.kill()); root.score.adjScore(4); root.startSound("enemy_dead"); root.attachObjMov("pickupSprite", "low").init(_x + 9, _y + 5, "death"); root.destroySelf(this); } else { obj.stop(0, "tink"); } } } }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { tick = tick - f; while (tick <= 0) { gotoAndStop(((dir * 2) + 1) + ((frm = !frm))); tick = tick + 3; } pos = pos - f; while (pos <= 0) { if (root.mapObj.map[y][x + (dir ? 1 : -1)]) { gotoAndStop(((((dir = !dir)) * 2) + 1) + frm); x = x + (dir ? 1 : -1); } else { x = x + (dir ? 1 : -1); } pos = pos + 16; } _x = ((x * 16) + root.mapObj.offsetX) + (dir ? (-pos) : (pos)); var obj = checkOver(); if (obj) { obj.strike(this, 2); } } }; #endinitclipSymbol 839 MovieClip Frame 1#initclip 11 MME.Rio = function () { this.mode = 0; this.dir = 0; this.data1 = 0; this.pos = 0; this.tick = 0; this.health = new MME.HealthSys(3, true, null); this.goBack = false; this.active = false; }; var p = ((MME.Rio.prototype = new MME.ActiveClip())); p.init = function (x, y) { var pos = this.getPos(x, y); this._x = pos.x; this._y = pos.y; this.mode = 0; this.data1 = 30; this.gotoAndStop(1); this.root.registerEnemy(this); this.active = true; }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.strike = function (obj, power) { if (this.active) { with (this) { if (power >= 3) { obj.stop(health.kill()); } else { obj.stop(health.adj(-power)); } root.startSound("enemy_dead"); if (health.dead) { root.score.adjScore(health.max); root.attachObjMov("pickupSprite", "low").init(_x + 16, _y + 8, "death"); root.destroySelf(this); } } } }; p.checkDir = function (newX) { with (this) { if (dir) { if (!root.canMoveHorizontal(_y + 1, _y + 16, newX + 31)) { newX = Math.floor(newX); while (true) { if (root.canMoveHorizontal(_y + 1, _y + 16, newX + 31)) { break; } newX--; } dir = false; } } else if (!root.canMoveHorizontal(_y + 1, _y + 16, newX + 1)) { newX = Math.ceil(newX); while (true) { if (root.canMoveHorizontal(_y + 1, _y + 16, newX + 1)) { break; } newX++; } dir = true; } _x = newX; } }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { switch (mode) { case 0 : var meg = root.megamanLink.megaman; if (((data1 = data1 - f)) <= 0) { if ((meg._x > (_x - 64)) && (meg._x <= _x)) { mode = 1; dir = 0; data1 = 5.5; tick = 2; goBack = false; } else if ((meg._x < (_x + 64)) && (meg._x > _x)) { mode = 1; dir = 1; data1 = 5.5; tick = 2; goBack = false; } } break; case 1 : case 4 : if ((((data1 = data1 + (f * -0.1))) <= 0) && (mode == 1)) { mode = 2; } else { var newPos = (f * (((0.5 * (f - 1)) * (-0.1)) + data1)); newPos = _y + ((newPos < (-16)) ? (-16) : (((newPos > 16) ? 16 : (newPos)))); if (mode == 4) { if (!root.canMoveVertical(_x + 1, _x + 31, newPos + 1, true)) { newPos = Math.ceil(newPos); while (true) { if (root.canMoveVertical(_x + 1, _x + 31, newPos + 1, true)) { break; } newPos++; } mode = 0; data1 = 60; _y = newPos; return(undefined); } } else if (!root.canMoveVertical(_x + 1, _x + 31, newPos + 16, true)) { newPos = Math.floor(newPos); while (true) { if (root.canMoveVertical(_x + 1, _x + 31, newPos + 16, true)) { break; } newPos--; } data1 = 0; mode = 3; } _y = newPos; if (root.megamanLink.megaman._y < (_y - 24)) { goBack = true; } checkDir(_x + (f * (dir ? 1 : (-1)))); break; } case 2 : var newPos = (_y + (f * 0.5)); if (!root.canMoveVertical(_x + 1, _x + 31, newPos + 16, true)) { newPos = Math.floor(newPos); while (true) { if (root.canMoveVertical(_x + 1, _x + 31, newPos + 16, true)) { break; } newPos--; } mode = 3; } _y = newPos; case 3 : if (goBack || (root.megamanLink.megaman._y < (_y - 24))) { mode = 4; } checkDir(_x + (f * (dir ? 1 : (-1)))); } tick = tick - f; while (tick <= 0) { gotoAndStop(((pos = !pos)) + 1); tick = tick + ((!mode) ? 10 : 2); } var obj = checkOver(); if (obj) { obj.strike(this, 2); } } }; delete p; #endinitclipSymbol 841 MovieClip Frame 1#initclip 10 MME.SinkySand = function () { this.active = false; this.list = []; }; var p = ((MME.SinkySand.prototype = new MME.ActiveGroup())); p.hide = function (type) { if (type != "staticShow") { super.hide(); } }; p.init = function () { var li = 0; var gp; var i = 0; while (i <= (arguments.length - 1)) { gp = this.getPosTile(arguments[i], arguments[i + 1]); this.list[li] = {x:gp.x, y:gp.y, tx:arguments[i], ty:arguments[i + 1], e:arguments[i + 2]}; this.addClip("sandClip_" + (li++), arguments[i + 3], "fg"); i = i + 4; } this.attachClips(); var i = 0; while (i <= (this.list.length - 1)) { var map = this.root.mapObj; with (this["sandClip_" + i]) { _x = this.list[i].x; _y = this.list[i].y; } i++; } this.active = true; }; p.stop = function () { }; p.control = function () { var pos = this.root.megamanLink.megaman.getCenter(); for (var i in this.list) { with (this.list[i]) { if (((pos.y == ty) && (pos.x >= tx)) && (pos.x <= ((tx + e) - 1))) { this.root.megamanLink.megaman.strike(this, 3); } } } }; delete p; #endinitclipSymbol 843 MovieClip Frame 1#initclip 9 MME.Bubble = function () { this.vX = 0; this.vY = 0; this.tick = 0; this.pos = 0; this.timeout = 0; this.active = false; this.health = new MME.HealthSys(4, true, null); }; var p = ((MME.Bubble.prototype = new MME.ActiveClip())); p.init = function (tx, ty, vX, vY) { this.setPosTile(tx, ty); this.vX = vX; this.vY = vY; this.tick = 0; this.pos = 0; this.gotoAndStop(1); this.active = true; this.root.registerEnemy(this); }; p.strike = function (obj, power) { if (this.active && (this.timeout <= 0)) { with (this) { obj.stop(health.adj(-power)); root.startSound("enemy_dead"); timeout = timeout + 20; gotoAndStop(pos + 2); if (health.dead) { root.score.adjScore(health.max); root.attachObjMov("pickupSprite", "low").init(_x + 7, _y + 8, "death"); root.destroySelf(this); } } } }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { if (timeout > 0) { timeout = timeout - f; return(undefined); } tick = tick - f; while (tick <= 0) { gotoAndStop(((pos >= 6) ? ((pos = 0)) : ((pos = pos + 2))) + 1); tick = tick + 2; } var newX = ((vX * f) + _x); var newY = ((vY * f) + _y); if (vX < 0) { if (!root.canMoveHorizontal(_y + 1, _y + 17, newX)) { newX = Math.ceil(newX); while (true) { if (root.canMoveHorizontal(_y + 1, _y + 17, newX, 0)) { break; } newX++; } vX = -vX; } } else if (!root.canMoveHorizontal(_y + 1, _y + 17, newX + 16)) { newX = Math.floor(newX); while (true) { if (root.canMoveHorizontal(_y + 1, _y + 17, newX + 16, 0)) { break; } newX--; } vX = -vX; } _x = newX; if (vY < 0) { if (!root.canMoveVertical(_x + 1, _x + 15, newY)) { newY = Math.ceil(newY); while (true) { if (root.canMoveVertical(_x + 1, _x + 15, newY, 0)) { break; } newY++; } vY = -vY; } } else if (!root.canMoveVertical(_x + 1, _x + 15, newY + 18, 0)) { newY = Math.floor(newY); while (true) { if (root.canMoveVertical(_x + 1, _x + 15, newY + 18, 0)) { break; } newY--; } vY = -vY; } _y = newY; var obj = checkOver(); if (obj) { obj.strike(this, 2); } } }; delete p; #endinitclipSymbol 845 MovieClip Frame 1#initclip 8 MME.MBbubble = function () { this.startX = 0; this.startY = 0; this.vX = 0; this.vY = 0; this.speed = 0; this._visible = false; this.pwnd = false; this.active = false; }; var p = ((MME.MBbubble.prototype = new MME.ActiveClip())); p.init = function (tileX, tileY, speed) { this.startX = tileX; this.startY = tileY; this.speed = speed; this.active = true; this.spawn(); this.root.registerEnemy(this); }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.strike = function (obj, power) { if (this.active && (this._visible)) { with (this) { obj.stop(health.kill()); root.score.adjScore(1); root.startSound("enemy_dead"); root.attachObjMov("pickupSprite", "low").init(_x, _y, "death"); kill(); } } }; p.kill = function () { this.pwnd = (this._visible = false); this.timeout = 30; this.setPosTile(this.startX + 0.5, this.startY + 0.5); }; p.spawn = function () { this.findVel(); this.pwnd = (this._visible = true); this.setPosTile(this.startX + 0.5, this.startY + 0.5); }; p.findVel = function () { with (this.root.megamanLink.megaman) { var rad = Math.atan2((_y + 13) - this._y, (_x + 11.5) - this._x); } this.vX = this.speed * Math.cos(rad); this.vY = this.speed * Math.sin(rad); }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { if (_visible) { if ((((((_x = _x + (vX * f))) < (root.mapPosX - 6)) || (((_y = _y + (vY * f))) < (root.mapPosY - 6))) || (_x > ((root.mapPosX + 256) + 6))) || (_y > ((root.mapPosY + 256) + 6))) { kill(); } else { var obj = checkOver(); if (obj) { obj.strike(this, 2); } } } else if (((timeout = timeout - f)) <= 0) { if ((((_x > (root.mapPosX - 6)) && (_y > (root.mapPosY - 6))) && (_x < ((root.mapPosX + 256) + 6))) && (_y < ((root.mapPosY + 232) + 6))) { spawn(); } else { timeout = timeout + 5; } } } }; delete p; #endinitclipSymbol 847 MovieClip Frame 1#initclip 7 MME.Waver = function () { this.dir = 0; this.tick = 0; this.pos = 0; this.velY = 0; this.active = false; this.health = new MME.HealthSys(3, true, null); }; var p = ((MME.Waver.prototype = new MME.ActiveClip())); p.init = function (x, y, dir) { this.setPos(x, y); this.ay = this._y; this.goPntY = this.getPos(0, 116).y; this.velY = 0; this.dir = dir; this.active = true; this.lstVelY = 0; this.root.registerEnemy(this); }; p.strike = function (obj, power) { if (this.active) { with (this) { obj.stop(health.adj(-power)); root.startSound("enemy_dead"); if (health.dead) { root.score.adjScore(health.max); root.attachObjMov("pickupSprite", "low").init(_x + 9, _y + 9, "death"); root.destroySelf(this); } } } }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { tick = tick - f; while (tick <= 0) { gotoAndStop((((pos >= 6) ? ((pos = 0)) : (((((pos = pos + 2)) == 6) ? 2 : (pos)))) + 1) + dir); tick = tick + (pos ? 6 : 60); } var gravY = ((ay < goPnt) ? 0.1 : -0.1); var newY = (f * (((0.5 * (f - 1)) * gravY) + ((velY = velY + (gravY * f))))); if (newY < -15) { newY = -15; } else if (newY > 15) { newY = 15; } newY = newY + ay; var newX = (_x + ((dir ? -1 : 1) * f)); velY = velY * (1 + ((f - 1) / 200)); if (velY < 0) { if (!root.canMoveVertical(_x + 1, _x + 15, newY)) { newY = Math.ceil(newY); while (true) { if (root.canMoveVertical(_x + 1, _x + 15, newY, 0)) { break; } newY++; } goPnt = _y + 77.3333333333333; } } else if (!root.canMoveVertical(_x + 1, _x + 15, newY + 16, 0)) { newY = Math.floor(newY); while (true) { if (root.canMoveVertical(_x + 1, _x + 15, newY + 16, 0)) { break; } newY--; } goPnt = _y - 77.3333333333333; } _y = (ay = newY); if (dir) { if (!root.canMoveHorizontal(_y + 8, _y + 14, newX)) { newX = Math.ceil(newX); while (true) { if (root.canMoveHorizontal(_y + 8, _y + 14, newX)) { break; } newX++; } dir = !dir; } } else if (!root.canMoveHorizontal(_y + 8, _y + 14, newX + 16)) { newX = Math.floor(newX); while (true) { if (root.canMoveHorizontal(_y + 8, _y + 14, newX + 16)) { break; } newX--; } dir = !dir; } _x = newX; var obj = checkOver(); if (obj) { obj.strike(this, 3); } } }; delete p; #endinitclipSymbol 849 MovieClip Frame 1#initclip 6 MME.Zeb = function () { this.ecExempt = true; this.startX = 0; this.startY = 0; this.megX = 0; this.tick = 0; this.pos = 0; this.dir = 0; this.mode = null; this.health = new MME.HealthSys(2, true, null); this._visible = false; this.active = false; }; var p = ((MME.Zeb.prototype = new MME.ActiveClip())); p.init = function (pipeX, pipeY) { var pos = this.getPosTile(pipeX + 0.5, pipeY - 0.5); this._x = (this.startX = pos.x); this._y = (this.startY = pos.y); this.megX = null; this.mode = "check"; this._visible = false; this.active = true; this.root.registerEnemy(this); }; p.destroy = function () { this.root.unregisterEnemy(this); super.destroy(); }; p.strike = function (obj, power) { if (this.active && (this._visible)) { with (this) { obj.stop(health.adj(-power)); root.startSound("enemy_dead"); if (health.dead) { root.score.adjScore(health.max); root.attachObjMov("pickupSprite", "low").init(_x + 9, _y + 9, "death"); kill(); } } } }; p.spawn = function () { trace("spawn"); this.dir = (this.root.megamanLink.megaman._x + 8) < this._x; this.gotoAndStop(1 + this.dir); this._x = this.startX; this._y = this.startY; this.mode = "hide"; this.tick = 30; this.health.reset(); this._visible = true; }; p.kill = function () { trace("kill"); this._x = this.startX; this._y = this.startY; this._visible = false; this.mode = "wait"; this.tick = 60; }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { if (_visible) { if (mode == "hide") { if (((tick = tick - f)) <= 0) { tick = 0; mode = "up"; } } else { tick = tick - f; while (tick <= 0) { gotoAndStop(((((pos = !pos)) * 2) + 3) + dir); tick = tick + 3; } if (mode == "up") { if ((((_y = _y - (2 * f))) <= root.megamanLink.megaman._y) && (_y <= (startY - 18))) { mode = "attack"; } } else if (mode == "attack") { if ((((_x = _x + ((dir ? -3 : 3) * f))) < (root.mapPosX - 18)) || (_x > (root.mapPosX + 256))) { kill(); } } } var obj = checkOver(); if (obj) { obj.strike(this, 2); } } else if (this.mode == "wait") { if (((tick = tick - f)) <= 0) { this.mode = "check"; } } else { var newX = root.megamanLink.megaman._x; if ((newX >= (_x - 100)) && (newX <= (_x + 100))) { if (!megX) { megX = newX; } else if (megX != newX) { spawn(); } } } } }; delete p; #endinitclipSymbol 859 MovieClip [zebSprite] Frame 1#initclip 57 Object.registerClass("zebSprite", MME.Zeb); #endinitclipSymbol 861 MovieClip Frame 1#initclip 5 MME.SpitFireFlame = function () { this.velY = 0; this.pos = 0; this._visible = false; this.active = false; }; var p = ((MME.SpitFireFlame.prototype = new MME.ActiveClip())); p.start = function (bodyX, bodyY, dir) { this._x = bodyX + (dir ? -8 : 8); this._y = bodyY - 24; this.velY = -5; this.pos = false; this.dir = dir; this._visible = true; this.active = true; this.gotoAndStop(1 + this.dir); }; p.checkOver = MME.enemyCollisionDetect; p.control = function (f) { with (this) { _y = _y + (f * (((0.5 * (f - 1)) * 0.2) + ((velY = velY + (f * 0.2))))); _x = _x + ((dir ? -3 : 3) * f); if (pos != (velY >= 0)) { gotoAndStop((((pos = velY >= 0)) ? 3 : 1) + dir); } if ((((_x + 16) <= root.mapPosX) || (_x >= (root.mapPosX + 256))) || (_y >= (root.mapPosY + 256))) { _visible = false; active = false; } var obj = checkOver(); if (obj) { obj.strike(this, 2); } } }; MME.SpitFireBody = function () { this.mode = 0; this.sY = 0; this.sX = 0; this.timeout = 0; this.count = 0; this.active = false; }; var p = ((MME.SpitFireBody.prototype = new MME.ActiveClip())); p.start = function (tileX, tileY) { var pos = this.getPosTile(tileX, tileY); this.sX = (this._x = pos.x); this.sY = (this._y = pos.y); this.mode = 0; this.timeout = 180; this._visible = false; this.gotoAndStop(1); this.active = true; }; p.control = function (f) { with (this) { switch (mode) { case 0 : if (((timeout = timeout - f)) <= 0) { mode = 1; dir = root.megamanLink.megaman._x < _x; gotoAndStop(1 + dir); _visible = true; } return; case 1 : var preY = (_y - (f * 0.25)); _y = ((preY < (sY - 16)) ? (sY - 16) : (preY)); if (preY <= (sY - 16)) { mode = 2; count = 3; timeout = 30; } return; case 2 : if (((timeout = timeout - f)) <= 0) { if (count <= 0) { mode = 4; } else { mode = 3; timeout = 30; gotoAndStop(3 + dir); } } return; case 3 : if (((timeout = timeout - f)) <= 0) { mode = 2; timeout = 30; if (!fire1.active) { fire1.start(sX, sY - 1, dir); } else if (!fire2.active) { fire2.start(sX, sY - 16, dir); } gotoAndStop(1 + dir); count--; } return; case 4 : var preY = (_y + (f * 0.25)); _y = ((preY > sY) ? (sY) : (preY)); if (preY < sY) { break; } mode = 0; this.timeout = 60 * 3; _visible = false; } } }; MME.SpitFireObj = function () { this.active = false; }; var p = ((MME.SpitFireObj.prototype = new MME.ActiveGroup())); p.init = function (body, flame, x, y) { this.addClip("fire1", flame, "low"); this.addClip("fire2", flame, "low"); this.addClip("body", body, "high"); this.attachClips(); this.applyClips(this.body); this.active = true; this.body.start(x, y); }; p.control = function (f) { with (this) { if (fire1.active) { fire1.control(f); } if (fire2.active) { fire2.control(f); } if (body.active) { body.control(f); } } }; #endinitclipSymbol 870 MovieClip [samusDeathSprite] Frame 1#initclip 59 Object.registerClass("samusDeathSprite", MME.Death); #endinitclipSymbol 872 MovieClip Frame 1#initclip 23 MME.RollCredits = function () { this.listing = []; this.active = false; this.mode = 0; this.pos = 0; this.endTime = 0; this.tick = 0; this.onComplete = null; }; var p = ((MME.RollCredits.prototype = new MME.EmptyActiveObj())); p.destroy = function () { var i = 0; while (i <= (this.listing.length - 1)) { if (this.listing[i].obj) { this.root.unregisterDepth(this.listing[i].obj.getDepth()); this.listing[i].obj.removeMovieClip(); } i++; } }; p.init = function (credits, time, onComplete) { this.listing = []; var inc = 0; var i = 0; while (i <= (credits.length - 1)) { if (typeof(credits[i]) == "string") { var lstPos = this.listing.length; this.listing[lstPos] = {str:credits[i], inc:inc++, obj:null}; } else if (typeof(credits[i]) == "number") { inc = inc + credits[i]; } i++; } inc = inc + 30; var i = 0; while (i <= (this.listing.length - 1)) { this.listing[i].sT = time * (this.listing[i].inc / inc); this.listing[i].eT = time * (30 / inc); i++; } this.mode = 0; this.pos = 0; this.active = true; this.endTime = time; this.tick = 0; this.root._x = 0; this.root._y = 0; this.onComplete = onComplete; }; p.control = function (f) { this.tick = this.tick + f; var i = 0; while (i <= (this.listing.length - 1)) { with (this.listing[i]) { if (!obj) { if (((this.tick - sT) >= 0) && ((this.tick - sT) < eT)) { obj = this.root.attachMov("displayFont", this.root.registerDepth("fg"), {str:str, align:"center", rgb:16777215, font:"megamanFont", _x:128, _y:232}); } } else if ((this.tick - sT) >= eT) { this.root.unregisterDepth(obj.getDepth()); obj.removeMovieClip(); obj = null; } else { obj._y = 232 - (240 * ((this.tick - sT) / eT)); } } i++; } if ((this.tick >= this.endTime) && (this.onComplete)) { trace("call onComplete"); this.onComplete(); } }; delete p; #endinitclipSymbol 875 MovieClip Frame 261this.gotoAndPlay(1);Symbol 878 MovieClip Frame 131this.gotoAndPlay(1);Symbol 882 MovieClip [finalScreen] Frame 1#initclip 61 MME.LinksPage = function () { this.links = []; super(); }; MME.LinksPage.prototype = new MME.Movie(); MME.LinksPage.prototype.addLink = function (clip, onClick) { this.links[this.links.length] = clip; clip.useHandCursor = true; clip.mouseIsDown = false; clip.root = this.root; clip.onRollOver = function () { trace("over"); var tColor = new Color(this); trace((tColor + " : ") + this); tColor.setRGB(16711680); mouseIsOver = true; }; clip.onRollOut = function () { var tColor = new Color(this); tColor.setTransform({ra:100, ga:100, ba:100, rb:0, gb:0, bb:0}); mouseIsOver = false; }; clip.onPress = function () { this.mouseIsDown = true; }; clip.onRelease = function () { if (this.mouseIsDown) { this.onClick(); this.mouseIsDown = false; } }; clip.onReleaseOutside = function () { this.mouseIsDown = false; }; clip.onClick = onClick; }; Object.registerClass("finalScreen", MME.LinksPage); #endinitclip this.addClip(this.bgClip1); this.addClip(this.bgClip2); this.addLink(this.bng, function () { this.getURL("http://www.bobandgeorge.com", "bng"); }); this.addLink(this.eyenot, function () { this.getURL("http://www.gamefaqs.com/features/recognition/3351.html", "eyenot"); }); this.addLink(this.spritesinc, function () { this.getURL("http://dynamic4.gamespy.com/~mmm/spritesinc", "spritesinc"); }); this.addLink(this.benLewis, function () { this.getURL("http://www.ocremix.org/detailmix.php?mixid=OCR00023", "benlewis"); }); this.addLink(this.kashou, function () { this.getURL("http://www.unknownbeyond.com", "kashou"); }); this.addLink(this.snowbro, function () { this.getURL("http://www.stud.ntnu.no/~kenth", "snowbro"); }); this.addLink(this.ocremix, function () { this.getURL("http://www.ocremix.org", "ocremix"); }); this.addLink(this.restart, function () { this.root.reloadGame(); });Instance of Symbol 184 MovieClip [displayFont] in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "links"; _xscale = 100; _yscale = 100; align = "right"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] "spritesinc" in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "sprites inc"; _xscale = 100; _yscale = 100; align = "right"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] "benLewis" in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "ben lewis's brinstar remix"; _xscale = 100; _yscale = 100; align = "right"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] "snowbro" in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "snowbro"; _xscale = 100; _yscale = 100; align = "right"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] "kashou" in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "kashou"; _xscale = 100; _yscale = 100; align = "right"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] "eyenot" in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "eyenot"; _xscale = 100; _yscale = 100; align = "right"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] "ocremix" in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "overclocked remix"; _xscale = 100; _yscale = 100; align = "right"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] "restart" in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "restart"; _xscale = 100; _yscale = 100; align = "left"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] "bng" in Symbol 882 MovieClip [finalScreen] Frame 1//component parameters onClipEvent (initialize) { str = "bobandgeorge.com"; _xscale = 100; _yscale = 100; align = "right"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Symbol 882 MovieClip [finalScreen] Frame 100this.gotoAndPlay(90);Symbol 907 MovieClip [capcomIntro] Frame 1#initclip 62 Object.registerClass("capcomIntro", MME.Movie); #endinitclip this.complete = false;Instance of Symbol 184 MovieClip [displayFont] in Symbol 907 MovieClip [capcomIntro] Frame 36//component parameters onClipEvent (initialize) { str = "megaman created by"; _xscale = 100; _yscale = 100; align = "center"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Symbol 907 MovieClip [capcomIntro] Frame 270this.stop(); this.complete = true;Symbol 924 MovieClip [robotMasterIntro] Frame 1#initclip 63 Object.registerClass("robotMasterIntro", MME.Movie); #endinitclip this.complete = false; this.addClip(this.barTop); this.addClip(this.barBottom);Symbol 924 MovieClip [robotMasterIntro] Frame 30this.addClip(this.bgClip1); this.addClip(this.bgClip2);Symbol 924 MovieClip [robotMasterIntro] Frame 100this.startType = this.strClip._x - ((this.str.length * 8) / 2); this.tick = 0; this.index = 0; this.onEnterFrame2 = function () { with (this) { while (str.charAt(index) == " ") { index++; } if (((--tick) <= 0) && (index <= (str.length - 1))) { attachMovie("megamanFont", "font1_" + index, (index + str.length) + 1, {_x:startType + (index * 8), _y:strClip._y, rgb:11068668, symbol:str.charAt(index)}); attachMovie("megamanFont", "font2_" + index, index + 1, {_x:(startType + (index * 8)) + 1, _y:strClip._y + 1, rgb:0, symbol:str.charAt(index)}); index++; tick = 10; } } };Symbol 924 MovieClip [robotMasterIntro] Frame 415this.complete = true; this.stop();Symbol 928 MovieClip [nintendoIntro] Frame 1#initclip 64 Object.registerClass("nintendoIntro", MME.Movie); #endinitclip this.complete = false;Instance of Symbol 184 MovieClip [displayFont] in Symbol 928 MovieClip [nintendoIntro] Frame 1//component parameters onClipEvent (initialize) { str = "samus aran and metroid"; _xscale = 100; _yscale = 100; align = "center"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Instance of Symbol 184 MovieClip [displayFont] in Symbol 928 MovieClip [nintendoIntro] Frame 1//component parameters onClipEvent (initialize) { str = "created by"; _xscale = 100; _yscale = 100; align = "center"; font = "megamanFont"; fontColor = 16777215 /* 0xFFFFFF */; }Symbol 928 MovieClip [nintendoIntro] Frame 153this.complete = true; this.stop();Symbol 931 MovieClip [scLineAni] Frame 1#initclip 3 _global.LAPos = function (x, y) { this.x = x; this.y = y; }; _global.LAStruct = function (offX, offY, lines) { var i = 0; while (i <= (lines.length - 2)) { this[i] = {p1:{x:lines[i].x + offX, y:lines[i].y + offY}, p2:{x:lines[i + 1].x + offX, y:lines[i + 1].y + offY}}; i++; } this.swapNfo = null; this.length = lines.length - 1; this.pause = false; }; Math.easeInOutCubic = function (t, b, c, d) { if (((t = t / (d / 2))) < 1) { return(((((c / 2) * t) * t) * t) + b); } return(((c / 2) * (((((t = t - 2)) * t) * t) + 2)) + b); }; Math.easeOutElastic = function (t, b, c, d, a, p) { if (t == 0) { return(b); } if (((t = t / d)) == 1) { return(b + c); } if (!p) { p = d * 0.3; } if (a < Math.abs(c)) { a = c; var s = (p / 4); } else { var s = ((p / (Math.PI*2)) * Math.asin(c / a)); } return((((a * Math.pow(2, -10 * t)) * Math.sin((((t * d) - s) * (Math.PI*2)) / p)) + c) + b); }; Math.linearTween = function (t, b, c, d) { return(((c * t) / d) + b); }; _global.LineAni = function () { this.struct = []; this.lineSize = 2; this.lineAlpha = 100; this.complete = false; }; var p = ((LineAni.prototype = new MovieClip())); p.addStructure = function (obj) { this.struct.push(obj); }; p.setSwap = function (obj1, obj2) { var swpFunc = this.__proto__.swpRandom; obj1 = this.struct[obj1]; obj2 = this.struct[obj2]; obj1.swapNfo = {from:swpFunc(obj1), to:swpFunc(obj2)}; obj2.swapNfo = {from:swpFunc(obj2), to:swpFunc(obj1)}; }; p.aniSwap = function (pos) { var ss; var aFrom; var aTo; for (var i in this.struct) { if (!this.struct[i].swapNfo) { continue; } ss = this.struct[i]; var g = 0; while (g <= (ss.length - 1)) { aFrom = ss.swapNfo.from; aTo = ss.swapNfo.to; ss[g].p1.x = aFrom[g].p1.x - ((aFrom[g].p1.x - aTo[g].p1.x) * pos); ss[g].p1.y = aFrom[g].p1.y - ((aFrom[g].p1.y - aTo[g].p1.y) * pos); ss[g].p2.x = aFrom[g].p2.x - ((aFrom[g].p2.x - aTo[g].p2.x) * pos); ss[g].p2.y = aFrom[g].p2.y - ((aFrom[g].p2.y - aTo[g].p2.y) * pos); g++; } } }; p.endSwap = function (index) { if (arguments.length) { this.struct[index].swapNfo = null; } else { var i = 0; while (i <= (this.struct.length - 1)) { this.struct[i].swapNfo = null; i++; } } }; p.swpRandom = function (obj) { var output = []; var rand; var ap1; var ap2; var i = (obj.length - 1); while (i >= 0) { rand = Math.floor(Math.random() * i); while (output[rand]) { rand++; } with (obj[i]) { if (Math.random() < 0.5) { ap1 = new LAPos(p1.x, p1.y); ap2 = new LAPos(p2.x, p2.y); } else { ap2 = new LAPos(p1.x, p1.y); ap1 = new LAPos(p2.x, p2.y); } } output[rand] = {p1:ap1, p2:ap2}; i--; } return(output); }; p.render = function () { with (this) { clear(); lineStyle(this.lineSize, 16777215, this.lineAlpha); for (var i in struct) { var g = 0; while (g <= (struct[i].length - 1)) { with (struct[i][g]) { moveTo(p1.x, p1.y); lineTo(p2.x, p2.y); } g++; } } } }; delete p; Object.registerClass("scLineAni", LineAni); #endinitclip var letterS = [new LAPos(8, -25), new LAPos(0, -35), new LAPos(-8, -25), new LAPos(8, 25), new LAPos(0, 35), new LAPos(-8, 25)]; var letterT = [new LAPos(-8, -35), new LAPos(0, -35), new LAPos(0, 35), new LAPos(0, -35), new LAPos(8, -35)]; var letterA = [new LAPos(-8, 35), new LAPos(-5, 0), new LAPos(0, -35), new LAPos(8, 35), new LAPos(4, 0), new LAPos(-4, 0)]; var letterI = [new LAPos(0, 35), new LAPos(0, 17.5), new LAPos(0, 0), new LAPos(0, -17.5), new LAPos(0, -35)]; var letterC = [new LAPos(8, -25), new LAPos(0, -35), new LAPos(-8, -25), new LAPos(-8, 25), new LAPos(0, 35), new LAPos(8, 25)]; var letterR = [new LAPos(-8, 35), new LAPos(-8, -35), new LAPos(8, -20), new LAPos(-8, -5), new LAPos(8, 35)]; var letterE = [new LAPos(8, -35), new LAPos(-8, -35), new LAPos(-8, 0), new LAPos(8, 0), new LAPos(-8, 0), new LAPos(-8, 35), new LAPos(8, 35)]; var letterO = [new LAPos(0, -35), new LAPos(-8, -25), new LAPos(-8, 25), new LAPos(0, 35), new LAPos(8, 25), new LAPos(8, -25), new LAPos(0, -35)]; this.addStructure(new LAStruct(-110, 0, letterS)); this.addStructure(new LAStruct(-90, 0, letterT)); this.addStructure(new LAStruct(-70, 0, letterA)); this.addStructure(new LAStruct(-50, 0, letterT)); this.addStructure(new LAStruct(-30, 0, letterI)); this.addStructure(new LAStruct(-10, 0, letterC)); this.addStructure(new LAStruct(10, 0, letterR)); this.addStructure(new LAStruct(30, 0, letterE)); this.addStructure(new LAStruct(50, 0, letterA)); this.addStructure(new LAStruct(70, 0, letterT)); this.addStructure(new LAStruct(90, 0, letterO)); this.addStructure(new LAStruct(110, 0, letterR)); this.setSwap(0, 8); this.setSwap(1, 6); this.setSwap(2, 5); this.setSwap(3, 11); this.setSwap(4, 9); this.setSwap(7, 10); this.aniStart = getTimer(); this.onEnterFrame = function () { if (this.root.cheatSkipMov || (this.complete)) { this.complete = true; if (this.onComplete) { this.onComplete(); } } if (!this.pause) { var pos = (getTimer() - aniStart); if (pos <= 4166.66666666667) { this.aniSwap(Math.easeOutElastic(pos, 5, -4, 4166.66666666667)); this.render(); } else if ((pos >= 4666.66666666667) && (pos <= 6333.33333333333)) { this.aniSwap(Math.easeInOutCubic(pos - 4666.66666666667, 1, -1, 1666.66666666667)); this.render(); } else if ((pos >= 6500) && (pos <= 6833.33333333333)) { this.attachClip._alpha = Math.linearTween(pos - 6500, 0, 100, 333.333333333333); if ((pos >= 6833.33333333333) && (this.signalPause)) { this.pause = true; } } else if ((pos >= 8333.33333333333) && (pos <= 9000)) { this.fader._alpha = Math.linearTween(pos - 8333.33333333333, 0, 100, 666.666666666667); } else if ((pos > 9000) && (!this.complete)) { this.complete = true; if (this.onComplete) { this.onComplete(); } } } };Symbol 1117 MovieClip [protoSprite] Frame 1#initclip 66 Object.registerClass("protoSprite", MME.Megaman); #endinitclipSymbol 1126 MovieClip [protoDeathSprite] Frame 1#initclip 67 Object.registerClass("protoDeathSprite", MME.Death); #endinitclipInstance of Symbol 184 MovieClip [displayFont] in Symbol 1129 MovieClip Frame 1//component parameters onClipEvent (initialize) { str = "no value"; _xscale = 100; _yscale = 100; align = "left"; font = ""; fontColor = 16777215 /* 0xFFFFFF */; }Symbol 1129 MovieClip Frame 4this.stop();Symbol 1130 MovieClip [metroidData] Frame 1!!!ERRORSymbol 1133 MovieClip [readyImage] Frame 1#initclip 69 Object.registerClass("readyImage", MME.Image); #endinitclipSymbol 1134 MovieClip [score] Frame 1#initclip 70 MME.Score = function () { this.value = 0; this.setScore(0); }; var p = ((MME.Score.prototype = new MovieClip())); Object.registerClass("score", MME.Score); p.setScore = function (newScore) { with (Math) { newScore = min(max(abs(floor(newScore)), 0), 9999999); } this.value = newScore; newScore = newScore.toString(); while (newScore.length < 7) { newScore = "0" + newScore; } var csa = 0; while (csa <= 6) { this["score" + csa].gotoAndStop(Number(newScore.charAt(csa)) + 1); csa++; } }; p.adjScore = function (adj) { this.setScore(this.value + (adj * 100)); }; delete p; #endinitclipSymbol 1143 MovieClip [powerBar] Frame 1#initclip 71 MME.PowerBar = function () { }; Object.registerClass("powerBar", MME.PowerBar); MME.PowerBar.prototype = new MovieClip(); MME.PowerBar.prototype.setColor = function (col) { var colorObj = new Color(this.barColor); colorObj.setRGB(col); }; #endinitclip this.stop();Symbol 1182 MovieClip [pauseMenu] Frame 1#initclip 56 Object.registerClass("pauseMenu", MME.PauseMenu); #endinitclip this.stop();Symbol 1182 MovieClip [pauseMenu] Frame 31this.gotoAndStop(1);Symbol 1183 MovieClip [consoleClip] Frame 1#initclip 24 _global.ConsoleSys = function () { this.msgs = []; this.timeout = 0; this.startTime = 0; }; var p = ((ConsoleSys.prototype = new MovieClip())); Object.registerClass("consoleClip", ConsoleSys); p.showMsg = function (msg, timeout) { var newDepth = 10; for (var i in this) { if ((typeof(this[i]) == "movieclip") && (this[i]._parent == this)) { if (this[i].getDepth() >= newDepth) { newDepth = this[i].getDepth() + 1; } } } this.msgs.unshift(this.attachMovie("displayFont", "font_" + newDepth, newDepth, {str:msg, align:"center", font:"megamanFont", fontColor:16777215, bgColor:0, killTime:(timeout * 1000) + getTimer()})); this.resetPositions(); }; p.resetPositions = function () { var setY = 0; var i = 0; while (i <= (this.msgs.length - 1)) { this.msgs[i]._y = (setY = setY - this.msgs[i].height); i++; } }; p.onEnterFrame = function () { if (this.msgs.length) { var time = getTimer(); var callReset = false; for (var i in this.msgs) { if (time >= this.msgs[i].killTime) { callReset = true; var tmp = this.msgs[i]; this.msgs.splice(i, 1); tmp.removeMovieClip(); } } if (callReset) { this.resetPositions(); } } }; delete p; #endinitclip
Library Items
Symbol 1 Bitmap | Used by:2 | |
Symbol 2 Graphic | Uses:1 | Used by:21 |
Symbol 3 Bitmap | Used by:4 | |
Symbol 4 Graphic | Uses:3 | Used by:21 |
Symbol 5 Bitmap | Used by:6 | |
Symbol 6 Graphic | Uses:5 | Used by:21 |
Symbol 7 Bitmap | Used by:8 | |
Symbol 8 Graphic | Uses:7 | Used by:21 |
Symbol 9 Bitmap | Used by:10 | |
Symbol 10 Graphic | Uses:9 | Used by:21 |
Symbol 11 Bitmap | Used by:12 | |
Symbol 12 Graphic | Uses:11 | Used by:21 |
Symbol 13 Bitmap | Used by:14 | |
Symbol 14 Graphic | Uses:13 | Used by:21 |
Symbol 15 Bitmap | Used by:16 | |
Symbol 16 Graphic | Uses:15 | Used by:21 |
Symbol 17 Bitmap | Used by:18 | |
Symbol 18 Graphic | Uses:17 | Used by:21 |
Symbol 19 Bitmap | Used by:20 | |
Symbol 20 Graphic | Uses:19 | Used by:21 |
Symbol 21 MovieClip [letter] | Uses:2 4 6 8 10 12 14 16 18 20 | Used by:1134 |
Symbol 22 Graphic | Used by:Timeline | |
Symbol 23 MovieClip | Used by:34 | |
Symbol 24 Graphic | Used by:29 | |
Symbol 25 Bitmap | Used by:26 | |
Symbol 26 Graphic | Uses:25 | Used by:29 |
Symbol 27 Graphic | Used by:29 | |
Symbol 28 ShapeTweening | Used by:29 | |
Symbol 29 MovieClip | Uses:24 26 27 28 | Used by:34 |
Symbol 30 Graphic | Used by:33 570 571 617 907 924 928 930 | |
Symbol 31 Bitmap | Used by:32 | |
Symbol 32 Graphic | Uses:31 | Used by:33 |
Symbol 33 MovieClip [megamanFont] | Uses:30 32 | Used by:34 1129 |
Symbol 34 MovieClip | Uses:23 29 33 | Used by:Timeline |
Symbol 35 Bitmap | Used by:36 | |
Symbol 36 Graphic | Uses:35 | Used by:167 |
Symbol 37 Bitmap | Used by:38 | |
Symbol 38 Graphic | Uses:37 | Used by:167 |
Symbol 39 Bitmap | Used by:40 | |
Symbol 40 Graphic | Uses:39 | Used by:167 |
Symbol 41 Bitmap | Used by:42 | |
Symbol 42 Graphic | Uses:41 | Used by:167 |
Symbol 43 Bitmap | Used by:44 | |
Symbol 44 Graphic | Uses:43 | Used by:167 |
Symbol 45 Bitmap | Used by:46 | |
Symbol 46 Graphic | Uses:45 | Used by:167 |
Symbol 47 Bitmap | Used by:48 | |
Symbol 48 Graphic | Uses:47 | Used by:167 |
Symbol 49 Bitmap | Used by:50 | |
Symbol 50 Graphic | Uses:49 | Used by:167 |
Symbol 51 Bitmap | Used by:52 | |
Symbol 52 Graphic | Uses:51 | Used by:167 |
Symbol 53 Bitmap | Used by:54 | |
Symbol 54 Graphic | Uses:53 | Used by:167 |
Symbol 55 Bitmap | Used by:56 | |
Symbol 56 Graphic | Uses:55 | Used by:167 |
Symbol 57 Bitmap | Used by:58 | |
Symbol 58 Graphic | Uses:57 | Used by:167 |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:167 |
Symbol 61 Bitmap | Used by:62 | |
Symbol 62 Graphic | Uses:61 | Used by:167 |
Symbol 63 Bitmap | Used by:64 | |
Symbol 64 Graphic | Uses:63 | Used by:167 |
Symbol 65 Bitmap | Used by:66 | |
Symbol 66 Graphic | Uses:65 | Used by:167 |
Symbol 67 Bitmap | Used by:68 | |
Symbol 68 Graphic | Uses:67 | Used by:167 |
Symbol 69 Bitmap | Used by:70 | |
Symbol 70 Graphic | Uses:69 | Used by:167 |
Symbol 71 Bitmap | Used by:72 | |
Symbol 72 Graphic | Uses:71 | Used by:167 |
Symbol 73 Bitmap | Used by:74 | |
Symbol 74 Graphic | Uses:73 | Used by:167 |
Symbol 75 Bitmap | Used by:76 | |
Symbol 76 Graphic | Uses:75 | Used by:167 |
Symbol 77 Bitmap | Used by:78 | |
Symbol 78 Graphic | Uses:77 | Used by:167 |
Symbol 79 Bitmap | Used by:80 | |
Symbol 80 Graphic | Uses:79 | Used by:167 |
Symbol 81 Bitmap | Used by:82 | |
Symbol 82 Graphic | Uses:81 | Used by:167 |
Symbol 83 Bitmap | Used by:84 | |
Symbol 84 Graphic | Uses:83 | Used by:167 |
Symbol 85 Bitmap | Used by:86 | |
Symbol 86 Graphic | Uses:85 | Used by:167 |
Symbol 87 Bitmap | Used by:88 | |
Symbol 88 Graphic | Uses:87 | Used by:167 |
Symbol 89 Bitmap | Used by:90 | |
Symbol 90 Graphic | Uses:89 | Used by:167 |
Symbol 91 Bitmap | Used by:92 | |
Symbol 92 Graphic | Uses:91 | Used by:167 |
Symbol 93 Bitmap | Used by:94 | |
Symbol 94 Graphic | Uses:93 | Used by:167 |
Symbol 95 Bitmap | Used by:96 | |
Symbol 96 Graphic | Uses:95 | Used by:167 |
Symbol 97 Bitmap | Used by:98 | |
Symbol 98 Graphic | Uses:97 | Used by:167 |
Symbol 99 Bitmap | Used by:100 | |
Symbol 100 Graphic | Uses:99 | Used by:167 |
Symbol 101 Bitmap | Used by:102 | |
Symbol 102 Graphic | Uses:101 | Used by:167 |
Symbol 103 Bitmap | Used by:104 | |
Symbol 104 Graphic | Uses:103 | Used by:167 |
Symbol 105 Bitmap | Used by:106 | |
Symbol 106 Graphic | Uses:105 | Used by:167 |
Symbol 107 Bitmap | Used by:108 | |
Symbol 108 Graphic | Uses:107 | Used by:167 |
Symbol 109 Bitmap | Used by:110 | |
Symbol 110 Graphic | Uses:109 | Used by:167 |
Symbol 111 Bitmap | Used by:112 | |
Symbol 112 Graphic | Uses:111 | Used by:167 |
Symbol 113 Bitmap | Used by:114 | |
Symbol 114 Graphic | Uses:113 | Used by:167 |
Symbol 115 Bitmap | Used by:116 | |
Symbol 116 Graphic | Uses:115 | Used by:167 |
Symbol 117 Bitmap | Used by:118 | |
Symbol 118 Graphic | Uses:117 | Used by:167 |
Symbol 119 Bitmap | Used by:120 | |
Symbol 120 Graphic | Uses:119 | Used by:167 |
Symbol 121 Bitmap | Used by:122 | |
Symbol 122 Graphic | Uses:121 | Used by:167 |
Symbol 123 Bitmap | Used by:124 | |
Symbol 124 Graphic | Uses:123 | Used by:167 |
Symbol 125 Bitmap | Used by:126 | |
Symbol 126 Graphic | Uses:125 | Used by:167 |
Symbol 127 Bitmap | Used by:128 | |
Symbol 128 Graphic | Uses:127 | Used by:167 |
Symbol 129 Bitmap | Used by:130 | |
Symbol 130 Graphic | Uses:129 | Used by:167 |
Symbol 131 Bitmap | Used by:132 | |
Symbol 132 Graphic | Uses:131 | Used by:167 |
Symbol 133 Bitmap | Used by:134 | |
Symbol 134 Graphic | Uses:133 | Used by:167 |
Symbol 135 Bitmap | Used by:136 | |
Symbol 136 Graphic | Uses:135 | Used by:167 |
Symbol 137 Bitmap | Used by:138 | |
Symbol 138 Graphic | Uses:137 | Used by:167 |
Symbol 139 Bitmap | Used by:140 | |
Symbol 140 Graphic | Uses:139 | Used by:167 |
Symbol 141 Bitmap | Used by:142 | |
Symbol 142 Graphic | Uses:141 | Used by:167 |
Symbol 143 Bitmap | Used by:144 | |
Symbol 144 Graphic | Uses:143 | Used by:167 |
Symbol 145 Bitmap | Used by:146 | |
Symbol 146 Graphic | Uses:145 | Used by:167 |
Symbol 147 Bitmap | Used by:148 | |
Symbol 148 Graphic | Uses:147 | Used by:167 |
Symbol 149 Bitmap | Used by:150 | |
Symbol 150 Graphic | Uses:149 | Used by:167 |
Symbol 151 Bitmap | Used by:152 | |
Symbol 152 Graphic | Uses:151 | Used by:167 |
Symbol 153 Bitmap | Used by:154 | |
Symbol 154 Graphic | Uses:153 | Used by:167 |
Symbol 155 Bitmap | Used by:156 | |
Symbol 156 Graphic | Uses:155 | Used by:167 |
Symbol 157 Bitmap | Used by:158 | |
Symbol 158 Graphic | Uses:157 | Used by:167 |
Symbol 159 Bitmap | Used by:160 | |
Symbol 160 Graphic | Uses:159 | Used by:167 |
Symbol 161 Bitmap | Used by:162 | |
Symbol 162 Graphic | Uses:161 | Used by:167 |
Symbol 163 Bitmap | Used by:164 | |
Symbol 164 Graphic | Uses:163 | Used by:167 |
Symbol 165 Bitmap | Used by:166 | |
Symbol 166 Graphic | Uses:165 | Used by:167 |
Symbol 167 MovieClip | Uses:36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100 102 104 106 108 110 112 114 116 118 120 122 124 126 128 130 132 134 136 138 140 142 144 146 148 150 152 154 156 158 160 162 164 166 | Used by:168 |
Symbol 168 MovieClip [runnerPreloader] | Uses:167 | Used by:Timeline |
Symbol 169 Bitmap | Used by:170 | |
Symbol 170 Graphic | Uses:169 | Used by:171 |
Symbol 171 MovieClip | Uses:170 | Used by:Timeline |
Symbol 172 Graphic | Used by:177 | |
Symbol 173 Bitmap | Used by:174 | |
Symbol 174 Graphic | Uses:173 | Used by:177 |
Symbol 175 Bitmap | Used by:176 | |
Symbol 176 Graphic | Uses:175 | Used by:177 |
Symbol 177 MovieClip [resizeBlock] | Uses:172 174 176 | Used by:Timeline |
Symbol 178 Graphic | Used by:180 882 Timeline | |
Symbol 179 MovieClip [MegamanEngine] | Used by:180 | |
Symbol 180 MovieClip [engineParent] | Uses:178 179 | Used by:Timeline |
Symbol 181 Font | Used by:182 | |
Symbol 182 EditableText | Uses:181 | Used by:1130 |
Symbol 183 Graphic | Used by:1129 | |
Symbol 184 MovieClip [displayFont] | Used by:570 617 882 907 928 1129 | |
Symbol 185 Bitmap | Used by:186 187 | |
Symbol 186 Graphic | Uses:185 | Used by:388 |
Symbol 187 Graphic | Uses:185 | Used by:388 |
Symbol 188 Bitmap | Used by:189 190 | |
Symbol 189 Graphic | Uses:188 | Used by:388 |
Symbol 190 Graphic | Uses:188 | Used by:388 |
Symbol 191 Bitmap | Used by:192 193 | |
Symbol 192 Graphic | Uses:191 | Used by:388 |
Symbol 193 Graphic | Uses:191 | Used by:388 |
Symbol 194 Bitmap | Used by:195 196 | |
Symbol 195 Graphic | Uses:194 | Used by:388 |
Symbol 196 Graphic | Uses:194 | Used by:388 |
Symbol 197 Bitmap | Used by:198 199 | |
Symbol 198 Graphic | Uses:197 | Used by:388 |
Symbol 199 Graphic | Uses:197 | Used by:388 |
Symbol 200 Bitmap | Used by:201 202 | |
Symbol 201 Graphic | Uses:200 | Used by:388 |
Symbol 202 Graphic | Uses:200 | Used by:388 |
Symbol 203 Bitmap | Used by:204 205 | |
Symbol 204 Graphic | Uses:203 | Used by:388 |
Symbol 205 Graphic | Uses:203 | Used by:388 |
Symbol 206 Bitmap | Used by:207 208 | |
Symbol 207 Graphic | Uses:206 | Used by:388 |
Symbol 208 Graphic | Uses:206 | Used by:388 |
Symbol 209 Bitmap | Used by:210 211 1095 | |
Symbol 210 Graphic | Uses:209 | Used by:388 |
Symbol 211 Graphic | Uses:209 | Used by:388 |
Symbol 212 Bitmap | Used by:213 214 | |
Symbol 213 Graphic | Uses:212 | Used by:388 |
Symbol 214 Graphic | Uses:212 | Used by:388 |
Symbol 215 Bitmap | Used by:216 217 | |
Symbol 216 Graphic | Uses:215 | Used by:388 |
Symbol 217 Graphic | Uses:215 | Used by:388 |
Symbol 218 Bitmap | Used by:219 220 | |
Symbol 219 Graphic | Uses:218 | Used by:388 |
Symbol 220 Graphic | Uses:218 | Used by:388 |
Symbol 221 Bitmap | Used by:222 | |
Symbol 222 Graphic | Uses:221 | Used by:388 |
Symbol 223 Bitmap | Used by:224 | |
Symbol 224 Graphic | Uses:223 | Used by:388 |
Symbol 225 Bitmap | Used by:226 | |
Symbol 226 Graphic | Uses:225 | Used by:388 |
Symbol 227 Bitmap | Used by:228 229 | |
Symbol 228 Graphic | Uses:227 | Used by:388 |
Symbol 229 Graphic | Uses:227 | Used by:388 |
Symbol 230 Bitmap | Used by:231 | |
Symbol 231 Graphic | Uses:230 | Used by:388 |
Symbol 232 Bitmap | Used by:233 234 | |
Symbol 233 Graphic | Uses:232 | Used by:388 |
Symbol 234 Graphic | Uses:232 | Used by:388 |
Symbol 235 Bitmap | Used by:236 237 | |
Symbol 236 Graphic | Uses:235 | Used by:388 |
Symbol 237 Graphic | Uses:235 | Used by:388 |
Symbol 238 Bitmap | Used by:239 240 | |
Symbol 239 Graphic | Uses:238 | Used by:388 |
Symbol 240 Graphic | Uses:238 | Used by:388 |
Symbol 241 Bitmap | Used by:242 243 | |
Symbol 242 Graphic | Uses:241 | Used by:388 |
Symbol 243 Graphic | Uses:241 | Used by:388 |
Symbol 244 Bitmap | Used by:245 246 | |
Symbol 245 Graphic | Uses:244 | Used by:388 |
Symbol 246 Graphic | Uses:244 | Used by:388 |
Symbol 247 Bitmap | Used by:248 249 | |
Symbol 248 Graphic | Uses:247 | Used by:388 |
Symbol 249 Graphic | Uses:247 | Used by:388 |
Symbol 250 Bitmap | Used by:251 252 | |
Symbol 251 Graphic | Uses:250 | Used by:388 |
Symbol 252 Graphic | Uses:250 | Used by:388 |
Symbol 253 Bitmap | Used by:254 255 | |
Symbol 254 Graphic | Uses:253 | Used by:388 |
Symbol 255 Graphic | Uses:253 | Used by:388 |
Symbol 256 Bitmap | Used by:257 258 | |
Symbol 257 Graphic | Uses:256 | Used by:388 |
Symbol 258 Graphic | Uses:256 | Used by:388 |
Symbol 259 Bitmap | Used by:260 261 | |
Symbol 260 Graphic | Uses:259 | Used by:388 |
Symbol 261 Graphic | Uses:259 | Used by:388 |
Symbol 262 Bitmap | Used by:263 264 | |
Symbol 263 Graphic | Uses:262 | Used by:388 |
Symbol 264 Graphic | Uses:262 | Used by:388 |
Symbol 265 Bitmap | Used by:266 267 | |
Symbol 266 Graphic | Uses:265 | Used by:388 |
Symbol 267 Graphic | Uses:265 | Used by:388 |
Symbol 268 Bitmap | Used by:269 270 | |
Symbol 269 Graphic | Uses:268 | Used by:388 |
Symbol 270 Graphic | Uses:268 | Used by:388 |
Symbol 271 Bitmap | Used by:272 273 | |
Symbol 272 Graphic | Uses:271 | Used by:388 |
Symbol 273 Graphic | Uses:271 | Used by:388 |
Symbol 274 Bitmap | Used by:275 276 | |
Symbol 275 Graphic | Uses:274 | Used by:388 |
Symbol 276 Graphic | Uses:274 | Used by:388 |
Symbol 277 Bitmap | Used by:278 279 | |
Symbol 278 Graphic | Uses:277 | Used by:388 |
Symbol 279 Graphic | Uses:277 | Used by:388 |
Symbol 280 Bitmap | Used by:281 | |
Symbol 281 Graphic | Uses:280 | Used by:388 |
Symbol 282 Bitmap | Used by:283 284 | |
Symbol 283 Graphic | Uses:282 | Used by:388 |
Symbol 284 Graphic | Uses:282 | Used by:388 |
Symbol 285 Bitmap | Used by:286 287 | |
Symbol 286 Graphic | Uses:285 | Used by:388 |
Symbol 287 Graphic | Uses:285 | Used by:388 |
Symbol 288 Bitmap | Used by:289 290 | |
Symbol 289 Graphic | Uses:288 | Used by:388 |
Symbol 290 Graphic | Uses:288 | Used by:388 |
Symbol 291 Bitmap | Used by:292 293 | |
Symbol 292 Graphic | Uses:291 | Used by:388 |
Symbol 293 Graphic | Uses:291 | Used by:388 |
Symbol 294 Bitmap | Used by:295 296 | |
Symbol 295 Graphic | Uses:294 | Used by:388 |
Symbol 296 Graphic | Uses:294 | Used by:388 |
Symbol 297 Bitmap | Used by:298 299 | |
Symbol 298 Graphic | Uses:297 | Used by:388 |
Symbol 299 Graphic | Uses:297 | Used by:388 |
Symbol 300 Bitmap | Used by:301 302 | |
Symbol 301 Graphic | Uses:300 | Used by:388 |
Symbol 302 Graphic | Uses:300 | Used by:388 |
Symbol 303 Bitmap | Used by:304 305 | |
Symbol 304 Graphic | Uses:303 | Used by:388 |
Symbol 305 Graphic | Uses:303 | Used by:388 |
Symbol 306 Bitmap | Used by:307 308 | |
Symbol 307 Graphic | Uses:306 | Used by:388 |
Symbol 308 Graphic | Uses:306 | Used by:388 |
Symbol 309 Bitmap | Used by:310 311 | |
Symbol 310 Graphic | Uses:309 | Used by:388 |
Symbol 311 Graphic | Uses:309 | Used by:388 |
Symbol 312 Bitmap | Used by:313 314 | |
Symbol 313 Graphic | Uses:312 | Used by:388 |
Symbol 314 Graphic | Uses:312 | Used by:388 |
Symbol 315 Bitmap | Used by:316 317 | |
Symbol 316 Graphic | Uses:315 | Used by:388 |
Symbol 317 Graphic | Uses:315 | Used by:388 |
Symbol 318 Bitmap | Used by:319 320 | |
Symbol 319 Graphic | Uses:318 | Used by:388 |
Symbol 320 Graphic | Uses:318 | Used by:388 |
Symbol 321 Bitmap | Used by:322 323 | |
Symbol 322 Graphic | Uses:321 | Used by:388 |
Symbol 323 Graphic | Uses:321 | Used by:388 |
Symbol 324 Bitmap | Used by:325 326 | |
Symbol 325 Graphic | Uses:324 | Used by:388 |
Symbol 326 Graphic | Uses:324 | Used by:388 |
Symbol 327 Bitmap | Used by:328 329 | |
Symbol 328 Graphic | Uses:327 | Used by:388 |
Symbol 329 Graphic | Uses:327 | Used by:388 |
Symbol 330 Bitmap | Used by:331 | |
Symbol 331 Graphic | Uses:330 | Used by:388 |
Symbol 332 Bitmap | Used by:333 334 | |
Symbol 333 Graphic | Uses:332 | Used by:388 |
Symbol 334 Graphic | Uses:332 | Used by:388 |
Symbol 335 Bitmap | Used by:336 337 | |
Symbol 336 Graphic | Uses:335 | Used by:388 |
Symbol 337 Graphic | Uses:335 | Used by:388 |
Symbol 338 Bitmap | Used by:339 340 | |
Symbol 339 Graphic | Uses:338 | Used by:388 |
Symbol 340 Graphic | Uses:338 | Used by:388 |
Symbol 341 Bitmap | Used by:342 343 | |
Symbol 342 Graphic | Uses:341 | Used by:388 |
Symbol 343 Graphic | Uses:341 | Used by:388 |
Symbol 344 Bitmap | Used by:345 346 | |
Symbol 345 Graphic | Uses:344 | Used by:388 |
Symbol 346 Graphic | Uses:344 | Used by:388 |
Symbol 347 Bitmap | Used by:348 349 | |
Symbol 348 Graphic | Uses:347 | Used by:388 |
Symbol 349 Graphic | Uses:347 | Used by:388 |
Symbol 350 Bitmap | Used by:351 352 | |
Symbol 351 Graphic | Uses:350 | Used by:388 |
Symbol 352 Graphic | Uses:350 | Used by:388 |
Symbol 353 Bitmap | Used by:354 355 | |
Symbol 354 Graphic | Uses:353 | Used by:388 |
Symbol 355 Graphic | Uses:353 | Used by:388 |
Symbol 356 Bitmap | Used by:357 358 | |
Symbol 357 Graphic | Uses:356 | Used by:388 |
Symbol 358 Graphic | Uses:356 | Used by:388 |
Symbol 359 Bitmap | Used by:360 361 | |
Symbol 360 Graphic | Uses:359 | Used by:388 |
Symbol 361 Graphic | Uses:359 | Used by:388 |
Symbol 362 Bitmap | Used by:363 364 | |
Symbol 363 Graphic | Uses:362 | Used by:388 |
Symbol 364 Graphic | Uses:362 | Used by:388 |
Symbol 365 Bitmap | Used by:366 367 | |
Symbol 366 Graphic | Uses:365 | Used by:388 |
Symbol 367 Graphic | Uses:365 | Used by:388 |
Symbol 368 Bitmap | Used by:369 370 | |
Symbol 369 Graphic | Uses:368 | Used by:388 |
Symbol 370 Graphic | Uses:368 | Used by:388 |
Symbol 371 Bitmap | Used by:372 373 | |
Symbol 372 Graphic | Uses:371 | Used by:388 |
Symbol 373 Graphic | Uses:371 | Used by:388 |
Symbol 374 Bitmap | Used by:375 376 | |
Symbol 375 Graphic | Uses:374 | Used by:388 |
Symbol 376 Graphic | Uses:374 | Used by:388 |
Symbol 377 Bitmap | Used by:378 379 | |
Symbol 378 Graphic | Uses:377 | Used by:388 |
Symbol 379 Graphic | Uses:377 | Used by:388 |
Symbol 380 Bitmap | Used by:381 | |
Symbol 381 Graphic | Uses:380 | Used by:388 |
Symbol 382 Bitmap | Used by:383 384 | |
Symbol 383 Graphic | Uses:382 | Used by:388 |
Symbol 384 Graphic | Uses:382 | Used by:388 |
Symbol 385 Bitmap | Used by:386 387 | |
Symbol 386 Graphic | Uses:385 | Used by:388 |
Symbol 387 Graphic | Uses:385 | Used by:388 |
Symbol 388 MovieClip [megaman] | Uses:186 187 189 190 192 193 195 196 198 199 201 202 204 205 207 208 210 211 213 214 216 217 219 220 222 224 226 228 229 231 233 234 236 237 239 240 242 243 245 246 248 249 251 252 254 255 257 258 260 261 263 264 266 267 269 270 272 273 275 276 278 279 281 283 284 286 287 289 290 292 293 295 296 298 299 301 302 304 305 307 308 310 311 313 314 316 317 319 320 322 323 325 326 328 329 331 333 334 336 337 339 340 342 343 345 346 348 349 351 352 354 355 357 358 360 361 363 364 366 367 369 370 372 373 375 376 378 379 381 383 384 386 387 | Used by:1129 |
Symbol 389 Bitmap | Used by:390 | |
Symbol 390 Graphic | Uses:389 | Used by:397 |
Symbol 391 Bitmap | Used by:392 | |
Symbol 392 Graphic | Uses:391 | Used by:397 |
Symbol 393 Bitmap | Used by:394 | |
Symbol 394 Graphic | Uses:393 | Used by:397 |
Symbol 395 Bitmap | Used by:396 | |
Symbol 396 Graphic | Uses:395 | Used by:397 |
Symbol 397 MovieClip [megamanDeathSpark] | Uses:390 392 394 396 | Used by:1129 |
Symbol 398 Bitmap | Used by:399 | |
Symbol 399 Graphic | Uses:398 | Used by:418 |
Symbol 400 Bitmap | Used by:401 402 | |
Symbol 401 Graphic | Uses:400 | Used by:418 |
Symbol 402 Graphic | Uses:400 | Used by:418 |
Symbol 403 Bitmap | Used by:404 405 | |
Symbol 404 Graphic | Uses:403 | Used by:418 |
Symbol 405 Graphic | Uses:403 | Used by:418 |
Symbol 406 Bitmap | Used by:407 408 | |
Symbol 407 Graphic | Uses:406 | Used by:418 |
Symbol 408 Graphic | Uses:406 | Used by:418 |
Symbol 409 Bitmap | Used by:410 411 | |
Symbol 410 Graphic | Uses:409 | Used by:418 |
Symbol 411 Graphic | Uses:409 | Used by:418 |
Symbol 412 Bitmap | Used by:413 414 | |
Symbol 413 Graphic | Uses:412 | Used by:418 |
Symbol 414 Graphic | Uses:412 | Used by:418 |
Symbol 415 Bitmap | Used by:416 417 | |
Symbol 416 Graphic | Uses:415 | Used by:418 |
Symbol 417 Graphic | Uses:415 | Used by:418 |
Symbol 418 MovieClip [megamanPellet] | Uses:399 401 402 404 405 407 408 410 411 413 414 416 417 | Used by:1129 |
Symbol 419 Bitmap | Used by:420 | |
Symbol 420 Graphic | Uses:419 | Used by:421 |
Symbol 421 MovieClip [metroidPointerSprite] | Uses:420 | Used by:1129 |
Symbol 422 Bitmap | Used by:423 | |
Symbol 423 Graphic | Uses:422 | Used by:438 |
Symbol 424 Bitmap | Used by:425 | |
Symbol 425 Graphic | Uses:424 | Used by:438 |
Symbol 426 Bitmap | Used by:427 | |
Symbol 427 Graphic | Uses:426 | Used by:438 |
Symbol 428 Bitmap | Used by:429 | |
Symbol 429 Graphic | Uses:428 | Used by:438 |
Symbol 430 Bitmap | Used by:431 | |
Symbol 431 Graphic | Uses:430 | Used by:438 |
Symbol 432 Bitmap | Used by:433 | |
Symbol 433 Graphic | Uses:432 | Used by:438 |
Symbol 434 Bitmap | Used by:435 | |
Symbol 435 Graphic | Uses:434 | Used by:438 |
Symbol 436 Bitmap | Used by:437 | |
Symbol 437 Graphic | Uses:436 | Used by:438 |
Symbol 438 MovieClip [pickupSprite] | Uses:423 425 427 429 431 433 435 437 | Used by:1129 |
Symbol 439 Graphic | Used by:440 | |
Symbol 440 MovieClip [emptyClip] | Uses:439 | Used by:570 1129 |
Symbol 441 Bitmap | Used by:442 | |
Symbol 442 Graphic | Uses:441 | Used by:443 |
Symbol 443 MovieClip [metroid_boss] | Uses:442 | Used by:1129 |
Symbol 444 Bitmap | Used by:445 | |
Symbol 445 Graphic | Uses:444 | Used by:524 |
Symbol 446 Bitmap | Used by:447 448 | |
Symbol 447 Graphic | Uses:446 | Used by:524 |
Symbol 448 Graphic | Uses:446 | Used by:524 |
Symbol 449 Bitmap | Used by:450 451 | |
Symbol 450 Graphic | Uses:449 | Used by:524 |
Symbol 451 Graphic | Uses:449 | Used by:524 |
Symbol 452 Bitmap | Used by:453 454 | |
Symbol 453 Graphic | Uses:452 | Used by:524 |
Symbol 454 Graphic | Uses:452 | Used by:524 |
Symbol 455 Bitmap | Used by:456 457 | |
Symbol 456 Graphic | Uses:455 | Used by:524 |
Symbol 457 Graphic | Uses:455 | Used by:524 |
Symbol 458 Bitmap | Used by:459 460 | |
Symbol 459 Graphic | Uses:458 | Used by:524 |
Symbol 460 Graphic | Uses:458 | Used by:524 |
Symbol 461 Bitmap | Used by:462 463 | |
Symbol 462 Graphic | Uses:461 | Used by:524 |
Symbol 463 Graphic | Uses:461 | Used by:524 |
Symbol 464 Bitmap | Used by:465 466 | |
Symbol 465 Graphic | Uses:464 | Used by:524 |
Symbol 466 Graphic | Uses:464 | Used by:524 |
Symbol 467 Bitmap | Used by:468 469 | |
Symbol 468 Graphic | Uses:467 | Used by:524 |
Symbol 469 Graphic | Uses:467 | Used by:524 |
Symbol 470 Bitmap | Used by:471 472 | |
Symbol 471 Graphic | Uses:470 | Used by:524 |
Symbol 472 Graphic | Uses:470 | Used by:524 |
Symbol 473 Bitmap | Used by:474 475 | |
Symbol 474 Graphic | Uses:473 | Used by:524 |
Symbol 475 Graphic | Uses:473 | Used by:524 |
Symbol 476 Bitmap | Used by:477 478 | |
Symbol 477 Graphic | Uses:476 | Used by:524 |
Symbol 478 Graphic | Uses:476 | Used by:524 |
Symbol 479 Bitmap | Used by:480 481 | |
Symbol 480 Graphic | Uses:479 | Used by:524 |
Symbol 481 Graphic | Uses:479 | Used by:524 |
Symbol 482 Bitmap | Used by:483 484 | |
Symbol 483 Graphic | Uses:482 | Used by:524 |
Symbol 484 Graphic | Uses:482 | Used by:524 |
Symbol 485 Bitmap | Used by:486 487 | |
Symbol 486 Graphic | Uses:485 | Used by:524 |
Symbol 487 Graphic | Uses:485 | Used by:524 |
Symbol 488 Bitmap | Used by:489 490 | |
Symbol 489 Graphic | Uses:488 | Used by:524 |
Symbol 490 Graphic | Uses:488 | Used by:524 |
Symbol 491 Bitmap | Used by:492 493 | |
Symbol 492 Graphic | Uses:491 | Used by:524 |
Symbol 493 Graphic | Uses:491 | Used by:524 |
Symbol 494 Bitmap | Used by:495 496 | |
Symbol 495 Graphic | Uses:494 | Used by:524 |
Symbol 496 Graphic | Uses:494 | Used by:524 |
Symbol 497 Bitmap | Used by:498 499 | |
Symbol 498 Graphic | Uses:497 | Used by:524 |
Symbol 499 Graphic | Uses:497 | Used by:524 |
Symbol 500 Bitmap | Used by:501 502 | |
Symbol 501 Graphic | Uses:500 | Used by:524 |
Symbol 502 Graphic | Uses:500 | Used by:524 |
Symbol 503 Bitmap | Used by:504 505 | |
Symbol 504 Graphic | Uses:503 | Used by:524 |
Symbol 505 Graphic | Uses:503 | Used by:524 |
Symbol 506 Bitmap | Used by:507 508 | |
Symbol 507 Graphic | Uses:506 | Used by:524 |
Symbol 508 Graphic | Uses:506 | Used by:524 |
Symbol 509 Bitmap | Used by:510 511 | |
Symbol 510 Graphic | Uses:509 | Used by:524 |
Symbol 511 Graphic | Uses:509 | Used by:524 |
Symbol 512 Bitmap | Used by:513 514 | |
Symbol 513 Graphic | Uses:512 | Used by:524 |
Symbol 514 Graphic | Uses:512 | Used by:524 |
Symbol 515 Bitmap | Used by:516 517 | |
Symbol 516 Graphic | Uses:515 | Used by:524 |
Symbol 517 Graphic | Uses:515 | Used by:524 |
Symbol 518 Bitmap | Used by:519 | |
Symbol 519 Graphic | Uses:518 | Used by:524 |
Symbol 520 Bitmap | Used by:521 | |
Symbol 521 Graphic | Uses:520 | Used by:524 |
Symbol 522 Bitmap | Used by:523 | |
Symbol 523 Graphic | Uses:522 | Used by:524 |
Symbol 524 MovieClip [samusSprite] | Uses:445 447 448 450 451 453 454 456 457 459 460 462 463 465 466 468 469 471 472 474 475 477 478 480 481 483 484 486 487 489 490 492 493 495 496 498 499 501 502 504 505 507 508 510 511 513 514 516 517 519 521 523 | Used by:1129 |
Symbol 525 Bitmap | Used by:526 | |
Symbol 526 Graphic | Uses:525 | Used by:535 |
Symbol 527 Bitmap | Used by:528 | |
Symbol 528 Graphic | Uses:527 | Used by:535 |
Symbol 529 Bitmap | Used by:530 | |
Symbol 530 Graphic | Uses:529 | Used by:535 |
Symbol 531 Bitmap | Used by:532 | |
Symbol 532 Graphic | Uses:531 | Used by:535 |
Symbol 533 Bitmap | Used by:534 | |
Symbol 534 Graphic | Uses:533 | Used by:535 |
Symbol 535 MovieClip [samusBombSprite] | Uses:526 528 530 532 534 | Used by:1129 |
Symbol 536 Bitmap | Used by:537 | |
Symbol 537 Graphic | Uses:536 | Used by:538 |
Symbol 538 MovieClip [samusPelletSprite] | Uses:537 | Used by:1129 |
Symbol 539 Bitmap | Used by:540 | |
Symbol 540 Graphic | Uses:539 | Used by:551 |
Symbol 541 Bitmap | Used by:542 | |
Symbol 542 Graphic | Uses:541 | Used by:551 |
Symbol 543 Bitmap | Used by:544 | |
Symbol 544 Graphic | Uses:543 | Used by:551 |
Symbol 545 Bitmap | Used by:546 | |
Symbol 546 Graphic | Uses:545 | Used by:551 |
Symbol 547 Bitmap | Used by:548 | |
Symbol 548 Graphic | Uses:547 | Used by:551 |
Symbol 549 Bitmap | Used by:550 | |
Symbol 550 Graphic | Uses:549 | Used by:551 |
Symbol 551 MovieClip [megamanDamagedSpark] | Uses:540 542 544 546 548 550 | Used by:1129 |
Symbol 552 Bitmap | Used by:553 | |
Symbol 553 Graphic | Uses:552 | Used by:554 |
Symbol 554 MovieClip [metroid_area01] | Uses:553 | Used by:1129 |
Symbol 555 Bitmap | Used by:556 557 558 559 560 561 562 563 | |
Symbol 556 Graphic | Uses:555 | Used by:564 |
Symbol 557 Graphic | Uses:555 | Used by:564 |
Symbol 558 Graphic | Uses:555 | Used by:564 |
Symbol 559 Graphic | Uses:555 | Used by:564 |
Symbol 560 Graphic | Uses:555 | Used by:564 |
Symbol 561 Graphic | Uses:555 | Used by:564 |
Symbol 562 Graphic | Uses:555 | Used by:564 |
Symbol 563 Graphic | Uses:555 | Used by:564 |
Symbol 564 MovieClip [zoomer] | Uses:556 557 558 559 560 561 562 563 | Used by:1129 |
Symbol 565 Bitmap | Used by:566 | |
Symbol 566 Graphic | Uses:565 | Used by:570 617 |
Symbol 567 Bitmap | Used by:569 611 | |
Symbol 568 Bitmap | Used by:569 610 | |
Symbol 569 Graphic | Uses:567 568 | Used by:570 617 |
Symbol 570 MovieClip [metroidMainMenu] | Uses:30 566 569 184 440 | Used by:1129 |
Symbol 571 MovieClip [keyCatcherMetroid] | Uses:30 | Used by:1129 |
Symbol 572 Bitmap | Used by:573 | |
Symbol 573 Graphic | Uses:572 | Used by:574 |
Symbol 574 MovieClip [metroid_area02] | Uses:573 | Used by:1129 |
Symbol 575 Bitmap | Used by:576 | |
Symbol 576 Graphic | Uses:575 | Used by:581 |
Symbol 577 Bitmap | Used by:578 | |
Symbol 578 Graphic | Uses:577 | Used by:581 |
Symbol 579 Bitmap | Used by:580 | |
Symbol 580 Graphic | Uses:579 | Used by:581 |
Symbol 581 MovieClip [blueBubbleDoor] | Uses:576 578 580 | Used by:1129 |
Symbol 582 Bitmap | Used by:583 | |
Symbol 583 Graphic | Uses:582 | Used by:584 |
Symbol 584 MovieClip [metroid_area03] | Uses:583 | Used by:1129 |
Symbol 585 Bitmap | Used by:586 | |
Symbol 586 Graphic | Uses:585 | Used by:590 |
Symbol 587 Bitmap | Used by:588 589 | |
Symbol 588 Graphic | Uses:587 | Used by:590 |
Symbol 589 Graphic | Uses:587 | Used by:590 |
Symbol 590 MovieClip [skree_sprite] | Uses:586 588 589 | Used by:1129 |
Symbol 591 Bitmap | Used by:592 593 | |
Symbol 592 Graphic | Uses:591 | Used by:594 |
Symbol 593 Graphic | Uses:591 | Used by:594 |
Symbol 594 MovieClip [redRipperSprite] | Uses:592 593 | Used by:1129 |
Symbol 595 Bitmap | Used by:596 | |
Symbol 596 Graphic | Uses:595 | Used by:597 |
Symbol 597 MovieClip [skreeDeathSpark] | Uses:596 | Used by:1129 |
Symbol 598 Bitmap | Used by:599 | |
Symbol 599 Graphic | Uses:598 | Used by:602 |
Symbol 600 Bitmap | Used by:601 | |
Symbol 601 Graphic | Uses:600 | Used by:602 |
Symbol 602 MovieClip [rioSprite] | Uses:599 601 | Used by:1129 |
Symbol 603 Bitmap | Used by:604 | |
Symbol 604 Graphic | Uses:603 | Used by:609 |
Symbol 605 Bitmap | Used by:606 | |
Symbol 606 Graphic | Uses:605 | Used by:609 |
Symbol 607 Bitmap | Used by:608 | |
Symbol 608 Graphic | Uses:607 | Used by:609 |
Symbol 609 MovieClip [redBubbleDoor] | Uses:604 606 608 | Used by:1129 |
Symbol 610 Graphic | Uses:568 | Used by:617 |
Symbol 611 Graphic | Uses:567 | Used by:617 |
Symbol 612 ShapeTweening | Used by:617 | |
Symbol 613 Bitmap | Used by:614 | |
Symbol 614 Graphic | Uses:613 | Used by:617 |
Symbol 615 ShapeTweening | Used by:617 | |
Symbol 616 Graphic | Used by:617 | |
Symbol 617 MovieClip [metroidMenuIntro] | Uses:30 610 611 569 612 566 614 184 615 616 | Used by:1129 |
Symbol 618 Bitmap | Used by:619 | |
Symbol 619 Graphic | Uses:618 | Used by:620 |
Symbol 620 MovieClip [metroid_area00] | Uses:619 | Used by:1129 |
Symbol 621 Bitmap | Used by:622 | |
Symbol 622 Graphic | Uses:621 | Used by:623 |
Symbol 623 MovieClip [metroid_area07] | Uses:622 | Used by:1129 |
Symbol 624 Bitmap | Used by:625 | |
Symbol 625 Graphic | Uses:624 | Used by:626 |
Symbol 626 MovieClip [metroid_area10] | Uses:625 | Used by:1129 |
Symbol 627 Bitmap | Used by:628 | |
Symbol 628 Graphic | Uses:627 | Used by:629 |
Symbol 629 MovieClip [metroid_area12] | Uses:628 | Used by:1129 |
Symbol 630 Bitmap | Used by:631 | |
Symbol 631 Graphic | Uses:630 | Used by:632 |
Symbol 632 MovieClip [metroid_area13] | Uses:631 | Used by:1129 |
Symbol 633 Bitmap | Used by:634 | |
Symbol 634 Graphic | Uses:633 | Used by:635 |
Symbol 635 MovieClip [metroid_area15] | Uses:634 | Used by:1129 |
Symbol 636 Bitmap | Used by:637 | |
Symbol 637 Graphic | Uses:636 | Used by:638 |
Symbol 638 MovieClip [metroid_area16] | Uses:637 | Used by:1129 |
Symbol 639 Bitmap | Used by:640 | |
Symbol 640 Graphic | Uses:639 | Used by:641 |
Symbol 641 MovieClip [metroid_transfer] | Uses:640 | Used by:1129 |
Symbol 642 Bitmap | Used by:643 | |
Symbol 643 Graphic | Uses:642 | Used by:644 |
Symbol 644 MovieClip [metroid_area04] | Uses:643 | Used by:1129 |
Symbol 645 Bitmap | Used by:646 | |
Symbol 646 Graphic | Uses:645 | Used by:647 |
Symbol 647 MovieClip [sandRedBlue_5] | Uses:646 | Used by:1129 |
Symbol 648 Bitmap | Used by:649 | |
Symbol 649 Graphic | Uses:648 | Used by:650 |
Symbol 650 MovieClip [sandRedWhite_5_base] | Uses:649 | Used by:1129 |
Symbol 651 Bitmap | Used by:652 | |
Symbol 652 Graphic | Uses:651 | Used by:653 |
Symbol 653 MovieClip [sinkySand_6] | Uses:652 | Used by:1129 |
Symbol 654 Bitmap | Used by:655 | |
Symbol 655 Graphic | Uses:654 | Used by:656 |
Symbol 656 MovieClip [sinkySand_8_base] | Uses:655 | Used by:1129 |
Symbol 657 Bitmap | Used by:658 | |
Symbol 658 Graphic | Uses:657 | Used by:659 |
Symbol 659 MovieClip [sinkySand_12] | Uses:658 | Used by:1129 |
Symbol 660 Bitmap | Used by:661 | |
Symbol 661 Graphic | Uses:660 | Used by:662 |
Symbol 662 MovieClip [sandRedBlue_28_base] | Uses:661 | Used by:1129 |
Symbol 663 Bitmap | Used by:664 | |
Symbol 664 Graphic | Uses:663 | Used by:665 |
Symbol 665 MovieClip [sandRedBlue_61_base] | Uses:664 | Used by:1129 |
Symbol 666 Bitmap | Used by:667 | |
Symbol 667 Graphic | Uses:666 | Used by:668 |
Symbol 668 MovieClip [sinkySand_62_base] | Uses:667 | Used by:1129 |
Symbol 669 Bitmap | Used by:670 | |
Symbol 670 Graphic | Uses:669 | Used by:671 |
Symbol 671 MovieClip [metroid_area06] | Uses:670 | Used by:1129 |
Symbol 672 Bitmap | Used by:673 | |
Symbol 673 Graphic | Uses:672 | Used by:674 |
Symbol 674 MovieClip [metroid_area08] | Uses:673 | Used by:1129 |
Symbol 675 Bitmap | Used by:676 | |
Symbol 676 Graphic | Uses:675 | Used by:677 |
Symbol 677 MovieClip [metroid_area11] | Uses:676 | Used by:1129 |
Symbol 678 Bitmap | Used by:679 682 | |
Symbol 679 Graphic | Uses:678 | Used by:684 |
Symbol 680 Bitmap | Used by:681 683 | |
Symbol 681 Graphic | Uses:680 | Used by:684 |
Symbol 682 Graphic | Uses:678 | Used by:684 |
Symbol 683 Graphic | Uses:680 | Used by:684 |
Symbol 684 MovieClip [altRipperSprite] | Uses:679 681 682 683 | Used by:1129 |
Symbol 685 Bitmap | Used by:686 689 691 693 | |
Symbol 686 Graphic | Uses:685 | Used by:695 |
Symbol 687 Bitmap | Used by:688 690 692 694 | |
Symbol 688 Graphic | Uses:687 | Used by:695 |
Symbol 689 Graphic | Uses:685 | Used by:695 |
Symbol 690 Graphic | Uses:687 | Used by:695 |
Symbol 691 Graphic | Uses:685 | Used by:695 |
Symbol 692 Graphic | Uses:687 | Used by:695 |
Symbol 693 Graphic | Uses:685 | Used by:695 |
Symbol 694 Graphic | Uses:687 | Used by:695 |
Symbol 695 MovieClip [altZoomerSprite] | Uses:686 688 689 690 691 692 693 694 | Used by:1129 |
Symbol 696 Bitmap | Used by:697 700 702 704 | |
Symbol 697 Graphic | Uses:696 | Used by:706 |
Symbol 698 Bitmap | Used by:699 701 703 705 | |
Symbol 699 Graphic | Uses:698 | Used by:706 |
Symbol 700 Graphic | Uses:696 | Used by:706 |
Symbol 701 Graphic | Uses:698 | Used by:706 |
Symbol 702 Graphic | Uses:696 | Used by:706 |
Symbol 703 Graphic | Uses:698 | Used by:706 |
Symbol 704 Graphic | Uses:696 | Used by:706 |
Symbol 705 Graphic | Uses:698 | Used by:706 |
Symbol 706 MovieClip [blueAltZoomerSprite] | Uses:697 699 700 701 702 703 704 705 | Used by:1129 |
Symbol 707 Bitmap | Used by:708 709 | |
Symbol 708 Graphic | Uses:707 | Used by:716 |
Symbol 709 Graphic | Uses:707 | Used by:716 |
Symbol 710 Bitmap | Used by:711 712 | |
Symbol 711 Graphic | Uses:710 | Used by:716 |
Symbol 712 Graphic | Uses:710 | Used by:716 |
Symbol 713 Bitmap | Used by:714 715 | |
Symbol 714 Graphic | Uses:713 | Used by:716 |
Symbol 715 Graphic | Uses:713 | Used by:716 |
Symbol 716 MovieClip [altZebSprite] | Uses:708 709 711 712 714 715 | Used by:1129 |
Symbol 717 Bitmap | Used by:718 | |
Symbol 718 Graphic | Uses:717 | Used by:719 |
Symbol 719 MovieClip [MBbubbleSprite] | Uses:718 | Used by:1129 |
Symbol 720 Bitmap | Used by:721 722 | |
Symbol 721 Graphic | Uses:720 | Used by:729 |
Symbol 722 Graphic | Uses:720 | Used by:729 |
Symbol 723 Bitmap | Used by:724 725 | |
Symbol 724 Graphic | Uses:723 | Used by:729 |
Symbol 725 Graphic | Uses:723 | Used by:729 |
Symbol 726 Bitmap | Used by:727 728 | |
Symbol 727 Graphic | Uses:726 | Used by:729 |
Symbol 728 Graphic | Uses:726 | Used by:729 |
Symbol 729 MovieClip [blueWaverSprite] | Uses:721 722 724 725 727 728 | Used by:1129 |
Symbol 730 Bitmap | Used by:731 | |
Symbol 731 Graphic | Uses:730 | Used by:746 |
Symbol 732 Bitmap | Used by:733 | |
Symbol 733 Graphic | Uses:732 | Used by:746 |
Symbol 734 Bitmap | Used by:735 | |
Symbol 735 Graphic | Uses:734 | Used by:746 |
Symbol 736 Bitmap | Used by:737 | |
Symbol 737 Graphic | Uses:736 | Used by:746 |
Symbol 738 Bitmap | Used by:739 | |
Symbol 739 Graphic | Uses:738 | Used by:746 |
Symbol 740 Bitmap | Used by:741 | |
Symbol 741 Graphic | Uses:740 | Used by:746 |
Symbol 742 Bitmap | Used by:743 | |
Symbol 743 Graphic | Uses:742 | Used by:746 |
Symbol 744 Bitmap | Used by:745 | |
Symbol 745 Graphic | Uses:744 | Used by:746 |
Symbol 746 MovieClip [bubbleSprite] | Uses:731 733 735 737 739 741 743 745 | Used by:1129 |
Symbol 747 Bitmap | Used by:748 749 | |
Symbol 748 Graphic | Uses:747 | Used by:756 |
Symbol 749 Graphic | Uses:747 | Used by:756 |
Symbol 750 Bitmap | Used by:751 752 | |
Symbol 751 Graphic | Uses:750 | Used by:756 |
Symbol 752 Graphic | Uses:750 | Used by:756 |
Symbol 753 Bitmap | Used by:754 755 | |
Symbol 754 Graphic | Uses:753 | Used by:756 |
Symbol 755 Graphic | Uses:753 | Used by:756 |
Symbol 756 MovieClip [redZebSprite] | Uses:748 749 751 752 754 755 | Used by:1129 |
Symbol 757 Bitmap | Used by:758 759 760 761 762 763 764 765 | |
Symbol 758 Graphic | Uses:757 | Used by:766 |
Symbol 759 Graphic | Uses:757 | Used by:766 |
Symbol 760 Graphic | Uses:757 | Used by:766 |
Symbol 761 Graphic | Uses:757 | Used by:766 |
Symbol 762 Graphic | Uses:757 | Used by:766 |
Symbol 763 Graphic | Uses:757 | Used by:766 |
Symbol 764 Graphic | Uses:757 | Used by:766 |
Symbol 765 Graphic | Uses:757 | Used by:766 |
Symbol 766 MovieClip [redZoomerSprite] | Uses:758 759 760 761 762 763 764 765 | Used by:1129 |
Symbol 767 Bitmap | Used by:768 769 | |
Symbol 768 Graphic | Uses:767 | Used by:770 |
Symbol 769 Graphic | Uses:767 | Used by:770 |
Symbol 770 MovieClip [ripperSprite] | Uses:768 769 | Used by:1129 |
Symbol 771 Bitmap | Used by:772 773 | |
Symbol 772 Graphic | Uses:771 | Used by:777 |
Symbol 773 Graphic | Uses:771 | Used by:777 |
Symbol 774 Bitmap | Used by:775 776 | |
Symbol 775 Graphic | Uses:774 | Used by:777 |
Symbol 776 Graphic | Uses:774 | Used by:777 |
Symbol 777 MovieClip [spitFireBodySprite] | Uses:772 773 775 776 | Used by:1129 |
Symbol 778 Bitmap | Used by:779 780 | |
Symbol 779 Graphic | Uses:778 | Used by:784 |
Symbol 780 Graphic | Uses:778 | Used by:784 |
Symbol 781 Bitmap | Used by:782 783 | |
Symbol 782 Graphic | Uses:781 | Used by:784 |
Symbol 783 Graphic | Uses:781 | Used by:784 |
Symbol 784 MovieClip [spitFireFlameSprite] | Uses:779 780 782 783 | Used by:1129 |
Symbol 785 Bitmap | Used by:786 787 | |
Symbol 786 Graphic | Uses:785 | Used by:794 |
Symbol 787 Graphic | Uses:785 | Used by:794 |
Symbol 788 Bitmap | Used by:789 790 | |
Symbol 789 Graphic | Uses:788 | Used by:794 |
Symbol 790 Graphic | Uses:788 | Used by:794 |
Symbol 791 Bitmap | Used by:792 793 | |
Symbol 792 Graphic | Uses:791 | Used by:794 |
Symbol 793 Graphic | Uses:791 | Used by:794 |
Symbol 794 MovieClip [waverSprite] | Uses:786 787 789 790 792 793 | Used by:1129 |
Symbol 795 Font | Used by:796 798 800 812 814 816 826 829 831 834 836 838 840 842 844 846 848 860 871 | |
Symbol 796 EditableText | Uses:795 | Used by:797 |
Symbol 797 MovieClip | Uses:796 | Used by:1129 |
Symbol 798 EditableText | Uses:795 | Used by:799 |
Symbol 799 MovieClip | Uses:798 | Used by:1129 |
Symbol 800 EditableText | Uses:795 | Used by:811 |
Symbol 801 Sound [megaman_death] | Used by:811 | |
Symbol 802 Sound [megaman_land] | Used by:811 | |
Symbol 803 Sound [megaman_shoot] | Used by:811 | |
Symbol 804 Sound [megaman_teleportland] | Used by:811 | |
Symbol 805 Sound [megaman_charge] | Used by:811 | |
Symbol 806 Sound [megaman_chargefull] | Used by:811 | |
Symbol 807 Sound [megaman_damage] | Used by:811 | |
Symbol 808 Sound [healthrestore] | Used by:811 | |
Symbol 809 Sound [tink] | Used by:811 | |
Symbol 810 Sound [megaman_teleportback] | Used by:811 | |
Symbol 811 MovieClip | Uses:800 801 802 803 804 805 806 807 808 809 810 | Used by:1129 |
Symbol 812 EditableText | Uses:795 | Used by:813 |
Symbol 813 MovieClip | Uses:812 | Used by:1129 |
Symbol 814 EditableText | Uses:795 | Used by:815 |
Symbol 815 MovieClip | Uses:814 | Used by:1129 |
Symbol 816 EditableText | Uses:795 | Used by:825 |
Symbol 817 Sound [samus_dropbomb] | Used by:825 | |
Symbol 818 Sound [samus_intro] | Used by:825 | |
Symbol 819 Sound [samus_explosion] | Used by:825 | |
Symbol 820 Sound [samus_jump] | Used by:825 | |
Symbol 821 Sound [samus_land] | Used by:825 | |
Symbol 822 Sound [samus_morph] | Used by:825 | |
Symbol 823 Sound [samus_shoot] | Used by:825 | |
Symbol 824 Sound [samus_walk] | Used by:825 | |
Symbol 825 MovieClip | Uses:816 817 818 819 820 821 822 823 824 | Used by:1129 |
Symbol 826 EditableText | Uses:795 | Used by:828 |
Symbol 827 Sound [enemy_dead] | Used by:828 | |
Symbol 828 MovieClip | Uses:826 827 | Used by:1129 |
Symbol 829 EditableText | Uses:795 | Used by:830 |
Symbol 830 MovieClip | Uses:829 | Used by:1129 |
Symbol 831 EditableText | Uses:795 | Used by:833 |
Symbol 832 Sound [samus_doorchange] | Used by:833 | |
Symbol 833 MovieClip | Uses:831 832 | Used by:1129 |
Symbol 834 EditableText | Uses:795 | Used by:835 |
Symbol 835 MovieClip | Uses:834 | Used by:1129 |
Symbol 836 EditableText | Uses:795 | Used by:837 |
Symbol 837 MovieClip | Uses:836 | Used by:1129 |
Symbol 838 EditableText | Uses:795 | Used by:839 |
Symbol 839 MovieClip | Uses:838 | Used by:1129 |
Symbol 840 EditableText | Uses:795 | Used by:841 |
Symbol 841 MovieClip | Uses:840 | Used by:1129 |
Symbol 842 EditableText | Uses:795 | Used by:843 |
Symbol 843 MovieClip | Uses:842 | Used by:1129 |
Symbol 844 EditableText | Uses:795 | Used by:845 |
Symbol 845 MovieClip | Uses:844 | Used by:1129 |
Symbol 846 EditableText | Uses:795 | Used by:847 |
Symbol 847 MovieClip | Uses:846 | Used by:1129 |
Symbol 848 EditableText | Uses:795 | Used by:849 |
Symbol 849 MovieClip | Uses:848 | Used by:1129 |
Symbol 850 Bitmap | Used by:851 852 | |
Symbol 851 Graphic | Uses:850 | Used by:859 |
Symbol 852 Graphic | Uses:850 | Used by:859 |
Symbol 853 Bitmap | Used by:854 855 | |
Symbol 854 Graphic | Uses:853 | Used by:859 |
Symbol 855 Graphic | Uses:853 | Used by:859 |
Symbol 856 Bitmap | Used by:857 858 | |
Symbol 857 Graphic | Uses:856 | Used by:859 |
Symbol 858 Graphic | Uses:856 | Used by:859 |
Symbol 859 MovieClip [zebSprite] | Uses:851 852 854 855 857 858 | Used by:1129 |
Symbol 860 EditableText | Uses:795 | Used by:861 |
Symbol 861 MovieClip | Uses:860 | Used by:1129 |
Symbol 862 Bitmap | Used by:863 | |
Symbol 863 Graphic | Uses:862 | Used by:870 |
Symbol 864 Bitmap | Used by:865 | |
Symbol 865 Graphic | Uses:864 | Used by:870 |
Symbol 866 Bitmap | Used by:867 | |
Symbol 867 Graphic | Uses:866 | Used by:870 |
Symbol 868 Bitmap | Used by:869 | |
Symbol 869 Graphic | Uses:868 | Used by:870 |
Symbol 870 MovieClip [samusDeathSprite] | Uses:863 865 867 869 | Used by:1129 |
Symbol 871 EditableText | Uses:795 | Used by:872 |
Symbol 872 MovieClip | Uses:871 | Used by:1129 |
Symbol 873 Bitmap | Used by:874 | |
Symbol 874 Graphic | Uses:873 | Used by:875 |
Symbol 875 MovieClip | Uses:874 | Used by:882 924 |
Symbol 876 Bitmap | Used by:877 | |
Symbol 877 Graphic | Uses:876 | Used by:878 |
Symbol 878 MovieClip | Uses:877 | Used by:882 924 |
Symbol 879 ShapeTweening | Used by:882 | |
Symbol 880 ShapeTweening | Used by:882 | |
Symbol 881 Graphic | Used by:882 | |
Symbol 882 MovieClip [finalScreen] | Uses:178 875 878 184 879 880 881 | Used by:1129 |
Symbol 883 Bitmap | Used by:884 | |
Symbol 884 Graphic | Uses:883 | Used by:907 |
Symbol 885 Graphic | Used by:907 | |
Symbol 886 Sound | Used by:907 | |
Symbol 887 Bitmap | Used by:888 | |
Symbol 888 Graphic | Uses:887 | Used by:907 |
Symbol 889 Graphic | Used by:907 | |
Symbol 890 Bitmap | Used by:891 | |
Symbol 891 Graphic | Uses:890 | Used by:907 |
Symbol 892 Graphic | Used by:907 | |
Symbol 893 Bitmap | Used by:894 | |
Symbol 894 Graphic | Uses:893 | Used by:907 |
Symbol 895 Bitmap | Used by:896 | |
Symbol 896 Graphic | Uses:895 | Used by:907 |
Symbol 897 Bitmap | Used by:898 | |
Symbol 898 Graphic | Uses:897 | Used by:907 |
Symbol 899 Bitmap | Used by:900 | |
Symbol 900 Graphic | Uses:899 | Used by:907 |
Symbol 901 Bitmap | Used by:902 | |
Symbol 902 Graphic | Uses:901 | Used by:907 |
Symbol 903 Bitmap | Used by:904 | |
Symbol 904 Graphic | Uses:903 | Used by:907 |
Symbol 905 Bitmap | Used by:906 | |
Symbol 906 Graphic | Uses:905 | Used by:907 |
Symbol 907 MovieClip [capcomIntro] | Uses:30 884 184 885 886 888 889 891 892 894 896 898 900 902 904 906 | Used by:1129 |
Symbol 908 ShapeTweening | Used by:924 | |
Symbol 909 Graphic | Used by:924 | |
Symbol 910 Graphic | Used by:911 | |
Symbol 911 MovieClip | Uses:910 | Used by:924 |
Symbol 912 Bitmap | Used by:913 | |
Symbol 913 Graphic | Uses:912 | Used by:916 |
Symbol 914 Bitmap | Used by:915 | |
Symbol 915 Graphic | Uses:914 | Used by:916 |
Symbol 916 MovieClip | Uses:913 915 | Used by:924 |
Symbol 917 Bitmap | Used by:918 | |
Symbol 918 Graphic | Uses:917 | Used by:921 |
Symbol 919 Bitmap | Used by:920 | |
Symbol 920 Graphic | Uses:919 | Used by:921 |
Symbol 921 MovieClip | Uses:918 920 | Used by:924 |
Symbol 922 Sound | Used by:924 | |
Symbol 923 Graphic | Used by:924 1143 | |
Symbol 924 MovieClip [robotMasterIntro] | Uses:30 908 909 911 916 921 922 875 878 923 | Used by:1129 |
Symbol 925 Bitmap | Used by:926 | |
Symbol 926 Graphic | Uses:925 | Used by:928 |
Symbol 927 Sound | Used by:928 | |
Symbol 928 MovieClip [nintendoIntro] | Uses:30 926 184 927 | Used by:1129 |
Symbol 929 MovieClip | Used by:931 | |
Symbol 930 MovieClip | Uses:30 | Used by:931 |
Symbol 931 MovieClip [scLineAni] | Uses:929 930 | Used by:1129 |
Symbol 932 Bitmap | Used by:933 934 | |
Symbol 933 Graphic | Uses:932 | Used by:1117 |
Symbol 934 Graphic | Uses:932 | Used by:1117 |
Symbol 935 Bitmap | Used by:936 937 | |
Symbol 936 Graphic | Uses:935 | Used by:1117 |
Symbol 937 Graphic | Uses:935 | Used by:1117 |
Symbol 938 Bitmap | Used by:939 940 | |
Symbol 939 Graphic | Uses:938 | Used by:1117 |
Symbol 940 Graphic | Uses:938 | Used by:1117 |
Symbol 941 Bitmap | Used by:942 943 | |
Symbol 942 Graphic | Uses:941 | Used by:1117 |
Symbol 943 Graphic | Uses:941 | Used by:1117 |
Symbol 944 Bitmap | Used by:945 946 | |
Symbol 945 Graphic | Uses:944 | Used by:1117 |
Symbol 946 Graphic | Uses:944 | Used by:1117 |
Symbol 947 Bitmap | Used by:948 949 | |
Symbol 948 Graphic | Uses:947 | Used by:1117 |
Symbol 949 Graphic | Uses:947 | Used by:1117 |
Symbol 950 Bitmap | Used by:951 952 | |
Symbol 951 Graphic | Uses:950 | Used by:1117 |
Symbol 952 Graphic | Uses:950 | Used by:1117 |
Symbol 953 Bitmap | Used by:954 955 | |
Symbol 954 Graphic | Uses:953 | Used by:1117 |
Symbol 955 Graphic | Uses:953 | Used by:1117 |
Symbol 956 Bitmap | Used by:957 958 | |
Symbol 957 Graphic | Uses:956 | Used by:1117 |
Symbol 958 Graphic | Uses:956 | Used by:1117 |
Symbol 959 Bitmap | Used by:960 961 | |
Symbol 960 Graphic | Uses:959 | Used by:1117 |
Symbol 961 Graphic | Uses:959 | Used by:1117 |
Symbol 962 Bitmap | Used by:963 964 | |
Symbol 963 Graphic | Uses:962 | Used by:1117 |
Symbol 964 Graphic | Uses:962 | Used by:1117 |
Symbol 965 Bitmap | Used by:966 | |
Symbol 966 Graphic | Uses:965 | Used by:1117 |
Symbol 967 Bitmap | Used by:968 | |
Symbol 968 Graphic | Uses:967 | Used by:1117 |
Symbol 969 Bitmap | Used by:970 | |
Symbol 970 Graphic | Uses:969 | Used by:1117 |
Symbol 971 Bitmap | Used by:972 973 | |
Symbol 972 Graphic | Uses:971 | Used by:1117 |
Symbol 973 Graphic | Uses:971 | Used by:1117 |
Symbol 974 Bitmap | Used by:975 | |
Symbol 975 Graphic | Uses:974 | Used by:1117 |
Symbol 976 Bitmap | Used by:977 978 | |
Symbol 977 Graphic | Uses:976 | Used by:1117 |
Symbol 978 Graphic | Uses:976 | Used by:1117 |
Symbol 979 Bitmap | Used by:980 981 | |
Symbol 980 Graphic | Uses:979 | Used by:1117 |
Symbol 981 Graphic | Uses:979 | Used by:1117 |
Symbol 982 Bitmap | Used by:983 984 | |
Symbol 983 Graphic | Uses:982 | Used by:1117 |
Symbol 984 Graphic | Uses:982 | Used by:1117 |
Symbol 985 Bitmap | Used by:986 987 | |
Symbol 986 Graphic | Uses:985 | Used by:1117 |
Symbol 987 Graphic | Uses:985 | Used by:1117 |
Symbol 988 Bitmap | Used by:989 990 | |
Symbol 989 Graphic | Uses:988 | Used by:1117 |
Symbol 990 Graphic | Uses:988 | Used by:1117 |
Symbol 991 Bitmap | Used by:992 993 | |
Symbol 992 Graphic | Uses:991 | Used by:1117 |
Symbol 993 Graphic | Uses:991 | Used by:1117 |
Symbol 994 Bitmap | Used by:995 996 | |
Symbol 995 Graphic | Uses:994 | Used by:1117 |
Symbol 996 Graphic | Uses:994 | Used by:1117 |
Symbol 997 Bitmap | Used by:998 999 | |
Symbol 998 Graphic | Uses:997 | Used by:1117 |
Symbol 999 Graphic | Uses:997 | Used by:1117 |
Symbol 1000 Bitmap | Used by:1001 1002 | |
Symbol 1001 Graphic | Uses:1000 | Used by:1117 |
Symbol 1002 Graphic | Uses:1000 | Used by:1117 |
Symbol 1003 Bitmap | Used by:1004 1005 | |
Symbol 1004 Graphic | Uses:1003 | Used by:1117 |
Symbol 1005 Graphic | Uses:1003 | Used by:1117 |
Symbol 1006 Bitmap | Used by:1007 1011 | |
Symbol 1007 Graphic | Uses:1006 | Used by:1117 |
Symbol 1008 Bitmap | Used by:1009 1010 | |
Symbol 1009 Graphic | Uses:1008 | Used by:1117 |
Symbol 1010 Graphic | Uses:1008 | Used by:1117 |
Symbol 1011 Graphic | Uses:1006 | Used by:1117 |
Symbol 1012 Bitmap | Used by:1013 1014 | |
Symbol 1013 Graphic | Uses:1012 | Used by:1117 |
Symbol 1014 Graphic | Uses:1012 | Used by:1117 |
Symbol 1015 Bitmap | Used by:1016 1017 | |
Symbol 1016 Graphic | Uses:1015 | Used by:1117 |
Symbol 1017 Graphic | Uses:1015 | Used by:1117 |
Symbol 1018 Bitmap | Used by:1019 1020 | |
Symbol 1019 Graphic | Uses:1018 | Used by:1117 |
Symbol 1020 Graphic | Uses:1018 | Used by:1117 |
Symbol 1021 Bitmap | Used by:1022 | |
Symbol 1022 Graphic | Uses:1021 | Used by:1117 |
Symbol 1023 Bitmap | Used by:1024 1025 | |
Symbol 1024 Graphic | Uses:1023 | Used by:1117 |
Symbol 1025 Graphic | Uses:1023 | Used by:1117 |
Symbol 1026 Bitmap | Used by:1027 1028 | |
Symbol 1027 Graphic | Uses:1026 | Used by:1117 |
Symbol 1028 Graphic | Uses:1026 | Used by:1117 |
Symbol 1029 Bitmap | Used by:1030 1031 | |
Symbol 1030 Graphic | Uses:1029 | Used by:1117 |
Symbol 1031 Graphic | Uses:1029 | Used by:1117 |
Symbol 1032 Bitmap | Used by:1033 1034 | |
Symbol 1033 Graphic | Uses:1032 | Used by:1117 |
Symbol 1034 Graphic | Uses:1032 | Used by:1117 |
Symbol 1035 Bitmap | Used by:1036 1037 | |
Symbol 1036 Graphic | Uses:1035 | Used by:1117 |
Symbol 1037 Graphic | Uses:1035 | Used by:1117 |
Symbol 1038 Bitmap | Used by:1039 1040 | |
Symbol 1039 Graphic | Uses:1038 | Used by:1117 |
Symbol 1040 Graphic | Uses:1038 | Used by:1117 |
Symbol 1041 Bitmap | Used by:1042 1043 | |
Symbol 1042 Graphic | Uses:1041 | Used by:1117 |
Symbol 1043 Graphic | Uses:1041 | Used by:1117 |
Symbol 1044 Bitmap | Used by:1045 1046 | |
Symbol 1045 Graphic | Uses:1044 | Used by:1117 |
Symbol 1046 Graphic | Uses:1044 | Used by:1117 |
Symbol 1047 Bitmap | Used by:1048 1049 | |
Symbol 1048 Graphic | Uses:1047 | Used by:1117 |
Symbol 1049 Graphic | Uses:1047 | Used by:1117 |
Symbol 1050 Bitmap | Used by:1051 1052 | |
Symbol 1051 Graphic | Uses:1050 | Used by:1117 |
Symbol 1052 Graphic | Uses:1050 | Used by:1117 |
Symbol 1053 Bitmap | Used by:1054 1055 | |
Symbol 1054 Graphic | Uses:1053 | Used by:1117 |
Symbol 1055 Graphic | Uses:1053 | Used by:1117 |
Symbol 1056 Bitmap | Used by:1057 1058 | |
Symbol 1057 Graphic | Uses:1056 | Used by:1117 |
Symbol 1058 Graphic | Uses:1056 | Used by:1117 |
Symbol 1059 Bitmap | Used by:1060 1061 | |
Symbol 1060 Graphic | Uses:1059 | Used by:1117 |
Symbol 1061 Graphic | Uses:1059 | Used by:1117 |
Symbol 1062 Bitmap | Used by:1063 1064 | |
Symbol 1063 Graphic | Uses:1062 | Used by:1117 |
Symbol 1064 Graphic | Uses:1062 | Used by:1117 |
Symbol 1065 Bitmap | Used by:1066 | |
Symbol 1066 Graphic | Uses:1065 | Used by:1117 |
Symbol 1067 Bitmap | Used by:1068 1069 | |
Symbol 1068 Graphic | Uses:1067 | Used by:1117 |
Symbol 1069 Graphic | Uses:1067 | Used by:1117 |
Symbol 1070 Bitmap | Used by:1071 1072 | |
Symbol 1071 Graphic | Uses:1070 | Used by:1117 |
Symbol 1072 Graphic | Uses:1070 | Used by:1117 |
Symbol 1073 Bitmap | Used by:1074 1075 | |
Symbol 1074 Graphic | Uses:1073 | Used by:1117 |
Symbol 1075 Graphic | Uses:1073 | Used by:1117 |
Symbol 1076 Bitmap | Used by:1077 1078 | |
Symbol 1077 Graphic | Uses:1076 | Used by:1117 |
Symbol 1078 Graphic | Uses:1076 | Used by:1117 |
Symbol 1079 Bitmap | Used by:1080 1081 | |
Symbol 1080 Graphic | Uses:1079 | Used by:1117 |
Symbol 1081 Graphic | Uses:1079 | Used by:1117 |
Symbol 1082 Bitmap | Used by:1083 1084 | |
Symbol 1083 Graphic | Uses:1082 | Used by:1117 |
Symbol 1084 Graphic | Uses:1082 | Used by:1117 |
Symbol 1085 Bitmap | Used by:1086 1087 | |
Symbol 1086 Graphic | Uses:1085 | Used by:1117 |
Symbol 1087 Graphic | Uses:1085 | Used by:1117 |
Symbol 1088 Bitmap | Used by:1089 1090 | |
Symbol 1089 Graphic | Uses:1088 | Used by:1117 |
Symbol 1090 Graphic | Uses:1088 | Used by:1117 |
Symbol 1091 Bitmap | Used by:1092 1093 | |
Symbol 1092 Graphic | Uses:1091 | Used by:1117 |
Symbol 1093 Graphic | Uses:1091 | Used by:1117 |
Symbol 1094 Bitmap | Used by:1095 1096 | |
Symbol 1095 Graphic | Uses:1094 209 | Used by:1117 |
Symbol 1096 Graphic | Uses:1094 | Used by:1117 |
Symbol 1097 Bitmap | Used by:1098 1099 | |
Symbol 1098 Graphic | Uses:1097 | Used by:1117 |
Symbol 1099 Graphic | Uses:1097 | Used by:1117 |
Symbol 1100 Bitmap | Used by:1101 1102 | |
Symbol 1101 Graphic | Uses:1100 | Used by:1117 |
Symbol 1102 Graphic | Uses:1100 | Used by:1117 |
Symbol 1103 Bitmap | Used by:1104 1105 | |
Symbol 1104 Graphic | Uses:1103 | Used by:1117 |
Symbol 1105 Graphic | Uses:1103 | Used by:1117 |
Symbol 1106 Bitmap | Used by:1107 1108 | |
Symbol 1107 Graphic | Uses:1106 | Used by:1117 |
Symbol 1108 Graphic | Uses:1106 | Used by:1117 |
Symbol 1109 Bitmap | Used by:1110 | |
Symbol 1110 Graphic | Uses:1109 | Used by:1117 |
Symbol 1111 Bitmap | Used by:1112 1113 | |
Symbol 1112 Graphic | Uses:1111 | Used by:1117 |
Symbol 1113 Graphic | Uses:1111 | Used by:1117 |
Symbol 1114 Bitmap | Used by:1115 1116 | |
Symbol 1115 Graphic | Uses:1114 | Used by:1117 |
Symbol 1116 Graphic | Uses:1114 | Used by:1117 |
Symbol 1117 MovieClip [protoSprite] | Uses:933 934 936 937 939 940 942 943 945 946 948 949 951 952 954 955 957 958 960 961 963 964 966 968 970 972 973 975 977 978 980 981 983 984 986 987 989 990 992 993 995 996 998 999 1001 1002 1004 1005 1007 1009 1010 1011 1013 1014 1016 1017 1019 1020 1022 1024 1025 1027 1028 1030 1031 1033 1034 1036 1037 1039 1040 1042 1043 1045 1046 1048 1049 1051 1052 1054 1055 1057 1058 1060 1061 1063 1064 1066 1068 1069 1071 1072 1074 1075 1077 1078 1080 1081 1083 1084 1086 1087 1089 1090 1092 1093 1095 1096 1098 1099 1101 1102 1104 1105 1107 1108 1110 1112 1113 1115 1116 | Used by:1129 |
Symbol 1118 Bitmap | Used by:1119 | |
Symbol 1119 Graphic | Uses:1118 | Used by:1126 |
Symbol 1120 Bitmap | Used by:1121 | |
Symbol 1121 Graphic | Uses:1120 | Used by:1126 |
Symbol 1122 Bitmap | Used by:1123 | |
Symbol 1123 Graphic | Uses:1122 | Used by:1126 |
Symbol 1124 Bitmap | Used by:1125 | |
Symbol 1125 Graphic | Uses:1124 | Used by:1126 |
Symbol 1126 MovieClip [protoDeathSprite] | Uses:1119 1121 1123 1125 | Used by:1129 |
Symbol 1127 Sound [benLewisBrinstar] | Used by:1129 | |
Symbol 1128 Sound [samusBossMusic] | Used by:1129 | |
Symbol 1129 MovieClip | Uses:183 184 33 388 397 418 421 438 440 443 524 535 538 551 554 564 570 571 574 581 584 590 594 597 602 609 617 620 623 626 629 632 635 638 641 644 647 650 653 656 659 662 665 668 671 674 677 684 695 706 716 719 729 746 756 766 770 777 784 794 797 799 811 813 815 825 828 830 833 835 837 839 841 843 845 847 849 859 861 870 872 882 907 924 928 931 1117 1126 1127 1128 | Used by:1130 |
Symbol 1130 MovieClip [metroidData] | Uses:182 1129 | Used by:Timeline |
Symbol 1131 Bitmap | Used by:1132 | |
Symbol 1132 Graphic | Uses:1131 | Used by:1133 |
Symbol 1133 MovieClip [readyImage] | Uses:1132 | Used by:Timeline |
Symbol 1134 MovieClip [score] | Uses:21 | Used by:Timeline |
Symbol 1135 Bitmap | Used by:1136 | |
Symbol 1136 Graphic | Uses:1135 | Used by:1137 |
Symbol 1137 MovieClip | Uses:1136 | Used by:1143 |
Symbol 1138 Bitmap | Used by:1139 | |
Symbol 1139 Graphic | Uses:1138 | Used by:1143 |
Symbol 1140 Bitmap | Used by:1141 | |
Symbol 1141 Graphic | Uses:1140 | Used by:1143 |
Symbol 1142 ShapeTweening | Used by:1143 | |
Symbol 1143 MovieClip [powerBar] | Uses:1137 1139 923 1141 1142 | Used by:Timeline |
Symbol 1144 Bitmap | Used by:1145 1147 1149 1151 1153 1155 1156 1157 1158 1159 1160 1161 1163 1165 1167 | |
Symbol 1145 Graphic | Uses:1144 | Used by:1182 |
Symbol 1146 Bitmap | Used by:1147 1149 1151 1153 1155 1156 1157 1158 1159 1160 1161 1163 1165 1167 1168 | |
Symbol 1147 Graphic | Uses:1146 1144 | Used by:1182 |
Symbol 1148 Bitmap | Used by:1149 1151 1153 1155 1156 1157 1158 1159 1160 1161 1163 1165 1167 1168 1169 | |
Symbol 1149 Graphic | Uses:1148 1146 1144 | Used by:1182 |
Symbol 1150 Bitmap | Used by:1151 1153 1155 1156 1157 1158 1159 1160 1161 1163 1165 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 | |
Symbol 1151 Graphic | Uses:1150 1148 1146 1144 | Used by:1182 |
Symbol 1152 Bitmap | Used by:1153 1155 1156 1157 1158 1159 1160 1161 1163 1165 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 | |
Symbol 1153 Graphic | Uses:1152 1150 1148 1146 1144 | Used by:1182 |
Symbol 1154 Bitmap | Used by:1155 1156 1157 1158 1159 1160 1161 1163 1165 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 | |
Symbol 1155 Graphic | Uses:1154 1152 1150 1148 1146 1144 | Used by:1182 |
Symbol 1156 Graphic | Uses:1150 1154 1152 1148 1146 1144 | Used by:1182 |
Symbol 1157 Graphic | Uses:1152 1150 1154 1148 1146 1144 | Used by:1182 |
Symbol 1158 Graphic | Uses:1154 1152 1150 1148 1146 1144 | Used by:1182 |
Symbol 1159 Graphic | Uses:1150 1154 1152 1148 1146 1144 | Used by:1182 |
Symbol 1160 Graphic | Uses:1152 1150 1154 1148 1146 1144 | Used by:1182 |
Symbol 1161 Graphic | Uses:1154 1152 1150 1148 1146 1144 | Used by:1182 |
Symbol 1162 Bitmap | Used by:1163 1165 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 | |
Symbol 1163 Graphic | Uses:1162 1154 1152 1150 1148 1146 1144 | Used by:1182 |
Symbol 1164 Bitmap | Used by:1165 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 | |
Symbol 1165 Graphic | Uses:1164 1162 1154 1152 1150 1148 1146 1144 | Used by:1182 |
Symbol 1166 Bitmap | Used by:1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 | |
Symbol 1167 Graphic | Uses:1166 1164 1162 1154 1152 1150 1148 1146 1144 | Used by:1182 |
Symbol 1168 Graphic | Uses:1166 1164 1162 1154 1152 1150 1148 1146 | Used by:1182 |
Symbol 1169 Graphic | Uses:1166 1164 1162 1154 1152 1150 1148 | Used by:1182 |
Symbol 1170 Graphic | Uses:1166 1164 1162 1154 1152 1150 | Used by:1182 |
Symbol 1171 Graphic | Uses:1166 1164 1162 1154 1152 1150 | Used by:1182 |
Symbol 1172 Graphic | Uses:1166 1164 1162 1154 1152 1150 | Used by:1182 |
Symbol 1173 Graphic | Uses:1166 1164 1162 1154 1152 1150 | Used by:1182 |
Symbol 1174 Graphic | Uses:1166 1164 1162 1154 1152 1150 | Used by:1182 |
Symbol 1175 Graphic | Uses:1166 1164 1162 1154 1152 1150 | Used by:1182 |
Symbol 1176 Graphic | Uses:1166 1164 1162 1154 1152 1150 | Used by:1182 |
Symbol 1177 Graphic | Uses:1166 1164 1162 1154 1152 | Used by:1182 |
Symbol 1178 Graphic | Uses:1166 1164 1162 1154 | Used by:1182 |
Symbol 1179 Graphic | Uses:1166 1164 1162 | Used by:1182 |
Symbol 1180 Graphic | Uses:1166 1164 | Used by:1182 |
Symbol 1181 Graphic | Uses:1166 | Used by:1182 |
Symbol 1182 MovieClip [pauseMenu] | Uses:1145 1147 1149 1151 1153 1155 1156 1157 1158 1159 1160 1161 1163 1165 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 | Used by:Timeline |
Symbol 1183 MovieClip [consoleClip] | Used by:Timeline | |
Symbol 1184 Graphic | Used by:1187 | |
Symbol 1185 Font | Used by:1186 | |
Symbol 1186 EditableText | Uses:1185 | Used by:1187 |
Symbol 1187 MovieClip | Uses:1184 1186 | Used by:Timeline |
Instance Names
"gameCore" | Frame 4 | Symbol 180 MovieClip [engineParent] |
"importData" | Frame 4 | Symbol 1130 MovieClip [metroidData] |
"readyImage" | Frame 4 | Symbol 1133 MovieClip [readyImage] |
"score" | Frame 4 | Symbol 1134 MovieClip [score] |
"healthBar" | Frame 4 | Symbol 1143 MovieClip [powerBar] |
"enemyBar" | Frame 4 | Symbol 1143 MovieClip [powerBar] |
"pauseMenu" | Frame 4 | Symbol 1182 MovieClip [pauseMenu] |
"weaponBar" | Frame 4 | Symbol 1143 MovieClip [powerBar] |
"console" | Frame 4 | Symbol 1183 MovieClip [consoleClip] |
"fpsButton" | Frame 4 | Symbol 1187 MovieClip |
"fontSys" | Symbol 34 MovieClip Frame 1 | Symbol 23 MovieClip |
"loadingBar" | Symbol 34 MovieClip Frame 1 | Symbol 29 MovieClip |
"r1" | Symbol 168 MovieClip [runnerPreloader] Frame 1 | Symbol 167 MovieClip |
"r2" | Symbol 168 MovieClip [runnerPreloader] Frame 1 | Symbol 167 MovieClip |
"gameCore" | Symbol 180 MovieClip [engineParent] Frame 1 | Symbol 179 MovieClip [MegamanEngine] |
"menuPos" | Symbol 570 MovieClip [metroidMainMenu] Frame 1 | Symbol 440 MovieClip [emptyClip] |
"bgClip2" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 875 MovieClip |
"bgClip1" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 878 MovieClip |
"spritesinc" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 184 MovieClip [displayFont] |
"benLewis" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 184 MovieClip [displayFont] |
"snowbro" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 184 MovieClip [displayFont] |
"kashou" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 184 MovieClip [displayFont] |
"eyenot" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 184 MovieClip [displayFont] |
"ocremix" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 184 MovieClip [displayFont] |
"restart" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 184 MovieClip [displayFont] |
"bng" | Symbol 882 MovieClip [finalScreen] Frame 1 | Symbol 184 MovieClip [displayFont] |
"drawClip" | Symbol 924 MovieClip [robotMasterIntro] Frame 1 | Symbol 911 MovieClip |
"strClip" | Symbol 924 MovieClip [robotMasterIntro] Frame 1 | Symbol 911 MovieClip |
"barBottom" | Symbol 924 MovieClip [robotMasterIntro] Frame 1 | Symbol 916 MovieClip |
"barTop" | Symbol 924 MovieClip [robotMasterIntro] Frame 1 | Symbol 921 MovieClip |
"bgClip2" | Symbol 924 MovieClip [robotMasterIntro] Frame 30 | Symbol 875 MovieClip |
"bgClip1" | Symbol 924 MovieClip [robotMasterIntro] Frame 30 | Symbol 878 MovieClip |
"drawClip" | Symbol 924 MovieClip [robotMasterIntro] Frame 30 | Symbol 911 MovieClip |
"strClip" | Symbol 924 MovieClip [robotMasterIntro] Frame 30 | Symbol 911 MovieClip |
"attachClip" | Symbol 931 MovieClip [scLineAni] Frame 1 | Symbol 929 MovieClip |
"fader" | Symbol 931 MovieClip [scLineAni] Frame 1 | Symbol 930 MovieClip |
"score0" | Symbol 1134 MovieClip [score] Frame 1 | Symbol 21 MovieClip [letter] |
"score1" | Symbol 1134 MovieClip [score] Frame 1 | Symbol 21 MovieClip [letter] |
"score2" | Symbol 1134 MovieClip [score] Frame 1 | Symbol 21 MovieClip [letter] |
"score3" | Symbol 1134 MovieClip [score] Frame 1 | Symbol 21 MovieClip [letter] |
"score4" | Symbol 1134 MovieClip [score] Frame 1 | Symbol 21 MovieClip [letter] |
"score5" | Symbol 1134 MovieClip [score] Frame 1 | Symbol 21 MovieClip [letter] |
"score6" | Symbol 1134 MovieClip [score] Frame 1 | Symbol 21 MovieClip [letter] |
"barColor" | Symbol 1143 MovieClip [powerBar] Frame 1 | Symbol 1137 MovieClip |
"fps" | Symbol 1187 MovieClip Frame 1 | Symbol 1186 EditableText |
Special Tags
Protect (24) | Timeline Frame 1 | 31 bytes "..$1$uj$KCm2GYhne/imykVcFEmRD1." |
ExportAssets (56) | Timeline Frame 1 | Symbol 21 as "letter" |
ExportAssets (56) | Timeline Frame 1 | Symbol 33 as "megamanFont" |
ExportAssets (56) | Timeline Frame 2 | Symbol 168 as "runnerPreloader" |
ExportAssets (56) | Timeline Frame 3 | Symbol 168 as "runnerPreloader" |
ExportAssets (56) | Timeline Frame 4 | Symbol 177 as "resizeBlock" |
ExportAssets (56) | Timeline Frame 4 | Symbol 179 as "MegamanEngine" |
ExportAssets (56) | Timeline Frame 4 | Symbol 179 as "MegamanEngine" |
ExportAssets (56) | Timeline Frame 4 | Symbol 180 as "engineParent" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 33 as "megamanFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 388 as "megaman" |
ExportAssets (56) | Timeline Frame 4 | Symbol 397 as "megamanDeathSpark" |
ExportAssets (56) | Timeline Frame 4 | Symbol 418 as "megamanPellet" |
ExportAssets (56) | Timeline Frame 4 | Symbol 421 as "metroidPointerSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 438 as "pickupSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 440 as "emptyClip" |
ExportAssets (56) | Timeline Frame 4 | Symbol 443 as "metroid_boss" |
ExportAssets (56) | Timeline Frame 4 | Symbol 524 as "samusSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 535 as "samusBombSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 538 as "samusPelletSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 551 as "megamanDamagedSpark" |
ExportAssets (56) | Timeline Frame 4 | Symbol 554 as "metroid_area01" |
ExportAssets (56) | Timeline Frame 4 | Symbol 564 as "zoomer" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 440 as "emptyClip" |
ExportAssets (56) | Timeline Frame 4 | Symbol 570 as "metroidMainMenu" |
ExportAssets (56) | Timeline Frame 4 | Symbol 571 as "keyCatcherMetroid" |
ExportAssets (56) | Timeline Frame 4 | Symbol 574 as "metroid_area02" |
ExportAssets (56) | Timeline Frame 4 | Symbol 581 as "blueBubbleDoor" |
ExportAssets (56) | Timeline Frame 4 | Symbol 584 as "metroid_area03" |
ExportAssets (56) | Timeline Frame 4 | Symbol 590 as "skree_sprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 594 as "redRipperSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 597 as "skreeDeathSpark" |
ExportAssets (56) | Timeline Frame 4 | Symbol 602 as "rioSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 609 as "redBubbleDoor" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 617 as "metroidMenuIntro" |
ExportAssets (56) | Timeline Frame 4 | Symbol 620 as "metroid_area00" |
ExportAssets (56) | Timeline Frame 4 | Symbol 623 as "metroid_area07" |
ExportAssets (56) | Timeline Frame 4 | Symbol 626 as "metroid_area10" |
ExportAssets (56) | Timeline Frame 4 | Symbol 629 as "metroid_area12" |
ExportAssets (56) | Timeline Frame 4 | Symbol 632 as "metroid_area13" |
ExportAssets (56) | Timeline Frame 4 | Symbol 635 as "metroid_area15" |
ExportAssets (56) | Timeline Frame 4 | Symbol 638 as "metroid_area16" |
ExportAssets (56) | Timeline Frame 4 | Symbol 641 as "metroid_transfer" |
ExportAssets (56) | Timeline Frame 4 | Symbol 644 as "metroid_area04" |
ExportAssets (56) | Timeline Frame 4 | Symbol 647 as "sandRedBlue_5" |
ExportAssets (56) | Timeline Frame 4 | Symbol 650 as "sandRedWhite_5_base" |
ExportAssets (56) | Timeline Frame 4 | Symbol 653 as "sinkySand_6" |
ExportAssets (56) | Timeline Frame 4 | Symbol 656 as "sinkySand_8_base" |
ExportAssets (56) | Timeline Frame 4 | Symbol 659 as "sinkySand_12" |
ExportAssets (56) | Timeline Frame 4 | Symbol 662 as "sandRedBlue_28_base" |
ExportAssets (56) | Timeline Frame 4 | Symbol 665 as "sandRedBlue_61_base" |
ExportAssets (56) | Timeline Frame 4 | Symbol 668 as "sinkySand_62_base" |
ExportAssets (56) | Timeline Frame 4 | Symbol 671 as "metroid_area06" |
ExportAssets (56) | Timeline Frame 4 | Symbol 674 as "metroid_area08" |
ExportAssets (56) | Timeline Frame 4 | Symbol 677 as "metroid_area11" |
ExportAssets (56) | Timeline Frame 4 | Symbol 641 as "metroid_transfer" |
ExportAssets (56) | Timeline Frame 4 | Symbol 684 as "altRipperSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 695 as "altZoomerSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 706 as "blueAltZoomerSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 716 as "altZebSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 641 as "metroid_transfer" |
ExportAssets (56) | Timeline Frame 4 | Symbol 719 as "MBbubbleSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 729 as "blueWaverSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 746 as "bubbleSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 756 as "redZebSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 766 as "redZoomerSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 770 as "ripperSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 777 as "spitFireBodySprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 784 as "spitFireFlameSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 794 as "waverSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 801 as "megaman_death" |
ExportAssets (56) | Timeline Frame 4 | Symbol 802 as "megaman_land" |
ExportAssets (56) | Timeline Frame 4 | Symbol 803 as "megaman_shoot" |
ExportAssets (56) | Timeline Frame 4 | Symbol 804 as "megaman_teleportland" |
ExportAssets (56) | Timeline Frame 4 | Symbol 805 as "megaman_charge" |
ExportAssets (56) | Timeline Frame 4 | Symbol 806 as "megaman_chargefull" |
ExportAssets (56) | Timeline Frame 4 | Symbol 807 as "megaman_damage" |
ExportAssets (56) | Timeline Frame 4 | Symbol 808 as "healthrestore" |
ExportAssets (56) | Timeline Frame 4 | Symbol 809 as "tink" |
ExportAssets (56) | Timeline Frame 4 | Symbol 810 as "megaman_teleportback" |
ExportAssets (56) | Timeline Frame 4 | Symbol 817 as "samus_dropbomb" |
ExportAssets (56) | Timeline Frame 4 | Symbol 818 as "samus_intro" |
ExportAssets (56) | Timeline Frame 4 | Symbol 819 as "samus_explosion" |
ExportAssets (56) | Timeline Frame 4 | Symbol 820 as "samus_jump" |
ExportAssets (56) | Timeline Frame 4 | Symbol 821 as "samus_land" |
ExportAssets (56) | Timeline Frame 4 | Symbol 822 as "samus_morph" |
ExportAssets (56) | Timeline Frame 4 | Symbol 823 as "samus_shoot" |
ExportAssets (56) | Timeline Frame 4 | Symbol 824 as "samus_walk" |
ExportAssets (56) | Timeline Frame 4 | Symbol 827 as "enemy_dead" |
ExportAssets (56) | Timeline Frame 4 | Symbol 832 as "samus_doorchange" |
ExportAssets (56) | Timeline Frame 4 | Symbol 859 as "zebSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 870 as "samusDeathSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 882 as "finalScreen" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 907 as "capcomIntro" |
ExportAssets (56) | Timeline Frame 4 | Symbol 924 as "robotMasterIntro" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 184 as "displayFont" |
ExportAssets (56) | Timeline Frame 4 | Symbol 928 as "nintendoIntro" |
ExportAssets (56) | Timeline Frame 4 | Symbol 931 as "scLineAni" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1117 as "protoSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1126 as "protoDeathSprite" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1127 as "benLewisBrinstar" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1128 as "samusBossMusic" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1130 as "metroidData" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1133 as "readyImage" |
ExportAssets (56) | Timeline Frame 4 | Symbol 21 as "letter" |
ExportAssets (56) | Timeline Frame 4 | Symbol 21 as "letter" |
ExportAssets (56) | Timeline Frame 4 | Symbol 21 as "letter" |
ExportAssets (56) | Timeline Frame 4 | Symbol 21 as "letter" |
ExportAssets (56) | Timeline Frame 4 | Symbol 21 as "letter" |
ExportAssets (56) | Timeline Frame 4 | Symbol 21 as "letter" |
ExportAssets (56) | Timeline Frame 4 | Symbol 21 as "letter" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1134 as "score" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1182 as "pauseMenu" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 4 | Symbol 1183 as "consoleClip" |
ExportAssets (56) | Timeline Frame 5 | Symbol 180 as "engineParent" |
ExportAssets (56) | Timeline Frame 5 | Symbol 1130 as "metroidData" |
ExportAssets (56) | Timeline Frame 5 | Symbol 1133 as "readyImage" |
ExportAssets (56) | Timeline Frame 5 | Symbol 1134 as "score" |
ExportAssets (56) | Timeline Frame 5 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 5 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 5 | Symbol 1182 as "pauseMenu" |
ExportAssets (56) | Timeline Frame 5 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 5 | Symbol 1183 as "consoleClip" |
ExportAssets (56) | Timeline Frame 6 | Symbol 180 as "engineParent" |
ExportAssets (56) | Timeline Frame 6 | Symbol 1130 as "metroidData" |
ExportAssets (56) | Timeline Frame 6 | Symbol 1133 as "readyImage" |
ExportAssets (56) | Timeline Frame 6 | Symbol 1134 as "score" |
ExportAssets (56) | Timeline Frame 6 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 6 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 6 | Symbol 1182 as "pauseMenu" |
ExportAssets (56) | Timeline Frame 6 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 6 | Symbol 1183 as "consoleClip" |
ExportAssets (56) | Timeline Frame 7 | Symbol 180 as "engineParent" |
ExportAssets (56) | Timeline Frame 7 | Symbol 1130 as "metroidData" |
ExportAssets (56) | Timeline Frame 7 | Symbol 1133 as "readyImage" |
ExportAssets (56) | Timeline Frame 7 | Symbol 1134 as "score" |
ExportAssets (56) | Timeline Frame 7 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 7 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 7 | Symbol 1182 as "pauseMenu" |
ExportAssets (56) | Timeline Frame 7 | Symbol 1143 as "powerBar" |
ExportAssets (56) | Timeline Frame 7 | Symbol 1183 as "consoleClip" |
Labels
"preloader" | Frame 2 |
"game" | Frame 4 |
"rGame" | Frame 6 |
"Charge1" | Symbol 388 MovieClip [megaman] Frame 37 |
"Charge2" | Symbol 388 MovieClip [megaman] Frame 74 |
"PreCharge" | Symbol 388 MovieClip [megaman] Frame 111 |
"end" | Symbol 617 MovieClip [metroidMenuIntro] Frame 137 |
"replayFlag" | Symbol 882 MovieClip [finalScreen] Frame 90 |
"Charge1" | Symbol 1117 MovieClip [protoSprite] Frame 37 |
"Charge2" | Symbol 1117 MovieClip [protoSprite] Frame 74 |
"PreCharge" | Symbol 1117 MovieClip [protoSprite] Frame 111 |
|