STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229456 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2574 · P5148 |
This is the info page for Flash #98532 |
<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.easingSection 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.transitionsSection 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.transitionsSection 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_flaSection 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); } } }//packageSection 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); } } }//packageSection 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); } } }//packageSection 9//SoundFart1 (SoundFart1) package { import flash.media.*; public dynamic class SoundFart1 extends Sound { } }//packageSection 10//SoundFart2 (SoundFart2) package { import flash.media.*; public dynamic class SoundFart2 extends Sound { } }//packageSection 11//SoundFart3 (SoundFart3) package { import flash.media.*; public dynamic class SoundFart3 extends Sound { } }//packageSection 12//SoundFart4 (SoundFart4) package { import flash.media.*; public dynamic class SoundFart4 extends Sound { } }//packageSection 13//SoundTouko1 (SoundTouko1) package { import flash.media.*; public dynamic class SoundTouko1 extends Sound { } }//packageSection 14//SoundTouko2 (SoundTouko2) package { import flash.media.*; public dynamic class SoundTouko2 extends Sound { } }//packageSection 15//SoundTouko3 (SoundTouko3) package { import flash.media.*; public dynamic class SoundTouko3 extends Sound { } }//packageSection 16//SoundTouko4 (SoundTouko4) package { import flash.media.*; public dynamic class SoundTouko4 extends Sound { } }//package
Library Items
Symbol 1 Bitmap | Used by:3 46 | |
Symbol 2 Bitmap | Used by:3 45 | |
Symbol 3 Graphic | Uses:1 2 | Used by:Timeline |
Symbol 4 Graphic | Used by:5 | |
Symbol 5 MovieClip | Uses:4 | Used by:8 |
Symbol 6 Font | Used by:7 | |
Symbol 7 EditableText | Uses:6 | Used by:8 |
Symbol 8 MovieClip {Preloader} | Uses:5 7 | Used by:Timeline |
Symbol 9 Font | Used by:11 21 22 | |
Symbol 10 Font | Used by:11 21 36 37 39 40 | |
Symbol 11 Text | Uses:9 10 | Used 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 Graphic | Used by:26 | |
Symbol 21 Text | Uses:10 9 | Used by:26 |
Symbol 22 Text | Uses:9 | Used by:23 |
Symbol 23 Button | Uses:22 | Used by:26 |
Symbol 24 Graphic | Used by:25 | |
Symbol 25 Button | Uses:24 | Used by:26 |
Symbol 26 MovieClip {CreditsClip} | Uses:20 21 23 25 | |
Symbol 27 Graphic | Used by:28 | |
Symbol 28 MovieClip | Uses:27 | Used by:44 |
Symbol 29 Graphic | Used by:30 | |
Symbol 30 MovieClip | Uses:29 | Used by:38 |
Symbol 31 Graphic | Used by:34 | |
Symbol 32 Graphic | Used by:34 | |
Symbol 33 Graphic | Used by:34 | |
Symbol 34 Button | Uses:31 32 33 | Used by:35 |
Symbol 35 MovieClip | Uses:34 | Used by:38 |
Symbol 36 Text | Uses:10 | Used by:38 |
Symbol 37 Text | Uses:10 | Used by:38 |
Symbol 38 MovieClip | Uses:30 35 36 37 | Used by:44 |
Symbol 39 Text | Uses:10 | Used by:44 |
Symbol 40 Text | Uses:10 | Used by:43 |
Symbol 41 Graphic | Used by:42 | |
Symbol 42 Button | Uses:41 | Used by:43 |
Symbol 43 MovieClip | Uses:40 42 | Used by:44 |
Symbol 44 MovieClip {Controller} | Uses:28 38 39 43 | |
Symbol 45 Graphic | Uses:2 | Used by:165 |
Symbol 46 Graphic | Uses:1 | Used by:165 |
Symbol 47 Bitmap | Used by:48 | |
Symbol 48 Graphic | Uses:47 | Used by:165 |
Symbol 49 Bitmap | Used by:50 | |
Symbol 50 Graphic | Uses:49 | Used by:165 |
Symbol 51 Bitmap | Used by:52 | |
Symbol 52 Graphic | Uses:51 | Used by:165 |
Symbol 53 Bitmap | Used by:54 | |
Symbol 54 Graphic | Uses:53 | Used by:165 |
Symbol 55 Bitmap | Used by:56 | |
Symbol 56 Graphic | Uses:55 | Used by:165 |
Symbol 57 Bitmap | Used by:58 | |
Symbol 58 Graphic | Uses:57 | Used by:165 |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:165 |
Symbol 61 Bitmap | Used by:62 | |
Symbol 62 Graphic | Uses:61 | Used by:165 |
Symbol 63 Bitmap | Used by:64 | |
Symbol 64 Graphic | Uses:63 | Used by:165 |
Symbol 65 Bitmap | Used by:66 | |
Symbol 66 Graphic | Uses:65 | Used by:165 |
Symbol 67 Bitmap | Used by:68 | |
Symbol 68 Graphic | Uses:67 | Used by:165 |
Symbol 69 Bitmap | Used by:70 | |
Symbol 70 Graphic | Uses:69 | Used by:165 |
Symbol 71 Bitmap | Used by:72 | |
Symbol 72 Graphic | Uses:71 | Used by:165 |
Symbol 73 Bitmap | Used by:74 | |
Symbol 74 Graphic | Uses:73 | Used by:165 |
Symbol 75 Bitmap | Used by:76 | |
Symbol 76 Graphic | Uses:75 | Used by:165 |
Symbol 77 Bitmap | Used by:78 | |
Symbol 78 Graphic | Uses:77 | Used by:165 |
Symbol 79 Bitmap | Used by:80 | |
Symbol 80 Graphic | Uses:79 | Used by:165 |
Symbol 81 Bitmap | Used by:82 | |
Symbol 82 Graphic | Uses:81 | Used by:165 |
Symbol 83 Bitmap | Used by:84 | |
Symbol 84 Graphic | Uses:83 | Used by:165 |
Symbol 85 Bitmap | Used by:86 | |
Symbol 86 Graphic | Uses:85 | Used by:165 |
Symbol 87 Bitmap | Used by:88 | |
Symbol 88 Graphic | Uses:87 | Used by:165 |
Symbol 89 Bitmap | Used by:90 | |
Symbol 90 Graphic | Uses:89 | Used by:165 |
Symbol 91 Bitmap | Used by:92 | |
Symbol 92 Graphic | Uses:91 | Used by:165 |
Symbol 93 Bitmap | Used by:94 | |
Symbol 94 Graphic | Uses:93 | Used by:165 |
Symbol 95 Bitmap | Used by:96 | |
Symbol 96 Graphic | Uses:95 | Used by:165 |
Symbol 97 Bitmap | Used by:98 | |
Symbol 98 Graphic | Uses:97 | Used by:165 |
Symbol 99 Bitmap | Used by:100 | |
Symbol 100 Graphic | Uses:99 | Used by:165 |
Symbol 101 Bitmap | Used by:102 | |
Symbol 102 Graphic | Uses:101 | Used by:165 |
Symbol 103 Bitmap | Used by:104 | |
Symbol 104 Graphic | Uses:103 | Used by:165 |
Symbol 105 Bitmap | Used by:106 | |
Symbol 106 Graphic | Uses:105 | Used by:165 |
Symbol 107 Bitmap | Used by:108 | |
Symbol 108 Graphic | Uses:107 | Used by:165 |
Symbol 109 Bitmap | Used by:110 | |
Symbol 110 Graphic | Uses:109 | Used by:165 |
Symbol 111 Bitmap | Used by:112 | |
Symbol 112 Graphic | Uses:111 | Used by:165 |
Symbol 113 Bitmap | Used by:114 | |
Symbol 114 Graphic | Uses:113 | Used by:165 |
Symbol 115 Bitmap | Used by:116 | |
Symbol 116 Graphic | Uses:115 | Used by:165 |
Symbol 117 Bitmap | Used by:118 | |
Symbol 118 Graphic | Uses:117 | Used by:165 |
Symbol 119 Bitmap | Used by:120 | |
Symbol 120 Graphic | Uses:119 | Used by:165 |
Symbol 121 Bitmap | Used by:122 | |
Symbol 122 Graphic | Uses:121 | Used by:165 |
Symbol 123 Bitmap | Used by:124 | |
Symbol 124 Graphic | Uses:123 | Used by:165 |
Symbol 125 Bitmap | Used by:126 | |
Symbol 126 Graphic | Uses:125 | Used by:165 |
Symbol 127 Bitmap | Used by:128 | |
Symbol 128 Graphic | Uses:127 | Used by:165 |
Symbol 129 Bitmap | Used by:130 | |
Symbol 130 Graphic | Uses:129 | Used by:165 |
Symbol 131 Bitmap | Used by:132 | |
Symbol 132 Graphic | Uses:131 | Used by:165 |
Symbol 133 Bitmap | Used by:134 | |
Symbol 134 Graphic | Uses:133 | Used by:165 |
Symbol 135 Bitmap | Used by:136 | |
Symbol 136 Graphic | Uses:135 | Used by:165 |
Symbol 137 Bitmap | Used by:138 | |
Symbol 138 Graphic | Uses:137 | Used by:165 |
Symbol 139 Bitmap | Used by:140 | |
Symbol 140 Graphic | Uses:139 | Used by:165 |
Symbol 141 Bitmap | Used by:142 | |
Symbol 142 Graphic | Uses:141 | Used by:165 |
Symbol 143 Bitmap | Used by:144 | |
Symbol 144 Graphic | Uses:143 | Used by:165 |
Symbol 145 Bitmap | Used by:146 | |
Symbol 146 Graphic | Uses:145 | Used by:165 |
Symbol 147 Bitmap | Used by:148 | |
Symbol 148 Graphic | Uses:147 | Used by:165 |
Symbol 149 Bitmap | Used by:150 | |
Symbol 150 Graphic | Uses:149 | Used by:165 |
Symbol 151 Bitmap | Used by:152 | |
Symbol 152 Graphic | Uses:151 | Used by:165 |
Symbol 153 Bitmap | Used by:154 | |
Symbol 154 Graphic | Uses:153 | Used by:165 |
Symbol 155 Bitmap | Used by:156 | |
Symbol 156 Graphic | Uses:155 | Used by:165 |
Symbol 157 Bitmap | Used by:158 | |
Symbol 158 Graphic | Uses:157 | Used by:165 |
Symbol 159 Bitmap | Used by:160 | |
Symbol 160 Graphic | Uses:159 | Used by:165 |
Symbol 161 Bitmap | Used by:162 | |
Symbol 162 Graphic | Uses:161 | Used by:165 |
Symbol 163 Bitmap | Used by:164 | |
Symbol 164 Graphic | Uses:163 | Used 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 164 | Used by:Timeline |
Instance Names
"preloader" | Frame 1 | Symbol 8 MovieClip {Preloader} |
"movie" | Frame 3 | Symbol 165 MovieClip {tepig_fla.Movie_3} |
"progressBar" | Symbol 8 MovieClip {Preloader} Frame 1 | Symbol 5 MovieClip |
"percentageText" | Symbol 8 MovieClip {Preloader} Frame 1 | Symbol 7 EditableText |
"closebutton" | Symbol 26 MovieClip {CreditsClip} Frame 1 | Symbol 23 Button |
"bloolink" | Symbol 26 MovieClip {CreditsClip} Frame 1 | Symbol 25 Button |
"corradolink" | Symbol 26 MovieClip {CreditsClip} Frame 1 | Symbol 25 Button |
"handle" | Symbol 35 MovieClip Frame 1 | Symbol 34 Button |
"background" | Symbol 38 MovieClip Frame 1 | Symbol 30 MovieClip |
"handle" | Symbol 38 MovieClip Frame 1 | Symbol 35 MovieClip |
"button" | Symbol 43 MovieClip Frame 1 | Symbol 42 Button |
"background" | Symbol 44 MovieClip {Controller} Frame 1 | Symbol 28 MovieClip |
"speeder" | Symbol 44 MovieClip {Controller} Frame 1 | Symbol 38 MovieClip |
"credits" | Symbol 44 MovieClip {Controller} Frame 1 | Symbol 43 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS3. |
Protect (24) | Timeline Frame 1 | 0 bytes "" |
|