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

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

SMB - Prelude to Terror 2.swf

This is the info page for
Flash #75000

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


Text
Play

Scenes

Credits

Uh... Bros. Items?

Menu

Mario's Demise?

Kidnapping

Arrival

A Visit to
Hyrule

That Fireball attack of yours could
really do some damage if a capable

fighter like me decided to use it.  I
think I'll try it out.

Why… are you… doing
this…?

I am to destroy everyone in this
entire kingdom.

Why this kingdom?  There are
plenty of other kingdoms

nearby.

That's enough questions for now.
Now you die.

It looks like I overdid it a bit.  Still,
I find it interesting to know there

are other kingdoms besides this one.
I'd better leave quickly.

There will likely be guards arriving in
a few minutes.

What the-

Perfect.  All I have to do is steal their leader,
and their kingdom will fall apart.

Then I will pay a visit to those 'other
kingdoms'.

What was that?

Who's there?

Mario!  Is that you?!

Of course it's me.

Okay, so I got the Master Sword from the
Temple of Time and saved the six sages.

I guess it's time to take on Ganondorf.

What was that?

Who are you?

I'm Metal Mario.  Is this Hyrule?

Yes, and it's going through tough times right
now.  I have to be on my way now.

Interesting.  My teleportation device allows me
to reach any kingdom on this planet.

My creator will be pleased.  I will conquer this
medieval kingdom and bring it into the future!

Are you in league with Ganon?!

"Ganon" does not register in my memory
banks.

If you're planning to conquer this kingdom, it's
my duty to stop you!

If you plan to stand in my way, it's MY duty
to kill you.

Sword Durability: High

Speed: Adept

Overall: Skilled Swordsmen

It seems you're not all talk after all.  But
you're still no match for me.

I'll show you!

You've already wasted enough of my time.
I'm going to end this.

I didn't even lay a finger on him...  He's too
strong...

To be continued...

Credits:

Credits:

press space to continue

ROGULTGOT

Mario-Galaxy

A.J. Nitro

Semi-Juggalo

(Press Space to reload movie)

AND YOU!!!

ActionScript [AS3]

Section 1
//camera_27 (_fla.camera_27) package _fla { import flash.events.*; import flash.display.*; import flash.geom.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.media.*; import flash.printing.*; import flash.text.*; import flash.ui.*; import flash.utils.*; import flash.xml.*; public dynamic class camera_27 extends MovieClip { public var sH:Number; public var rp:Point; public var sW:Number; public var myBitmapData:BitmapData; public var bounds_obj:Object; public var camH:Number; public var camW:Number; public var bmp:Bitmap; public var oldScaleMode:String; public function camera_27(){ addFrameScript(0, frame1); } public function set scaleX2(_arg1:Number):void{ setProperty2("scaleX", _arg1); } function frame1(){ visible = false; oldScaleMode = stage.scaleMode; stage.scaleMode = "exactFit"; sW = stage.stageWidth; sH = stage.stageHeight; stage.scaleMode = oldScaleMode; bounds_obj = this.getBounds(this); camH = bounds_obj.height; camW = bounds_obj.width; rp = new Point(x, y); addEventListener(Event.ENTER_FRAME, camControl); addEventListener(Event.REMOVED_FROM_STAGE, reset); myBitmapData = new BitmapData(sW, sH, true, 0); bmp = new Bitmap(myBitmapData); camControl(); stage.addChild(bmp); } public function set x2(_arg1:Number):void{ var _local2:Point; _local2 = parent.parent.globalToLocal(parent.localToGlobal(rp)); parent.x = (parent.x + (_arg1 - _local2.x)); } public function get rotation2():Number{ return (parent.rotation); } public function camControl(... _args):void{ var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; parent.visible = true; rp.x = x; rp.y = y; _local2 = (camH * scaleY); _local3 = (camW * scaleX); _local4 = (sH / _local2); _local5 = (sW / _local3); x2 = ((_local3 / 2) * _local5); y2 = ((_local2 / 2) * _local4); scaleX2 = _local5; scaleY2 = _local4; rotation2 = -(rotation); myBitmapData.lock(); myBitmapData.fillRect(myBitmapData.rect, 0); myBitmapData.unlock(); myBitmapData.draw(stage); bmp.filters = this.filters; bmp.transform.colorTransform = this.transform.colorTransform; parent.visible = false; } public function set scaleY2(_arg1:Number):void{ setProperty2("scaleY", _arg1); } public function get scaleX2():Number{ return (parent.scaleX); } public function get x2():Number{ var _local1:Point; _local1 = parent.parent.globalToLocal(parent.localToGlobal(rp)); return (_local1.x); } public function setProperty2(_arg1:String, _arg2:Number):void{ var _local3:Point; var _local4:Point; _local3 = parent.parent.globalToLocal(parent.localToGlobal(rp)); parent[_arg1] = _arg2; _local4 = parent.parent.globalToLocal(parent.localToGlobal(rp)); parent.x = (parent.x - (_local4.x - _local3.x)); parent.y = (parent.y - (_local4.y - _local3.y)); } public function set y2(_arg1:Number):void{ var _local2:Point; _local2 = parent.parent.globalToLocal(parent.localToGlobal(rp)); parent.y = (parent.y + (_arg1 - _local2.y)); } public function reset(_arg1:Event):void{ removeEventListener(Event.ENTER_FRAME, camControl); removeEventListener(Event.REMOVED_FROM_STAGE, reset); stage.removeChild(bmp); myBitmapData.dispose(); bmp = null; parent.scaleX = 1; parent.scaleY = 1; parent.x = 0; parent.y = 0; parent.rotation = 0; parent.visible = true; } public function get scaleY2():Number{ return (parent.scaleY); } public function get y2():Number{ var _local1:Point; _local1 = parent.parent.globalToLocal(parent.localToGlobal(rp)); return (_local1.y); } public function set rotation2(_arg1:Number):void{ setProperty2("rotation", _arg1); } } }//package _fla
Section 2
//Explosion3_45 (_fla.Explosion3_45) package _fla { import flash.display.*; public dynamic class Explosion3_45 extends MovieClip { public function Explosion3_45(){ addFrameScript(11, frame12); } function frame12(){ stop(); } } }//package _fla
Section 3
//Explosioncopy_58 (_fla.Explosioncopy_58) package _fla { import flash.display.*; public dynamic class Explosioncopy_58 extends MovieClip { public function Explosioncopy_58(){ addFrameScript(22, frame23); } function frame23(){ stop(); } } }//package _fla
Section 4
//Explosioncopy2_59 (_fla.Explosioncopy2_59) package _fla { import flash.display.*; public dynamic class Explosioncopy2_59 extends MovieClip { public function Explosioncopy2_59(){ addFrameScript(22, frame23); } function frame23(){ stop(); } } }//package _fla
Section 5
//Explosioncopy3_60 (_fla.Explosioncopy3_60) package _fla { import flash.display.*; public dynamic class Explosioncopy3_60 extends MovieClip { public function Explosioncopy3_60(){ addFrameScript(22, frame23); } function frame23(){ stop(); } } }//package _fla
Section 6
//HitEffect1_33 (_fla.HitEffect1_33) package _fla { import flash.display.*; public dynamic class HitEffect1_33 extends MovieClip { public function HitEffect1_33(){ addFrameScript(6, frame7); } function frame7(){ stop(); } } }//package _fla
Section 7
//MainTimeline (_fla.MainTimeline) package _fla { import flash.events.*; import flash.display.*; public dynamic class MainTimeline extends MovieClip { public var intro_btn:SimpleButton; public var castlebutton:SimpleButton; public var ib3:SimpleButton; public var button11:SimpleButton; public var spooky:SimpleButton; public var intro_btn2:SimpleButton; public var mmenu:SimpleButton; public var scene1b:SimpleButton; public function MainTimeline(){ addFrameScript(2, frame3, 3, frame4, 734, frame735, 735, frame736, 737, frame738, 738, frame739, 739, frame740, 740, frame741, 741, frame742, 1125, frame1126, 1126, frame1127, 1127, frame1128, 1581, frame1582, 1658, frame1659, 1659, frame1660, 1698, frame1699, 1699, frame1700, 1700, frame1701, 1701, frame1702, 1999, frame2000, 2000, frame2001, 2055, frame2056, 2265, frame2266, 2266, frame2267, 2267, frame2268, 2268, frame2269, 2269, frame2270, 2270, frame2271, 2271, frame2272, 2272, frame2273, 2273, frame2274, 2378, frame2379, 2379, frame2380, 3180, frame3181, 3181, frame3182, 3468, frame3469, 3479, frame3480, 3490, frame3491, 3500, frame3501); } function frame2270(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey32); } function frame2271(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey33); } function frame2272(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey35); } function frame2274(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey38); } function frame3480(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, yrrwye); } function frame2273(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey37); } function frame3491(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, yrrwyefw); } public function ettjrdfhr(_arg1:MouseEvent):void{ gotoAndPlay(1, "Scene1"); } function frame735(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey); } function frame736(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey2); stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey3); } function frame739(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey7); stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey6); } public function sbyresaybse(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame738(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey4); stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey5); } function frame742(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey13); stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey14); } public function yrrwyefwdfdgd(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame3(){ stop(); intro_btn.addEventListener(MouseEvent.CLICK, bnjkjklio); stop(); intro_btn2.addEventListener(MouseEvent.CLICK, oic2); stop(); ib3.addEventListener(MouseEvent.CLICK, oic3); } function frame4(){ stop(); scene1b.addEventListener(MouseEvent.CLICK, gjhgjkhkl); stop(); castlebutton.addEventListener(MouseEvent.CLICK, shsed); stop(); spooky.addEventListener(MouseEvent.CLICK, ettjrdfhr); stop(); mmenu.addEventListener(MouseEvent.CLICK, dhsha); } function frame740(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey10); stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey9); } function frame741(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey12); stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey11); } public function yykbnu(_arg1:MouseEvent):void{ gotoAndStop(2, "Menu"); } function frame1660(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey21); } function frame1659(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, sbyresaybse); } function frame2056(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey40); } public function yrrwye(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function yrrwyefwdf(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey2(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey3(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey4(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey5(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey6(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey7(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame3181(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, tfhdfhhfd); } function frame3182(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, xfhhx); } public function hearKey9(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame3501(){ stop(); button11.addEventListener(MouseEvent.CLICK, yykbnu); } public function tfhdfhhfd(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame1699(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, yrrwyefwdf); } public function yrrwyefw(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function gjhgjkhkl(_arg1:MouseEvent):void{ gotoAndPlay(1, "Scene 4"); } function frame1582(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey26); } public function yrrwy(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function bnjkjklio(_arg1:MouseEvent):void{ gotoAndPlay(1, "Scene1"); } function frame1127(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey17); } function frame1128(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey18); stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey19); } function frame1126(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey16); } public function hearKey10(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey11(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey12(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey13(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey16(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey17(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey18(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey19(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey14(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function oic2(_arg1:MouseEvent):void{ gotoAndPlay(1515, "Scene 4"); } public function oic3(_arg1:MouseEvent):void{ gotoAndStop(4); } public function hearKey21(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey23(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey24(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey26(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey28(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey29(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame1700(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey23); } function frame1702(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey25); } public function hearKey27(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function dhsha(_arg1:MouseEvent):void{ gotoAndStop(3, "Menu"); } public function hearKey25(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey31(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey32(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey33(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame2000(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, yrrwyefwdfdgd); } public function hearKey35(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey30(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey38(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame2001(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey27); } public function hearKey37(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame1701(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey24); } public function xfhhx(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } public function hearKey40(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame2379(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey44); } public function hearKey44(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } function frame3469(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, yrrwy); } public function shsed(_arg1:MouseEvent):void{ gotoAndPlay(1, "Scene 3"); } function frame2380(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey55); } function frame2266(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey28); } function frame2267(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey29); } function frame2268(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey30); } function frame2269(){ stop(); stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey31); } public function hearKey55(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ play(); }; } } }//package _fla
Section 8
//SmokeLand_85 (_fla.SmokeLand_85) package _fla { import flash.display.*; public dynamic class SmokeLand_85 extends MovieClip { public function SmokeLand_85(){ addFrameScript(7, frame8); } function frame8(){ stop(); } } }//package _fla
Section 9
//specialatkthingy_44 (_fla.specialatkthingy_44) package _fla { import flash.display.*; public dynamic class specialatkthingy_44 extends MovieClip { public function specialatkthingy_44(){ addFrameScript(13, frame14); } function frame14(){ stop(); } } }//package _fla
Section 10
//Timeline_1 (_fla.Timeline_1) package _fla { import flash.events.*; import flash.display.*; import flash.system.*; import flash.net.*; public dynamic class Timeline_1 extends MovieClip { public const FRAME_RATE_ADJUST:Boolean = true; public const LOADER_FRAME_RATE:Number = 30; public const AUTO_PLAY:Boolean = false; public var bar:MovieClip; public var ngButton:SimpleButton; public var playButton:SimpleButton; public var movieFrameRate:Number; public var loadingComplete:Boolean; public var tankLogo:MovieClip; public var initialized:Boolean; public function Timeline_1(){ addFrameScript(0, frame1, 50, frame51); } public function init():void{ if (initialized){ return; }; movieFrameRate = 0; if (((FRAME_RATE_ADJUST) && (stage))){ movieFrameRate = stage.frameRate; stage.frameRate = LOADER_FRAME_RATE; }; initialized = true; stop(); if (((root) && ((root is MovieClip)))){ MovieClip(root).stop(); }; loadingComplete = false; ngButton.addEventListener(MouseEvent.CLICK, ngButtonClickHandler, false, 0, true); addEventListener(Event.ENTER_FRAME, enterFrameHandler, false, 0, true); if (meetsVersion([9, 0, 28, 0])){ addEventListener(Event.REMOVED_FROM_STAGE, cleanup, false, 0, true); }; enterFrameHandler(); } public function enterFrameHandler(_arg1:Event=null):void{ var _local2:Number; if (((((!(movieFrameRate)) && (FRAME_RATE_ADJUST))) && (stage))){ movieFrameRate = stage.frameRate; stage.frameRate = LOADER_FRAME_RATE; }; if (!loadingComplete){ _local2 = 0; if (loaderInfo){ _local2 = (loaderInfo.bytesLoaded / loaderInfo.bytesTotal); }; if (bar){ bar.scaleX = _local2; }; if (_local2 == 1){ loadingComplete = true; if (AUTO_PLAY){ startMovie(); } else { gotoAndPlay("loaded"); }; }; }; } public function meetsVersion(_arg1:Array):Boolean{ var _local2:Array; var _local3:uint; _local2 = String(Capabilities.version.split(" ")[1]).split(","); _local3 = 0; while (_local3 < _arg1.length) { if (uint(_local2[_local3]) > _arg1[_local3]){ return (true); }; if (uint(_local2[_local3]) < _arg1[_local3]){ return (false); }; _local3++; }; return (true); } public function playButtonClickHandler(_arg1:Event=null):void{ startMovie(); } function frame1(){ initialized = false; init(); } public function ngButtonClickHandler(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.newgrounds.com"), "_blank"); } public function cleanup(_arg1:Event=null){ if (initialized){ ngButton.removeEventListener(MouseEvent.CLICK, ngButtonClickHandler); removeEventListener(Event.ENTER_FRAME, enterFrameHandler); if (meetsVersion([9, 0, 28, 0])){ removeEventListener(Event.REMOVED_FROM_STAGE, cleanup); }; if (movieFrameRate){ stage.frameRate = movieFrameRate; movieFrameRate = 0; }; }; initialized = false; } function frame51(){ stop(); if (((playButton) && (!(playButton.hasEventListener(MouseEvent.CLICK))))){ playButton.addEventListener(MouseEvent.CLICK, playButtonClickHandler, false, 0, true); }; } public function startMovie():void{ cleanup(); if (((root) && ((root is MovieClip)))){ MovieClip(root).play(); }; dispatchEvent(new Event(Event.COMPLETE)); } } }//package _fla
Section 11
//Timeline_16 (_fla.Timeline_16) package _fla { import flash.display.*; public dynamic class Timeline_16 extends MovieClip { public function Timeline_16(){ addFrameScript(39, frame40); } function frame40(){ stop(); } } }//package _fla
Section 12
//Timeline_32 (_fla.Timeline_32) package _fla { import flash.display.*; public dynamic class Timeline_32 extends MovieClip { public function Timeline_32(){ addFrameScript(4, frame5); } function frame5(){ stop(); } } }//package _fla
Section 13
//Timeline_96 (_fla.Timeline_96) package _fla { import flash.display.*; public dynamic class Timeline_96 extends MovieClip { public function Timeline_96(){ addFrameScript(2, frame3); } function frame3(){ stop(); } } }//package _fla

Library Items

Symbol 1 GraphicUsed by:74
Symbol 2 GraphicUsed by:74
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClipUses:3Used by:74
Symbol 5 GraphicUsed by:7
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:5 6Used by:74
Symbol 8 GraphicUsed by:74
Symbol 9 GraphicUsed by:74
Symbol 10 GraphicUsed by:74
Symbol 11 GraphicUsed by:18 47
Symbol 12 GraphicUsed by:18 47
Symbol 13 GraphicUsed by:18 47
Symbol 14 GraphicUsed by:18 47
Symbol 15 GraphicUsed by:18 47
Symbol 16 GraphicUsed by:18 47
Symbol 17 GraphicUsed by:18 47
Symbol 18 MovieClipUses:11 12 13 14 15 16 17Used by:74
Symbol 19 GraphicUsed by:74
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:74
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:74
Symbol 24 GraphicUsed by:28
Symbol 25 GraphicUsed by:28
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:28 31
Symbol 28 MovieClipUses:24 25 27Used by:42
Symbol 29 GraphicUsed by:31
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:29 30 27Used by:42
Symbol 32 GraphicUsed by:35
Symbol 33 GraphicUsed by:35 38
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:32 33 34Used by:39
Symbol 36 GraphicUsed by:38
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:36 33 37Used by:39
Symbol 39 MovieClipUses:35 38Used by:42
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:42
Symbol 42 MovieClipUses:28 31 39 41Used by:74
Symbol 43 GraphicUsed by:74
Symbol 44 GraphicUsed by:45  Timeline
Symbol 45 ButtonUses:44Used by:74
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClip {_fla.Timeline_16}Uses:11 12 13 14 15 16 17 46Used by:74
Symbol 48 GraphicUsed by:74
Symbol 49 GraphicUsed by:74
Symbol 50 GraphicUsed by:74
Symbol 51 GraphicUsed by:74
Symbol 52 GraphicUsed by:74
Symbol 53 GraphicUsed by:74
Symbol 54 GraphicUsed by:74
Symbol 55 GraphicUsed by:74
Symbol 56 GraphicUsed by:74
Symbol 57 GraphicUsed by:74
Symbol 58 GraphicUsed by:74
Symbol 59 GraphicUsed by:74
Symbol 60 ShapeTweeningUsed by:74
Symbol 61 GraphicUsed by:74
Symbol 62 ShapeTweeningUsed by:74
Symbol 63 ShapeTweeningUsed by:74
Symbol 64 GraphicUsed by:74
Symbol 65 GraphicUsed by:73
Symbol 66 GraphicUsed by:73
Symbol 67 GraphicUsed by:73
Symbol 68 GraphicUsed by:73
Symbol 69 GraphicUsed by:73
Symbol 70 GraphicUsed by:72
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:70 71Used by:73
Symbol 73 ButtonUses:65 66 67 68 69 72Used by:74
Symbol 74 MovieClip {_fla.Timeline_1}Uses:1 2 4 7 8 9 10 18 19 21 23 42 43 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 73Used by:Timeline
Symbol 75 SoundUsed by:Timeline
Symbol 76 BitmapUsed by:77 87
Symbol 77 GraphicUses:76Used by:Timeline
Symbol 78 FontUsed by:79 80 81 82 89 94 98 105 110 227 231 236 240 241 251 253 350 351 352 382 383 384 385 389 394 396 407 408 428 468 472 473 474 475 479 481 482 483 491 493 494 495 496 571 572 574 576 577 578 579 580 585 586 587
Symbol 79 TextUses:78Used by:Timeline
Symbol 80 TextUses:78Used by:Timeline
Symbol 81 TextUses:78Used by:Timeline
Symbol 82 TextUses:78Used by:Timeline
Symbol 83 GraphicUsed by:84
Symbol 84 ButtonUses:83Used by:Timeline
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:Timeline
Symbol 87 GraphicUses:76Used by:88
Symbol 88 ButtonUses:87Used by:90
Symbol 89 TextUses:78Used by:90
Symbol 90 ButtonUses:88 89Used by:Timeline
Symbol 91 BitmapUsed by:92 191
Symbol 92 GraphicUses:91Used by:93 95 360
Symbol 93 MovieClipUses:92Used by:95
Symbol 94 TextUses:78Used by:95
Symbol 95 ButtonUses:93 94 92Used by:Timeline
Symbol 96 BitmapUsed by:97
Symbol 97 GraphicUses:96Used by:99
Symbol 98 TextUses:78Used by:99
Symbol 99 ButtonUses:97 98Used by:Timeline
Symbol 100 GraphicUsed by:106 550  Timeline
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:103 106
Symbol 103 MovieClipUses:102Used by:106  Timeline
Symbol 104 GraphicUsed by:106 550  Timeline
Symbol 105 TextUses:78Used by:106
Symbol 106 ButtonUses:100 103 104 105 102Used by:Timeline
Symbol 107 BitmapUsed by:108 191
Symbol 108 GraphicUses:107Used by:114  Timeline
Symbol 109 FontUsed by:110 575
Symbol 110 TextUses:78 109Used by:Timeline
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClip {_fla.camera_27}Uses:111Used by:Timeline
Symbol 113 SoundUsed by:Timeline
Symbol 114 MovieClipUses:108Used by:Timeline
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:117
Symbol 117 MovieClipUses:116Used by:118 142
Symbol 118 MovieClipUses:117Used by:583  Timeline
Symbol 119 SoundUsed by:Timeline
Symbol 120 SoundUsed by:Timeline
Symbol 121 BitmapUsed by:122 125 126 127
Symbol 122 GraphicUses:121Used by:123 128  Timeline
Symbol 123 MovieClipUses:122Used by:Timeline
Symbol 124 SoundUsed by:Timeline
Symbol 125 GraphicUses:121Used by:128
Symbol 126 GraphicUses:121Used by:128
Symbol 127 GraphicUses:121Used by:128 144  Timeline
Symbol 128 MovieClip {_fla.Timeline_32}Uses:122 125 126 127Used by:Timeline
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:141
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:141
Symbol 133 BitmapUsed by:134
Symbol 134 GraphicUses:133Used by:141
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:141
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:141
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:141
Symbol 141 MovieClip {_fla.HitEffect1_33}Uses:130 132 134 136 138 140Used by:Timeline
Symbol 142 MovieClipUses:117Used by:Timeline
Symbol 143 SoundUsed by:Timeline
Symbol 144 MovieClipUses:127Used by:Timeline
Symbol 145 BitmapUsed by:146
Symbol 146 GraphicUses:145Used by:147
Symbol 147 MovieClipUses:146Used by:Timeline
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:150
Symbol 150 MovieClipUses:149Used by:Timeline
Symbol 151 SoundUsed by:Timeline
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:154
Symbol 154 MovieClipUses:153Used by:159
Symbol 155 BitmapUsed by:156 157 158
Symbol 156 GraphicUses:155Used by:159
Symbol 157 GraphicUses:155Used by:159 160  Timeline
Symbol 158 GraphicUses:155Used by:159 161  Timeline
Symbol 159 MovieClipUses:154 156 157 158Used by:Timeline
Symbol 160 MovieClipUses:157Used by:Timeline
Symbol 161 MovieClipUses:158Used by:Timeline
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:164
Symbol 164 MovieClipUses:163Used by:Timeline
Symbol 165 BitmapUsed by:166 179
Symbol 166 GraphicUses:165Used by:185
Symbol 167 BitmapUsed by:168 180
Symbol 168 GraphicUses:167Used by:185
Symbol 169 BitmapUsed by:170 181
Symbol 170 GraphicUses:169Used by:185
Symbol 171 BitmapUsed by:172 182
Symbol 172 GraphicUses:171Used by:185
Symbol 173 BitmapUsed by:174 183
Symbol 174 GraphicUses:173Used by:185
Symbol 175 BitmapUsed by:176 184
Symbol 176 GraphicUses:175Used by:185
Symbol 177 BitmapUsed by:178
Symbol 178 GraphicUses:177Used by:185
Symbol 179 GraphicUses:165Used by:185
Symbol 180 GraphicUses:167Used by:185
Symbol 181 GraphicUses:169Used by:185
Symbol 182 GraphicUses:171Used by:185
Symbol 183 GraphicUses:173Used by:185
Symbol 184 GraphicUses:175Used by:185
Symbol 185 MovieClip {_fla.specialatkthingy_44}Uses:166 168 170 172 174 176 178 179 180 181 182 183 184Used by:186
Symbol 186 MovieClipUses:185Used by:Timeline
Symbol 187 SoundUsed by:Timeline
Symbol 188 SoundUsed by:Timeline
Symbol 189 BitmapUsed by:191 354 355 356 365
Symbol 190 BitmapUsed by:191 353 354 361 365 368 369
Symbol 191 GraphicUses:91 189 107 190Used by:Timeline
Symbol 192 SoundUsed by:Timeline
Symbol 193 GraphicUsed by:Timeline
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:218
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:196Used by:218
Symbol 198 BitmapUsed by:199
Symbol 199 GraphicUses:198Used by:218
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:218
Symbol 202 BitmapUsed by:203
Symbol 203 GraphicUses:202Used by:218
Symbol 204 BitmapUsed by:205
Symbol 205 GraphicUses:204Used by:218
Symbol 206 BitmapUsed by:207
Symbol 207 GraphicUses:206Used by:218
Symbol 208 BitmapUsed by:209
Symbol 209 GraphicUses:208Used by:218
Symbol 210 BitmapUsed by:211
Symbol 211 GraphicUses:210Used by:218
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:218
Symbol 214 BitmapUsed by:215
Symbol 215 GraphicUses:214Used by:218
Symbol 216 BitmapUsed by:217
Symbol 217 GraphicUses:216Used by:218
Symbol 218 MovieClip {_fla.Explosion3_45}Uses:195 197 199 201 203 205 207 209 211 213 215 217Used by:Timeline
Symbol 219 SoundUsed 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:402  Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 TextUses:78Used by:Timeline
Symbol 228 BitmapUsed by:229 252
Symbol 229 GraphicUses:228Used by:Timeline
Symbol 230 SoundUsed by:Timeline
Symbol 231 TextUses:78Used by:Timeline
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:234
Symbol 234 MovieClipUses:233Used by:Timeline
Symbol 235 FontUsed by:236
Symbol 236 TextUses:78 235Used by:Timeline
Symbol 237 BitmapUsed by:238
Symbol 238 GraphicUses:237Used by:239
Symbol 239 MovieClipUses:238Used by:Timeline
Symbol 240 TextUses:78Used by:Timeline
Symbol 241 TextUses:78Used by:Timeline
Symbol 242 BitmapUsed by:243 244 245 246 247 248 249
Symbol 243 GraphicUses:242Used by:250
Symbol 244 GraphicUses:242Used by:250
Symbol 245 GraphicUses:242Used by:250
Symbol 246 GraphicUses:242Used by:250
Symbol 247 GraphicUses:242Used by:250
Symbol 248 GraphicUses:242Used by:250
Symbol 249 GraphicUses:242Used by:250
Symbol 250 MovieClipUses:243 244 245 246 247 248 249Used by:Timeline
Symbol 251 TextUses:78Used by:Timeline
Symbol 252 GraphicUses:228Used by:Timeline
Symbol 253 TextUses:78Used by:Timeline
Symbol 254 BitmapUsed by:255
Symbol 255 GraphicUses:254Used by:256
Symbol 256 MovieClipUses:255Used by:Timeline
Symbol 257 SoundUsed by:Timeline
Symbol 258 BitmapUsed by:259
Symbol 259 GraphicUses:258Used by:264
Symbol 260 BitmapUsed by:261
Symbol 261 GraphicUses:260Used by:264
Symbol 262 BitmapUsed by:263
Symbol 263 GraphicUses:262Used by:264
Symbol 264 MovieClipUses:259 261 263Used by:Timeline
Symbol 265 SoundUsed by:Timeline
Symbol 266 BitmapUsed by:267 268
Symbol 267 GraphicUses:266Used by:269
Symbol 268 GraphicUses:266Used by:269
Symbol 269 MovieClipUses:267 268Used by:Timeline
Symbol 270 BitmapUsed by:271 272 273 274 275 276 277
Symbol 271 GraphicUses:270Used by:278
Symbol 272 GraphicUses:270Used by:278
Symbol 273 GraphicUses:270Used by:278
Symbol 274 GraphicUses:270Used by:278
Symbol 275 GraphicUses:270Used by:278
Symbol 276 GraphicUses:270Used by:278
Symbol 277 GraphicUses:270Used by:278
Symbol 278 MovieClipUses:271 272 273 274 275 276 277Used by:Timeline
Symbol 279 SoundUsed by:Timeline
Symbol 280 SoundUsed by:Timeline
Symbol 281 BitmapUsed by:282
Symbol 282 GraphicUses:281Used by:283
Symbol 283 MovieClipUses:282Used by:Timeline
Symbol 284 BitmapUsed by:285 286 287
Symbol 285 GraphicUses:284Used by:288
Symbol 286 GraphicUses:284Used by:288
Symbol 287 GraphicUses:284Used by:288
Symbol 288 MovieClipUses:285 286 287Used by:289
Symbol 289 MovieClipUses:288Used by:Timeline
Symbol 290 SoundUsed by:Timeline
Symbol 291 BitmapUsed by:292
Symbol 292 GraphicUses:291Used by:335 336 337
Symbol 293 BitmapUsed by:294
Symbol 294 GraphicUses:293Used by:335 336 337
Symbol 295 BitmapUsed by:296
Symbol 296 GraphicUses:295Used by:335 336 337
Symbol 297 BitmapUsed by:298
Symbol 298 GraphicUses:297Used by:335 336 337
Symbol 299 BitmapUsed by:300
Symbol 300 GraphicUses:299Used by:335 336 337
Symbol 301 BitmapUsed by:302
Symbol 302 GraphicUses:301Used by:335 336 337
Symbol 303 BitmapUsed by:304
Symbol 304 GraphicUses:303Used by:335 336 337
Symbol 305 BitmapUsed by:306
Symbol 306 GraphicUses:305Used by:335 336 337
Symbol 307 BitmapUsed by:308
Symbol 308 GraphicUses:307Used by:335 336 337
Symbol 309 BitmapUsed by:310
Symbol 310 GraphicUses:309Used by:335 336 337
Symbol 311 BitmapUsed by:312
Symbol 312 GraphicUses:311Used by:335 336 337
Symbol 313 BitmapUsed by:314
Symbol 314 GraphicUses:313Used by:335 336 337
Symbol 315 BitmapUsed by:316
Symbol 316 GraphicUses:315Used by:335 336 337
Symbol 317 BitmapUsed by:318
Symbol 318 GraphicUses:317Used by:335 336 337
Symbol 319 BitmapUsed by:320
Symbol 320 GraphicUses:319Used by:335 336 337
Symbol 321 BitmapUsed by:322
Symbol 322 GraphicUses:321Used by:335 336 337
Symbol 323 BitmapUsed by:324
Symbol 324 GraphicUses:323Used by:335 336 337
Symbol 325 BitmapUsed by:326
Symbol 326 GraphicUses:325Used by:335 336 337
Symbol 327 BitmapUsed by:328
Symbol 328 GraphicUses:327Used by:335 336 337
Symbol 329 BitmapUsed by:330
Symbol 330 GraphicUses:329Used by:335 336 337
Symbol 331 BitmapUsed by:332
Symbol 332 GraphicUses:331Used by:335 336 337
Symbol 333 BitmapUsed by:334
Symbol 334 GraphicUses:333Used by:335 336 337
Symbol 335 MovieClip {_fla.Explosioncopy_58}Uses:292 294 296 298 300 302 304 306 308 310 312 314 316 318 320 322 324 326 328 330 332 334Used by:Timeline
Symbol 336 MovieClip {_fla.Explosioncopy2_59}Uses:292 294 296 298 300 302 304 306 308 310 312 314 316 318 320 322 324 326 328 330 332 334Used by:Timeline
Symbol 337 MovieClip {_fla.Explosioncopy3_60}Uses:292 294 296 298 300 302 304 306 308 310 312 314 316 318 320 322 324 326 328 330 332 334Used by:Timeline
Symbol 338 GraphicUsed by:343
Symbol 339 GraphicUsed by:343
Symbol 340 GraphicUsed by:343
Symbol 341 GraphicUsed by:343
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:338 339 340 341 342Used by:Timeline
Symbol 344 GraphicUsed by:348
Symbol 345 GraphicUsed by:348
Symbol 346 GraphicUsed by:348
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:344 345 346 347Used by:Timeline
Symbol 349 SoundUsed by:Timeline
Symbol 350 TextUses:78Used by:Timeline
Symbol 351 TextUses:78Used by:Timeline
Symbol 352 TextUses:78Used by:Timeline
Symbol 353 GraphicUses:190Used by:Timeline
Symbol 354 GraphicUses:189 190Used by:359
Symbol 355 GraphicUses:189Used by:358
Symbol 356 GraphicUses:189Used by:357
Symbol 357 MovieClipUses:356Used by:358
Symbol 358 MovieClipUses:355 357Used by:359
Symbol 359 MovieClipUses:354 358Used by:Timeline
Symbol 360 MovieClipUses:92Used by:Timeline
Symbol 361 GraphicUses:190Used by:Timeline
Symbol 362 BitmapUsed by:363
Symbol 363 GraphicUses:362Used by:364
Symbol 364 MovieClipUses:363Used by:Timeline
Symbol 365 GraphicUses:189 190Used by:366
Symbol 366 MovieClipUses:365Used by:Timeline
Symbol 367 SoundUsed by:Timeline
Symbol 368 GraphicUses:190Used by:Timeline
Symbol 369 GraphicUses:190Used by:Timeline
Symbol 370 BitmapUsed by:371
Symbol 371 GraphicUses:370Used by:Timeline
Symbol 372 BitmapUsed by:373
Symbol 373 GraphicUses:372Used by:374
Symbol 374 MovieClipUses:373Used by:Timeline
Symbol 375 BitmapUsed by:376
Symbol 376 GraphicUses:375Used by:377
Symbol 377 MovieClipUses:376Used by:Timeline
Symbol 378 SoundUsed by:Timeline
Symbol 379 BitmapUsed by:380
Symbol 380 GraphicUses:379Used by:381
Symbol 381 MovieClipUses:380Used by:Timeline
Symbol 382 TextUses:78Used by:Timeline
Symbol 383 TextUses:78Used by:Timeline
Symbol 384 TextUses:78Used by:Timeline
Symbol 385 TextUses:78Used by:Timeline
Symbol 386 BitmapUsed by:387
Symbol 387 GraphicUses:386Used by:388
Symbol 388 MovieClipUses:387Used by:Timeline
Symbol 389 TextUses:78Used by:Timeline
Symbol 390 SoundUsed by:Timeline
Symbol 391 BitmapUsed by:392
Symbol 392 GraphicUses:391Used by:393
Symbol 393 MovieClipUses:392Used by:Timeline
Symbol 394 TextUses:78Used by:Timeline
Symbol 395 SoundUsed by:Timeline
Symbol 396 TextUses:78Used by:Timeline
Symbol 397 SoundUsed by:Timeline
Symbol 398 SoundUsed by:Timeline
Symbol 399 GraphicUsed by:Timeline
Symbol 400 GraphicUsed by:401
Symbol 401 MovieClipUses:400Used by:Timeline
Symbol 402 MovieClipUses:225Used by:Timeline
Symbol 403 GraphicUsed by:Timeline
Symbol 404 SoundUsed by:Timeline
Symbol 405 BitmapUsed by:406
Symbol 406 GraphicUses:405Used by:Timeline
Symbol 407 TextUses:78Used by:Timeline
Symbol 408 TextUses:78Used by:Timeline
Symbol 409 BitmapUsed by:410 411 412 413 414 415 425
Symbol 410 GraphicUses:409Used by:426 557
Symbol 411 GraphicUses:409Used by:426 557
Symbol 412 GraphicUses:409Used by:426 557
Symbol 413 GraphicUses:409Used by:426 557
Symbol 414 GraphicUses:409Used by:426 557
Symbol 415 GraphicUses:409Used by:426 557
Symbol 416 BitmapUsed by:417
Symbol 417 GraphicUses:416Used by:418
Symbol 418 MovieClipUses:417Used by:426 557
Symbol 419 BitmapUsed by:420
Symbol 420 GraphicUses:419Used by:421
Symbol 421 MovieClipUses:420Used by:426 557
Symbol 422 BitmapUsed by:423
Symbol 423 GraphicUses:422Used by:424
Symbol 424 MovieClipUses:423Used by:426 557
Symbol 425 GraphicUses:409Used by:426 557
Symbol 426 MovieClipUses:410 411 412 413 414 415 418 421 424 425Used by:Timeline
Symbol 427 SoundUsed by:Timeline
Symbol 428 TextUses:78Used by:Timeline
Symbol 429 GraphicUsed by:433
Symbol 430 GraphicUsed by:433
Symbol 431 GraphicUsed by:433
Symbol 432 GraphicUsed by:433
Symbol 433 MovieClipUses:429 430 431 432Used by:Timeline
Symbol 434 SoundUsed by:Timeline
Symbol 435 BitmapUsed by:436
Symbol 436 GraphicUses:435Used by:437
Symbol 437 MovieClipUses:436Used by:Timeline
Symbol 438 SoundUsed by:Timeline
Symbol 439 BitmapUsed by:440
Symbol 440 GraphicUses:439Used by:441
Symbol 441 MovieClipUses:440Used by:Timeline
Symbol 442 SoundUsed by:Timeline
Symbol 443 GraphicUsed by:Timeline
Symbol 444 BitmapUsed by:445
Symbol 445 GraphicUses:444Used by:446
Symbol 446 MovieClipUses:445Used by:Timeline
Symbol 447 GraphicUsed by:Timeline
Symbol 448 BitmapUsed by:449 450 451 452
Symbol 449 GraphicUses:448Used by:453
Symbol 450 GraphicUses:448Used by:453
Symbol 451 GraphicUses:448Used by:453
Symbol 452 GraphicUses:448Used by:453
Symbol 453 MovieClipUses:449 450 451 452Used by:Timeline
Symbol 454 SoundUsed by:Timeline
Symbol 455 BitmapUsed by:456
Symbol 456 GraphicUses:455Used by:465
Symbol 457 BitmapUsed by:458
Symbol 458 GraphicUses:457Used by:465
Symbol 459 BitmapUsed by:460
Symbol 460 GraphicUses:459Used by:465
Symbol 461 BitmapUsed by:462
Symbol 462 GraphicUses:461Used by:465
Symbol 463 BitmapUsed by:464
Symbol 464 GraphicUses:463Used by:465
Symbol 465 MovieClip {_fla.SmokeLand_85}Uses:456 458 460 462 464Used by:Timeline
Symbol 466 SoundUsed by:Timeline
Symbol 467 SoundUsed by:Timeline
Symbol 468 TextUses:78Used by:Timeline
Symbol 469 BitmapUsed by:470
Symbol 470 GraphicUses:469Used by:471
Symbol 471 MovieClipUses:470Used by:Timeline
Symbol 472 TextUses:78Used by:Timeline
Symbol 473 TextUses:78Used by:Timeline
Symbol 474 TextUses:78Used by:Timeline
Symbol 475 TextUses:78Used by:Timeline
Symbol 476 BitmapUsed by:477
Symbol 477 GraphicUses:476Used by:478
Symbol 478 MovieClipUses:477Used by:Timeline
Symbol 479 TextUses:78Used by:Timeline
Symbol 480 SoundUsed by:Timeline
Symbol 481 TextUses:78Used by:Timeline
Symbol 482 TextUses:78Used by:Timeline
Symbol 483 TextUses:78Used by:Timeline
Symbol 484 GraphicUsed by:Timeline
Symbol 485 BitmapUsed by:486
Symbol 486 GraphicUses:485Used by:487
Symbol 487 MovieClipUses:486Used by:Timeline
Symbol 488 GraphicUsed by:Timeline
Symbol 489 GraphicUsed by:Timeline
Symbol 490 SoundUsed by:Timeline
Symbol 491 TextUses:78Used by:Timeline
Symbol 492 SoundUsed by:Timeline
Symbol 493 TextUses:78Used by:Timeline
Symbol 494 TextUses:78Used by:Timeline
Symbol 495 TextUses:78Used by:Timeline
Symbol 496 TextUses:78Used by:Timeline
Symbol 497 SoundUsed by:Timeline
Symbol 498 SoundUsed by:Timeline
Symbol 499 BitmapUsed by:500
Symbol 500 GraphicUses:499Used by:533
Symbol 501 BitmapUsed by:502
Symbol 502 GraphicUses:501Used by:533
Symbol 503 BitmapUsed by:504
Symbol 504 GraphicUses:503Used by:533
Symbol 505 BitmapUsed by:506
Symbol 506 GraphicUses:505Used by:533
Symbol 507 BitmapUsed by:508
Symbol 508 GraphicUses:507Used by:533
Symbol 509 BitmapUsed by:510
Symbol 510 GraphicUses:509Used by:533
Symbol 511 BitmapUsed by:512
Symbol 512 GraphicUses:511Used by:533
Symbol 513 BitmapUsed by:514
Symbol 514 GraphicUses:513Used by:533
Symbol 515 BitmapUsed by:516
Symbol 516 GraphicUses:515Used by:533
Symbol 517 BitmapUsed by:518
Symbol 518 GraphicUses:517Used by:533
Symbol 519 BitmapUsed by:520
Symbol 520 GraphicUses:519Used by:533
Symbol 521 BitmapUsed by:522
Symbol 522 GraphicUses:521Used by:533
Symbol 523 BitmapUsed by:524
Symbol 524 GraphicUses:523Used by:533
Symbol 525 BitmapUsed by:526
Symbol 526 GraphicUses:525Used by:533
Symbol 527 BitmapUsed by:528
Symbol 528 GraphicUses:527Used by:533
Symbol 529 BitmapUsed by:530
Symbol 530 GraphicUses:529Used by:533
Symbol 531 BitmapUsed by:532
Symbol 532 GraphicUses:531Used by:533
Symbol 533 MovieClipUses:500 502 504 506 508 510 512 514 516 518 520 522 524 526 528 530 532Used by:Timeline
Symbol 534 BitmapUsed by:535
Symbol 535 GraphicUses:534Used by:536
Symbol 536 MovieClipUses:535Used by:Timeline
Symbol 537 BitmapUsed by:538
Symbol 538 GraphicUses:537Used by:539
Symbol 539 MovieClipUses:538Used by:Timeline
Symbol 540 SoundUsed by:Timeline
Symbol 541 BitmapUsed by:542
Symbol 542 GraphicUses:541Used by:543
Symbol 543 MovieClipUses:542Used by:Timeline
Symbol 544 BitmapUsed by:545
Symbol 545 GraphicUses:544Used by:546
Symbol 546 MovieClipUses:545Used by:Timeline
Symbol 547 BitmapUsed by:548
Symbol 548 GraphicUses:547Used by:549
Symbol 549 MovieClipUses:548Used by:Timeline
Symbol 550 MovieClipUses:100 104Used by:Timeline
Symbol 551 BitmapUsed by:552 553
Symbol 552 GraphicUses:551Used by:554
Symbol 553 GraphicUses:551Used by:554  Timeline
Symbol 554 MovieClip {_fla.Timeline_96}Uses:552 553Used by:Timeline
Symbol 555 SoundUsed by:Timeline
Symbol 556 SoundUsed by:Timeline
Symbol 557 MovieClipUses:410 411 412 413 414 415 418 421 424 425Used by:Timeline
Symbol 558 GraphicUsed by:559
Symbol 559 MovieClipUses:558Used by:Timeline
Symbol 560 SoundUsed by:Timeline
Symbol 561 BitmapUsed by:562
Symbol 562 GraphicUses:561Used by:563
Symbol 563 MovieClipUses:562Used by:Timeline
Symbol 564 SoundUsed by:Timeline
Symbol 565 SoundUsed by:Timeline
Symbol 566 SoundUsed by:Timeline
Symbol 567 BitmapUsed by:568
Symbol 568 GraphicUses:567Used by:569
Symbol 569 MovieClipUses:568Used by:Timeline
Symbol 570 GraphicUsed by:Timeline
Symbol 571 TextUses:78Used by:Timeline
Symbol 572 TextUses:78Used by:Timeline
Symbol 573 GraphicUsed by:Timeline
Symbol 574 TextUses:78Used by:Timeline
Symbol 575 TextUses:109Used by:Timeline
Symbol 576 TextUses:78Used by:Timeline
Symbol 577 TextUses:78Used by:Timeline
Symbol 578 TextUses:78Used by:Timeline
Symbol 579 TextUses:78Used by:583
Symbol 580 TextUses:78Used by:583
Symbol 581 BitmapUsed by:582
Symbol 582 GraphicUses:581Used by:583
Symbol 583 MovieClipUses:579 580 582 118Used by:Timeline
Symbol 584 SoundUsed by:Timeline
Symbol 585 TextUses:78Used by:Timeline
Symbol 586 TextUses:78Used by:Timeline
Symbol 587 TextUses:78Used by:588 589
Symbol 588 MovieClipUses:587Used by:589
Symbol 589 ButtonUses:588 587Used by:Timeline

Instance Names

"ib3"Frame 3Symbol 84 Button
"intro_btn2"Frame 3Symbol 84 Button
"intro_btn"Frame 3Symbol 84 Button
"mmenu"Frame 4Symbol 90 Button
"spooky"Frame 4Symbol 95 Button
"castlebutton"Frame 4Symbol 99 Button
"scene1b"Frame 4Symbol 106 Button
"button11"Frame 3501Symbol 589 Button
"bar"Symbol 74 MovieClip {_fla.Timeline_1} Frame 1Symbol 4 MovieClip
"tankLogo"Symbol 74 MovieClip {_fla.Timeline_1} Frame 1Symbol 21 MovieClip
"ngButton"Symbol 74 MovieClip {_fla.Timeline_1} Frame 1Symbol 45 Button
"playButton"Symbol 74 MovieClip {_fla.Timeline_1} Frame 47Symbol 73 Button

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.

Labels

"loaded"Symbol 74 MovieClip {_fla.Timeline_1} Frame 2




http://swfchan.com/15/75000/info.shtml
Created: 6/4 -2019 14:01:23 Last modified: 6/4 -2019 14:01:23 Server time: 19/05 -2024 07:42:26