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 #45927 |
Episode Loading |
Episode 1 As the king of Albion grows weaker on his deathbed, the latest patch crimewave spreads fear through the streets. In the city of Thamesis the story is only just beginning. |
spare change? |
Bugger off. |
Go play on the tracks. |
I didn't mean it. Get off those tracks... |
Please. I didn't mean it. |
I can help you... |
He's got a pirate patch! |
Somebody get a warden! |
You had your chance. |
Now let's see if you can help yourself. |
RICHARD OF THE ROSE King of Albion |
So many dead. I have failed them Malkolm. |
Rest sire. Please. |
<p align="left"><font face="Trebuchet MS" size="14" color="#ffffff" letterSpacing="1.000000" kerning="1"><b>Malkolm WEIKO</b></font></p><p align="left"><font face="Trebuchet MS" size="14" color="#ffffff" letterSpacing="1.000000" kerning="1"><b>Royal advisor</b></font></p> |
You've heard the expression silence speaks volumes? |
My stoicism changed the face of Thamesis. |
Rest your highness. |
It is not your fault. |
Jonathan...send for Jonathan... |
I want to see my son one last time |
VANESSA BLANCHFLOWER Elite Yeo Trainee: Psyops |
JONATHAN OF THE ROSE Prince of Albion |
Sorry I'm late. |
Sorry? Please. |
If your father wasn't king |
the only thing you'd be doing on this floor is sweeping it. |
Shut up. |
I wasn't speaking to you. |
Did you put on weight |
or did your suit get smaller? |
I'm going to pretend you didn't just say that. |
Are you OK ? |
That's very chivalrous...your highness. |
I eagerly await your succession, |
as like the rest of Thamesis, |
I'm sure you'll make a fine king. |
Jonathan we need you out here now. |
I'm afraid I have some bad news... |
Greetings your high- |
My father. |
How is my father? |
Anxious to see you young sire. |
If I may speak to you for a mo- |
Have him notified that I am en route. |
I arrive within the hour. |
as you- |
A new future for |
you and your family |
begins here |
become a |
britomart citizen |
today! |
To be continued in Episode 2... |
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();Frame 2var arrChapters = new Array(511, 2121, 3463, 5838);Frame 7609stop();Symbol 3 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 3 MovieClip Frame 2gotoAndPlay (1);Symbol 3 MovieClip Frame 15stop();Symbol 16 MovieClip Frame 1_root.loaderAnimComplete = false;Symbol 16 MovieClip Frame 156stop(); _root.loaderAnimComplete = true;Symbol 16 MovieClip Frame 207_root.objMist = undefined; _root.objPE = undefined; _root.gotoAndPlay(2);Symbol 358 MovieClip Frame 400stop();Symbol 364 Buttonon (release) { getURL ("http://www.cityofthamesis.com", "_blank"); }
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip [particleSmokeTail] | Uses:1 | |
Symbol 3 MovieClip | Used by:Timeline | |
Symbol 4 Font | Used by:5 17 48 56 64 69 71 76 78 83 85 133 138 144 147 152 154 159 161 166 168 183 189 191 196 201 203 210 215 217 225 256 261 263 265 270 275 295 297 302 304 306 308 314 316 | |
Symbol 5 Text | Uses:4 | Used by:6 |
Symbol 6 MovieClip | Uses:5 | Used by:7 |
Symbol 7 MovieClip | Uses:6 | Used by:16 |
Symbol 8 Graphic | Used by:9 | |
Symbol 9 MovieClip | Uses:8 | Used by:16 |
Symbol 10 Graphic | Used by:16 | |
Symbol 11 Graphic | Used by:12 | |
Symbol 12 MovieClip | Uses:11 | Used by:16 Timeline |
Symbol 13 MovieClip | Used by:16 | |
Symbol 14 Graphic | Used by:15 26 Timeline | |
Symbol 15 MovieClip | Uses:14 | Used by:16 |
Symbol 16 MovieClip | Uses:7 9 10 12 13 15 | Used by:Timeline |
Symbol 17 Text | Uses:4 | Used by:18 |
Symbol 18 MovieClip | Uses:17 | Used by:Timeline |
Symbol 19 Graphic | Used by:358 Timeline | |
Symbol 20 Bitmap | Used by:21 | |
Symbol 21 Graphic | Uses:20 | Used by:22 |
Symbol 22 MovieClip | Uses:21 | Used by:Timeline |
Symbol 23 Bitmap | Used by:24 | |
Symbol 24 Graphic | Uses:23 | Used by:25 |
Symbol 25 MovieClip | Uses:24 | Used by:Timeline |
Symbol 26 MovieClip | Uses:14 | 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 Bitmap | Used by:34 | |
Symbol 34 Graphic | Uses:33 | Used by:35 |
Symbol 35 MovieClip | Uses:34 | Used by:Timeline |
Symbol 36 Bitmap | Used by:37 | |
Symbol 37 Graphic | Uses:36 | 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 Bitmap | Used by:43 | |
Symbol 43 Graphic | Uses:42 | Used by:44 |
Symbol 44 MovieClip | Uses:43 | Used by:Timeline |
Symbol 45 Bitmap | Used by:46 | |
Symbol 46 Graphic | Uses:45 | Used by:47 |
Symbol 47 MovieClip | Uses:46 | Used by:Timeline |
Symbol 48 Text | Uses:4 | 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 Font | Used by:54 69 76 85 133 147 152 154 166 168 183 189 203 248 265 270 308 359 | |
Symbol 54 Text | Uses:53 | Used by:55 |
Symbol 55 MovieClip | Uses:54 | Used by:Timeline |
Symbol 56 Text | Uses:4 | 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 Text | Uses:4 | Used by:65 |
Symbol 65 MovieClip | Uses:64 | Used by:Timeline |
Symbol 66 Bitmap | Used by:67 | |
Symbol 67 Graphic | Uses:66 | Used by:68 |
Symbol 68 MovieClip | Uses:67 | Used by:Timeline |
Symbol 69 Text | Uses:53 4 | Used by:70 |
Symbol 70 MovieClip | Uses:69 | Used by:Timeline |
Symbol 71 Text | Uses:4 | 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 Text | Uses:4 53 | Used by:77 |
Symbol 77 MovieClip | Uses:76 | Used by:Timeline |
Symbol 78 Text | Uses:4 | Used by:79 |
Symbol 79 MovieClip | Uses:78 | Used by:Timeline |
Symbol 80 Bitmap | Used by:81 | |
Symbol 81 Graphic | Uses:80 | Used by:82 |
Symbol 82 MovieClip | Uses:81 | Used by:Timeline |
Symbol 83 Text | Uses:4 | Used by:84 |
Symbol 84 MovieClip | Uses:83 | Used by:Timeline |
Symbol 85 Text | Uses:4 53 | Used by:86 |
Symbol 86 MovieClip | Uses:85 | Used by:Timeline |
Symbol 87 Bitmap | Used by:88 | |
Symbol 88 Graphic | Uses:87 | Used by:89 |
Symbol 89 MovieClip | Uses:88 | Used by:Timeline |
Symbol 90 Bitmap | Used by:91 | |
Symbol 91 Graphic | Uses:90 | 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 Graphic | Used by:97 | |
Symbol 97 MovieClip | Uses:96 | Used by:Timeline |
Symbol 98 Graphic | Used by:Timeline | |
Symbol 99 Graphic | Used by:100 | |
Symbol 100 MovieClip | Uses:99 | Used by:Timeline |
Symbol 101 Graphic | Used by:102 | |
Symbol 102 MovieClip | Uses:101 | Used by:Timeline |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 MovieClip | Uses:103 | Used by:Timeline |
Symbol 105 Bitmap | Used by:106 | |
Symbol 106 Graphic | Uses:105 | Used by:107 |
Symbol 107 MovieClip | Uses:106 | Used by:Timeline |
Symbol 108 Bitmap | Used by:109 | |
Symbol 109 Graphic | Uses:108 | Used by:110 |
Symbol 110 MovieClip | Uses:109 | Used by:Timeline |
Symbol 111 Bitmap | Used by:112 | |
Symbol 112 Graphic | Uses:111 | Used by:113 |
Symbol 113 MovieClip | Uses:112 | Used by:Timeline |
Symbol 114 Bitmap | Used by:115 | |
Symbol 115 Graphic | Uses:114 | 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 Bitmap | Used by:121 | |
Symbol 121 Graphic | Uses:120 | Used by:122 |
Symbol 122 MovieClip | Uses:121 | Used by:Timeline |
Symbol 123 Bitmap | Used by:124 | |
Symbol 124 Graphic | Uses:123 | Used by:125 |
Symbol 125 MovieClip | Uses:124 | Used by:Timeline |
Symbol 126 Bitmap | Used by:127 | |
Symbol 127 Graphic | Uses:126 | Used by:128 |
Symbol 128 MovieClip | Uses:127 | Used by:Timeline |
Symbol 129 Bitmap | Used by:130 | |
Symbol 130 Graphic | Uses:129 | Used by:131 |
Symbol 131 MovieClip | Uses:130 | Used by:Timeline |
Symbol 132 Graphic | Used by:134 | |
Symbol 133 Text | Uses:53 4 | Used by:134 |
Symbol 134 MovieClip | Uses:132 133 | Used by:Timeline |
Symbol 135 Bitmap | Used by:136 | |
Symbol 136 Graphic | Uses:135 | Used by:137 |
Symbol 137 MovieClip | Uses:136 | Used by:Timeline |
Symbol 138 Text | Uses:4 | Used by:139 |
Symbol 139 MovieClip | Uses:138 | Used by:Timeline |
Symbol 140 Bitmap | Used by:141 | |
Symbol 141 Graphic | Uses:140 | Used by:142 |
Symbol 142 MovieClip | Uses:141 | Used by:Timeline |
Symbol 143 Font | Used by:144 147 161 208 217 265 | |
Symbol 144 Text | Uses:4 143 | Used by:145 |
Symbol 145 MovieClip | Uses:144 | Used by:Timeline |
Symbol 146 Graphic | Used by:148 | |
Symbol 147 EditableText | Uses:4 53 143 | Used by:148 |
Symbol 148 MovieClip | Uses:146 147 | Used by:Timeline |
Symbol 149 Bitmap | Used by:150 | |
Symbol 150 Graphic | Uses:149 | Used by:151 |
Symbol 151 MovieClip | Uses:150 | Used by:Timeline |
Symbol 152 Text | Uses:4 53 | Used by:153 |
Symbol 153 MovieClip | Uses:152 | Used by:Timeline |
Symbol 154 Text | Uses:4 53 | Used by:155 |
Symbol 155 MovieClip | Uses:154 | Used by:Timeline |
Symbol 156 Bitmap | Used by:157 | |
Symbol 157 Graphic | Uses:156 | Used by:158 |
Symbol 158 MovieClip | Uses:157 | Used by:Timeline |
Symbol 159 Text | Uses:4 | Used by:160 |
Symbol 160 MovieClip | Uses:159 | Used by:Timeline |
Symbol 161 Text | Uses:4 143 | Used by:162 |
Symbol 162 MovieClip | Uses:161 | Used by:Timeline |
Symbol 163 Bitmap | Used by:164 | |
Symbol 164 Graphic | Uses:163 | Used by:165 |
Symbol 165 MovieClip | Uses:164 | Used by:Timeline |
Symbol 166 Text | Uses:53 4 | Used by:167 |
Symbol 167 MovieClip | Uses:166 | Used by:Timeline |
Symbol 168 Text | Uses:4 53 | Used by:169 |
Symbol 169 MovieClip | Uses:168 | Used by:Timeline |
Symbol 170 Bitmap | Used by:171 | |
Symbol 171 Graphic | Uses:170 | Used by:172 |
Symbol 172 MovieClip | Uses:171 | Used by:Timeline |
Symbol 173 Bitmap | Used by:174 | |
Symbol 174 Graphic | Uses:173 | Used by:175 |
Symbol 175 MovieClip | Uses:174 | Used by:Timeline |
Symbol 176 Bitmap | Used by:177 | |
Symbol 177 Graphic | Uses:176 | 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 Graphic | Used by:184 | |
Symbol 183 Text | Uses:53 4 | Used by:184 |
Symbol 184 MovieClip | Uses:182 183 | Used by:Timeline |
Symbol 185 Bitmap | Used by:186 | |
Symbol 186 Graphic | Uses:185 | Used by:187 |
Symbol 187 MovieClip | Uses:186 | Used by:Timeline |
Symbol 188 Graphic | Used by:190 | |
Symbol 189 Text | Uses:53 4 | Used by:190 |
Symbol 190 MovieClip | Uses:188 189 | Used by:Timeline |
Symbol 191 Text | Uses:4 | Used by:192 |
Symbol 192 MovieClip | Uses:191 | Used by:Timeline |
Symbol 193 Bitmap | Used by:194 | |
Symbol 194 Graphic | Uses:193 | Used by:195 |
Symbol 195 MovieClip | Uses:194 | Used by:Timeline |
Symbol 196 Text | Uses:4 | 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 Text | Uses:4 | Used by:202 |
Symbol 202 MovieClip | Uses:201 | Used by:Timeline |
Symbol 203 Text | Uses:4 53 | Used by:204 |
Symbol 204 MovieClip | Uses:203 | Used by:Timeline |
Symbol 205 Bitmap | Used by:206 | |
Symbol 206 Graphic | Uses:205 | Used by:207 |
Symbol 207 MovieClip | Uses:206 | Used by:Timeline |
Symbol 208 Text | Uses:143 | Used by:209 |
Symbol 209 MovieClip | Uses:208 | Used by:Timeline |
Symbol 210 Text | Uses:4 | Used by:211 |
Symbol 211 MovieClip | Uses:210 | Used by:Timeline |
Symbol 212 Bitmap | Used by:213 | |
Symbol 213 Graphic | Uses:212 | Used by:214 |
Symbol 214 MovieClip | Uses:213 | Used by:Timeline |
Symbol 215 Text | Uses:4 | Used by:216 |
Symbol 216 MovieClip | Uses:215 | Used by:Timeline |
Symbol 217 Text | Uses:4 143 | Used by:218 |
Symbol 218 MovieClip | Uses:217 | Used by:Timeline |
Symbol 219 Bitmap | Used by:220 | |
Symbol 220 Graphic | Uses:219 | Used by:221 |
Symbol 221 MovieClip | Uses:220 | Used by:Timeline |
Symbol 222 Bitmap | Used by:223 | |
Symbol 223 Graphic | Uses:222 | Used by:224 |
Symbol 224 MovieClip | Uses:223 | Used by:Timeline |
Symbol 225 Text | Uses:4 | Used by:226 |
Symbol 226 MovieClip | Uses:225 | Used by:Timeline |
Symbol 227 Bitmap | Used by:228 | |
Symbol 228 Graphic | Uses:227 | Used by:229 |
Symbol 229 MovieClip | Uses:228 | Used by:Timeline |
Symbol 230 Bitmap | Used by:231 | |
Symbol 231 Graphic | Uses:230 | Used by:232 |
Symbol 232 MovieClip | Uses:231 | Used by:Timeline |
Symbol 233 Bitmap | Used by:234 | |
Symbol 234 Graphic | Uses:233 | Used by:235 |
Symbol 235 MovieClip | Uses:234 | Used by:Timeline |
Symbol 236 Bitmap | Used by:237 | |
Symbol 237 Graphic | Uses:236 | Used by:238 |
Symbol 238 MovieClip | Uses:237 | Used by:Timeline |
Symbol 239 Bitmap | Used by:240 | |
Symbol 240 Graphic | Uses:239 | 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 Bitmap | Used by:246 | |
Symbol 246 Graphic | Uses:245 | Used by:247 |
Symbol 247 MovieClip | Uses:246 | Used by:Timeline |
Symbol 248 Text | Uses:53 | Used by:249 |
Symbol 249 MovieClip | Uses:248 | Used by:Timeline |
Symbol 250 Bitmap | Used by:251 | |
Symbol 251 Graphic | Uses:250 | Used by:252 |
Symbol 252 MovieClip | Uses:251 | Used by:Timeline |
Symbol 253 Bitmap | Used by:254 | |
Symbol 254 Graphic | Uses:253 | Used by:255 |
Symbol 255 MovieClip | Uses:254 | Used by:Timeline |
Symbol 256 Text | Uses:4 | 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 Text | Uses:4 | Used by:262 |
Symbol 262 MovieClip | Uses:261 | Used by:Timeline |
Symbol 263 Text | Uses:4 | Used by:264 |
Symbol 264 MovieClip | Uses:263 | Used by:Timeline |
Symbol 265 Text | Uses:4 143 53 | 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 Text | Uses:53 4 | Used by:271 |
Symbol 271 MovieClip | Uses:270 | Used by:Timeline |
Symbol 272 Bitmap | Used by:273 | |
Symbol 273 Graphic | Uses:272 | Used by:274 |
Symbol 274 MovieClip | Uses:273 | Used by:Timeline |
Symbol 275 Text | Uses:4 | Used by:276 |
Symbol 276 MovieClip | Uses:275 | Used by:Timeline |
Symbol 277 Bitmap | Used by:278 | |
Symbol 278 Graphic | Uses:277 | Used by:279 |
Symbol 279 MovieClip | Uses:278 | Used by:Timeline |
Symbol 280 Bitmap | Used by:281 | |
Symbol 281 Graphic | Uses:280 | Used by:282 |
Symbol 282 MovieClip | Uses:281 | Used by:Timeline |
Symbol 283 Bitmap | Used by:284 | |
Symbol 284 Graphic | Uses:283 | Used by:285 |
Symbol 285 MovieClip | Uses:284 | Used by:Timeline |
Symbol 286 Bitmap | Used by:287 289 | |
Symbol 287 Graphic | Uses:286 | Used by:288 |
Symbol 288 MovieClip | Uses:287 | Used by:Timeline |
Symbol 289 Graphic | Uses:286 | 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:294 313 Timeline |
Symbol 294 MovieClip | Uses:293 | Used by:Timeline |
Symbol 295 Text | Uses:4 | Used by:296 |
Symbol 296 MovieClip | Uses:295 | Used by:Timeline |
Symbol 297 Text | Uses:4 | 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:4 | Used by:303 |
Symbol 303 MovieClip | Uses:302 | Used by:Timeline |
Symbol 304 Text | Uses:4 | Used by:305 |
Symbol 305 MovieClip | Uses:304 | Used by:Timeline |
Symbol 306 Text | Uses:4 | Used by:307 |
Symbol 307 MovieClip | Uses:306 | Used by:Timeline |
Symbol 308 Text | Uses:4 53 | 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 MovieClip | Uses:293 | Used by:Timeline |
Symbol 314 Text | Uses:4 | Used by:315 |
Symbol 315 MovieClip | Uses:314 | Used by:Timeline |
Symbol 316 Text | Uses:4 | Used by:317 |
Symbol 317 MovieClip | Uses:316 | Used by:Timeline |
Symbol 318 ShapeTweening | Used by:Timeline | |
Symbol 319 ShapeTweening | Used by:Timeline | |
Symbol 320 Bitmap | Used by:321 | |
Symbol 321 Graphic | Uses:320 | Used by:322 |
Symbol 322 MovieClip | Uses:321 | Used by:Timeline |
Symbol 323 Bitmap | Used by:324 | |
Symbol 324 Graphic | Uses:323 | 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:358 |
Symbol 335 Font | Used by:336 338 340 352 354 356 | |
Symbol 336 Text | Uses:335 | Used by:337 |
Symbol 337 MovieClip | Uses:336 | Used by:358 |
Symbol 338 Text | Uses:335 | Used by:339 |
Symbol 339 MovieClip | Uses:338 | Used by:358 |
Symbol 340 Text | Uses:335 | Used by:341 |
Symbol 341 MovieClip | Uses:340 | Used by:358 |
Symbol 342 Graphic | Used by:358 | |
Symbol 343 Graphic | Used by:358 | |
Symbol 344 Graphic | Used by:358 | |
Symbol 345 Graphic | Used by:358 | |
Symbol 346 Graphic | Used by:358 | |
Symbol 347 Graphic | Used by:358 | |
Symbol 348 Graphic | Used by:358 | |
Symbol 349 Graphic | Used by:358 | |
Symbol 350 Graphic | Used by:358 | |
Symbol 351 Graphic | Used by:358 | |
Symbol 352 Text | Uses:335 | Used by:353 |
Symbol 353 MovieClip | Uses:352 | Used by:358 |
Symbol 354 Text | Uses:335 | Used by:355 |
Symbol 355 MovieClip | Uses:354 | Used by:358 |
Symbol 356 Text | Uses:335 | Used by:357 |
Symbol 357 MovieClip | Uses:356 | Used by:358 |
Symbol 358 MovieClip | Uses:334 19 337 339 341 342 343 344 345 346 347 348 349 350 351 353 355 357 | Used by:Timeline |
Symbol 359 Text | Uses:53 | Used by:360 |
Symbol 360 MovieClip | Uses:359 | Used by:Timeline |
Symbol 361 Graphic | Used by:Timeline | |
Symbol 362 Graphic | Used by:364 | |
Symbol 363 Graphic | Used by:364 | |
Symbol 364 Button | Uses:362 363 | Used by:365 |
Symbol 365 MovieClip | Uses:364 | Used by:Timeline |
Symbol 366 Graphic | Used by:Timeline | |
Streaming Sound 1 | Used by:Timeline |
Instance Names
"loaderAnim" | Frame 1 | Symbol 16 MovieClip |
"bar" | Symbol 16 MovieClip Frame 1 | Symbol 9 MovieClip |
"effectsClip" | Symbol 16 MovieClip Frame 1 | Symbol 13 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 3 MovieClip Frame 3 |
"out" | Symbol 16 MovieClip Frame 157 |
|