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 #55949 |
Episode Loading |
Episode 4 On the windswept island of Mac Lir, a battered & bruised Postmaster finally closes in on his mark... |
Your first mistake... |
is also your last. |
You should have killed me assassin... |
when you had the chance. |
You'd murder an old soldier while he sleeps? |
You are the lowest form of scum. |
LION Ex Defender of the Realm |
Sir wait! |
I come only with an urgent message from the king. |
Make that the second lowest. |
So old King Dick finally grew some balls did he? |
Not enough to face me himself of course. |
Some things never change. |
Not Richard... |
Jonathan... |
bugger me. |
So the pubescent Prince is now our King? |
He calls for your urgent return to Thamesis sir. |
To aid him in his noble crusade against patch crime. |
Don't make me laugh. |
The little bastard just needs someone to get him out of trouble. |
You'd better fetch me a drink. |
The King is dead. |
Our source tells us that his teenage son will inherit the throne. |
He assures us there will be no change in direction for the crown. |
What if he's wrong? |
Then our man on the inside can facilitate a change. |
How do we know this man on the inside can be trusted? |
He's a big fan of our... |
unlicensed products. |
I heard a crash. |
Pardon me your highness. |
It would seem I'm more nervous about your coronation than you. |
Do you know the whereabouts of the Ring of Kings? |
Ah of course. |
I was merely keeping it safe until you were feeling better. |
I have grieved enough Malkolm. |
It is time to prepare for my rule. |
And my first order of business is to free my people from patch crime. |
A very noble cause young sir... |
and one in which you are destined to fail. |
BRITOMART PREMIUM BRANDS |
bring power and pleasure to all people. |
CAPABILITY |
MENTAL |
YOUR |
INCREASE |
ABILITY |
PHYSICAL |
ENHANCE |
DREAMS |
YOUR |
FULFIL |
TO |
POTENTIAL |
THE |
DISCOVER |
AND |
BRITOMART CORPORATION. FOR MIND BODY AND SOUL. |
Well what do you think? |
Run it but have the negative campaign ready. |
If the new king is uncooperative |
we may need to adjust our marketing strategy. |
Will Jonathan succeed in his fight against patch crime? What kind of welcome awaits The Lion in Thamesis? To be continued in Episode 5... |
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 2_level0.trackPoint("episode_4_start"); var arrChapter = new Array(3083, 4187, 6162);Frame 4056execs.gotoAndPlay("fadeOut");Frame 7369_level0.trackPoint("episode_4_end"); stop();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 193 MovieClip Frame 1stop();Symbol 193 MovieClip Frame 26gotoAndStop (1);Symbol 194 MovieClip Frame 105bluePulse.play();Symbol 194 MovieClip Frame 112yellowPulse.play();Symbol 194 MovieClip Frame 140pinkPulse.play();Symbol 194 MovieClip Frame 160greenPulse.play();Symbol 194 MovieClip Frame 172gotoAndPlay ("rewindSelecta");Symbol 194 MovieClip Frame 290stop();Symbol 201 MovieClip Frame 26stop();Symbol 265 MovieClip Frame 30stop();Symbol 266 MovieClip Frame 59stop();Symbol 388 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 61 66 77 87 93 95 98 103 105 110 115 117 122 127 138 140 148 153 155 160 162 164 203 205 211 217 223 225 227 230 273 275 280 285 290 295 300 302 310 315 320 371 377 379 381 | |
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 25 | |
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 Font | Used by:23 61 66 77 87 93 95 98 103 105 115 117 138 148 155 162 205 217 280 285 295 300 302 310 320 377 379 383 | |
Symbol 23 Text | Uses:22 | Used by:24 |
Symbol 24 MovieClip | Uses:23 | Used by:Timeline |
Symbol 25 MovieClip | Uses:16 | 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 Bitmap | Used by:38 | |
Symbol 38 Graphic | Uses:37 | Used by:39 |
Symbol 39 MovieClip | Uses:38 | Used by:Timeline |
Symbol 40 Bitmap | Used by:41 | |
Symbol 41 Graphic | Uses:40 | Used by:42 |
Symbol 42 MovieClip | Uses:41 | Used by:Timeline |
Symbol 43 Bitmap | Used by:44 | |
Symbol 44 Graphic | Uses:43 | Used by:45 |
Symbol 45 MovieClip | Uses:44 | Used by:Timeline |
Symbol 46 Bitmap | Used by:47 | |
Symbol 47 Graphic | Uses:46 | Used by:48 |
Symbol 48 MovieClip | Uses:47 | Used by:Timeline |
Symbol 49 Bitmap | Used by:50 | |
Symbol 50 Graphic | Uses:49 | Used by:51 |
Symbol 51 MovieClip | Uses:50 | Used by:Timeline |
Symbol 52 Bitmap | Used by:53 | |
Symbol 53 Graphic | Uses:52 | Used by:54 |
Symbol 54 MovieClip | Uses:53 | Used by:Timeline |
Symbol 55 Bitmap | Used by:56 | |
Symbol 56 Graphic | Uses: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 Text | Uses:9 22 | Used by:62 |
Symbol 62 MovieClip | Uses:61 | Used by:Timeline |
Symbol 63 Bitmap | Used by:64 | |
Symbol 64 Graphic | Uses:63 | Used by:65 |
Symbol 65 MovieClip | Uses:64 | Used by:Timeline |
Symbol 66 Text | Uses:9 22 | Used by:67 |
Symbol 67 MovieClip | Uses:66 | Used by:Timeline |
Symbol 68 Bitmap | Used by:69 | |
Symbol 69 Graphic | Uses:68 | Used by:70 |
Symbol 70 MovieClip | Uses:69 | Used by:Timeline |
Symbol 71 Bitmap | Used by:72 | |
Symbol 72 Graphic | Uses:71 | Used by:73 |
Symbol 73 MovieClip | Uses:72 | Used by:Timeline |
Symbol 74 Bitmap | Used by:75 | |
Symbol 75 Graphic | Uses:74 | Used by:76 |
Symbol 76 MovieClip | Uses:75 | Used by:Timeline |
Symbol 77 Text | Uses:9 22 | Used by:78 |
Symbol 78 MovieClip | Uses:77 | Used by:Timeline |
Symbol 79 Graphic | Used by:80 | |
Symbol 80 MovieClip | Uses:79 | Used by:Timeline |
Symbol 81 Bitmap | Used by:82 | |
Symbol 82 Graphic | Uses:81 | Used by:83 |
Symbol 83 MovieClip | Uses:82 | Used by:Timeline |
Symbol 84 Bitmap | Used by:85 | |
Symbol 85 Graphic | Uses:84 | Used by:86 |
Symbol 86 MovieClip | Uses:85 | Used by:Timeline |
Symbol 87 Text | Uses:9 22 | Used by:88 |
Symbol 88 MovieClip | Uses:87 | Used by:Timeline |
Symbol 89 Bitmap | Used by:90 | |
Symbol 90 Graphic | Uses:89 | Used by:91 |
Symbol 91 MovieClip | Uses:90 | Used by:Timeline |
Symbol 92 Font | Used by:93 110 140 160 211 223 315 381 | |
Symbol 93 Text | Uses:9 92 22 | Used by:94 |
Symbol 94 MovieClip | Uses:93 | Used by:Timeline |
Symbol 95 Text | Uses:9 22 | Used by:96 |
Symbol 96 MovieClip | Uses:95 | Used by:Timeline |
Symbol 97 Graphic | Used by:99 | |
Symbol 98 Text | Uses:22 9 | Used by:99 |
Symbol 99 MovieClip | Uses:97 98 | Used by:Timeline |
Symbol 100 Bitmap | Used by:101 | |
Symbol 101 Graphic | Uses:100 | Used by:102 |
Symbol 102 MovieClip | Uses:101 | Used by:Timeline |
Symbol 103 Text | Uses:22 9 | Used by:104 |
Symbol 104 MovieClip | Uses:103 | Used by:Timeline |
Symbol 105 Text | Uses:9 22 | Used by:106 |
Symbol 106 MovieClip | Uses:105 | Used by:Timeline |
Symbol 107 Bitmap | Used by:108 | |
Symbol 108 Graphic | Uses:107 | Used by:109 |
Symbol 109 MovieClip | Uses:108 | Used by:Timeline |
Symbol 110 Text | Uses:9 92 | 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 Text | Uses:9 22 | Used by:116 |
Symbol 116 MovieClip | Uses:115 | Used by:Timeline |
Symbol 117 Text | Uses:9 22 | Used by:118 |
Symbol 118 MovieClip | Uses:117 | Used by:Timeline |
Symbol 119 Bitmap | Used by:120 | |
Symbol 120 Graphic | Uses:119 | Used by:121 |
Symbol 121 MovieClip | Uses:120 | Used by:Timeline |
Symbol 122 Text | Uses:9 | Used by:123 |
Symbol 123 MovieClip | Uses:122 | Used by:Timeline |
Symbol 124 Bitmap | Used by:125 | |
Symbol 125 Graphic | Uses:124 | Used by:126 |
Symbol 126 MovieClip | Uses:125 | Used by:Timeline |
Symbol 127 Text | Uses:9 | 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 Bitmap | Used by:133 | |
Symbol 133 Graphic | Uses:132 | Used by:134 |
Symbol 134 MovieClip | Uses: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:22 9 | Used by:139 |
Symbol 139 MovieClip | Uses:138 | Used by:Timeline |
Symbol 140 Text | Uses:92 9 | 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 Text | Uses:9 22 | Used by:149 |
Symbol 149 MovieClip | Uses:148 | Used by:Timeline |
Symbol 150 Bitmap | Used by:151 | |
Symbol 151 Graphic | Uses:150 | Used by:152 |
Symbol 152 MovieClip | Uses:151 | Used by:Timeline |
Symbol 153 Text | Uses:9 | Used by:154 |
Symbol 154 MovieClip | Uses:153 | Used by:Timeline |
Symbol 155 Text | Uses:9 22 | Used by:156 |
Symbol 156 MovieClip | Uses:155 | Used by:Timeline |
Symbol 157 Bitmap | Used by:158 | |
Symbol 158 Graphic | Uses:157 | Used by:159 |
Symbol 159 MovieClip | Uses:158 | Used by:Timeline |
Symbol 160 Text | Uses:9 92 | Used by:161 |
Symbol 161 MovieClip | Uses:160 | Used by:Timeline |
Symbol 162 Text | Uses:9 22 | Used by:163 |
Symbol 163 MovieClip | Uses:162 | Used by:Timeline |
Symbol 164 Text | Uses:9 | Used by:165 |
Symbol 165 MovieClip | Uses:164 | Used by:Timeline |
Symbol 166 Bitmap | Used by:167 | |
Symbol 167 Graphic | Uses:166 | Used by:168 |
Symbol 168 MovieClip | Uses:167 | Used by:Timeline |
Symbol 169 Bitmap | Used by:170 | |
Symbol 170 Graphic | Uses:169 | Used by:171 |
Symbol 171 MovieClip | Uses:170 | Used by:Timeline |
Symbol 172 Bitmap | Used by:173 | |
Symbol 173 Graphic | Uses:172 | Used by:174 |
Symbol 174 MovieClip | Uses:173 | Used by:Timeline |
Symbol 175 Bitmap | Used by:176 | |
Symbol 176 Graphic | Uses:175 | Used by:177 |
Symbol 177 MovieClip | Uses:176 | Used by:Timeline |
Symbol 178 Bitmap | Used by:179 | |
Symbol 179 Graphic | Uses:178 | Used by:180 |
Symbol 180 MovieClip | Uses:179 | Used by:194 |
Symbol 181 Bitmap | Used by:182 | |
Symbol 182 Graphic | Uses:181 | Used by:183 |
Symbol 183 MovieClip | Uses:182 | Used by:194 |
Symbol 184 Bitmap | Used by:185 | |
Symbol 185 Graphic | Uses:184 | Used by:186 |
Symbol 186 MovieClip | Uses:185 | Used by:194 |
Symbol 187 Bitmap | Used by:188 | |
Symbol 188 Graphic | Uses:187 | Used by:189 |
Symbol 189 MovieClip | Uses:188 | Used by:194 |
Symbol 190 ShapeTweening | Used by:193 | |
Symbol 191 ShapeTweening | Used by:193 | |
Symbol 192 Graphic | Used by:193 | |
Symbol 193 MovieClip | Uses:190 191 192 | Used by:194 |
Symbol 194 MovieClip | Uses:180 183 186 189 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:202 |
Symbol 198 ShapeTweening | Used by:201 | |
Symbol 199 ShapeTweening | Used by:201 | |
Symbol 200 Graphic | Used by:201 | |
Symbol 201 MovieClip | Uses:198 199 200 | Used by:202 210 216 222 370 376 |
Symbol 202 MovieClip | Uses:197 201 | Used by:Timeline |
Symbol 203 Text | Uses:9 | Used by:204 |
Symbol 204 MovieClip | Uses:203 | Used by:Timeline |
Symbol 205 Text | Uses:9 22 | 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:210 |
Symbol 210 MovieClip | Uses:209 201 | Used by:Timeline |
Symbol 211 Text | Uses:9 92 | 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:216 |
Symbol 216 MovieClip | Uses:215 201 | Used by:Timeline |
Symbol 217 Text | Uses:9 22 | 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:222 |
Symbol 222 MovieClip | Uses:221 201 | Used by:Timeline |
Symbol 223 Text | Uses:9 92 | Used by:224 |
Symbol 224 MovieClip | Uses:223 | Used by:Timeline |
Symbol 225 Text | Uses:9 | Used by:226 |
Symbol 226 MovieClip | Uses:225 | Used by:Timeline |
Symbol 227 Text | Uses:9 | Used by:228 |
Symbol 228 MovieClip | Uses:227 | Used by:Timeline |
Symbol 229 Font | Used by:230 | |
Symbol 230 Text | Uses:229 9 | Used by:231 |
Symbol 231 MovieClip | Uses:230 | Used by:Timeline |
Symbol 232 Bitmap | Used by:233 | |
Symbol 233 Graphic | Uses:232 | Used by:234 |
Symbol 234 MovieClip | Uses:233 | Used by:Timeline |
Symbol 235 Bitmap | Used by:236 | |
Symbol 236 Graphic | Uses:235 | Used by:237 |
Symbol 237 MovieClip | Uses:236 | Used by:Timeline |
Symbol 238 Bitmap | Used by:239 | |
Symbol 239 Graphic | Uses:238 | Used by:240 |
Symbol 240 MovieClip | Uses:239 | Used by:Timeline |
Symbol 241 Bitmap | Used by:242 | |
Symbol 242 Graphic | Uses:241 | Used by:243 |
Symbol 243 MovieClip | Uses:242 | Used by:Timeline |
Symbol 244 Bitmap | Used by:245 | |
Symbol 245 Graphic | Uses:244 | 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 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 Bitmap | Used by:257 | |
Symbol 257 Graphic | Uses:256 | Used by:258 |
Symbol 258 MovieClip | Uses:257 | Used by:Timeline |
Symbol 259 Bitmap | Used by:260 | |
Symbol 260 Graphic | Uses:259 | Used by:266 |
Symbol 261 Graphic | Used by:262 | |
Symbol 262 MovieClip | Uses:261 | Used by:265 |
Symbol 263 Graphic | Used by:264 | |
Symbol 264 MovieClip | Uses:263 | Used by:265 |
Symbol 265 MovieClip | Uses:262 264 | Used by:266 |
Symbol 266 MovieClip | Uses:260 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 Text | Uses:9 | Used by:274 |
Symbol 274 MovieClip | Uses:273 | Used by:Timeline |
Symbol 275 Text | Uses:9 | 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 Text | Uses:9 22 | Used by:281 |
Symbol 281 MovieClip | Uses:280 | Used by:Timeline |
Symbol 282 Bitmap | Used by:283 | |
Symbol 283 Graphic | Uses:282 | Used by:284 |
Symbol 284 MovieClip | Uses:283 | Used by:Timeline |
Symbol 285 Text | Uses:9 22 | Used by:286 |
Symbol 286 MovieClip | Uses:285 | Used by:Timeline |
Symbol 287 Bitmap | Used by:288 | |
Symbol 288 Graphic | Uses:287 | Used by:289 |
Symbol 289 MovieClip | Uses:288 | Used by:Timeline |
Symbol 290 Text | Uses:9 | Used by:291 |
Symbol 291 MovieClip | Uses:290 | Used by:Timeline |
Symbol 292 Bitmap | Used by:293 | |
Symbol 293 Graphic | Uses:292 | Used by:294 |
Symbol 294 MovieClip | Uses:293 | Used by:Timeline |
Symbol 295 Text | Uses:9 22 | Used by:296 |
Symbol 296 MovieClip | Uses:295 | Used by:Timeline |
Symbol 297 Bitmap | Used by:298 | |
Symbol 298 Graphic | Uses:297 | Used by:299 |
Symbol 299 MovieClip | Uses:298 | Used by:Timeline |
Symbol 300 Text | Uses:9 22 | Used by:301 |
Symbol 301 MovieClip | Uses:300 | Used by:Timeline |
Symbol 302 Text | Uses:9 22 | 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 Text | Uses:9 22 | Used by:311 |
Symbol 311 MovieClip | Uses:310 | Used by:Timeline |
Symbol 312 Bitmap | Used by:313 | |
Symbol 313 Graphic | Uses:312 | Used by:314 |
Symbol 314 MovieClip | Uses:313 | Used by:Timeline |
Symbol 315 Text | Uses:9 92 | Used by:316 |
Symbol 316 MovieClip | Uses:315 | Used by:Timeline |
Symbol 317 Bitmap | Used by:318 | |
Symbol 318 Graphic | Uses:317 | Used by:319 |
Symbol 319 MovieClip | Uses:318 | Used by:Timeline |
Symbol 320 Text | Uses:9 22 | Used by:321 |
Symbol 321 MovieClip | Uses:320 | Used by:Timeline |
Symbol 322 Graphic | Used by:323 | |
Symbol 323 MovieClip | Uses:322 | Used by:Timeline |
Symbol 324 Bitmap | Used by:325 | |
Symbol 325 Graphic | Uses:324 | Used by:326 |
Symbol 326 MovieClip | Uses:325 | Used by:337 341 Timeline |
Symbol 327 Bitmap | Used by:328 | |
Symbol 328 Graphic | Uses:327 | Used by:329 |
Symbol 329 MovieClip | Uses:328 | Used by:Timeline |
Symbol 330 Bitmap | Used by:331 | |
Symbol 331 Graphic | Uses:330 | Used by:332 |
Symbol 332 MovieClip | Uses:331 | Used by:337 Timeline |
Symbol 333 Bitmap | Used by:334 | |
Symbol 334 Graphic | Uses:333 | Used by:335 |
Symbol 335 MovieClip | Uses:334 | Used by:336 |
Symbol 336 MovieClip | Uses:335 | Used by:Timeline |
Symbol 337 MovieClip | Uses:326 332 | Used by:338 |
Symbol 338 MovieClip | Uses:337 | Used by:342 |
Symbol 339 Graphic | Used by:340 | |
Symbol 340 MovieClip | Uses:339 | Used by:342 |
Symbol 341 MovieClip | Uses:326 | Used by:342 |
Symbol 342 MovieClip | Uses:338 340 341 | Used by:Timeline |
Symbol 343 Font | Used by:344 345 347 348 349 350 351 352 353 355 356 357 358 359 360 361 362 | |
Symbol 344 Text | Uses:343 | Used by:346 |
Symbol 345 Text | Uses:343 | Used by:346 |
Symbol 346 MovieClip | Uses:344 345 | Used by:Timeline |
Symbol 347 Text | Uses:343 | Used by:354 |
Symbol 348 Text | Uses:343 | Used by:354 |
Symbol 349 Text | Uses:343 | Used by:354 |
Symbol 350 Text | Uses:343 | Used by:354 |
Symbol 351 Text | Uses:343 | Used by:354 |
Symbol 352 Text | Uses:343 | Used by:354 |
Symbol 353 Text | Uses:343 | Used by:354 |
Symbol 354 MovieClip | Uses:347 348 349 350 351 352 353 | Used by:Timeline |
Symbol 355 Text | Uses:343 | Used by:363 |
Symbol 356 Text | Uses:343 | Used by:363 |
Symbol 357 Text | Uses:343 | Used by:363 |
Symbol 358 Text | Uses:343 | Used by:363 |
Symbol 359 Text | Uses:343 | Used by:363 |
Symbol 360 Text | Uses:343 | Used by:363 |
Symbol 361 Text | Uses:343 | Used by:363 |
Symbol 362 Text | Uses:343 | Used by:363 |
Symbol 363 MovieClip | Uses:355 356 357 358 359 360 361 362 | Used by:Timeline |
Symbol 364 Font | Used by:365 | |
Symbol 365 Text | Uses:364 | Used by:366 |
Symbol 366 MovieClip | Uses:365 | Used by:Timeline |
Symbol 367 Bitmap | Used by:368 | |
Symbol 368 Graphic | Uses:367 | Used by:369 |
Symbol 369 MovieClip | Uses:368 | Used by:370 |
Symbol 370 MovieClip | Uses:369 201 | Used by:Timeline |
Symbol 371 Text | Uses:9 | Used by:372 |
Symbol 372 MovieClip | Uses:371 | Used by:Timeline |
Symbol 373 Bitmap | Used by:374 | |
Symbol 374 Graphic | Uses:373 | Used by:375 |
Symbol 375 MovieClip | Uses:374 | Used by:376 |
Symbol 376 MovieClip | Uses:375 201 | Used by:Timeline |
Symbol 377 Text | Uses:9 22 | Used by:378 |
Symbol 378 MovieClip | Uses:377 | Used by:Timeline |
Symbol 379 Text | Uses:9 22 | Used by:380 |
Symbol 380 MovieClip | Uses:379 | Used by:Timeline |
Symbol 381 Text | Uses:9 92 | Used by:382 |
Symbol 382 MovieClip | Uses:381 | Used by:Timeline |
Symbol 383 Text | Uses:22 | Used by:384 |
Symbol 384 MovieClip | Uses:383 | Used by:Timeline |
Symbol 385 Graphic | Used by:Timeline | |
Symbol 386 Graphic | Used by:388 | |
Symbol 387 Graphic | Used by:388 | |
Symbol 388 Button | Uses:386 387 | Used by:389 |
Symbol 389 MovieClip | Uses:388 | Used by:Timeline |
Symbol 390 Graphic | Used by:Timeline | |
Streaming Sound 1 | Used by:Timeline |
Instance Names
"loaderAnim" | Frame 1 | Symbol 21 MovieClip |
"execs" | Frame 3325 | Symbol 194 MovieClip |
"bar" | Symbol 21 MovieClip Frame 1 | Symbol 14 MovieClip |
"effectsClip" | Symbol 21 MovieClip Frame 1 | Symbol 18 MovieClip |
"greenPulse" | Symbol 194 MovieClip Frame 95 | Symbol 193 MovieClip |
"yellowPulse" | Symbol 194 MovieClip Frame 95 | Symbol 193 MovieClip |
"bluePulse" | Symbol 194 MovieClip Frame 95 | Symbol 193 MovieClip |
"pinkPulse" | Symbol 194 MovieClip Frame 95 | Symbol 193 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 |
"rewindSelecta" | Symbol 194 MovieClip Frame 95 |
"fadeOut" | Symbol 194 MovieClip Frame 173 |
|