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

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

feet strike.swf

This is the info page for
Flash #139685

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


Text
Strike

Strike

Non Stop

Non Stop

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
//bounce_1 (princessdiane_fla.bounce_1) package princessdiane_fla { import flash.display.*; public dynamic class bounce_1 extends MovieClip { public function bounce_1(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 331, frame332); } function frame332(){ stop(); } function frame10(){ stop(); } function frame14(){ stop(); } function frame12(){ stop(); } function frame3(){ stop(); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); } function frame13(){ stop(); } function frame4(){ stop(); } function frame5(){ stop(); } function frame9(){ stop(); } function frame16(){ stop(); } function frame8(){ stop(); } function frame2(){ stop(); } function frame15(){ stop(); } function frame11(){ stop(); } } }//package princessdiane_fla
Section 5
//hit1_4 (princessdiane_fla.hit1_4) package princessdiane_fla { import flash.display.*; public dynamic class hit1_4 extends MovieClip { public function hit1_4(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 6
//hit10_15 (princessdiane_fla.hit10_15) package princessdiane_fla { import flash.display.*; public dynamic class hit10_15 extends MovieClip { public function hit10_15(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 7
//hit11_16 (princessdiane_fla.hit11_16) package princessdiane_fla { import flash.display.*; public dynamic class hit11_16 extends MovieClip { public function hit11_16(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 8
//hit12_17 (princessdiane_fla.hit12_17) package princessdiane_fla { import flash.display.*; public dynamic class hit12_17 extends MovieClip { public function hit12_17(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 9
//hit13_18 (princessdiane_fla.hit13_18) package princessdiane_fla { import flash.display.*; public dynamic class hit13_18 extends MovieClip { public function hit13_18(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 10
//hit14_19 (princessdiane_fla.hit14_19) package princessdiane_fla { import flash.display.*; public dynamic class hit14_19 extends MovieClip { public function hit14_19(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 11
//hit15_20 (princessdiane_fla.hit15_20) package princessdiane_fla { import flash.display.*; public dynamic class hit15_20 extends MovieClip { public function hit15_20(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 12
//hit2_6 (princessdiane_fla.hit2_6) package princessdiane_fla { import flash.display.*; public dynamic class hit2_6 extends MovieClip { public function hit2_6(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 13
//hit3_7 (princessdiane_fla.hit3_7) package princessdiane_fla { import flash.display.*; public dynamic class hit3_7 extends MovieClip { public function hit3_7(){ addFrameScript(18, frame19); } function frame19(){ stop(); } } }//package princessdiane_fla
Section 14
//hit4_8 (princessdiane_fla.hit4_8) package princessdiane_fla { import flash.display.*; public dynamic class hit4_8 extends MovieClip { public function hit4_8(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 15
//hit5_9 (princessdiane_fla.hit5_9) package princessdiane_fla { import flash.display.*; public dynamic class hit5_9 extends MovieClip { public function hit5_9(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 16
//hit6_11 (princessdiane_fla.hit6_11) package princessdiane_fla { import flash.display.*; public dynamic class hit6_11 extends MovieClip { public function hit6_11(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 17
//hit7_12 (princessdiane_fla.hit7_12) package princessdiane_fla { import flash.display.*; public dynamic class hit7_12 extends MovieClip { public function hit7_12(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 18
//hit8_13 (princessdiane_fla.hit8_13) package princessdiane_fla { import flash.display.*; public dynamic class hit8_13 extends MovieClip { public function hit8_13(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 19
//hit9_14 (princessdiane_fla.hit9_14) package princessdiane_fla { import flash.display.*; public dynamic class hit9_14 extends MovieClip { public function hit9_14(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package princessdiane_fla
Section 20
//jump_21 (princessdiane_fla.jump_21) package princessdiane_fla { import flash.display.*; public dynamic class jump_21 extends MovieClip { public function jump_21(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package princessdiane_fla
Section 21
//MainTimeline (princessdiane_fla.MainTimeline) package princessdiane_fla { import flash.events.*; import fl.transitions.easing.*; import fl.transitions.*; import flash.display.*; public dynamic class MainTimeline extends MovieClip { public var jumpbtn:MovieClip; public var bounce:MovieClip; public var RESETbtn:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1); } public function MCOUT(_arg1:MouseEvent):void{ var _local2:Tween; var _local3:Tween; jumpbtn.gotoAndPlay(nextFrame); _local2 = new Tween(jumpbtn, "scaleX", Elastic.easeOut, 1.5, 1, 1, true); _local3 = new Tween(jumpbtn, "scaleY", Elastic.easeOut, 1.15, 1, 1, true); } public function MCOVER2(_arg1:MouseEvent):void{ var _local2:Tween; var _local3:Tween; RESETbtn.mouseChildren = false; RESETbtn.gotoAndPlay(nextFrame); _local2 = new Tween(RESETbtn, "scaleX", Elastic.easeOut, 1, 1.15, 1, true); _local3 = new Tween(RESETbtn, "scaleY", Elastic.easeOut, 1, 1.15, 1, true); } public function clickHandlers(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler2); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler3); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler4); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler5); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler6); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler7); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler8); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler9); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler10); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler11); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler12); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler13); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler14); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler15); jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler16); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler); bounce.gotoAndPlay("full"); } public function clickHandler12(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler12); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler13); bounce.gotoAndPlay("hit12"); } public function clickHandler13(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler13); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler14); bounce.gotoAndPlay("hit13"); } public function clickHandler14(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler14); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler15); bounce.gotoAndPlay("hit14"); } public function clickHandler10(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler10); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler11); bounce.gotoAndPlay("hit10"); } public function clickHandler16(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler16); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler); bounce.gotoAndPlay("start"); } public function MCOUT2(_arg1:MouseEvent):void{ var _local2:Tween; var _local3:Tween; RESETbtn.gotoAndPlay(nextFrame); _local2 = new Tween(RESETbtn, "scaleX", Elastic.easeOut, 1.5, 1, 1, true); _local3 = new Tween(RESETbtn, "scaleY", Elastic.easeOut, 1.15, 1, 1, true); } public function MCOVER(_arg1:MouseEvent):void{ var _local2:Tween; var _local3:Tween; jumpbtn.mouseChildren = false; jumpbtn.gotoAndPlay(nextFrame); _local2 = new Tween(jumpbtn, "scaleX", Elastic.easeOut, 1, 1.15, 1, true); _local3 = new Tween(jumpbtn, "scaleY", Elastic.easeOut, 1, 1.15, 1, true); } function frame1(){ RESETbtn.addEventListener(MouseEvent.CLICK, clickHandlers); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler); jumpbtn.addEventListener(MouseEvent.MOUSE_OVER, MCOVER); jumpbtn.addEventListener(MouseEvent.MOUSE_OUT, MCOUT); RESETbtn.addEventListener(MouseEvent.MOUSE_OVER, MCOVER2); RESETbtn.addEventListener(MouseEvent.MOUSE_OUT, MCOUT2); } public function clickHandler11(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler11); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler12); bounce.gotoAndPlay("hit11"); } public function clickHandler15(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler15); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler16); bounce.gotoAndPlay("hit15"); } public function clickHandler(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler2); bounce.gotoAndPlay("hit1"); } public function clickHandler2(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler2); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler3); bounce.gotoAndPlay("hit2"); } public function clickHandler3(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler3); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler4); bounce.gotoAndPlay("hit3"); } public function clickHandler4(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler4); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler5); bounce.gotoAndPlay("hit4"); } public function clickHandler5(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler5); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler6); bounce.gotoAndPlay("hit5"); } public function clickHandler6(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler6); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler7); bounce.gotoAndPlay("hit6"); } public function clickHandler7(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler7); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler8); bounce.gotoAndPlay("hit7"); } public function clickHandler8(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler8); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler9); bounce.gotoAndPlay("hit8"); } public function clickHandler9(_arg1:MouseEvent):void{ jumpbtn.removeEventListener(MouseEvent.CLICK, clickHandler9); jumpbtn.addEventListener(MouseEvent.CLICK, clickHandler10); bounce.gotoAndPlay("hit9"); } } }//package princessdiane_fla
Section 22
//RESET_22 (princessdiane_fla.RESET_22) package princessdiane_fla { import flash.display.*; public dynamic class RESET_22 extends MovieClip { public function RESET_22(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package princessdiane_fla

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:7 38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClipUses:3Used by:7 38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 5 GraphicUsed by:7
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:2 4 5 6Used by:342
Symbol 8 GraphicUsed by:38
Symbol 9 GraphicUsed by:38
Symbol 10 GraphicUsed by:38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 11 GraphicUsed by:38
Symbol 12 GraphicUsed by:38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 13 GraphicUsed by:38
Symbol 14 GraphicUsed by:38
Symbol 15 GraphicUsed by:38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 16 GraphicUsed by:38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 17 GraphicUsed by:38
Symbol 18 GraphicUsed by:38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 19 GraphicUsed by:38
Symbol 20 GraphicUsed by:38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 21 GraphicUsed by:38
Symbol 22 GraphicUsed by:38
Symbol 23 GraphicUsed by:38
Symbol 24 GraphicUsed by:38
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:38 59 81 168 189 210 296 318 341
Symbol 27 GraphicUsed by:38
Symbol 28 GraphicUsed by:38 59 81 101 127 148 168 189 210 231
Symbol 29 GraphicUsed by:38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 30 GraphicUsed by:38
Symbol 31 GraphicUsed by:38
Symbol 32 GraphicUsed by:38
Symbol 33 GraphicUsed by:38
Symbol 34 GraphicUsed by:38
Symbol 35 GraphicUsed by:38
Symbol 36 GraphicUsed by:38 59 81 101 127 148 168 189 210 231 253 274 296 318 341
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClip {princessdiane_fla.hit1_4}Uses:2 4 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37Used by:342
Symbol 39 GraphicUsed by:59
Symbol 40 GraphicUsed by:59
Symbol 41 GraphicUsed by:59
Symbol 42 GraphicUsed by:59
Symbol 43 GraphicUsed by:59
Symbol 44 GraphicUsed by:59
Symbol 45 GraphicUsed by:59
Symbol 46 GraphicUsed by:59
Symbol 47 GraphicUsed by:59
Symbol 48 GraphicUsed by:59
Symbol 49 GraphicUsed by:59
Symbol 50 GraphicUsed by:59
Symbol 51 GraphicUsed by:59 81
Symbol 52 GraphicUsed by:59
Symbol 53 GraphicUsed by:59
Symbol 54 GraphicUsed by:59
Symbol 55 GraphicUsed by:59
Symbol 56 GraphicUsed by:59
Symbol 57 GraphicUsed by:59
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClip {princessdiane_fla.hit2_6}Uses:2 4 39 40 10 41 12 42 43 15 16 44 18 45 20 46 47 48 49 26 50 51 28 29 52 53 54 55 56 57 36 58Used by:342
Symbol 60 GraphicUsed by:81
Symbol 61 GraphicUsed by:81
Symbol 62 GraphicUsed by:81
Symbol 63 GraphicUsed by:81
Symbol 64 GraphicUsed by:81
Symbol 65 GraphicUsed by:81
Symbol 66 GraphicUsed by:81
Symbol 67 GraphicUsed by:81
Symbol 68 GraphicUsed by:81
Symbol 69 GraphicUsed by:81
Symbol 70 GraphicUsed by:81
Symbol 71 GraphicUsed by:81
Symbol 72 GraphicUsed by:81
Symbol 73 GraphicUsed by:81 101
Symbol 74 GraphicUsed by:81
Symbol 75 GraphicUsed by:81
Symbol 76 GraphicUsed by:81
Symbol 77 GraphicUsed by:81
Symbol 78 GraphicUsed by:81
Symbol 79 GraphicUsed by:81
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClip {princessdiane_fla.hit3_7}Uses:2 4 60 61 10 62 51 12 63 64 15 16 65 18 66 20 67 68 69 70 71 26 72 73 28 29 74 75 76 77 78 79 36 80Used by:342
Symbol 82 GraphicUsed by:101
Symbol 83 GraphicUsed by:101
Symbol 84 GraphicUsed by:101
Symbol 85 GraphicUsed by:101
Symbol 86 GraphicUsed by:101
Symbol 87 GraphicUsed by:101
Symbol 88 GraphicUsed by:101
Symbol 89 GraphicUsed by:101
Symbol 90 GraphicUsed by:101
Symbol 91 GraphicUsed by:101
Symbol 92 GraphicUsed by:101
Symbol 93 GraphicUsed by:101
Symbol 94 GraphicUsed by:101
Symbol 95 GraphicUsed by:101
Symbol 96 GraphicUsed by:101
Symbol 97 GraphicUsed by:101
Symbol 98 GraphicUsed by:101
Symbol 99 GraphicUsed by:101
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClip {princessdiane_fla.hit4_8}Uses:2 4 82 83 10 84 12 85 86 15 16 87 18 88 20 89 90 91 92 93 73 28 29 94 95 96 97 98 99 36 100Used by:342
Symbol 102 GraphicUsed by:127
Symbol 103 GraphicUsed by:127
Symbol 104 GraphicUsed by:127
Symbol 105 GraphicUsed by:127
Symbol 106 GraphicUsed by:127
Symbol 107 GraphicUsed by:127
Symbol 108 GraphicUsed by:127
Symbol 109 GraphicUsed by:127
Symbol 110 GraphicUsed by:127
Symbol 111 GraphicUsed by:127
Symbol 112 GraphicUsed by:127
Symbol 113 GraphicUsed by:127
Symbol 114 GraphicUsed by:127
Symbol 115 GraphicUsed by:127
Symbol 116 GraphicUsed by:127
Symbol 117 GraphicUsed by:127
Symbol 118 GraphicUsed by:127
Symbol 119 GraphicUsed by:127
Symbol 120 GraphicUsed by:127
Symbol 121 GraphicUsed by:127
Symbol 122 GraphicUsed by:126
Symbol 123 GraphicUsed by:126
Symbol 124 GraphicUsed by:126
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:122 123 124 125Used by:127 148 168 189 210 231 253 274 296 318 341
Symbol 127 MovieClip {princessdiane_fla.hit5_9}Uses:2 4 102 103 10 104 12 105 106 15 16 107 18 108 20 109 110 111 112 113 114 28 29 115 116 117 118 119 120 36 121 126Used by:342
Symbol 128 GraphicUsed by:148
Symbol 129 GraphicUsed by:148
Symbol 130 GraphicUsed by:148
Symbol 131 GraphicUsed by:148
Symbol 132 GraphicUsed by:148
Symbol 133 GraphicUsed by:148
Symbol 134 GraphicUsed by:148
Symbol 135 GraphicUsed by:148
Symbol 136 GraphicUsed by:148
Symbol 137 GraphicUsed by:148
Symbol 138 GraphicUsed by:148
Symbol 139 GraphicUsed by:148
Symbol 140 GraphicUsed by:148 168
Symbol 141 GraphicUsed by:148
Symbol 142 GraphicUsed by:148
Symbol 143 GraphicUsed by:148
Symbol 144 GraphicUsed by:148
Symbol 145 GraphicUsed by:148
Symbol 146 GraphicUsed by:148
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClip {princessdiane_fla.hit6_11}Uses:2 4 128 129 10 130 12 131 132 15 16 133 18 134 20 135 136 137 138 139 140 28 29 141 142 143 144 145 146 36 147 126Used by:342
Symbol 149 GraphicUsed by:168
Symbol 150 GraphicUsed by:168
Symbol 151 GraphicUsed by:168
Symbol 152 GraphicUsed by:168
Symbol 153 GraphicUsed by:168
Symbol 154 GraphicUsed by:168
Symbol 155 GraphicUsed by:168
Symbol 156 GraphicUsed by:168
Symbol 157 GraphicUsed by:168
Symbol 158 GraphicUsed by:168
Symbol 159 GraphicUsed by:168
Symbol 160 GraphicUsed by:168
Symbol 161 GraphicUsed by:168
Symbol 162 GraphicUsed by:168
Symbol 163 GraphicUsed by:168
Symbol 164 GraphicUsed by:168
Symbol 165 GraphicUsed by:168
Symbol 166 GraphicUsed by:168
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClip {princessdiane_fla.hit7_12}Uses:2 4 149 150 10 151 12 152 153 15 16 154 18 155 20 156 157 158 159 26 160 140 28 29 161 162 163 164 165 166 36 167 126Used by:342
Symbol 169 GraphicUsed by:189
Symbol 170 GraphicUsed by:189
Symbol 171 GraphicUsed by:189
Symbol 172 GraphicUsed by:189
Symbol 173 GraphicUsed by:189
Symbol 174 GraphicUsed by:189
Symbol 175 GraphicUsed by:189
Symbol 176 GraphicUsed by:189
Symbol 177 GraphicUsed by:189
Symbol 178 GraphicUsed by:189
Symbol 179 GraphicUsed by:189
Symbol 180 GraphicUsed by:189
Symbol 181 GraphicUsed by:189
Symbol 182 GraphicUsed by:189
Symbol 183 GraphicUsed by:189
Symbol 184 GraphicUsed by:189
Symbol 185 GraphicUsed by:189
Symbol 186 GraphicUsed by:189
Symbol 187 GraphicUsed by:189
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClip {princessdiane_fla.hit8_13}Uses:2 4 169 170 10 171 12 172 173 15 16 174 18 175 20 176 177 178 179 26 180 181 28 29 182 183 184 185 186 187 36 188 126Used by:342
Symbol 190 GraphicUsed by:210
Symbol 191 GraphicUsed by:210
Symbol 192 GraphicUsed by:210
Symbol 193 GraphicUsed by:210
Symbol 194 GraphicUsed by:210
Symbol 195 GraphicUsed by:210
Symbol 196 GraphicUsed by:210
Symbol 197 GraphicUsed by:210
Symbol 198 GraphicUsed by:210
Symbol 199 GraphicUsed by:210
Symbol 200 GraphicUsed by:210
Symbol 201 GraphicUsed by:210
Symbol 202 GraphicUsed by:210
Symbol 203 GraphicUsed by:210
Symbol 204 GraphicUsed by:210
Symbol 205 GraphicUsed by:210
Symbol 206 GraphicUsed by:210
Symbol 207 GraphicUsed by:210
Symbol 208 GraphicUsed by:210
Symbol 209 GraphicUsed by:210
Symbol 210 MovieClip {princessdiane_fla.hit9_14}Uses:2 4 190 191 10 192 12 193 194 15 16 195 18 196 20 197 198 199 200 26 201 202 28 29 203 204 205 206 207 208 36 209 126Used by:342
Symbol 211 GraphicUsed by:231
Symbol 212 GraphicUsed by:231
Symbol 213 GraphicUsed by:231
Symbol 214 GraphicUsed by:231
Symbol 215 GraphicUsed by:231
Symbol 216 GraphicUsed by:231
Symbol 217 GraphicUsed by:231
Symbol 218 GraphicUsed by:231
Symbol 219 GraphicUsed by:231
Symbol 220 GraphicUsed by:231
Symbol 221 GraphicUsed by:231
Symbol 222 GraphicUsed by:231
Symbol 223 GraphicUsed by:231
Symbol 224 GraphicUsed by:231
Symbol 225 GraphicUsed by:231
Symbol 226 GraphicUsed by:231
Symbol 227 GraphicUsed by:231
Symbol 228 GraphicUsed by:231
Symbol 229 GraphicUsed by:231
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClip {princessdiane_fla.hit10_15}Uses:2 4 211 212 10 213 12 214 215 15 16 216 18 217 20 218 219 220 221 222 223 28 29 224 225 226 227 228 229 36 230 126Used by:342
Symbol 232 GraphicUsed by:253
Symbol 233 GraphicUsed by:253
Symbol 234 GraphicUsed by:253
Symbol 235 GraphicUsed by:253
Symbol 236 GraphicUsed by:253
Symbol 237 GraphicUsed by:253
Symbol 238 GraphicUsed by:253
Symbol 239 GraphicUsed by:253
Symbol 240 GraphicUsed by:253
Symbol 241 GraphicUsed by:253
Symbol 242 GraphicUsed by:253
Symbol 243 GraphicUsed by:253
Symbol 244 GraphicUsed by:253
Symbol 245 GraphicUsed by:253 274 296 318 341
Symbol 246 GraphicUsed by:253
Symbol 247 GraphicUsed by:253
Symbol 248 GraphicUsed by:253
Symbol 249 GraphicUsed by:253
Symbol 250 GraphicUsed by:253
Symbol 251 GraphicUsed by:253
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClip {princessdiane_fla.hit11_16}Uses:2 4 232 233 10 234 12 235 236 15 16 237 18 238 20 239 240 241 242 243 244 245 29 246 247 248 249 250 251 36 252 126Used by:342
Symbol 254 GraphicUsed by:274
Symbol 255 GraphicUsed by:274
Symbol 256 GraphicUsed by:274
Symbol 257 GraphicUsed by:274
Symbol 258 GraphicUsed by:274
Symbol 259 GraphicUsed by:274
Symbol 260 GraphicUsed by:274
Symbol 261 GraphicUsed by:274
Symbol 262 GraphicUsed by:274
Symbol 263 GraphicUsed by:274
Symbol 264 GraphicUsed by:274
Symbol 265 GraphicUsed by:274
Symbol 266 GraphicUsed by:274 296 318
Symbol 267 GraphicUsed by:274
Symbol 268 GraphicUsed by:274
Symbol 269 GraphicUsed by:274
Symbol 270 GraphicUsed by:274 296 341
Symbol 271 GraphicUsed by:274
Symbol 272 GraphicUsed by:274
Symbol 273 GraphicUsed by:274
Symbol 274 MovieClip {princessdiane_fla.hit12_17}Uses:2 4 254 255 10 256 12 257 258 15 16 259 18 260 20 261 262 263 264 265 266 245 29 267 268 269 270 271 272 36 273 126Used by:342
Symbol 275 GraphicUsed by:296
Symbol 276 GraphicUsed by:296
Symbol 277 GraphicUsed by:296
Symbol 278 GraphicUsed by:296
Symbol 279 GraphicUsed by:296
Symbol 280 GraphicUsed by:296
Symbol 281 GraphicUsed by:296
Symbol 282 GraphicUsed by:296
Symbol 283 GraphicUsed by:296
Symbol 284 GraphicUsed by:296
Symbol 285 GraphicUsed by:296
Symbol 286 GraphicUsed by:296 318
Symbol 287 GraphicUsed by:296
Symbol 288 GraphicUsed by:296
Symbol 289 GraphicUsed by:296
Symbol 290 GraphicUsed by:296
Symbol 291 GraphicUsed by:296
Symbol 292 GraphicUsed by:296
Symbol 293 GraphicUsed by:296
Symbol 294 GraphicUsed by:296
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClip {princessdiane_fla.hit13_18}Uses:2 4 275 276 10 277 278 266 12 279 280 15 16 281 18 282 20 283 284 285 286 287 26 288 245 29 289 290 291 292 270 293 294 36 295 126Used by:342
Symbol 297 GraphicUsed by:318
Symbol 298 GraphicUsed by:318
Symbol 299 GraphicUsed by:318
Symbol 300 GraphicUsed by:318
Symbol 301 GraphicUsed by:318
Symbol 302 GraphicUsed by:318
Symbol 303 GraphicUsed by:318
Symbol 304 GraphicUsed by:318
Symbol 305 GraphicUsed by:318
Symbol 306 GraphicUsed by:318
Symbol 307 GraphicUsed by:318
Symbol 308 GraphicUsed by:318
Symbol 309 GraphicUsed by:318
Symbol 310 GraphicUsed by:318 341
Symbol 311 GraphicUsed by:318
Symbol 312 GraphicUsed by:318
Symbol 313 GraphicUsed by:318
Symbol 314 GraphicUsed by:318
Symbol 315 GraphicUsed by:318
Symbol 316 GraphicUsed by:318
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClip {princessdiane_fla.hit14_19}Uses:2 4 297 298 10 299 300 266 12 301 302 15 16 303 18 304 20 305 306 307 286 308 26 309 310 245 29 311 312 313 314 315 316 36 317 126Used by:342
Symbol 319 GraphicUsed by:341
Symbol 320 GraphicUsed by:341
Symbol 321 GraphicUsed by:341
Symbol 322 GraphicUsed by:341
Symbol 323 GraphicUsed by:341
Symbol 324 GraphicUsed by:341
Symbol 325 GraphicUsed by:341
Symbol 326 GraphicUsed by:341
Symbol 327 GraphicUsed by:341
Symbol 328 GraphicUsed by:341
Symbol 329 GraphicUsed by:341
Symbol 330 GraphicUsed by:341
Symbol 331 GraphicUsed by:341
Symbol 332 GraphicUsed by:341
Symbol 333 GraphicUsed by:341
Symbol 334 GraphicUsed by:341
Symbol 335 GraphicUsed by:341
Symbol 336 GraphicUsed by:341
Symbol 337 GraphicUsed by:341
Symbol 338 GraphicUsed by:341
Symbol 339 GraphicUsed by:341
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClip {princessdiane_fla.hit15_20}Uses:2 4 319 320 10 321 322 310 12 323 324 15 16 325 18 326 20 327 328 329 330 331 26 332 333 245 29 334 335 336 337 270 338 339 36 340 126Used by:342
Symbol 342 MovieClip {princessdiane_fla.bounce_1}Uses:7 38 59 81 101 127 148 168 189 210 231 253 274 296 318 341Used by:Timeline
Symbol 343 GraphicUsed by:Timeline
Symbol 344 GraphicUsed by:349 352
Symbol 345 FontUsed by:346 348 350 351
Symbol 346 TextUses:345Used by:349
Symbol 347 GraphicUsed by:349 352
Symbol 348 TextUses:345Used by:349
Symbol 349 MovieClip {princessdiane_fla.jump_21}Uses:344 346 347 348Used by:Timeline
Symbol 350 TextUses:345Used by:352
Symbol 351 TextUses:345Used by:352
Symbol 352 MovieClip {princessdiane_fla.RESET_22}Uses:344 350 347 351Used by:Timeline
Symbol 353 BitmapUsed by:354
Symbol 354 GraphicUses:353Used by:355
Symbol 355 MovieClipUses:354Used by:Timeline

Instance Names

"bounce"Frame 1Symbol 342 MovieClip {princessdiane_fla.bounce_1}
"jumpbtn"Frame 1Symbol 349 MovieClip {princessdiane_fla.jump_21}
"RESETbtn"Frame 1Symbol 352 MovieClip {princessdiane_fla.RESET_22}

Special Tags

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

Labels

"start"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 1
"hit1"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 2
"hit2"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 3
"hit3"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 4
"hit4"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 5
"hit5"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 6
"hit6"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 7
"hit7"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 8
"hit8"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 9
"hit9"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 10
"hit10"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 11
"hit11"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 12
"hit12"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 13
"hit13"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 14
"hit14"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 15
"hit15"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 16
"full"Symbol 342 MovieClip {princessdiane_fla.bounce_1} Frame 17




http://swfchan.com/28/139685/info.shtml
Created: 28/10 -2018 02:18:10 Last modified: 28/10 -2018 02:18:10 Server time: 28/04 -2024 17:11:06