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

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

To the Hospital.swf

This is the info page for
Flash #139920

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


Text
Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

Haloa has a tummy ache,
help her get to the hospital
as fast as possible!
By not tripping her with a
rock!
Quality:

LOW

LOW

LOW

MEDIUM

MEDIUM

MEDIUM

MEDIUM

MEDIUM

MEDIUM

HIGH

HIGH

HIGH

HIGH

START!

START!

START!

REPLAY?

After reaching the
hospital, she was given a
lollipop for her belly ache
and a bandaid for her
damaged face, and all was
well.

After reaching the
hospital, she was given a
lollipop for her belly ache,
and all was well.

ActionScript [AS3]

Section 1
//Strong (fl.transitions.easing.Strong) package fl.transitions.easing { public class Strong { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return (((((((_arg3 * _arg1) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ return ((((((((_arg3 / 2) * _arg1) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2)); }; _arg1 = (_arg1 - 2); return ((((_arg3 / 2) * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 2)) + _arg2)); } } }//package fl.transitions.easing
Section 2
//Tween (fl.transitions.Tween) package fl.transitions { import flash.events.*; import flash.utils.*; import flash.display.*; public class Tween extends EventDispatcher { private var _position:Number;// = NAN public var prevTime:Number;// = NAN public var prevPos:Number;// = NAN public var isPlaying:Boolean;// = false public var begin:Number;// = NAN private var _fps:Number;// = NAN private var _time:Number;// = NAN public var change:Number;// = NAN private var _finish:Number;// = NAN public var looping:Boolean;// = false private var _intervalID:uint;// = 0 public var func:Function; private var _timer:Timer;// = null private var _startTime:Number;// = NAN public var prop:String;// = "" private var _duration:Number;// = NAN public var obj:Object;// = null public var useSeconds:Boolean;// = false protected static var _mc:MovieClip = new MovieClip(); public function Tween(_arg1:Object, _arg2:String, _arg3:Function, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Boolean=false){ isPlaying = false; obj = null; prop = ""; func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); }; begin = NaN; change = NaN; useSeconds = false; prevTime = NaN; prevPos = NaN; looping = false; _duration = NaN; _time = NaN; _fps = NaN; _position = NaN; _startTime = NaN; _intervalID = 0; _finish = NaN; _timer = null; super(); if (!arguments.length){ return; }; this.obj = _arg1; this.prop = _arg2; this.begin = _arg4; this.position = _arg4; this.duration = _arg6; this.useSeconds = _arg7; if ((_arg3 is Function)){ this.func = _arg3; }; this.finish = _arg5; this._timer = new Timer(100); this.start(); } public function continueTo(_arg1:Number, _arg2:Number):void{ this.begin = this.position; this.finish = _arg1; if (!isNaN(_arg2)){ this.duration = _arg2; }; this.start(); } public function stop():void{ this.stopEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, this._time, this._position)); } private function fixTime():void{ if (this.useSeconds){ this._startTime = (getTimer() - (this._time * 1000)); }; } public function set FPS(_arg1:Number):void{ var _local2:Boolean; _local2 = this.isPlaying; this.stopEnterFrame(); this._fps = _arg1; if (_local2){ this.startEnterFrame(); }; } public function get finish():Number{ return ((this.begin + this.change)); } public function get duration():Number{ return (this._duration); } protected function startEnterFrame():void{ var _local1:Number; if (isNaN(this._fps)){ _mc.addEventListener(Event.ENTER_FRAME, this.onEnterFrame, false, 0, true); } else { _local1 = (1000 / this._fps); this._timer.delay = _local1; this._timer.addEventListener(TimerEvent.TIMER, this.timerHandler, false, 0, true); this._timer.start(); }; this.isPlaying = true; } public function set time(_arg1:Number):void{ this.prevTime = this._time; if (_arg1 > this.duration){ if (this.looping){ this.rewind((_arg1 - this._duration)); this.update(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_LOOP, this._time, this._position)); } else { if (this.useSeconds){ this._time = this._duration; this.update(); }; this.stop(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_FINISH, this._time, this._position)); }; } else { if (_arg1 < 0){ this.rewind(); this.update(); } else { this._time = _arg1; this.update(); }; }; } protected function stopEnterFrame():void{ if (isNaN(this._fps)){ _mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); } else { this._timer.stop(); }; this.isPlaying = false; } public function getPosition(_arg1:Number=NaN):Number{ if (isNaN(_arg1)){ _arg1 = this._time; }; return (this.func(_arg1, this.begin, this.change, this._duration)); } public function set finish(_arg1:Number):void{ this.change = (_arg1 - this.begin); } public function set duration(_arg1:Number):void{ this._duration = ((_arg1)<=0) ? Infinity : _arg1; } public function setPosition(_arg1:Number):void{ this.prevPos = this._position; if (this.prop.length){ this.obj[this.prop] = (this._position = _arg1); }; this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_CHANGE, this._time, this._position)); } public function resume():void{ this.fixTime(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_RESUME, this._time, this._position)); } public function fforward():void{ this.time = this._duration; this.fixTime(); } protected function onEnterFrame(_arg1:Event):void{ this.nextFrame(); } public function get position():Number{ return (this.getPosition(this._time)); } public function yoyo():void{ this.continueTo(this.begin, this.time); } public function nextFrame():void{ if (this.useSeconds){ this.time = ((getTimer() - this._startTime) / 1000); } else { this.time = (this._time + 1); }; } protected function timerHandler(_arg1:TimerEvent):void{ this.nextFrame(); _arg1.updateAfterEvent(); } public function get FPS():Number{ return (this._fps); } public function rewind(_arg1:Number=0):void{ this._time = _arg1; this.fixTime(); this.update(); } public function set position(_arg1:Number):void{ this.setPosition(_arg1); } public function get time():Number{ return (this._time); } private function update():void{ this.setPosition(this.getPosition(this._time)); } public function start():void{ this.rewind(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position)); } public function prevFrame():void{ if (!this.useSeconds){ this.time = (this._time - 1); }; } } }//package fl.transitions
Section 3
//TweenEvent (fl.transitions.TweenEvent) package fl.transitions { import flash.events.*; public class TweenEvent extends Event { public var time:Number;// = NAN public var position:Number;// = NAN public static const MOTION_START:String = "motionStart"; public static const MOTION_STOP:String = "motionStop"; public static const MOTION_LOOP:String = "motionLoop"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_FINISH:String = "motionFinish"; public static const MOTION_RESUME:String = "motionResume"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ time = NaN; position = NaN; super(_arg1, _arg4, _arg5); this.time = _arg2; this.position = _arg3; } override public function clone():Event{ return (new TweenEvent(this.type, this.time, this.position, this.bubbles, this.cancelable)); } } }//package fl.transitions
Section 4
//loadermc_1 (haloarun_fla.loadermc_1) package haloarun_fla { import flash.display.*; public dynamic class loadermc_1 extends MovieClip { public var playbut:MovieClip; } }//package haloarun_fla
Section 5
//MainTimeline (haloarun_fla.MainTimeline) package haloarun_fla { import flash.events.*; import fl.transitions.*; import fl.transitions.easing.*; import flash.utils.*; import flash.display.*; import flash.ui.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.geom.*; import flash.media.*; import flash.net.*; import flash.printing.*; import flash.system.*; import flash.text.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var rockspeed; public var progressmax; public var her:MovieClip; public var back; public var loading:MovieClip; public var herdown:MovieClip; public var option4:ContextMenuItem; public var nextframe; public var option3:ContextMenuItem; public var endscr:MovieClip; public var rockfollow; public var customContextMenu:ContextMenu; public var rock:MovieClip; public var option2:ContextMenuItem; public var endclip:MovieClip; public var fine; public var progressbar:MovieClip; public var herorig; public var progressvar; public var loadermc:MovieClip; public var titlepage:MovieClip; public var herdownorig; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } public function option3down(_arg1:ContextMenuEvent):void{ stage.quality = "MEDIUM"; } function frame2(){ stop(); herorig = her.x; herdownorig = herdown.x; rockfollow = true; rockspeed = 0.1; back = false; nextframe = false; progressvar = 1; progressmax = 1800; herdown.visible = false; loading.visible = false; fine = true; her.head.stop(); progressbar.stop(); titlepage.qlow.addEventListener(MouseEvent.CLICK, qlowclick); titlepage.qmed.addEventListener(MouseEvent.CLICK, qmedclick); titlepage.qhig.addEventListener(MouseEvent.CLICK, qhigclick); titlepage.startbut.addEventListener(MouseEvent.CLICK, startbutclick); } public function startbutclick(_arg1:MouseEvent):void{ var _local2:Tween; _local2 = new Tween(titlepage, "y", Strong.easeIn, titlepage.y, 1000, 1, true); _local2.addEventListener(TweenEvent.MOTION_FINISH, tweendone); titlepage.qlow.removeEventListener(MouseEvent.CLICK, qlowclick); titlepage.qmed.removeEventListener(MouseEvent.CLICK, qmedclick); titlepage.qhig.removeEventListener(MouseEvent.CLICK, qhigclick); titlepage.startbut.removeEventListener(MouseEvent.CLICK, startbutclick); } public function replayclick(_arg1:MouseEvent):void{ endscr.removeEventListener(MouseEvent.CLICK, replayclick); prevFrame(); } public function qlowclick(_arg1:MouseEvent):void{ stage.quality = "LOW"; } public function qhigclick(_arg1:MouseEvent):void{ stage.quality = "HIGH"; } function frame3(){ if (fine){ endscr.bandaid.visible = false; endscr.endtxt.gotoAndStop(2); }; endscr.replaybut.addEventListener(MouseEvent.CLICK, replayclick); } function frame1(){ stop(); loadermc.playbut.stop(); loadermc.addEventListener(Event.ENTER_FRAME, loaderupdate); stage.scaleMode = StageScaleMode.NO_SCALE; stage.align = StageAlign.TOP; option2 = new ContextMenuItem("Quality = Low"); option3 = new ContextMenuItem("Quality = Medium"); option4 = new ContextMenuItem("Quality = High"); option2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, option2down); option3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, option3down); option4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, option4down); customContextMenu = new ContextMenu(); customContextMenu.hideBuiltInItems(); customContextMenu.customItems.push(option2, option3, option4); this.contextMenu = customContextMenu; option2.enabled = false; option3.enabled = false; option4.enabled = false; } public function stageclick(_arg1:MouseEvent):void{ if (((rockfollow) && ((rock.alpha == 1)))){ rockfollow = false; nextframe = true; loading.visible = true; }; } public function tweendone(_arg1:TweenEvent):void{ stage.addEventListener(Event.ENTER_FRAME, update); stage.addEventListener(MouseEvent.CLICK, stageclick); Mouse.hide(); } public function option4down(_arg1:ContextMenuEvent):void{ stage.quality = "HIGH"; } public function option2down(_arg1:ContextMenuEvent):void{ stage.quality = "LOW"; } public function qmedclick(_arg1:MouseEvent):void{ stage.quality = "MEDIUM"; } public function waittillover(_arg1:Event):void{ if (endclip.currentFrame == endclip.totalFrames){ if (her.head.currentFrame != 1){ fine = false; }; stage.removeEventListener(Event.ENTER_FRAME, waittillover); nextFrame(); }; } public function loaderupdate(_arg1:Event):void{ loadermc.gotoAndStop(Math.floor(((this.stage.loaderInfo.bytesLoaded / this.stage.loaderInfo.bytesTotal) * 100))); if (this.stage.loaderInfo.bytesLoaded == this.stage.loaderInfo.bytesTotal){ loadermc.removeEventListener(Event.ENTER_FRAME, loaderupdate); loadermc.playbut.play(); loadermc.playbut.addEventListener(MouseEvent.CLICK, playclick); }; } public function update(_arg1:Event):void{ if (progressvar < progressmax){ progressvar = (progressvar + 1); }; progressbar.gotoAndStop(Math.ceil((100 * (progressvar / progressmax)))); loading.x = mouseX; loading.y = mouseY; if (rockfollow){ rock.x = mouseX; rock.y = mouseY; if ((((rock.x < 340)) || ((her.head.currentFrame == her.head.totalFrames)))){ rock.alpha = 0.5; } else { rock.alpha = 1; }; } else { if (rock.y < 360){ rockspeed = (rockspeed + 0.3); rock.y = (rock.y + rockspeed); }; if (rock.y >= 360){ rock.y = 360; rock.x = (rock.x - 12.5); }; if (rock.x < 200){ her.visible = false; herdown.visible = true; herdown.x = (herdown.x - 12.5); if (nextframe){ her.head.nextFrame(); }; nextframe = false; }; if (herdown.x < -200){ back = true; herdown.visible = false; if (her.x == herorig){ her.x = herdown.x; }; her.visible = true; }; }; if (back){ if (her.x < herorig){ her.x = (her.x + 4); }; if (her.x >= herorig){ her.x = herorig; herdown.x = herdownorig; rockspeed = 0.1; loading.visible = false; rockfollow = true; back = false; }; }; if (progressvar == progressmax){ stage.removeEventListener(Event.ENTER_FRAME, update); stage.removeEventListener(MouseEvent.CLICK, stageclick); endclip.play(); Mouse.show(); stage.addEventListener(Event.ENTER_FRAME, waittillover); }; } public function playclick(_arg1:MouseEvent):void{ loadermc.playbut.removeEventListener(MouseEvent.CLICK, playclick); nextFrame(); } } }//package haloarun_fla
Section 6
//playstretch_5 (haloarun_fla.playstretch_5) package haloarun_fla { import flash.display.*; public dynamic class playstretch_5 extends MovieClip { public function playstretch_5(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package haloarun_fla
Section 7
//Symbol32_41 (haloarun_fla.Symbol32_41) package haloarun_fla { import flash.display.*; public dynamic class Symbol32_41 extends MovieClip { public var qlow:SimpleButton; public var qhig:SimpleButton; public var qmed:SimpleButton; public var startbut:SimpleButton; } }//package haloarun_fla
Section 8
//Symbol42_51 (haloarun_fla.Symbol42_51) package haloarun_fla { import flash.display.*; public dynamic class Symbol42_51 extends MovieClip { public function Symbol42_51(){ addFrameScript(0, frame1, 99, frame100); } function frame1(){ stop(); } function frame100(){ stop(); } } }//package haloarun_fla
Section 9
//Symbol45_59 (haloarun_fla.Symbol45_59) package haloarun_fla { import flash.display.*; public dynamic class Symbol45_59 extends MovieClip { public function Symbol45_59(){ addFrameScript(39, frame40); } function frame40(){ stop(); } } }//package haloarun_fla
Section 10
//Symbol47_54 (haloarun_fla.Symbol47_54) package haloarun_fla { import flash.display.*; public dynamic class Symbol47_54 extends MovieClip { public var replaybut:SimpleButton; public var endtxt:MovieClip; public var bandaid:MovieClip; } }//package haloarun_fla
Section 11
//Symbol5_18 (haloarun_fla.Symbol5_18) package haloarun_fla { import flash.display.*; public dynamic class Symbol5_18 extends MovieClip { public var head:MovieClip; } }//package haloarun_fla
Section 12
//Symbol51_58 (haloarun_fla.Symbol51_58) package haloarun_fla { import flash.display.*; public dynamic class Symbol51_58 extends MovieClip { public function Symbol51_58(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package haloarun_fla
Section 13
//Symbol7_17 (haloarun_fla.Symbol7_17) package haloarun_fla { import flash.display.*; public dynamic class Symbol7_17 extends MovieClip { public function Symbol7_17(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ movethis(); } function frame2(){ movethis(); } public function movethis(){ x = (x - 10); if (x < -50){ x = (600 + (Math.random() * 500)); scaleX = (0.1 + (Math.random() * 0.4)); scaleY = scaleX; if ((Math.random() * 2) < 1){ scaleX = (scaleX * -1); }; }; } } }//package haloarun_fla
Section 14
//Symbol7copy_40 (haloarun_fla.Symbol7copy_40) package haloarun_fla { import flash.display.*; public dynamic class Symbol7copy_40 extends MovieClip { public function Symbol7copy_40(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ mouseEnabled = false; movethis(); } function frame2(){ movethis(); } public function movethis(){ x = (x - 15); if (x < -50){ x = (600 + (Math.random() * 500)); scaleX = (0.4 + (Math.random() * 0.6)); scaleY = scaleX; if ((Math.random() * 2) < 1){ scaleX = (scaleX * -1); }; }; } } }//package haloarun_fla

Library Items

Symbol 1 GraphicUsed by:33
Symbol 2 ShapeTweeningUsed by:33
Symbol 3 GraphicUsed by:4  Timeline
Symbol 4 MovieClipUses:3Used by:33
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:33
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:33
Symbol 9 GraphicUsed by:11
Symbol 10 GraphicUsed by:11
Symbol 11 ButtonUses:9 10Used by:12
Symbol 12 MovieClipUses:11Used by:13
Symbol 13 MovieClip {haloarun_fla.playstretch_5}Uses:12Used by:33
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:33
Symbol 16 GraphicUsed by:33
Symbol 17 GraphicUsed by:33
Symbol 18 BitmapUsed by:19
Symbol 19 GraphicUses:18Used by:20
Symbol 20 MovieClipUses:19Used by:33
Symbol 21 GraphicUsed by:33
Symbol 22 GraphicUsed by:33
Symbol 23 GraphicUsed by:33
Symbol 24 GraphicUsed by:33
Symbol 25 GraphicUsed by:33
Symbol 26 GraphicUsed by:33
Symbol 27 GraphicUsed by:33
Symbol 28 GraphicUsed by:33
Symbol 29 GraphicUsed by:33
Symbol 30 GraphicUsed by:33
Symbol 31 GraphicUsed by:33
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClip {haloarun_fla.loadermc_1}Uses:1 2 4 6 8 13 15 16 17 20 21 22 23 24 25 26 27 28 29 30 31 32Used by:Timeline
Symbol 34 BitmapUsed by:35
Symbol 35 GraphicUses:34Used by:36
Symbol 36 MovieClipUses:35Used by:37
Symbol 37 MovieClipUses: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:42
Symbol 42 MovieClipUses:41Used by:Timeline
Symbol 43 GraphicUsed by:Timeline
Symbol 44 GraphicUsed by:48
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:47
Symbol 47 MovieClipUses:46Used by:48
Symbol 48 MovieClipUses:44 47Used by:Timeline
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClip {haloarun_fla.Symbol7_17}Uses:49Used by:Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 ButtonUses:51Used by:86
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:86
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:86
Symbol 57 GraphicUsed by:83
Symbol 58 GraphicUsed by:83
Symbol 59 GraphicUsed by:83
Symbol 60 GraphicUsed by:83
Symbol 61 GraphicUsed by:83
Symbol 62 GraphicUsed by:83
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:65
Symbol 65 MovieClipUses:64Used by:83
Symbol 66 GraphicUsed by:83
Symbol 67 GraphicUsed by:83
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:70
Symbol 70 MovieClipUses:69Used by:83
Symbol 71 GraphicUsed by:83
Symbol 72 GraphicUsed by:83
Symbol 73 GraphicUsed by:83
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:78
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:78
Symbol 78 MovieClipUses:75 77Used by:83
Symbol 79 GraphicUsed by:83
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:82
Symbol 82 MovieClipUses:81Used by:83
Symbol 83 MovieClipUses:57 58 59 60 61 62 65 66 67 70 71 72 73 78 79 82Used by:86
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:86
Symbol 86 MovieClip {haloarun_fla.Symbol5_18}Uses:52 54 56 83 85Used by:Timeline
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:Timeline
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:Timeline
Symbol 91 GraphicUsed by:107
Symbol 92 GraphicUsed by:106
Symbol 93 GraphicUsed by:106
Symbol 94 GraphicUsed by:106
Symbol 95 GraphicUsed by:106
Symbol 96 GraphicUsed by:106
Symbol 97 GraphicUsed by:106
Symbol 98 GraphicUsed by:106
Symbol 99 GraphicUsed by:106
Symbol 100 GraphicUsed by:106
Symbol 101 GraphicUsed by:106
Symbol 102 GraphicUsed by:106
Symbol 103 GraphicUsed by:106
Symbol 104 GraphicUsed by:106
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:92 93 94 95 96 97 98 99 100 101 102 103 104 105Used by:107
Symbol 107 MovieClipUses:91 106Used by:Timeline
Symbol 108 GraphicUsed by:115
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:109Used by:115
Symbol 111 GraphicUsed by:115
Symbol 112 GraphicUsed by:115
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:113Used by:115
Symbol 115 MovieClipUses:108 110 111 112 114Used by:Timeline
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClip {haloarun_fla.Symbol7copy_40}Uses:116Used by:Timeline
Symbol 118 GraphicUsed by:161
Symbol 119 FontUsed by:121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 142 143 144 145 146 147 150 151 152 153 157 158 170 173 174
Symbol 120 FontUsed by:121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 137 138 139 142 143 144 145 146 147 150 151 152 153 156 157 158
Symbol 121 TextUses:119 120Used by:136
Symbol 122 TextUses:119 120Used by:136
Symbol 123 TextUses:119 120Used by:136
Symbol 124 TextUses:119 120Used by:136
Symbol 125 TextUses:119 120Used by:136
Symbol 126 TextUses:119 120Used by:136
Symbol 127 TextUses:119 120Used by:136
Symbol 128 TextUses:119 120Used by:136
Symbol 129 TextUses:119 120Used by:136
Symbol 130 TextUses:119 120Used by:136
Symbol 131 TextUses:119 120Used by:136
Symbol 132 TextUses:119 120Used by:136
Symbol 133 TextUses:119 120Used by:136
Symbol 134 TextUses:119 120Used by:136
Symbol 135 TextUses:119 120Used by:136
Symbol 136 MovieClipUses:121 122 123 124 125 126 127 128 129 130 131 132 133 134 135Used by:161
Symbol 137 TextUses:119 120Used by:140 141
Symbol 138 TextUses:119 120Used by:140
Symbol 139 TextUses:120 119Used by:140
Symbol 140 MovieClipUses:137 138 139Used by:141
Symbol 141 ButtonUses:140 137Used by:161
Symbol 142 TextUses:119 120Used by:148 149
Symbol 143 TextUses:119 120Used by:148
Symbol 144 TextUses:119 120Used by:148
Symbol 145 TextUses:120 119Used by:148
Symbol 146 TextUses:119 120Used by:148
Symbol 147 TextUses:119 120Used by:148
Symbol 148 MovieClipUses:142 143 144 145 146 147Used by:149
Symbol 149 ButtonUses:148 142Used by:161
Symbol 150 TextUses:119 120Used by:154 155
Symbol 151 TextUses:120 119Used by:154
Symbol 152 TextUses:119 120Used by:154
Symbol 153 TextUses:119 120Used by:154
Symbol 154 MovieClipUses:150 151 152 153Used by:155
Symbol 155 ButtonUses:154 150Used by:161
Symbol 156 TextUses:120Used by:159 160
Symbol 157 TextUses:120 119Used by:159
Symbol 158 TextUses:120 119Used by:159
Symbol 159 MovieClipUses:156 157 158Used by:160
Symbol 160 ButtonUses:159 156Used by:161
Symbol 161 MovieClip {haloarun_fla.Symbol32_41}Uses:118 136 141 149 155 160Used by:Timeline
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClipUses:162Used by:166 177
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:166 177
Symbol 166 MovieClip {haloarun_fla.Symbol42_51}Uses:163 165Used by:Timeline
Symbol 167 GraphicUsed by:176
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:176
Symbol 170 TextUses:119Used by:171 172
Symbol 171 MovieClipUses:170Used by:172
Symbol 172 ButtonUses:171 170Used by:176
Symbol 173 TextUses:119Used by:175
Symbol 174 TextUses:119Used by:175
Symbol 175 MovieClip {haloarun_fla.Symbol51_58}Uses:173 174Used by:176
Symbol 176 MovieClip {haloarun_fla.Symbol47_54}Uses:167 169 172 175Used by:Timeline
Symbol 177 MovieClipUses:163 165Used by:178
Symbol 178 MovieClip {haloarun_fla.Symbol45_59}Uses:177Used by:Timeline

Instance Names

"loadermc"Frame 1Symbol 33 MovieClip {haloarun_fla.loadermc_1}
"her"Frame 2Symbol 86 MovieClip {haloarun_fla.Symbol5_18}
"herdown"Frame 2Symbol 88 MovieClip
"rock"Frame 2Symbol 90 MovieClip
"loading"Frame 2Symbol 107 MovieClip
"progressbar"Frame 2Symbol 115 MovieClip
"titlepage"Frame 2Symbol 161 MovieClip {haloarun_fla.Symbol32_41}
"endclip"Frame 2Symbol 166 MovieClip {haloarun_fla.Symbol42_51}
"endscr"Frame 3Symbol 176 MovieClip {haloarun_fla.Symbol47_54}
"playbut"Symbol 33 MovieClip {haloarun_fla.loadermc_1} Frame 1Symbol 13 MovieClip {haloarun_fla.playstretch_5}
"head"Symbol 86 MovieClip {haloarun_fla.Symbol5_18} Frame 1Symbol 83 MovieClip
"qlow"Symbol 161 MovieClip {haloarun_fla.Symbol32_41} Frame 1Symbol 141 Button
"qmed"Symbol 161 MovieClip {haloarun_fla.Symbol32_41} Frame 1Symbol 149 Button
"qhig"Symbol 161 MovieClip {haloarun_fla.Symbol32_41} Frame 1Symbol 155 Button
"startbut"Symbol 161 MovieClip {haloarun_fla.Symbol32_41} Frame 1Symbol 160 Button
"bandaid"Symbol 176 MovieClip {haloarun_fla.Symbol47_54} Frame 1Symbol 169 MovieClip
"replaybut"Symbol 176 MovieClip {haloarun_fla.Symbol47_54} Frame 1Symbol 172 Button
"endtxt"Symbol 176 MovieClip {haloarun_fla.Symbol47_54} Frame 1Symbol 175 MovieClip {haloarun_fla.Symbol51_58}

Special Tags

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




http://swfchan.com/28/139920/info.shtml
Created: 28/10 -2018 02:19:19 Last modified: 28/10 -2018 02:19:19 Server time: 02/05 -2024 20:10:34