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

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

jenna-elfman-dress-up-game.swf

This is the info page for
Flash #113302

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


Text
GIRL'S BEST HANGOUT

1

2

3

P

E

Y

L

o

a

d

i

n

g

.

PLAY

BOTTOM

Alt

TOP

üst

SHOES

Ayakkabı

CHAIN

Kolye

STUDS

HAIR

Ilerle

Bastan

123PEPPY

DRESS

<p align="center"></p>

Tekrar Oyna

Mail

DESIGNED BY

<p align="center"></p>

Spela Me

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

YOUR FRIEND'S EMAIL :

YOUR FRIEND'S EMAIL :

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

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

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

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

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

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

ADD MORE

ADD MORE

ADD MORE

SEND

SEND

ActionScript [AS3]

Section 1
//Regular (fl.transitions.easing.Regular) package fl.transitions.easing { public class Regular { 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 easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((_arg3 * _arg1) * _arg1) + _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.display.*; import flash.utils.*; public class Tween extends EventDispatcher { private var _position:Number;// = NAN public var prevTime:Number;// = NAN public var prevPos:Number;// = NAN public var isPlaying:Boolean;// = false public var begin:Number;// = NAN private var _fps:Number;// = NAN private var _time:Number;// = NAN public var change:Number;// = NAN private var _finish:Number;// = NAN public var looping:Boolean;// = false private var _intervalID:uint;// = 0 public var func:Function; private var _timer:Timer;// = null private var _startTime:Number;// = NAN public var prop:String;// = "" private var _duration:Number;// = NAN public var obj:Object;// = null public var useSeconds:Boolean;// = false protected static var _mc:MovieClip = new MovieClip(); public function Tween(_arg1:Object, _arg2:String, _arg3:Function, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Boolean=false){ isPlaying = false; obj = null; prop = ""; func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); }; begin = NaN; change = NaN; useSeconds = false; prevTime = NaN; prevPos = NaN; looping = false; _duration = NaN; _time = NaN; _fps = NaN; _position = NaN; _startTime = NaN; _intervalID = 0; _finish = NaN; _timer = null; super(); if (!arguments.length){ return; }; this.obj = _arg1; this.prop = _arg2; this.begin = _arg4; this.position = _arg4; this.duration = _arg6; this.useSeconds = _arg7; if ((_arg3 is Function)){ this.func = _arg3; }; this.finish = _arg5; this._timer = new Timer(100); this.start(); } public function continueTo(_arg1:Number, _arg2:Number):void{ this.begin = this.position; this.finish = _arg1; if (!isNaN(_arg2)){ this.duration = _arg2; }; this.start(); } public function stop():void{ this.stopEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, this._time, this._position)); } private function fixTime():void{ if (this.useSeconds){ this._startTime = (getTimer() - (this._time * 1000)); }; } public function set FPS(_arg1:Number):void{ var _local2:Boolean; _local2 = this.isPlaying; this.stopEnterFrame(); this._fps = _arg1; if (_local2){ this.startEnterFrame(); }; } public function get finish():Number{ return ((this.begin + this.change)); } public function get duration():Number{ return (this._duration); } protected function startEnterFrame():void{ var _local1:Number; if (isNaN(this._fps)){ _mc.addEventListener(Event.ENTER_FRAME, this.onEnterFrame, false, 0, true); } else { _local1 = (1000 / this._fps); this._timer.delay = _local1; this._timer.addEventListener(TimerEvent.TIMER, this.timerHandler, false, 0, true); this._timer.start(); }; this.isPlaying = true; } public function set time(_arg1:Number):void{ this.prevTime = this._time; if (_arg1 > this.duration){ if (this.looping){ this.rewind((_arg1 - this._duration)); this.update(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_LOOP, this._time, this._position)); } else { if (this.useSeconds){ this._time = this._duration; this.update(); }; this.stop(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_FINISH, this._time, this._position)); }; } else { if (_arg1 < 0){ this.rewind(); this.update(); } else { this._time = _arg1; this.update(); }; }; } protected function stopEnterFrame():void{ if (isNaN(this._fps)){ _mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); } else { this._timer.stop(); }; this.isPlaying = false; } public function getPosition(_arg1:Number=NaN):Number{ if (isNaN(_arg1)){ _arg1 = this._time; }; return (this.func(_arg1, this.begin, this.change, this._duration)); } public function set finish(_arg1:Number):void{ this.change = (_arg1 - this.begin); } public function set duration(_arg1:Number):void{ this._duration = ((_arg1)<=0) ? Infinity : _arg1; } public function setPosition(_arg1:Number):void{ this.prevPos = this._position; if (this.prop.length){ this.obj[this.prop] = (this._position = _arg1); }; this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_CHANGE, this._time, this._position)); } public function resume():void{ this.fixTime(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_RESUME, this._time, this._position)); } public function fforward():void{ this.time = this._duration; this.fixTime(); } protected function onEnterFrame(_arg1:Event):void{ this.nextFrame(); } public function get position():Number{ return (this.getPosition(this._time)); } public function yoyo():void{ this.continueTo(this.begin, this.time); } public function nextFrame():void{ if (this.useSeconds){ this.time = ((getTimer() - this._startTime) / 1000); } else { this.time = (this._time + 1); }; } protected function timerHandler(_arg1:TimerEvent):void{ this.nextFrame(); _arg1.updateAfterEvent(); } public function get FPS():Number{ return (this._fps); } public function rewind(_arg1:Number=0):void{ this._time = _arg1; this.fixTime(); this.update(); } public function set position(_arg1:Number):void{ this.setPosition(_arg1); } public function get time():Number{ return (this._time); } private function update():void{ this.setPosition(this.getPosition(this._time)); } public function start():void{ this.rewind(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position)); } public function prevFrame():void{ if (!this.useSeconds){ this.time = (this._time - 1); }; } } }//package fl.transitions
Section 3
//TweenEvent (fl.transitions.TweenEvent) package fl.transitions { import flash.events.*; public class TweenEvent extends Event { public var time:Number;// = NAN public var position:Number;// = NAN public static const MOTION_START:String = "motionStart"; public static const MOTION_STOP:String = "motionStop"; public static const MOTION_LOOP:String = "motionLoop"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_FINISH:String = "motionFinish"; public static const MOTION_RESUME:String = "motionResume"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ time = NaN; position = NaN; super(_arg1, _arg4, _arg5); this.time = _arg2; this.position = _arg3; } override public function clone():Event{ return (new TweenEvent(this.type, this.time, this.position, this.bubbles, this.cancelable)); } } }//package fl.transitions
Section 4
//Back (gs.easing.Back) package gs.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / _arg4); return (((((_arg3 * _arg1) * _arg1) * (((_arg5 + 1) * _arg1) - _arg5)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * ((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) - _arg5))) + _arg2)); }; _arg1 = (_arg1 - 2); _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 2)) + _arg2)); } } }//package gs.easing
Section 5
//Linear (gs.easing.Linear) package gs.easing { public class Linear { public static function easeOut(_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 easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeNone(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } } }//package gs.easing
Section 6
//TweenEvent (gs.events.TweenEvent) package gs.events { import flash.events.*; public class TweenEvent extends Event { public var info:Object; public static const UPDATE:String = "update"; public static const START:String = "start"; public static const version:Number = 0.9; public static const COMPLETE:String = "complete"; public function TweenEvent(_arg1:String, _arg2:Object=null, _arg3:Boolean=false, _arg4:Boolean=false){ super(_arg1, _arg3, _arg4); this.info = _arg2; } override public function clone():Event{ return (new TweenEvent(this.type, this.info, this.bubbles, this.cancelable)); } } }//package gs.events
Section 7
//AutoAlphaPlugin (gs.plugins.AutoAlphaPlugin) package gs.plugins { import gs.*; import flash.display.*; public class AutoAlphaPlugin extends TweenPlugin { protected var _tweenVisible:Boolean; protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function AutoAlphaPlugin(){ this.propName = "autoAlpha"; this.overwriteProps = ["alpha", "visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); if (((!((_target.visible == true))) && (_tweenVisible))){ _target.visible = true; }; } public function onCompleteTween():void{ if (((((_tweenVisible) && (!((_tween.vars.runBackwards == true))))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(!((_arg2 == 0))); _tweenVisible = true; addTween(_arg1, "alpha", _arg1.alpha, _arg2, "alpha"); return (true); } override public function killProps(_arg1:Object):void{ super.killProps(_arg1); _tweenVisible = !(Boolean(("visible" in _arg1))); } } }//package gs.plugins
Section 8
//BevelFilterPlugin (gs.plugins.BevelFilterPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.filters.*; public class BevelFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BevelFilterPlugin(){ this.propName = "bevelFilter"; this.overwriteProps = ["bevelFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = BevelFilter; initFilter(_arg2, new BevelFilter(0, 0, 0xFFFFFF, 0.5, 0, 0.5, 2, 2, 0, ((_arg2.quality) || (2)))); return (true); } } }//package gs.plugins
Section 9
//BezierPlugin (gs.plugins.BezierPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class BezierPlugin extends TweenPlugin { protected var _future:Object; protected var _orient:Boolean; protected var _orientData:Array; protected var _beziers:Object; protected var _target:Object; protected static const _RAD2DEG:Number = 57.2957795130823; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function BezierPlugin(){ _future = {}; super(); this.propName = "bezier"; this.overwriteProps = []; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:String; var _local4:Object; var _local5:Number; var _local6:uint; var _local7:Number; var _local8:int; var _local9:Object; var _local10:Boolean; var _local11:Number; var _local12:Number; var _local13:Array; var _local14:Number; if (_arg1 == 1){ for (_local3 in _beziers) { _local2 = (_beziers[_local3].length - 1); _target[_local3] = _beziers[_local3][_local2][2]; }; } else { for (_local3 in _beziers) { _local6 = _beziers[_local3].length; if (_arg1 < 0){ _local2 = 0; } else { if (_arg1 >= 1){ _local2 = (_local6 - 1); } else { _local2 = int((_local6 * _arg1)); }; }; _local5 = ((_arg1 - (_local2 * (1 / _local6))) * _local6); _local4 = _beziers[_local3][_local2]; if (this.round){ _local7 = (_local4[0] + (_local5 * (((2 * (1 - _local5)) * (_local4[1] - _local4[0])) + (_local5 * (_local4[2] - _local4[0]))))); _local8 = ((_local7)<0) ? -1 : 1; _target[_local3] = ((((_local7 % 1) * _local8))>0.5) ? (int(_local7) + _local8) : int(_local7); } else { _target[_local3] = (_local4[0] + (_local5 * (((2 * (1 - _local5)) * (_local4[1] - _local4[0])) + (_local5 * (_local4[2] - _local4[0]))))); }; }; }; if (_orient){ _local9 = _target; _local10 = this.round; _target = _future; this.round = false; _orient = false; this.changeFactor = (_arg1 + 0.01); _target = _local9; this.round = _local10; _orient = true; _local2 = 0; while (_local2 < _orientData.length) { _local13 = _orientData[_local2]; _local14 = ((_local13[3]) || (0)); _local11 = (_future[_local13[0]] - _target[_local13[0]]); _local12 = (_future[_local13[1]] - _target[_local13[1]]); _target[_local13[2]] = ((Math.atan2(_local12, _local11) * _RAD2DEG) + _local14); _local2++; }; }; } protected function init(_arg1:TweenLite, _arg2:Array, _arg3:Boolean):void{ var _local4:Object; var _local5:int; var _local6:String; _target = _arg1.target; if (_arg1.exposedVars.orientToBezier == true){ _orientData = [["x", "y", "rotation", 0]]; _orient = true; } else { if ((_arg1.exposedVars.orientToBezier is Array)){ _orientData = _arg1.exposedVars.orientToBezier; _orient = true; }; }; _local4 = {}; _local5 = 0; while (_local5 < _arg2.length) { for (_local6 in _arg2[_local5]) { if (_local4[_local6] == undefined){ _local4[_local6] = [_arg1.target[_local6]]; }; if (typeof(_arg2[_local5][_local6]) == "number"){ _local4[_local6].push(_arg2[_local5][_local6]); } else { _local4[_local6].push((_arg1.target[_local6] + Number(_arg2[_local5][_local6]))); }; }; _local5++; }; for (_local6 in _local4) { this.overwriteProps[this.overwriteProps.length] = _local6; if (_arg1.exposedVars[_local6] != undefined){ if (typeof(_arg1.exposedVars[_local6]) == "number"){ _local4[_local6].push(_arg1.exposedVars[_local6]); } else { _local4[_local6].push((_arg1.target[_local6] + Number(_arg1.exposedVars[_local6]))); }; delete _arg1.exposedVars[_local6]; _local5 = (_arg1.tweens.length - 1); while (_local5 > -1) { if (_arg1.tweens[_local5].name == _local6){ _arg1.tweens.splice(_local5, 1); }; _local5--; }; }; }; _beziers = parseBeziers(_local4, _arg3); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (!(_arg2 is Array)){ return (false); }; init(_arg3, (_arg2 as Array), false); return (true); } override public function killProps(_arg1:Object):void{ var _local2:String; for (_local2 in _beziers) { if ((_local2 in _arg1)){ delete _beziers[_local2]; }; }; super.killProps(_arg1); } public static function parseBeziers(_arg1:Object, _arg2:Boolean=false):Object{ var _local3:int; var _local4:Array; var _local5:Object; var _local6:String; var _local7:Object; _local7 = {}; if (_arg2){ for (_local6 in _arg1) { _local4 = _arg1[_local6]; _local5 = []; _local7[_local6] = _local5; if (_local4.length > 2){ _local5[_local5.length] = [_local4[0], (_local4[1] - ((_local4[2] - _local4[0]) / 4)), _local4[1]]; _local3 = 1; while (_local3 < (_local4.length - 1)) { _local5[_local5.length] = [_local4[_local3], (_local4[_local3] + (_local4[_local3] - _local5[(_local3 - 1)][1])), _local4[(_local3 + 1)]]; _local3++; }; } else { _local5[_local5.length] = [_local4[0], ((_local4[0] + _local4[1]) / 2), _local4[1]]; }; }; } else { for (_local6 in _arg1) { _local4 = _arg1[_local6]; _local5 = []; _local7[_local6] = _local5; if (_local4.length > 3){ _local5[_local5.length] = [_local4[0], _local4[1], ((_local4[1] + _local4[2]) / 2)]; _local3 = 2; while (_local3 < (_local4.length - 2)) { _local5[_local5.length] = [_local5[(_local3 - 2)][2], _local4[_local3], ((_local4[_local3] + _local4[(_local3 + 1)]) / 2)]; _local3++; }; _local5[_local5.length] = [_local5[(_local5.length - 1)][2], _local4[(_local4.length - 2)], _local4[(_local4.length - 1)]]; } else { if (_local4.length == 3){ _local5[_local5.length] = [_local4[0], _local4[1], _local4[2]]; } else { if (_local4.length == 2){ _local5[_local5.length] = [_local4[0], ((_local4[0] + _local4[1]) / 2), _local4[1]]; }; }; }; }; }; return (_local7); } } }//package gs.plugins
Section 10
//BezierThroughPlugin (gs.plugins.BezierThroughPlugin) package gs.plugins { import gs.*; public class BezierThroughPlugin extends BezierPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BezierThroughPlugin(){ this.propName = "bezierThrough"; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (!(_arg2 is Array)){ return (false); }; init(_arg3, (_arg2 as Array), true); return (true); } } }//package gs.plugins
Section 11
//BlurFilterPlugin (gs.plugins.BlurFilterPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.filters.*; public class BlurFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BlurFilterPlugin(){ this.propName = "blurFilter"; this.overwriteProps = ["blurFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = BlurFilter; initFilter(_arg2, new BlurFilter(0, 0, ((_arg2.quality) || (2)))); return (true); } } }//package gs.plugins
Section 12
//ColorMatrixFilterPlugin (gs.plugins.ColorMatrixFilterPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.filters.*; public class ColorMatrixFilterPlugin extends FilterPlugin { protected var _matrix:Array; protected var _matrixTween:EndArrayPlugin; public static const API:Number = 1; public static const VERSION:Number = 1.01; protected static var _lumG:Number = 0.71516; protected static var _lumR:Number = 0.212671; protected static var _idMatrix:Array = [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]; protected static var _lumB:Number = 0.072169; public function ColorMatrixFilterPlugin(){ this.propName = "colorMatrixFilter"; this.overwriteProps = ["colorMatrixFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:Object; var _local5:Array; _target = _arg1; _type = ColorMatrixFilter; _local4 = _arg2; initFilter({}, new ColorMatrixFilter(_idMatrix.slice())); _matrix = ColorMatrixFilter(_filter).matrix; _local5 = []; if (((!((_local4.matrix == null))) && ((_local4.matrix is Array)))){ _local5 = _local4.matrix; } else { if (_local4.relative == true){ _local5 = _matrix.slice(); } else { _local5 = _idMatrix.slice(); }; _local5 = setBrightness(_local5, _local4.brightness); _local5 = setContrast(_local5, _local4.contrast); _local5 = setHue(_local5, _local4.hue); _local5 = setSaturation(_local5, _local4.saturation); _local5 = setThreshold(_local5, _local4.threshold); if (!isNaN(_local4.colorize)){ _local5 = colorize(_local5, _local4.colorize, _local4.amount); }; }; _matrixTween = new EndArrayPlugin(); _matrixTween.init(_matrix, _local5); return (true); } override public function set changeFactor(_arg1:Number):void{ _matrixTween.changeFactor = _arg1; ColorMatrixFilter(_filter).matrix = _matrix; super.changeFactor = _arg1; } public static function setSaturation(_arg1:Array, _arg2:Number):Array{ var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Array; if (isNaN(_arg2)){ return (_arg1); }; _local3 = (1 - _arg2); _local4 = (_local3 * _lumR); _local5 = (_local3 * _lumG); _local6 = (_local3 * _lumB); _local7 = [(_local4 + _arg2), _local5, _local6, 0, 0, _local4, (_local5 + _arg2), _local6, 0, 0, _local4, _local5, (_local6 + _arg2), 0, 0, 0, 0, 0, 1, 0]; return (applyMatrix(_local7, _arg1)); } public static function setHue(_arg1:Array, _arg2:Number):Array{ var _local3:Number; var _local4:Number; var _local5:Array; if (isNaN(_arg2)){ return (_arg1); }; _arg2 = (_arg2 * (Math.PI / 180)); _local3 = Math.cos(_arg2); _local4 = Math.sin(_arg2); _local5 = [((_lumR + (_local3 * (1 - _lumR))) + (_local4 * -(_lumR))), ((_lumG + (_local3 * -(_lumG))) + (_local4 * -(_lumG))), ((_lumB + (_local3 * -(_lumB))) + (_local4 * (1 - _lumB))), 0, 0, ((_lumR + (_local3 * -(_lumR))) + (_local4 * 0.143)), ((_lumG + (_local3 * (1 - _lumG))) + (_local4 * 0.14)), ((_lumB + (_local3 * -(_lumB))) + (_local4 * -0.283)), 0, 0, ((_lumR + (_local3 * -(_lumR))) + (_local4 * -((1 - _lumR)))), ((_lumG + (_local3 * -(_lumG))) + (_local4 * _lumG)), ((_lumB + (_local3 * (1 - _lumB))) + (_local4 * _lumB)), 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]; return (applyMatrix(_local5, _arg1)); } public static function setThreshold(_arg1:Array, _arg2:Number):Array{ var _local3:Array; if (isNaN(_arg2)){ return (_arg1); }; _local3 = [(_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), (_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), (_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), 0, 0, 0, 1, 0]; return (applyMatrix(_local3, _arg1)); } public static function applyMatrix(_arg1:Array, _arg2:Array):Array{ var _local3:Array; var _local4:int; var _local5:int; var _local6:int; var _local7:int; if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (_arg2); }; _local3 = []; _local4 = 0; _local5 = 0; _local6 = 0; while (_local6 < 4) { _local7 = 0; while (_local7 < 5) { if (_local7 == 4){ _local5 = _arg1[(_local4 + 4)]; } else { _local5 = 0; }; _local3[(_local4 + _local7)] = (((((_arg1[_local4] * _arg2[_local7]) + (_arg1[(_local4 + 1)] * _arg2[(_local7 + 5)])) + (_arg1[(_local4 + 2)] * _arg2[(_local7 + 10)])) + (_arg1[(_local4 + 3)] * _arg2[(_local7 + 15)])) + _local5); _local7++; }; _local4 = (_local4 + 5); _local6++; }; return (_local3); } public static function colorize(_arg1:Array, _arg2:Number, _arg3:Number=1):Array{ var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Array; if (isNaN(_arg2)){ return (_arg1); }; if (isNaN(_arg3)){ _arg3 = 1; }; _local4 = (((_arg2 >> 16) & 0xFF) / 0xFF); _local5 = (((_arg2 >> 8) & 0xFF) / 0xFF); _local6 = ((_arg2 & 0xFF) / 0xFF); _local7 = (1 - _arg3); _local8 = [(_local7 + ((_arg3 * _local4) * _lumR)), ((_arg3 * _local4) * _lumG), ((_arg3 * _local4) * _lumB), 0, 0, ((_arg3 * _local5) * _lumR), (_local7 + ((_arg3 * _local5) * _lumG)), ((_arg3 * _local5) * _lumB), 0, 0, ((_arg3 * _local6) * _lumR), ((_arg3 * _local6) * _lumG), (_local7 + ((_arg3 * _local6) * _lumB)), 0, 0, 0, 0, 0, 1, 0]; return (applyMatrix(_local8, _arg1)); } public static function setBrightness(_arg1:Array, _arg2:Number):Array{ if (isNaN(_arg2)){ return (_arg1); }; _arg2 = ((_arg2 * 100) - 100); return (applyMatrix([1, 0, 0, 0, _arg2, 0, 1, 0, 0, _arg2, 0, 0, 1, 0, _arg2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], _arg1)); } public static function setContrast(_arg1:Array, _arg2:Number):Array{ var _local3:Array; if (isNaN(_arg2)){ return (_arg1); }; _arg2 = (_arg2 + 0.01); _local3 = [_arg2, 0, 0, 0, (128 * (1 - _arg2)), 0, _arg2, 0, 0, (128 * (1 - _arg2)), 0, 0, _arg2, 0, (128 * (1 - _arg2)), 0, 0, 0, 1, 0]; return (applyMatrix(_local3, _arg1)); } } }//package gs.plugins
Section 13
//DropShadowFilterPlugin (gs.plugins.DropShadowFilterPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.filters.*; public class DropShadowFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function DropShadowFilterPlugin(){ this.propName = "dropShadowFilter"; this.overwriteProps = ["dropShadowFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = DropShadowFilter; initFilter(_arg2, new DropShadowFilter(0, 45, 0, 0, 0, 0, 1, ((_arg2.quality) || (2)), _arg2.inner, _arg2.knockout, _arg2.hideObject)); return (true); } } }//package gs.plugins
Section 14
//EndArrayPlugin (gs.plugins.EndArrayPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class EndArrayPlugin extends TweenPlugin { protected var _info:Array; protected var _a:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function EndArrayPlugin(){ _info = []; super(); this.propName = "endArray"; this.overwriteProps = ["endArray"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:ArrayTweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _a[_local3.index] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _a[_local3.index] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function init(_arg1:Array, _arg2:Array):void{ var _local3:int; _a = _arg1; _local3 = (_arg2.length - 1); while (_local3 > -1) { if (((!((_arg1[_local3] == _arg2[_local3]))) && (!((_arg1[_local3] == null))))){ _info[_info.length] = new ArrayTweenInfo(_local3, _a[_local3], (_arg2[_local3] - _a[_local3])); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (false); }; init((_arg1 as Array), _arg2); return (true); } } }//package gs.plugins
Section 15
//FilterPlugin (gs.plugins.FilterPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.filters.*; import gs.utils.tween.*; public class FilterPlugin extends TweenPlugin { protected var _index:int; protected var _filter:BitmapFilter; protected var _type:Class; protected var _remove:Boolean; protected var _target:Object; public static const VERSION:Number = 1.03; public static const API:Number = 1; override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Array; _local4 = _target.filters; _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; if (!(_local4[_index] is _type)){ _index = (_local4.length - 1); _local2 = (_local4.length - 1); while (_local2 > -1) { if ((_local4[_local2] is _type)){ _index = _local2; break; }; _local2--; }; }; _local4[_index] = _filter; _target.filters = _local4; } public function onCompleteTween():void{ var _local1:int; var _local2:Array; if (_remove){ _local2 = _target.filters; if (!(_local2[_index] is _type)){ _local1 = (_local2.length - 1); while (_local1 > -1) { if ((_local2[_local1] is _type)){ _local2.splice(_local1, 1); break; }; _local1--; }; } else { _local2.splice(_index, 1); }; _target.filters = _local2; }; } protected function initFilter(_arg1:Object, _arg2:BitmapFilter):void{ var _local3:Array; var _local4:String; var _local5:int; var _local6:HexColorsPlugin; var _local7:Object; _local3 = _target.filters; _index = -1; if (_arg1.index != null){ _index = _arg1.index; } else { _local5 = (_local3.length - 1); while (_local5 > -1) { if ((_local3[_local5] is _type)){ _index = _local5; break; }; _local5--; }; }; if ((((((_index == -1)) || ((_local3[_index] == null)))) || ((_arg1.addFilter == true)))){ _index = ((_arg1.index)!=null) ? _arg1.index : _local3.length; _local3[_index] = _arg2; _target.filters = _local3; }; _filter = _local3[_index]; _remove = Boolean((_arg1.remove == true)); if (_remove){ this.onComplete = onCompleteTween; }; _local7 = ((_arg1.isTV)==true) ? _arg1.exposedVars : _arg1; for (_local4 in _local7) { if (((((((((!((_local4 in _filter))) || ((_filter[_local4] == _local7[_local4])))) || ((_local4 == "remove")))) || ((_local4 == "index")))) || ((_local4 == "addFilter")))){ } else { if ((((((_local4 == "color")) || ((_local4 == "highlightColor")))) || ((_local4 == "shadowColor")))){ _local6 = new HexColorsPlugin(); _local6.initColor(_filter, _local4, _filter[_local4], _local7[_local4]); _tweens[_tweens.length] = new TweenInfo(_local6, "changeFactor", 0, 1, _local4, false); } else { if ((((((((_local4 == "quality")) || ((_local4 == "inner")))) || ((_local4 == "knockout")))) || ((_local4 == "hideObject")))){ _filter[_local4] = _local7[_local4]; } else { addTween(_filter, _local4, _filter[_local4], _local7[_local4], _local4); }; }; }; }; } } }//package gs.plugins
Section 16
//FramePlugin (gs.plugins.FramePlugin) package gs.plugins { import gs.*; import flash.display.*; public class FramePlugin extends TweenPlugin { public var frame:int; protected var _target:MovieClip; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function FramePlugin(){ this.propName = "frame"; this.overwriteProps = ["frame"]; this.round = true; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.gotoAndStop(this.frame); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is MovieClip))) || (isNaN(_arg2)))){ return (false); }; _target = (_arg1 as MovieClip); this.frame = _target.currentFrame; addTween(this, "frame", this.frame, _arg2, "frame"); return (true); } } }//package gs.plugins
Section 17
//GlowFilterPlugin (gs.plugins.GlowFilterPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.filters.*; public class GlowFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function GlowFilterPlugin(){ this.propName = "glowFilter"; this.overwriteProps = ["glowFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = GlowFilter; initFilter(_arg2, new GlowFilter(0xFFFFFF, 0, 0, 0, ((_arg2.strength) || (1)), ((_arg2.quality) || (2)), _arg2.inner, _arg2.knockout)); return (true); } } }//package gs.plugins
Section 18
//HexColorsPlugin (gs.plugins.HexColorsPlugin) package gs.plugins { import gs.*; public class HexColorsPlugin extends TweenPlugin { protected var _colors:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function HexColorsPlugin(){ this.propName = "hexColors"; this.overwriteProps = []; _colors = []; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:Array; _local2 = (_colors.length - 1); while (_local2 > -1) { _local3 = _colors[_local2]; _local3[0][_local3[1]] = ((((_local3[2] + (_arg1 * _local3[3])) << 16) | ((_local3[4] + (_arg1 * _local3[5])) << 8)) | (_local3[6] + (_arg1 * _local3[7]))); _local2--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:String; for (_local4 in _arg2) { initColor(_arg1, _local4, uint(_arg1[_local4]), uint(_arg2[_local4])); }; return (true); } override public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (_colors.length - 1); while (_local2 > -1) { if (_arg1[_colors[_local2][1]] != undefined){ _colors.splice(_local2, 1); }; _local2--; }; super.killProps(_arg1); } public function initColor(_arg1:Object, _arg2:String, _arg3:uint, _arg4:uint):void{ var _local5:Number; var _local6:Number; var _local7:Number; if (_arg3 != _arg4){ _local5 = (_arg3 >> 16); _local6 = ((_arg3 >> 8) & 0xFF); _local7 = (_arg3 & 0xFF); _colors[_colors.length] = [_arg1, _arg2, _local5, ((_arg4 >> 16) - _local5), _local6, (((_arg4 >> 8) & 0xFF) - _local6), _local7, ((_arg4 & 0xFF) - _local7)]; this.overwriteProps[this.overwriteProps.length] = _arg2; }; } } }//package gs.plugins
Section 19
//RemoveTintPlugin (gs.plugins.RemoveTintPlugin) package gs.plugins { public class RemoveTintPlugin extends TintPlugin { public static const VERSION:Number = 1.01; public static const API:Number = 1; public function RemoveTintPlugin(){ this.propName = "removeTint"; } } }//package gs.plugins
Section 20
//RoundPropsPlugin (gs.plugins.RoundPropsPlugin) package gs.plugins { public class RoundPropsPlugin extends TweenPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function RoundPropsPlugin(){ this.propName = "roundProps"; this.overwriteProps = []; this.round = true; } public function add(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number):void{ addTween(_arg1, _arg2, _arg3, (_arg3 + _arg4), _arg2); this.overwriteProps[this.overwriteProps.length] = _arg2; } } }//package gs.plugins
Section 21
//ShortRotationPlugin (gs.plugins.ShortRotationPlugin) package gs.plugins { import gs.*; public class ShortRotationPlugin extends TweenPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function ShortRotationPlugin(){ this.propName = "shortRotation"; this.overwriteProps = []; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:String; if (typeof(_arg2) == "number"){ trace("WARNING: You appear to be using the old shortRotation syntax. Instead of passing a number, please pass an object with properties that correspond to the rotations values For example, TweenMax.to(mc, 2, {shortRotation:{rotationX:-170, rotationY:25}})"); return (false); }; for (_local4 in _arg2) { initRotation(_arg1, _local4, _arg1[_local4], _arg2[_local4]); }; return (true); } public function initRotation(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number):void{ var _local5:Number; _local5 = ((_arg4 - _arg3) % 360); if (((_arg4 - _arg3) % 360) != (_local5 % 180)){ _local5 = ((_local5)<0) ? (_local5 + 360) : (_local5 - 360); }; addTween(_arg1, _arg2, _arg3, (_arg3 + _local5), _arg2); this.overwriteProps[this.overwriteProps.length] = _arg2; } } }//package gs.plugins
Section 22
//TintPlugin (gs.plugins.TintPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.geom.*; import gs.utils.tween.*; public class TintPlugin extends TweenPlugin { protected var _ct:ColorTransform; protected var _ignoreAlpha:Boolean; protected var _target:DisplayObject; public static const VERSION:Number = 1.1; public static const API:Number = 1; protected static var _props:Array = ["redMultiplier", "greenMultiplier", "blueMultiplier", "alphaMultiplier", "redOffset", "greenOffset", "blueOffset", "alphaOffset"]; public function TintPlugin(){ this.propName = "tint"; this.overwriteProps = ["tint"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:ColorTransform; updateTweens(_arg1); if (_ignoreAlpha){ _local2 = _target.transform.colorTransform; _ct.alphaMultiplier = _local2.alphaMultiplier; _ct.alphaOffset = _local2.alphaOffset; }; _target.transform.colorTransform = _ct; } public function init(_arg1:DisplayObject, _arg2:ColorTransform):void{ var _local3:int; var _local4:String; _target = _arg1; _ct = _target.transform.colorTransform; _local3 = (_props.length - 1); while (_local3 > -1) { _local4 = _props[_local3]; if (_ct[_local4] != _arg2[_local4]){ _tweens[_tweens.length] = new TweenInfo(_ct, _local4, _ct[_local4], (_arg2[_local4] - _ct[_local4]), "tint", false); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:ColorTransform; if (!(_arg1 is DisplayObject)){ return (false); }; _local4 = new ColorTransform(); if (((!((_arg2 == null))) && (!((_arg3.exposedVars.removeTint == true))))){ _local4.color = uint(_arg2); }; _ignoreAlpha = true; init((_arg1 as DisplayObject), _local4); return (true); } } }//package gs.plugins
Section 23
//TweenPlugin (gs.plugins.TweenPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class TweenPlugin { public var overwriteProps:Array; protected var _tweens:Array; public var round:Boolean; public var onComplete:Function; public var propName:String; protected var _changeFactor:Number;// = 0 public static const VERSION:Number = 1.03; public static const API:Number = 1; public function TweenPlugin(){ _tweens = []; _changeFactor = 0; super(); } protected function updateTweens(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _local3.target[_local3.property] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _changeFactor = _arg1; } protected function addTween(_arg1:Object, _arg2:String, _arg3:Number, _arg4, _arg5:String=null):void{ var _local6:Number; if (_arg4 != null){ _local6 = ((typeof(_arg4))=="number") ? (_arg4 - _arg3) : Number(_arg4); if (_local6 != 0){ _tweens[_tweens.length] = new TweenInfo(_arg1, _arg2, _arg3, _local6, ((_arg5) || (_arg2)), false); }; }; } public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (this.overwriteProps.length - 1); while (_local2 > -1) { if ((this.overwriteProps[_local2] in _arg1)){ this.overwriteProps.splice(_local2, 1); }; _local2--; }; _local2 = (_tweens.length - 1); while (_local2 > -1) { if ((_tweens[_local2].name in _arg1)){ _tweens.splice(_local2, 1); }; _local2--; }; } public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ addTween(_arg1, this.propName, _arg1[this.propName], _arg2, this.propName); return (true); } public function get changeFactor():Number{ return (_changeFactor); } public static function activate(_arg1:Array):Boolean{ var _local2:int; var _local3:Object; _local2 = (_arg1.length - 1); while (_local2 > -1) { _local3 = new (_arg1[_local2]); TweenLite.plugins[_local3.propName] = _arg1[_local2]; _local2--; }; return (true); } } }//package gs.plugins
Section 24
//VisiblePlugin (gs.plugins.VisiblePlugin) package gs.plugins { import gs.*; import flash.display.*; public class VisiblePlugin extends TweenPlugin { protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function VisiblePlugin(){ this.propName = "visible"; this.overwriteProps = ["visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ if (_target.visible != true){ _target.visible = true; }; } public function onCompleteTween():void{ if (((!((_tween.vars.runBackwards == true))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(_arg2); return (true); } } }//package gs.plugins
Section 25
//VolumePlugin (gs.plugins.VolumePlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.media.*; public class VolumePlugin extends TweenPlugin { protected var _st:SoundTransform; protected var _target:Object; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function VolumePlugin(){ this.propName = "volume"; this.overwriteProps = ["volume"]; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.soundTransform = _st; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((isNaN(_arg2)) || (!(_arg1.hasOwnProperty("soundTransform"))))){ return (false); }; _target = _arg1; _st = _target.soundTransform; addTween(_st, "volume", _st.volume, _arg2, "volume"); return (true); } } }//package gs.plugins
Section 26
//ArrayTweenInfo (gs.utils.tween.ArrayTweenInfo) package gs.utils.tween { public class ArrayTweenInfo { public var change:Number; public var index:uint; public var start:Number; public function ArrayTweenInfo(_arg1:uint, _arg2:Number, _arg3:Number){ this.index = _arg1; this.start = _arg2; this.change = _arg3; } } }//package gs.utils.tween
Section 27
//TweenInfo (gs.utils.tween.TweenInfo) package gs.utils.tween { public class TweenInfo { public var start:Number; public var name:String; public var change:Number; public var target:Object; public var property:String; public var isPlugin:Boolean; public function TweenInfo(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:Boolean){ this.target = _arg1; this.property = _arg2; this.start = _arg3; this.change = _arg4; this.name = _arg5; this.isPlugin = _arg6; } } }//package gs.utils.tween
Section 28
//OverwriteManager (gs.OverwriteManager) package gs { import gs.utils.tween.*; import flash.utils.*; import flash.errors.*; public class OverwriteManager { public static const ALL:int = 1; public static const NONE:int = 0; public static const AUTO:int = 2; public static const CONCURRENT:int = 3; public static const version:Number = 3.12; public static var mode:int; public static var enabled:Boolean; public static function killVars(_arg1:Object, _arg2:Object, _arg3:Array):void{ var _local4:int; var _local5:String; var _local6:TweenInfo; _local4 = (_arg3.length - 1); while (_local4 > -1) { _local6 = _arg3[_local4]; if ((_local6.name in _arg1)){ _arg3.splice(_local4, 1); } else { if (((_local6.isPlugin) && ((_local6.name == "_MULTIPLE_")))){ _local6.target.killProps(_arg1); if (_local6.target.overwriteProps.length == 0){ _arg3.splice(_local4, 1); }; }; }; _local4--; }; for (_local5 in _arg1) { delete _arg2[_local5]; }; } public static function manageOverwrites(_arg1:TweenLite, _arg2:Array):void{ var _local3:Object; var _local4:int; var _local5:Number; var _local6:Array; var _local7:int; var _local8:TweenLite; var _local9:int; var _local10:Array; var _local11:Object; var _local12:int; var _local13:TweenInfo; var _local14:Array; _local3 = _arg1.vars; _local4 = ((_local3.overwrite)==undefined) ? mode : int(_local3.overwrite); if ((((_local4 < 2)) || ((_arg2 == null)))){ return; }; _local5 = _arg1.startTime; _local6 = []; _local9 = -1; _local7 = (_arg2.length - 1); while (_local7 > -1) { _local8 = _arg2[_local7]; if (_local8 == _arg1){ _local9 = _local7; } else { if ((((((_local7 < _local9)) && ((_local8.startTime <= _local5)))) && (((_local8.startTime + ((_local8.duration * 1000) / _local8.combinedTimeScale)) > _local5)))){ _local6[_local6.length] = _local8; }; }; _local7--; }; if ((((_local6.length == 0)) || ((_arg1.tweens.length == 0)))){ return; }; if (_local4 == AUTO){ _local10 = _arg1.tweens; _local11 = {}; _local7 = (_local10.length - 1); while (_local7 > -1) { _local13 = _local10[_local7]; if (_local13.isPlugin){ if (_local13.name == "_MULTIPLE_"){ _local14 = _local13.target.overwriteProps; _local12 = (_local14.length - 1); while (_local12 > -1) { _local11[_local14[_local12]] = true; _local12--; }; } else { _local11[_local13.name] = true; }; _local11[_local13.target.propName] = true; } else { _local11[_local13.name] = true; }; _local7--; }; _local7 = (_local6.length - 1); while (_local7 > -1) { killVars(_local11, _local6[_local7].exposedVars, _local6[_local7].tweens); _local7--; }; } else { _local7 = (_local6.length - 1); while (_local7 > -1) { _local6[_local7].enabled = false; _local7--; }; }; } public static function init(_arg1:int=2):int{ if (TweenLite.version < 10.09){ trace("TweenLite warning: Your TweenLite class needs to be updated to work with OverwriteManager (or you may need to clear your ASO files). Please download and install the latest version from http://www.tweenlite.com."); }; TweenLite.overwriteManager = OverwriteManager; mode = _arg1; enabled = true; return (mode); } } }//package gs
Section 29
//TweenLite (gs.TweenLite) package gs { import flash.events.*; import flash.display.*; import gs.utils.tween.*; import gs.plugins.*; import flash.utils.*; public class TweenLite { public var delay:Number; protected var _hasUpdate:Boolean; protected var _hasPlugins:Boolean; public var started:Boolean; public var initted:Boolean; public var active:Boolean; public var startTime:Number; public var target:Object; public var duration:Number; public var gc:Boolean; public var vars:Object; public var ease:Function; public var tweens:Array; public var exposedVars:Object; public var combinedTimeScale:Number; public var initTime:Number; public static const version:Number = 10.09; private static var _timer:Timer = new Timer(2000); public static var defaultEase:Function = TweenLite.easeOut; public static var plugins:Object = {}; public static var currentTime:uint; public static var masterList:Dictionary = new Dictionary(false); protected static var _reservedProps:Object = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, roundProps:1, onStart:1, onStartParams:1, persist:1, renderOnStart:1, proxiedEase:1, easeParams:1, yoyo:1, loop:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, orientToBezier:1, timeScale:1}; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; public static var timingSprite:Sprite = new Sprite(); public static var overwriteManager:Object; private static var _tlInitted:Boolean; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ var _local4:int; super(); if (_arg1 == null){ return; }; if (!_tlInitted){ TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin]); currentTime = getTimer(); timingSprite.addEventListener(Event.ENTER_FRAME, updateAll, false, 0, true); if (overwriteManager == null){ overwriteManager = {mode:1, enabled:false}; }; _timer.addEventListener("timer", killGarbage, false, 0, true); _timer.start(); _tlInitted = true; }; this.vars = _arg3; this.duration = ((_arg2) || (0.001)); this.delay = ((_arg3.delay) || (0)); this.combinedTimeScale = ((_arg3.timeScale) || (1)); this.active = Boolean((((_arg2 == 0)) && ((this.delay == 0)))); this.target = _arg1; if (typeof(this.vars.ease) != "function"){ this.vars.ease = defaultEase; }; if (this.vars.easeParams != null){ this.vars.proxiedEase = this.vars.ease; this.vars.ease = easeProxy; }; this.ease = this.vars.ease; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedVars : this.vars; this.tweens = []; this.initTime = currentTime; this.startTime = (this.initTime + (this.delay * 1000)); _local4 = ((((_arg3.overwrite == undefined)) || (((!(overwriteManager.enabled)) && ((_arg3.overwrite > 1)))))) ? overwriteManager.mode : int(_arg3.overwrite); if (((!((_arg1 in masterList))) || ((_local4 == 1)))){ masterList[_arg1] = [this]; } else { masterList[_arg1].push(this); }; if ((((((this.vars.runBackwards == true)) && (!((this.vars.renderOnStart == true))))) || (this.active))){ initTweenVals(); if (this.active){ render((this.startTime + 1)); } else { render(this.startTime); }; if (((((!((this.exposedVars.visible == null))) && ((this.vars.runBackwards == true)))) && ((this.target is DisplayObject)))){ this.target.visible = this.exposedVars.visible; }; }; } public function set enabled(_arg1:Boolean):void{ var _local2:Array; var _local3:Boolean; var _local4:int; if (_arg1){ if (!(this.target in masterList)){ masterList[this.target] = [this]; } else { _local2 = masterList[this.target]; _local4 = (_local2.length - 1); while (_local4 > -1) { if (_local2[_local4] == this){ _local3 = true; break; }; _local4--; }; if (!_local3){ _local2[_local2.length] = this; }; }; }; this.gc = (_arg1) ? false : true; if (this.gc){ this.active = false; } else { this.active = this.started; }; } public function clear():void{ this.tweens = []; this.vars = (this.exposedVars = {ease:this.vars.ease}); _hasUpdate = false; } public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = ((_arg1 - this.startTime) * 0.001); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } public function activate():void{ this.started = (this.active = true); if (!this.initted){ initTweenVals(); }; if (this.vars.onStart != null){ this.vars.onStart.apply(null, this.vars.onStartParams); }; if (this.duration == 0.001){ this.startTime = (this.startTime - 1); }; } public function get enabled():Boolean{ return ((this.gc) ? false : true); } public function initTweenVals():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:TweenInfo; if (((!((this.exposedVars.timeScale == undefined))) && ((this.target is TweenLite)))){ this.tweens[this.tweens.length] = new TweenInfo(this.target, "timeScale", this.target.timeScale, (this.exposedVars.timeScale - this.target.timeScale), "timeScale", false); }; for (_local1 in this.exposedVars) { if ((_local1 in _reservedProps)){ } else { if ((_local1 in plugins)){ _local3 = new (plugins[_local1]); if (_local3.onInitTween(this.target, this.exposedVars[_local1], this) == false){ this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); } else { this.tweens[this.tweens.length] = new TweenInfo(_local3, "changeFactor", 0, 1, ((_local3.overwriteProps.length)==1) ? _local3.overwriteProps[0] : "_MULTIPLE_", true); _hasPlugins = true; }; } else { this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); }; }; }; if (this.vars.runBackwards == true){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local4 = this.tweens[_local2]; this.tweens[_local2].start = (_local4.start + _local4.change); _local4.change = -(_local4.change); _local2--; }; }; if (this.vars.onUpdate != null){ _hasUpdate = true; }; if (((TweenLite.overwriteManager.enabled) && ((this.target in masterList)))){ overwriteManager.manageOverwrites(this, masterList[this.target]); }; this.initted = true; } protected function easeProxy(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams))); } public function killVars(_arg1:Object):void{ if (overwriteManager.enabled){ overwriteManager.killVars(_arg1, this.exposedVars, this.tweens); }; } public function complete(_arg1:Boolean=false):void{ var _local2:int; if (!_arg1){ if (!this.initted){ initTweenVals(); }; this.startTime = (currentTime - ((this.duration * 1000) / this.combinedTimeScale)); render(currentTime); return; }; if (_hasPlugins){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { if (((this.tweens[_local2].isPlugin) && (!((this.tweens[_local2].target.onComplete == null))))){ this.tweens[_local2].target.onComplete(); }; _local2--; }; }; if (this.vars.persist != true){ this.enabled = false; }; if (this.vars.onComplete != null){ this.vars.onComplete.apply(null, this.vars.onCompleteParams); }; } public static function updateAll(_arg1:Event=null):void{ var _local2:uint; var _local3:Dictionary; var _local4:Array; var _local5:int; var _local6:TweenLite; _local2 = (currentTime = getTimer()); _local3 = masterList; for each (_local4 in _local3) { _local5 = (_local4.length - 1); while (_local5 > -1) { _local6 = _local4[_local5]; if (_local6.active){ _local6.render(_local2); } else { if (_local6.gc){ _local4.splice(_local5, 1); } else { if (_local2 >= _local6.startTime){ _local6.activate(); _local6.render(_local2); }; }; }; _local5--; }; }; } public static function removeTween(_arg1:TweenLite, _arg2:Boolean=true):void{ if (_arg1 != null){ if (_arg2){ _arg1.clear(); }; _arg1.enabled = false; }; } public static function killTweensOf(_arg1:Object=null, _arg2:Boolean=false):void{ var _local3:Array; var _local4:int; var _local5:TweenLite; if (((!((_arg1 == null))) && ((_arg1 in masterList)))){ _local3 = masterList[_arg1]; _local4 = (_local3.length - 1); while (_local4 > -1) { _local5 = _local3[_local4]; if (((_arg2) && (!(_local5.gc)))){ _local5.complete(false); }; _local5.clear(); _local4--; }; delete masterList[_arg1]; }; } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ _arg3.runBackwards = true; return (new TweenLite(_arg1, _arg2, _arg3)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } protected static function killGarbage(_arg1:TimerEvent):void{ var _local2:Dictionary; var _local3:Object; _local2 = masterList; for (_local3 in _local2) { if (_local2[_local3].length == 0){ delete _local2[_local3]; }; }; } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, overwrite:0})); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package gs
Section 30
//TweenMax (gs.TweenMax) package gs { import flash.events.*; import gs.utils.tween.*; import gs.plugins.*; import gs.events.*; import flash.utils.*; public class TweenMax extends TweenLite implements IEventDispatcher { protected var _dispatcher:EventDispatcher; protected var _callbacks:Object; public var pauseTime:Number; protected var _repeatCount:Number; protected var _timeScale:Number; public static const version:Number = 10.1; public static var removeTween:Function = TweenLite.removeTween; private static var _overwriteMode:int = (OverwriteManager.enabled) ? OverwriteManager.mode : OverwriteManager.init(); ; protected static var _pausedTweens:Dictionary = new Dictionary(false); protected static var _globalTimeScale:Number = 1; public static var killTweensOf:Function = TweenLite.killTweensOf; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; private static var _activatedPlugins:Boolean = TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin, HexColorsPlugin, BlurFilterPlugin, ColorMatrixFilterPlugin, BevelFilterPlugin, DropShadowFilterPlugin, GlowFilterPlugin, RoundPropsPlugin, BezierPlugin, BezierThroughPlugin, ShortRotationPlugin]); public function TweenMax(_arg1:Object, _arg2:Number, _arg3:Object){ super(_arg1, _arg2, _arg3); if (TweenLite.version < 10.09){ trace("TweenMax error! Please update your TweenLite class or try deleting your ASO files. TweenMax requires a more recent version. Download updates at http://www.TweenMax.com."); }; if (((!((this.combinedTimeScale == 1))) && ((this.target is TweenMax)))){ _timeScale = 1; this.combinedTimeScale = _globalTimeScale; } else { _timeScale = this.combinedTimeScale; this.combinedTimeScale = (this.combinedTimeScale * _globalTimeScale); }; if (((!((this.combinedTimeScale == 1))) && (!((this.delay == 0))))){ this.startTime = (this.initTime + (this.delay * (1000 / this.combinedTimeScale))); }; if (((((!((this.vars.onCompleteListener == null))) || (!((this.vars.onUpdateListener == null))))) || (!((this.vars.onStartListener == null))))){ initDispatcher(); if ((((_arg2 == 0)) && ((this.delay == 0)))){ onUpdateDispatcher(); onCompleteDispatcher(); }; }; _repeatCount = 0; if (((!(isNaN(this.vars.yoyo))) || (!(isNaN(this.vars.loop))))){ this.vars.persist = true; }; if ((((this.delay == 0)) && (!((this.exposedVars.startAt == null))))){ this.exposedVars.startAt.overwrite = 0; new TweenMax(this.target, 0, this.exposedVars.startAt); }; } override public function set enabled(_arg1:Boolean):void{ if (!_arg1){ _pausedTweens[this] = null; delete _pausedTweens[this]; }; super.enabled = _arg1; if (_arg1){ this.combinedTimeScale = (_timeScale * _globalTimeScale); }; } public function set reversed(_arg1:Boolean):void{ if (this.reversed != _arg1){ reverse(); }; } override public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = (((_arg1 - this.startTime) * 0.001) * this.combinedTimeScale); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } protected function adjustStartValues():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Number; var _local5:TweenInfo; var _local6:int; _local1 = this.progress; if (_local1 != 0){ _local2 = this.ease(_local1, 0, 1, 1); _local3 = (1 / (1 - _local2)); _local6 = (this.tweens.length - 1); while (_local6 > -1) { _local5 = this.tweens[_local6]; _local4 = (_local5.start + _local5.change); if (_local5.isPlugin){ _local5.change = ((_local4 - _local2) * _local3); } else { _local5.change = ((_local4 - _local5.target[_local5.property]) * _local3); }; _local5.start = (_local4 - _local5.change); _local6--; }; }; } public function get timeScale():Number{ return (_timeScale); } public function restart(_arg1:Boolean=false):void{ if (_arg1){ this.initTime = currentTime; this.startTime = (currentTime + (this.delay * (1000 / this.combinedTimeScale))); } else { this.startTime = currentTime; this.initTime = (currentTime - (this.delay * (1000 / this.combinedTimeScale))); }; _repeatCount = 0; if (this.target != this.vars.onComplete){ render(this.startTime); }; this.pauseTime = NaN; _pausedTweens[this] = null; delete _pausedTweens[this]; this.enabled = true; } public function get paused():Boolean{ return (!(isNaN(this.pauseTime))); } public function killProperties(_arg1:Array):void{ var _local2:Object; var _local3:int; _local2 = {}; _local3 = (_arg1.length - 1); while (_local3 > -1) { _local2[_arg1[_local3]] = true; _local3--; }; killVars(_local2); } public function resume():void{ this.enabled = true; if (!isNaN(this.pauseTime)){ this.initTime = (this.initTime + (currentTime - this.pauseTime)); this.startTime = (this.initTime + (this.delay * (1000 / this.combinedTimeScale))); this.pauseTime = NaN; if (((!(this.started)) && ((currentTime >= this.startTime)))){ activate(); } else { this.active = this.started; }; _pausedTweens[this] = null; delete _pausedTweens[this]; }; } override public function complete(_arg1:Boolean=false):void{ if (((((!(isNaN(this.vars.yoyo))) && ((((_repeatCount < this.vars.yoyo)) || ((this.vars.yoyo == 0)))))) || (((!(isNaN(this.vars.loop))) && ((((_repeatCount < this.vars.loop)) || ((this.vars.loop == 0)))))))){ _repeatCount++; if (!isNaN(this.vars.yoyo)){ this.ease = ((this.vars.ease)==this.ease) ? reverseEase : this.vars.ease; }; this.startTime = (_arg1) ? (this.startTime + (this.duration * (1000 / this.combinedTimeScale))) : currentTime; this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); } else { if (this.vars.persist == true){ pause(); }; }; super.complete(_arg1); } public function invalidate(_arg1:Boolean=true):void{ var _local2:Number; if (this.initted){ _local2 = this.progress; if (((!(_arg1)) && (!((_local2 == 0))))){ this.progress = 0; }; this.tweens = []; _hasPlugins = false; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedProps : this.vars; initTweenVals(); _timeScale = ((this.vars.timeScale) || (1)); this.combinedTimeScale = (_timeScale * _globalTimeScale); this.delay = ((this.vars.delay) || (0)); if (isNaN(this.pauseTime)){ this.startTime = (this.initTime + ((this.delay * 1000) / this.combinedTimeScale)); }; if (((((!((this.vars.onCompleteListener == null))) || (!((this.vars.onUpdateListener == null))))) || (!((this.vars.onStartListener == null))))){ if (_dispatcher != null){ this.vars.onStart = _callbacks.onStart; this.vars.onUpdate = _callbacks.onUpdate; this.vars.onComplete = _callbacks.onComplete; _dispatcher = null; }; initDispatcher(); }; if (_local2 != 0){ if (_arg1){ adjustStartValues(); } else { this.progress = _local2; }; }; }; } public function get progress():Number{ var _local1:Number; var _local2:Number; _local1 = (isNaN(this.pauseTime)) ? currentTime : this.pauseTime; _local2 = (((((_local1 - this.initTime) * 0.001) - (this.delay / this.combinedTimeScale)) / this.duration) * this.combinedTimeScale); if (_local2 > 1){ return (1); }; if (_local2 < 0){ return (0); }; return (_local2); } public function willTrigger(_arg1:String):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.willTrigger(_arg1)); } public function dispatchEvent(_arg1:Event):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.dispatchEvent(_arg1)); } public function get reversed():Boolean{ return ((this.ease == reverseEase)); } protected function onStartDispatcher(... _args):void{ if (_callbacks.onStart != null){ _callbacks.onStart.apply(null, this.vars.onStartParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.START)); } public function setDestination(_arg1:String, _arg2, _arg3:Boolean=true):void{ var _local4:Number; var _local5:int; var _local6:TweenInfo; var _local7:Object; var _local8:Object; var _local9:Array; var _local10:Boolean; var _local11:Array; var _local12:Object; _local4 = this.progress; if (this.initted){ if (!_arg3){ _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local6 = this.tweens[_local5]; if (_local6.name == _arg1){ _local6.target[_local6.property] = _local6.start; }; _local5--; }; }; _local7 = this.vars; _local8 = this.exposedVars; _local9 = this.tweens; _local10 = _hasPlugins; this.tweens = []; this.vars = (this.exposedVars = {}); this.vars[_arg1] = _arg2; initTweenVals(); if (((!((this.ease == reverseEase))) && ((_local7.ease is Function)))){ this.ease = _local7.ease; }; if (((_arg3) && (!((_local4 == 0))))){ adjustStartValues(); }; _local11 = this.tweens; this.vars = _local7; this.exposedVars = _local8; this.tweens = _local9; _local12 = {}; _local12[_arg1] = true; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local6 = this.tweens[_local5]; if (_local6.name == _arg1){ this.tweens.splice(_local5, 1); } else { if (((_local6.isPlugin) && ((_local6.name == "_MULTIPLE_")))){ _local6.target.killProps(_local12); if (_local6.target.overwriteProps.length == 0){ this.tweens.splice(_local5, 1); }; }; }; _local5--; }; this.tweens = this.tweens.concat(_local11); _hasPlugins = Boolean(((_local10) || (_hasPlugins))); }; this.vars[_arg1] = (this.exposedVars[_arg1] = _arg2); } public function set timeScale(_arg1:Number):void{ if (_arg1 < 1E-5){ _arg1 = (_timeScale = 1E-5); } else { _timeScale = _arg1; _arg1 = (_arg1 * _globalTimeScale); }; this.initTime = ((currentTime - ((((currentTime - this.initTime) - (this.delay * (1000 / this.combinedTimeScale))) * this.combinedTimeScale) * (1 / _arg1))) - (this.delay * (1000 / _arg1))); if (this.startTime != 999999999999999){ this.startTime = (this.initTime + (this.delay * (1000 / _arg1))); }; this.combinedTimeScale = _arg1; } public function removeEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false):void{ if (_dispatcher != null){ _dispatcher.removeEventListener(_arg1, _arg2, _arg3); }; } override public function initTweenVals():void{ var _local1:int; var _local2:int; var _local3:String; var _local4:String; var _local5:Array; var _local6:Object; var _local7:TweenInfo; if (((!((this.exposedVars.startAt == null))) && (!((this.delay == 0))))){ this.exposedVars.startAt.overwrite = 0; new TweenMax(this.target, 0, this.exposedVars.startAt); }; super.initTweenVals(); if ((((this.exposedVars.roundProps is Array)) && (!((TweenLite.plugins.roundProps == null))))){ _local5 = this.exposedVars.roundProps; _local1 = (_local5.length - 1); while (_local1 > -1) { _local3 = _local5[_local1]; _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local7 = this.tweens[_local2]; if (_local7.name == _local3){ if (_local7.isPlugin){ _local7.target.round = true; } else { if (_local6 == null){ _local6 = new TweenLite.plugins.roundProps(); _local6.add(_local7.target, _local3, _local7.start, _local7.change); _hasPlugins = true; this.tweens[_local2] = new TweenInfo(_local6, "changeFactor", 0, 1, _local3, true); } else { _local6.add(_local7.target, _local3, _local7.start, _local7.change); this.tweens.splice(_local2, 1); }; }; } else { if (((((_local7.isPlugin) && ((_local7.name == "_MULTIPLE_")))) && (!(_local7.target.round)))){ _local4 = ((" " + _local7.target.overwriteProps.join(" ")) + " "); if (_local4.indexOf(((" " + _local3) + " ")) != -1){ _local7.target.round = true; }; }; }; _local2--; }; _local1--; }; }; } protected function initDispatcher():void{ var _local1:Object; var _local2:String; if (_dispatcher == null){ _dispatcher = new EventDispatcher(this); _callbacks = {onStart:this.vars.onStart, onUpdate:this.vars.onUpdate, onComplete:this.vars.onComplete}; if (this.vars.isTV == true){ this.vars = this.vars.clone(); } else { _local1 = {}; for (_local2 in this.vars) { _local1[_local2] = this.vars[_local2]; }; this.vars = _local1; }; this.vars.onStart = onStartDispatcher; this.vars.onComplete = onCompleteDispatcher; if ((this.vars.onStartListener is Function)){ _dispatcher.addEventListener(TweenEvent.START, this.vars.onStartListener, false, 0, true); }; if ((this.vars.onUpdateListener is Function)){ _dispatcher.addEventListener(TweenEvent.UPDATE, this.vars.onUpdateListener, false, 0, true); this.vars.onUpdate = onUpdateDispatcher; _hasUpdate = true; }; if ((this.vars.onCompleteListener is Function)){ _dispatcher.addEventListener(TweenEvent.COMPLETE, this.vars.onCompleteListener, false, 0, true); }; }; } protected function onUpdateDispatcher(... _args):void{ if (_callbacks.onUpdate != null){ _callbacks.onUpdate.apply(null, this.vars.onUpdateParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.UPDATE)); } public function set progress(_arg1:Number):void{ this.startTime = (currentTime - ((this.duration * _arg1) * 1000)); this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); if (!this.started){ activate(); }; render(currentTime); if (!isNaN(this.pauseTime)){ this.pauseTime = currentTime; this.startTime = 999999999999999; this.active = false; }; } public function reverse(_arg1:Boolean=true, _arg2:Boolean=true):void{ var _local3:Number; this.ease = ((this.vars.ease)==this.ease) ? reverseEase : this.vars.ease; _local3 = this.progress; if (((_arg1) && ((_local3 > 0)))){ this.startTime = (currentTime - ((((1 - _local3) * this.duration) * 1000) / this.combinedTimeScale)); this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); }; if (_arg2 != false){ if (_local3 < 1){ resume(); } else { restart(); }; }; } public function addEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false, _arg4:int=0, _arg5:Boolean=false):void{ if (_dispatcher == null){ initDispatcher(); }; if ((((_arg1 == TweenEvent.UPDATE)) && (!((this.vars.onUpdate == onUpdateDispatcher))))){ this.vars.onUpdate = onUpdateDispatcher; _hasUpdate = true; }; _dispatcher.addEventListener(_arg1, _arg2, _arg3, _arg4, _arg5); } public function set paused(_arg1:Boolean):void{ if (_arg1){ pause(); } else { resume(); }; } public function hasEventListener(_arg1:String):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.hasEventListener(_arg1)); } public function pause():void{ if (isNaN(this.pauseTime)){ this.pauseTime = currentTime; this.startTime = 999999999999999; this.enabled = false; _pausedTweens[this] = this; }; } public function reverseEase(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.ease((_arg4 - _arg1), _arg2, _arg3, _arg4)); } protected function onCompleteDispatcher(... _args):void{ if (_callbacks.onComplete != null){ _callbacks.onComplete.apply(null, this.vars.onCompleteParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.COMPLETE)); } public static function set globalTimeScale(_arg1:Number):void{ setGlobalTimeScale(_arg1); } public static function pauseAll(_arg1:Boolean=true, _arg2:Boolean=false):void{ changePause(true, _arg1, _arg2); } public static function killAllDelayedCalls(_arg1:Boolean=false):void{ killAll(_arg1, false, true); } public static function setGlobalTimeScale(_arg1:Number):void{ var _local2:Dictionary; var _local3:int; var _local4:Array; if (_arg1 < 1E-5){ _arg1 = 1E-5; }; _local2 = masterList; _globalTimeScale = _arg1; for each (_local4 in _local2) { _local3 = (_local4.length - 1); while (_local3 > -1) { if ((_local4[_local3] is TweenMax)){ _local4[_local3].timeScale = (_local4[_local3].timeScale * 1); }; _local3--; }; }; } public static function get globalTimeScale():Number{ return (_globalTimeScale); } public static function getTweensOf(_arg1:Object):Array{ var _local2:Array; var _local3:Array; var _local4:TweenLite; var _local5:int; _local2 = masterList[_arg1]; _local3 = []; if (_local2 != null){ _local5 = (_local2.length - 1); while (_local5 > -1) { if (!_local2[_local5].gc){ _local3[_local3.length] = _local2[_local5]; }; _local5--; }; }; for each (_local4 in _pausedTweens) { if (_local4.target == _arg1){ _local3[_local3.length] = _local4; }; }; return (_local3); } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null, _arg4:Boolean=false):TweenMax{ return (new TweenMax(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, persist:_arg4, overwrite:0})); } public static function isTweening(_arg1:Object):Boolean{ var _local2:Array; var _local3:int; _local2 = getTweensOf(_arg1); _local3 = (_local2.length - 1); while (_local3 > -1) { if (((((_local2[_local3].active) || ((_local2[_local3].startTime == currentTime)))) && (!(_local2[_local3].gc)))){ return (true); }; _local3--; }; return (false); } public static function changePause(_arg1:Boolean, _arg2:Boolean=true, _arg3:Boolean=false):void{ var _local4:Array; var _local5:Boolean; var _local6:int; _local4 = getAllTweens(); _local6 = (_local4.length - 1); while (_local6 > -1) { _local5 = (_local4[_local6].target == _local4[_local6].vars.onComplete); if ((((_local4[_local6] is TweenMax)) && ((((_local5 == _arg3)) || (!((_local5 == _arg2))))))){ _local4[_local6].paused = _arg1; }; _local6--; }; } public static function killAllTweens(_arg1:Boolean=false):void{ killAll(_arg1, true, false); } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenMax{ _arg3.runBackwards = true; return (new TweenMax(_arg1, _arg2, _arg3)); } public static function killAll(_arg1:Boolean=false, _arg2:Boolean=true, _arg3:Boolean=true):void{ var _local4:Array; var _local5:Boolean; var _local6:int; _local4 = getAllTweens(); _local6 = (_local4.length - 1); while (_local6 > -1) { _local5 = (_local4[_local6].target == _local4[_local6].vars.onComplete); if ((((_local5 == _arg3)) || (!((_local5 == _arg2))))){ if (_arg1){ _local4[_local6].complete(false); _local4[_local6].clear(); } else { TweenLite.removeTween(_local4[_local6], true); }; }; _local6--; }; } public static function getAllTweens():Array{ var _local1:Dictionary; var _local2:Array; var _local3:Array; var _local4:int; var _local5:TweenLite; _local1 = masterList; _local2 = []; for each (_local3 in _local1) { _local4 = (_local3.length - 1); while (_local4 > -1) { if (!_local3[_local4].gc){ _local2[_local2.length] = _local3[_local4]; }; _local4--; }; }; for each (_local5 in _pausedTweens) { _local2[_local2.length] = _local5; }; return (_local2); } public static function resumeAll(_arg1:Boolean=true, _arg2:Boolean=false):void{ changePause(false, _arg1, _arg2); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenMax{ return (new TweenMax(_arg1, _arg2, _arg3)); } } }//package gs
Section 31
//bottoms_135 (JennaElfman_fla.bottoms_135) package JennaElfman_fla { import flash.display.*; public dynamic class bottoms_135 extends MovieClip { public function bottoms_135(){ addFrameScript(0, frame1, 10, frame11); } function frame1(){ stop(); } function frame11(){ gotoAndStop(2); } } }//package JennaElfman_fla
Section 32
//bottomspalette_250 (JennaElfman_fla.bottomspalette_250) package JennaElfman_fla { import flash.display.*; public dynamic class bottomspalette_250 extends MovieClip { public var b2:MovieClip; public var b4:MovieClip; public var b9:MovieClip; public var b5:MovieClip; public var b6:MovieClip; public var b7:MovieClip; public var b1:MovieClip; public var b3:MovieClip; public var b8:MovieClip; } }//package JennaElfman_fla
Section 33
//chainspla_253 (JennaElfman_fla.chainspla_253) package JennaElfman_fla { import flash.display.*; public dynamic class chainspla_253 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h5:MovieClip; public var h3:MovieClip; } }//package JennaElfman_fla
Section 34
//chaisn_211 (JennaElfman_fla.chaisn_211) package JennaElfman_fla { import flash.display.*; public dynamic class chaisn_211 extends MovieClip { public function chaisn_211(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 35
//doll_119 (JennaElfman_fla.doll_119) package JennaElfman_fla { import flash.display.*; public dynamic class doll_119 extends MovieClip { public var dress:MovieClip; public var earring:MovieClip; public var bottoms:MovieClip; public var tops:MovieClip; public var chain:MovieClip; public var shoes:MovieClip; public var hair:MovieClip; } }//package JennaElfman_fla
Section 36
//dress_156 (JennaElfman_fla.dress_156) package JennaElfman_fla { import flash.display.*; public dynamic class dress_156 extends MovieClip { public function dress_156(){ addFrameScript(0, frame1, 16, frame17); } function frame1(){ stop(); } function frame17(){ gotoAndStop(2); } } }//package JennaElfman_fla
Section 37
//dressbtnsdfsdf_113 (JennaElfman_fla.dressbtnsdfsdf_113) package JennaElfman_fla { import flash.display.*; public dynamic class dressbtnsdfsdf_113 extends MovieClip { public var dress:SimpleButton; public function dressbtnsdfsdf_113(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 38
//dresspalette_248 (JennaElfman_fla.dresspalette_248) package JennaElfman_fla { import flash.display.*; public dynamic class dresspalette_248 extends MovieClip { public var h10:MovieClip; public var h13:MovieClip; public var h12:MovieClip; public var h11:MovieClip; public var h15:MovieClip; public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h5:MovieClip; public var h6:MovieClip; public var h7:MovieClip; public var h8:MovieClip; public var h9:MovieClip; public var h3:MovieClip; public var h14:MovieClip; } }//package JennaElfman_fla
Section 39
//earringoak_254 (JennaElfman_fla.earringoak_254) package JennaElfman_fla { import flash.display.*; public dynamic class earringoak_254 extends MovieClip { public var e2:MovieClip; public var e5:MovieClip; public var e3:MovieClip; public var e4:MovieClip; public var e1:MovieClip; } }//package JennaElfman_fla
Section 40
//earrings_235 (JennaElfman_fla.earrings_235) package JennaElfman_fla { import flash.display.*; public dynamic class earrings_235 extends MovieClip { public function earrings_235(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 41
//hairs_228 (JennaElfman_fla.hairs_228) package JennaElfman_fla { import flash.display.*; public dynamic class hairs_228 extends MovieClip { public function hairs_228(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package JennaElfman_fla
Section 42
//haIRSPLA_252 (JennaElfman_fla.haIRSPLA_252) package JennaElfman_fla { import flash.display.*; public dynamic class haIRSPLA_252 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h3:MovieClip; } }//package JennaElfman_fla
Section 43
//MainTimeline (JennaElfman_fla.MainTimeline) package JennaElfman_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import flash.filters.*; import gs.easing.*; import fl.transitions.easing.*; import fl.transitions.*; import flash.media.*; import flash.utils.*; import flash.text.*; import flash.ui.*; import flash.errors.*; import flash.net.*; import flash.system.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var girlDoll:String; public var bottom:MovieClip; public var prev:Object; public var dress:MovieClip; public var t2:TextField; public var t3:Tween; public var t7:Tween; public var t1:TextField; public var t9:Tween; public var t5:Tween; public var t6:Tween; public var d0:Number; public var earstand:MovieClip; public var hairpalette:MovieClip; public var t4:Tween; public var ca:Number; public var t8:Tween; public var topsf:Number; public var chainspalette:MovieClip; public var dresspalette:MovieClip; public var sa:Number; public var preloader:MovieClip; public var to:Number; public var earring:MovieClip; public var dolls:MovieClip; public var playmore:MovieClip; public var nextbtn:MovieClip; public var shoespalette:MovieClip; public var percentage:Number; public var contestMenu:ContextMenu; public var popup:MovieClip; public var resetbtn:MovieClip; public var logo_mc:SimpleButton; public var ea:Number; public var chain:MovieClip; public var girldollArray:Array; public var BitsLoaded:TextField; public var queCount:uint; public var que:Array; public var mailArray:Array; public var shoe:MovieClip; public var obj:Object; public var ha:Number; public var topspalette:MovieClip; public var obs:MovieClip; public var sndon:SimpleButton; public var bullet:backscore; public var dressf:Number; public var earringpalette:MovieClip; public var doll:MovieClip; public var top:MovieClip; public var sndoff:SimpleButton; public var t12:Tween; public var t14:Tween; public var t15:Tween; public var t16:Tween; public var t10:Tween; public var t11:Tween; public var email:MovieClip; public var nex:MovieClip; public var bots:Number; public var bulletChannel:SoundChannel; public var chainstand:MovieClip; public var contextmenuItem:ContextMenuItem; public var t13:Tween; public var bottomspalette:MovieClip; public var temp:Number; public var hair:MovieClip; public var q0:Number; public var pl:MovieClip; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function shoedown(_arg1:MouseEvent):void{ var t1:*; var t:Number; var shoess:Class; var shoes:Object; var putshoess:Function; var tt = _arg1; putshoess = function (){ removeChild(DisplayObject(shoes)); if (shoes.hitTestObject(doll)){ doll.shoes.gotoAndStop((t + 1)); Globe.shoes = doll.shoes.currentFrame; }; }; t1 = tt.currentTarget; t = parseInt(t1.name.substr(1)); shoess = (getDefinitionByName(("shoe" + t)) as Class); shoes = new (shoess); addChild(DisplayObject(shoes)); shoes.x = mouseX; shoes.y = mouseY; TweenLite.to(shoes, 0.5, {x:310, y:560, ease:Linear.easeNone, onComplete:putshoess}); } public function hideAdd1(_arg1:MouseEvent):void{ popup.friend1.visible = false; que.push("0"); que.sort(); trace(("close1:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd2(_arg1:MouseEvent):void{ popup.friend2.visible = false; que.push("1"); que.sort(); trace(("close2:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd3(_arg1:MouseEvent):void{ popup.friend3.visible = false; que.push("2"); que.sort(); trace(("close3:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd4(_arg1:MouseEvent):void{ popup.friend4.visible = false; que.push("3"); que.sort(); trace(("close4:" + que)); popup.addition.mouseEnabled = true; } public function topspal(_arg1:MouseEvent):void{ obj = topspalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t9 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t10 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; }; } public function result(_arg1:Event):void{ if (t1.text == ""){ nextbtn.visible = false; } else { nextbtn.visible = true; }; } public function chainpal(_arg1:MouseEvent):void{ obj = chainspalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t13 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t14 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; }; } public function sets(_arg1:Event){ if (dressf == 1){ nextbtn.visible = true; } else { if ((((topsf == 1)) && ((bots == 1)))){ nextbtn.visible = true; } else { nextbtn.visible = false; }; }; } function frame4(){ stop(); obs.mouseEnabled = false; t1.text = ""; t1.restrict = "0-9A-Z"; nextbtn.gotoAndStop(Globe.temp); nextbtn.buttonMode = true; stage.addEventListener(Event.ENTER_FRAME, result); nextbtn.addEventListener(MouseEvent.CLICK, nextbtns); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link1); }; } function frame5(){ stop(); if (((this.loaderInfo.parameters.bg) && ((Globe.playback == false)))){ email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); t2.text = this.loaderInfo.parameters.name; email.visible = true; email.tabEnabled = false; girldollArray = this.loaderInfo.parameters.girldoll.split(""); if (this.loaderInfo.parameters.bg == 1){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop(Number(girldollArray[2])); dolls.chain.gotoAndStop(Number(girldollArray[3])); dolls.shoes.gotoAndStop(Number(girldollArray[4])); dolls.hair.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); } else { if (this.loaderInfo.parameters.bg == 2){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop((Number(girldollArray[3]).toString() + Number(girldollArray[4]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[5])); dolls.shoes.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.earring.gotoAndStop(Number(girldollArray[8])); } else { if (this.loaderInfo.parameters.bg == 3){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop((Number(girldollArray[2]).toString() + Number(girldollArray[3]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); } else { if (this.loaderInfo.parameters.bg == 4){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); } else { if (this.loaderInfo.parameters.bg == 5){ dolls.dress.gotoAndStop((Number(girldollArray[0]).toString() + Number(girldollArray[1]).toString())); dolls.tops.gotoAndStop(Number(girldollArray[2]).toString()); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); }; }; }; }; }; nex.addEventListener(MouseEvent.CLICK, plas1); } else { if (Globe.playback == true){ t2.text = Globe.tex; email.visible = true; email.buttonMode = true; email.tabEnabled = false; dolls.chain.gotoAndStop(Globe.chain); dolls.shoes.gotoAndStop(Globe.shoes); dolls.dress.gotoAndStop(Globe.dress); dolls.tops.gotoAndStop(Globe.tops); dolls.bottoms.gotoAndStop(Globe.bottoms); dolls.hair.gotoAndStop(Globe.hair); dolls.earring.gotoAndStop(Globe.earring); nex.addEventListener(MouseEvent.CLICK, plas); email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); }; }; obs.mouseEnabled = false; playmore.buttonMode = true; nex.buttonMode = true; email.gotoAndStop(Globe.temp); nex.gotoAndStop(Globe.temp); playmore.gotoAndStop(Globe.temp); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; playmore.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link5); }; playmore.addEventListener(MouseEvent.CLICK, mor); que = new Array("0", "1", "2", "3"); queCount = 0; mailArray = new Array(popup.friend1, popup.friend2, popup.friend3, popup.friend4); girlDoll = ((((((dolls.dress.currentFrame.toString() + dolls.tops.currentFrame.toString()) + dolls.bottoms.currentFrame.toString()) + dolls.chain.currentFrame.toString()) + dolls.shoes.currentFrame.toString()) + dolls.hair.currentFrame.toString()) + dolls.earring.currentFrame.toString()); trace(girlDoll); popup.friend1.close.addEventListener(MouseEvent.CLICK, hideAdd1); popup.friend2.close.addEventListener(MouseEvent.CLICK, hideAdd2); popup.friend3.close.addEventListener(MouseEvent.CLICK, hideAdd3); popup.friend4.close.addEventListener(MouseEvent.CLICK, hideAdd4); playmore.addEventListener(MouseEvent.ROLL_OVER, rollover5); playmore.addEventListener(MouseEvent.ROLL_OUT, rollout5); nex.addEventListener(MouseEvent.ROLL_OVER, rollover5); nex.addEventListener(MouseEvent.ROLL_OUT, rollout5); email.addEventListener(MouseEvent.ROLL_OVER, rollover5); email.addEventListener(MouseEvent.ROLL_OUT, rollout5); } function frame1(){ stop(); contestMenu = new ContextMenu(); contestMenu.hideBuiltInItems(); contextmenuItem = new ContextMenuItem("www.123peppy.com"); contextmenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, Site); contestMenu.customItems.push(contextmenuItem); this.contextMenu = contestMenu; percentage = 0; stage.addEventListener(Event.ENTER_FRAME, BeeMoving); } function frame2(){ stop(); Globe.playback = true; if (bulletChannel){ bulletChannel.stop(); }; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); pl.gotoAndStop(Globe.temp); switch (this.loaderInfo.parameters.lang){ case "fr": Globe.temp = 6; pl.gotoAndStop(Globe.temp); break; case "de": Globe.temp = 5; pl.gotoAndStop(Globe.temp); break; case "it": Globe.temp = 4; pl.gotoAndStop(Globe.temp); break; case "pl": Globe.temp = 10; pl.gotoAndStop(Globe.temp); break; case "ru": Globe.temp = 3; pl.gotoAndStop(Globe.temp); break; case "tr": Globe.temp = 7; pl.gotoAndStop(Globe.temp); break; case "sv": Globe.temp = 8; pl.gotoAndStop(Globe.temp); break; case "pt_br": Globe.temp = 11; pl.gotoAndStop(Globe.temp); break; case "es": Globe.temp = 9; pl.gotoAndStop(Globe.temp); break; case "nl": Globe.temp = 2; pl.gotoAndStop(Globe.temp); break; default: Globe.temp = 1; pl.gotoAndStop(Globe.temp); break; }; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } function frame3(){ MochiBot.track(this, "b4507ab1"); stop(); obs.mouseEnabled = false; prev = dresspalette; dress.gotoAndStop(Globe.temp); top.gotoAndStop(Globe.temp); chain.gotoAndStop(Globe.temp); bottom.gotoAndStop(Globe.temp); earring.gotoAndStop(Globe.temp); hair.gotoAndStop(Globe.temp); shoe.gotoAndStop(Globe.temp); resetbtn.gotoAndStop(Globe.temp); nextbtn.gotoAndStop(Globe.temp); nextbtn.visible = false; dressf = 0; topsf = 0; bots = 0; earringpalette.alpha = 0; topspalette.alpha = 0; bottomspalette.alpha = 0; dresspalette.alpha = 1; chainspalette.alpha = 0; shoespalette.alpha = 0; hairpalette.alpha = 0; earringpalette.visible = false; topspalette.visible = false; bottomspalette.visible = false; dresspalette.visible = true; chainspalette.visible = false; shoespalette.visible = false; hairpalette.visible = false; doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.hair.gotoAndStop(1); doll.earring.gotoAndStop(1); bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndon.addEventListener(MouseEvent.CLICK, sndst); stage.addEventListener(Event.ENTER_FRAME, sets); hair.addEventListener(MouseEvent.CLICK, hairpal); shoe.addEventListener(MouseEvent.CLICK, shoepal); dress.addEventListener(MouseEvent.CLICK, dresspal); top.addEventListener(MouseEvent.CLICK, topspal); bottom.addEventListener(MouseEvent.CLICK, bottompal); chain.addEventListener(MouseEvent.CLICK, chainpal); earring.addEventListener(MouseEvent.CLICK, earringpal); ha = 0; while (ha <= (hairpalette.numChildren - 1)) { hairpalette.getChildAt(ha).addEventListener(MouseEvent.ROLL_OVER, enabl); hairpalette.getChildAt(ha).addEventListener(MouseEvent.MOUSE_DOWN, hairclick); ha++; }; sa = 0; while (sa <= (shoespalette.numChildren - 1)) { shoespalette.getChildAt(sa).addEventListener(MouseEvent.ROLL_OVER, enabl); shoespalette.getChildAt(sa).addEventListener(MouseEvent.MOUSE_DOWN, shoedown); sa++; }; ea = 0; while (ea <= (earringpalette.numChildren - 1)) { earringpalette.getChildAt(ea).addEventListener(MouseEvent.ROLL_OVER, enabl); earringpalette.getChildAt(ea).addEventListener(MouseEvent.MOUSE_DOWN, earclick); ea++; }; ca = 0; while (ca <= (chainspalette.numChildren - 1)) { chainspalette.getChildAt(ca).addEventListener(MouseEvent.ROLL_OVER, enabl); chainspalette.getChildAt(ca).addEventListener(MouseEvent.MOUSE_DOWN, chainclick); ca++; }; d0 = 0; while (d0 <= (bottomspalette.numChildren - 1)) { bottomspalette.getChildAt(d0).addEventListener(MouseEvent.ROLL_OVER, enabl); bottomspalette.getChildAt(d0).addEventListener(MouseEvent.MOUSE_DOWN, bottomsclick); d0++; }; to = 0; while (to <= (topspalette.numChildren - 1)) { topspalette.getChildAt(to).addEventListener(MouseEvent.ROLL_OVER, enabl); topspalette.getChildAt(to).addEventListener(MouseEvent.MOUSE_DOWN, topsclick); to++; }; q0 = 0; while (q0 <= (dresspalette.numChildren - 1)) { dresspalette.getChildAt(q0).addEventListener(MouseEvent.ROLL_OVER, enabl); dresspalette.getChildAt(q0).addEventListener(MouseEvent.MOUSE_DOWN, dressclick); q0++; }; resetbtn.addEventListener(MouseEvent.CLICK, res); nextbtn.addEventListener(MouseEvent.CLICK, nx); nextbtn.buttonMode = true; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); }; } public function earringpal(_arg1:MouseEvent):void{ obj = earringpalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t15 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t16 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; }; } public function topsclick(_arg1:MouseEvent):void{ var t1:*; var t:Number; var topss:Class; var tops:Object; var puttops:Function; var tt = _arg1; puttops = function (){ removeChild(DisplayObject(tops)); if (tops.hitTestObject(doll)){ doll.tops.gotoAndStop((t + 1)); Globe.tops = doll.tops.currentFrame; doll.dress.gotoAndStop(1); Globe.dress = 0; dressf = 0; topsf = 1; }; }; t1 = tt.currentTarget; t = parseInt(t1.name.substr(1)); topss = (getDefinitionByName(("tops" + t)) as Class); tops = new (topss); addChild(DisplayObject(tops)); tops.x = mouseX; tops.y = mouseY; TweenMax.from(tops, 0.5, {scaleX:0.3, scaleY:0.3}); TweenLite.to(tops, 0.5, {x:250, y:200, ease:Linear.easeNone, onComplete:puttops}); } public function bottompal(_arg1:MouseEvent):void{ obj = bottomspalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t11 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t12 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; }; } public function rollout5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function res(_arg1:MouseEvent):void{ doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.hair.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.earring.gotoAndStop(1); dressf = 0; topsf = 0; bots = 0; Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.shoes = 0; Globe.hair = 0; } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function showMailBox(_arg1:MouseEvent):void{ email.mouseEnabled = false; popup.friend1.visible = false; popup.friend2.visible = false; popup.friend3.visible = false; popup.friend4.visible = false; TweenLite.to(popup, 0.5, {y:(600 - popup.height), ease:Back.easeOut}); popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } public function bottomsclick(_arg1:MouseEvent):void{ var t1:*; var t:Number; var bottomss:Class; var bottoms:Object; var putbottom:Function; var tt = _arg1; putbottom = function (){ removeChild(DisplayObject(bottoms)); if (bottoms.hitTestObject(doll)){ doll.bottoms.gotoAndStop((t + 1)); Globe.bottoms = doll.bottoms.currentFrame; doll.dress.gotoAndStop(1); Globe.dress = 0; dressf = 0; bots = 1; }; }; t1 = tt.currentTarget; t = parseInt(t1.name.substr(1)); bottomss = (getDefinitionByName(("bottoms" + t)) as Class); bottoms = new (bottomss); addChild(DisplayObject(bottoms)); bottoms.x = mouseX; bottoms.y = mouseY; TweenMax.from(bottoms, 0.5, {scaleX:0.6, scaleY:0.6}); TweenLite.to(bottoms, 0.5, {x:280, y:350, ease:Linear.easeNone, onComplete:putbottom}); } public function hairclick(_arg1:MouseEvent):void{ var t1:*; var t:Number; var hairss:Class; var hairs:Object; var puthairs:Function; var tt = _arg1; puthairs = function (){ if (hairs.hitTestObject(doll)){ doll.hair.gotoAndStop(t); Globe.hair = doll.hair.currentFrame; }; removeChild(DisplayObject(hairs)); }; t1 = tt.currentTarget; t = parseInt(t1.name.substr(1)); hairss = (getDefinitionByName(("hair" + t)) as Class); hairs = new (hairss); addChild(DisplayObject(hairs)); hairs.x = mouseX; hairs.y = mouseY; TweenLite.to(hairs, 0.5, {x:275, y:120, ease:Linear.easeNone, onComplete:puthairs}); } public function hideMailBox(_arg1:MouseEvent):void{ var event = _arg1; email.mouseEnabled = true; que[0] = "0"; que[1] = "1"; que[2] = "2"; que[3] = "3"; popup.addition.mouseEnabled = true; TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function dresspal(_arg1:MouseEvent):void{ obj = dresspalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t7 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t8 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; }; } public function mor(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function showExtra(_arg1:MouseEvent):void{ if (queCount < 4){ queCount++; trace(queCount); }; trace(("que[0]:" + que[0])); switch (que[0]){ case que[0]: mailArray[que[0]].visible = true; que.splice(0, 1); que.sort(); trace(("after switch:" + que)); if (que.length == 0){ popup.addition.mouseEnabled = false; }; break; }; } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function enabl(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; } public function callMail(_arg1:MouseEvent):void{ var request:URLRequest; var variables:URLVariables; var event = _arg1; email.mouseEnabled = true; request = new URLRequest("http://facefun.123peppy.com/gamemail.php"); request.method = URLRequestMethod.POST; variables = new URLVariables(); variables.nameDetail = popup.nameDetail.text; variables.mailDetail = popup.mailDetail.text; variables.messageDetail = popup.messageDetail.text; variables.friendName = popup.friendName.text; variables.friendMail = popup.friendMail.text; variables.gamename = "Jenna Elfman"; variables.friendMail1 = popup.friend1.friendMail.text; variables.friendMail2 = popup.friend2.friendMail.text; variables.friendMail3 = popup.friend3.friendMail.text; variables.friendMail4 = popup.friend4.friendMail.text; variables.girldoll = girlDoll; switch (this.loaderInfo.parameters.lang){ case "fr": variables.path = "http://www.123peppy.com/fr/play/jeu-de-habillent-de-jenna-elfman"; break; case "de": variables.path = "http://www.123peppy.com/de/play/jenna-elfman-kleiden-spiel"; break; case "it": variables.path = "http://www.123peppy.com/it/play/jenna-elfman-gioco-di-vestire"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/jenna-elfman-gra-ubieranki"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/%D0%B4%D0%B6%D0%B5%D0%BD%D0%BD%D0%B0-elfman-%D0%B8%D0%B3%D1%80%D1%8B-%D0%BE%D0%B4%D0%B5%D0%BD%D1%8C"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/jenna-elfman-giydirme-oyunlar"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/jenna-elfman-kl%C3%A4-upp-spel"; break; case "pt_br": variables.path = "http://www.123peppy.com/pt-br/play/jenna-elfman-jogo-de-vestir"; break; case "es": variables.path = "http://www.123peppy.com/es/play/jenna-elfman-juego-de-vestir"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/jenna-elfman-kleding-spelletjes"; break; default: variables.path = "http://www.123peppy.com/play/jenna-elfman-dress-game"; break; }; variables.name = t2.text; if (dolls.dress.currentFrame > 9){ variables.bg = 5; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame <= 9)))){ variables.bg = 4; } else { if ((((dolls.bottoms.currentFrame > 9)) && ((dolls.tops.currentFrame <= 9)))){ variables.bg = 3; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame > 9)))){ variables.bg = 2; } else { variables.bg = 1; }; }; }; }; trace(variables.bg); request.data = variables; sendToURL(request); TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } public function nextbtns(_arg1:MouseEvent):void{ Globe.tex = t1.text; trace(Globe.tex); nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function BeeMoving(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local2 = (mouseX - ball.x); _local3 = (mouseY - ball.y); ball.x = (ball.x + (_local2 * 0.2)); ball.y = (ball.y + (_local3 * 0.2)); _local4 = loaderInfo.bytesLoaded; _local5 = loaderInfo.bytesTotal; percentage = Math.round(((_local4 / _local5) * 100)); BitsLoaded.text = (((Math.round((_local4 / 0x0400)) + "kBs /") + Math.round((_local5 / 0x0400))) + "kBs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); if (this.loaderInfo.parameters.bg){ gotoAndStop(5); } else { gotoAndStop(2); }; }; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function chainclick(_arg1:MouseEvent):void{ var t1:*; var t:Number; var chainss:Class; var chains:Object; var putchains:Function; var tt = _arg1; putchains = function (){ removeChild(DisplayObject(chains)); if (chains.hitTestObject(doll)){ doll.chain.gotoAndStop((t + 1)); Globe.chain = doll.chain.currentFrame; }; }; t1 = tt.currentTarget; t = parseInt(t1.name.substr(1)); chainss = (getDefinitionByName(("chain" + t)) as Class); chains = new (chainss); addChild(DisplayObject(chains)); chains.x = mouseX; chains.y = mouseY; TweenLite.to(chains, 0.5, {x:275, y:170, ease:Linear.easeNone, onComplete:putchains}); } public function link1(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function hairpal(_arg1:MouseEvent):void{ obj = hairpalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t3 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t4 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); }; prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; } public function link5(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function rollover5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function sndst(_arg1:MouseEvent):void{ bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.visible = true; sndon.visible = false; } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function dressclick(_arg1:MouseEvent):void{ var d1:*; var d:Number; var dresss:Class; var dress:Object; var putdress:Function; var dd = _arg1; putdress = function (){ removeChild(DisplayObject(dress)); if (dress.hitTestObject(doll)){ doll.dress.gotoAndStop((d + 1)); Globe.dress = doll.dress.currentFrame; doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); Globe.tops = 0; Globe.bottoms = 0; dressf = 1; topsf = 0; bots = 0; }; }; d1 = dd.currentTarget; d = parseInt(d1.name.substr(1)); dresss = (getDefinitionByName(("dress" + d)) as Class); dress = new (dresss); addChild(DisplayObject(dress)); dress.x = mouseX; dress.y = mouseY; TweenMax.from(dress, 0.5, {scaleX:0.1, scaleY:0.1}); TweenLite.to(dress, 0.5, {x:275, y:350, ease:Linear.easeNone, onComplete:putdress}); } public function nx(_arg1:MouseEvent):void{ stage.removeEventListener(Event.ENTER_FRAME, sets); Globe.shoes = doll.shoes.currentFrame; Globe.chain = doll.chain.currentFrame; Globe.bottoms = doll.bottoms.currentFrame; Globe.tops = doll.tops.currentFrame; Globe.dress = doll.dress.currentFrame; Globe.hair = doll.hair.currentFrame; Globe.earring = doll.earring.currentFrame; nextFrame(); } public function plays(_arg1:MouseEvent):void{ nextFrame(); } public function shoepal(_arg1:MouseEvent):void{ obj = shoespalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t5 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t6 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); }; prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; } public function earclick(_arg1:MouseEvent):void{ var t1:*; var t:Number; var earss:Class; var ears:Object; var putearss:Function; var tt = _arg1; putearss = function (){ removeChild(DisplayObject(ears)); if (ears.hitTestObject(doll)){ doll.earring.gotoAndStop((t + 1)); Globe.earring = doll.earring.currentFrame; }; }; t1 = tt.currentTarget; t = parseInt(t1.name.substr(1)); earss = (getDefinitionByName(("ear" + t)) as Class); ears = new (earss); addChild(DisplayObject(ears)); ears.x = mouseX; ears.y = mouseY; TweenLite.to(ears, 0.5, {x:300, y:113, ease:Linear.easeNone, onComplete:putearss}); } } }//package JennaElfman_fla
Section 44
//shoes_124 (JennaElfman_fla.shoes_124) package JennaElfman_fla { import flash.display.*; public dynamic class shoes_124 extends MovieClip { public function shoes_124(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 45
//shoespalette_249 (JennaElfman_fla.shoespalette_249) package JennaElfman_fla { import flash.display.*; public dynamic class shoespalette_249 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h5:MovieClip; public var h3:MovieClip; } }//package JennaElfman_fla
Section 46
//Timeline_101 (JennaElfman_fla.Timeline_101) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_101 extends MovieClip { public var nextbtn:SimpleButton; public function Timeline_101(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 47
//Timeline_104 (JennaElfman_fla.Timeline_104) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_104 extends MovieClip { public var resetbtn:SimpleButton; public function Timeline_104(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 48
//Timeline_18 (JennaElfman_fla.Timeline_18) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_18 extends MovieClip { public function Timeline_18(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package JennaElfman_fla
Section 49
//Timeline_21 (JennaElfman_fla.Timeline_21) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_21 extends MovieClip { public function Timeline_21(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 50
//Timeline_257 (JennaElfman_fla.Timeline_257) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_257 extends MovieClip { public function Timeline_257(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 51
//Timeline_263 (JennaElfman_fla.Timeline_263) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_263 extends MovieClip { public function Timeline_263(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 52
//Timeline_266 (JennaElfman_fla.Timeline_266) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_266 extends MovieClip { public function Timeline_266(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 53
//Timeline_267 (JennaElfman_fla.Timeline_267) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_267 extends MovieClip { public function Timeline_267(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 54
//Timeline_268 (JennaElfman_fla.Timeline_268) package JennaElfman_fla { import flash.display.*; import flash.text.*; public dynamic class Timeline_268 extends MovieClip { public var addition:SimpleButton; public var close:SimpleButton; public var submit:SimpleButton; public var messageDetail:TextField; public var friendName:TextField; public var friend2:MovieClip; public var friend4:MovieClip; public var friend1:MovieClip; public var friend3:MovieClip; public var friendMail:TextField; public var nameDetail:TextField; public var mailDetail:TextField; } }//package JennaElfman_fla
Section 55
//Timeline_277 (JennaElfman_fla.Timeline_277) package JennaElfman_fla { import flash.display.*; import flash.text.*; public dynamic class Timeline_277 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; } }//package JennaElfman_fla
Section 56
//Timeline_7 (JennaElfman_fla.Timeline_7) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_7 extends MovieClip { public var masker:MovieClip; } }//package JennaElfman_fla
Section 57
//Timeline_81 (JennaElfman_fla.Timeline_81) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_81 extends MovieClip { public var bottom:SimpleButton; public function Timeline_81(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 58
//Timeline_86 (JennaElfman_fla.Timeline_86) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_86 extends MovieClip { public var top:SimpleButton; public function Timeline_86(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 59
//Timeline_89 (JennaElfman_fla.Timeline_89) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_89 extends MovieClip { public var shoe:SimpleButton; public function Timeline_89(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 60
//Timeline_92 (JennaElfman_fla.Timeline_92) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_92 extends MovieClip { public var chain:SimpleButton; public function Timeline_92(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 61
//Timeline_95 (JennaElfman_fla.Timeline_95) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_95 extends MovieClip { public var earring:SimpleButton; public function Timeline_95(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 62
//Timeline_98 (JennaElfman_fla.Timeline_98) package JennaElfman_fla { import flash.display.*; public dynamic class Timeline_98 extends MovieClip { public var hair:SimpleButton; public function Timeline_98(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JennaElfman_fla
Section 63
//tops_190 (JennaElfman_fla.tops_190) package JennaElfman_fla { import flash.display.*; public dynamic class tops_190 extends MovieClip { public function tops_190(){ addFrameScript(0, frame1, 10, frame11); } function frame1(){ stop(); } function frame11(){ gotoAndStop(1); } } }//package JennaElfman_fla
Section 64
//topspalette_251 (JennaElfman_fla.topspalette_251) package JennaElfman_fla { import flash.display.*; public dynamic class topspalette_251 extends MovieClip { public var t2:MovieClip; public var t3:MovieClip; public var t7:MovieClip; public var t1:MovieClip; public var t9:MovieClip; public var t5:MovieClip; public var t8:MovieClip; public var t4:MovieClip; public var t6:MovieClip; } }//package JennaElfman_fla
Section 65
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 66
//bottoms1 (bottoms1) package { import flash.display.*; public dynamic class bottoms1 extends MovieClip { } }//package
Section 67
//bottoms2 (bottoms2) package { import flash.display.*; public dynamic class bottoms2 extends MovieClip { } }//package
Section 68
//bottoms3 (bottoms3) package { import flash.display.*; public dynamic class bottoms3 extends MovieClip { } }//package
Section 69
//bottoms4 (bottoms4) package { import flash.display.*; public dynamic class bottoms4 extends MovieClip { } }//package
Section 70
//bottoms5 (bottoms5) package { import flash.display.*; public dynamic class bottoms5 extends MovieClip { } }//package
Section 71
//bottoms6 (bottoms6) package { import flash.display.*; public dynamic class bottoms6 extends MovieClip { } }//package
Section 72
//bottoms7 (bottoms7) package { import flash.display.*; public dynamic class bottoms7 extends MovieClip { } }//package
Section 73
//bottoms8 (bottoms8) package { import flash.display.*; public dynamic class bottoms8 extends MovieClip { } }//package
Section 74
//bottoms9 (bottoms9) package { import flash.display.*; public dynamic class bottoms9 extends MovieClip { } }//package
Section 75
//chain1 (chain1) package { import flash.display.*; public dynamic class chain1 extends MovieClip { } }//package
Section 76
//chain2 (chain2) package { import flash.display.*; public dynamic class chain2 extends MovieClip { } }//package
Section 77
//chain3 (chain3) package { import flash.display.*; public dynamic class chain3 extends MovieClip { } }//package
Section 78
//chain4 (chain4) package { import flash.display.*; public dynamic class chain4 extends MovieClip { } }//package
Section 79
//chain5 (chain5) package { import flash.display.*; public dynamic class chain5 extends MovieClip { } }//package
Section 80
//dress1 (dress1) package { import flash.display.*; public dynamic class dress1 extends MovieClip { } }//package
Section 81
//dress10 (dress10) package { import flash.display.*; public dynamic class dress10 extends MovieClip { } }//package
Section 82
//dress11 (dress11) package { import flash.display.*; public dynamic class dress11 extends MovieClip { } }//package
Section 83
//dress12 (dress12) package { import flash.display.*; public dynamic class dress12 extends MovieClip { } }//package
Section 84
//dress13 (dress13) package { import flash.display.*; public dynamic class dress13 extends MovieClip { } }//package
Section 85
//dress14 (dress14) package { import flash.display.*; public dynamic class dress14 extends MovieClip { } }//package
Section 86
//dress15 (dress15) package { import flash.display.*; public dynamic class dress15 extends MovieClip { } }//package
Section 87
//dress2 (dress2) package { import flash.display.*; public dynamic class dress2 extends MovieClip { } }//package
Section 88
//dress3 (dress3) package { import flash.display.*; public dynamic class dress3 extends MovieClip { } }//package
Section 89
//dress4 (dress4) package { import flash.display.*; public dynamic class dress4 extends MovieClip { } }//package
Section 90
//dress5 (dress5) package { import flash.display.*; public dynamic class dress5 extends MovieClip { } }//package
Section 91
//dress6 (dress6) package { import flash.display.*; public dynamic class dress6 extends MovieClip { } }//package
Section 92
//dress7 (dress7) package { import flash.display.*; public dynamic class dress7 extends MovieClip { } }//package
Section 93
//dress8 (dress8) package { import flash.display.*; public dynamic class dress8 extends MovieClip { } }//package
Section 94
//dress9 (dress9) package { import flash.display.*; public dynamic class dress9 extends MovieClip { } }//package
Section 95
//ear1 (ear1) package { import flash.display.*; public dynamic class ear1 extends MovieClip { } }//package
Section 96
//ear2 (ear2) package { import flash.display.*; public dynamic class ear2 extends MovieClip { } }//package
Section 97
//ear3 (ear3) package { import flash.display.*; public dynamic class ear3 extends MovieClip { } }//package
Section 98
//ear4 (ear4) package { import flash.display.*; public dynamic class ear4 extends MovieClip { } }//package
Section 99
//ear5 (ear5) package { import flash.display.*; public dynamic class ear5 extends MovieClip { } }//package
Section 100
//Globe (Globe) package { public class Globe { public static var chain:Number = 0; public static var tops:Number = 0; public static var earring:Number = 0; public static var temp:Number = 0; public static var playback:Boolean = false; public static var hair:Number = 0; public static var bgss:Number = 0; public static var tex:String = ""; public static var shoes:Number = 0; public static var bags:Number = 0; public static var bottoms:Number = 0; public static var glass:Number = 0; public static var dress:Number = 0; } }//package
Section 101
//hair1 (hair1) package { import flash.display.*; public dynamic class hair1 extends MovieClip { } }//package
Section 102
//hair2 (hair2) package { import flash.display.*; public dynamic class hair2 extends MovieClip { } }//package
Section 103
//hair3 (hair3) package { import flash.display.*; public dynamic class hair3 extends MovieClip { } }//package
Section 104
//hair4 (hair4) package { import flash.display.*; public dynamic class hair4 extends MovieClip { } }//package
Section 105
//MochiBot (MochiBot) package { import flash.display.*; import flash.net.*; import flash.system.*; public dynamic class MochiBot extends Sprite { public static function track(_arg1:Sprite, _arg2:String):MochiBot{ var _local3:MochiBot; var _local4:String; var _local5:URLVariables; var _local6:String; var _local7:URLRequest; var _local8:Loader; if (Security.sandboxType == "localWithFile"){ return (null); }; _local3 = new (MochiBot); _arg1.addChild(_local3); Security.allowDomain("*"); Security.allowInsecureDomain("*"); _local4 = "http://core.mochibot.com/my/core.swf"; _local5 = new URLVariables(); _local5["sb"] = Security.sandboxType; _local5["v"] = Capabilities.version; _local5["swfid"] = _arg2; _local5["mv"] = "8"; _local5["fv"] = "9"; _local6 = _local3.root.loaderInfo.loaderURL; if (_local6.indexOf("http") == 0){ _local5["url"] = _local6; } else { _local5["url"] = "local"; }; _local7 = new URLRequest(_local4); _local7.contentType = "application/x-www-form-urlencoded"; _local7.method = URLRequestMethod.POST; _local7.data = _local5; _local8 = new Loader(); _local3.addChild(_local8); _local8.load(_local7); return (_local3); } } }//package
Section 106
//shoe1 (shoe1) package { import flash.display.*; public dynamic class shoe1 extends MovieClip { } }//package
Section 107
//shoe2 (shoe2) package { import flash.display.*; public dynamic class shoe2 extends MovieClip { } }//package
Section 108
//shoe3 (shoe3) package { import flash.display.*; public dynamic class shoe3 extends MovieClip { } }//package
Section 109
//shoe4 (shoe4) package { import flash.display.*; public dynamic class shoe4 extends MovieClip { } }//package
Section 110
//shoe5 (shoe5) package { import flash.display.*; public dynamic class shoe5 extends MovieClip { } }//package
Section 111
//tops1 (tops1) package { import flash.display.*; public dynamic class tops1 extends MovieClip { } }//package
Section 112
//tops2 (tops2) package { import flash.display.*; public dynamic class tops2 extends MovieClip { } }//package
Section 113
//tops3 (tops3) package { import flash.display.*; public dynamic class tops3 extends MovieClip { } }//package
Section 114
//tops4 (tops4) package { import flash.display.*; public dynamic class tops4 extends MovieClip { } }//package
Section 115
//tops5 (tops5) package { import flash.display.*; public dynamic class tops5 extends MovieClip { } }//package
Section 116
//tops6 (tops6) package { import flash.display.*; public dynamic class tops6 extends MovieClip { } }//package
Section 117
//tops7 (tops7) package { import flash.display.*; public dynamic class tops7 extends MovieClip { } }//package
Section 118
//tops8 (tops8) package { import flash.display.*; public dynamic class tops8 extends MovieClip { } }//package
Section 119
//tops9 (tops9) package { import flash.display.*; public dynamic class tops9 extends MovieClip { } }//package

Library Items

Symbol 1 Sound {backscore}
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:4 40
Symbol 4 MovieClipUses:3Used by:5 573
Symbol 5 MovieClip {ear5}Uses:4Used by:565
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:8 42
Symbol 8 MovieClipUses:7Used by:9
Symbol 9 MovieClipUses:8Used by:10 573
Symbol 10 MovieClip {ear4}Uses:9Used by:565
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:13 35
Symbol 13 MovieClipUses:12Used by:14 573
Symbol 14 MovieClip {ear3}Uses:13Used by:565
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:17
Symbol 17 MovieClipUses:16Used by:18 573
Symbol 18 MovieClip {ear2}Uses:17Used by:565
Symbol 19 GraphicUsed by:22
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:22 37
Symbol 22 MovieClipUses:19 21Used by:23 37
Symbol 23 MovieClipUses:22Used by:24 573
Symbol 24 MovieClip {ear1}Uses:23Used by:565
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:27 31 571
Symbol 27 MovieClip {hair4}Uses:26Used by:564
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:28Used by:30 32 571
Symbol 30 MovieClip {hair3}Uses:29Used by:564
Symbol 31 MovieClip {hair2}Uses:26Used by:564
Symbol 32 MovieClip {hair1}Uses:29Used by:564
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:35
Symbol 35 MovieClipUses:12 34Used by:36 572
Symbol 36 MovieClip {chain5}Uses:35Used by:562
Symbol 37 MovieClipUses:22 21Used by:38 572
Symbol 38 MovieClip {chain4}Uses:37Used by:562
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39 3Used by:41 572
Symbol 41 MovieClip {chain3}Uses:40Used by:562
Symbol 42 MovieClipUses:7Used by:43 572
Symbol 43 MovieClip {chain2}Uses:42Used by:562
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:46 572
Symbol 46 MovieClip {chain1}Uses:45Used by:562
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:49 570
Symbol 49 MovieClip {tops9}Uses:48Used by:561
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:52
Symbol 52 MovieClipUses:51Used by:53 570
Symbol 53 MovieClip {tops8}Uses:52Used by:561
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:56 570
Symbol 56 MovieClip {tops7}Uses:55Used by:561
Symbol 57 GraphicUsed by:61
Symbol 58 GraphicUsed by:60
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:58 59Used by:61
Symbol 61 MovieClipUses:57 60Used by:62 570
Symbol 62 MovieClip {tops6}Uses:61Used by:561
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:65 570
Symbol 65 MovieClip {tops5}Uses:64Used by:561
Symbol 66 GraphicUsed by:70
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:70
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:66 68 69Used by:71 570
Symbol 71 MovieClip {tops4}Uses:70Used by:561
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:74 570
Symbol 74 MovieClip {tops3}Uses:73Used by:561
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75Used by:77 570
Symbol 77 MovieClip {tops2}Uses:76Used by:561
Symbol 78 GraphicUsed by:81
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79Used by:81 176
Symbol 81 MovieClipUses:78 80Used by:82 570
Symbol 82 MovieClip {tops1}Uses:81Used by:561
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:85 567
Symbol 85 MovieClip {dress15}Uses:84Used by:560
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:88
Symbol 88 MovieClipUses:87Used by:89 567
Symbol 89 MovieClip {dress14}Uses:88Used by:560
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:92 567
Symbol 92 MovieClip {dress13}Uses:91Used by:560
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:95 567
Symbol 95 MovieClip {dress12}Uses:94Used by:560
Symbol 96 BitmapUsed by:97
Symbol 97 GraphicUses:96Used by:98
Symbol 98 MovieClipUses:97Used by:99 567
Symbol 99 MovieClip {dress11}Uses:98Used by:560
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:102
Symbol 102 MovieClipUses:101Used by:103 567
Symbol 103 MovieClip {dress10}Uses:102Used by:560
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:106 567
Symbol 106 MovieClip {dress9}Uses:105Used by:560
Symbol 107 BitmapUsed by:109
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108 107Used by:110
Symbol 110 MovieClipUses:109Used by:111 567
Symbol 111 MovieClip {dress8}Uses:110Used by:560
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:114
Symbol 114 MovieClipUses:113Used by:115 567
Symbol 115 MovieClip {dress7}Uses:114Used by:560
Symbol 116 BitmapUsed by:117
Symbol 117 GraphicUses:116Used by:120
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:120
Symbol 120 MovieClipUses:117 119Used by:121 567
Symbol 121 MovieClip {dress6}Uses:120Used by:560
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:124 567
Symbol 124 MovieClip {dress5}Uses:123Used by:560
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:127
Symbol 127 MovieClipUses:126Used by:128 567
Symbol 128 MovieClip {dress4}Uses:127Used by:560
Symbol 129 BitmapUsed by:133
Symbol 130 BitmapUsed by:133
Symbol 131 BitmapUsed by:133
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:129 132 130 131Used by:136
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:136
Symbol 136 MovieClipUses:133 135Used by:137 567
Symbol 137 MovieClip {dress3}Uses:136Used by:560
Symbol 138 BitmapUsed by:139
Symbol 139 GraphicUses:138Used by:142
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:140Used by:142
Symbol 142 MovieClipUses:139 141Used by:143 567
Symbol 143 MovieClip {dress2}Uses:142Used by:560
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:146
Symbol 146 MovieClipUses:145Used by:147 567
Symbol 147 MovieClip {dress1}Uses:146Used by:560
Symbol 148 BitmapUsed by:150
Symbol 149 BitmapUsed by:150 157
Symbol 150 GraphicUses:149 148Used by:151
Symbol 151 MovieClipUses:150Used by:152 569
Symbol 152 MovieClip {bottoms9}Uses:151Used by:559
Symbol 153 BitmapUsed by:154
Symbol 154 GraphicUses:153Used by:155
Symbol 155 MovieClipUses:154Used by:156 569
Symbol 156 MovieClip {bottoms8}Uses:155Used by:559
Symbol 157 GraphicUses:149Used by:158
Symbol 158 MovieClipUses:157Used by:159 569
Symbol 159 MovieClip {bottoms7}Uses:158Used by:559
Symbol 160 BitmapUsed by:161 163
Symbol 161 GraphicUses:160Used by:162
Symbol 162 MovieClipUses:161Used by:164
Symbol 163 GraphicUses:160Used by:164
Symbol 164 MovieClipUses:162 163Used by:165 569
Symbol 165 MovieClip {bottoms6}Uses:164Used by:559
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:168 569
Symbol 168 MovieClip {bottoms5}Uses:167Used by:559
Symbol 169 GraphicUsed by:170
Symbol 170 MovieClipUses:169Used by:171 569
Symbol 171 MovieClip {bottoms4}Uses:170Used by:559
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:174 569
Symbol 174 MovieClip {bottoms3}Uses:173Used by:559
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175 80Used by:177 569
Symbol 177 MovieClip {bottoms2}Uses:176Used by:559
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:180 569
Symbol 180 MovieClip {bottoms1}Uses:179Used by:559
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:183 568
Symbol 183 MovieClip {shoe5}Uses:182Used by:558
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:186 568
Symbol 186 MovieClip {shoe4}Uses:185Used by:558
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:189 568
Symbol 189 MovieClip {shoe3}Uses:188Used by:558
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:192 568
Symbol 192 MovieClip {shoe2}Uses:191Used by:558
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:195 568
Symbol 195 MovieClip {shoe1}Uses:194Used by:558
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196Used by:206
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:206
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:206
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:202Used by:206
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:206
Symbol 206 MovieClipUses:197 199 201 203 205Used by:Timeline
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:213
Symbol 209 GraphicUsed by:210
Symbol 210 MovieClipUses:209Used by:213
Symbol 211 GraphicUsed by:213
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClip {JennaElfman_fla.Timeline_7}Uses:208 210 211 212Used by:Timeline
Symbol 214 FontUsed by:215
Symbol 215 EditableTextUses:214Used by:Timeline
Symbol 216 GraphicUsed by:Timeline
Symbol 217 FontUsed by:218 409 493 504
Symbol 218 TextUses:217Used by:Timeline
Symbol 219 GraphicUsed by:243
Symbol 220 GraphicUsed by:222
Symbol 221 MovieClipUsed by:222
Symbol 222 MovieClipUses:220 221Used by:243
Symbol 223 GraphicUsed by:233
Symbol 224 ShapeTweeningUsed by:232
Symbol 225 GraphicUsed by:232
Symbol 226 ShapeTweeningUsed by:232
Symbol 227 GraphicUsed by:232
Symbol 228 ShapeTweeningUsed by:232
Symbol 229 GraphicUsed by:232
Symbol 230 ShapeTweeningUsed by:232
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:224 225 226 227 228 229 230 231Used by:233
Symbol 233 MovieClipUses:223 232Used by:241
Symbol 234 GraphicUsed by:239
Symbol 235 GraphicUsed by:239
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:239
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:234 235 237 238Used by:241
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:233 239 240Used by:243
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:219 222 241 242Used by:Timeline
Symbol 244 FontUsed by:245 246 247 248 249 250 252 253 254 255 256 257 258 259 511
Symbol 245 TextUses:244Used by:251
Symbol 246 TextUses:244Used by:251
Symbol 247 TextUses:244Used by:251
Symbol 248 TextUses:244Used by:251
Symbol 249 TextUses:244Used by:251
Symbol 250 TextUses:244Used by:251
Symbol 251 MovieClip {JennaElfman_fla.Timeline_18}Uses:245 246 247 248 249 250Used by:Timeline
Symbol 252 TextUses:244Used by:260
Symbol 253 TextUses:244Used by:260
Symbol 254 TextUses:244Used by:260
Symbol 255 TextUses:244Used by:260
Symbol 256 TextUses:244Used by:260
Symbol 257 TextUses:244Used by:260
Symbol 258 TextUses:244Used by:260
Symbol 259 TextUses:244Used by:260
Symbol 260 MovieClipUses:252 253 254 255 256 257 258 259Used by:Timeline
Symbol 261 BitmapUsed by:262
Symbol 262 GraphicUses:261Used by:263
Symbol 263 MovieClipUses:262Used by:Timeline
Symbol 264 BitmapUsed by:265
Symbol 265 GraphicUses:264Used by:268
Symbol 266 GraphicUsed by:267 394 402 416 430 444 458 472 486 500 526 535 597
Symbol 267 MovieClipUses:266Used by:268
Symbol 268 MovieClipUses:265 267Used by:275
Symbol 269 BitmapUsed by:270
Symbol 270 GraphicUses:269Used by:275
Symbol 271 BitmapUsed by:272
Symbol 272 GraphicUses:271Used by:275
Symbol 273 BitmapUsed by:274
Symbol 274 GraphicUses:273Used by:275
Symbol 275 MovieClipUses:268 270 272 274Used by:287
Symbol 276 FontUsed by:277 403 417 431 445 459 473 536 651 652 653 654 655 667 680 682 683 686 688
Symbol 277 TextUses:276Used by:287
Symbol 278 GraphicUsed by:287
Symbol 279 GraphicUsed by:287
Symbol 280 GraphicUsed by:287
Symbol 281 GraphicUsed by:287
Symbol 282 GraphicUsed by:287
Symbol 283 GraphicUsed by:287
Symbol 284 GraphicUsed by:287
Symbol 285 GraphicUsed by:287
Symbol 286 GraphicUsed by:287
Symbol 287 MovieClip {JennaElfman_fla.Timeline_21}Uses:275 277 278 279 280 281 282 283 284 285 286Used by:Timeline
Symbol 288 BitmapUsed by:289
Symbol 289 GraphicUses:288Used by:Timeline
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:Timeline
Symbol 292 BitmapUsed by:293
Symbol 293 GraphicUses:292Used by:294
Symbol 294 MovieClipUses:293Used by:Timeline
Symbol 295 BitmapUsed by:296 297 393
Symbol 296 GraphicUses:295Used by:301
Symbol 297 GraphicUses:295Used by:298
Symbol 298 MovieClipUses:297Used by:301
Symbol 299 BitmapUsed by:300 396
Symbol 300 GraphicUses:299Used by:301
Symbol 301 MovieClipUses:296 298 300Used by:302
Symbol 302 MovieClipUses:301Used by:303
Symbol 303 MovieClipUses:302Used by:Timeline
Symbol 304 BitmapUsed by:305 339
Symbol 305 GraphicUses:304Used by:306
Symbol 306 MovieClipUses:305Used by:309
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:307Used by:309
Symbol 309 MovieClipUses:306 308Used by:330
Symbol 310 GraphicUsed by:311
Symbol 311 MovieClipUses:310Used by:330
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:330
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:330
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:316Used by:330
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:330
Symbol 320 GraphicUsed by:321
Symbol 321 MovieClipUses:320Used by:330
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:322Used by:330
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324Used by:330
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:326Used by:330
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:330
Symbol 330 MovieClipUses:309 311 313 315 317 319 321 323 325 327 329Used by:Timeline
Symbol 331 BitmapUsed by:332
Symbol 332 GraphicUses:331Used by:333
Symbol 333 MovieClipUses:332Used by:335 337
Symbol 334 GraphicUsed by:336
Symbol 335 MovieClipUses:333Used by:336
Symbol 336 MovieClipUses:334 335Used by:337
Symbol 337 MovieClipUses:333 336Used by:Timeline
Symbol 338 BitmapUsed by:339 340
Symbol 339 GraphicUses:338 304Used by:342
Symbol 340 GraphicUses:338Used by:341
Symbol 341 MovieClipUses:340Used by:342
Symbol 342 MovieClipUses:339 341Used by:343
Symbol 343 MovieClipUses:342Used by:344
Symbol 344 MovieClipUses:343Used by:Timeline
Symbol 345 BitmapUsed by:346 348 350 352 354 356 358 360 362 364 366 368 370 372 374
Symbol 346 GraphicUses:345Used by:347
Symbol 347 MovieClipUses:346Used by:376 381
Symbol 348 GraphicUses:345Used by:349
Symbol 349 MovieClipUses:348Used by:376 381
Symbol 350 GraphicUses:345Used by:351
Symbol 351 MovieClipUses:350Used by:376 381
Symbol 352 GraphicUses:345Used by:353
Symbol 353 MovieClipUses:352Used by:376 381
Symbol 354 GraphicUses:345Used by:355
Symbol 355 MovieClipUses:354Used by:376 381
Symbol 356 GraphicUses:345Used by:357
Symbol 357 MovieClipUses:356Used by:376 381
Symbol 358 GraphicUses:345Used by:359
Symbol 359 MovieClipUses:358Used by:376 381
Symbol 360 GraphicUses:345Used by:361
Symbol 361 MovieClipUses:360Used by:376 381
Symbol 362 GraphicUses:345Used by:363
Symbol 363 MovieClipUses:362Used by:376 381
Symbol 364 GraphicUses:345Used by:365
Symbol 365 MovieClipUses:364Used by:376 381
Symbol 366 GraphicUses:345Used by:367
Symbol 367 MovieClipUses:366Used by:376 381
Symbol 368 GraphicUses:345Used by:369
Symbol 369 MovieClipUses:368Used by:376 381
Symbol 370 GraphicUses:345Used by:371
Symbol 371 MovieClipUses:370Used by:376 381
Symbol 372 GraphicUses:345Used by:373
Symbol 373 MovieClipUses:372Used by:376 381
Symbol 374 GraphicUses:345Used by:375
Symbol 375 MovieClipUses:374Used by:376 381
Symbol 376 MovieClipUses:347 349 351 353 355 357 359 361 363 365 367 369 371 373 375Used by:377 382
Symbol 377 MovieClipUses:376Used by:378
Symbol 378 MovieClipUses:377Used by:379
Symbol 379 MovieClipUses:378Used by:Timeline
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:347 349 351 353 355 357 359 361 363 365 367 369 371 373 375 380Used by:382
Symbol 382 MovieClipUses:376 381Used by:383
Symbol 383 MovieClipUses:382Used by:384
Symbol 384 MovieClipUses:383Used by:Timeline
Symbol 385 BitmapUsed by:386 388
Symbol 386 GraphicUses:385Used by:387
Symbol 387 MovieClipUses:386Used by:390
Symbol 388 GraphicUses:385Used by:389
Symbol 389 MovieClipUses:388Used by:390
Symbol 390 MovieClipUses:387 389Used by:391
Symbol 391 MovieClipUses:390Used by:392
Symbol 392 MovieClipUses:391Used by:Timeline
Symbol 393 GraphicUses:295Used by:395 402 416 430 444 458 472 486 500
Symbol 394 MovieClipUses:266Used by:395
Symbol 395 MovieClipUses:393 394Used by:401 415 429 443 457 471 485 499
Symbol 396 GraphicUses:299Used by:401 402 415 416 429 430 443 444 457 458 471 472 485 486 499 500
Symbol 397 BitmapUsed by:398
Symbol 398 GraphicUses:397Used by:401 415 429 443 457 471 485 499
Symbol 399 BitmapUsed by:400
Symbol 400 GraphicUses:399Used by:401 415 429 443 457 471 485 499
Symbol 401 MovieClipUses:395 396 398 400Used by:402
Symbol 402 ButtonUses:401 393 266 396Used by:414
Symbol 403 TextUses:276Used by:414
Symbol 404 GraphicUsed by:414
Symbol 405 GraphicUsed by:414
Symbol 406 GraphicUsed by:414
Symbol 407 GraphicUsed by:414
Symbol 408 GraphicUsed by:414
Symbol 409 TextUses:217Used by:414
Symbol 410 GraphicUsed by:414
Symbol 411 GraphicUsed by:414
Symbol 412 GraphicUsed by:414
Symbol 413 GraphicUsed by:414
Symbol 414 MovieClip {JennaElfman_fla.Timeline_81}Uses:402 403 404 405 406 407 408 409 410 411 412 413Used by:Timeline
Symbol 415 MovieClipUses:395 396 398 400Used by:416
Symbol 416 ButtonUses:415 393 266 396Used by:428
Symbol 417 TextUses:276Used by:428
Symbol 418 GraphicUsed by:428
Symbol 419 GraphicUsed by:428
Symbol 420 GraphicUsed by:428
Symbol 421 GraphicUsed by:428
Symbol 422 GraphicUsed by:428
Symbol 423 FontUsed by:424 437 451 606 618 623 624
Symbol 424 TextUses:423Used by:428
Symbol 425 GraphicUsed by:428
Symbol 426 GraphicUsed by:428
Symbol 427 GraphicUsed by:428
Symbol 428 MovieClip {JennaElfman_fla.Timeline_86}Uses:416 417 418 419 420 421 422 424 425 426 427Used by:Timeline
Symbol 429 MovieClipUses:395 396 398 400Used by:430
Symbol 430 ButtonUses:429 393 266 396Used by:442
Symbol 431 TextUses:276Used by:442
Symbol 432 GraphicUsed by:442
Symbol 433 GraphicUsed by:442
Symbol 434 GraphicUsed by:442
Symbol 435 GraphicUsed by:442
Symbol 436 GraphicUsed by:442
Symbol 437 TextUses:423Used by:442
Symbol 438 GraphicUsed by:442
Symbol 439 GraphicUsed by:442
Symbol 440 GraphicUsed by:442
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClip {JennaElfman_fla.Timeline_89}Uses:430 431 432 433 434 435 436 437 438 439 440 441Used by:Timeline
Symbol 443 MovieClipUses:395 396 398 400Used by:444
Symbol 444 ButtonUses:443 393 266 396Used by:456
Symbol 445 TextUses:276Used by:456
Symbol 446 GraphicUsed by:456
Symbol 447 GraphicUsed by:456
Symbol 448 GraphicUsed by:456
Symbol 449 GraphicUsed by:456
Symbol 450 GraphicUsed by:456
Symbol 451 TextUses:423Used by:456
Symbol 452 GraphicUsed by:456
Symbol 453 GraphicUsed by:456
Symbol 454 GraphicUsed by:456
Symbol 455 GraphicUsed by:456 546
Symbol 456 MovieClip {JennaElfman_fla.Timeline_92}Uses:444 445 446 447 448 449 450 451 452 453 454 455Used by:Timeline
Symbol 457 MovieClipUses:395 396 398 400Used by:458
Symbol 458 ButtonUses:457 393 266 396Used by:470
Symbol 459 TextUses:276Used by:470
Symbol 460 GraphicUsed by:470
Symbol 461 GraphicUsed by:470
Symbol 462 GraphicUsed by:470
Symbol 463 GraphicUsed by:470
Symbol 464 GraphicUsed by:470
Symbol 465 GraphicUsed by:470
Symbol 466 GraphicUsed by:470
Symbol 467 GraphicUsed by:470
Symbol 468 GraphicUsed by:470
Symbol 469 GraphicUsed by:470
Symbol 470 MovieClip {JennaElfman_fla.Timeline_95}Uses:458 459 460 461 462 463 464 465 466 467 468 469Used by:Timeline
Symbol 471 MovieClipUses:395 396 398 400Used by:472
Symbol 472 ButtonUses:471 393 266 396Used by:484
Symbol 473 TextUses:276Used by:484
Symbol 474 GraphicUsed by:484
Symbol 475 GraphicUsed by:484
Symbol 476 GraphicUsed by:484
Symbol 477 GraphicUsed by:484
Symbol 478 GraphicUsed by:484
Symbol 479 GraphicUsed by:484
Symbol 480 GraphicUsed by:484
Symbol 481 GraphicUsed by:484
Symbol 482 GraphicUsed by:484
Symbol 483 GraphicUsed by:484
Symbol 484 MovieClip {JennaElfman_fla.Timeline_98}Uses:472 473 474 475 476 477 478 479 480 481 482 483Used by:Timeline
Symbol 485 MovieClipUses:395 396 398 400Used by:486
Symbol 486 ButtonUses:485 393 266 396Used by:498
Symbol 487 GraphicUsed by:498
Symbol 488 GraphicUsed by:498
Symbol 489 GraphicUsed by:498
Symbol 490 GraphicUsed by:498
Symbol 491 GraphicUsed by:498
Symbol 492 GraphicUsed by:498
Symbol 493 TextUses:217Used by:498
Symbol 494 GraphicUsed by:498
Symbol 495 GraphicUsed by:498
Symbol 496 GraphicUsed by:498
Symbol 497 GraphicUsed by:498
Symbol 498 MovieClip {JennaElfman_fla.Timeline_101}Uses:486 487 488 489 490 491 492 493 494 495 496 497Used by:Timeline
Symbol 499 MovieClipUses:395 396 398 400Used by:500
Symbol 500 ButtonUses:499 393 266 396Used by:509
Symbol 501 GraphicUsed by:509
Symbol 502 GraphicUsed by:509
Symbol 503 GraphicUsed by:509
Symbol 504 TextUses:217Used by:509
Symbol 505 GraphicUsed by:509
Symbol 506 GraphicUsed by:509
Symbol 507 GraphicUsed by:509
Symbol 508 GraphicUsed by:509
Symbol 509 MovieClip {JennaElfman_fla.Timeline_104}Uses:500 501 502 503 504 505 506 507 508Used by:Timeline
Symbol 510 GraphicUsed by:514
Symbol 511 TextUses:244Used by:514
Symbol 512 GraphicUsed by:514
Symbol 513 GraphicUsed by:514
Symbol 514 ButtonUses:510 511 512 513Used by:Timeline
Symbol 515 GraphicUsed by:517 522 523
Symbol 516 GraphicUsed by:517 522 523
Symbol 517 MovieClipUses:515 516Used by:522 523
Symbol 518 GraphicUsed by:519 522 523
Symbol 519 MovieClipUses:518Used by:522 523
Symbol 520 GraphicUsed by:521 522
Symbol 521 MovieClipUses:520Used by:522
Symbol 522 ButtonUses:517 519 521 515 516 518 520Used by:Timeline
Symbol 523 ButtonUses:517 519 515 516 518Used by:Timeline
Symbol 524 BitmapUsed by:525
Symbol 525 GraphicUses:524Used by:527 535
Symbol 526 MovieClipUses:266Used by:527
Symbol 527 MovieClipUses:525 526Used by:534
Symbol 528 BitmapUsed by:529
Symbol 529 GraphicUses:528Used by:534 535
Symbol 530 BitmapUsed by:531
Symbol 531 GraphicUses:530Used by:534
Symbol 532 BitmapUsed by:533
Symbol 533 GraphicUses:532Used by:534
Symbol 534 MovieClipUses:527 529 531 533Used by:535
Symbol 535 ButtonUses:534 525 266 529Used by:546
Symbol 536 TextUses:276Used by:546
Symbol 537 GraphicUsed by:546
Symbol 538 GraphicUsed by:546
Symbol 539 GraphicUsed by:546
Symbol 540 GraphicUsed by:546
Symbol 541 GraphicUsed by:546
Symbol 542 GraphicUsed by:546
Symbol 543 GraphicUsed by:546
Symbol 544 GraphicUsed by:546
Symbol 545 GraphicUsed by:546
Symbol 546 MovieClip {JennaElfman_fla.dressbtnsdfsdf_113}Uses:535 536 537 538 455 539 540 541 542 543 544 545Used by:Timeline
Symbol 547 GraphicUsed by:548
Symbol 548 MovieClipUses:547Used by:Timeline
Symbol 549 GraphicUsed by:550
Symbol 550 MovieClipUses:549Used by:566
Symbol 551 GraphicUsed by:557
Symbol 552 GraphicUsed by:553
Symbol 553 MovieClipUses:552Used by:557
Symbol 554 GraphicUsed by:557
Symbol 555 GraphicUsed by:556
Symbol 556 MovieClipUses:555Used by:557
Symbol 557 MovieClipUses:551 553 554 556Used by:566
Symbol 558 MovieClip {JennaElfman_fla.shoes_124}Uses:195 192 189 186 183Used by:566
Symbol 559 MovieClip {JennaElfman_fla.bottoms_135}Uses:180 177 174 171 168 165 159 156 152Used by:566
Symbol 560 MovieClip {JennaElfman_fla.dress_156}Uses:147 143 137 128 124 121 115 111 106 103 99 95 92 89 85Used by:566
Symbol 561 MovieClip {JennaElfman_fla.tops_190}Uses:82 77 74 71 65 62 56 53 49Used by:566
Symbol 562 MovieClip {JennaElfman_fla.chaisn_211}Uses:46 43 41 38 36Used by:566
Symbol 563 GraphicUsed by:566
Symbol 564 MovieClip {JennaElfman_fla.hairs_228}Uses:32 31 30 27Used by:566
Symbol 565 MovieClip {JennaElfman_fla.earrings_235}Uses:24 18 14 10 5Used by:566
Symbol 566 MovieClip {JennaElfman_fla.doll_119}Uses:550 557 558 559 560 561 562 563 564 565Used by:Timeline
Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248}Uses:146 142 136 127 123 120 114 110 105 102 98 94 91 88 84Used by:Timeline
Symbol 568 MovieClip {JennaElfman_fla.shoespalette_249}Uses:185 188 182 191 194Used by:Timeline
Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250}Uses:151 155 158 164 167 170 173 176 179Used by:Timeline
Symbol 570 MovieClip {JennaElfman_fla.topspalette_251}Uses:81 76 73 70 64 61 55 52 48Used by:Timeline
Symbol 571 MovieClip {JennaElfman_fla.haIRSPLA_252}Uses:26 29Used by:Timeline
Symbol 572 MovieClip {JennaElfman_fla.chainspla_253}Uses:45 42 40 37 35Used by:Timeline
Symbol 573 MovieClip {JennaElfman_fla.earringoak_254}Uses:23 17 9 13 4Used by:Timeline
Symbol 574 MovieClipUsed by:Timeline
Symbol 575 MovieClipUsed by:Timeline
Symbol 576 MovieClip {JennaElfman_fla.Timeline_257}Used by:Timeline
Symbol 577 BitmapUsed by:578
Symbol 578 GraphicUses:577Used by:Timeline
Symbol 579 BitmapUsed by:580
Symbol 580 GraphicUses:579Used by:590
Symbol 581 BitmapUsed by:582 599 612 625
Symbol 582 GraphicUses:581Used by:583
Symbol 583 MovieClipUses:582Used by:590
Symbol 584 BitmapUsed by:585 600 613 626
Symbol 585 GraphicUses:584Used by:586
Symbol 586 MovieClipUses:585Used by:590
Symbol 587 BitmapUsed by:588 601
Symbol 588 GraphicUses:587Used by:589
Symbol 589 MovieClipUses:588Used by:590
Symbol 590 MovieClipUses:580 583 586 589Used by:Timeline
Symbol 591 FontUsed by:592
Symbol 592 EditableTextUses:591Used by:Timeline
Symbol 593 GraphicUsed by:594
Symbol 594 MovieClipUses:593Used by:Timeline
Symbol 595 BitmapUsed by:596
Symbol 596 GraphicUses:595Used by:598
Symbol 597 MovieClipUses:266Used by:598
Symbol 598 MovieClipUses:596 597Used by:611 622 636
Symbol 599 GraphicUses:581Used by:611
Symbol 600 GraphicUses:584Used by:611
Symbol 601 GraphicUses:587Used by:611 622 636
Symbol 602 GraphicUsed by:611
Symbol 603 GraphicUsed by:611
Symbol 604 GraphicUsed by:611
Symbol 605 GraphicUsed by:611
Symbol 606 TextUses:423Used by:611
Symbol 607 GraphicUsed by:611
Symbol 608 GraphicUsed by:611
Symbol 609 GraphicUsed by:611
Symbol 610 GraphicUsed by:611
Symbol 611 MovieClip {JennaElfman_fla.Timeline_263}Uses:598 599 600 601 602 603 604 605 606 607 608 609 610Used by:Timeline
Symbol 612 GraphicUses:581Used by:622
Symbol 613 GraphicUses:584Used by:622
Symbol 614 GraphicUsed by:622
Symbol 615 GraphicUsed by:622
Symbol 616 GraphicUsed by:622
Symbol 617 GraphicUsed by:622
Symbol 618 TextUses:423Used by:622
Symbol 619 GraphicUsed by:622
Symbol 620 GraphicUsed by:622
Symbol 621 GraphicUsed by:622
Symbol 622 MovieClip {JennaElfman_fla.Timeline_266}Uses:598 612 613 601 614 615 616 617 618 619 620 621Used by:Timeline
Symbol 623 TextUses:423Used by:Timeline
Symbol 624 EditableTextUses:423Used by:Timeline
Symbol 625 GraphicUses:581Used by:636
Symbol 626 GraphicUses:584Used by:636
Symbol 627 GraphicUsed by:636
Symbol 628 GraphicUsed by:636
Symbol 629 GraphicUsed by:636
Symbol 630 GraphicUsed by:636
Symbol 631 GraphicUsed by:636
Symbol 632 FontUsed by:633
Symbol 633 TextUses:632Used by:636
Symbol 634 GraphicUsed by:636
Symbol 635 GraphicUsed by:636
Symbol 636 MovieClip {JennaElfman_fla.Timeline_267}Uses:598 625 626 601 627 628 629 630 631 633 634 635Used by:Timeline
Symbol 637 GraphicUsed by:638
Symbol 638 MovieClipUses:637Used by:650 656
Symbol 639 BitmapUsed by:640 642 646
Symbol 640 GraphicUses:639Used by:641
Symbol 641 MovieClipUses:640Used by:650 656
Symbol 642 GraphicUses:639Used by:645
Symbol 643 GraphicUsed by:644
Symbol 644 MovieClipUses:643Used by:645 648
Symbol 645 MovieClipUses:642 644Used by:649
Symbol 646 GraphicUses:639Used by:647
Symbol 647 MovieClipUses:646Used by:648
Symbol 648 MovieClipUses:647 644Used by:649 670
Symbol 649 MovieClipUses:645 648Used by:650
Symbol 650 MovieClipUses:638 641 649Used by:690
Symbol 651 TextUses:276Used by:690
Symbol 652 TextUses:276Used by:690
Symbol 653 TextUses:276Used by:690
Symbol 654 TextUses:276Used by:690
Symbol 655 TextUses:276Used by:690
Symbol 656 MovieClipUses:638 641Used by:670
Symbol 657 GraphicUsed by:658 666 685 689
Symbol 658 MovieClipUses:657Used by:666 679
Symbol 659 GraphicUsed by:660 666
Symbol 660 MovieClipUses:659Used by:663
Symbol 661 GraphicUsed by:662 666 685 689
Symbol 662 MovieClipUses:661Used by:663 678
Symbol 663 MovieClipUses:660 662Used by:666
Symbol 664 GraphicUsed by:665
Symbol 665 ButtonUses:664Used by:666
Symbol 666 ButtonUses:658 663 665 657 659 661Used by:670 690
Symbol 667 TextUses:276Used by:670
Symbol 668 FontUsed by:669 671 672 673 674 675
Symbol 669 EditableTextUses:668Used by:670
Symbol 670 MovieClip {JennaElfman_fla.Timeline_277}Uses:656 666 648 667 669Used by:690
Symbol 671 EditableTextUses:668Used by:690
Symbol 672 EditableTextUses:668Used by:690
Symbol 673 EditableTextUses:668Used by:690
Symbol 674 EditableTextUses:668Used by:690
Symbol 675 EditableTextUses:668Used by:690
Symbol 676 GraphicUsed by:677 685 689
Symbol 677 MovieClipUses:676Used by:678
Symbol 678 MovieClipUses:677 662Used by:679
Symbol 679 MovieClipUses:658 678Used by:681 685 687 689
Symbol 680 TextUses:276Used by:681
Symbol 681 MovieClipUses:679 680Used by:685
Symbol 682 TextUses:276Used by:685
Symbol 683 TextUses:276Used by:685
Symbol 684 GraphicUsed by:685 689
Symbol 685 ButtonUses:681 679 682 683 684 657 676 661Used by:690
Symbol 686 TextUses:276Used by:687
Symbol 687 MovieClipUses:679 686Used by:689
Symbol 688 TextUses:276Used by:689
Symbol 689 ButtonUses:687 679 688 684 657 676 661Used by:690
Symbol 690 MovieClip {JennaElfman_fla.Timeline_268}Uses:650 651 652 653 654 655 670 666 671 672 673 674 675 685 689Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 213 MovieClip {JennaElfman_fla.Timeline_7}
"BitsLoaded"Frame 1Symbol 215 EditableText
"ball"Frame 1Symbol 260 MovieClip
"pl"Frame 2Symbol 287 MovieClip {JennaElfman_fla.Timeline_21}
"bottom"Frame 3Symbol 414 MovieClip {JennaElfman_fla.Timeline_81}
"top"Frame 3Symbol 428 MovieClip {JennaElfman_fla.Timeline_86}
"shoe"Frame 3Symbol 442 MovieClip {JennaElfman_fla.Timeline_89}
"chain"Frame 3Symbol 456 MovieClip {JennaElfman_fla.Timeline_92}
"earring"Frame 3Symbol 470 MovieClip {JennaElfman_fla.Timeline_95}
"hair"Frame 3Symbol 484 MovieClip {JennaElfman_fla.Timeline_98}
"nextbtn"Frame 3Symbol 498 MovieClip {JennaElfman_fla.Timeline_101}
"resetbtn"Frame 3Symbol 509 MovieClip {JennaElfman_fla.Timeline_104}
"logo_mc"Frame 3Symbol 514 Button
"sndon"Frame 3Symbol 522 Button
"sndoff"Frame 3Symbol 523 Button
"dress"Frame 3Symbol 546 MovieClip {JennaElfman_fla.dressbtnsdfsdf_113}
"obs"Frame 3Symbol 548 MovieClip
"doll"Frame 3Symbol 566 MovieClip {JennaElfman_fla.doll_119}
"dresspalette"Frame 3Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248}
"shoespalette"Frame 3Symbol 568 MovieClip {JennaElfman_fla.shoespalette_249}
"bottomspalette"Frame 3Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250}
"topspalette"Frame 3Symbol 570 MovieClip {JennaElfman_fla.topspalette_251}
"hairpalette"Frame 3Symbol 571 MovieClip {JennaElfman_fla.haIRSPLA_252}
"chainspalette"Frame 3Symbol 572 MovieClip {JennaElfman_fla.chainspla_253}
"earringpalette"Frame 3Symbol 573 MovieClip {JennaElfman_fla.earringoak_254}
"chainstand"Frame 4Symbol 574 MovieClip
"earstand"Frame 4Symbol 575 MovieClip
"t1"Frame 4Symbol 592 EditableText
"nextbtn"Frame 4Symbol 498 MovieClip {JennaElfman_fla.Timeline_101}
"obs"Frame 4Symbol 594 MovieClip
"nex"Frame 5Symbol 611 MovieClip {JennaElfman_fla.Timeline_263}
"email"Frame 5Symbol 622 MovieClip {JennaElfman_fla.Timeline_266}
"t2"Frame 5Symbol 624 EditableText
"playmore"Frame 5Symbol 636 MovieClip {JennaElfman_fla.Timeline_267}
"obs"Frame 5Symbol 548 MovieClip
"dolls"Frame 5Symbol 566 MovieClip {JennaElfman_fla.doll_119}
"popup"Frame 5Symbol 690 MovieClip {JennaElfman_fla.Timeline_268}
"masker"Symbol 213 MovieClip {JennaElfman_fla.Timeline_7} Frame 1Symbol 208 MovieClip
"bottom"Symbol 414 MovieClip {JennaElfman_fla.Timeline_81} Frame 1Symbol 402 Button
"top"Symbol 428 MovieClip {JennaElfman_fla.Timeline_86} Frame 1Symbol 416 Button
"shoe"Symbol 442 MovieClip {JennaElfman_fla.Timeline_89} Frame 1Symbol 430 Button
"chain"Symbol 456 MovieClip {JennaElfman_fla.Timeline_92} Frame 1Symbol 444 Button
"earring"Symbol 470 MovieClip {JennaElfman_fla.Timeline_95} Frame 1Symbol 458 Button
"hair"Symbol 484 MovieClip {JennaElfman_fla.Timeline_98} Frame 1Symbol 472 Button
"nextbtn"Symbol 498 MovieClip {JennaElfman_fla.Timeline_101} Frame 1Symbol 486 Button
"resetbtn"Symbol 509 MovieClip {JennaElfman_fla.Timeline_104} Frame 1Symbol 500 Button
"dress"Symbol 546 MovieClip {JennaElfman_fla.dressbtnsdfsdf_113} Frame 1Symbol 535 Button
"shoes"Symbol 566 MovieClip {JennaElfman_fla.doll_119} Frame 1Symbol 558 MovieClip {JennaElfman_fla.shoes_124}
"bottoms"Symbol 566 MovieClip {JennaElfman_fla.doll_119} Frame 1Symbol 559 MovieClip {JennaElfman_fla.bottoms_135}
"dress"Symbol 566 MovieClip {JennaElfman_fla.doll_119} Frame 1Symbol 560 MovieClip {JennaElfman_fla.dress_156}
"tops"Symbol 566 MovieClip {JennaElfman_fla.doll_119} Frame 1Symbol 561 MovieClip {JennaElfman_fla.tops_190}
"chain"Symbol 566 MovieClip {JennaElfman_fla.doll_119} Frame 1Symbol 562 MovieClip {JennaElfman_fla.chaisn_211}
"hair"Symbol 566 MovieClip {JennaElfman_fla.doll_119} Frame 1Symbol 564 MovieClip {JennaElfman_fla.hairs_228}
"earring"Symbol 566 MovieClip {JennaElfman_fla.doll_119} Frame 1Symbol 565 MovieClip {JennaElfman_fla.earrings_235}
"h1"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 146 MovieClip
"h2"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 142 MovieClip
"h3"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 136 MovieClip
"h4"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 127 MovieClip
"h5"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 123 MovieClip
"h6"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 120 MovieClip
"h7"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 114 MovieClip
"h8"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 110 MovieClip
"h9"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 105 MovieClip
"h10"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 102 MovieClip
"h11"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 98 MovieClip
"h12"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 94 MovieClip
"h13"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 91 MovieClip
"h14"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 88 MovieClip
"h15"Symbol 567 MovieClip {JennaElfman_fla.dresspalette_248} Frame 1Symbol 84 MovieClip
"h4"Symbol 568 MovieClip {JennaElfman_fla.shoespalette_249} Frame 1Symbol 185 MovieClip
"h3"Symbol 568 MovieClip {JennaElfman_fla.shoespalette_249} Frame 1Symbol 188 MovieClip
"h5"Symbol 568 MovieClip {JennaElfman_fla.shoespalette_249} Frame 1Symbol 182 MovieClip
"h2"Symbol 568 MovieClip {JennaElfman_fla.shoespalette_249} Frame 1Symbol 191 MovieClip
"h1"Symbol 568 MovieClip {JennaElfman_fla.shoespalette_249} Frame 1Symbol 194 MovieClip
"b9"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 151 MovieClip
"b8"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 155 MovieClip
"b7"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 158 MovieClip
"b6"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 164 MovieClip
"b5"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 167 MovieClip
"b4"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 170 MovieClip
"b3"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 173 MovieClip
"b2"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 176 MovieClip
"b1"Symbol 569 MovieClip {JennaElfman_fla.bottomspalette_250} Frame 1Symbol 179 MovieClip
"t1"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 81 MovieClip
"t2"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 76 MovieClip
"t3"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 73 MovieClip
"t4"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 70 MovieClip
"t5"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 64 MovieClip
"t6"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 61 MovieClip
"t7"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 55 MovieClip
"t8"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 52 MovieClip
"t9"Symbol 570 MovieClip {JennaElfman_fla.topspalette_251} Frame 1Symbol 48 MovieClip
"h2"Symbol 571 MovieClip {JennaElfman_fla.haIRSPLA_252} Frame 1Symbol 26 MovieClip
"h4"Symbol 571 MovieClip {JennaElfman_fla.haIRSPLA_252} Frame 1Symbol 26 MovieClip
"h3"Symbol 571 MovieClip {JennaElfman_fla.haIRSPLA_252} Frame 1Symbol 29 MovieClip
"h1"Symbol 571 MovieClip {JennaElfman_fla.haIRSPLA_252} Frame 1Symbol 29 MovieClip
"h1"Symbol 572 MovieClip {JennaElfman_fla.chainspla_253} Frame 1Symbol 45 MovieClip
"h2"Symbol 572 MovieClip {JennaElfman_fla.chainspla_253} Frame 1Symbol 42 MovieClip
"h3"Symbol 572 MovieClip {JennaElfman_fla.chainspla_253} Frame 1Symbol 40 MovieClip
"h4"Symbol 572 MovieClip {JennaElfman_fla.chainspla_253} Frame 1Symbol 37 MovieClip
"h5"Symbol 572 MovieClip {JennaElfman_fla.chainspla_253} Frame 1Symbol 35 MovieClip
"e1"Symbol 573 MovieClip {JennaElfman_fla.earringoak_254} Frame 1Symbol 23 MovieClip
"e2"Symbol 573 MovieClip {JennaElfman_fla.earringoak_254} Frame 1Symbol 17 MovieClip
"e4"Symbol 573 MovieClip {JennaElfman_fla.earringoak_254} Frame 1Symbol 9 MovieClip
"e3"Symbol 573 MovieClip {JennaElfman_fla.earringoak_254} Frame 1Symbol 13 MovieClip
"e5"Symbol 573 MovieClip {JennaElfman_fla.earringoak_254} Frame 1Symbol 4 MovieClip
"close"Symbol 670 MovieClip {JennaElfman_fla.Timeline_277} Frame 1Symbol 666 Button
"friendMail"Symbol 670 MovieClip {JennaElfman_fla.Timeline_277} Frame 1Symbol 669 EditableText
"friend4"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 670 MovieClip {JennaElfman_fla.Timeline_277}
"friend3"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 670 MovieClip {JennaElfman_fla.Timeline_277}
"friend2"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 670 MovieClip {JennaElfman_fla.Timeline_277}
"friend1"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 670 MovieClip {JennaElfman_fla.Timeline_277}
"close"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 666 Button
"nameDetail"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 671 EditableText
"mailDetail"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 672 EditableText
"messageDetail"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 673 EditableText
"friendName"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 674 EditableText
"friendMail"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 675 EditableText
"addition"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 685 Button
"submit"Symbol 690 MovieClip {JennaElfman_fla.Timeline_268} Frame 1Symbol 689 Button

Special Tags

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




http://swfchan.com/23/113302/info.shtml
Created: 11/3 -2019 20:40:57 Last modified: 11/3 -2019 20:40:57 Server time: 02/05 -2024 06:18:56