STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229456 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2574 · P5148 |
This is the info page for Flash #66425 |
newgrounds |
how to make a basic fighting game |
finished product |
go |
go |
go |
a=attck SPACE=jump arrows to move |
music |
As you may have seen on NewGrounds fighting games are very popular. You may be thinking you want a good beat-em-up game yourself. that's what this tutorial is all about. to start out put you FrameRate to 30. then get some sprites/images that you want to use |
here is a list of what you'll need your character to do. |
jump |
attack |
move left |
move right |
Idle |
okay now put all the sprites of one sequence into a movie Clip (MC) do that to the rest, put all the MC's into one other MC (give it the instence name of player) now... on Each frame of the "master movie clip" the player one, put stop(); in every frame. |
onClipEvent (load) { speed = 4; } onClipEvent (enterFrame) { if ((Key.isDown(Key.RIGHT)) && (jumping == false)) { this.gotoAndStop(2); } if ((Key.isDown(Key.LEFT))&& (jumping == false)) { this.gotoAndStop(3); } if (Key.isDown(Key.RIGHT)) { this._x += speed; } if (Key.isDown(Key.LEFT)) { this._x -= speed; } if (Key.isDown(65)) { this.gotoAndStop(4); } } onClipEvent (load) { y_start = _y; jumping = false; jumpspeed = 0; } onClipEvent (enterFrame) { if (jumping) { _y += jumpspeed; jumpspeed += 1; if (_y>=y_start) { _y = y_start; jumping = false; } } else { if (Key.isDown(Key.SPACE)) { jumping = true; jumpspeed = -14; this.gotoAndStop(5); } } } |
then paste this code into the "player" MC. then test your game, if something isn't working...here's why: in the attacking MC and the Jumping MC add at the end "root.player.gotoAndS top(1);" don't forget the underscore before root! |
now if you test your game again everything should work fine. So that pretty much concludes my tutorial on fighting game's. if something isn't working PM me, and for any other questions... you can PM me. |
Hope you Enjoyed It!!! |
ActionScript [AS1/AS2]
Frame 1NewgroundsAPI.connectMovie(7779);Frame 2stop();Instance of Symbol 72 MovieClip "ryu" in Frame 2onClipEvent (load) { speed = 4; } onClipEvent (enterFrame) { if (Key.isDown(39) && (jumping == false)) { this.gotoAndStop(2); } if (Key.isDown(37) && (jumping == false)) { this.gotoAndStop(3); } if (Key.isDown(39)) { this._x = this._x + speed; } if (Key.isDown(37)) { this._x = this._x - speed; } if (Key.isDown(65)) { this.gotoAndStop(4); } } onClipEvent (load) { y_start = _y; jumping = false; jumpspeed = 0; } onClipEvent (enterFrame) { if (jumping) { _y = (_y + jumpspeed); jumpspeed = jumpspeed + 1; if (_y >= y_start) { _y = y_start; jumping = false; } } else if (Key.isDown(32)) { jumping = true; jumpspeed = -14; this.gotoAndStop(5); } }Symbol 21 MovieClip Frame 1_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndPlay ("loaded"); }Instance of Symbol 14 MovieClip in Symbol 21 MovieClip Frame 1on (press) { getURL ("http://ngcollabs.joeynukes.com", "_blank"); }Symbol 21 MovieClip Frame 2gotoAndPlay (1);Symbol 21 MovieClip Frame 120_root.play();Symbol 27 Buttonon (release) { NewgroundsAPI.loadNewgrounds(); }Symbol 32 Buttonon (release) { NewgroundsAPI.loadNewgrounds(); }Symbol 34 MovieClip Frame 1function startAd(ngad_url) { trace("opening " + ngad_url); System.security.allowDomain("70.87.128.99"); System.security.allowInsecureDomain("70.87.128.99"); System.security.allowDomain("ads.shizmoo.com"); System.security.allowInsecureDomain("ads.shizmoo.com"); System.security.allowDomain("www.cpmstar.com"); System.security.allowInsecureDomain("www.cpmstar.com"); System.security.allowDomain("server.cpmstar.com"); System.security.allowInsecureDomain("server.cpmstar.com"); var ngads_redirect = new XML(); ngads_redirect.ignoreWhite = true; ngads_redirect.onLoad = function (success) { trace("[NEWGROUNDS FLASH ADS] :: You may get a 'Security Sandbox Violation' ... this is normal, do not freak out!"); if (success) { ng_ad.loadMovie(ngads_redirect.toString(), "GET"); } }; ngads_redirect.load(ngad_url); } if (NewgroundsAPI.getAdURL()) { startAd(NewgroundsAPI.getAdURL()); } NewgroundsAPI.onAdsApproved = function (ad_url) { startAd(ad_url); }; stop();Symbol 109 MovieClip [__Packages.NewgroundsAPI] Frame 0class NewgroundsAPI { static var tracker_id, host, version, debug, error_format, header_format, normal_format, link_format; function NewgroundsAPI () { } static function connectMovie(id) { if (!id) { SendError("Missing required 'id' parameter in NewgroundsAPI.connectMovie(id:Number)"); } else if (!tracker_id) { SendMessage("Connecting to API gateway..."); tracker_id = id; host = _url.split("/")[2].toLowerCase(); if (host.length < 1) { host = "localhost"; } var _local2 = new Object(); SendEvent(MOVIE_VIEWS); } } static function setMovieVersion(movie_version) { if (!movie_version) { SendError("Missing required 'version' in NewgroundsAPI.setMovieVersion(version:String)"); } else { version = movie_version; } } static function debugMode() { debug = true; } static function addCustomEvent(stat_id, stat_name) { if (!stat_id) { SendError("Missing required 'id' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)"); } else if (!stat_name) { SendError("Missing required 'event_name' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)"); } else { custom_events[stat_name] = CUSTOM_STATS + stat_id; SendMessage("Created custom event: " + stat_name); } } static function addCustomLink(stat_id, stat_name) { if (!stat_id) { SendError("Missing required 'id' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)"); } else if (!stat_name) { SendError("Missing required 'link_name' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)"); } else { custom_links[stat_name] = CUSTOM_STATS + stat_id; SendMessage((("Created custom link " + stat_id) + ": ") + stat_name); } } static function loadMySite() { SendLink(AUTHOR_SITE); } static function loadNewgrounds(special) { if (special) { var _local1 = {page:special}; } SendLink(NEWGROUNDS, _local1); } static function logCustomEvent(event_name) { if (!event_name) { SendError("Missing required 'event_name' parameter in NewgroundsAPI.logCustomEvent(event_name:String)"); } else if (!custom_events[event_name]) { SendError("Attempted to log undefined custom event: " + event_name); } else { SendEvent(custom_events[event_name]); } } static function loadCustomLink(link_name) { if (!link_name) { SendError("Missing required 'link_name' parameter in NewgroundsAPI.loadCustomLink(link_name:String)"); } else if (!custom_links[link_name]) { SendError("Attempted to open undefined custom link: " + link_name); } else { SendLink(custom_links[link_name]); } } static function getAdURL() { return(movie_options.ad_url); } static function getMovieURL() { if (movie_options.movie_url) { return(movie_options.movie_url); } return("Newgrounds.com"); } static function getNewVersionURL() { return((((((GATEWAY_URL + "?&id=") + tracker_id) + "&host=") + escape(host)) + "&stat=") + NEW_VERSION); } static function SendEvent(id) { SendStat(id, false); } static function SendLink(id, extra) { SendStat(id, true, extra); } static function ReadGatewayData(params) { for (var _local2 in params) { params[_local2] = unescape(params[_local2]); movie_options[_local2] = params[_local2]; } if (params.settings_loaded) { SendMessage("You have successfully connected to the Newgrounds API gateway!"); SendMessage(("Movie Identified as '" + movie_options.movie_name) + "'"); if (movie_options.message) { SendMessage(movie_options.message); } if (movie_options.ad_url) { SendMessage("Your movie has been approved to run Flash Ads"); onAdsApproved(movie_options.ad_url); } if (movie_options.movie_version and (movie_options.movie_version.toString() != version.toString())) { SendMessage("WARNING: The movie version configured in your API settings does not match this movie's version!"); onNewVersionAvailable(movie_options.movie_version, getMovieURL(), getNewVersionURL()); } if (movie_options.deny_host) { SendMessage("You have blocked 'localHost' in your API settings."); SendMessage("If you wish to test your movie you will need to remove this block."); onDenyHost(host, getMovieURL(), getNewVersionURL()); } if (movie_options.request_portal_url == 1) { var _local4 = (((GATEWAY_URL + "?&id=") + tracker_id) + "&portal_url=") + escape(_url); var _local3 = new XML(); _local3.ignoreWhite = true; _local3.load(_local4); } } else if (!movie_options.settings_loaded) { SendError("Could not establish connection to the API gateway."); } } static function SendStat(stat_id, open_in_browser, extra) { if (!tracker_id) { SendError("API calls cannot be made without a valid movie id."); SendError("Did you remember to add the \"NewgroundsAPI.connectMovie()\" code?"); } else { var _local7 = (((((GATEWAY_URL + "?&id=") + tracker_id) + "&host=") + escape(host)) + "&stat=") + stat_id; for (var _local9 in extra) { _local7 = _local7 + ((("&" + escape(_local9)) + "=") + escape(extra[_local9])); } trace(_local7); if (debug) { _local7 = _local7 + "&debug=1"; } if (open_in_browser) { getURL (_local7, "_blank"); } else { var _local10 = new XML(); _local10.ignoreWhite = true; _local10.onLoad = function (success) { var _local6 = new Object(); var _local3 = 0; while (_local3 < this.firstChild.childNodes.length) { var _local4 = this.firstChild.childNodes[_local3]; var _local5 = _local4.nodeName; var _local2 = _local4.attributes.value; if (_local2 == Number(_local2)) { _local2 = Number(_local2); } _local6[_local5] = _local2; _local3++; } NewgroundsAPI.ReadGatewayData(_local6); }; _local10.load(_local7); } } } static function SendError(msg) { trace("[NEWGROUNDS API ERROR] :: " + msg); } static function SendMessage(msg) { trace("[NEWGROUNDS API] :: " + msg); } static function InitTextFormats() { if (!error_format) { error_format = new TextFormat(); error_format.font = "Arial Black"; error_format.size = 48; error_format.color = 16711680 /* 0xFF0000 */; } if (!header_format) { header_format = new TextFormat(); header_format.font = "Arial Black"; header_format.size = 24; header_format.color = 16777215 /* 0xFFFFFF */; } if (!normal_format) { normal_format = new TextFormat(); normal_format.font = "Arial"; normal_format.bold = true; normal_format.size = 12; normal_format.color = 16777215 /* 0xFFFFFF */; } if (!link_format) { link_format = new TextFormat(); link_format.color = 16776960 /* 0xFFFF00 */; link_format.underline = true; } } static function onNewVersionAvailable(version, movie_url, redirect_url) { InitTextFormats(); var _local2 = new Object(); _local2.x = Stage.width / 2; _local2.y = Stage.height / 2; _root.createEmptyMovieClip("NGAPI_new_version_overlay", _root.getNextHighestDepth()); _root.NGAPI_new_version_overlay.lineStyle(1, 0, 100); _root.NGAPI_new_version_overlay.beginFill(0, 70); _root.NGAPI_new_version_overlay.moveTo(-10, -10); _root.NGAPI_new_version_overlay.lineTo(-10, 1000); _root.NGAPI_new_version_overlay.lineTo(1000, 1000); _root.NGAPI_new_version_overlay.lineTo(1000, -10); _root.NGAPI_new_version_overlay.lineTo(-10, -10); _root.NGAPI_new_version_overlay.endFill(); _root.NGAPI_new_version_overlay.lineStyle(10, 0, 100); _root.NGAPI_new_version_overlay.beginFill(51); _root.NGAPI_new_version_overlay.moveTo(_local2.x - 240, _local2.y - 120); _root.NGAPI_new_version_overlay.lineTo(_local2.x + 240, _local2.y - 120); _root.NGAPI_new_version_overlay.lineTo(_local2.x + 240, _local2.y + 80); _root.NGAPI_new_version_overlay.lineTo(_local2.x - 240, _local2.y + 80); _root.NGAPI_new_version_overlay.lineTo(_local2.x - 240, _local2.y - 120); _root.NGAPI_new_version_overlay.endFill(); _root.NGAPI_new_version_overlay.createEmptyMovieClip("exit", 1000); _root.NGAPI_new_version_overlay.exit.lineStyle(2, 39423, 100); _root.NGAPI_new_version_overlay.exit.beginFill(0, 50); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 210, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 230, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 230, _local2.y - 90); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 210, _local2.y - 90); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 210, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.endFill(); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 214, _local2.y - 106); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 226, _local2.y - 94); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 226, _local2.y - 106); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 214, _local2.y - 94); _root.NGAPI_new_version_overlay.exit.onMouseUp = function () { if (_root.NGAPI_new_version_overlay.exit.hitTest(_root._xmouse, _root._ymouse)) { _root.NGAPI_new_version_overlay.removeMovieClip(); } }; var _local3 = (("Version " + version) + " is now available at:") + newline; var _local5 = _local3.length; _local3 = _local3 + movie_url; var _local4 = _local3.length; _root.NGAPI_new_version_overlay.createTextField("mouseblocker", 99, -10, -10, 1000, 1000); _root.NGAPI_new_version_overlay.createTextField("newversion", 100, _local2.x - 210, _local2.y - 90, 400, 80); _root.NGAPI_new_version_overlay.newversion.text = "New Version Available!"; _root.NGAPI_new_version_overlay.newversion.setTextFormat(header_format); _root.NGAPI_new_version_overlay.createTextField("message", 101, (Stage.width - 400) / 2, Stage.height / 2, 400, 40); _root.NGAPI_new_version_overlay.message.text = _local3; _root.NGAPI_new_version_overlay.message.multiline = true; _root.NGAPI_new_version_overlay.message.wordWrap = true; _root.NGAPI_new_version_overlay.message.html = true; _root.NGAPI_new_version_overlay.message.setTextFormat(normal_format); link_format.url = redirect_url; _root.NGAPI_new_version_overlay.message.setTextFormat(_local5, _local4, link_format); } static function onDenyHost(hostname, movie_url, redirect_url) { InitTextFormats(); _root.createEmptyMovieClip("NGAPI_deny_host_overlay", _root.getNextHighestDepth()); _root.NGAPI_deny_host_overlay.lineStyle(20, 0, 100); _root.NGAPI_deny_host_overlay.beginFill(6684672); _root.NGAPI_deny_host_overlay.moveTo(0, 0); _root.NGAPI_deny_host_overlay.lineTo(Stage.width, 0); _root.NGAPI_deny_host_overlay.lineTo(Stage.width, Stage.height); _root.NGAPI_deny_host_overlay.lineTo(0, Stage.height); _root.NGAPI_deny_host_overlay.lineTo(0, 0); _root.NGAPI_deny_host_overlay.endFill(); var _local2 = ("This movie has not been approved for use on " + hostname) + "."; _local2 = _local2 + "\r\rFor an aproved copy, please visit:\r"; var _local4 = _local2.length; _local2 = _local2 + movie_url; var _local3 = _local2.length; _root.NGAPI_deny_host_overlay.createTextField("mousekill", 100, 0, 0, Stage.width, Stage.height); _root.NGAPI_deny_host_overlay.createTextField("error", 101, (Stage.width - 400) / 2, (Stage.height / 2) - 100, 400, 200); _root.NGAPI_deny_host_overlay.error.text = "ERROR!"; _root.NGAPI_deny_host_overlay.error.setTextFormat(error_format); _root.NGAPI_deny_host_overlay.createTextField("message", 102, (Stage.width - 400) / 2, Stage.height / 2, 400, 200); _root.NGAPI_deny_host_overlay.message.text = _local2; _root.NGAPI_deny_host_overlay.message.multiline = true; _root.NGAPI_deny_host_overlay.message.wordWrap = true; _root.NGAPI_deny_host_overlay.message.html = true; _root.NGAPI_deny_host_overlay.message.setTextFormat(normal_format); link_format.url = redirect_url; _root.NGAPI_deny_host_overlay.message.setTextFormat(_local4, _local3, link_format); } static function isInstalled() { return(true); } static function onAdsApproved(ad_url) { } static var movie_options = new Object(); static var custom_events = new Object(); static var custom_links = new Object(); static var MOVIE_VIEWS = 1; static var AUTHOR_SITE = 2; static var NEWGROUNDS = 3; static var NEW_VERSION = 4; static var CUSTOM_STATS = 50; static var GATEWAY_URL = "http://www.ngads.com/gateway.php"; }Symbol 50 MovieClip Frame 18_root.ryu.gotoAndStop(1);Symbol 57 MovieClip Frame 18_root.ryu.gotoAndStop(1);Symbol 62 MovieClip Frame 10_root.ryu.gotoAndStop(1);Symbol 71 MovieClip Frame 21Symbol 71 MovieClip Frame 37_root.ryu.gotoAndPlay(1);Symbol 72 MovieClip Frame 1stop();Symbol 72 MovieClip Frame 2stop();Symbol 72 MovieClip Frame 3stop();Symbol 72 MovieClip Frame 4stop();Symbol 72 MovieClip Frame 5stop();Symbol 77 Buttonon (release) { gotoAndStop (3); }Symbol 80 Buttonon (press) { stopAllSounds(); bgSound = new Sound(this); bgSound.attachSound("sound1"); bgSound.start(0, 99); }Symbol 81 Buttonon (press) { stopAllSounds(); bgSound = new Sound(this); bgSound.attachSound("sound2"); bgSound.start(0, 99); }Symbol 82 Buttonon (press) { stopAllSounds(); bgSound = new Sound(this); bgSound.attachSound("sound3"); bgSound.start(0, 99); }Symbol 84 Buttonon (press) { stopAllSounds(); }Symbol 85 Buttonon (press) { stopAllSounds(); bgSound = new Sound(this); bgSound.attachSound("sound4"); bgSound.start(0, 99); }Symbol 89 Buttonon (release) { gotoAndStop (4); }Symbol 90 Buttonon (release) { gotoAndStop (2); }Symbol 106 Buttonon (release) { gotoAndStop (5); }
Library Items
Symbol 1 Sound [sound4] | ||
Symbol 2 Sound [sound1] | ||
Symbol 3 Sound [sound2] | ||
Symbol 4 Sound [sound3] | Used by:Timeline | |
Symbol 5 Graphic | Used by:21 33 77 89 90 94 96 98 100 102 106 | |
Symbol 6 Graphic | Used by:9 | |
Symbol 7 Font | Used by:8 78 91 92 93 95 97 99 101 103 104 105 107 108 | |
Symbol 8 Text | Uses:7 | Used by:9 |
Symbol 9 MovieClip | Uses:6 8 | Used by:21 |
Symbol 10 Graphic | Used by:11 12 14 | |
Symbol 11 MovieClip | Uses:10 | Used by:13 21 |
Symbol 12 MovieClip | Uses:10 | Used by:13 21 |
Symbol 13 MovieClip | Uses:11 12 | Used by:21 |
Symbol 14 MovieClip | Uses:10 | Used by:21 |
Symbol 15 Graphic | Used by:20 | |
Symbol 16 Graphic | Used by:17 | |
Symbol 17 MovieClip | Uses:16 | Used by:20 |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip | Uses:18 | Used by:20 |
Symbol 20 MovieClip | Uses:15 17 19 | Used by:21 |
Symbol 21 MovieClip | Uses:5 9 13 14 11 12 20 | Used by:Timeline |
Symbol 22 Graphic | Used by:34 | |
Symbol 23 Graphic | Used by:27 | |
Symbol 24 Graphic | Used by:27 | |
Symbol 25 Graphic | Used by:27 | |
Symbol 26 Graphic | Used by:27 | |
Symbol 27 Button | Uses:23 24 25 26 | Used by:34 |
Symbol 28 Graphic | Used by:34 | |
Symbol 29 Graphic | Used by:34 | |
Symbol 30 Graphic | Used by:32 | |
Symbol 31 Graphic | Used by:32 | |
Symbol 32 Button | Uses:30 31 | Used by:33 |
Symbol 33 MovieClip | Uses:5 32 | Used by:34 |
Symbol 34 MovieClip | Uses:22 27 28 29 33 | Used by:Timeline |
Symbol 109 MovieClip [__Packages.NewgroundsAPI] | ||
Symbol 35 Graphic | Used by:Timeline | |
Symbol 36 Font | Used by:37 73 74 75 76 | |
Symbol 37 Text | Uses:36 | Used by:Timeline |
Symbol 38 Graphic | Used by:42 | |
Symbol 39 Graphic | Used by:42 | |
Symbol 40 Graphic | Used by:42 | |
Symbol 41 Graphic | Used by:42 | |
Symbol 42 MovieClip | Uses:38 39 40 41 | Used by:72 102 |
Symbol 43 Graphic | Used by:50 | |
Symbol 44 Graphic | Used by:50 | |
Symbol 45 Graphic | Used by:50 | |
Symbol 46 Graphic | Used by:50 | |
Symbol 47 Graphic | Used by:50 | |
Symbol 48 Graphic | Used by:50 71 | |
Symbol 49 Graphic | Used by:50 | |
Symbol 50 MovieClip | Uses:43 44 45 46 47 48 49 | Used by:72 100 |
Symbol 51 Graphic | Used by:57 | |
Symbol 52 Graphic | Used by:57 | |
Symbol 53 Graphic | Used by:57 | |
Symbol 54 Graphic | Used by:57 | |
Symbol 55 Graphic | Used by:57 | |
Symbol 56 Graphic | Used by:57 | |
Symbol 57 MovieClip | Uses:51 52 53 54 55 56 | Used by:72 98 |
Symbol 58 Graphic | Used by:62 | |
Symbol 59 Graphic | Used by:62 | |
Symbol 60 Graphic | Used by:62 | |
Symbol 61 Graphic | Used by:62 | |
Symbol 62 MovieClip | Uses:58 59 60 61 | Used by:72 96 |
Symbol 63 Graphic | Used by:71 | |
Symbol 64 Graphic | Used by:71 | |
Symbol 65 Graphic | Used by:71 | |
Symbol 66 Graphic | Used by:71 | |
Symbol 67 Graphic | Used by:71 | |
Symbol 68 Graphic | Used by:71 | |
Symbol 69 Graphic | Used by:71 | |
Symbol 70 Graphic | Used by:71 | |
Symbol 71 MovieClip | Uses:48 63 64 65 66 67 68 69 70 | Used by:72 94 |
Symbol 72 MovieClip | Uses:42 50 57 62 71 | Used by:Timeline |
Symbol 73 Text | Uses:36 | Used by:Timeline |
Symbol 74 Text | Uses:36 | Used by:77 89 90 106 |
Symbol 75 Text | Uses:36 | Used by:77 89 90 106 |
Symbol 76 Text | Uses:36 | Used by:77 89 90 106 |
Symbol 77 Button | Uses:5 74 75 76 | Used by:Timeline |
Symbol 78 Text | Uses:7 | Used by:Timeline |
Symbol 79 Graphic | Used by:80 81 82 85 | |
Symbol 80 Button | Uses:79 | Used by:Timeline |
Symbol 81 Button | Uses:79 | Used by:Timeline |
Symbol 82 Button | Uses:79 | Used by:Timeline |
Symbol 83 Graphic | Used by:84 | |
Symbol 84 Button | Uses:83 | Used by:Timeline |
Symbol 85 Button | Uses:79 | Used by:Timeline |
Symbol 86 Font | Used by:87 | |
Symbol 87 Text | Uses:86 | Used by:Timeline |
Symbol 88 Graphic | Used by:Timeline | |
Symbol 89 Button | Uses:5 74 75 76 | Used by:Timeline |
Symbol 90 Button | Uses:5 74 75 76 | Used by:Timeline |
Symbol 91 Text | Uses:7 | Used by:Timeline |
Symbol 92 Text | Uses:7 | Used by:Timeline |
Symbol 93 Text | Uses:7 | Used by:94 |
Symbol 94 Button | Uses:5 93 71 | Used by:Timeline |
Symbol 95 Text | Uses:7 | Used by:96 |
Symbol 96 Button | Uses:5 95 62 | Used by:Timeline |
Symbol 97 Text | Uses:7 | Used by:98 |
Symbol 98 Button | Uses:5 97 57 | Used by:Timeline |
Symbol 99 Text | Uses:7 | Used by:100 |
Symbol 100 Button | Uses:5 99 50 | Used by:Timeline |
Symbol 101 Text | Uses:7 | Used by:102 |
Symbol 102 Button | Uses:5 101 42 | Used by:Timeline |
Symbol 103 Text | Uses:7 | Used by:Timeline |
Symbol 104 EditableText | Uses:7 | Used by:Timeline |
Symbol 105 Text | Uses:7 | Used by:Timeline |
Symbol 106 Button | Uses:5 74 75 76 | Used by:Timeline |
Symbol 107 Text | Uses:7 | Used by:Timeline |
Symbol 108 Text | Uses:7 | Used by:Timeline |
Instance Names
"ryu" | Frame 2 | Symbol 72 MovieClip |
"bar" | Symbol 21 MovieClip Frame 1 | Symbol 13 MovieClip |
"ng_ad" | Symbol 34 MovieClip Frame 1 | Symbol 33 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "sound4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "sound1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "sound2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "sound3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "__Packages.NewgroundsAPI" |
Labels
"loaded" | Symbol 21 MovieClip Frame 3 |
|