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

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

punish Jen by illionore.swf

This is the info page for
Flash #161399

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


Text
Start

llionore

Entertainment

<p align="right"><font face="Arial" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">Loading... please wait.</font></p>

Presents
"Punishing Jen"

Move held item here (to the top of the screen) to put them back.

Want to properly punish Jen? Get the code (see description) and type it here:

<p align="left"></p>

EXTREMELY
SENSITIVE
FEET! --->

Enjoy what
you see...?

<p align="center"><font face="Arial" size="30" color="#000000" letterSpacing="0.000000" kerning="1">hhmmm! </font></p>

ActionScript [AS3]

Section 1
//Bounce (fl.transitions.easing.Bounce) package fl.transitions.easing { public class Bounce { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); if (_arg1 < (1 / 2.75)){ return (((_arg3 * ((7.5625 * _arg1) * _arg1)) + _arg2)); }; if (_arg1 < (2 / 2.75)){ _arg1 = (_arg1 - (1.5 / 2.75)); return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.75)) + _arg2)); }; if (_arg1 < (2.5 / 2.75)){ _arg1 = (_arg1 - (2.25 / 2.75)); return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.9375)) + _arg2)); }; _arg1 = (_arg1 - (2.625 / 2.75)); return (((_arg3 * (((7.5625 * _arg1) * _arg1) + 0.984375)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (((_arg3 - easeOut((_arg4 - _arg1), 0, _arg3, _arg4)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ if (_arg1 < (_arg4 / 2)){ return (((easeIn((_arg1 * 2), 0, _arg3, _arg4) * 0.5) + _arg2)); }; return ((((easeOut(((_arg1 * 2) - _arg4), 0, _arg3, _arg4) * 0.5) + (_arg3 * 0.5)) + _arg2)); } } }//package fl.transitions.easing
Section 2
//None (fl.transitions.easing.None) package fl.transitions.easing { public class None { public static function easeNone(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } } }//package fl.transitions.easing
Section 3
//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 4
//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 5
//butt_19 (punishJen_fla.butt_19) package punishJen_fla { import flash.display.*; public dynamic class butt_19 extends MovieClip { public var redButt:MovieClip; public function butt_19(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package punishJen_fla
Section 6
//clothesPin_4 (punishJen_fla.clothesPin_4) package punishJen_fla { import flash.display.*; public dynamic class clothesPin_4 extends MovieClip { public function clothesPin_4(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package punishJen_fla
Section 7
//feather_22 (punishJen_fla.feather_22) package punishJen_fla { import flash.display.*; public dynamic class feather_22 extends MovieClip { public function feather_22(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ gotoAndStop(2); } } }//package punishJen_fla
Section 8
//MainTimeline (punishJen_fla.MainTimeline) package punishJen_fla { import flash.events.*; import fl.transitions.easing.*; import fl.transitions.*; import flash.utils.*; import flash.display.*; import flash.text.*; 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.ui.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var footRight:MovieClip; public var codeField:TextField; public var jenSays:TextField; public var bottle:MovieClip; public var butt:MovieClip; public var pin1:MovieClip; public var btnIntroStart:introStartButton; public var pin2:MovieClip; public var pin3:MovieClip; public var loader_mc:movie_mc; public var loaded_txt:TextField; public var feather:MovieClip; public var padd:MovieClip; public var footLeft:MovieClip; public var jenHead:MovieClip; public var bCodeEntered; public var iTickled; public var bBlushImpulse; public var iRedHeadMax; public var equippedItem; public var headTween:Tween; public var redheadTween:Tween; public var ftLeftTween:Tween; public var ftRightTween:Tween; public var buttTween:Tween; public var myInterval:uint; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2); } public function onProgress(_arg1:ProgressEvent):void{ var _local2:Number = _arg1.target.bytesLoaded; var _local3:Number = _arg1.target.bytesTotal; var _local4:Number = (_local2 / _local3); loader_mc.scaleX = _local4; loaded_txt.text = (("Loading... " + Math.round((_local4 * 100))) + "%"); } public function onComplete(_arg1:Event):void{ loaded_txt.text = "Finished loading."; btnIntroStart.alpha = 1; btnIntroStart.addEventListener(MouseEvent.CLICK, startGame); } public function startGame(_arg1:MouseEvent):void{ gotoAndStop(2); } public function mouseClicked(_arg1:MouseEvent):void{ var _local3:*; if (codeField.text.toLowerCase().search("broken dreams") > -1){ bCodeEntered = true; } else { bCodeEntered = false; }; var _local2:* = _arg1.target.name; if ((((_local2 == "pin1")) && ((pin1.alpha == 1)))){ enablePinFTLeft(true); bBlushImpulse = true; } else { if ((((_local2 == "pin2")) && ((pin2.alpha == 1)))){ enablePinFTRight(true); bBlushImpulse = true; } else { if ((((_local2 == "pin3")) && ((pin3.alpha == 1)))){ enablePinHead(true); bBlushImpulse = true; } else { if (_local2 == "pin"){ _local3 = _arg1.target.parent.parent.name; if (_local3 == "footLeft"){ enablePinFTLeft(false); }; if (_local3 == "footRight"){ enablePinFTRight(false); }; } else { if (_local2 == "pinH"){ enablePinHead(false); } else { if ((((_local2 == "redButt")) && ((equippedItem == 1)))){ buttTween.stop(); buttTween = new Tween(butt, "scaleY", Bounce.easeOut, 0.85, 1, 1, true); jenText("pain"); iRedHeadMax = 5; if (butt.redButt.alpha < 0.96){ butt.redButt.alpha = (butt.redButt.alpha + 0.05); }; padd.gotoAndPlay(1); } else { if ((((_local2 == "footLeft")) && ((equippedItem == 2)))){ iTickled = 5; feather.gotoAndPlay(2); } else { if ((((_local2 == "footRight")) && ((equippedItem == 2)))){ iTickled = 5; feather.gotoAndPlay(2); } else { if ((((_local2 == "redButt")) && ((equippedItem == 2)))){ iTickled = 5; feather.gotoAndPlay(2); } else { if ((((_local2 == "footLeft")) && ((equippedItem == 1)))){ iRedHeadMax = 5; jenText("pain"); if (footLeft.foot1.red1.alpha < 0.96){ footLeft.foot1.red1.alpha = (footLeft.foot1.red1.alpha + 0.05); footLeft.foot2.red2.alpha = footLeft.foot1.red1.alpha; footLeft.foot3.red3.alpha = footLeft.foot1.red1.alpha; footLeft.foot4.red4.alpha = footLeft.foot1.red1.alpha; }; ftLeftTween.stop(); ftLeftTween = new Tween(footLeft, "rotation", None.easeNone, footLeft.rotation, (Math.floor((Math.random() * 25)) - 12), 0.3, true); randomizeFoot(footLeft); padd.gotoAndPlay(1); } else { if ((((_local2 == "footRight")) && ((equippedItem == 1)))){ iRedHeadMax = 5; jenText("pain"); if (footRight.foot1.red1.alpha < 0.96){ footRight.foot1.red1.alpha = (footRight.foot1.red1.alpha + 0.05); footRight.foot2.red2.alpha = footRight.foot1.red1.alpha; footRight.foot3.red3.alpha = footRight.foot1.red1.alpha; footRight.foot4.red4.alpha = footRight.foot1.red1.alpha; }; ftRightTween.stop(); ftRightTween = new Tween(footRight, "rotation", None.easeNone, footRight.rotation, (Math.floor((Math.random() * 25)) - 12), 0.3, true); randomizeFoot(footRight); padd.gotoAndPlay(1); } else { if ((((((_local2 == "padd")) && ((equippedItem == 0)))) && ((bCodeEntered == true)))){ equippedItem = 1; padd.mouseEnabled = false; Mouse.hide(); padd.rotation = 0; } else { if ((((((_local2 == "feather")) && ((equippedItem == 0)))) && ((bCodeEntered == true)))){ equippedItem = 2; feather.mouseEnabled = false; Mouse.hide(); feather.rotation = 0; feather.gotoAndStop(2); } else { if ((((((_local2 == "bottle")) && ((bottle.currentFrame == 1)))) && ((bCodeEntered == true)))){ bottle.gotoAndStop(2); butt.gotoAndStop(2); iRedHeadMax = 5; jenSays.text = "MMMMMHHHH!"; jenSays.x = Math.floor((Math.random() * 280)); jenSays.y = (Math.floor((Math.random() * 340)) + 360); jenSays.alpha = 1; }; }; }; }; }; }; }; }; }; }; }; }; }; }; } public function customMouse(_arg1:Event){ if (equippedItem > 0){ if (equippedItem == 1){ padd.x = stage.mouseX; padd.y = stage.mouseY; } else { if (equippedItem == 2){ feather.x = stage.mouseX; feather.y = stage.mouseY; }; }; }; if (stage.mouseY < 31){ if (equippedItem == 1){ equippedItem = 0; Mouse.show(); padd.mouseEnabled = true; padd.x = 140; padd.y = 698; padd.rotation = -125; } else { if (equippedItem == 2){ equippedItem = 0; Mouse.show(); feather.mouseEnabled = true; feather.x = 436.15; feather.y = 404.95; feather.rotation = -144.3; feather.gotoAndStop(1); }; }; }; } public function randomizeFoot(_arg1):void{ var _local2:* = Math.floor((Math.random() * 4)); if (_local2 == 1){ _arg1.foot1.alpha = 1; _arg1.foot2.alpha = 0; _arg1.foot3.alpha = 0; _arg1.foot4.alpha = 0; } else { if (_local2 == 2){ _arg1.foot1.alpha = 0; _arg1.foot2.alpha = 1; _arg1.foot3.alpha = 0; _arg1.foot4.alpha = 0; } else { if (_local2 == 3){ _arg1.foot1.alpha = 0; _arg1.foot2.alpha = 0; _arg1.foot3.alpha = 1; _arg1.foot4.alpha = 0; } else { _arg1.foot1.alpha = 0; _arg1.foot2.alpha = 0; _arg1.foot3.alpha = 0; _arg1.foot4.alpha = 1; }; }; }; } public function twitch():void{ if ((((iTickled > 0)) || ((bBlushImpulse == true)))){ bBlushImpulse = false; iTickled--; if (iTickled > 0){ jenText("laugh"); } else { jenText("pain"); }; headTween = new Tween(jenHead, "rotation", None.easeNone, jenHead.rotation, (Math.floor((Math.random() * 17)) - 8), 0.3, true); if (iRedHeadMax > 0){ iRedHeadMax--; redheadTween = new Tween(jenHead.redhead, "alpha", None.easeNone, jenHead.redhead.alpha, 1, 0.3, true); } else { redheadTween = new Tween(jenHead.redhead, "alpha", None.easeNone, jenHead.redhead.alpha, ((Math.floor((Math.random() * 6)) + 4) / 10), 0.3, true); }; randomizeFoot(footLeft); randomizeFoot(footRight); ftLeftTween = new Tween(footLeft, "rotation", None.easeNone, footLeft.rotation, (Math.floor((Math.random() * 21)) - 10), 0.3, true); ftRightTween = new Tween(footRight, "rotation", None.easeNone, footRight.rotation, (Math.floor((Math.random() * 21)) - 10), 0.3, true); } else { footLeft.foot1.alpha = 1; footLeft.foot2.alpha = 0; footLeft.foot3.alpha = 0; footLeft.foot4.alpha = 0; footRight.foot1.alpha = 0; footRight.foot2.alpha = 1; footRight.foot3.alpha = 0; footRight.foot4.alpha = 0; if (Math.floor((Math.random() * 8)) == 0){ ftLeftTween = new Tween(footLeft, "rotation", None.easeNone, footLeft.rotation, (Math.floor((Math.random() * 7)) - 3), 0.3, true); }; if (Math.floor((Math.random() * 8)) == 0){ ftRightTween = new Tween(footRight, "rotation", None.easeNone, footRight.rotation, (Math.floor((Math.random() * 7)) - 3), 0.3, true); }; if ((((Math.floor((Math.random() * 8)) == 0)) || ((iRedHeadMax > 0)))){ headTween = new Tween(jenHead, "rotation", None.easeNone, jenHead.rotation, (Math.floor((Math.random() * 7)) - 3), 0.3, true); if (iRedHeadMax > 0){ iRedHeadMax--; redheadTween = new Tween(jenHead.redhead, "alpha", None.easeNone, jenHead.redhead.alpha, 1, 0.3, true); } else { redheadTween = new Tween(jenHead.redhead, "alpha", None.easeNone, jenHead.redhead.alpha, (Math.floor((Math.random() * 3)) / 10), 0.3, true); }; }; }; if (butt.redButt.alpha > 0.2){ butt.redButt.alpha = (butt.redButt.alpha - 0.01); }; if (footLeft.foot1.red1.alpha > 0.2){ footLeft.foot1.red1.alpha = (footLeft.foot1.red1.alpha - 0.01); footLeft.foot2.red2.alpha = footLeft.foot1.red1.alpha; footLeft.foot3.red3.alpha = footLeft.foot1.red1.alpha; footLeft.foot4.red4.alpha = footLeft.foot1.red1.alpha; }; if (footRight.foot1.red1.alpha > 0.2){ footRight.foot1.red1.alpha = (footRight.foot1.red1.alpha - 0.01); footRight.foot2.red2.alpha = footRight.foot1.red1.alpha; footRight.foot3.red3.alpha = footRight.foot1.red1.alpha; footRight.foot4.red4.alpha = footRight.foot1.red1.alpha; }; if (jenSays.alpha > 0){ jenSays.alpha = (jenSays.alpha - 0.1); }; } public function enablePinFTLeft(_arg1):void{ if (_arg1 == true){ pin1.alpha = 0; footLeft.foot1.pin.alpha = 1; footLeft.foot2.pin.alpha = 1; footLeft.foot3.pin.alpha = 1; footLeft.foot4.pin.alpha = 1; } else { pin1.alpha = 1; footLeft.foot1.pin.alpha = 0; footLeft.foot2.pin.alpha = 0; footLeft.foot3.pin.alpha = 0; footLeft.foot4.pin.alpha = 0; }; } public function enablePinFTRight(_arg1):void{ if (_arg1 == true){ pin2.alpha = 0; footRight.foot1.pin.alpha = 1; footRight.foot2.pin.alpha = 1; footRight.foot3.pin.alpha = 1; footRight.foot4.pin.alpha = 1; } else { pin2.alpha = 1; footRight.foot1.pin.alpha = 0; footRight.foot2.pin.alpha = 0; footRight.foot3.pin.alpha = 0; footRight.foot4.pin.alpha = 0; }; } public function enablePinHead(_arg1):void{ if (_arg1 == true){ pin3.alpha = 0; jenHead.pinH.alpha = 1; } else { pin3.alpha = 1; jenHead.pinH.alpha = 0; }; } public function jenText(_arg1):void{ var _local2:Array = []; if (_arg1 == "laugh"){ _local2 = ["hahahhahha haha ha hhha", "Nhhaahahahh haha haha", "ghhaha haaha haha", "hhahaha haha haawwha", "hahhaha haa hahaha"]; } else { _local2 = ["aaaah! aw www!", "OW! aaaaah!", "ahhhhh! oww!", "EEEH owowow...", "AHH!"]; }; jenSays.text = _local2[Math.floor((Math.random() * _local2.length))]; jenSays.x = Math.floor((Math.random() * 280)); jenSays.y = (Math.floor((Math.random() * 340)) + 360); jenSays.alpha = 1; } function frame1(){ stop(); this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress); this.loaderInfo.addEventListener(Event.COMPLETE, onComplete); } function frame2(){ stop(); bCodeEntered = false; iTickled = 0; bBlushImpulse = false; iRedHeadMax = 0; equippedItem = 0; pin1.gotoAndStop(2); pin2.gotoAndStop(2); pin3.gotoAndStop(2); buttTween = new Tween(butt, "scaleY", Bounce.easeOut, 1, 1, 1, true); ftLeftTween = new Tween(footLeft, "rotation", None.easeNone, footLeft.rotation, (Math.floor((Math.random() * 21)) - 10), 0.3, true); ftRightTween = new Tween(footRight, "rotation", None.easeNone, footRight.rotation, (Math.floor((Math.random() * 21)) - 10), 0.3, true); butt.redButt.alpha = 0; enablePinFTLeft(false); enablePinFTRight(false); enablePinHead(false); footLeft.foot2.alpha = 0; footLeft.foot3.alpha = 0; footLeft.foot4.alpha = 0; footRight.foot1.alpha = 0; footRight.foot3.alpha = 0; footRight.foot4.alpha = 0; footLeft.foot4.red4.alpha = 0; footRight.foot4.red4.alpha = 0; footLeft.foot3.red3.alpha = 0; footRight.foot3.red3.alpha = 0; footLeft.foot2.red2.alpha = 0; footRight.foot2.red2.alpha = 0; footLeft.foot1.red1.alpha = 0; footRight.foot1.red1.alpha = 0; jenSays.mouseEnabled = false; footLeft.foot1.mouseEnabled = false; footLeft.foot2.mouseEnabled = false; footLeft.foot3.mouseEnabled = false; footLeft.foot4.mouseEnabled = false; footRight.foot1.mouseEnabled = false; footRight.foot2.mouseEnabled = false; footRight.foot3.mouseEnabled = false; footRight.foot4.mouseEnabled = false; footLeft.foot1.red1.mouseEnabled = false; footLeft.foot2.red2.mouseEnabled = false; footLeft.foot3.red3.mouseEnabled = false; footLeft.foot4.red4.mouseEnabled = false; footRight.foot1.red1.mouseEnabled = false; footRight.foot2.red2.mouseEnabled = false; footRight.foot3.red3.mouseEnabled = false; footRight.foot4.red4.mouseEnabled = false; myInterval = setInterval(twitch, 400); stage.addEventListener(MouseEvent.CLICK, mouseClicked); stage.addEventListener(Event.ENTER_FRAME, customMouse); } } }//package punishJen_fla
Section 9
//padd_21 (punishJen_fla.padd_21) package punishJen_fla { import flash.display.*; public dynamic class padd_21 extends MovieClip { public function padd_21(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package punishJen_fla
Section 10
//Symbol1_23 (punishJen_fla.Symbol1_23) package punishJen_fla { import flash.display.*; public dynamic class Symbol1_23 extends MovieClip { public function Symbol1_23(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package punishJen_fla
Section 11
//introStartButton (introStartButton) package { import flash.display.*; public dynamic class introStartButton extends MovieClip { } }//package
Section 12
//movie_mc (movie_mc) package { import flash.display.*; public dynamic class movie_mc extends MovieClip { } }//package

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 GraphicUsed by:5
Symbol 3 FontUsed by:4 6 7 8 13 55 64 65 66 67 68
Symbol 4 TextUses:3Used by:5
Symbol 5 MovieClip {introStartButton}Uses:2 4Used by:Timeline
Symbol 6 TextUses:3Used by:Timeline
Symbol 7 TextUses:3Used by:Timeline
Symbol 8 EditableTextUses:3Used by:Timeline
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClip {movie_mc}Uses:9Used by:Timeline
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:Timeline
Symbol 13 TextUses:3Used by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:Timeline
Symbol 17 GraphicUsed by:19
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClip {punishJen_fla.clothesPin_4}Uses:17 18Used by:25 31 35 39 43  Timeline
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:Timeline
Symbol 22 GraphicUsed by:25
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:22 24 19Used by:Timeline
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:44 45
Symbol 28 GraphicUsed by:31
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:31
Symbol 31 MovieClipUses:28 30 19Used by:44 45
Symbol 32 GraphicUsed by:35
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:35
Symbol 35 MovieClipUses:32 34 19Used by:44 45
Symbol 36 GraphicUsed by:39
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:39
Symbol 39 MovieClipUses:36 38 19Used by:44 45
Symbol 40 GraphicUsed by:43
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClipUses:40 42 19Used by:44 45
Symbol 44 MovieClipUses:27 31 35 39 43Used by:Timeline
Symbol 45 MovieClipUses:27 31 35 39 43Used by:Timeline
Symbol 46 GraphicUsed by:50
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:50
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClip {punishJen_fla.butt_19}Uses:46 48 49Used by:Timeline
Symbol 51 GraphicUsed by:54
Symbol 52 GraphicUsed by:54
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClip {punishJen_fla.padd_21}Uses:51 52 53Used by:Timeline
Symbol 55 TextUses:3Used by:Timeline
Symbol 56 GraphicUsed by:60
Symbol 57 GraphicUsed by:60
Symbol 58 GraphicUsed by:60
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClip {punishJen_fla.feather_22}Uses:56 57 58 59Used by:Timeline
Symbol 61 GraphicUsed by:63
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClip {punishJen_fla.Symbol1_23}Uses:61 62Used by:Timeline
Symbol 64 TextUses:3Used by:Timeline
Symbol 65 EditableTextUses:3Used by:Timeline
Symbol 66 TextUses:3Used by:Timeline
Symbol 67 TextUses:3Used by:Timeline
Symbol 68 EditableTextUses:3Used by:Timeline

Instance Names

"btnIntroStart"Frame 1Symbol 5 MovieClip {introStartButton}
"loaded_txt"Frame 1Symbol 8 EditableText
"loader_mc"Frame 1Symbol 10 MovieClip {movie_mc}
"pin1"Frame 2Symbol 19 MovieClip {punishJen_fla.clothesPin_4}
"pin2"Frame 2Symbol 19 MovieClip {punishJen_fla.clothesPin_4}
"pin3"Frame 2Symbol 19 MovieClip {punishJen_fla.clothesPin_4}
"jenHead"Frame 2Symbol 25 MovieClip
"footLeft"Frame 2Symbol 44 MovieClip
"footRight"Frame 2Symbol 45 MovieClip
"butt"Frame 2Symbol 50 MovieClip {punishJen_fla.butt_19}
"padd"Frame 2Symbol 54 MovieClip {punishJen_fla.padd_21}
"feather"Frame 2Symbol 60 MovieClip {punishJen_fla.feather_22}
"bottle"Frame 2Symbol 63 MovieClip {punishJen_fla.Symbol1_23}
"codeField"Frame 2Symbol 65 EditableText
"jenSays"Frame 2Symbol 68 EditableText
"redhead"Symbol 25 MovieClip Frame 1Symbol 24 MovieClip
"pinH"Symbol 25 MovieClip Frame 1Symbol 19 MovieClip {punishJen_fla.clothesPin_4}
"red1"Symbol 31 MovieClip Frame 1Symbol 30 MovieClip
"pin"Symbol 31 MovieClip Frame 1Symbol 19 MovieClip {punishJen_fla.clothesPin_4}
"red2"Symbol 35 MovieClip Frame 1Symbol 34 MovieClip
"pin"Symbol 35 MovieClip Frame 1Symbol 19 MovieClip {punishJen_fla.clothesPin_4}
"red3"Symbol 39 MovieClip Frame 1Symbol 38 MovieClip
"pin"Symbol 39 MovieClip Frame 1Symbol 19 MovieClip {punishJen_fla.clothesPin_4}
"red4"Symbol 43 MovieClip Frame 1Symbol 42 MovieClip
"pin"Symbol 43 MovieClip Frame 1Symbol 19 MovieClip {punishJen_fla.clothesPin_4}
"footLeft"Symbol 44 MovieClip Frame 1Symbol 27 MovieClip
"foot1"Symbol 44 MovieClip Frame 1Symbol 31 MovieClip
"foot2"Symbol 44 MovieClip Frame 1Symbol 35 MovieClip
"foot3"Symbol 44 MovieClip Frame 1Symbol 39 MovieClip
"foot4"Symbol 44 MovieClip Frame 1Symbol 43 MovieClip
"footRight"Symbol 45 MovieClip Frame 1Symbol 27 MovieClip
"foot1"Symbol 45 MovieClip Frame 1Symbol 31 MovieClip
"foot2"Symbol 45 MovieClip Frame 1Symbol 35 MovieClip
"foot3"Symbol 45 MovieClip Frame 1Symbol 39 MovieClip
"foot4"Symbol 45 MovieClip Frame 1Symbol 43 MovieClip
"redButt"Symbol 50 MovieClip {punishJen_fla.butt_19} Frame 1Symbol 48 MovieClip

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/161399/info.shtml
Created: 21/10 -2018 05:31:27 Last modified: 21/10 -2018 05:31:27 Server time: 02/05 -2024 01:59:49