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

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

tepig vs touko hilda.swf

This is the info page for
Flash #98532

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


Text
<p align="center"><font face="Courier New" size="14" color="#ffaa00" letterSpacing="0.000000" kerning="1"><b>0% </b></font></p>

bloo carrot & corrado
presents
Tepig-VS-Touko
(animated)

CREDITS
original artwork
bloo carrot
bloocarrot.blogspot.com
animation / coding / sounds
corrado
corradosgifs.blogspot.com

X

+

-

SPEED

CREDITS

ActionScript [AS3]

Section 1
//Regular (fl.transitions.easing.Regular) package fl.transitions.easing { public class Regular { public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((_arg3 * _arg1) * _arg1) + _arg2)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _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) + _arg2)); }; --_arg1; return ((((-(_arg3) / 2) * ((_arg1 * (_arg1 - 2)) - 1)) + _arg2)); } } }//package fl.transitions.easing
Section 2
//Tween (fl.transitions.Tween) package fl.transitions { import flash.events.*; import flash.display.*; import flash.utils.*; public class Tween extends EventDispatcher { public var isPlaying:Boolean;// = false public var obj:Object;// = null public var prop:String;// = "" public var func:Function; public var begin:Number;// = NAN public var change:Number;// = NAN public var useSeconds:Boolean;// = false public var prevTime:Number;// = NAN public var prevPos:Number;// = NAN public var looping:Boolean;// = false private var _duration:Number;// = NAN private var _time:Number;// = NAN private var _fps:Number;// = NAN private var _position:Number;// = NAN private var _startTime:Number;// = NAN private var _intervalID:uint;// = 0 private var _finish:Number;// = NAN private var _timer:Timer;// = null 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){ this.func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); }; 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 get time():Number{ return (this._time); } 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(); }; }; } public function get duration():Number{ return (this._duration); } public function set duration(_arg1:Number):void{ this._duration = ((_arg1)<=0) ? Infinity : _arg1; } public function get FPS():Number{ return (this._fps); } public function set FPS(_arg1:Number):void{ var _local2:Boolean = this.isPlaying; this.stopEnterFrame(); this._fps = _arg1; if (_local2){ this.startEnterFrame(); }; } public function get position():Number{ return (this.getPosition(this._time)); } public function set position(_arg1:Number):void{ this.setPosition(_arg1); } 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 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 get finish():Number{ return ((this.begin + this.change)); } public function set finish(_arg1:Number):void{ this.change = (_arg1 - this.begin); } 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 yoyo():void{ this.continueTo(this.begin, this.time); } 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; } protected function stopEnterFrame():void{ if (isNaN(this._fps)){ _mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); } else { this._timer.stop(); }; this.isPlaying = false; } public function start():void{ this.rewind(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position)); } public function stop():void{ this.stopEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, 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 rewind(_arg1:Number=0):void{ this._time = _arg1; this.fixTime(); this.update(); } public function fforward():void{ this.time = this._duration; this.fixTime(); } public function nextFrame():void{ if (this.useSeconds){ this.time = ((getTimer() - this._startTime) / 1000); } else { this.time = (this._time + 1); }; } protected function onEnterFrame(_arg1:Event):void{ this.nextFrame(); } protected function timerHandler(_arg1:TimerEvent):void{ this.nextFrame(); _arg1.updateAfterEvent(); } public function prevFrame():void{ if (!this.useSeconds){ this.time = (this._time - 1); }; } private function fixTime():void{ if (this.useSeconds){ this._startTime = (getTimer() - (this._time * 1000)); }; } private function update():void{ this.setPosition(this.getPosition(this._time)); } } }//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_FINISH:String = "motionFinish"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_RESUME:String = "motionResume"; public static const MOTION_LOOP:String = "motionLoop"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ 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
//Movie_3 (tepig_fla.Movie_3) package tepig_fla { import flash.media.*; import flash.display.*; public dynamic class Movie_3 extends MovieClip { public function Movie_3(){ addFrameScript(0, frame1, 6, frame7, 15, frame16, 24, frame25, 27, frame28, 34, frame35, 44, frame45, 53, frame54); } public function tepigSound(){ var _local1:Sound; switch (Math.floor((Math.random() * 20))){ case 0: _local1 = new SoundFart1(); break; case 1: _local1 = new SoundFart2(); break; case 2: _local1 = new SoundFart3(); break; default: _local1 = new SoundFart4(); break; }; _local1.play(); } public function toukoSound(){ var _local1:Sound; switch (Math.floor((Math.random() * 6))){ case 0: case 1: _local1 = new SoundTouko3(); break; case 2: case 3: _local1 = new SoundTouko4(); break; case 4: _local1 = new SoundTouko1(); break; case 5: _local1 = new SoundTouko2(); break; }; _local1.play(); } function frame1(){ } function frame7(){ tepigSound(); } function frame16(){ tepigSound(); } function frame25(){ tepigSound(); } function frame28(){ toukoSound(); } function frame35(){ tepigSound(); } function frame45(){ tepigSound(); } function frame54(){ tepigSound(); } } }//package tepig_fla
Section 5
//Controller (Controller) package { import flash.events.*; import flash.display.*; import fl.transitions.easing.*; import fl.transitions.*; import flash.utils.*; public class Controller extends MovieClip { private const delay:int = 3000; public var background:MovieClip; public var credits:MovieClip; public var speeder:MovieClip; private var timer:Timer; private var is_visible:Boolean;// = true private var tween:Tween; private var speedControl:Speeder; private var creditswindow:MovieClip; private var movie:MovieClip; public function Controller(_arg1:MovieClip){ this.movie = _arg1; this.addEventListener(Event.ADDED_TO_STAGE, handleInit); } private function handleInit(_arg1:Event){ this.y = this.movie.height; this.background.width = this.movie.width; this.creditswindow = new CreditsClip(); this.creditswindow.x = ((this.movie.width / 2) - (this.creditswindow.width / 2)); this.creditswindow.y = ((this.movie.height / 2) - (this.creditswindow.height / 2)); this.creditswindow.closebutton.addEventListener(MouseEvent.CLICK, handleCloseCredits); this.credits.x = this.movie.width; this.credits.button.addEventListener(MouseEvent.CLICK, handleShowCredits); this.speedControl = new Speeder(this.speeder, this.movie, 30, 25, 60); this.parent.addEventListener(MouseEvent.MOUSE_MOVE, handleShowController); startTimer(); } private function startTimer(){ if (timer != null){ timer.stop(); }; timer = new Timer(delay, 1); timer.addEventListener(TimerEvent.TIMER, handleHideController); timer.start(); } private function handleHideController(_arg1:TimerEvent){ this.is_visible = false; if (tween != null){ tween.stop(); }; tween = new Tween(this, "y", Regular.easeOut, this.y, (this.movie.height + this.height), 1, true); } private function handleShowController(_arg1:MouseEvent){ if (this.is_visible == false){ startTimer(); if (tween != null){ tween.stop(); }; tween = new Tween(this, "y", Regular.easeOut, this.y, this.movie.height, 0.3, true); this.is_visible = true; }; } private function handleShowCredits(_arg1:MouseEvent){ if (stage.contains(creditswindow) == false){ stage.addChild(creditswindow); }; } private function handleCloseCredits(_arg1:MouseEvent){ stage.removeChild(creditswindow); } } }//package import flash.events.*; import flash.display.*; import flash.utils.*; import flash.geom.*; class Speeder { private var clip:MovieClip; private var movie:MovieClip; private var timer:Timer; private var min:int; private var max:int; private var framerate:int; private function Speeder(_arg1:MovieClip, _arg2:MovieClip, _arg3:int, _arg4:int, _arg5:int){ this.movie = _arg2; this.min = _arg4; this.max = _arg5; clip = _arg1; clip.handle.x = ((((_arg3 - _arg4) / (_arg5 - _arg4)) * (clip.background.width - clip.handle.width)) + (clip.handle.width / 2)); clip.handle.addEventListener(MouseEvent.MOUSE_DOWN, handleStartDrag); this.framerate = _arg3; playFrame(); } private function handleStartDrag(_arg1:MouseEvent){ clip.handle.stage.addEventListener(MouseEvent.MOUSE_MOVE, handleDrag); clip.handle.stage.addEventListener(MouseEvent.MOUSE_UP, handleStopDrag); clip.handle.startDrag(false, new Rectangle((clip.handle.width / 2), 0, ((clip.background.width - clip.handle.width) + 1), 0)); } private function handleDrag(_arg1:MouseEvent){ this.framerate = Math.round((min + ((clip.handle.x / (clip.background.width - clip.handle.width)) * (max - min)))); } private function handleStopDrag(_arg1:MouseEvent){ clip.handle.stage.removeEventListener(MouseEvent.MOUSE_MOVE, handleDrag); clip.handle.stage.removeEventListener(MouseEvent.MOUSE_UP, handleStopDrag); clip.handle.stopDrag(); } private function playAtFramerate(_arg1:int){ if (this.timer != null){ this.timer.stop(); }; } private function playFrame(_arg1:TimerEvent=null){ timer = new Timer((1000 / framerate), 1); timer.addEventListener(TimerEvent.TIMER, playFrame); timer.start(); if ((movie.currentFrame + 1) > movie.totalFrames){ movie.gotoAndStop(1); } else { movie.gotoAndStop((movie.currentFrame + 1)); }; if (_arg1 != null){ _arg1.updateAfterEvent(); }; } }
Section 6
//CreditsClip (CreditsClip) package { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.text.*; import flash.geom.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.media.*; import flash.net.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.system.*; import flash.ui.*; import flash.xml.*; public dynamic class CreditsClip extends MovieClip { public var closebutton:SimpleButton; public var corradolink:SimpleButton; public var bloolink:SimpleButton; public function CreditsClip(){ addFrameScript(0, frame1); } public function handleClick(_arg1:MouseEvent){ var url:String; var evt = _arg1; switch (evt.target.name){ case "bloolink": url = "http://bloocarrot.blogspot.com"; break; case "corradolink": url = "http://corradosgifs.blogspot.com"; break; }; var req:URLRequest = new URLRequest(url); try { navigateToURL(req, "_blank"); } catch(e:Error) { }; } function frame1(){ this.bloolink.addEventListener(MouseEvent.CLICK, handleClick); this.corradolink.addEventListener(MouseEvent.CLICK, handleClick); } } }//package
Section 7
//Main (Main) package { import flash.events.*; import flash.display.*; public class Main extends MovieClip { public var movie:MovieClip; public var preloader:Preloader; public var controller:Controller; public function Main(){ addFrameScript(0, frame1, 2, frame3); preloader.addEventListener(Event.COMPLETE, onPreloaderComplete); preloader.setLoaderInfo(loaderInfo); } private function onPreloaderComplete(_arg1:Event){ gotoAndStop(3); } function frame1(){ stop(); } function frame3(){ controller = new Controller(this.movie); this.addChild(controller); } } }//package
Section 8
//Preloader (Preloader) package { import flash.events.*; import flash.display.*; import flash.text.*; public class Preloader extends MovieClip { public var progressBar:MovieClip; public var percentageText:TextField; public function setLoaderInfo(_arg1:LoaderInfo):void{ _arg1.addEventListener(ProgressEvent.PROGRESS, onProgress); _arg1.addEventListener(Event.COMPLETE, onComplete); } private function onProgress(_arg1:ProgressEvent):void{ var _local2:int = Math.round(((_arg1.bytesLoaded / _arg1.bytesTotal) * 100)); progressBar.scaleY = (1 - ((1 / 100) * _local2)); percentageText.text = (String(_local2) + "%"); } private function onComplete(_arg1:Event):void{ dispatchEvent(_arg1); } } }//package
Section 9
//SoundFart1 (SoundFart1) package { import flash.media.*; public dynamic class SoundFart1 extends Sound { } }//package
Section 10
//SoundFart2 (SoundFart2) package { import flash.media.*; public dynamic class SoundFart2 extends Sound { } }//package
Section 11
//SoundFart3 (SoundFart3) package { import flash.media.*; public dynamic class SoundFart3 extends Sound { } }//package
Section 12
//SoundFart4 (SoundFart4) package { import flash.media.*; public dynamic class SoundFart4 extends Sound { } }//package
Section 13
//SoundTouko1 (SoundTouko1) package { import flash.media.*; public dynamic class SoundTouko1 extends Sound { } }//package
Section 14
//SoundTouko2 (SoundTouko2) package { import flash.media.*; public dynamic class SoundTouko2 extends Sound { } }//package
Section 15
//SoundTouko3 (SoundTouko3) package { import flash.media.*; public dynamic class SoundTouko3 extends Sound { } }//package
Section 16
//SoundTouko4 (SoundTouko4) package { import flash.media.*; public dynamic class SoundTouko4 extends Sound { } }//package

Library Items

Symbol 1 BitmapUsed by:3 46
Symbol 2 BitmapUsed by:3 45
Symbol 3 GraphicUses:1 2Used by:Timeline
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:8
Symbol 6 FontUsed by:7
Symbol 7 EditableTextUses:6Used by:8
Symbol 8 MovieClip {Preloader}Uses:5 7Used by:Timeline
Symbol 9 FontUsed by:11 21 22
Symbol 10 FontUsed by:11 21 36 37 39 40
Symbol 11 TextUses:9 10Used by:Timeline
Symbol 12 Sound {SoundTouko4}
Symbol 13 Sound {SoundTouko3}
Symbol 14 Sound {SoundTouko2}
Symbol 15 Sound {SoundTouko1}
Symbol 16 Sound {SoundFart4}
Symbol 17 Sound {SoundFart3}
Symbol 18 Sound {SoundFart2}
Symbol 19 Sound {SoundFart1}
Symbol 20 GraphicUsed by:26
Symbol 21 TextUses:10 9Used by:26
Symbol 22 TextUses:9Used by:23
Symbol 23 ButtonUses:22Used by:26
Symbol 24 GraphicUsed by:25
Symbol 25 ButtonUses:24Used by:26
Symbol 26 MovieClip {CreditsClip}Uses:20 21 23 25
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:44
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:38
Symbol 31 GraphicUsed by:34
Symbol 32 GraphicUsed by:34
Symbol 33 GraphicUsed by:34
Symbol 34 ButtonUses:31 32 33Used by:35
Symbol 35 MovieClipUses:34Used by:38
Symbol 36 TextUses:10Used by:38
Symbol 37 TextUses:10Used by:38
Symbol 38 MovieClipUses:30 35 36 37Used by:44
Symbol 39 TextUses:10Used by:44
Symbol 40 TextUses:10Used by:43
Symbol 41 GraphicUsed by:42
Symbol 42 ButtonUses:41Used by:43
Symbol 43 MovieClipUses:40 42Used by:44
Symbol 44 MovieClip {Controller}Uses:28 38 39 43
Symbol 45 GraphicUses:2Used by:165
Symbol 46 GraphicUses:1Used by:165
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:165
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:165
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:165
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:165
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:165
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:165
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:165
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:165
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:165
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:165
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:165
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:165
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:165
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:165
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:165
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:165
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:165
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:165
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:165
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:165
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:165
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:165
Symbol 91 BitmapUsed by:92
Symbol 92 GraphicUses:91Used by:165
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:165
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:165
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:165
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:165
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:165
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:165
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:165
Symbol 107 BitmapUsed by:108
Symbol 108 GraphicUses:107Used by:165
Symbol 109 BitmapUsed by:110
Symbol 110 GraphicUses:109Used by:165
Symbol 111 BitmapUsed by:112
Symbol 112 GraphicUses:111Used by:165
Symbol 113 BitmapUsed by:114
Symbol 114 GraphicUses:113Used by:165
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:165
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:165
Symbol 119 BitmapUsed by:120
Symbol 120 GraphicUses:119Used by:165
Symbol 121 BitmapUsed by:122
Symbol 122 GraphicUses:121Used by:165
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:165
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:165
Symbol 127 BitmapUsed by:128
Symbol 128 GraphicUses:127Used by:165
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:165
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:165
Symbol 133 BitmapUsed by:134
Symbol 134 GraphicUses:133Used by:165
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:165
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:165
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:165
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:165
Symbol 143 BitmapUsed by:144
Symbol 144 GraphicUses:143Used by:165
Symbol 145 BitmapUsed by:146
Symbol 146 GraphicUses:145Used by:165
Symbol 147 BitmapUsed by:148
Symbol 148 GraphicUses:147Used by:165
Symbol 149 BitmapUsed by:150
Symbol 150 GraphicUses:149Used by:165
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:165
Symbol 153 BitmapUsed by:154
Symbol 154 GraphicUses:153Used by:165
Symbol 155 BitmapUsed by:156
Symbol 156 GraphicUses:155Used by:165
Symbol 157 BitmapUsed by:158
Symbol 158 GraphicUses:157Used by:165
Symbol 159 BitmapUsed by:160
Symbol 160 GraphicUses:159Used by:165
Symbol 161 BitmapUsed by:162
Symbol 162 GraphicUses:161Used by:165
Symbol 163 BitmapUsed by:164
Symbol 164 GraphicUses:163Used by:165
Symbol 165 MovieClip {tepig_fla.Movie_3}Uses:45 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100 102 104 106 108 110 112 114 116 118 120 122 124 126 128 130 132 134 136 138 140 142 144 146 148 150 152 154 156 158 160 162 164Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 8 MovieClip {Preloader}
"movie"Frame 3Symbol 165 MovieClip {tepig_fla.Movie_3}
"progressBar"Symbol 8 MovieClip {Preloader} Frame 1Symbol 5 MovieClip
"percentageText"Symbol 8 MovieClip {Preloader} Frame 1Symbol 7 EditableText
"closebutton"Symbol 26 MovieClip {CreditsClip} Frame 1Symbol 23 Button
"bloolink"Symbol 26 MovieClip {CreditsClip} Frame 1Symbol 25 Button
"corradolink"Symbol 26 MovieClip {CreditsClip} Frame 1Symbol 25 Button
"handle"Symbol 35 MovieClip Frame 1Symbol 34 Button
"background"Symbol 38 MovieClip Frame 1Symbol 30 MovieClip
"handle"Symbol 38 MovieClip Frame 1Symbol 35 MovieClip
"button"Symbol 43 MovieClip Frame 1Symbol 42 Button
"background"Symbol 44 MovieClip {Controller} Frame 1Symbol 28 MovieClip
"speeder"Symbol 44 MovieClip {Controller} Frame 1Symbol 38 MovieClip
"credits"Symbol 44 MovieClip {Controller} Frame 1Symbol 43 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.
Protect (24)Timeline Frame 10 bytes ""




http://swfchan.com/20/98532/info.shtml
Created: 10/8 -2019 16:20:40 Last modified: 10/8 -2019 16:20:40 Server time: 25/04 -2024 01:57:32