STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228128
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/14723182?noj=FRM14723182-14DC" width="1" height="1"></div>

Thamesis - Episode 2.swf

This is the info page for
Flash #54128

(Click the ID number above for more basic data on this flash file.)


Text
Episode Loading

Episode 2
As prince Jonathan speeds back to the Royal Palace,
something's afoot in the Dirty City...

This is bad for business.

I tell you what else is bad for business.

We're runnning low on supplies.

Where's the Kid?

He should have fixed that.

Right behind...

...he was right there a minute ago.

THE K.I.D.
Patch Runner

Time off for good behaviour I reckon

so let's blaze this up.

KENDRICK GARVEY
Patch Dealer

So predictable.

I want him alive!

Feel free to have some fun but I want him to remain...

usable.

You sent for me father.

Despite you being the son of a king

I fear that the greatest portion of your inheritance will be your responsibility.

I'm not going to do it.

I won't do it your way.

So defiant. You remind me of your mother.

Which is why I give you this burden without restriction.

The fate of Albion is now yours alone to decide.

I won't be alone father

As we speak the Postmaster prepares to carry

a letter under the Royal Seal

to Lord Lion.

It's ironic that the man you once banished

will now return to stand by my side.

I wonder...do you object?

Your reign will be your own.

Now leave a tired old man to rest.

My Lady, we have a problem.

Your grandson has sent for the Exile.

Then you must get the Ring.

Use it to order the guards to retrieve that letter...

by whatever means necessary.

as you wish.

And assign my grandson a security detail.

Make sure you choose the girl, as we discussed.

You are wise my Lady.

Malkolm I know this is not as you expected,

but his mistakes must be his own.

Give my son a chance.

The Lion is a psycho. A washed up old soak.

Our friends will not be pleased.

Our friends?

Bring your old friend a drink.

Allow me to relieve your suffering...

your highness.

Know this. You are weak in death as you've been in life.

Thamesis will continue to fall into the hands of the Britomart.

Lion shall never return from exile

and I will serve your son exactly as I have served you.

Will Malkolm stop the Postmaster reaching the Lion in time?
What does Kendrick want with the K.I.D?
Find out in Episode 3...

ActionScript [AS1/AS2]

Frame 1
function 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 2
var arrChapters = new Array(2087, 4437);
Frame 6535
stop();
Symbol 7 Button
on (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 2
gotoAndPlay (1);
Symbol 8 MovieClip Frame 15
stop();
Symbol 21 MovieClip Frame 1
_root.loaderAnimComplete = false;
Symbol 21 MovieClip Frame 156
stop(); _root.loaderAnimComplete = true;
Symbol 21 MovieClip Frame 207
_root.objMist = undefined; _root.objPE = undefined; _root.gotoAndPlay(2);
Symbol 296 Button
on (release) { getURL ("http://www.cityofthamesis.com", "_blank"); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip [particleSmokeTail]Uses:1
Symbol 3 GraphicUsed by:6 7
Symbol 4 GraphicUsed by:6 7
Symbol 5 GraphicUsed by:6 7
Symbol 6 MovieClipUses:3 4 5Used by:7
Symbol 7 ButtonUses:6 3 4 5Used by:8
Symbol 8 MovieClipUses:7Used by:Timeline
Symbol 9 FontUsed by:10 45 53 55 57 59 64 66 78 83 88 103 105 107 119 126 131 133 138 140 145 147 149 157 162 164 166 171 173 178 180 182 190 192 197 199 206 211 213 218 232 234 239 241 243 248 253 261 271 276 281 286
Symbol 10 TextUses:9Used by:11
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:11Used by:21
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:21
Symbol 15 GraphicUsed by:21
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:16Used by:21  Timeline
Symbol 18 MovieClipUsed by:21
Symbol 19 GraphicUsed by:20 35
Symbol 20 MovieClipUses:19Used by:21
Symbol 21 MovieClipUses:12 14 15 17 18 20Used by:Timeline
Symbol 22 FontUsed by:23 45 55 57 59 66 78 88 103 105 121 126 133 138 140 145 147 149 162 166 171 190 192 197 201 211 213 234 241 243 266 271 276 286 291
Symbol 23 TextUses:22Used by:24
Symbol 24 MovieClipUses:23Used by:Timeline
Symbol 25 GraphicUsed by:Timeline
Symbol 26 BitmapUsed by:27
Symbol 27 GraphicUses:26Used by:28
Symbol 28 MovieClipUses:27Used by:Timeline
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:31
Symbol 31 MovieClipUses:30Used by:Timeline
Symbol 32 BitmapUsed by:33
Symbol 33 GraphicUses:32Used by:34
Symbol 34 MovieClipUses:33Used by:Timeline
Symbol 35 MovieClipUses:19Used by:Timeline
Symbol 36 BitmapUsed by:37
Symbol 37 GraphicUses:36Used by:38
Symbol 38 MovieClipUses:37Used by:Timeline
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:41
Symbol 41 MovieClipUses:40Used by:Timeline
Symbol 42 BitmapUsed by:43
Symbol 43 GraphicUses:42Used by:44
Symbol 44 MovieClipUses:43Used by:Timeline
Symbol 45 TextUses:9 22Used by:46
Symbol 46 MovieClipUses:45Used by:Timeline
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:49
Symbol 49 MovieClipUses:48Used by:Timeline
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:52
Symbol 52 MovieClipUses:51Used by:Timeline
Symbol 53 TextUses:9Used by:54
Symbol 54 MovieClipUses:53Used by:Timeline
Symbol 55 TextUses:9 22Used by:56
Symbol 56 MovieClipUses:55Used by:Timeline
Symbol 57 TextUses:9 22Used by:58
Symbol 58 MovieClipUses:57Used by:Timeline
Symbol 59 TextUses:9 22Used by:60
Symbol 60 MovieClipUses:59Used by:Timeline
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:63
Symbol 63 MovieClipUses:62Used by:Timeline
Symbol 64 TextUses:9Used by:65
Symbol 65 MovieClipUses:64Used by:Timeline
Symbol 66 TextUses:9 22Used by:67
Symbol 67 MovieClipUses:66Used by:Timeline
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:70
Symbol 70 MovieClipUses:69Used by:Timeline
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:73
Symbol 73 MovieClipUses:72Used by:Timeline
Symbol 74 BitmapUsed by:75
Symbol 75 GraphicUses:74Used by:76
Symbol 76 MovieClipUses:75Used by:Timeline
Symbol 77 GraphicUsed by:79
Symbol 78 TextUses:22 9Used by:79
Symbol 79 MovieClipUses:77 78Used by:Timeline
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:82
Symbol 82 MovieClipUses:81Used by:Timeline
Symbol 83 TextUses:9Used by:84
Symbol 84 MovieClipUses:83Used by:Timeline
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:87
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 TextUses:9 22Used by:89
Symbol 89 MovieClipUses:88Used by:Timeline
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:92
Symbol 92 MovieClipUses:91Used by:Timeline
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:95
Symbol 95 MovieClipUses:94Used by:Timeline
Symbol 96 BitmapUsed by:97
Symbol 97 GraphicUses:96Used by:98
Symbol 98 MovieClipUses:97Used by:Timeline
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:101
Symbol 101 MovieClipUses:100Used by:Timeline
Symbol 102 GraphicUsed by:104
Symbol 103 TextUses:22 9Used by:104
Symbol 104 MovieClipUses:102 103Used by:Timeline
Symbol 105 TextUses:9 22Used by:106
Symbol 106 MovieClipUses:105Used by:Timeline
Symbol 107 TextUses:9Used by:108
Symbol 108 MovieClipUses:107Used by:Timeline
Symbol 109 BitmapUsed by:110
Symbol 110 GraphicUses:109Used by:111
Symbol 111 MovieClipUses:110Used by:Timeline
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:114
Symbol 114 MovieClipUses:113Used by:Timeline
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:117
Symbol 117 MovieClipUses:116Used by:Timeline
Symbol 118 FontUsed by:119
Symbol 119 TextUses:9 118Used by:120
Symbol 120 MovieClipUses:119Used by:Timeline
Symbol 121 TextUses:22Used by:122
Symbol 122 MovieClipUses:121Used by:Timeline
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:125
Symbol 125 MovieClipUses:124Used by:Timeline
Symbol 126 TextUses:9 22Used by:127
Symbol 127 MovieClipUses:126Used by:Timeline
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:130
Symbol 130 MovieClipUses:129Used by:Timeline
Symbol 131 TextUses:9Used by:132
Symbol 132 MovieClipUses:131Used by:Timeline
Symbol 133 TextUses:9 22Used by:134
Symbol 134 MovieClipUses:133Used by:Timeline
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:137
Symbol 137 MovieClipUses:136Used by:Timeline
Symbol 138 TextUses:9 22Used by:139
Symbol 139 MovieClipUses:138Used by:Timeline
Symbol 140 TextUses:9 22Used by:141
Symbol 141 MovieClipUses:140Used by:Timeline
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:144
Symbol 144 MovieClipUses:143Used by:Timeline
Symbol 145 TextUses:9 22Used by:146
Symbol 146 MovieClipUses:145Used by:Timeline
Symbol 147 TextUses:9 22Used by:148
Symbol 148 MovieClipUses:147Used by:Timeline
Symbol 149 TextUses:9 22Used by:150
Symbol 150 MovieClipUses:149Used by:Timeline
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:153
Symbol 153 MovieClipUses:152Used by:Timeline
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:156
Symbol 156 MovieClipUses:155Used by:Timeline
Symbol 157 TextUses:9Used by:158
Symbol 158 MovieClipUses:157Used by:Timeline
Symbol 159 BitmapUsed by:160
Symbol 160 GraphicUses:159Used by:161
Symbol 161 MovieClipUses:160Used by:Timeline
Symbol 162 TextUses:9 22Used by:163
Symbol 163 MovieClipUses:162Used by:Timeline
Symbol 164 TextUses:9Used by:165
Symbol 165 MovieClipUses:164Used by:Timeline
Symbol 166 TextUses:9 22Used by:167
Symbol 167 MovieClipUses:166Used by:Timeline
Symbol 168 BitmapUsed by:169
Symbol 169 GraphicUses:168Used by:170
Symbol 170 MovieClipUses:169Used by:Timeline
Symbol 171 TextUses:9 22Used by:172
Symbol 172 MovieClipUses:171Used by:Timeline
Symbol 173 TextUses:9Used by:174
Symbol 174 MovieClipUses:173Used by:Timeline
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:177
Symbol 177 MovieClipUses:176Used by:Timeline
Symbol 178 TextUses:9Used by:179
Symbol 179 MovieClipUses:178Used by:Timeline
Symbol 180 TextUses:9Used by:181
Symbol 181 MovieClipUses:180Used by:Timeline
Symbol 182 TextUses:9Used by:183
Symbol 183 MovieClipUses:182Used by:Timeline
Symbol 184 BitmapUsed by:185
Symbol 185 GraphicUses:184Used by:186
Symbol 186 MovieClipUses:185Used by:Timeline
Symbol 187 BitmapUsed by:188
Symbol 188 GraphicUses:187Used by:189
Symbol 189 MovieClipUses:188Used by:Timeline
Symbol 190 TextUses:9 22Used by:191
Symbol 191 MovieClipUses:190Used by:Timeline
Symbol 192 TextUses:9 22Used by:193
Symbol 193 MovieClipUses:192Used by:Timeline
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:196
Symbol 196 MovieClipUses:195Used by:Timeline
Symbol 197 TextUses:9 22Used by:198
Symbol 198 MovieClipUses:197Used by:Timeline
Symbol 199 TextUses:9Used by:200
Symbol 200 MovieClipUses:199Used by:Timeline
Symbol 201 TextUses:22Used by:202
Symbol 202 MovieClipUses:201Used by:Timeline
Symbol 203 BitmapUsed by:204
Symbol 204 GraphicUses:203Used by:205
Symbol 205 MovieClipUses:204Used by:Timeline
Symbol 206 TextUses:9Used by:207
Symbol 207 MovieClipUses:206Used by:Timeline
Symbol 208 BitmapUsed by:209
Symbol 209 GraphicUses:208Used by:210
Symbol 210 MovieClipUses:209Used by:Timeline
Symbol 211 TextUses:9 22Used by:212
Symbol 212 MovieClipUses:211Used by:Timeline
Symbol 213 TextUses:9 22Used by:214
Symbol 214 MovieClipUses:213Used by:Timeline
Symbol 215 BitmapUsed by:216
Symbol 216 GraphicUses:215Used by:217
Symbol 217 MovieClipUses:216Used by:Timeline
Symbol 218 TextUses:9Used by:219
Symbol 219 MovieClipUses:218Used by:Timeline
Symbol 220 BitmapUsed by:221
Symbol 221 GraphicUses:220Used by:222
Symbol 222 MovieClipUses:221Used by:Timeline
Symbol 223 BitmapUsed by:224
Symbol 224 GraphicUses:223Used by:225
Symbol 225 MovieClipUses:224Used by:Timeline
Symbol 226 BitmapUsed by:227
Symbol 227 GraphicUses:226Used by:228
Symbol 228 MovieClipUses:227Used by:Timeline
Symbol 229 BitmapUsed by:230
Symbol 230 GraphicUses:229Used by:231
Symbol 231 MovieClipUses:230Used by:Timeline
Symbol 232 TextUses:9Used by:233
Symbol 233 MovieClipUses:232Used by:Timeline
Symbol 234 TextUses:9 22Used by:235
Symbol 235 MovieClipUses:234Used by:Timeline
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:238
Symbol 238 MovieClipUses:237Used by:Timeline
Symbol 239 TextUses:9Used by:240
Symbol 240 MovieClipUses:239Used by:Timeline
Symbol 241 TextUses:9 22Used by:242
Symbol 242 MovieClipUses:241Used by:Timeline
Symbol 243 TextUses:22 9Used by:244
Symbol 244 MovieClipUses:243Used by:Timeline
Symbol 245 BitmapUsed by:246
Symbol 246 GraphicUses:245Used by:247
Symbol 247 MovieClipUses:246Used by:Timeline
Symbol 248 TextUses:9Used by:249
Symbol 249 MovieClipUses:248Used by:Timeline
Symbol 250 BitmapUsed by:251
Symbol 251 GraphicUses:250Used by:252
Symbol 252 MovieClipUses:251Used by:Timeline
Symbol 253 TextUses:9Used by:254
Symbol 254 MovieClipUses:253Used by:Timeline
Symbol 255 BitmapUsed by:256
Symbol 256 GraphicUses:255Used by:257
Symbol 257 MovieClipUses:256Used by:Timeline
Symbol 258 BitmapUsed by:259
Symbol 259 GraphicUses:258Used by:260
Symbol 260 MovieClipUses:259Used by:Timeline
Symbol 261 TextUses:9Used by:262
Symbol 262 MovieClipUses:261Used by:Timeline
Symbol 263 BitmapUsed by:264
Symbol 264 GraphicUses:263Used by:265
Symbol 265 MovieClipUses:264Used by:Timeline
Symbol 266 TextUses:22Used by:267
Symbol 267 MovieClipUses:266Used by:Timeline
Symbol 268 BitmapUsed by:269
Symbol 269 GraphicUses:268Used by:270
Symbol 270 MovieClipUses:269Used by:Timeline
Symbol 271 TextUses:9 22Used by:272
Symbol 272 MovieClipUses:271Used by:Timeline
Symbol 273 BitmapUsed by:274
Symbol 274 GraphicUses:273Used by:275
Symbol 275 MovieClipUses:274Used by:Timeline
Symbol 276 TextUses:22 9Used by:277
Symbol 277 MovieClipUses:276Used by:Timeline
Symbol 278 BitmapUsed by:279
Symbol 279 GraphicUses:278Used by:280
Symbol 280 MovieClipUses:279Used by:Timeline
Symbol 281 TextUses:9Used by:282
Symbol 282 MovieClipUses:281Used by:Timeline
Symbol 283 BitmapUsed by:284
Symbol 284 GraphicUses:283Used by:285
Symbol 285 MovieClipUses:284Used by:Timeline
Symbol 286 TextUses:9 22Used by:287
Symbol 287 MovieClipUses:286Used by:Timeline
Symbol 288 BitmapUsed by:289
Symbol 289 GraphicUses:288Used by:290
Symbol 290 MovieClipUses:289Used by:Timeline
Symbol 291 TextUses:22Used by:292
Symbol 292 MovieClipUses:291Used by:Timeline
Symbol 293 GraphicUsed by:Timeline
Symbol 294 GraphicUsed by:296
Symbol 295 GraphicUsed by:296
Symbol 296 ButtonUses:294 295Used by:297
Symbol 297 MovieClipUses:296Used by:Timeline
Symbol 298 GraphicUsed by:Timeline
Symbol 299 GraphicUsed by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"loaderAnim"Frame 1Symbol 21 MovieClip
"bar"Symbol 21 MovieClip Frame 1Symbol 14 MovieClip
"effectsClip"Symbol 21 MovieClip Frame 1Symbol 18 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 2 as "particleSmokeTail"

Labels

"loaded"Symbol 8 MovieClip Frame 3
"out"Symbol 21 MovieClip Frame 157




http://swfchan.com/11/54128/info.shtml
Created: 21/4 -2019 23:12:24 Last modified: 21/4 -2019 23:12:24 Server time: 14/05 -2024 14:30:17