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

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

July 2013 by illionore.swf

This is the info page for
Flash #162825

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


Text
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.easing
Section 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.transitions
Section 3
//TweenEvent (fl.transitions.TweenEvent) package fl.transitions { import flash.events.*; public class TweenEvent extends Event { public var time:Number;// = NAN public var position:Number;// = NAN public static const MOTION_START:String = "motionStart"; public static const MOTION_STOP:String = "motionStop"; public static const MOTION_FINISH:String = "motionFinish"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_RESUME:String = "motionResume"; public static const MOTION_LOOP:String = "motionLoop"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ super(_arg1, _arg4, _arg5); this.time = _arg2; this.position = _arg3; } override public function clone():Event{ return (new TweenEvent(this.type, this.time, this.position, this.bubbles, this.cancelable)); } } }//package fl.transitions
Section 4
//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_fla
Section 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_fla
Section 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_fla
Section 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_fla
Section 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_fla
Section 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_fla
Section 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_fla
Section 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_fla
Section 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_fla
Section 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_fla
Section 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_fla
Section 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 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:3
Symbol 3 MovieClipUses:2Used by:6
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:6
Symbol 6 MovieClipUses:3 5Used by:Timeline
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:Timeline
Symbol 9 FontUsed by:10 11
Symbol 10 TextUses:9Used by:Timeline
Symbol 11 TextUses:9Used by:Timeline
Symbol 12 BitmapUsed by:13
Symbol 13 GraphicUses:12Used by:Timeline
Symbol 14 GraphicUsed by:16
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClip {july2013_fla.item3_5}Uses:14 15Used by:Timeline
Symbol 17 GraphicUsed by:19
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClip {july2013_fla.bra_6}Uses:17 18Used by:Timeline
Symbol 20 GraphicUsed by:22
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClip {july2013_fla.item2_7}Uses:20 21Used by:Timeline
Symbol 23 GraphicUsed by:25
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClip {july2013_fla.item4_8}Uses:23 24Used by:Timeline
Symbol 26 GraphicUsed by:28
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClip {july2013_fla.item6_9}Uses:26 27Used by:Timeline
Symbol 29 GraphicUsed by:31
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClip {july2013_fla.item7_10}Uses:29 30Used by:Timeline
Symbol 32 GraphicUsed by:34
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClip {july2013_fla.item8_11}Uses:32 33Used by:Timeline
Symbol 35 GraphicUsed by:37
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClip {july2013_fla.item9_12}Uses:35 36Used by:Timeline
Symbol 38 GraphicUsed by:40
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClip {july2013_fla.item10_13}Uses:38 39Used by:Timeline
Symbol 41 GraphicUsed by:43
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClip {july2013_fla.item5_14}Uses:41 42Used by:Timeline
Symbol 44 GraphicUsed by:46
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClip {july2013_fla.item11_15}Uses:44 45Used by:Timeline

Instance Names

"calendar"Frame 1Symbol 6 MovieClip
"base"Frame 1Symbol 8 MovieClip
"item3"Frame 1Symbol 16 MovieClip {july2013_fla.item3_5}
"item1"Frame 1Symbol 19 MovieClip {july2013_fla.bra_6}
"item2"Frame 1Symbol 22 MovieClip {july2013_fla.item2_7}
"item4"Frame 1Symbol 25 MovieClip {july2013_fla.item4_8}
"item6"Frame 1Symbol 28 MovieClip {july2013_fla.item6_9}
"item7"Frame 1Symbol 31 MovieClip {july2013_fla.item7_10}
"item8"Frame 1Symbol 34 MovieClip {july2013_fla.item8_11}
"item9"Frame 1Symbol 37 MovieClip {july2013_fla.item9_12}
"item10"Frame 1Symbol 40 MovieClip {july2013_fla.item10_13}
"item5"Frame 1Symbol 43 MovieClip {july2013_fla.item5_14}
"item11"Frame 1Symbol 46 MovieClip {july2013_fla.item11_15}

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 11298 bytes "<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmln ..."




http://swfchan.com/33/162825/info.shtml
Created: 20/10 -2018 05:31:10 Last modified: 20/10 -2018 05:31:10 Server time: 29/04 -2024 06:16:19