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

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

Tsunade_Tickled_by_The_Angry_Egg.swf

This is the info page for
Flash #94346

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


Text
The Angry Egg

Presents

ActionScript [AS3]

Section 1
//Elastic (fl.transitions.easing.Elastic) package fl.transitions.easing { public class Elastic { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0, _arg6:Number=0):Number{ var _local7:Number; if (_arg1 == 0){ return (_arg2); }; _arg1 = (_arg1 / _arg4); if (_arg1 == 1){ return ((_arg2 + _arg3)); }; if (!_arg6){ _arg6 = (_arg4 * 0.3); }; if (((!(_arg5)) || ((_arg5 < Math.abs(_arg3))))){ _arg5 = _arg3; _local7 = (_arg6 / 4); } else { _local7 = ((_arg6 / (2 * Math.PI)) * Math.asin((_arg3 / _arg5))); }; return (((((_arg5 * Math.pow(2, (-10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * (2 * Math.PI)) / _arg6))) + _arg3) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0, _arg6:Number=0):Number{ var _local7:Number; if (_arg1 == 0){ return (_arg2); }; _arg1 = (_arg1 / _arg4); if (_arg1 == 1){ return ((_arg2 + _arg3)); }; if (!_arg6){ _arg6 = (_arg4 * 0.3); }; if (((!(_arg5)) || ((_arg5 < Math.abs(_arg3))))){ _arg5 = _arg3; _local7 = (_arg6 / 4); } else { _local7 = ((_arg6 / (2 * Math.PI)) * Math.asin((_arg3 / _arg5))); }; --_arg1; return ((-(((_arg5 * Math.pow(2, (10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * (2 * Math.PI)) / _arg6)))) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0, _arg6:Number=0):Number{ var _local7:Number; if (_arg1 == 0){ return (_arg2); }; _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 == 2){ return ((_arg2 + _arg3)); }; if (!_arg6){ _arg6 = (_arg4 * (0.3 * 1.5)); }; if (((!(_arg5)) || ((_arg5 < Math.abs(_arg3))))){ _arg5 = _arg3; _local7 = (_arg6 / 4); } else { _local7 = ((_arg6 / (2 * Math.PI)) * Math.asin((_arg3 / _arg5))); }; if (_arg1 < 1){ --_arg1; return (((-0.5 * ((_arg5 * Math.pow(2, (10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * (2 * Math.PI)) / _arg6)))) + _arg2)); }; --_arg1; return ((((((_arg5 * Math.pow(2, (-10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * (2 * Math.PI)) / _arg6))) * 0.5) + _arg3) + _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
//egg_3 (Tsunade_fla.egg_3) package Tsunade_fla { import flash.display.*; public dynamic class egg_3 extends MovieClip { public function egg_3(){ addFrameScript(21, frame22); } function frame22(){ stop(); } } }//package Tsunade_fla
Section 5
//eggy_2 (Tsunade_fla.eggy_2) package Tsunade_fla { import flash.display.*; public dynamic class eggy_2 extends MovieClip { public function eggy_2(){ addFrameScript(60, frame61); } function frame61(){ stop(); } } }//package Tsunade_fla
Section 6
//main_5 (Tsunade_fla.main_5) package Tsunade_fla { import flash.display.*; public dynamic class main_5 extends MovieClip { public function main_5(){ addFrameScript(1, frame2, 41, frame42); } function frame2(){ stop(); } function frame42(){ stop(); } } }//package Tsunade_fla
Section 7
//MainTimeline (Tsunade_fla.MainTimeline) package Tsunade_fla { import flash.events.*; import fl.transitions.easing.*; import fl.transitions.*; import flash.display.*; public dynamic class MainTimeline extends MovieClip { public var restart:MovieClip; public var bounce:MovieClip; public var tickle:MovieClip; public function MainTimeline(){ addFrameScript(124, frame125); } public function MCOUT(_arg1:MouseEvent):void{ var _local2:Tween; var _local3:Tween; tickle.gotoAndPlay(nextFrame); _local2 = new Tween(tickle, "scaleX", Elastic.easeOut, 1.5, 1, 1, true); _local3 = new Tween(tickle, "scaleY", Elastic.easeOut, 1.15, 1, 1, true); } public function MCOVER2(_arg1:MouseEvent):void{ var _local2:Tween; var _local3:Tween; restart.mouseChildren = false; restart.gotoAndPlay(nextFrame); _local2 = new Tween(restart, "scaleX", Elastic.easeOut, 1, 1.15, 1, true); _local3 = new Tween(restart, "scaleY", Elastic.easeOut, 1, 1.15, 1, true); } public function MCOUT2(_arg1:MouseEvent):void{ var _local2:Tween; var _local3:Tween; restart.gotoAndPlay(nextFrame); _local2 = new Tween(restart, "scaleX", Elastic.easeOut, 1.5, 1, 1, true); _local3 = new Tween(restart, "scaleY", Elastic.easeOut, 1.15, 1, 1, true); } public function MCOVER(_arg1:MouseEvent):void{ var _local2:Tween; var _local3:Tween; tickle.mouseChildren = false; tickle.gotoAndPlay(nextFrame); _local2 = new Tween(tickle, "scaleX", Elastic.easeOut, 1, 1.15, 1, true); _local3 = new Tween(tickle, "scaleY", Elastic.easeOut, 1, 1.15, 1, true); } function frame125(){ stop(); tickle.addEventListener(MouseEvent.CLICK, clickHandler); restart.addEventListener(MouseEvent.CLICK, clickHandler2); tickle.addEventListener(MouseEvent.MOUSE_OVER, MCOVER); tickle.addEventListener(MouseEvent.MOUSE_OUT, MCOUT); restart.addEventListener(MouseEvent.MOUSE_OVER, MCOVER2); restart.addEventListener(MouseEvent.MOUSE_OUT, MCOUT2); } public function clickHandler(_arg1:MouseEvent):void{ bounce.gotoAndPlay("tickle"); } public function clickHandler2(_arg1:MouseEvent):void{ bounce.gotoAndPlay("start"); } } }//package Tsunade_fla
Section 8
//mot_1 (Tsunade_fla.mot_1) package Tsunade_fla { import flash.display.*; public dynamic class mot_1 extends MovieClip { public function mot_1(){ addFrameScript(76, frame77); } function frame77(){ stop(); } } }//package Tsunade_fla
Section 9
//Symbol1_6 (Tsunade_fla.Symbol1_6) package Tsunade_fla { import flash.display.*; public dynamic class Symbol1_6 extends MovieClip { public function Symbol1_6(){ addFrameScript(57, frame58); } function frame58(){ stop(); } } }//package Tsunade_fla

Library Items

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

Instance Names

"bounce"Frame 95Symbol 271 MovieClip {Tsunade_fla.main_5}
"tickle"Frame 125Symbol 273 MovieClip
"restart"Frame 125Symbol 275 MovieClip

Special Tags

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

Labels

"start"Symbol 271 MovieClip {Tsunade_fla.main_5} Frame 1
"tickle"Symbol 271 MovieClip {Tsunade_fla.main_5} Frame 3




http://swfchan.com/19/94346/info.shtml
Created: 26/3 -2019 07:02:51 Last modified: 26/3 -2019 07:02:51 Server time: 25/04 -2024 12:13:28