Section 1
//Strong (fl.transitions.easing.Strong)
package fl.transitions.easing {
public class Strong {
public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
_arg1 = (_arg1 / _arg4);
return (((((((_arg3 * _arg1) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2));
}
public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
_arg1 = ((_arg1 / _arg4) - 1);
return (((_arg3 * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 1)) + _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) * _arg1) * _arg1) * _arg1) + _arg2));
};
_arg1 = (_arg1 - 2);
return ((((_arg3 / 2) * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 2)) + _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
//amBlindfold_25 (sc_fla.amBlindfold_25)
package sc_fla {
import flash.display.*;
public dynamic class amBlindfold_25 extends MovieClip {
public function amBlindfold_25(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 5
//AmBra_31 (sc_fla.AmBra_31)
package sc_fla {
import flash.display.*;
public dynamic class AmBra_31 extends MovieClip {
public function AmBra_31(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 6
//amCorset_42 (sc_fla.amCorset_42)
package sc_fla {
import flash.display.*;
public dynamic class amCorset_42 extends MovieClip {
public function amCorset_42(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 7
//amEars_18 (sc_fla.amEars_18)
package sc_fla {
import flash.display.*;
public dynamic class amEars_18 extends MovieClip {
public function amEars_18(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 8
//amFeetMask_105 (sc_fla.amFeetMask_105)
package sc_fla {
import flash.display.*;
public dynamic class amFeetMask_105 extends MovieClip {
public function amFeetMask_105(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 9
//amGag_39 (sc_fla.amGag_39)
package sc_fla {
import flash.display.*;
public dynamic class amGag_39 extends MovieClip {
public function amGag_39(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 10
//amLeggings_37 (sc_fla.amLeggings_37)
package sc_fla {
import flash.display.*;
public dynamic class amLeggings_37 extends MovieClip {
public function amLeggings_37(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 11
//amMask_99 (sc_fla.amMask_99)
package sc_fla {
import flash.display.*;
public dynamic class amMask_99 extends MovieClip {
public function amMask_99(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 12
//amNails_19 (sc_fla.amNails_19)
package sc_fla {
import flash.display.*;
public dynamic class amNails_19 extends MovieClip {
public function amNails_19(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 13
//AmPanties_15 (sc_fla.AmPanties_15)
package sc_fla {
import flash.display.*;
public dynamic class AmPanties_15 extends MovieClip {
public function AmPanties_15(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 14
//AmSocks_27 (sc_fla.AmSocks_27)
package sc_fla {
import flash.display.*;
public dynamic class AmSocks_27 extends MovieClip {
public function AmSocks_27(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 15
//amSportShirt_35 (sc_fla.amSportShirt_35)
package sc_fla {
import flash.display.*;
public dynamic class amSportShirt_35 extends MovieClip {
public function amSportShirt_35(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 16
//AmStockings_23 (sc_fla.AmStockings_23)
package sc_fla {
import flash.display.*;
public dynamic class AmStockings_23 extends MovieClip {
public function AmStockings_23(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 17
//AmSwimsuit_33 (sc_fla.AmSwimsuit_33)
package sc_fla {
import flash.display.*;
public dynamic class AmSwimsuit_33 extends MovieClip {
public function AmSwimsuit_33(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 18
//background_5 (sc_fla.background_5)
package sc_fla {
import flash.display.*;
public dynamic class background_5 extends MovieClip {
public function background_5(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 19
//btnArena_77 (sc_fla.btnArena_77)
package sc_fla {
import flash.display.*;
public dynamic class btnArena_77 extends MovieClip {
public function btnArena_77(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 20
//btnBallGag_57 (sc_fla.btnBallGag_57)
package sc_fla {
import flash.display.*;
public dynamic class btnBallGag_57 extends MovieClip {
public function btnBallGag_57(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 21
//btnBareRoom_75 (sc_fla.btnBareRoom_75)
package sc_fla {
import flash.display.*;
public dynamic class btnBareRoom_75 extends MovieClip {
public function btnBareRoom_75(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 22
//btnBlindFold_58 (sc_fla.btnBlindFold_58)
package sc_fla {
import flash.display.*;
public dynamic class btnBlindFold_58 extends MovieClip {
public function btnBlindFold_58(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 23
//btnBra_64 (sc_fla.btnBra_64)
package sc_fla {
import flash.display.*;
public dynamic class btnBra_64 extends MovieClip {
public function btnBra_64(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 24
//btnBunnyEars_54 (sc_fla.btnBunnyEars_54)
package sc_fla {
import flash.display.*;
public dynamic class btnBunnyEars_54 extends MovieClip {
public function btnBunnyEars_54(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 25
//btnCorset_59 (sc_fla.btnCorset_59)
package sc_fla {
import flash.display.*;
public dynamic class btnCorset_59 extends MovieClip {
public function btnCorset_59(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 26
//btnFaceWrap_56 (sc_fla.btnFaceWrap_56)
package sc_fla {
import flash.display.*;
public dynamic class btnFaceWrap_56 extends MovieClip {
public function btnFaceWrap_56(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 27
//btnFeetMask_69 (sc_fla.btnFeetMask_69)
package sc_fla {
import flash.display.*;
public dynamic class btnFeetMask_69 extends MovieClip {
public function btnFeetMask_69(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 28
//btnGasMask_55 (sc_fla.btnGasMask_55)
package sc_fla {
import flash.display.*;
public dynamic class btnGasMask_55 extends MovieClip {
public function btnGasMask_55(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 29
//btnLeggings_62 (sc_fla.btnLeggings_62)
package sc_fla {
import flash.display.*;
public dynamic class btnLeggings_62 extends MovieClip {
public function btnLeggings_62(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 30
//btnNailPolish_68 (sc_fla.btnNailPolish_68)
package sc_fla {
import flash.display.*;
public dynamic class btnNailPolish_68 extends MovieClip {
public function btnNailPolish_68(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 31
//btnNipWeight_53 (sc_fla.btnNipWeight_53)
package sc_fla {
import flash.display.*;
public dynamic class btnNipWeight_53 extends MovieClip {
public function btnNipWeight_53(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 32
//btnPanties_65 (sc_fla.btnPanties_65)
package sc_fla {
import flash.display.*;
public dynamic class btnPanties_65 extends MovieClip {
public function btnPanties_65(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 33
//btnPark_76 (sc_fla.btnPark_76)
package sc_fla {
import flash.display.*;
public dynamic class btnPark_76 extends MovieClip {
public function btnPark_76(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 34
//btnRopes_60 (sc_fla.btnRopes_60)
package sc_fla {
import flash.display.*;
public dynamic class btnRopes_60 extends MovieClip {
public function btnRopes_60(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 35
//btnScene1_79 (sc_fla.btnScene1_79)
package sc_fla {
import flash.display.*;
public dynamic class btnScene1_79 extends MovieClip {
public function btnScene1_79(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 36
//btnScene2_80 (sc_fla.btnScene2_80)
package sc_fla {
import flash.display.*;
public dynamic class btnScene2_80 extends MovieClip {
public function btnScene2_80(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 37
//btnSocks_67 (sc_fla.btnSocks_67)
package sc_fla {
import flash.display.*;
public dynamic class btnSocks_67 extends MovieClip {
public function btnSocks_67(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 38
//btnSportShirt_61 (sc_fla.btnSportShirt_61)
package sc_fla {
import flash.display.*;
public dynamic class btnSportShirt_61 extends MovieClip {
public function btnSportShirt_61(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 39
//btnStockings_66 (sc_fla.btnStockings_66)
package sc_fla {
import flash.display.*;
public dynamic class btnStockings_66 extends MovieClip {
public function btnStockings_66(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 40
//btnSwimSuit_63 (sc_fla.btnSwimSuit_63)
package sc_fla {
import flash.display.*;
public dynamic class btnSwimSuit_63 extends MovieClip {
public function btnSwimSuit_63(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 41
//btnTvShow_78 (sc_fla.btnTvShow_78)
package sc_fla {
import flash.display.*;
public dynamic class btnTvShow_78 extends MovieClip {
public function btnTvShow_78(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 42
//expression_Am_12 (sc_fla.expression_Am_12)
package sc_fla {
import flash.display.*;
public dynamic class expression_Am_12 extends MovieClip {
public function expression_Am_12(){
addFrameScript(0, frame1, 9, frame10);
}
function frame1(){
stop();
}
function frame10(){
gotoAndPlay(6);
}
}
}//package sc_fla
Section 43
//expression_AmBack_13 (sc_fla.expression_AmBack_13)
package sc_fla {
import flash.display.*;
public dynamic class expression_AmBack_13 extends MovieClip {
public function expression_AmBack_13(){
addFrameScript(0, frame1, 9, frame10);
}
function frame1(){
stop();
}
function frame10(){
gotoAndPlay(6);
}
}
}//package sc_fla
Section 44
//expression_Jen_10 (sc_fla.expression_Jen_10)
package sc_fla {
import flash.display.*;
public dynamic class expression_Jen_10 extends MovieClip {
public function expression_Jen_10(){
addFrameScript(0, frame1, 9, frame10);
}
function frame1(){
stop();
}
function frame10(){
gotoAndPlay(6);
}
}
}//package sc_fla
Section 45
//expression_JenBack_11 (sc_fla.expression_JenBack_11)
package sc_fla {
import flash.display.*;
public dynamic class expression_JenBack_11 extends MovieClip {
public function expression_JenBack_11(){
addFrameScript(0, frame1, 9, frame10);
}
function frame1(){
stop();
}
function frame10(){
gotoAndPlay(6);
}
}
}//package sc_fla
Section 46
//hook_110 (sc_fla.hook_110)
package sc_fla {
import flash.display.*;
public dynamic class hook_110 extends MovieClip {
public function hook_110(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 47
//jenAmanda_8 (sc_fla.jenAmanda_8)
package sc_fla {
import flash.display.*;
public dynamic class jenAmanda_8 extends MovieClip {
public function jenAmanda_8(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 48
//jenBlindfold_24 (sc_fla.jenBlindfold_24)
package sc_fla {
import flash.display.*;
public dynamic class jenBlindfold_24 extends MovieClip {
public function jenBlindfold_24(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 49
//JenBra_30 (sc_fla.JenBra_30)
package sc_fla {
import flash.display.*;
public dynamic class JenBra_30 extends MovieClip {
public function JenBra_30(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 50
//jenCorset_41 (sc_fla.jenCorset_41)
package sc_fla {
import flash.display.*;
public dynamic class jenCorset_41 extends MovieClip {
public function jenCorset_41(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 51
//jenEars_17 (sc_fla.jenEars_17)
package sc_fla {
import flash.display.*;
public dynamic class jenEars_17 extends MovieClip {
public function jenEars_17(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 52
//jenFeetMask_100 (sc_fla.jenFeetMask_100)
package sc_fla {
import flash.display.*;
public dynamic class jenFeetMask_100 extends MovieClip {
public function jenFeetMask_100(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 53
//jenGag_38 (sc_fla.jenGag_38)
package sc_fla {
import flash.display.*;
public dynamic class jenGag_38 extends MovieClip {
public function jenGag_38(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 54
//jenLeggings_36 (sc_fla.jenLeggings_36)
package sc_fla {
import flash.display.*;
public dynamic class jenLeggings_36 extends MovieClip {
public function jenLeggings_36(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 55
//jenMask_98 (sc_fla.jenMask_98)
package sc_fla {
import flash.display.*;
public dynamic class jenMask_98 extends MovieClip {
public function jenMask_98(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 56
//jenNails_20 (sc_fla.jenNails_20)
package sc_fla {
import flash.display.*;
public dynamic class jenNails_20 extends MovieClip {
public function jenNails_20(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 57
//JenPanties_16 (sc_fla.JenPanties_16)
package sc_fla {
import flash.display.*;
public dynamic class JenPanties_16 extends MovieClip {
public function JenPanties_16(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 58
//JenSocks_26 (sc_fla.JenSocks_26)
package sc_fla {
import flash.display.*;
public dynamic class JenSocks_26 extends MovieClip {
public function JenSocks_26(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 59
//jenSportShirt_34 (sc_fla.jenSportShirt_34)
package sc_fla {
import flash.display.*;
public dynamic class jenSportShirt_34 extends MovieClip {
public function jenSportShirt_34(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 60
//JenStockings_22 (sc_fla.JenStockings_22)
package sc_fla {
import flash.display.*;
public dynamic class JenStockings_22 extends MovieClip {
public function JenStockings_22(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 61
//JenSwimsuit_32 (sc_fla.JenSwimsuit_32)
package sc_fla {
import flash.display.*;
public dynamic class JenSwimsuit_32 extends MovieClip {
public function JenSwimsuit_32(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 62
//MainTimeline (sc_fla.MainTimeline)
package sc_fla {
import flash.events.*;
import fl.transitions.*;
import fl.transitions.easing.*;
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 spin7:MovieClip;
public var btnStockings:MovieClip;
public var amNails:MovieClip;
public var spin8:MovieClip;
public var btnScene1:MovieClip;
public var btnSpider:MovieClip;
public var jenPanties:MovieClip;
public var jenFeetMask:MovieClip;
public var spin9:MovieClip;
public var btnFeetMask:MovieClip;
public var btnFaceWrap:MovieClip;
public var btnBelly:MovieClip;
public var amSocks:MovieClip;
public var expressionJen:MovieClip;
public var weights:MovieClip;
public var jenBlindfold:MovieClip;
public var backArt:MovieClip;
public var btnScene2:MovieClip;
public var btnHook:MovieClip;
public var jenCorset:MovieClip;
public var amSportShirt:MovieClip;
public var bowl:MovieClip;
public var flames:MovieClip;
public var btnIntroStart:introStartButton;
public var spin10:MovieClip;
public var btnNone:MovieClip;
public var txtCode:TextField;
public var btnButt:MovieClip;
public var amCorset:MovieClip;
public var jenGag:MovieClip;
public var amStockings:MovieClip;
public var heart1:MovieClip;
public var pole:MovieClip;
public var spin11:MovieClip;
public var btnTvShow:MovieClip;
public var btnFootR:MovieClip;
public var jenBra:MovieClip;
public var heart2:MovieClip;
public var expressionJenBack:MovieClip;
public var spin12:MovieClip;
public var btnGasMask:MovieClip;
public var heart3:MovieClip;
public var jenAmanda:MovieClip;
public var loader_mc:MovieClip;
public var loaded_txt:TextField;
public var spin13:MovieClip;
public var btnArena:MovieClip;
public var btnRopes:MovieClip;
public var btnCorset:MovieClip;
public var btnArm:MovieClip;
public var btnStripAll:MovieClip;
public var facewrap:MovieClip;
public var jenSocks:MovieClip;
public var jenNails:MovieClip;
public var heart4:MovieClip;
public var feather:MovieClip;
public var amMask:MovieClip;
public var spin14:MovieClip;
public var btnFeather:MovieClip;
public var btnBlindFold:MovieClip;
public var btnLegL:MovieClip;
public var btnBreast:MovieClip;
public var jenSportShirt:MovieClip;
public var jenStockings:MovieClip;
public var amEars:MovieClip;
public var heart5:MovieClip;
public var spin15:MovieClip;
public var btnSportShirt:MovieClip;
public var btnNipWeight:MovieClip;
public var amGag:MovieClip;
public var amLeggings:MovieClip;
public var amBlindfold:MovieClip;
public var heart6:MovieClip;
public var expressionAmBack:MovieClip;
public var spin16:MovieClip;
public var spin1:MovieClip;
public var jenLeggings:MovieClip;
public var amBra:MovieClip;
public var heart7:MovieClip;
public var heartStick:MovieClip;
public var removerHook:MovieClip;
public var spin17:MovieClip;
public var spin2:MovieClip;
public var btnBareRoom:MovieClip;
public var btnBra:MovieClip;
public var jenSwimsuit:MovieClip;
public var myMouse:MovieClip;
public var spider:MovieClip;
public var spin3:MovieClip;
public var btnNailPolish:MovieClip;
public var btnFootL:MovieClip;
public var amSwimsuit:MovieClip;
public var btnRotate:MovieClip;
public var ropes:MovieClip;
public var amPanties:MovieClip;
public var jenMask:MovieClip;
public var spin4:MovieClip;
public var btnSocks:MovieClip;
public var btnBunnyEars:MovieClip;
public var jenEars:MovieClip;
public var spin5:MovieClip;
public var btnPark:MovieClip;
public var btnPanties:MovieClip;
public var amFeetMask:MovieClip;
public var spin6:MovieClip;
public var btnHeartStick:MovieClip;
public var btnSwimsuit:MovieClip;
public var btnLeggings:MovieClip;
public var btnBallGag:MovieClip;
public var btnRandom:MovieClip;
public var expressionAm:MovieClip;
public var currentChar;
public var bCodeCorrect:Boolean;
public var currentCursor;
public var myTween:Tween;
public var countDown;
public var frontChar;
public var backChar;
public var hee;
public var r1;
public var yo1;
public var ic3;
public var yop;
public var lo2;
public var tee;
public var wee;
public var burnArr:Array;
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 customCursor(_arg1:Event):void{
if (txtCode.text.toLowerCase() == ((((wee + r1) + tee) + yop) + ic3)){
bCodeCorrect = true;
} else {
bCodeCorrect = false;
};
if (currentCursor == 0){
myMouse.x = stage.mouseX;
myMouse.y = stage.mouseY;
} else {
if (currentCursor == 1){
spider.x = stage.mouseX;
spider.y = stage.mouseY;
} else {
if (currentCursor == 2){
feather.x = stage.mouseX;
feather.y = stage.mouseY;
} else {
if (currentCursor == 5){
removerHook.x = stage.mouseX;
removerHook.y = stage.mouseY;
} else {
heartStick.x = stage.mouseX;
heartStick.y = stage.mouseY;
};
};
};
};
countDown = (countDown - 1);
if (countDown < 1){
countDown = (Math.floor((Math.random() * 20)) + 20);
if ((((expressionJen.currentFrame < 5)) && ((Math.floor((Math.random() * 2)) == 0)))){
expressionJen.gotoAndStop(Math.ceil((Math.random() * 4)));
};
if ((((expressionJenBack.currentFrame < 5)) && ((Math.floor((Math.random() * 2)) == 0)))){
expressionJenBack.gotoAndStop(Math.ceil((Math.random() * 4)));
};
if ((((expressionAm.currentFrame < 5)) && ((Math.floor((Math.random() * 2)) == 0)))){
expressionAm.gotoAndStop(Math.ceil((Math.random() * 4)));
};
if ((((expressionAmBack.currentFrame < 5)) && ((Math.floor((Math.random() * 2)) == 0)))){
expressionAmBack.gotoAndStop(Math.ceil((Math.random() * 4)));
};
};
if (currentCursor == 2){
if (currentChar == 1){
frontChar = expressionJen;
backChar = expressionAm;
} else {
frontChar = expressionAmBack;
backChar = expressionJenBack;
};
if ((((((((feather.x > 65)) && ((feather.x < 150)))) && ((feather.y > 484)))) && ((feather.y < 565)))){
if (backChar.currentFrame < 6){
backChar.gotoAndPlay(6);
};
} else {
if ((((((((feather.x > 190)) && ((feather.x < 233)))) && ((feather.y > 300)))) && ((feather.y < 441)))){
if (backChar.currentFrame < 6){
backChar.gotoAndPlay(6);
};
} else {
if ((((((((feather.x > 90)) && ((feather.x < 175)))) && ((feather.y > 213)))) && ((feather.y < 471)))){
if (frontChar.currentFrame < 6){
frontChar.gotoAndPlay(6);
};
} else {
if (backChar.currentFrame > 5){
backChar.gotoAndStop(Math.ceil((Math.random() * 4)));
};
if (frontChar.currentFrame > 5){
frontChar.gotoAndStop(Math.ceil((Math.random() * 4)));
};
};
};
};
};
}
public function mouseClicked(_arg1:MouseEvent):void{
var _local2:* = _arg1.target.name;
if (_arg1.target.name == null){
_local2 = " ";
};
if ((((_local2 == "btnRotate")) && ((heartStick.x < 40)))){
if (currentChar == 1){
currentChar = 2;
expressionJen.alpha = 0;
expressionJenBack.alpha = 1;
expressionAm.alpha = 0;
expressionAmBack.alpha = 1;
} else {
currentChar = 1;
expressionJenBack.alpha = 0;
expressionJen.alpha = 1;
expressionAmBack.alpha = 0;
expressionAm.alpha = 1;
};
styleButtons();
countDown = 30;
if (expressionJen.currentFrame < 5){
expressionJen.gotoAndStop(Math.ceil((Math.random() * 4)));
expressionJenBack.gotoAndStop(Math.ceil((Math.random() * 4)));
};
if (expressionAm.currentFrame < 5){
expressionAm.gotoAndStop(Math.ceil((Math.random() * 4)));
expressionAmBack.gotoAndStop(Math.ceil((Math.random() * 4)));
};
jenAmanda.gotoAndStop(currentChar);
amBlindfold.gotoAndStop(currentChar);
amBra.gotoAndStop(currentChar);
amCorset.gotoAndStop(currentChar);
amEars.gotoAndStop(currentChar);
amGag.gotoAndStop(currentChar);
amLeggings.gotoAndStop(currentChar);
amMask.gotoAndStop(currentChar);
amPanties.gotoAndStop(currentChar);
amSocks.gotoAndStop(currentChar);
amSportShirt.gotoAndStop(currentChar);
amStockings.gotoAndStop(currentChar);
amSwimsuit.gotoAndStop(currentChar);
jenBlindfold.gotoAndStop(currentChar);
jenBra.gotoAndStop(currentChar);
jenCorset.gotoAndStop(currentChar);
jenEars.gotoAndStop(currentChar);
jenGag.gotoAndStop(currentChar);
jenLeggings.gotoAndStop(currentChar);
jenMask.gotoAndStop(currentChar);
jenPanties.gotoAndStop(currentChar);
jenSocks.gotoAndStop(currentChar);
jenSportShirt.gotoAndStop(currentChar);
jenStockings.gotoAndStop(currentChar);
jenSwimsuit.gotoAndStop(currentChar);
ropes.gotoAndStop(currentChar);
jenNails.gotoAndStop(currentChar);
amNails.gotoAndStop(currentChar);
jenFeetMask.gotoAndStop(currentChar);
amFeetMask.gotoAndStop(currentChar);
heart1.alpha = burnArr[(currentChar - 1)][0];
heart2.alpha = burnArr[(currentChar - 1)][1];
heart3.alpha = burnArr[(currentChar - 1)][2];
heart4.alpha = burnArr[(currentChar - 1)][3];
heart5.alpha = burnArr[(currentChar - 1)][4];
heart6.alpha = burnArr[(currentChar - 1)][5];
heart7.alpha = burnArr[(currentChar - 1)][6];
} else {
if ((((currentCursor == 1)) && ((_local2.substring(0, 4) == "spin")))){
addWeb(_arg1.target);
} else {
if ((((currentCursor == 5)) && ((_local2.substring(0, 4) == "spin")))){
removerHook.gotoAndPlay(2);
removeWeb(_arg1.target);
} else {
if (_local2 == "btnNone"){
currentCursor = 0;
heartStick.x = 38;
heartStick.y = 441;
removerHook.x = 91;
removerHook.y = 595;
spider.x = 33;
spider.y = 516;
feather.x = 53;
feather.y = 585;
feather.gotoAndStop(1);
spider.gotoAndStop(1);
} else {
if (_local2 == "btnHook"){
currentCursor = 5;
myMouse.y = 1000;
heartStick.x = 38;
heartStick.y = 441;
spider.x = 33;
spider.y = 516;
feather.x = 53;
feather.y = 585;
feather.gotoAndStop(1);
spider.gotoAndStop(1);
} else {
if (_local2 == "btnSpider"){
currentCursor = 1;
myMouse.y = 1000;
removerHook.x = 91;
removerHook.y = 595;
heartStick.x = 38;
heartStick.y = 441;
feather.x = 53;
feather.y = 585;
feather.gotoAndStop(1);
spider.gotoAndPlay(1);
} else {
if (currentCursor == 5){
} else {
if (bCodeCorrect == true){
if (_local2 == "btnRandom"){
hideOutfits();
randomizeOutfits();
styleButtons();
} else {
if (_local2 == "btnStripAll"){
hideOutfits();
styleButtons();
} else {
if (_local2 == "btnNailPolish"){
if (currentChar == 2){
jenNails.alpha = (1 - jenNails.alpha);
} else {
amNails.alpha = (1 - amNails.alpha);
};
styleButtons();
} else {
if (_local2 == "btnNipWeight"){
weights.alpha = (1 - weights.alpha);
styleButtons();
} else {
if (_local2 == "btnBunnyEars"){
if (currentChar == 1){
jenEars.alpha = (1 - jenEars.alpha);
} else {
amEars.alpha = (1 - amEars.alpha);
};
styleButtons();
} else {
if (_local2 == "btnGasMask"){
if (currentChar == 1){
jenFeetMask.alpha = 0;
jenMask.alpha = (1 - jenMask.alpha);
} else {
amFeetMask.alpha = 0;
amMask.alpha = (1 - amMask.alpha);
};
styleButtons();
} else {
if (_local2 == "btnBallGag"){
if (currentChar == 1){
jenGag.alpha = (1 - jenGag.alpha);
} else {
amGag.alpha = (1 - amGag.alpha);
};
styleButtons();
} else {
if (_local2 == "btnFaceWrap"){
facewrap.alpha = (1 - facewrap.alpha);
styleButtons();
} else {
if (_local2 == "btnBlindFold"){
if (currentChar == 1){
jenBlindfold.alpha = (1 - jenBlindfold.alpha);
} else {
amBlindfold.alpha = (1 - amBlindfold.alpha);
};
styleButtons();
} else {
if (_local2 == "btnCorset"){
if (currentChar == 1){
jenCorset.alpha = (1 - jenCorset.alpha);
} else {
amCorset.alpha = (1 - amCorset.alpha);
};
styleButtons();
} else {
if (_local2 == "btnSportShirt"){
if (currentChar == 1){
jenSportShirt.alpha = (1 - jenSportShirt.alpha);
} else {
amSportShirt.alpha = (1 - amSportShirt.alpha);
};
styleButtons();
} else {
if (_local2 == "btnLeggings"){
if (currentChar == 1){
jenLeggings.alpha = (1 - jenLeggings.alpha);
} else {
amLeggings.alpha = (1 - amLeggings.alpha);
};
styleButtons();
} else {
if (_local2 == "btnSwimsuit"){
if (currentChar == 1){
jenSwimsuit.alpha = (1 - jenSwimsuit.alpha);
} else {
amSwimsuit.alpha = (1 - amSwimsuit.alpha);
};
styleButtons();
} else {
if (_local2 == "btnBra"){
if (currentChar == 1){
jenBra.alpha = (1 - jenBra.alpha);
} else {
amBra.alpha = (1 - amBra.alpha);
};
styleButtons();
} else {
if (_local2 == "btnPanties"){
if (currentChar == 1){
jenPanties.alpha = (1 - jenPanties.alpha);
} else {
amPanties.alpha = (1 - amPanties.alpha);
};
styleButtons();
} else {
if (_local2 == "btnStockings"){
if (currentChar == 1){
jenStockings.alpha = (0.5 - jenStockings.alpha);
} else {
amStockings.alpha = (0.5 - amStockings.alpha);
};
styleButtons();
} else {
if (_local2 == "btnFeetMask"){
if (currentChar == 1){
jenMask.alpha = 0;
jenFeetMask.alpha = (1 - jenFeetMask.alpha);
} else {
amMask.alpha = 0;
amFeetMask.alpha = (1 - amFeetMask.alpha);
};
styleButtons();
} else {
if (_local2 == "btnSocks"){
if (currentChar == 2){
jenSocks.alpha = (1 - jenSocks.alpha);
} else {
amSocks.alpha = (1 - amSocks.alpha);
};
styleButtons();
} else {
if (_local2 == "btnFootR"){
myTween.stop();
currentCursor = 0;
heartStick.y = 521;
myTween = new Tween(heartStick, "x", Strong.easeIn, 101, 71, 3, true);
heart1.alpha = 0.75;
burnArr[(currentChar - 1)][0] = 0.75;
myTween.addEventListener(TweenEvent.MOTION_FINISH, hideStick);
requestExpressionSprites();
backChar.gotoAndStop(5);
} else {
if (_local2 == "btnFootL"){
myTween.stop();
currentCursor = 0;
heartStick.y = 533;
myTween = new Tween(heartStick, "x", Strong.easeIn, 132, 102, 3, true);
heart2.alpha = 0.75;
burnArr[(currentChar - 1)][1] = 0.75;
myTween.addEventListener(TweenEvent.MOTION_FINISH, hideStick);
requestExpressionSprites();
backChar.gotoAndStop(5);
} else {
if (_local2 == "btnLegL"){
myTween.stop();
currentCursor = 0;
heartStick.y = 421;
myTween = new Tween(heartStick, "x", Strong.easeIn, 96, 66, 3, true);
heart3.alpha = 0.75;
burnArr[(currentChar - 1)][2] = 0.75;
myTween.addEventListener(TweenEvent.MOTION_FINISH, hideStick);
requestExpressionSprites();
frontChar.gotoAndStop(5);
} else {
if (_local2 == "btnBelly"){
myTween.stop();
currentCursor = 0;
heartStick.y = 362;
myTween = new Tween(heartStick, "x", Strong.easeIn, 137, 107, 3, true);
heart4.alpha = 0.75;
burnArr[(currentChar - 1)][3] = 0.75;
myTween.addEventListener(TweenEvent.MOTION_FINISH, hideStick);
requestExpressionSprites();
frontChar.gotoAndStop(5);
} else {
if (_local2 == "btnButt"){
myTween.stop();
currentCursor = 0;
heartStick.y = 354;
myTween = new Tween(heartStick, "x", Strong.easeIn, 206, 176, 3, true);
heart5.alpha = 0.75;
burnArr[(currentChar - 1)][4] = 0.75;
myTween.addEventListener(TweenEvent.MOTION_FINISH, hideStick);
requestExpressionSprites();
backChar.gotoAndStop(5);
} else {
if (_local2 == "btnArm"){
myTween.stop();
currentCursor = 0;
heartStick.y = 250;
myTween = new Tween(heartStick, "x", Strong.easeIn, 212, 182, 3, true);
heart7.alpha = 0.75;
burnArr[(currentChar - 1)][6] = 0.75;
myTween.addEventListener(TweenEvent.MOTION_FINISH, hideStick);
requestExpressionSprites();
backChar.gotoAndStop(5);
} else {
if (_local2 == "btnBreast"){
myTween.stop();
currentCursor = 0;
heartStick.y = 251;
myTween = new Tween(heartStick, "x", Strong.easeIn, 105, 75, 3, true);
heart6.alpha = 0.75;
burnArr[(currentChar - 1)][5] = 0.75;
myTween.addEventListener(TweenEvent.MOTION_FINISH, hideStick);
requestExpressionSprites();
frontChar.gotoAndStop(5);
} else {
if (_local2 == "btnRopes"){
ropes.alpha = (1 - ropes.alpha);
styleButtons();
} else {
if (_local2 == "btnFeather"){
currentCursor = 2;
myMouse.y = 1000;
heartStick.x = 38;
heartStick.y = 441;
spider.x = 33;
spider.y = 516;
removerHook.x = 91;
removerHook.y = 595;
feather.gotoAndPlay(1);
spider.gotoAndStop(1);
} else {
if (_local2 == "btnHeartStick"){
currentCursor = 3;
myMouse.y = 1000;
spider.x = 33;
spider.y = 516;
removerHook.x = 91;
removerHook.y = 595;
feather.x = 53;
feather.y = 585;
feather.gotoAndStop(1);
spider.gotoAndStop(1);
} else {
if (_local2 == "btnBareRoom"){
backArt.gotoAndStop(1);
styleButtons();
} else {
if (_local2 == "btnPark"){
backArt.gotoAndStop(2);
styleButtons();
} else {
if (_local2 == "btnArena"){
backArt.gotoAndStop(3);
styleButtons();
} else {
if (_local2 == "btnTvShow"){
backArt.gotoAndStop(4);
styleButtons();
} else {
if (_local2 == "btnScene1"){
backArt.gotoAndStop(5);
styleButtons();
} else {
if (_local2 == "btnScene2"){
backArt.gotoAndStop(6);
styleButtons();
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
}
public function requestExpressionSprites():void{
if (currentChar == 1){
frontChar = expressionJen;
backChar = expressionAm;
} else {
frontChar = expressionAmBack;
backChar = expressionJenBack;
};
}
public function hideOutfits():void{
amBlindfold.alpha = 0;
amBra.alpha = 0;
amCorset.alpha = 0;
amEars.alpha = 0;
amGag.alpha = 0;
amLeggings.alpha = 0;
amMask.alpha = 0;
amPanties.alpha = 0;
amSocks.alpha = 0;
amSportShirt.alpha = 0;
amStockings.alpha = 0;
amSwimsuit.alpha = 0;
jenBlindfold.alpha = 0;
jenBra.alpha = 0;
jenCorset.alpha = 0;
jenEars.alpha = 0;
jenGag.alpha = 0;
jenLeggings.alpha = 0;
jenMask.alpha = 0;
jenPanties.alpha = 0;
jenSocks.alpha = 0;
jenSportShirt.alpha = 0;
jenStockings.alpha = 0;
jenSwimsuit.alpha = 0;
ropes.alpha = 0;
facewrap.alpha = 0;
heart1.alpha = 0;
heart2.alpha = 0;
heart3.alpha = 0;
heart4.alpha = 0;
heart5.alpha = 0;
heart6.alpha = 0;
heart7.alpha = 0;
weights.alpha = 0;
jenNails.alpha = 0;
amNails.alpha = 0;
jenFeetMask.alpha = 0;
amFeetMask.alpha = 0;
spin1.alpha = 0;
spin2.alpha = 0;
spin3.alpha = 0;
spin4.alpha = 0;
spin5.alpha = 0;
spin6.alpha = 0;
spin7.alpha = 0;
spin8.alpha = 0;
spin9.alpha = 0;
spin10.alpha = 0;
spin11.alpha = 0;
spin12.alpha = 0;
spin13.alpha = 0;
spin14.alpha = 0;
spin15.alpha = 0;
spin16.alpha = 0;
spin17.alpha = 0;
}
public function randomizeOutfits():void{
var _local1:* = Math.floor((Math.random() * 4));
if (_local1 == 0){
jenBra.alpha = 1;
jenPanties.alpha = 1;
jenSocks.alpha = 1;
} else {
if (_local1 == 1){
jenSwimsuit.alpha = 1;
} else {
if (_local1 == 2){
jenLeggings.alpha = 1;
jenSocks.alpha = 1;
jenSportShirt.alpha = 1;
} else {
if (_local1 == 3){
jenEars.alpha = 1;
jenSwimsuit.alpha = 1;
jenStockings.alpha = 0.5;
};
};
};
};
_local1 = Math.floor((Math.random() * 4));
if (_local1 == 0){
amBra.alpha = 1;
amPanties.alpha = 1;
amSocks.alpha = 1;
} else {
if (_local1 == 1){
amSwimsuit.alpha = 1;
} else {
if (_local1 == 2){
amLeggings.alpha = 1;
amSocks.alpha = 1;
amSportShirt.alpha = 1;
} else {
if (_local1 == 3){
amEars.alpha = 1;
amSwimsuit.alpha = 1;
amStockings.alpha = 0.5;
};
};
};
};
jenNails.alpha = Math.floor((Math.random() * 2));
amNails.alpha = Math.floor((Math.random() * 2));
}
public function hideStick(_arg1:TweenEvent):void{
heartStick.x = 38;
heartStick.y = 441;
expressionJen.gotoAndStop(1);
expressionAm.gotoAndStop(1);
expressionJenBack.gotoAndStop(1);
expressionAmBack.gotoAndStop(1);
}
public function addWeb(_arg1):void{
_arg1.alpha = (_arg1.alpha + 0.2);
if (_arg1.alpha > 1){
_arg1.alpha = 1;
};
}
public function removeWeb(_arg1):void{
if (_arg1.alpha > 0.6){
_arg1.alpha = 0.5;
} else {
if (_arg1.alpha > 0.1){
_arg1.alpha = 0;
};
};
}
public function styleButtons():void{
if (currentChar == 1){
btnBra.gotoAndStop((jenBra.alpha + 1));
btnBunnyEars.gotoAndStop((jenEars.alpha + 1));
btnNailPolish.gotoAndStop((amNails.alpha + 1));
btnFeetMask.gotoAndStop((jenFeetMask.alpha + 1));
btnGasMask.gotoAndStop((jenMask.alpha + 1));
btnBallGag.gotoAndStop((jenGag.alpha + 1));
btnBlindFold.gotoAndStop((jenBlindfold.alpha + 1));
btnCorset.gotoAndStop((jenCorset.alpha + 1));
btnRopes.gotoAndStop((ropes.alpha + 1));
btnSportShirt.gotoAndStop((jenSportShirt.alpha + 1));
btnLeggings.gotoAndStop((jenLeggings.alpha + 1));
btnSwimsuit.gotoAndStop((jenSwimsuit.alpha + 1));
btnPanties.gotoAndStop((jenPanties.alpha + 1));
btnSocks.gotoAndStop((amSocks.alpha + 1));
btnFaceWrap.gotoAndStop((facewrap.alpha + 1));
btnNipWeight.gotoAndStop((weights.alpha + 1));
if (jenStockings.alpha > 0){
btnStockings.gotoAndStop(2);
} else {
btnStockings.gotoAndStop(1);
};
} else {
btnBra.gotoAndStop((amBra.alpha + 1));
btnBunnyEars.gotoAndStop((amEars.alpha + 1));
btnNailPolish.gotoAndStop((jenNails.alpha + 1));
btnFeetMask.gotoAndStop((amFeetMask.alpha + 1));
btnGasMask.gotoAndStop((amMask.alpha + 1));
btnBallGag.gotoAndStop((amGag.alpha + 1));
btnBlindFold.gotoAndStop((amBlindfold.alpha + 1));
btnCorset.gotoAndStop((amCorset.alpha + 1));
btnRopes.gotoAndStop((ropes.alpha + 1));
btnSportShirt.gotoAndStop((amSportShirt.alpha + 1));
btnLeggings.gotoAndStop((amLeggings.alpha + 1));
btnSwimsuit.gotoAndStop((amSwimsuit.alpha + 1));
btnPanties.gotoAndStop((amPanties.alpha + 1));
btnSocks.gotoAndStop((jenSocks.alpha + 1));
btnFaceWrap.gotoAndStop((facewrap.alpha + 1));
btnNipWeight.gotoAndStop((weights.alpha + 1));
if (amStockings.alpha > 0){
btnStockings.gotoAndStop(2);
} else {
btnStockings.gotoAndStop(1);
};
};
if (backArt.currentFrame == 1){
btnBareRoom.gotoAndStop(2);
btnPark.gotoAndStop(1);
btnArena.gotoAndStop(1);
btnTvShow.gotoAndStop(1);
btnScene1.gotoAndStop(1);
btnScene2.gotoAndStop(1);
pole.alpha = 0;
flames.alpha = 0;
} else {
if (backArt.currentFrame == 2){
btnBareRoom.gotoAndStop(1);
btnPark.gotoAndStop(2);
btnArena.gotoAndStop(1);
btnTvShow.gotoAndStop(1);
btnScene1.gotoAndStop(1);
btnScene2.gotoAndStop(1);
pole.alpha = 0;
flames.alpha = 0;
} else {
if (backArt.currentFrame == 3){
btnBareRoom.gotoAndStop(1);
btnPark.gotoAndStop(1);
btnArena.gotoAndStop(2);
btnTvShow.gotoAndStop(1);
btnScene1.gotoAndStop(1);
btnScene2.gotoAndStop(1);
pole.alpha = 0;
flames.alpha = 0;
} else {
if (backArt.currentFrame == 4){
btnBareRoom.gotoAndStop(1);
btnPark.gotoAndStop(1);
btnArena.gotoAndStop(1);
btnTvShow.gotoAndStop(2);
btnScene1.gotoAndStop(1);
btnScene2.gotoAndStop(1);
pole.alpha = 0;
flames.alpha = 0;
} else {
if (backArt.currentFrame == 5){
btnBareRoom.gotoAndStop(1);
btnPark.gotoAndStop(1);
btnArena.gotoAndStop(1);
btnTvShow.gotoAndStop(1);
btnScene1.gotoAndStop(2);
btnScene2.gotoAndStop(1);
pole.alpha = 0;
flames.alpha = 0;
} else {
if (backArt.currentFrame == 6){
btnBareRoom.gotoAndStop(1);
btnPark.gotoAndStop(1);
btnArena.gotoAndStop(1);
btnTvShow.gotoAndStop(1);
btnScene1.gotoAndStop(1);
btnScene2.gotoAndStop(2);
pole.alpha = 1;
flames.alpha = 1;
};
};
};
};
};
};
}
function frame1(){
stop();
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress);
this.loaderInfo.addEventListener(Event.COMPLETE, onComplete);
}
function frame2(){
stop();
currentChar = 1;
bCodeCorrect = false;
currentCursor = 0;
countDown = 20;
hee = "hee";
r1 = "rap";
yo1 = "yo";
ic3 = "ic";
yop = "ast";
lo2 = "low";
tee = "t";
wee = "w";
burnArr = [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]];
hideOutfits();
expressionJenBack.alpha = 0;
expressionAmBack.alpha = 0;
randomizeOutfits();
backArt.gotoAndStop(Math.ceil((Math.random() * 2)));
styleButtons();
feather.gotoAndStop(1);
spider.gotoAndStop(1);
myMouse.mouseEnabled = false;
heartStick.mouseEnabled = false;
feather.mouseEnabled = false;
spider.mouseEnabled = false;
removerHook.mouseEnabled = false;
jenFeetMask.mouseEnabled = false;
amFeetMask.mouseEnabled = false;
jenMask.mouseEnabled = false;
amMask.mouseEnabled = false;
flames.flame2.gotoAndPlay(6);
myTween = new Tween(heartStick, "x", Strong.easeIn, 37, 38, 0.5, true);
stage.addEventListener(Event.ENTER_FRAME, customCursor);
Mouse.hide();
stage.addEventListener(MouseEvent.CLICK, mouseClicked);
}
}
}//package sc_fla
Section 63
//pole_9 (sc_fla.pole_9)
package sc_fla {
import flash.display.*;
public dynamic class pole_9 extends MovieClip {
public function pole_9(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 64
//ropes_21 (sc_fla.ropes_21)
package sc_fla {
import flash.display.*;
public dynamic class ropes_21 extends MovieClip {
public function ropes_21(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package sc_fla
Section 65
//introStartButton (introStartButton)
package {
import flash.display.*;
public dynamic class introStartButton extends MovieClip {
}
}//package
Section 66
//movie_mc (movie_mc)
package {
import flash.display.*;
public dynamic class movie_mc extends MovieClip {
}
}//package