STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #42997 |
: You can email me the game at michael@ga megarage.c o.uk |
Loading |
PLAY |
PLAY |
Audio by |
ENVY |
Audio by |
ENVY |
A game by |
MAXWELLDOGGUMS |
A game by |
MAXWELLDOGGUMS |
Scores |
Scores |
Instructions |
Instructions |
ORANGE |
RUNNER |
ORANGE |
RUNNER |
Start Game |
Start Game |
Orange Runner is simple, |
Jump over these |
Collect these |
Race Opponents |
The goal in Orange Runner is to run through the level as FAST as you can, avoiding the saws in the floor as you go. Every Battery you collect gives you a boost, allowing you to run much faster than normal, this is the ONLY way you can pass some faster opponents. Every few levels an opponent will come up from behind you, and you must run past him before the start of the next level, or you will lose half of your power. |
Use the Up arrow key to jump, and the right arrow key to run. The faster you go, the higher your score. Every few levels, an opponent runs up from behind and you must race him to the next level. If you lose one of these races, your health points will be cut in half. The opponents become increasingly fast as you advance through the game. When in a race, you must press the space bar as fast as you can for added boost. |
<p align="center"><font face="Cracked" size="90" color="#ffffff" letterSpacing="0.000000" kerning="1">100</font></p> |
mph |
<p align="left"><font face="Cracked" size="30" color="#ffffff" letterSpacing="0.000000" kerning="1">0</font></p> |
<p align="center"><font face="Cracked" size="30" color="#ffffff" letterSpacing="0.000000" kerning="1">Level 1</font></p> |
RACE! |
2nd |
1st |
! |
SPACE |
= |
Max Speed |
Distance Traveled |
Average Speed |
<p align="left"><font face="Cracked" size="50" color="#ffffff" letterSpacing="0.000000" kerning="1">0 mph</font></p> |
<p align="left"><font face="Cracked" size="50" color="#ffffff" letterSpacing="0.000000" kerning="1">0 m</font></p> |
<p align="left"><font face="Cracked" size="50" color="#ffffff" letterSpacing="0.000000" kerning="1">0 mph</font></p> |
Menu |
Total Score |
<p align="left"><font face="Cracked" size="50" color="#ffffff" letterSpacing="0.000000" kerning="1">0</font></p> |
Enter Name |
Submit |
Click here to view highscores |
Click here to view highscores |
Your score has been submitted |
ActionScript [AS1/AS2]
Frame 1stop();Instance of Symbol 38 MovieClip in Frame 1onClipEvent (enterFrame) { _root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; gotoAndStop(PercentLoaded); }Frame 2stop();Frame 3stop();Instance of Symbol 110 MovieClip "FadeInBox" in Frame 3onClipEvent (load) { gotoAndStop (36); }Frame 4gotoAndStop (5);Instance of Symbol 110 MovieClip "Fade" in Frame 4/* no clip actions */Frame 5MaxSpeed = 0; DistanceTraveled = 0; TimeTraveled = 0;Instance of Symbol 455 MovieClip "F1Racer" in Frame 5onClipEvent (load) { CarSpeed = 0; } onClipEvent (enterFrame) { if (CarSpeed < 130) { CarSpeed = CarSpeed + ((130 - CarSpeed) / 100); } if (CarSpeed > 130) { CarSpeed = CarSpeed - 1; } _x = (_x + (CarSpeed - _root.Player.RunSpeed)); var blurred = (new flash.filters.BlurFilter(Math.abs(CarSpeed - _root.Player.RunSpeed) / 5, 0, 4)); var CarFilters = [blurred]; this.filters = CarFilters; }Instance of Symbol 101 MovieClip "Opponent" in Frame 5onClipEvent (load) { RunSpeed = 0; } onClipEvent (enterFrame) { if (RunSpeed < 110) { RunSpeed = RunSpeed + ((110 - RunSpeed) / 250); } if (RunSpeed > 110) { RunSpeed = RunSpeed - 1; } _x = (_x + (RunSpeed - _root.Player.RunSpeed)); var blurred = (new flash.filters.BlurFilter(Math.abs(RunSpeed - _root.Player.RunSpeed) / 5, 0, 4)); var RunnerFilters = [blurred]; this.filters = RunnerFilters; if (this._currentFrame > 25) { gotoAndPlay (5); } }Instance of Symbol 458 MovieClip "Chopper" in Frame 5onClipEvent (load) { ChopperSpeed = 0; } onClipEvent (enterFrame) { if (ChopperSpeed < 150) { ChopperSpeed = ChopperSpeed + ((150 - ChopperSpeed) / 150); } if (ChopperSpeed > 150) { ChopperSpeed = ChopperSpeed - 1; } _x = (_x + (ChopperSpeed - _root.Player.RunSpeed)); var blurred = (new flash.filters.BlurFilter(Math.abs(ChopperSpeed - _root.Player.RunSpeed) / 5, 0, 4)); var ChopperFilters = [blurred]; this.filters = ChopperFilters; }Instance of Symbol 460 MovieClip "Cycle" in Frame 5onClipEvent (load) { CycleSpeed = 0; } onClipEvent (enterFrame) { if (CycleSpeed < 120) { CycleSpeed = CycleSpeed + ((120 - CycleSpeed) / 150); } if (CycleSpeed > 120) { CycleSpeed = CycleSpeed - 1; } _x = (_x + (CycleSpeed - _root.Player.RunSpeed)); var blurred = (new flash.filters.BlurFilter(Math.abs(CycleSpeed - _root.Player.RunSpeed) / 5, 0, 4)); var CycleFilters = [blurred]; this.filters = CycleFilters; }Instance of Symbol 468 MovieClip "Player" in Frame 5onClipEvent (load) { RunSpeed = 0; DistanceRun = 0; Health = 100; WarningLightObjects = 0; Level = 1; Racing = false; TimeSinceSpaceMash = 0; i = 0; TimeSinceLastRace = 100; var BoosterArray = new Array(); var ObstacleArray = new Array(); } onClipEvent (enterFrame) { WarningLightObjects = 0; y = 0; while (y < ObstacleArray.length) { if ((ObstacleArray[y]._x < 1500) && (ObstacleArray[y]._x > 500)) { if (_root.Player.Racing == false) { WarningLightObjects = WarningLightObjects + 1; } } _root.player; if (hitTest(ObstacleArray[y])) { RunSpeed = RunSpeed - (RunSpeed * 0.09); if (Health > 0) { Health = Health - 3; } } y++; } if (WarningLightObjects > 0) { if (TimeSinceLastRace > 100) { _root.WarningSign._x = 507.2; } } else { _root.WarningSign._x = 800; } y = 0; while (y < BoosterArray.length) { _root.player; if (hitTest(BoosterArray[y])) { RunSpeed = RunSpeed + 25; BoosterArray[y]._x = -500; if (Health <= 95) { Health = Health + 5; } else { Health = 100; } } y++; } if (Key.isDown(39)) { if (this._currentFrame > 25) { gotoAndPlay (5); } RunSpeed = RunSpeed + ((100 - RunSpeed) / 250); } else if (RunSpeed > 1) { gotoAndPlay (32); RunSpeed = RunSpeed - 1; } else { gotoAndPlay (30); } if (Key.isDown(38)) { if (_y >= 217) { JumpSpeed = -14; _y = (_y + JumpSpeed); TimeSinceLastJump = 0; } } else { TimeSinceLastJump = TimeSinceLastJump + 1; } if (Racing == true) { if (Key.isDown(32)) { if ((TimeSinceSpaceMash > 1) && (TimeSinceSpaceMash < 20)) { RunSpeed = RunSpeed + ((20 - TimeSinceSpaceMash) / 2.5); } TimeSinceSpaceMash = 0; } } TimeSinceSpaceMash = TimeSinceSpaceMash + 1; if (_y > 217) { JumpSpeed = 0; _y = 218; } else { _y = (_y + JumpSpeed); JumpSpeed = JumpSpeed + 1; gotoAndPlay (31); } if (RunSpeed > 101) { _root.BoostLines._x = _x - 150; _root.BoostLines._y = _y; _root.BoostLectrix._x = _x; _root.BoostLectrix._y = _y; _root.CameraGlare._x = _x; _root.CameraGlare._y = _y; } else { _root.BoostLines._y = 1000; _root.BoostLectrix._y = 1000; _root.CameraGlare._y = 1000; } _root.SpeedText.text = Math.round(RunSpeed); if (_x < (50 + (RunSpeed * 1))) { _x = (_x + (Math.abs((50 + (RunSpeed * 1)) - _x) / 10)); } else { _x = (_x - (Math.abs((50 + (RunSpeed * 1)) - _x) / 10)); } var blurred = (new flash.filters.BlurFilter(RunSpeed / 4, 0, 2)); var BGFilters = [blurred]; _root.ScrollingBackdrop.filters = BGFilters; _root.ScrollingBackdrop.gotoAndPlay((_root.ScrollingBackdrop._currentframe + Math.round(RunSpeed / 10)) - 1); if (Health > 0) { _root.PlayerHealth.gotoAndPlay(Health); _root.LoseWindow.gotoAndPlay(1); } else { _root.PlayerHealth.gotoAndPlay(101); RunSpeed = 0; gotoAndPlay (17); _x = (_x - 15); } DistanceRun = DistanceRun + (((RunSpeed * 1609.334) / 3600) / 30); _root.DistanceText.text = Math.round(DistanceRun); if (DistanceRun > (500 * Level)) { Level = Level + 1; _root.LevelUpBlip._y = 26; _root.LevelUpBlip.gotoAndPlay(1); _root.LevelUpBlip.TimeSinceMoved = 0; if (Level == 5) { Racing = true; _root.RaceLabel._y = -100; _root.RaceLabel.gotoAndPlay(1); _root.RaceLabel.TimeSinceMoved = 0; _root.Opponent._y = 217; _root.Opponent._x = -120; _root.Opponent.RunSpeed = RunSpeed + 15; } if (Level == 6) { Racing = false; _root.RacePlaceText._y = -100; _root.RacePlaceText.gotoAndPlay(1); _root.RacePlaceText.TimeSinceMoved = 0; _root.Opponent.RunSpeed = 0; _root.Opponent._y = 600; TimeSinceLastRace = 0; if (_x > _root.Opponent._x) { _root.RacePlaceText._x = -264.4; } else { Health = Health - (Health / 2); _root.RacePlaceText._x = 475.6; } } if (Level == 10) { Racing = true; _root.RaceLabel._y = -100; _root.RaceLabel.gotoAndPlay(1); _root.RaceLabel.TimeSinceMoved = 0; _root.Cycle._y = 222.5; _root.Cycle._x = -120; _root.Cycle.CycleSpeed = RunSpeed + 15; } if (Level == 11) { Racing = false; _root.RacePlaceText._y = -100; _root.RacePlaceText.gotoAndPlay(1); _root.RacePlaceText.TimeSinceMoved = 0; _root.Cycle.CycleSpeed = 0; _root.Cycle._y = 600; TimeSinceLastRace = 0; if (_x > _root.Cycle._x) { _root.RacePlaceText._x = -264.4; } else { Health = Health - (Health / 2); _root.RacePlaceText._x = 475.6; } } if (Level == 15) { Racing = true; _root.RaceLabel._y = -100; _root.RaceLabel.gotoAndPlay(1); _root.RaceLabel.TimeSinceMoved = 0; _root.F1Racer._y = 227; _root.F1Racer._x = -120; _root.F1Racer.CarSpeed = RunSpeed + 15; } if (Level == 16) { Racing = false; _root.RacePlaceText._y = -100; _root.RacePlaceText.gotoAndPlay(1); _root.RacePlaceText.TimeSinceMoved = 0; _root.F1Racer.CarSpeed = 0; _root.F1Racer._y = 600; TimeSinceLastRace = 0; if (_x > _root.F1Racer._x) { _root.RacePlaceText._x = -264.4; } else { Health = Health - (Health / 2); _root.RacePlaceText._x = 475.6; } } if (Level == 20) { Racing = true; _root.RaceLabel._y = -100; _root.RaceLabel.gotoAndPlay(1); _root.RaceLabel.TimeSinceMoved = 0; _root.Chopper._y = 87; _root.Chopper._x = -170; _root.Chopper.ChopperSpeed = RunSpeed + 15; } if (Level == 21) { Racing = false; _root.RacePlaceText._y = -100; _root.RacePlaceText.gotoAndPlay(1); _root.RacePlaceText.TimeSinceMoved = 0; _root.Chopper.ChopperSpeed = 0; _root.Chopper._y = 600; TimeSinceLastRace = 0; if (_x > _root.Chopper._x) { _root.RacePlaceText._x = -264.4; } else { Health = Health - (Health / 2); _root.RacePlaceText._x = 475.6; } } if (Level == 25) { Racing = true; _root.RaceLabel._y = -100; _root.RaceLabel.gotoAndPlay(1); _root.RaceLabel.TimeSinceMoved = 0; _root.Rocket._y = 87; _root.Rocket._x = -170; _root.Rocket.RocketSpeed = RunSpeed + 15; } if (Level == 26) { Racing = false; _root.RacePlaceText._y = -100; _root.RacePlaceText.gotoAndPlay(1); _root.RacePlaceText.TimeSinceMoved = 0; _root.Rocket.RocketSpeed = 0; _root.Rocket._y = 600; TimeSinceLastRace = 0; if (_x > _root.Rocket._x) { _root.RacePlaceText._x = -264.4; } else { Health = Health - (Health / 232); _root.RacePlaceText._x = 475.6; } } } _root.LevelText.text = "Level " + Level; if (RunSpeed > _root.MaxSpeed) { _root.MaxSpeed = RunSpeed; } _root.DistanceTraveled = DistanceRun; _root.TimeTraveled = _root.TimeTraveled + 1; if (Racing == true) { _root.SpaceBarIcon._visible = true; _root.RaceProgressBar._visible = true; _root.RaceProgressBar.gotoAndStop(100 - Math.round((0.2 * ((500 * (Level + 1)) - DistanceRun)) - 100)); } else { _root.SpaceBarIcon._visible = false; _root.RaceProgressBar._visible = false; } TimeSinceLastRace = TimeSinceLastRace + 1; }Instance of Symbol 74 MovieClip "Booster" in Frame 5onClipEvent (load) { _root.Player.BoosterArray[_root.Player.BoosterArray.length] = this; _y = 211; _x = (random(8500) + 600); } onClipEvent (enterFrame) { _x = (_x - (_root.Player.RunSpeed / 4)); if (_x < 0) { _x = (random(8500) + 600); } if (_root.Player.Racing == false) { _y = 211; } else { _y = 600; } }Instance of Symbol 488 MovieClip "LevelUpBlip" in Frame 5onClipEvent (load) { TimeSinceMoved = 0; } onClipEvent (enterFrame) { TimeSinceMoved = TimeSinceMoved + 1; if (TimeSinceMoved > 8) { _y = 600; } }Instance of Symbol 490 MovieClip "RaceLabel" in Frame 5onClipEvent (load) { TimeSinceMoved = 0; } onClipEvent (enterFrame) { TimeSinceMoved = TimeSinceMoved + 1; if (TimeSinceMoved > 45) { _y = 600; } }Instance of Symbol 493 MovieClip "RacePlaceText" in Frame 5onClipEvent (load) { TimeSinceMoved = 0; } onClipEvent (enterFrame) { TimeSinceMoved = TimeSinceMoved + 1; if (TimeSinceMoved > 45) { _y = 600; } }Instance of Symbol 507 MovieClip "Rocket" in Frame 5onClipEvent (load) { RocketSpeed = 0; } onClipEvent (enterFrame) { if (RocketSpeed < 200) { RocketSpeed = RocketSpeed + ((200 - RocketSpeed) / 100); } if (RocketSpeed > 200) { RocketSpeed = RocketSpeed - 1; } _x = (_x + (RocketSpeed - _root.Player.RunSpeed)); var blurred = (new flash.filters.BlurFilter(Math.abs(RocketSpeed - _root.Player.RunSpeed) / 5, 0, 4)); var RocketFilters = [blurred]; this.filters = RocketFilters; }Instance of Symbol 71 MovieClip "Saw" in Frame 5onClipEvent (load) { _root.Player.ObstacleArray[_root.Player.ObstacleArray.length] = this; _x = (random(10000) + 600); LevelDelayAmount = 0; } onClipEvent (enterFrame) { _x = (_x - (_root.Player.RunSpeed / 4)); if (_x < 0) { LevelDelayAmount = _root.Player.Level * 850; if (LevelDelayAmount > 10000) { LevelDelayAmount = 10000; } _x = (random(10500 - LevelDelayAmount) + 600); } if (_root.Player.Racing == true) { _y = 600; } else if (_root.Player.TimeSinceLastRace > 100) { _y = 233; } }Frame 6i = 0; while (i < _root.Player.ObstacleArray.length) { _root.Player.ObstacleArray._y = -700; i++; } gotoAndStop (7);Frame 7MaxSpeed = _root.MaxSpeed; MaxSpeedText.text = Math.round(MaxSpeed) + " mph"; DistanceText.text = Math.round(DistanceTraveled) + " m"; AverageSpeedText.text = Math.round((DistanceTraveled / (TimeTraveled / 30)) * 2.2369362921) + " mph"; TotalScoreText.text = Math.round(((DistanceTraveled / (TimeTraveled / 30)) * 2.2369362921) * DistanceTraveled); stop();Frame 8function __rankz_send__(par1, par2, par3, par4) { par227 = new LoadVars(); par228 = new LoadVars(); par227.flashkey = par2; par227.SU0249 = par1; par227.bmFtZTE = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par3); par227.c2NvcmUx = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par4 + "j%e%a%n%s"); par227.flashkey = par227.flashkey.split("=").join(""); par227.SU0249 = par227.SU0249.split("=").join(""); par228.onLoad = function (success) { if (success) { trace(par228.msg); } else { trace(par228.loaded); } }; par227.sendAndLoad("http://rankz.armorbot.com/submit/", par228, "POST"); } bXlnYW1lX25hbWVfdmFyaWFibGU = Name; bXlnYW1lX3Njb3JlX3ZhcmlhYmxl = Score; __rankz_send__("MjgyM2olZSVhJW4lcw==", "VFlNdlNPa3U=", bXlnYW1lX25hbWVfdmFyaWFibGU, bXlnYW1lX3Njb3JlX3ZhcmlhYmxl); stop();Symbol 37 Buttonon (release) { _root.gotoAndStop(2); }Symbol 533 MovieClip [__Packages.ab3.rankz.Armor_Bot_30_En_AS1] Frame 0class ab3.rankz.Armor_Bot_30_En_AS1 extends Object { static var _CharsReverseLookup; var _Armor_Bot_30_En_AS1Str, _Armor_Bot_30_En_AS1Count; function Armor_Bot_30_En_AS1 () { super(); } static function Encode(str) { var _local1 = new ab3.rankz.Armor_Bot_30_En_AS1(); return(_local1.encodeArmor_Bot_30_En_AS1(str)); } static function Decode(str) { var _local1 = new ab3.rankz.Armor_Bot_30_En_AS1(); return(_local1.decodeArmor_Bot_30_En_AS1(str)); } static function StringReplaceAll(source, find, replacement) { return(source.split(find).join(replacement)); } static function InitReverseChars() { _CharsReverseLookup = new Array(); var _local1 = 0; while (_local1 < _Chars.length) { _CharsReverseLookup[_Chars[_local1]] = _local1; _local1++; } return(true); } static function UrlDecode(str) { str = StringReplaceAll(str, "\\", " "); str = unescape(str); return(str); } static function UrlEncode(str) { str = escape(str); str = StringReplaceAll(str, "\\", "%2B"); str = StringReplaceAll(str, "%20", "+"); return(str); } function setArmor_Bot_30_En_AS1Str(str) { _Armor_Bot_30_En_AS1Str = str; _Armor_Bot_30_En_AS1Count = 0; } function readArmor_Bot_30_En_AS1() { if (!_Armor_Bot_30_En_AS1Str) { return(_EndOfInput); } if (_Armor_Bot_30_En_AS1Count >= _Armor_Bot_30_En_AS1Str.length) { return(_EndOfInput); } var _local2 = _Armor_Bot_30_En_AS1Str.charCodeAt(_Armor_Bot_30_En_AS1Count) & 255; _Armor_Bot_30_En_AS1Count++; return(_local2); } function encodeArmor_Bot_30_En_AS1(str) { setArmor_Bot_30_En_AS1Str(str); var _local3 = ""; var _local2 = new Array(3); var _local5 = 0; var _local4 = false; while ((!_local4) && (((_local2[0] = readArmor_Bot_30_En_AS1())) != _EndOfInput)) { _local2[1] = readArmor_Bot_30_En_AS1(); _local2[2] = readArmor_Bot_30_En_AS1(); _local3 = _local3 + _Chars[_local2[0] >> 2]; if (_local2[1] != _EndOfInput) { _local3 = _local3 + _Chars[((_local2[0] << 4) & 48) | (_local2[1] >> 4)]; if (_local2[2] != _EndOfInput) { _local3 = _local3 + _Chars[((_local2[1] << 2) & 60) | (_local2[2] >> 6)]; _local3 = _local3 + _Chars[_local2[2] & 63]; } else { _local3 = _local3 + _Chars[(_local2[1] << 2) & 60]; _local3 = _local3 + "="; _local4 = true; } } else { _local3 = _local3 + _Chars[(_local2[0] << 4) & 48]; _local3 = _local3 + "="; _local3 = _local3 + "="; _local4 = true; } _local5 = _local5 + 4; if (_local5 >= 76) { _local3 = _local3 + newline; _local5 = 0; } } return(_local3); } function readReverseArmor_Bot_30_En_AS1() { if (!_Armor_Bot_30_En_AS1Str) { return(_EndOfInput); } while (true) { if (_Armor_Bot_30_En_AS1Count >= _Armor_Bot_30_En_AS1Str.length) { return(_EndOfInput); } var _local2 = _Armor_Bot_30_En_AS1Str.charAt(_Armor_Bot_30_En_AS1Count); _Armor_Bot_30_En_AS1Count++; if (_CharsReverseLookup[_local2]) { return(_CharsReverseLookup[_local2]); } if (_local2 == "A") { return(0); } } } function ntos(n) { var _local1 = n.toString(16); if (_local1.length == 1) { _local1 = "0" + _local1; } _local1 = "%" + _local1; return(unescape(_local1)); } function decodeArmor_Bot_30_En_AS1(str) { setArmor_Bot_30_En_AS1Str(str); var _local3 = ""; var _local2 = new Array(4); var _local4 = false; while (((!_local4) && (((_local2[0] = readReverseArmor_Bot_30_En_AS1())) != _EndOfInput)) && (((_local2[1] = readReverseArmor_Bot_30_En_AS1())) != _EndOfInput)) { _local2[2] = readReverseArmor_Bot_30_En_AS1(); _local2[3] = readReverseArmor_Bot_30_En_AS1(); _local3 = _local3 + ntos(((_local2[0] << 2) & 255) | (_local2[1] >> 4)); if (_local2[2] != _EndOfInput) { _local3 = _local3 + ntos(((_local2[1] << 4) & 255) | (_local2[2] >> 2)); if (_local2[3] != _EndOfInput) { _local3 = _local3 + ntos(((_local2[2] << 6) & 255) | _local2[3]); } else { _local4 = true; } } else { _local4 = true; } } return(_local3); } function toHex(n) { var _local4 = ""; var _local3 = true; var _local1 = 32; while (_local1 > 0) { _local1 = _local1 - 4; var _local2 = (n >> _local1) & 15; if ((!_local3) || (_local2 != 0)) { _local3 = false; _local4 = _local4 + _Digits[_local2]; } } return(((_local4 == "") ? "0" : (_local4))); } function pad(str, len, pad) { var _local2 = str; var _local1 = str.length; while (_local1 < len) { _local2 = pad + _local2; _local1++; } return(_local2); } function encodeHex(str) { var _local4 = ""; var _local2 = 0; while (_local2 < str.length) { _local4 = _local4 + pad(toHex(str.charCodeAt(_local2) & 255), 2, "0"); _local2++; } return(_local4); } function decodeHex(str) { var _local5 = ""; var _local3 = ""; var _local2 = 0; while (_local2 < str.length) { _local3 = _local3 + str.charAt(_local2); if (_local3.length == 2) { _local5 = _local5 + ntos(parseInt("0x" + _local3)); _local3 = ""; } _local2++; } return(_local5); } static var _EndOfInput = -1; static var _Chars = new Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "+", "/"); static var _CharsReverseLookupInited = InitReverseChars(); static var _Digits = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"); }Symbol 47 MovieClip Frame 85_root.gotoAndStop(3);Symbol 54 Buttonon (release) { getURL ("http://rankz.armorbot.com/OrangeRunner"); }Symbol 57 Buttonon (release) { _root.InstructionScreen.gotoAndPlay(2); }Symbol 64 Buttonon (release) { _root.FadeInBox.gotoAndPlay(2); }Symbol 104 Buttonon (release) { gotoAndPlay (17); }Symbol 105 Buttonon (release) { this.visible = false; }Symbol 106 MovieClip Frame 1stop();Symbol 106 MovieClip Frame 16stop();Symbol 110 MovieClip Frame 1stop();Symbol 110 MovieClip Frame 35_root.nextFrame();Symbol 111 Buttonon (release) { Fade.play; }Symbol 510 MovieClip Frame 35stop();Symbol 513 MovieClip Frame 55_root.nextFrame();Symbol 522 Buttonon (release) { gotoAndPlay (3); }Symbol 528 Buttonon (release) { Name = _root.NameText.text; Score = Math.round(((DistanceTraveled / (TimeTraveled / 30)) * 2.2369362921) * DistanceTraveled); nextFrame(); }Symbol 531 Buttonon (release) { getURL ("http://rankz.armorbot.com/OrangeRunner"); }
Library Items
Symbol 1 Font | Used by:2 5 34 36 39 40 41 42 43 44 45 46 51 53 55 56 58 59 60 61 62 63 67 68 72 75 102 103 476 489 491 492 495 501 515 516 517 521 523 527 529 530 532 | |
Symbol 2 Text | Uses:1 | Used by:Timeline |
Symbol 3 ShapeTweening | Used by:38 | |
Symbol 4 Graphic | Used by:38 | |
Symbol 5 Text | Uses:1 | Used by:38 |
Symbol 6 Graphic | Used by:31 468 | |
Symbol 7 Graphic | Used by:31 | |
Symbol 8 Graphic | Used by:31 468 | |
Symbol 9 Graphic | Used by:31 468 | |
Symbol 10 Graphic | Used by:31 468 | |
Symbol 11 Graphic | Used by:31 468 | |
Symbol 12 Graphic | Used by:31 468 | |
Symbol 13 Graphic | Used by:31 468 | |
Symbol 14 Graphic | Used by:31 468 | |
Symbol 15 Graphic | Used by:31 468 | |
Symbol 16 Graphic | Used by:31 468 | |
Symbol 17 Graphic | Used by:31 468 | |
Symbol 18 Graphic | Used by:31 468 | |
Symbol 19 Graphic | Used by:31 468 | |
Symbol 20 Graphic | Used by:31 468 | |
Symbol 21 Graphic | Used by:31 468 | |
Symbol 22 Graphic | Used by:31 468 | |
Symbol 23 Graphic | Used by:31 468 | |
Symbol 24 Graphic | Used by:31 468 | |
Symbol 25 Graphic | Used by:31 468 | |
Symbol 26 Graphic | Used by:31 468 | |
Symbol 27 Graphic | Used by:31 468 | |
Symbol 28 Graphic | Used by:31 468 | |
Symbol 29 Graphic | Used by:31 468 | |
Symbol 30 Graphic | Used by:31 468 | |
Symbol 31 MovieClip | Uses:6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | Used by:38 Timeline |
Symbol 32 Graphic | Used by:38 | |
Symbol 33 Graphic | Used by:37 | |
Symbol 34 Text | Uses:1 | Used by:37 |
Symbol 35 Graphic | Used by:37 | |
Symbol 36 Text | Uses:1 | Used by:37 |
Symbol 37 Button | Uses:33 34 35 36 | Used by:38 |
Symbol 38 MovieClip | Uses:3 4 5 31 32 37 | Used by:Timeline |
Symbol 533 MovieClip [__Packages.ab3.rankz.Armor_Bot_30_En_AS1] | ||
Symbol 39 Text | Uses:1 | Used by:47 |
Symbol 40 Text | Uses:1 | Used by:47 |
Symbol 41 Text | Uses:1 | Used by:47 |
Symbol 42 Text | Uses:1 | Used by:47 |
Symbol 43 Text | Uses:1 | Used by:47 |
Symbol 44 Text | Uses:1 | Used by:47 |
Symbol 45 Text | Uses:1 | Used by:47 |
Symbol 46 Text | Uses:1 | Used by:47 |
Symbol 47 MovieClip | Uses:39 40 41 42 43 44 45 46 | Used by:Timeline |
Symbol 48 Graphic | Used by:49 | |
Symbol 49 MovieClip | Uses:48 | Used by:Timeline |
Symbol 50 Graphic | Used by:54 57 64 111 113 | |
Symbol 51 Text | Uses:1 | Used by:54 113 |
Symbol 52 Graphic | Used by:54 57 64 111 113 | |
Symbol 53 Text | Uses:1 | Used by:54 113 |
Symbol 54 Button | Uses:50 51 52 53 | Used by:Timeline |
Symbol 55 Text | Uses:1 | Used by:57 Timeline |
Symbol 56 Text | Uses:1 | Used by:57 |
Symbol 57 Button | Uses:50 55 52 56 | Used by:Timeline |
Symbol 58 Text | Uses:1 | Used by:Timeline |
Symbol 59 Text | Uses:1 | Used by:Timeline |
Symbol 60 Text | Uses:1 | Used by:Timeline |
Symbol 61 Text | Uses:1 | Used by:Timeline |
Symbol 62 Text | Uses:1 | Used by:64 111 |
Symbol 63 Text | Uses:1 | Used by:64 111 |
Symbol 64 Button | Uses:50 62 52 63 | Used by:Timeline |
Symbol 65 Graphic | Used by:Timeline | |
Symbol 66 Graphic | Used by:104 105 106 | |
Symbol 67 Text | Uses:1 | Used by:104 105 106 |
Symbol 68 Text | Uses:1 | Used by:104 105 106 |
Symbol 69 Graphic | Used by:71 104 105 | |
Symbol 70 Graphic | Used by:71 | |
Symbol 71 MovieClip | Uses:69 70 | Used by:104 105 106 Timeline |
Symbol 72 Text | Uses:1 | Used by:104 105 106 |
Symbol 73 Graphic | Used by:74 104 105 | |
Symbol 74 MovieClip | Uses:73 | Used by:104 105 106 505 Timeline |
Symbol 75 Text | Uses:1 | Used by:104 105 106 |
Symbol 76 Graphic | Used by:101 104 105 | |
Symbol 77 Graphic | Used by:101 | |
Symbol 78 Graphic | Used by:101 | |
Symbol 79 Graphic | Used by:101 | |
Symbol 80 Graphic | Used by:101 | |
Symbol 81 Graphic | Used by:101 | |
Symbol 82 Graphic | Used by:101 | |
Symbol 83 Graphic | Used by:101 | |
Symbol 84 Graphic | Used by:101 | |
Symbol 85 Graphic | Used by:101 | |
Symbol 86 Graphic | Used by:101 | |
Symbol 87 Graphic | Used by:101 | |
Symbol 88 Graphic | Used by:101 | |
Symbol 89 Graphic | Used by:101 | |
Symbol 90 Graphic | Used by:101 | |
Symbol 91 Graphic | Used by:101 | |
Symbol 92 Graphic | Used by:101 | |
Symbol 93 Graphic | Used by:101 | |
Symbol 94 Graphic | Used by:101 | |
Symbol 95 Graphic | Used by:101 | |
Symbol 96 Graphic | Used by:101 | |
Symbol 97 Graphic | Used by:101 | |
Symbol 98 Graphic | Used by:101 | |
Symbol 99 Graphic | Used by:101 | |
Symbol 100 Graphic | Used by:101 | |
Symbol 101 MovieClip | Uses:76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | Used by:104 105 106 Timeline |
Symbol 102 Text | Uses:1 | Used by:104 105 106 |
Symbol 103 Text | Uses:1 | Used by:106 |
Symbol 104 Button | Uses:66 67 68 71 72 74 75 101 102 69 73 76 | Used by:106 |
Symbol 105 Button | Uses:66 67 68 71 72 74 75 101 102 69 73 76 | Used by:106 |
Symbol 106 MovieClip | Uses:66 67 68 71 72 74 75 101 102 103 104 105 | Used by:Timeline |
Symbol 107 ShapeTweening | Used by:110 | |
Symbol 108 ShapeTweening | Used by:110 | |
Symbol 109 Graphic | Used by:110 510 513 | |
Symbol 110 MovieClip | Uses:107 108 109 | Used by:Timeline |
Symbol 111 Button | Uses:50 62 52 63 | Used by:Timeline |
Symbol 112 Graphic | Used by:Timeline | |
Symbol 113 Button | Uses:50 51 52 53 | Used by:Timeline |
Symbol 114 Graphic | Used by:444 | |
Symbol 115 Graphic | Used by:444 | |
Symbol 116 ShapeTweening | Used by:444 | |
Symbol 117 Graphic | Used by:444 | |
Symbol 118 Graphic | Used by:444 | |
Symbol 119 Graphic | Used by:444 | |
Symbol 120 Graphic | Used by:444 | |
Symbol 121 Graphic | Used by:444 | |
Symbol 122 Graphic | Used by:444 | |
Symbol 123 Graphic | Used by:444 | |
Symbol 124 Graphic | Used by:444 | |
Symbol 125 Graphic | Used by:444 | |
Symbol 126 Graphic | Used by:444 | |
Symbol 127 Graphic | Used by:444 | |
Symbol 128 Graphic | Used by:444 | |
Symbol 129 Graphic | Used by:444 | |
Symbol 130 Graphic | Used by:444 | |
Symbol 131 ShapeTweening | Used by:444 | |
Symbol 132 Graphic | Used by:444 | |
Symbol 133 ShapeTweening | Used by:444 | |
Symbol 134 Graphic | Used by:444 | |
Symbol 135 Graphic | Used by:444 | |
Symbol 136 Graphic | Used by:444 | |
Symbol 137 ShapeTweening | Used by:444 | |
Symbol 138 Graphic | Used by:444 | |
Symbol 139 Graphic | Used by:444 | |
Symbol 140 Graphic | Used by:444 | |
Symbol 141 ShapeTweening | Used by:444 | |
Symbol 142 Graphic | Used by:444 | |
Symbol 143 Graphic | Used by:444 | |
Symbol 144 Graphic | Used by:444 | |
Symbol 145 ShapeTweening | Used by:148 | |
Symbol 146 ShapeTweening | Used by:148 | |
Symbol 147 Graphic | Used by:148 | |
Symbol 148 MovieClip | Uses:145 146 147 | Used by:444 |
Symbol 149 Graphic | Used by:444 | |
Symbol 150 Graphic | Used by:444 | |
Symbol 151 ShapeTweening | Used by:444 | |
Symbol 152 ShapeTweening | Used by:444 | |
Symbol 153 Graphic | Used by:444 | |
Symbol 154 ShapeTweening | Used by:444 | |
Symbol 155 ShapeTweening | Used by:444 | |
Symbol 156 Graphic | Used by:444 | |
Symbol 157 ShapeTweening | Used by:444 | |
Symbol 158 ShapeTweening | Used by:444 | |
Symbol 159 ShapeTweening | Used by:444 | |
Symbol 160 ShapeTweening | Used by:444 | |
Symbol 161 ShapeTweening | Used by:444 | |
Symbol 162 ShapeTweening | Used by:444 | |
Symbol 163 ShapeTweening | Used by:444 | |
Symbol 164 ShapeTweening | Used by:444 | |
Symbol 165 ShapeTweening | Used by:444 | |
Symbol 166 ShapeTweening | Used by:444 | |
Symbol 167 ShapeTweening | Used by:444 | |
Symbol 168 ShapeTweening | Used by:444 | |
Symbol 169 ShapeTweening | Used by:444 | |
Symbol 170 ShapeTweening | Used by:444 | |
Symbol 171 Graphic | Used by:444 | |
Symbol 172 ShapeTweening | Used by:444 | |
Symbol 173 ShapeTweening | Used by:444 | |
Symbol 174 Graphic | Used by:444 | |
Symbol 175 ShapeTweening | Used by:444 | |
Symbol 176 Graphic | Used by:444 | |
Symbol 177 ShapeTweening | Used by:444 | |
Symbol 178 ShapeTweening | Used by:444 | |
Symbol 179 ShapeTweening | Used by:444 | |
Symbol 180 ShapeTweening | Used by:444 | |
Symbol 181 ShapeTweening | Used by:444 | |
Symbol 182 ShapeTweening | Used by:444 | |
Symbol 183 ShapeTweening | Used by:444 | |
Symbol 184 ShapeTweening | Used by:444 | |
Symbol 185 ShapeTweening | Used by:444 | |
Symbol 186 ShapeTweening | Used by:444 | |
Symbol 187 ShapeTweening | Used by:444 | |
Symbol 188 ShapeTweening | Used by:444 | |
Symbol 189 ShapeTweening | Used by:444 | |
Symbol 190 ShapeTweening | Used by:444 | |
Symbol 191 ShapeTweening | Used by:444 | |
Symbol 192 ShapeTweening | Used by:444 | |
Symbol 193 ShapeTweening | Used by:444 | |
Symbol 194 ShapeTweening | Used by:444 | |
Symbol 195 ShapeTweening | Used by:444 | |
Symbol 196 ShapeTweening | Used by:444 | |
Symbol 197 ShapeTweening | Used by:444 | |
Symbol 198 ShapeTweening | Used by:444 | |
Symbol 199 ShapeTweening | Used by:444 | |
Symbol 200 ShapeTweening | Used by:444 | |
Symbol 201 ShapeTweening | Used by:444 | |
Symbol 202 ShapeTweening | Used by:444 | |
Symbol 203 ShapeTweening | Used by:444 | |
Symbol 204 ShapeTweening | Used by:444 | |
Symbol 205 ShapeTweening | Used by:444 | |
Symbol 206 ShapeTweening | Used by:444 | |
Symbol 207 ShapeTweening | Used by:444 | |
Symbol 208 ShapeTweening | Used by:444 | |
Symbol 209 ShapeTweening | Used by:444 | |
Symbol 210 ShapeTweening | Used by:444 | |
Symbol 211 ShapeTweening | Used by:444 | |
Symbol 212 ShapeTweening | Used by:444 | |
Symbol 213 ShapeTweening | Used by:444 | |
Symbol 214 ShapeTweening | Used by:444 | |
Symbol 215 ShapeTweening | Used by:444 | |
Symbol 216 ShapeTweening | Used by:444 | |
Symbol 217 ShapeTweening | Used by:444 | |
Symbol 218 ShapeTweening | Used by:444 | |
Symbol 219 ShapeTweening | Used by:444 | |
Symbol 220 ShapeTweening | Used by:444 | |
Symbol 221 ShapeTweening | Used by:444 | |
Symbol 222 ShapeTweening | Used by:444 | |
Symbol 223 ShapeTweening | Used by:444 | |
Symbol 224 ShapeTweening | Used by:444 | |
Symbol 225 ShapeTweening | Used by:444 | |
Symbol 226 ShapeTweening | Used by:444 | |
Symbol 227 ShapeTweening | Used by:444 | |
Symbol 228 ShapeTweening | Used by:444 | |
Symbol 229 ShapeTweening | Used by:444 | |
Symbol 230 ShapeTweening | Used by:444 | |
Symbol 231 ShapeTweening | Used by:444 | |
Symbol 232 ShapeTweening | Used by:444 | |
Symbol 233 ShapeTweening | Used by:444 | |
Symbol 234 ShapeTweening | Used by:444 | |
Symbol 235 ShapeTweening | Used by:444 | |
Symbol 236 ShapeTweening | Used by:444 | |
Symbol 237 ShapeTweening | Used by:444 | |
Symbol 238 ShapeTweening | Used by:444 | |
Symbol 239 ShapeTweening | Used by:444 | |
Symbol 240 ShapeTweening | Used by:444 | |
Symbol 241 ShapeTweening | Used by:444 | |
Symbol 242 ShapeTweening | Used by:444 | |
Symbol 243 ShapeTweening | Used by:444 | |
Symbol 244 ShapeTweening | Used by:444 | |
Symbol 245 ShapeTweening | Used by:444 | |
Symbol 246 ShapeTweening | Used by:444 | |
Symbol 247 ShapeTweening | Used by:444 | |
Symbol 248 ShapeTweening | Used by:444 | |
Symbol 249 ShapeTweening | Used by:444 | |
Symbol 250 ShapeTweening | Used by:444 | |
Symbol 251 ShapeTweening | Used by:444 | |
Symbol 252 ShapeTweening | Used by:444 | |
Symbol 253 ShapeTweening | Used by:444 | |
Symbol 254 ShapeTweening | Used by:444 | |
Symbol 255 ShapeTweening | Used by:444 | |
Symbol 256 ShapeTweening | Used by:444 | |
Symbol 257 ShapeTweening | Used by:444 | |
Symbol 258 ShapeTweening | Used by:444 | |
Symbol 259 ShapeTweening | Used by:444 | |
Symbol 260 ShapeTweening | Used by:444 | |
Symbol 261 ShapeTweening | Used by:444 | |
Symbol 262 ShapeTweening | Used by:444 | |
Symbol 263 ShapeTweening | Used by:444 | |
Symbol 264 ShapeTweening | Used by:444 | |
Symbol 265 ShapeTweening | Used by:444 | |
Symbol 266 ShapeTweening | Used by:444 | |
Symbol 267 ShapeTweening | Used by:444 | |
Symbol 268 ShapeTweening | Used by:444 | |
Symbol 269 ShapeTweening | Used by:444 | |
Symbol 270 ShapeTweening | Used by:444 | |
Symbol 271 ShapeTweening | Used by:444 | |
Symbol 272 ShapeTweening | Used by:444 | |
Symbol 273 ShapeTweening | Used by:444 | |
Symbol 274 ShapeTweening | Used by:444 | |
Symbol 275 ShapeTweening | Used by:444 | |
Symbol 276 ShapeTweening | Used by:444 | |
Symbol 277 ShapeTweening | Used by:444 | |
Symbol 278 ShapeTweening | Used by:444 | |
Symbol 279 ShapeTweening | Used by:444 | |
Symbol 280 ShapeTweening | Used by:444 | |
Symbol 281 ShapeTweening | Used by:444 | |
Symbol 282 ShapeTweening | Used by:444 | |
Symbol 283 ShapeTweening | Used by:444 | |
Symbol 284 ShapeTweening | Used by:444 | |
Symbol 285 ShapeTweening | Used by:444 | |
Symbol 286 ShapeTweening | Used by:444 | |
Symbol 287 ShapeTweening | Used by:444 | |
Symbol 288 ShapeTweening | Used by:444 | |
Symbol 289 ShapeTweening | Used by:444 | |
Symbol 290 ShapeTweening | Used by:444 | |
Symbol 291 ShapeTweening | Used by:444 | |
Symbol 292 ShapeTweening | Used by:444 | |
Symbol 293 ShapeTweening | Used by:444 | |
Symbol 294 ShapeTweening | Used by:444 | |
Symbol 295 ShapeTweening | Used by:444 | |
Symbol 296 ShapeTweening | Used by:444 | |
Symbol 297 ShapeTweening | Used by:444 | |
Symbol 298 ShapeTweening | Used by:444 | |
Symbol 299 ShapeTweening | Used by:444 | |
Symbol 300 ShapeTweening | Used by:444 | |
Symbol 301 ShapeTweening | Used by:444 | |
Symbol 302 ShapeTweening | Used by:444 | |
Symbol 303 ShapeTweening | Used by:444 | |
Symbol 304 ShapeTweening | Used by:444 | |
Symbol 305 ShapeTweening | Used by:444 | |
Symbol 306 ShapeTweening | Used by:444 | |
Symbol 307 ShapeTweening | Used by:444 | |
Symbol 308 ShapeTweening | Used by:444 | |
Symbol 309 ShapeTweening | Used by:444 | |
Symbol 310 ShapeTweening | Used by:444 | |
Symbol 311 ShapeTweening | Used by:444 | |
Symbol 312 ShapeTweening | Used by:444 | |
Symbol 313 ShapeTweening | Used by:444 | |
Symbol 314 ShapeTweening | Used by:444 | |
Symbol 315 ShapeTweening | Used by:444 | |
Symbol 316 ShapeTweening | Used by:444 | |
Symbol 317 ShapeTweening | Used by:444 | |
Symbol 318 ShapeTweening | Used by:444 | |
Symbol 319 ShapeTweening | Used by:444 | |
Symbol 320 ShapeTweening | Used by:444 | |
Symbol 321 ShapeTweening | Used by:444 | |
Symbol 322 ShapeTweening | Used by:444 | |
Symbol 323 ShapeTweening | Used by:444 | |
Symbol 324 ShapeTweening | Used by:444 | |
Symbol 325 ShapeTweening | Used by:444 | |
Symbol 326 ShapeTweening | Used by:444 | |
Symbol 327 ShapeTweening | Used by:444 | |
Symbol 328 ShapeTweening | Used by:444 | |
Symbol 329 ShapeTweening | Used by:444 | |
Symbol 330 ShapeTweening | Used by:444 | |
Symbol 331 ShapeTweening | Used by:444 | |
Symbol 332 ShapeTweening | Used by:444 | |
Symbol 333 ShapeTweening | Used by:444 | |
Symbol 334 ShapeTweening | Used by:444 | |
Symbol 335 ShapeTweening | Used by:444 | |
Symbol 336 ShapeTweening | Used by:444 | |
Symbol 337 ShapeTweening | Used by:444 | |
Symbol 338 ShapeTweening | Used by:444 | |
Symbol 339 ShapeTweening | Used by:444 | |
Symbol 340 ShapeTweening | Used by:444 | |
Symbol 341 ShapeTweening | Used by:444 | |
Symbol 342 ShapeTweening | Used by:444 | |
Symbol 343 ShapeTweening | Used by:444 | |
Symbol 344 ShapeTweening | Used by:444 | |
Symbol 345 ShapeTweening | Used by:444 | |
Symbol 346 ShapeTweening | Used by:444 | |
Symbol 347 ShapeTweening | Used by:444 | |
Symbol 348 ShapeTweening | Used by:444 | |
Symbol 349 ShapeTweening | Used by:444 | |
Symbol 350 ShapeTweening | Used by:444 | |
Symbol 351 ShapeTweening | Used by:444 | |
Symbol 352 ShapeTweening | Used by:444 | |
Symbol 353 ShapeTweening | Used by:444 | |
Symbol 354 ShapeTweening | Used by:444 | |
Symbol 355 ShapeTweening | Used by:444 | |
Symbol 356 ShapeTweening | Used by:444 | |
Symbol 357 ShapeTweening | Used by:444 | |
Symbol 358 ShapeTweening | Used by:444 | |
Symbol 359 ShapeTweening | Used by:444 | |
Symbol 360 ShapeTweening | Used by:444 | |
Symbol 361 ShapeTweening | Used by:444 | |
Symbol 362 ShapeTweening | Used by:444 | |
Symbol 363 ShapeTweening | Used by:444 | |
Symbol 364 ShapeTweening | Used by:444 | |
Symbol 365 ShapeTweening | Used by:444 | |
Symbol 366 ShapeTweening | Used by:444 | |
Symbol 367 ShapeTweening | Used by:444 | |
Symbol 368 ShapeTweening | Used by:444 | |
Symbol 369 ShapeTweening | Used by:444 | |
Symbol 370 ShapeTweening | Used by:444 | |
Symbol 371 ShapeTweening | Used by:444 | |
Symbol 372 ShapeTweening | Used by:444 | |
Symbol 373 ShapeTweening | Used by:444 | |
Symbol 374 ShapeTweening | Used by:444 | |
Symbol 375 ShapeTweening | Used by:444 | |
Symbol 376 ShapeTweening | Used by:444 | |
Symbol 377 ShapeTweening | Used by:444 | |
Symbol 378 ShapeTweening | Used by:444 | |
Symbol 379 ShapeTweening | Used by:444 | |
Symbol 380 ShapeTweening | Used by:444 | |
Symbol 381 ShapeTweening | Used by:444 | |
Symbol 382 ShapeTweening | Used by:444 | |
Symbol 383 ShapeTweening | Used by:444 | |
Symbol 384 ShapeTweening | Used by:444 | |
Symbol 385 ShapeTweening | Used by:444 | |
Symbol 386 ShapeTweening | Used by:444 | |
Symbol 387 ShapeTweening | Used by:444 | |
Symbol 388 ShapeTweening | Used by:444 | |
Symbol 389 ShapeTweening | Used by:444 | |
Symbol 390 ShapeTweening | Used by:444 | |
Symbol 391 ShapeTweening | Used by:444 | |
Symbol 392 ShapeTweening | Used by:444 | |
Symbol 393 ShapeTweening | Used by:444 | |
Symbol 394 ShapeTweening | Used by:444 | |
Symbol 395 ShapeTweening | Used by:444 | |
Symbol 396 ShapeTweening | Used by:444 | |
Symbol 397 ShapeTweening | Used by:444 | |
Symbol 398 ShapeTweening | Used by:444 | |
Symbol 399 ShapeTweening | Used by:444 | |
Symbol 400 ShapeTweening | Used by:444 | |
Symbol 401 ShapeTweening | Used by:444 | |
Symbol 402 ShapeTweening | Used by:444 | |
Symbol 403 ShapeTweening | Used by:444 | |
Symbol 404 ShapeTweening | Used by:444 | |
Symbol 405 ShapeTweening | Used by:444 | |
Symbol 406 ShapeTweening | Used by:444 | |
Symbol 407 ShapeTweening | Used by:444 | |
Symbol 408 ShapeTweening | Used by:444 | |
Symbol 409 ShapeTweening | Used by:444 | |
Symbol 410 ShapeTweening | Used by:444 | |
Symbol 411 ShapeTweening | Used by:444 | |
Symbol 412 ShapeTweening | Used by:444 | |
Symbol 413 ShapeTweening | Used by:444 | |
Symbol 414 ShapeTweening | Used by:444 | |
Symbol 415 ShapeTweening | Used by:444 | |
Symbol 416 ShapeTweening | Used by:444 | |
Symbol 417 ShapeTweening | Used by:444 | |
Symbol 418 ShapeTweening | Used by:444 | |
Symbol 419 ShapeTweening | Used by:444 | |
Symbol 420 ShapeTweening | Used by:444 | |
Symbol 421 ShapeTweening | Used by:444 | |
Symbol 422 ShapeTweening | Used by:444 | |
Symbol 423 ShapeTweening | Used by:444 | |
Symbol 424 ShapeTweening | Used by:444 | |
Symbol 425 ShapeTweening | Used by:444 | |
Symbol 426 ShapeTweening | Used by:444 | |
Symbol 427 ShapeTweening | Used by:444 | |
Symbol 428 ShapeTweening | Used by:444 | |
Symbol 429 ShapeTweening | Used by:444 | |
Symbol 430 ShapeTweening | Used by:444 | |
Symbol 431 ShapeTweening | Used by:444 | |
Symbol 432 ShapeTweening | Used by:444 | |
Symbol 433 ShapeTweening | Used by:444 | |
Symbol 434 ShapeTweening | Used by:444 | |
Symbol 435 ShapeTweening | Used by:444 | |
Symbol 436 ShapeTweening | Used by:444 | |
Symbol 437 ShapeTweening | Used by:444 | |
Symbol 438 ShapeTweening | Used by:444 | |
Symbol 439 ShapeTweening | Used by:444 | |
Symbol 440 ShapeTweening | Used by:444 | |
Symbol 441 ShapeTweening | Used by:444 | |
Symbol 442 ShapeTweening | Used by:444 | |
Symbol 443 ShapeTweening | Used by:444 | |
Symbol 444 MovieClip | Uses:114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 SS1 | Used by:Timeline |
Symbol 445 Graphic | Used by:446 | |
Symbol 446 MovieClip | Uses:445 | Used by:Timeline |
Symbol 447 Graphic | Used by:452 | |
Symbol 448 Graphic | Used by:452 | |
Symbol 449 Graphic | Used by:452 | |
Symbol 450 Graphic | Used by:452 | |
Symbol 451 Graphic | Used by:452 | |
Symbol 452 MovieClip | Uses:447 448 449 450 451 | Used by:Timeline |
Symbol 453 Graphic | Used by:455 | |
Symbol 454 Graphic | Used by:455 | |
Symbol 455 MovieClip | Uses:453 454 | Used by:Timeline |
Symbol 456 Graphic | Used by:458 | |
Symbol 457 Graphic | Used by:458 | |
Symbol 458 MovieClip | Uses:456 457 | Used by:Timeline |
Symbol 459 Graphic | Used by:460 | |
Symbol 460 MovieClip | Uses:459 | Used by:Timeline |
Symbol 461 Graphic | Used by:468 | |
Symbol 462 Graphic | Used by:468 | |
Symbol 463 Graphic | Used by:465 | |
Symbol 464 Graphic | Used by:465 | |
Symbol 465 MovieClip | Uses:463 464 | Used by:468 |
Symbol 466 Graphic | Used by:468 | |
Symbol 467 Graphic | Used by:468 | |
Symbol 468 MovieClip | Uses:6 461 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 462 465 466 467 | Used by:Timeline |
Symbol 469 Font | Used by:470 482 483 503 518 519 520 524 526 | |
Symbol 470 EditableText | Uses:469 | Used by:Timeline |
Symbol 471 Graphic | Used by:473 | |
Symbol 472 Graphic | Used by:473 | |
Symbol 473 MovieClip | Uses:471 472 | Used by:507 Timeline |
Symbol 474 Graphic | Used by:475 | |
Symbol 475 MovieClip | Uses:474 | Used by:Timeline |
Symbol 476 Text | Uses:1 | Used by:Timeline |
Symbol 477 Graphic | Used by:481 499 | |
Symbol 478 ShapeTweening | Used by:481 | |
Symbol 479 Graphic | Used by:481 | |
Symbol 480 Graphic | Used by:481 499 | |
Symbol 481 MovieClip | Uses:477 478 479 480 | Used by:Timeline |
Symbol 482 EditableText | Uses:469 | Used by:Timeline |
Symbol 483 EditableText | Uses:469 | Used by:Timeline |
Symbol 484 ShapeTweening | Used by:488 | |
Symbol 485 Graphic | Used by:488 | |
Symbol 486 ShapeTweening | Used by:488 | |
Symbol 487 Graphic | Used by:488 | |
Symbol 488 MovieClip | Uses:484 485 486 487 | Used by:Timeline |
Symbol 489 Text | Uses:1 | Used by:490 |
Symbol 490 MovieClip | Uses:489 | Used by:Timeline |
Symbol 491 Text | Uses:1 | Used by:493 |
Symbol 492 Text | Uses:1 | Used by:493 |
Symbol 493 MovieClip | Uses:491 492 | Used by:Timeline |
Symbol 494 Graphic | Used by:496 | |
Symbol 495 Text | Uses:1 | Used by:496 |
Symbol 496 MovieClip | Uses:494 495 | Used by:Timeline |
Symbol 497 ShapeTweening | Used by:499 | |
Symbol 498 Graphic | Used by:499 | |
Symbol 499 MovieClip | Uses:477 497 498 480 | Used by:Timeline |
Symbol 500 Graphic | Used by:505 | |
Symbol 501 Text | Uses:1 | Used by:505 |
Symbol 502 Graphic | Used by:505 | |
Symbol 503 Text | Uses:469 | Used by:505 |
Symbol 504 Graphic | Used by:505 | |
Symbol 505 MovieClip | Uses:500 501 502 503 74 504 | Used by:Timeline |
Symbol 506 Graphic | Used by:507 | |
Symbol 507 MovieClip | Uses:506 473 | Used by:Timeline |
Symbol 508 ShapeTweening | Used by:510 | |
Symbol 509 ShapeTweening | Used by:510 | |
Symbol 510 MovieClip | Uses:109 508 509 | Used by:Timeline |
Symbol 511 Graphic | Used by:513 | |
Symbol 512 Graphic | Used by:513 | |
Symbol 513 MovieClip | Uses:511 109 512 | Used by:Timeline |
Symbol 514 Graphic | Used by:Timeline | |
Symbol 515 Text | Uses:1 | Used by:Timeline |
Symbol 516 Text | Uses:1 | Used by:Timeline |
Symbol 517 Text | Uses:1 | Used by:Timeline |
Symbol 518 EditableText | Uses:469 | Used by:Timeline |
Symbol 519 EditableText | Uses:469 | Used by:Timeline |
Symbol 520 EditableText | Uses:469 | Used by:Timeline |
Symbol 521 Text | Uses:1 | Used by:522 |
Symbol 522 Button | Uses:521 | Used by:Timeline |
Symbol 523 Text | Uses:1 | Used by:Timeline |
Symbol 524 EditableText | Uses:469 | Used by:Timeline |
Symbol 525 Graphic | Used by:Timeline | |
Symbol 526 EditableText | Uses:469 | Used by:Timeline |
Symbol 527 Text | Uses:1 | Used by:528 |
Symbol 528 Button | Uses:527 | Used by:Timeline |
Symbol 529 Text | Uses:1 | Used by:531 |
Symbol 530 Text | Uses:1 | Used by:531 |
Symbol 531 Button | Uses:529 530 | Used by:Timeline |
Symbol 532 Text | Uses:1 | Used by:Timeline |
Streaming Sound 1 | Used by:Symbol 444 MovieClip |
Instance Names
"InstructionScreen" | Frame 3 | Symbol 106 MovieClip |
"FadeInBox" | Frame 3 | Symbol 110 MovieClip |
"Fade" | Frame 4 | Symbol 110 MovieClip |
"ScrollingBackdrop" | Frame 5 | Symbol 49 MovieClip |
"CameraGlare" | Frame 5 | Symbol 446 MovieClip |
"BoostLectrix" | Frame 5 | Symbol 452 MovieClip |
"F1Racer" | Frame 5 | Symbol 455 MovieClip |
"Opponent" | Frame 5 | Symbol 101 MovieClip |
"Chopper" | Frame 5 | Symbol 458 MovieClip |
"Cycle" | Frame 5 | Symbol 460 MovieClip |
"Player" | Frame 5 | Symbol 468 MovieClip |
"SpeedText" | Frame 5 | Symbol 470 EditableText |
"BoostLines" | Frame 5 | Symbol 473 MovieClip |
"LevelFloor" | Frame 5 | Symbol 475 MovieClip |
"PlayerHealth" | Frame 5 | Symbol 481 MovieClip |
"Booster" | Frame 5 | Symbol 74 MovieClip |
"DistanceText" | Frame 5 | Symbol 482 EditableText |
"LevelText" | Frame 5 | Symbol 483 EditableText |
"LevelUpBlip" | Frame 5 | Symbol 488 MovieClip |
"RaceLabel" | Frame 5 | Symbol 490 MovieClip |
"RacePlaceText" | Frame 5 | Symbol 493 MovieClip |
"WarningSign" | Frame 5 | Symbol 496 MovieClip |
"RaceProgressBar" | Frame 5 | Symbol 499 MovieClip |
"SpaceBarIcon" | Frame 5 | Symbol 505 MovieClip |
"Rocket" | Frame 5 | Symbol 507 MovieClip |
"Saw" | Frame 5 | Symbol 71 MovieClip |
"LoseWindow" | Frame 5 | Symbol 513 MovieClip |
"MaxSpeedText" | Frame 7 | Symbol 518 EditableText |
"DistanceText" | Frame 7 | Symbol 519 EditableText |
"AverageSpeedText" | Frame 7 | Symbol 520 EditableText |
"TotalScoreText" | Frame 7 | Symbol 524 EditableText |
"NameText" | Frame 7 | Symbol 526 EditableText |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 533 as "__Packages.ab3.rankz.Armor_Bot_30_En_AS1" |
|