STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229672 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5191 |
This is the info page for Flash #162825 |
Enjoy the Summer Holidays! |
Instructions: Cut the clothing (including the white bits) out of the paper. Attach the clothing to the paper-doll by bending the white bits to the back. |
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.utils.*; import flash.display.*; 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//bra_6 (july2013_fla.bra_6) package july2013_fla { import flash.display.*; public dynamic class bra_6 extends MovieClip { public function bra_6(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 5//item10_13 (july2013_fla.item10_13) package july2013_fla { import flash.display.*; public dynamic class item10_13 extends MovieClip { public function item10_13(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 6//item11_15 (july2013_fla.item11_15) package july2013_fla { import flash.display.*; public dynamic class item11_15 extends MovieClip { public function item11_15(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 7//item2_7 (july2013_fla.item2_7) package july2013_fla { import flash.display.*; public dynamic class item2_7 extends MovieClip { public function item2_7(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 8//item3_5 (july2013_fla.item3_5) package july2013_fla { import flash.display.*; public dynamic class item3_5 extends MovieClip { public function item3_5(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 9//item4_8 (july2013_fla.item4_8) package july2013_fla { import flash.display.*; public dynamic class item4_8 extends MovieClip { public function item4_8(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 10//item5_14 (july2013_fla.item5_14) package july2013_fla { import flash.display.*; public dynamic class item5_14 extends MovieClip { public function item5_14(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 11//item6_9 (july2013_fla.item6_9) package july2013_fla { import flash.display.*; public dynamic class item6_9 extends MovieClip { public function item6_9(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 12//item7_10 (july2013_fla.item7_10) package july2013_fla { import flash.display.*; public dynamic class item7_10 extends MovieClip { public function item7_10(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 13//item8_11 (july2013_fla.item8_11) package july2013_fla { import flash.display.*; public dynamic class item8_11 extends MovieClip { public function item8_11(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 14//item9_12 (july2013_fla.item9_12) package july2013_fla { import flash.display.*; public dynamic class item9_12 extends MovieClip { public function item9_12(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package july2013_flaSection 15//MainTimeline (july2013_fla.MainTimeline) package july2013_fla { import flash.events.*; import fl.transitions.easing.*; import fl.transitions.*; import flash.utils.*; import flash.display.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.geom.*; import flash.media.*; import flash.net.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.system.*; import flash.text.*; import flash.ui.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var item5:MovieClip; public var item6:MovieClip; public var item7:MovieClip; public var item10:MovieClip; public var item8:MovieClip; public var item11:MovieClip; public var item9:MovieClip; public var calendar:MovieClip; public var base:MovieClip; public var item1:MovieClip; public var item2:MovieClip; public var item3:MovieClip; public var item4:MovieClip; public var dragInProgress; public var tweenX:Tween; public var tweenY:Tween; public var itemDragged; public function MainTimeline(){ addFrameScript(0, frame1); } public function dragStart(_arg1:MouseEvent):void{ itemDragged = 0; if ((((((((((((((((((((((_arg1.target.name == "item1")) || ((_arg1.target.name == "item2")))) || ((_arg1.target.name == "item3")))) || ((_arg1.target.name == "item4")))) || ((_arg1.target.name == "item5")))) || ((_arg1.target.name == "item6")))) || ((_arg1.target.name == "item7")))) || ((_arg1.target.name == "item8")))) || ((_arg1.target.name == "item9")))) || ((_arg1.target.name == "item10")))) || ((_arg1.target.name == "item11")))){ _arg1.target.gotoAndStop(1); _arg1.target.startDrag(); dragInProgress = true; }; } public function dragStop(_arg1:MouseEvent):void{ var _local2:* = 0; var _local3:* = 0; if (dragInProgress == true){ if ((((((((((((((((((((((_arg1.target.name == "item1")) || ((_arg1.target.name == "item2")))) || ((_arg1.target.name == "item3")))) || ((_arg1.target.name == "item4")))) || ((_arg1.target.name == "item5")))) || ((_arg1.target.name == "item6")))) || ((_arg1.target.name == "item7")))) || ((_arg1.target.name == "item8")))) || ((_arg1.target.name == "item9")))) || ((_arg1.target.name == "item10")))) || ((_arg1.target.name == "item11")))){ dragInProgress = false; _arg1.target.stopDrag(); if ((((_arg1.target.x > 282)) && ((_arg1.target.x < 534)))){ if (_arg1.target.name == "item1"){ _local2 = 474.75; _local3 = 198.05; } else { if (_arg1.target.name == "item2"){ _local2 = 476.9; _local3 = 273; } else { if (_arg1.target.name == "item3"){ _local2 = 475.6; _local3 = 228.75; } else { if (_arg1.target.name == "item4"){ _local2 = 474.85; _local3 = 192.15; } else { if (_arg1.target.name == "item5"){ _local2 = 457.8; _local3 = 305.2; } else { if (_arg1.target.name == "item6"){ _local2 = 454; _local3 = 72.4; } else { if (_arg1.target.name == "item7"){ _local2 = 399.9; _local3 = 529.35; } else { if (_arg1.target.name == "item8"){ _local2 = 402.45; _local3 = 508.9; } else { if (_arg1.target.name == "item9"){ _local2 = 471.2; _local3 = 254.15; } else { if (_arg1.target.name == "item10"){ _local2 = 466.1; _local3 = 313.75; } else { _local2 = 450.8; _local3 = 237.2; }; }; }; }; }; }; }; }; }; }; tweenX = new Tween(_arg1.target, "x", Regular.easeOut, _arg1.target.x, _local2, 0.3, true); tweenX.FPS = 40; tweenY = new Tween(_arg1.target, "y", Regular.easeOut, _arg1.target.y, _local3, 0.3, true); tweenY.FPS = 40; _arg1.target.gotoAndStop(2); } else { if ((((_arg1.target.x > 249)) && ((_arg1.target.x < 573)))){ if (_arg1.target.x > 400){ tweenX = new Tween(_arg1.target, "x", Regular.easeOut, _arg1.target.x, 573, 0.3, true); tweenX.FPS = 40; } else { tweenX = new Tween(_arg1.target, "x", Regular.easeOut, _arg1.target.x, 249, 0.3, true); tweenX.FPS = 40; }; }; }; }; }; } function frame1(){ stop(); dragInProgress = false; itemDragged = 0; item1.gotoAndStop(2); item2.gotoAndStop(2); stage.addEventListener(MouseEvent.MOUSE_DOWN, dragStart); stage.addEventListener(MouseEvent.MOUSE_UP, dragStop); } } }//package july2013_fla
Library Items
Symbol 1 Bitmap | Used by:2 | |
Symbol 2 Graphic | Uses:1 | Used by:3 |
Symbol 3 MovieClip | Uses:2 | Used by:6 |
Symbol 4 Graphic | Used by:5 | |
Symbol 5 MovieClip | Uses:4 | Used by:6 |
Symbol 6 MovieClip | Uses:3 5 | Used by:Timeline |
Symbol 7 Graphic | Used by:8 | |
Symbol 8 MovieClip | Uses:7 | Used by:Timeline |
Symbol 9 Font | Used by:10 11 | |
Symbol 10 Text | Uses:9 | Used by:Timeline |
Symbol 11 Text | Uses:9 | Used by:Timeline |
Symbol 12 Bitmap | Used by:13 | |
Symbol 13 Graphic | Uses:12 | Used by:Timeline |
Symbol 14 Graphic | Used by:16 | |
Symbol 15 Graphic | Used by:16 | |
Symbol 16 MovieClip {july2013_fla.item3_5} | Uses:14 15 | Used by:Timeline |
Symbol 17 Graphic | Used by:19 | |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip {july2013_fla.bra_6} | Uses:17 18 | Used by:Timeline |
Symbol 20 Graphic | Used by:22 | |
Symbol 21 Graphic | Used by:22 | |
Symbol 22 MovieClip {july2013_fla.item2_7} | Uses:20 21 | Used by:Timeline |
Symbol 23 Graphic | Used by:25 | |
Symbol 24 Graphic | Used by:25 | |
Symbol 25 MovieClip {july2013_fla.item4_8} | Uses:23 24 | Used by:Timeline |
Symbol 26 Graphic | Used by:28 | |
Symbol 27 Graphic | Used by:28 | |
Symbol 28 MovieClip {july2013_fla.item6_9} | Uses:26 27 | Used by:Timeline |
Symbol 29 Graphic | Used by:31 | |
Symbol 30 Graphic | Used by:31 | |
Symbol 31 MovieClip {july2013_fla.item7_10} | Uses:29 30 | Used by:Timeline |
Symbol 32 Graphic | Used by:34 | |
Symbol 33 Graphic | Used by:34 | |
Symbol 34 MovieClip {july2013_fla.item8_11} | Uses:32 33 | Used by:Timeline |
Symbol 35 Graphic | Used by:37 | |
Symbol 36 Graphic | Used by:37 | |
Symbol 37 MovieClip {july2013_fla.item9_12} | Uses:35 36 | Used by:Timeline |
Symbol 38 Graphic | Used by:40 | |
Symbol 39 Graphic | Used by:40 | |
Symbol 40 MovieClip {july2013_fla.item10_13} | Uses:38 39 | Used by:Timeline |
Symbol 41 Graphic | Used by:43 | |
Symbol 42 Graphic | Used by:43 | |
Symbol 43 MovieClip {july2013_fla.item5_14} | Uses:41 42 | Used by:Timeline |
Symbol 44 Graphic | Used by:46 | |
Symbol 45 Graphic | Used by:46 | |
Symbol 46 MovieClip {july2013_fla.item11_15} | Uses:44 45 | Used by:Timeline |
Instance Names
"calendar" | Frame 1 | Symbol 6 MovieClip |
"base" | Frame 1 | Symbol 8 MovieClip |
"item3" | Frame 1 | Symbol 16 MovieClip {july2013_fla.item3_5} |
"item1" | Frame 1 | Symbol 19 MovieClip {july2013_fla.bra_6} |
"item2" | Frame 1 | Symbol 22 MovieClip {july2013_fla.item2_7} |
"item4" | Frame 1 | Symbol 25 MovieClip {july2013_fla.item4_8} |
"item6" | Frame 1 | Symbol 28 MovieClip {july2013_fla.item6_9} |
"item7" | Frame 1 | Symbol 31 MovieClip {july2013_fla.item7_10} |
"item8" | Frame 1 | Symbol 34 MovieClip {july2013_fla.item8_11} |
"item9" | Frame 1 | Symbol 37 MovieClip {july2013_fla.item9_12} |
"item10" | Frame 1 | Symbol 40 MovieClip {july2013_fla.item10_13} |
"item5" | Frame 1 | Symbol 43 MovieClip {july2013_fla.item5_14} |
"item11" | Frame 1 | Symbol 46 MovieClip {july2013_fla.item11_15} |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata present, AS3. |
SWFMetaData (77) | Timeline Frame 1 | 1298 bytes "<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmln ..." |
|