STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
A Very Merry Christmas! |
This is the info page for Flash #55950 |
Episode Loading |
Episode 5 As a new day dawns over Thamesis, crowds gather outside the Great Hall of Albion for the coronation of Jonathan of the Rose. |
Your patches. |
Your money. |
A pleasure doing business with you Kendrick. |
The pleasure will be all mine Malkolm. |
Psychic scan completed. Perimeter all clear. |
Love a girl in a hoodie. |
Oi Kid, pay attention. Go now. |
Calm your briefs Kendrick. I do this for fun. |
Blind me, what was that? |
How is he blocking my psychic scan? |
Let the coronation ritual commence. |
Wait! There is an unidentified intruder approaching. |
Let us deal with this little lady. |
Halt in the name of the king! |
Do you know who you are talking to? |
An exile, a traitor and a murderer. |
Yeo's bring him.... |
dooooooooown! |
Get the king to safety! |
Vanessa, is that you? |
Uh oh... |
Hope they won't mind if I drop in. |
Sir there's been a disturbance in the coronation hall. |
Then go see what the trouble is with our young king. |
Too easy! |
My patches! |
Nooooooooo! |
See ya later losers! |
Good work Kid. Looks like we're back in business. |
Best of luck Kendrick. I'm out. |
You'll be back. |
You got skills Kid |
but you're nothing without patch |
and you know it. |
For the K.I.D a journey is at an end but the adventure will continue. Don't forget to tune in for the Episode 6 finale. |
ActionScript [AS1/AS2]
Frame 1function ParticleEngine(baseClip, rect) { this.baseClip = baseClip; this.point = point; this.rect = rect; this.baseClip.engine = this; this.frame = 0; this.generators = []; this.baseClip.onEnterFrame = this.evtEnterFrame; } function ParticleGenerator(x, y, gravityX, gravityY, dutyCycle, particlesPerCycle, startRunning, newParticleCallback, headLinkage, tailLinkage, engine) { this.engine = engine; this.newParticleCallback = newParticleCallback; this.x = x; this.y = y; this.gravityX = gravityX; this.gravityY = gravityY; this.running = startRunning; this.dutyCycle = dutyCycle; this.particlesPerCycle = particlesPerCycle; this.particles = []; this.frame = -1; this.stopAfterFrame = 0; this.garbageDutyCycle = 10; this.linkageHead = headLinkage; this.linkageTail = tailLinkage; this.tailEffect = fadeOut; this.paint = simplePaint; this.checkLifeOver = offEdgeTest; this.vxMin = -5; this.vxMax = 5; this.vyMin = -12; this.vyMax = -8; this.dxMin = 0; this.dxMax = 0; this.dyMin = 0; this.dyMax = 0; this.scaleMin = 100; this.scaleMax = 100; this.scaleMultMin = 1; this.scaleMultMax = 1; this.growFrames = 0; this.rMin = 0; this.rMax = 360; this.vrMin = 0; this.vrMax = 0; this.depth = this.engine.generators.length; this.clip = this.engine.baseClip.createEmptyMovieClip("gen" + this.depth, this.depth); this.workClip = this.clip.createEmptyMovieClip("work", 0); this.tailClip = this.clip.createEmptyMovieClip("tail", 1); this.headClip = this.clip.createEmptyMovieClip("head", 2); this.objBmp = new flash.display.BitmapData(this.engine.rect.width, this.engine.rect.height, true, 0); this.tailClip.attachBitmap(this.objBmp, 0, "never", false); this.workClip._visible = false; this.workClip.attachMovie(this.linkageTail, "tail", 0); this.colourMatrix = new Array(); this.colourMatrix = this.colourMatrix.concat([0.91, 0, 0, 0, 0]); this.colourMatrix = this.colourMatrix.concat([0, 0.85, 0, 0, 0]); this.colourMatrix = this.colourMatrix.concat([0, 0, 0.8, 0, 0]); this.colourMatrix = this.colourMatrix.concat([0, 0, 0, 0.9, 0]); this.filter = new flash.filters.ColorMatrixFilter(this.colourMatrix); this.engine.generators.push(this); } function makeSimpleGravityParticle(objGenerator, objEngine) { var _local2 = {}; _local2.frame = 0; _local2.engine = objEngine; _local2.generator = objGenerator; _local2.x = _local2.generator.x + Maths.randomNum(_local2.generator.dxMin, _local2.generator.dxMax); _local2.y = _local2.generator.y + Maths.randomNum(_local2.generator.dyMin, _local2.generator.dyMax); _local2.vx = Maths.randomNum(_local2.generator.vxMin, _local2.generator.vxMax); _local2.vy = Maths.randomNum(_local2.generator.vyMin, _local2.generator.vyMax); _local2.scale = Maths.randomNum(_local2.generator.scaleMin, _local2.generator.scaleMax); _local2.origScale = _local2.scale; _local2.rDeg = Maths.randomNum(_local2.generator.rMin, _local2.generator.rMax); _local2.vrDeg = Maths.randomNum(_local2.generator.vrMin, _local2.generator.vrMax); _local2.scaleMult = Maths.randomNum(_local2.generator.scaleMultMin, _local2.generator.scaleMultMax); _local2.deathFrame = 10000000 /* 0x989680 */; _local2.growFrames = _local2.generator.growFrames; var _local3 = _local2.generator.headClip.getNextHighestDepth(); _local2.generator.headClip.attachMovie(_local2.generator.linkageHead, "head" + _local3, _local3); _local2.headClip = _local2.generator.headClip["head" + _local3]; _local2.evtEnterFrame = function () { this.frame++; this.lifePct = this.frame / this.deathFrame; this.vx = this.vx + this.generator.gravityX; this.vy = this.vy + this.generator.gravityY; this.rDeg = this.rDeg + this.vrDeg; if ((this.growFrames > 0) && (this.frame <= this.growFrames)) { this.scale = (this.origScale * this.frame) / this.growFrames; } else { this.scale = this.scale * this.scaleMult; } this.x = this.x + this.vx; this.y = this.y + this.vy; this.rHeadingRad = Math.atan2(this.vy, this.vx); this.rHeadingDeg = Maths.radToDeg(this.rHeadingRad); this.paint(); }; _local2.paint = _local2.generator.paint; _local2.checkLifeOver = _local2.generator.checkLifeOver; _local2.evtEnterFrame(); return(_local2); } function makeLifespanGravityParticle(objGenerator, objEngine) { var _local1 = makeSimpleGravityParticle(objGenerator, objEngine); _local1.deathFrame = _local1.generator.particleLifespan; _local1.evtEnterFrame(); return(_local1); } function simplePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._xscale = (this.headClip._yscale = this.scale); this.headClip._rotation = this.rDeg; this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.workClip.tail._rotation = this.rDeg; this.generator.objBmp.draw(this.generator.workClip); } function tailRotationPaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._xscale = (this.headClip._yscale = this.scale); this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._rotation = this.rHeadingDeg; this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.objBmp.draw(this.generator.workClip); } function simpleFadePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._alpha = 100 - (this.lifePct * 100); this.headClip._xscale = (this.headClip._yscale = this.scale); this.headClip._rotation = this.rDeg; this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.workClip.tail._alpha = 100 - (this.lifePct * 100); this.generator.workClip.tail._rotation = this.rDeg; this.generator.objBmp.draw(this.generator.workClip); } function tailRotationFadePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._alpha = 100 - (this.lifePct * 100); this.headClip._xscale = (this.headClip._yscale = this.scale); this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._rotation = this.rHeadingDeg; this.generator.workClip.tail._alpha = 100 - (this.lifePct * 100); this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.objBmp.draw(this.generator.workClip); } function headRotationPaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._rotation = this.rHeadingDeg; this.headClip._xscale = (this.headClip._yscale = this.scale); this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.objBmp.draw(this.generator.workClip); } function tailLinePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._xscale = (this.headClip._yscale = this.scale); this.headClip._rotation = this.rDeg; this.generator.workClip.clear(); this.generator.workClip.lineStyle(this.generator.lineThickness, this.generator.lineColour, this.generator.lineAlpha); this.generator.workClip.moveTo(this.x, this.y); this.generator.workClip.lineTo(this.x - this.vx, this.y - this.vy); this.generator.objBmp.draw(this.generator.workClip); } function tailLineFadePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._xscale = (this.headClip._yscale = this.scale); this.headClip._rotation = this.rDeg; this.headClip._alpha = 100 - (this.lifePct * 100); this.generator.workClip.clear(); this.generator.workClip.lineStyle((1 - this.lifePct) * this.generator.lineThickness, this.generator.lineColour, 100 - (this.lifePct * this.generator.lineAlpha)); this.generator.workClip.moveTo(this.x, this.y); this.generator.workClip.lineTo(this.x - this.vx, this.y - this.vy); this.generator.objBmp.draw(this.generator.workClip); } function offEdgeTest() { if ((((this.x < this.engine.rect.left) || (this.x > this.engine.rect.right)) || (this.y < this.engine.rect.top)) || (this.y > this.engine.rect.bottom)) { return(true); } return(false); } function offBottomTest() { if (this.y > this.engine.rect.bottom) { return(true); } return(false); } function lifespanTest() { if (this.frame > this.deathFrame) { return(true); } return(false); } function fadeOut() { this.objBmp.applyFilter(this.objBmp, this.engine.rect, this.engine.rect.topLeft, this.filter); } function explosionFade() { this.objBmp.applyFilter(this.objBmp, this.engine.rect, this.engine.rect.topLeft, this.glowFilter); this.objBmp.applyFilter(this.objBmp, this.engine.rect, this.engine.rect.topLeft, this.filter); } var Maths = new Object(); Maths.randomNum = function (minNum, maxNum) { return((Math.random() * (maxNum - minNum)) + minNum); }; Maths.randomInt = function (minNum, maxNum) { return(Math.round((Math.random() * (maxNum - minNum)) + minNum)); }; Maths.vectorLength = function (dx, dy) { return(Math.sqrt((dx * dx) + (dy * dy))); }; Maths.distance = function (x1, y1, x2, y2) { var _local2 = x1 - x2; var _local1 = y1 - y2; return(Maths.vectorLength(_local2, _local1)); }; Maths.vectorLengthSquared = function (dx, dy) { return((dx * dx) + (dy * dy)); }; Maths.distanceSquared = function (x1, y1, x2, y2) { var _local2 = x1 - x2; var _local1 = y1 - y2; return(Maths.vectorLengthSquared(_local2, _local1)); }; Maths.angleBetween = function (x1, y1, x2, y2) { var _local2 = (x1 * x2) + (y1 * y2); var _local1 = Maths.vectorLength(x1, y1) * Maths.vectorLength(x2, y2); return(Math.acos(_local2 / _local1)); }; Maths.dotProduct = function (ax, ay, bx, by) { return((ax * bx) + (ay * by)); }; Maths.formatNum = function (num, leadingDigits, decimalDigits) { var _local2 = "" + Math.floor(num); while (_local2.length < leadingDigits) { _local2 = "0" + _local2; } if (decimalDigits != undefined) { var _local1 = Math.abs(num) - Math.floor(Math.abs(num)); _local1 = _local1 * (10 ^ decimalDigits); _local1 = Math.floor(_local1); _local1 = "" + _local1; while (_local1.length < decimalDigits) { _local1 = _local1 + "0"; } _local2 = (_local2 + ".") + _local1; } return(_local2); }; Maths.degToRad = function (degs) { return(degs * (Math.PI/180)); }; Maths.radToDeg = function (rads) { return(rads * 57.2957795130823); }; ParticleEngine.prototype.evtEnterFrame = function () { var _local3 = this.engine; _local3.frame++; var _local2 = 0; while (_local2 < _local3.generators.length) { _local3.generators[_local2].evtEnterFrame(); _local2++; } }; ParticleGenerator.prototype.evtEnterFrame = function () { if ((this.prevRunning == false) && (this.running == true)) { this.frame = -1; } this.frame++; if ((this.stopAfterFrame > 0) && (this.frame > this.stopAfterFrame)) { this.running = false; } if ((this.engine.frame % this.garbageDutyCycle) == 0) { var _local2 = 0; while (_local2 < this.particles.length) { if (this.particles[_local2].checkLifeOver()) { this.particles[_local2].headClip.removeMovieClip(); this.particles[_local2] = undefined; } _local2++; } this.garbageCollect(); } this.updateParticles(); if (this.running && ((this.frame % this.dutyCycle) == 0)) { this.generateParticles(); } this.tailEffect(); this.prevRunning = this.running; }; ParticleGenerator.prototype.updateParticles = function () { var _local2 = 0; while (_local2 < this.particles.length) { this.particles[_local2].evtEnterFrame(); _local2++; } }; ParticleGenerator.prototype.generateParticles = function () { var _local2 = 0; while (_local2 < this.particlesPerCycle) { var _local3 = this.newParticleCallback(this, this.engine); this.particles.push(_local3); _local2++; } }; ParticleGenerator.prototype.garbageCollect = function () { var _local2 = 0; while (_local2 < this.particles.length) { if (this.particles[_local2] == undefined) { this.particles.splice(_local2, 1); _local2--; } _local2++; } }; var objPE = (new _root.ParticleEngine(_root.loaderAnim.effectsClip, new flash.geom.Rectangle(0, 0, 680, 250))); var objMist = new ParticleGenerator(60, 125, 0, 0, 6, 1, true, makeLifespanGravityParticle, undefined, "particleSmokeTail", objPE); objMist.vxMin = 1; objMist.vxMax = 4; objMist.vyMin = 0; objMist.vyMax = 0; objMist.dxMin = 0; objMist.dxMax = 0; objMist.dyMin = -50; objMist.dyMax = 50; objMist.scaleMin = 40; objMist.scaleMax = 100; objMist.vrMin = 3; objMist.vrMax = 5; objMist.scaleMultMin = 1; objMist.scaleMultMax = 1; objMist.growFrames = 15; objMist.colourMatrix = new Array(); objMist.colourMatrix = objMist.colourMatrix.concat([0.95, 0, 0, 0, 0]); objMist.colourMatrix = objMist.colourMatrix.concat([0, 0.95, 0, 0, 0]); objMist.colourMatrix = objMist.colourMatrix.concat([0, 0, 0.95, 0, 0]); objMist.colourMatrix = objMist.colourMatrix.concat([0, 0, 0, 0.97, 0]); objMist.filter = new flash.filters.ColorMatrixFilter(objMist.colourMatrix); objMist.paint = simpleFadePaint; objMist.tailEffect = explosionFade; objMist.glowFilter = new flash.filters.GlowFilter(16711680, 100, 16, 16, 1, 1, false, true); stop(); _level0.hyperlaunchSWF_ID = "CityOfThamesisVideo"; if (_global.System) { System.security.allowDomain("www.hyperlaunch.com"); } loadMovieNum ("http://www.hyperlaunch.com/tracking/tracker.swf?r=" + (Math.floor(Math.random() * 10000) + 10000), 19467);Frame 2var arrChapters = new Array(1038, 2162, 4051, 5094); _level0.trackPoint("episode_5_start");Frame 6060stop(); _level0.trackPoint("episode_5_end");Symbol 7 Buttonon (release) { getURL ("http://www.newgrounds.com", "_blank"); }Symbol 8 MovieClip Frame 1_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if ((PercentLoaded == 100) && (_root.loaderAnimComplete == true)) { _root.loaderAnim.gotoAndPlay("out"); gotoAndPlay ("loaded"); } else { _root.loaderAnim.bar._xscale = PercentLoaded; }Symbol 8 MovieClip Frame 2gotoAndPlay (1);Symbol 8 MovieClip Frame 15stop();Symbol 21 MovieClip Frame 1_root.loaderAnimComplete = false;Symbol 21 MovieClip Frame 156stop(); _root.loaderAnimComplete = true;Symbol 21 MovieClip Frame 207_root.objMist = undefined; _root.objPE = undefined; _root.gotoAndPlay(2);Symbol 364 MovieClip Frame 113stop();Symbol 376 Buttonon (release) { getURL ("http://www.cityofthamesis.com", "_blank"); }
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip [particleSmokeTail] | Uses:1 | |
Symbol 3 Graphic | Used by:6 7 | |
Symbol 4 Graphic | Used by:6 7 | |
Symbol 5 Graphic | Used by:6 7 | |
Symbol 6 MovieClip | Uses:3 4 5 | Used by:7 |
Symbol 7 Button | Uses:6 3 4 5 | Used by:8 |
Symbol 8 MovieClip | Uses:7 | Used by:Timeline |
Symbol 9 Font | Used by:10 37 42 53 56 91 96 102 107 125 151 156 164 166 177 182 187 189 216 240 245 250 284 289 294 302 322 324 341 346 351 356 365 367 369 | |
Symbol 10 Text | Uses:9 | Used by:11 |
Symbol 11 MovieClip | Uses:10 | Used by:12 |
Symbol 12 MovieClip | Uses:11 | Used by:21 |
Symbol 13 Graphic | Used by:14 | |
Symbol 14 MovieClip | Uses:13 | Used by:21 |
Symbol 15 Graphic | Used by:21 | |
Symbol 16 Graphic | Used by:17 22 | |
Symbol 17 MovieClip | Uses:16 | Used by:21 |
Symbol 18 MovieClip | Used by:21 | |
Symbol 19 Graphic | Used by:20 33 | |
Symbol 20 MovieClip | Uses:19 | Used by:21 |
Symbol 21 MovieClip | Uses:12 14 15 17 18 20 | Used by:Timeline |
Symbol 22 MovieClip | Uses:16 | Used by:Timeline |
Symbol 23 Font | Used by:24 53 91 96 102 107 125 151 156 164 177 284 289 302 322 341 346 351 367 371 | |
Symbol 24 Text | Uses:23 | Used by:25 |
Symbol 25 MovieClip | Uses:24 | Used by:Timeline |
Symbol 26 Graphic | Used by:Timeline | |
Symbol 27 Bitmap | Used by:28 | |
Symbol 28 Graphic | Uses:27 | Used by:29 |
Symbol 29 MovieClip | Uses:28 | Used by:Timeline |
Symbol 30 Bitmap | Used by:31 | |
Symbol 31 Graphic | Uses:30 | Used by:32 |
Symbol 32 MovieClip | Uses:31 | Used by:Timeline |
Symbol 33 MovieClip | Uses:19 | Used by:Timeline |
Symbol 34 Bitmap | Used by:35 | |
Symbol 35 Graphic | Uses:34 | Used by:36 |
Symbol 36 MovieClip | Uses:35 | Used by:Timeline |
Symbol 37 Text | Uses:9 | Used by:38 |
Symbol 38 MovieClip | Uses:37 | Used by:Timeline |
Symbol 39 Bitmap | Used by:40 | |
Symbol 40 Graphic | Uses:39 | Used by:41 |
Symbol 41 MovieClip | Uses:40 | Used by:Timeline |
Symbol 42 Text | Uses:9 | Used by:43 |
Symbol 43 MovieClip | Uses:42 | Used by:Timeline |
Symbol 44 Bitmap | Used by:45 | |
Symbol 45 Graphic | Uses:44 | Used by:46 |
Symbol 46 MovieClip | Uses:45 | Used by:Timeline |
Symbol 47 Bitmap | Used by:48 | |
Symbol 48 Graphic | Uses:47 | Used by:49 |
Symbol 49 MovieClip | Uses:48 | Used by:Timeline |
Symbol 50 Bitmap | Used by:51 | |
Symbol 51 Graphic | Uses:50 | Used by:52 |
Symbol 52 MovieClip | Uses:51 | Used by:Timeline |
Symbol 53 Text | Uses:9 23 | Used by:54 |
Symbol 54 MovieClip | Uses:53 | Used by:Timeline |
Symbol 55 Font | Used by:56 324 | |
Symbol 56 Text | Uses:9 55 | Used by:57 |
Symbol 57 MovieClip | Uses:56 | Used by:Timeline |
Symbol 58 Bitmap | Used by:59 | |
Symbol 59 Graphic | Uses:58 | Used by:60 |
Symbol 60 MovieClip | Uses:59 | Used by:Timeline |
Symbol 61 Bitmap | Used by:62 | |
Symbol 62 Graphic | Uses:61 | Used by:63 |
Symbol 63 MovieClip | Uses:62 | Used by:Timeline |
Symbol 64 Bitmap | Used by:65 | |
Symbol 65 Graphic | Uses:64 | Used by:66 |
Symbol 66 MovieClip | Uses:65 | Used by:Timeline |
Symbol 67 Bitmap | Used by:68 | |
Symbol 68 Graphic | Uses:67 | Used by:69 |
Symbol 69 MovieClip | Uses:68 | Used by:Timeline |
Symbol 70 Bitmap | Used by:71 | |
Symbol 71 Graphic | Uses:70 | Used by:72 |
Symbol 72 MovieClip | Uses:71 | Used by:Timeline |
Symbol 73 Bitmap | Used by:74 | |
Symbol 74 Graphic | Uses:73 | Used by:75 |
Symbol 75 MovieClip | Uses:74 | Used by:Timeline |
Symbol 76 Bitmap | Used by:77 | |
Symbol 77 Graphic | Uses:76 | Used by:78 |
Symbol 78 MovieClip | Uses:77 | Used by:Timeline |
Symbol 79 Bitmap | Used by:80 | |
Symbol 80 Graphic | Uses:79 | Used by:81 |
Symbol 81 MovieClip | Uses:80 | Used by:Timeline |
Symbol 82 Bitmap | Used by:83 | |
Symbol 83 Graphic | Uses:82 | Used by:84 |
Symbol 84 MovieClip | Uses:83 | Used by:Timeline |
Symbol 85 Bitmap | Used by:86 | |
Symbol 86 Graphic | Uses:85 | Used by:87 |
Symbol 87 MovieClip | Uses:86 | Used by:Timeline |
Symbol 88 Bitmap | Used by:89 | |
Symbol 89 Graphic | Uses:88 | Used by:90 |
Symbol 90 MovieClip | Uses:89 | Used by:Timeline |
Symbol 91 Text | Uses:23 9 | Used by:92 |
Symbol 92 MovieClip | Uses:91 | Used by:Timeline |
Symbol 93 Bitmap | Used by:94 | |
Symbol 94 Graphic | Uses:93 | Used by:95 |
Symbol 95 MovieClip | Uses:94 | Used by:Timeline |
Symbol 96 Text | Uses:9 23 | Used by:97 |
Symbol 97 MovieClip | Uses:96 | Used by:Timeline |
Symbol 98 Bitmap | Used by:99 | |
Symbol 99 Graphic | Uses:98 | Used by:100 |
Symbol 100 MovieClip | Uses:99 | Used by:Timeline |
Symbol 101 Font | Used by:102 166 216 245 294 | |
Symbol 102 Text | Uses:101 9 23 | Used by:103 |
Symbol 103 MovieClip | Uses:102 | Used by:Timeline |
Symbol 104 Bitmap | Used by:105 | |
Symbol 105 Graphic | Uses:104 | Used by:106 |
Symbol 106 MovieClip | Uses:105 | Used by:Timeline |
Symbol 107 Text | Uses:9 23 | Used by:108 |
Symbol 108 MovieClip | Uses:107 | Used by:Timeline |
Symbol 109 Bitmap | Used by:110 | |
Symbol 110 Graphic | Uses:109 | Used by:111 |
Symbol 111 MovieClip | Uses:110 | Used by:Timeline |
Symbol 112 Bitmap | Used by:113 | |
Symbol 113 Graphic | Uses:112 | Used by:114 |
Symbol 114 MovieClip | Uses:113 | Used by:Timeline |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 MovieClip | Uses:115 | Used by:Timeline |
Symbol 117 Bitmap | Used by:118 | |
Symbol 118 Graphic | Uses:117 | Used by:119 |
Symbol 119 MovieClip | Uses:118 | Used by:Timeline |
Symbol 120 Graphic | Used by:121 | |
Symbol 121 MovieClip | Uses:120 | Used by:Timeline |
Symbol 122 Bitmap | Used by:123 | |
Symbol 123 Graphic | Uses:122 | Used by:124 |
Symbol 124 MovieClip | Uses:123 | Used by:Timeline |
Symbol 125 Text | Uses:23 9 | Used by:126 |
Symbol 126 MovieClip | Uses:125 | Used by:Timeline |
Symbol 127 Bitmap | Used by:128 | |
Symbol 128 Graphic | Uses:127 | Used by:129 |
Symbol 129 MovieClip | Uses:128 | Used by:Timeline |
Symbol 130 Bitmap | Used by:131 | |
Symbol 131 Graphic | Uses:130 | Used by:132 |
Symbol 132 MovieClip | Uses:131 | Used by:Timeline |
Symbol 133 Bitmap | Used by:134 | |
Symbol 134 Graphic | Uses:133 | Used by:135 |
Symbol 135 MovieClip | Uses:134 | Used by:Timeline |
Symbol 136 Bitmap | Used by:137 | |
Symbol 137 Graphic | Uses:136 | Used by:138 |
Symbol 138 MovieClip | Uses:137 | Used by:Timeline |
Symbol 139 Bitmap | Used by:140 | |
Symbol 140 Graphic | Uses:139 | Used by:141 |
Symbol 141 MovieClip | Uses:140 | Used by:Timeline |
Symbol 142 Bitmap | Used by:143 | |
Symbol 143 Graphic | Uses:142 | Used by:144 |
Symbol 144 MovieClip | Uses:143 | Used by:Timeline |
Symbol 145 Bitmap | Used by:146 | |
Symbol 146 Graphic | Uses:145 | Used by:147 |
Symbol 147 MovieClip | Uses:146 | Used by:Timeline |
Symbol 148 Bitmap | Used by:149 | |
Symbol 149 Graphic | Uses:148 | Used by:150 |
Symbol 150 MovieClip | Uses:149 | Used by:Timeline |
Symbol 151 Text | Uses:9 23 | Used by:152 |
Symbol 152 MovieClip | Uses:151 | Used by:Timeline |
Symbol 153 Bitmap | Used by:154 | |
Symbol 154 Graphic | Uses:153 | Used by:155 |
Symbol 155 MovieClip | Uses:154 | Used by:Timeline |
Symbol 156 Text | Uses:9 23 | Used by:157 |
Symbol 157 MovieClip | Uses:156 | Used by:Timeline |
Symbol 158 Bitmap | Used by:159 | |
Symbol 159 Graphic | Uses:158 | Used by:160 |
Symbol 160 MovieClip | Uses:159 | Used by:Timeline |
Symbol 161 Bitmap | Used by:162 | |
Symbol 162 Graphic | Uses:161 | Used by:163 |
Symbol 163 MovieClip | Uses:162 | Used by:Timeline |
Symbol 164 Text | Uses:23 9 | Used by:165 |
Symbol 165 MovieClip | Uses:164 | Used by:Timeline |
Symbol 166 Text | Uses:9 101 | Used by:167 |
Symbol 167 MovieClip | Uses:166 | Used by:Timeline |
Symbol 168 Bitmap | Used by:169 | |
Symbol 169 Graphic | Uses:168 | Used by:170 |
Symbol 170 MovieClip | Uses:169 | Used by:Timeline |
Symbol 171 Bitmap | Used by:172 | |
Symbol 172 Graphic | Uses:171 | Used by:173 |
Symbol 173 MovieClip | Uses:172 | Used by:Timeline |
Symbol 174 Bitmap | Used by:175 | |
Symbol 175 Graphic | Uses:174 | Used by:176 |
Symbol 176 MovieClip | Uses:175 | Used by:Timeline |
Symbol 177 Text | Uses:23 9 | Used by:178 |
Symbol 178 MovieClip | Uses:177 | Used by:Timeline |
Symbol 179 Bitmap | Used by:180 | |
Symbol 180 Graphic | Uses:179 | Used by:181 |
Symbol 181 MovieClip | Uses:180 | Used by:Timeline |
Symbol 182 Text | Uses:9 | Used by:183 |
Symbol 183 MovieClip | Uses:182 | Used by:Timeline |
Symbol 184 Bitmap | Used by:185 | |
Symbol 185 Graphic | Uses:184 | Used by:186 |
Symbol 186 MovieClip | Uses:185 | Used by:Timeline |
Symbol 187 Text | Uses:9 | Used by:188 |
Symbol 188 MovieClip | Uses:187 | Used by:Timeline |
Symbol 189 Text | Uses:9 | Used by:190 |
Symbol 190 MovieClip | Uses:189 | Used by:Timeline |
Symbol 191 ShapeTweening | Used by:Timeline | |
Symbol 192 Bitmap | Used by:193 | |
Symbol 193 Graphic | Uses:192 | Used by:194 |
Symbol 194 MovieClip | Uses:193 | Used by:Timeline |
Symbol 195 Bitmap | Used by:196 | |
Symbol 196 Graphic | Uses:195 | Used by:197 |
Symbol 197 MovieClip | Uses:196 | Used by:Timeline |
Symbol 198 Bitmap | Used by:199 | |
Symbol 199 Graphic | Uses:198 | Used by:200 |
Symbol 200 MovieClip | Uses:199 | Used by:Timeline |
Symbol 201 Bitmap | Used by:202 | |
Symbol 202 Graphic | Uses:201 | Used by:203 |
Symbol 203 MovieClip | Uses:202 | Used by:Timeline |
Symbol 204 Bitmap | Used by:205 | |
Symbol 205 Graphic | Uses:204 | Used by:206 |
Symbol 206 MovieClip | Uses:205 | Used by:Timeline |
Symbol 207 Bitmap | Used by:208 | |
Symbol 208 Graphic | Uses:207 | Used by:209 |
Symbol 209 MovieClip | Uses:208 | Used by:Timeline |
Symbol 210 Bitmap | Used by:211 | |
Symbol 211 Graphic | Uses:210 | Used by:212 |
Symbol 212 MovieClip | Uses:211 | Used by:Timeline |
Symbol 213 Bitmap | Used by:214 | |
Symbol 214 Graphic | Uses:213 | Used by:215 |
Symbol 215 MovieClip | Uses:214 | Used by:Timeline |
Symbol 216 Text | Uses:101 9 | Used by:217 |
Symbol 217 MovieClip | Uses:216 | Used by:Timeline |
Symbol 218 Bitmap | Used by:219 | |
Symbol 219 Graphic | Uses:218 | Used by:220 |
Symbol 220 MovieClip | Uses:219 | Used by:Timeline |
Symbol 221 Bitmap | Used by:222 | |
Symbol 222 Graphic | Uses:221 | Used by:223 |
Symbol 223 MovieClip | Uses:222 | Used by:Timeline |
Symbol 224 Bitmap | Used by:225 | |
Symbol 225 Graphic | Uses:224 | Used by:226 |
Symbol 226 MovieClip | Uses:225 | Used by:Timeline |
Symbol 227 ShapeTweening | Used by:Timeline | |
Symbol 228 Bitmap | Used by:229 | |
Symbol 229 Graphic | Uses:228 | Used by:230 |
Symbol 230 MovieClip | Uses:229 | Used by:Timeline |
Symbol 231 ShapeTweening | Used by:Timeline | |
Symbol 232 Graphic | Used by:Timeline | |
Symbol 233 Graphic | Used by:Timeline | |
Symbol 234 Bitmap | Used by:235 | |
Symbol 235 Graphic | Uses:234 | Used by:236 |
Symbol 236 MovieClip | Uses:235 | Used by:Timeline |
Symbol 237 Bitmap | Used by:238 | |
Symbol 238 Graphic | Uses:237 | Used by:239 |
Symbol 239 MovieClip | Uses:238 | Used by:Timeline |
Symbol 240 Text | Uses:9 | Used by:241 |
Symbol 241 MovieClip | Uses:240 | Used by:Timeline |
Symbol 242 Bitmap | Used by:243 | |
Symbol 243 Graphic | Uses:242 | Used by:244 |
Symbol 244 MovieClip | Uses:243 | Used by:Timeline |
Symbol 245 Text | Uses:9 101 | Used by:246 |
Symbol 246 MovieClip | Uses:245 | Used by:Timeline |
Symbol 247 Bitmap | Used by:248 | |
Symbol 248 Graphic | Uses:247 | Used by:249 |
Symbol 249 MovieClip | Uses:248 | Used by:Timeline |
Symbol 250 Text | Uses:9 | Used by:251 |
Symbol 251 MovieClip | Uses:250 | Used by:Timeline |
Symbol 252 Bitmap | Used by:253 | |
Symbol 253 Graphic | Uses:252 | Used by:254 |
Symbol 254 MovieClip | Uses:253 | Used by:Timeline |
Symbol 255 Bitmap | Used by:256 | |
Symbol 256 Graphic | Uses:255 | Used by:257 |
Symbol 257 MovieClip | Uses:256 | Used by:Timeline |
Symbol 258 Bitmap | Used by:259 | |
Symbol 259 Graphic | Uses:258 | Used by:260 |
Symbol 260 MovieClip | Uses:259 | Used by:Timeline |
Symbol 261 Bitmap | Used by:262 | |
Symbol 262 Graphic | Uses:261 | Used by:263 |
Symbol 263 MovieClip | Uses:262 | Used by:Timeline |
Symbol 264 Bitmap | Used by:265 | |
Symbol 265 Graphic | Uses:264 | Used by:266 |
Symbol 266 MovieClip | Uses:265 | Used by:Timeline |
Symbol 267 Bitmap | Used by:268 | |
Symbol 268 Graphic | Uses:267 | Used by:269 |
Symbol 269 MovieClip | Uses:268 | Used by:Timeline |
Symbol 270 Bitmap | Used by:271 | |
Symbol 271 Graphic | Uses:270 | Used by:272 |
Symbol 272 MovieClip | Uses:271 | Used by:Timeline |
Symbol 273 Bitmap | Used by:274 | |
Symbol 274 Graphic | Uses:273 | Used by:275 |
Symbol 275 MovieClip | Uses:274 | Used by:Timeline |
Symbol 276 Bitmap | Used by:277 | |
Symbol 277 Graphic | Uses:276 | Used by:278 |
Symbol 278 MovieClip | Uses:277 | Used by:Timeline |
Symbol 279 Bitmap | Used by:280 | |
Symbol 280 Graphic | Uses:279 | Used by:283 |
Symbol 281 Graphic | Used by:282 | |
Symbol 282 MovieClip | Uses:281 | Used by:283 |
Symbol 283 MovieClip | Uses:280 282 | Used by:Timeline |
Symbol 284 Text | Uses:9 23 | Used by:285 |
Symbol 285 MovieClip | Uses:284 | Used by:Timeline |
Symbol 286 Bitmap | Used by:287 | |
Symbol 287 Graphic | Uses:286 | Used by:288 |
Symbol 288 MovieClip | Uses:287 | Used by:Timeline |
Symbol 289 Text | Uses:9 23 | Used by:290 |
Symbol 290 MovieClip | Uses:289 | Used by:Timeline |
Symbol 291 Bitmap | Used by:292 | |
Symbol 292 Graphic | Uses:291 | Used by:293 |
Symbol 293 MovieClip | Uses:292 | Used by:Timeline |
Symbol 294 Text | Uses:9 101 | Used by:295 |
Symbol 295 MovieClip | Uses:294 | Used by:Timeline |
Symbol 296 Bitmap | Used by:297 | |
Symbol 297 Graphic | Uses:296 | Used by:298 |
Symbol 298 MovieClip | Uses:297 | Used by:Timeline |
Symbol 299 Bitmap | Used by:300 | |
Symbol 300 Graphic | Uses:299 | Used by:301 |
Symbol 301 MovieClip | Uses:300 | Used by:Timeline |
Symbol 302 Text | Uses:23 9 | Used by:303 |
Symbol 303 MovieClip | Uses:302 | Used by:Timeline |
Symbol 304 Bitmap | Used by:305 | |
Symbol 305 Graphic | Uses:304 | Used by:306 |
Symbol 306 MovieClip | Uses:305 | Used by:Timeline |
Symbol 307 Bitmap | Used by:308 | |
Symbol 308 Graphic | Uses:307 | Used by:309 |
Symbol 309 MovieClip | Uses:308 | Used by:Timeline |
Symbol 310 Bitmap | Used by:311 | |
Symbol 311 Graphic | Uses:310 | Used by:312 |
Symbol 312 MovieClip | Uses:311 | Used by:Timeline |
Symbol 313 Bitmap | Used by:314 | |
Symbol 314 Graphic | Uses:313 | Used by:315 |
Symbol 315 MovieClip | Uses:314 | Used by:Timeline |
Symbol 316 Bitmap | Used by:317 | |
Symbol 317 Graphic | Uses:316 | Used by:318 |
Symbol 318 MovieClip | Uses:317 | Used by:Timeline |
Symbol 319 Bitmap | Used by:320 | |
Symbol 320 Graphic | Uses:319 | Used by:321 |
Symbol 321 MovieClip | Uses:320 | Used by:Timeline |
Symbol 322 Text | Uses:23 9 | Used by:323 |
Symbol 323 MovieClip | Uses:322 | Used by:Timeline |
Symbol 324 Text | Uses:55 9 | Used by:325 |
Symbol 325 MovieClip | Uses:324 | Used by:Timeline |
Symbol 326 Bitmap | Used by:327 | |
Symbol 327 Graphic | Uses:326 | Used by:328 |
Symbol 328 MovieClip | Uses:327 | Used by:Timeline |
Symbol 329 Bitmap | Used by:330 | |
Symbol 330 Graphic | Uses:329 | Used by:331 |
Symbol 331 MovieClip | Uses:330 | Used by:Timeline |
Symbol 332 Bitmap | Used by:333 | |
Symbol 333 Graphic | Uses:332 | Used by:334 |
Symbol 334 MovieClip | Uses:333 | Used by:Timeline |
Symbol 335 Bitmap | Used by:336 | |
Symbol 336 Graphic | Uses:335 | Used by:337 |
Symbol 337 MovieClip | Uses:336 | Used by:Timeline |
Symbol 338 Bitmap | Used by:339 | |
Symbol 339 Graphic | Uses:338 | Used by:340 |
Symbol 340 MovieClip | Uses:339 | Used by:Timeline |
Symbol 341 Text | Uses:9 23 | Used by:342 |
Symbol 342 MovieClip | Uses:341 | Used by:Timeline |
Symbol 343 Bitmap | Used by:344 | |
Symbol 344 Graphic | Uses:343 | Used by:345 |
Symbol 345 MovieClip | Uses:344 | Used by:Timeline |
Symbol 346 Text | Uses:9 23 | Used by:347 |
Symbol 347 MovieClip | Uses:346 | Used by:Timeline |
Symbol 348 Bitmap | Used by:349 | |
Symbol 349 Graphic | Uses:348 | Used by:350 |
Symbol 350 MovieClip | Uses:349 | Used by:Timeline |
Symbol 351 Text | Uses:9 23 | Used by:352 |
Symbol 352 MovieClip | Uses:351 | Used by:Timeline |
Symbol 353 Bitmap | Used by:354 | |
Symbol 354 Graphic | Uses:353 | Used by:355 |
Symbol 355 MovieClip | Uses:354 | Used by:Timeline |
Symbol 356 Text | Uses:9 | Used by:357 |
Symbol 357 MovieClip | Uses:356 | Used by:Timeline |
Symbol 358 Bitmap | Used by:359 | |
Symbol 359 Graphic | Uses:358 | Used by:360 |
Symbol 360 MovieClip | Uses:359 | Used by:364 |
Symbol 361 Bitmap | Used by:362 | |
Symbol 362 Graphic | Uses:361 | Used by:363 |
Symbol 363 MovieClip | Uses:362 | Used by:364 |
Symbol 364 MovieClip | Uses:360 363 | Used by:Timeline |
Symbol 365 Text | Uses:9 | Used by:366 |
Symbol 366 MovieClip | Uses:365 | Used by:Timeline |
Symbol 367 Text | Uses:9 23 | Used by:368 |
Symbol 368 MovieClip | Uses:367 | Used by:Timeline |
Symbol 369 Text | Uses:9 | Used by:370 |
Symbol 370 MovieClip | Uses:369 | Used by:Timeline |
Symbol 371 Text | Uses:23 | Used by:372 |
Symbol 372 MovieClip | Uses:371 | Used by:Timeline |
Symbol 373 Graphic | Used by:Timeline | |
Symbol 374 Graphic | Used by:376 | |
Symbol 375 Graphic | Used by:376 | |
Symbol 376 Button | Uses:374 375 | Used by:377 |
Symbol 377 MovieClip | Uses:376 | Used by:Timeline |
Symbol 378 Graphic | Used by:Timeline | |
Streaming Sound 1 | Used by:Timeline |
Instance Names
"loaderAnim" | Frame 1 | Symbol 21 MovieClip |
"bar" | Symbol 21 MovieClip Frame 1 | Symbol 14 MovieClip |
"effectsClip" | Symbol 21 MovieClip Frame 1 | Symbol 18 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "particleSmokeTail" |
Labels
"loaded" | Symbol 8 MovieClip Frame 3 |
"out" | Symbol 21 MovieClip Frame 157 |
|