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

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

jaime-pressly-dress-up-game.swf

This is the info page for
Flash #117638

(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

Nederlands

Nederlands

Русский

Itali
ano

Deutsch

Français

Türkçe

Svenska

Español

Polski

Português

English

JAIME

PRESSLY

DRESS

BOTTOM

Alt

TOP

üst

CHAIN

Kolye

STUDS

HAIR

SHOES

Ayakkabı

Ilerle

Bastan

123PEPPY

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

ENTER YOUR NAME

Voer Uw Naam

Введите свое имя

Inserisci il tuo nome

Geben Sie Ihr Name

Entrez votre nom

Adını gir

Ingrese su Nombre

Ange ditt namn

Imię i nazwisko

Digite seu nome

Tekrar Oyna

Mail

DESIGNED BY

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

Spela Me

YOUR FRIEND'S EMAIL :

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

SEND

SEND

ADD MORE

ADD MORE

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

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

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

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

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

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

ActionScript [AS3]

Section 1
//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 2
//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 3
//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 4
//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 5
//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 6
//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 7
//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 8
//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 9
//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 10
//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 11
//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 12
//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 13
//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 14
//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 15
//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 16
//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 17
//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 18
//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 19
//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 20
//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 21
//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 22
//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 23
//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 24
//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 25
//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 26
//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 27
//ahir3_367 (JAIMEPRESSLY_fla.ahir3_367) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ahir3_367 extends MovieClip { public var h3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 28
//ahir4_369 (JAIMEPRESSLY_fla.ahir4_369) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ahir4_369 extends MovieClip { public var h4:MovieClip; } }//package JAIMEPRESSLY_fla
Section 29
//ahir5_371 (JAIMEPRESSLY_fla.ahir5_371) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ahir5_371 extends MovieClip { public var h4:MovieClip; public var h5:MovieClip; } }//package JAIMEPRESSLY_fla
Section 30
//bggg_22 (JAIMEPRESSLY_fla.bggg_22) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bggg_22 extends MovieClip { public var pl:MovieClip; } }//package JAIMEPRESSLY_fla
Section 31
//botoms_231 (JAIMEPRESSLY_fla.botoms_231) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class botoms_231 extends MovieClip { public function botoms_231(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 32
//botomscopy_77 (JAIMEPRESSLY_fla.botomscopy_77) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class botomscopy_77 extends MovieClip { public function botomscopy_77(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 33
//bttompal_303 (JAIMEPRESSLY_fla.bttompal_303) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bttompal_303 extends MovieClip { public var b10: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; public var b12:MovieClip; public var b11:MovieClip; } }//package JAIMEPRESSLY_fla
Section 34
//ButtonHolder_139 (JAIMEPRESSLY_fla.ButtonHolder_139) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ButtonHolder_139 extends MovieClip { public var b10:SimpleButton; public var b2:SimpleButton; public var b4:SimpleButton; public var b9:SimpleButton; public var b5:SimpleButton; public var b6:SimpleButton; public var b7:SimpleButton; public var b1:SimpleButton; public var b3:SimpleButton; public var b8:SimpleButton; public var b11:SimpleButton; } }//package JAIMEPRESSLY_fla
Section 35
//buttons1_188 (JAIMEPRESSLY_fla.buttons1_188) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class buttons1_188 extends MovieClip { public var b8:MovieClip; public function buttons1_188(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 36
//bv1_304 (JAIMEPRESSLY_fla.bv1_304) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv1_304 extends MovieClip { public var b1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 37
//bv10_321 (JAIMEPRESSLY_fla.bv10_321) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv10_321 extends MovieClip { public var b10:MovieClip; } }//package JAIMEPRESSLY_fla
Section 38
//bv11_322 (JAIMEPRESSLY_fla.bv11_322) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv11_322 extends MovieClip { public var b11:MovieClip; } }//package JAIMEPRESSLY_fla
Section 39
//bv12_323 (JAIMEPRESSLY_fla.bv12_323) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv12_323 extends MovieClip { public var b12:MovieClip; } }//package JAIMEPRESSLY_fla
Section 40
//bv2_306 (JAIMEPRESSLY_fla.bv2_306) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv2_306 extends MovieClip { public var b2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 41
//bv3_308 (JAIMEPRESSLY_fla.bv3_308) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv3_308 extends MovieClip { public var b3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 42
//bv4_310 (JAIMEPRESSLY_fla.bv4_310) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv4_310 extends MovieClip { public var b4:MovieClip; } }//package JAIMEPRESSLY_fla
Section 43
//bv5_312 (JAIMEPRESSLY_fla.bv5_312) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv5_312 extends MovieClip { public var b5:MovieClip; } }//package JAIMEPRESSLY_fla
Section 44
//bv6_314 (JAIMEPRESSLY_fla.bv6_314) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv6_314 extends MovieClip { public var b6:MovieClip; } }//package JAIMEPRESSLY_fla
Section 45
//bv7_316 (JAIMEPRESSLY_fla.bv7_316) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv7_316 extends MovieClip { public var b7:MovieClip; } }//package JAIMEPRESSLY_fla
Section 46
//bv8_318 (JAIMEPRESSLY_fla.bv8_318) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv8_318 extends MovieClip { public var b8:MovieClip; } }//package JAIMEPRESSLY_fla
Section 47
//bv9_320 (JAIMEPRESSLY_fla.bv9_320) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class bv9_320 extends MovieClip { public var b9:MovieClip; } }//package JAIMEPRESSLY_fla
Section 48
//cbvdsfdsf_loader_7 (JAIMEPRESSLY_fla.cbvdsfdsf_loader_7) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class cbvdsfdsf_loader_7 extends MovieClip { public var masker:MovieClip; } }//package JAIMEPRESSLY_fla
Section 49
//ch1_326 (JAIMEPRESSLY_fla.ch1_326) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ch1_326 extends MovieClip { public var c1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 50
//ch2_329 (JAIMEPRESSLY_fla.ch2_329) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ch2_329 extends MovieClip { public var c2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 51
//ch3_332 (JAIMEPRESSLY_fla.ch3_332) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ch3_332 extends MovieClip { public var c3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 52
//ch4_335 (JAIMEPRESSLY_fla.ch4_335) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ch4_335 extends MovieClip { public var c5:MovieClip; } }//package JAIMEPRESSLY_fla
Section 53
//ch5_338 (JAIMEPRESSLY_fla.ch5_338) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class ch5_338 extends MovieClip { public var c4:MovieClip; } }//package JAIMEPRESSLY_fla
Section 54
//chians_233 (JAIMEPRESSLY_fla.chians_233) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class chians_233 extends MovieClip { public function chians_233(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 55
//chjainpalette_324 (JAIMEPRESSLY_fla.chjainpalette_324) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class chjainpalette_324 extends MovieClip { public var c1:MovieClip; public var c3:MovieClip; public var c4:MovieClip; public var c5:MovieClip; public var c2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 56
//cv2_328 (JAIMEPRESSLY_fla.cv2_328) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class cv2_328 extends MovieClip { public var c2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 57
//cv3_331 (JAIMEPRESSLY_fla.cv3_331) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class cv3_331 extends MovieClip { public var c3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 58
//cv4_334 (JAIMEPRESSLY_fla.cv4_334) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class cv4_334 extends MovieClip { public var c4:MovieClip; } }//package JAIMEPRESSLY_fla
Section 59
//cvq1_325 (JAIMEPRESSLY_fla.cvq1_325) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class cvq1_325 extends MovieClip { public var c1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 60
//df10_300 (JAIMEPRESSLY_fla.df10_300) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class df10_300 extends MovieClip { public var t10:MovieClip; } }//package JAIMEPRESSLY_fla
Section 61
//df11_301 (JAIMEPRESSLY_fla.df11_301) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class df11_301 extends MovieClip { public var t11:MovieClip; } }//package JAIMEPRESSLY_fla
Section 62
//df12_302 (JAIMEPRESSLY_fla.df12_302) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class df12_302 extends MovieClip { public var t12:MovieClip; } }//package JAIMEPRESSLY_fla
Section 63
//doll_194 (JAIMEPRESSLY_fla.doll_194) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class doll_194 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 JAIMEPRESSLY_fla
Section 64
//dresp1_255 (JAIMEPRESSLY_fla.dresp1_255) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class dresp1_255 extends MovieClip { public var d4:MovieClip; public var d8:MovieClip; public var d2:MovieClip; public var d5:MovieClip; public var d6:MovieClip; public var d7:MovieClip; public var d9:MovieClip; public var d3:MovieClip; public var d10:MovieClip; public var d11:MovieClip; public var d13:MovieClip; public var d12:MovieClip; public var d1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 65
//dress_200 (JAIMEPRESSLY_fla.dress_200) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class dress_200 extends MovieClip { public function dress_200(){ addFrameScript(0, frame1, 14, frame15); } function frame15(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 66
//earpalette_340 (JAIMEPRESSLY_fla.earpalette_340) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class earpalette_340 extends MovieClip { public var e2:MovieClip; public var e5:MovieClip; public var e3:MovieClip; public var e4:MovieClip; public var e1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 67
//earring_248 (JAIMEPRESSLY_fla.earring_248) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class earring_248 extends MovieClip { public function earring_248(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 68
//enteryourname_382 (JAIMEPRESSLY_fla.enteryourname_382) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class enteryourname_382 extends MovieClip { public function enteryourname_382(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 69
//er1_341 (JAIMEPRESSLY_fla.er1_341) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class er1_341 extends MovieClip { public var e1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 70
//er2_343 (JAIMEPRESSLY_fla.er2_343) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class er2_343 extends MovieClip { public var e2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 71
//er3_345 (JAIMEPRESSLY_fla.er3_345) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class er3_345 extends MovieClip { public var e3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 72
//er4_347 (JAIMEPRESSLY_fla.er4_347) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class er4_347 extends MovieClip { public var e4:MovieClip; } }//package JAIMEPRESSLY_fla
Section 73
//er45_349 (JAIMEPRESSLY_fla.er45_349) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class er45_349 extends MovieClip { public var e5:MovieClip; } }//package JAIMEPRESSLY_fla
Section 74
//hair1_363 (JAIMEPRESSLY_fla.hair1_363) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class hair1_363 extends MovieClip { public var h1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 75
//hair2_365 (JAIMEPRESSLY_fla.hair2_365) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class hair2_365 extends MovieClip { public var h2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 76
//hairpalette_362 (JAIMEPRESSLY_fla.hairpalette_362) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class hairpalette_362 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h5:MovieClip; public var h3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 77
//hairs_244 (JAIMEPRESSLY_fla.hairs_244) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class hairs_244 extends MovieClip { public function hairs_244(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndStop(1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 78
//hairscopy_133 (JAIMEPRESSLY_fla.hairscopy_133) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class hairscopy_133 extends MovieClip { public function hairscopy_133(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 79
//HCVNVHJ_176 (JAIMEPRESSLY_fla.HCVNVHJ_176) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class HCVNVHJ_176 extends MovieClip { public function HCVNVHJ_176(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 80
//HCVNVHJcopy_182 (JAIMEPRESSLY_fla.HCVNVHJcopy_182) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class HCVNVHJcopy_182 extends MovieClip { public function HCVNVHJcopy_182(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 81
//HCVNVHJcopy2_183 (JAIMEPRESSLY_fla.HCVNVHJcopy2_183) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class HCVNVHJcopy2_183 extends MovieClip { public function HCVNVHJcopy2_183(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 82
//HCVNVHJcopy3_184 (JAIMEPRESSLY_fla.HCVNVHJcopy3_184) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class HCVNVHJcopy3_184 extends MovieClip { public function HCVNVHJcopy3_184(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 83
//HCVNVHJcopy4_185 (JAIMEPRESSLY_fla.HCVNVHJcopy4_185) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class HCVNVHJcopy4_185 extends MovieClip { public function HCVNVHJcopy4_185(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 84
//HCVNVHJcopy5_186 (JAIMEPRESSLY_fla.HCVNVHJcopy5_186) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class HCVNVHJcopy5_186 extends MovieClip { public function HCVNVHJcopy5_186(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 85
//HCVNVHJcopy6_187 (JAIMEPRESSLY_fla.HCVNVHJcopy6_187) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class HCVNVHJcopy6_187 extends MovieClip { public function HCVNVHJcopy6_187(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 86
//HCVNVHJcopy8_190 (JAIMEPRESSLY_fla.HCVNVHJcopy8_190) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class HCVNVHJcopy8_190 extends MovieClip { public function HCVNVHJcopy8_190(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 87
//hdhdfhf_emaikl_389 (JAIMEPRESSLY_fla.hdhdfhf_emaikl_389) package JAIMEPRESSLY_fla { import flash.events.*; import flash.display.*; import flash.text.*; public dynamic class hdhdfhf_emaikl_389 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; public function hdhdfhf_emaikl_389(){ addFrameScript(0, frame1); } public function hideAdd(_arg1:MouseEvent):void{ this.visible = false; } function frame1(){ this.visible = false; close.addEventListener(MouseEvent.CLICK, hideAdd); } } }//package JAIMEPRESSLY_fla
Section 88
//jgjyiy9_emaikl_388 (JAIMEPRESSLY_fla.jgjyiy9_emaikl_388) package JAIMEPRESSLY_fla { import flash.display.*; import flash.text.*; public dynamic class jgjyiy9_emaikl_388 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 JAIMEPRESSLY_fla
Section 89
//khjll_40 (JAIMEPRESSLY_fla.khjll_40) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class khjll_40 extends MovieClip { public function khjll_40(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 90
//MainTimeline (JAIMEPRESSLY_fla.MainTimeline) package JAIMEPRESSLY_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import flash.filters.*; import gs.easing.*; import flash.media.*; import flash.text.*; import flash.ui.*; import flash.utils.*; 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 s0:Number; public var shade:MovieClip; public var t2:TextField; public var t1:TextField; public var bg:MovieClip; public var d0:Number; public var star:MovieClip; public var C0:Number; public var topsf:Number; public var st:Number; public var preloader:MovieClip; public var palette:MovieClip; public var dolls:MovieClip; public var playmore:MovieClip; public var nextbtn:MovieClip; public var contestMenu:ContextMenu; public var to:Number; public var percentage:Number; public var popup:MovieClip; public var logo_mc:SimpleButton; public var bounds:Rectangle; public var myMask:MovieClip; public var eo:Number; public var girldollArray:Array; public var BitsLoaded:TextField; public var queCount:uint; public var h0:Number; public var mailArray:Array; public var ent:MovieClip; public var bullet:backscore; public var sndon:SimpleButton; public var dressf:Number; public var scrollMC:MovieClip; public var oldY:Number; public var doll:MovieClip; public var sndoff:SimpleButton; public var buttonHolder:MovieClip; public var bots:Number; public var email:MovieClip; public var nex:MovieClip; public var tempCount:Number; public var bulletChannel:SoundChannel; public var contextmenuItem:ContextMenuItem; public var CONTENT_HEIGHT:Number; public var MASK_HEIGHT:Number; public var stand:MovieClip; public var q0:Number; public var scrolling:Boolean; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function result(_arg1:Event):void{ if (t1.text == ""){ nextbtn.visible = false; } else { nextbtn.visible = true; }; } public function chainpal(_arg1:MouseEvent):void{ palette.y = -1310.6; TweenLite.to(palette, 1, {y:69.7}); scrollMC.y = 45.2; scrollMC.mouseEnabled = false; scrollMC.mouseChildren = false; palette.topspalette.visible = false; palette.bottomspalette.visible = false; palette.dresspalette.visible = false; palette.chainpalette.visible = true; palette.shoespalette.visible = false; palette.earringpalette.visible = false; palette.hairpalette.visible = false; } public function sets(_arg1:Event){ if (dressf == 1){ stand.nextbtn.visible = true; } else { if ((((topsf == 1)) && ((bots == 1)))){ stand.nextbtn.visible = true; } else { stand.nextbtn.visible = false; }; }; } function frame3(){ MochiBot.track(this, "3d62ef9d"); stop(); CONTENT_HEIGHT = 900; MASK_HEIGHT = 613; palette.y = -1310.6; scrollMC.y = 45.2; stand.dress.gotoAndStop(Globe.temp); stand.top.gotoAndStop(Globe.temp); stand.chain.gotoAndStop(Globe.temp); stand.bottom.gotoAndStop(Globe.temp); stand.earring.gotoAndStop(Globe.temp); stand.hair.gotoAndStop(Globe.temp); stand.shoe.gotoAndStop(Globe.temp); stand.resetbtn.gotoAndStop(Globe.temp); stand.nextbtn.gotoAndStop(Globe.temp); stand.nextbtn.visible = false; scrollMC.mouseEnabled = false; scrollMC.mouseChildren = false; star.mouseEnabled = false; palette.topspalette.visible = false; palette.bottomspalette.visible = false; palette.dresspalette.visible = true; palette.chainpalette.visible = false; palette.shoespalette.visible = false; palette.earringpalette.visible = false; palette.hairpalette.visible = false; stand.nextbtn.visible = false; Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.hair = 0; Globe.shoes = 0; Globe.earring = 0; dressf = 0; topsf = 0; bots = 0; doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.hair.gotoAndStop(1); doll.bottoms.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); st = 0; while (st <= (stand.numChildren - 1)) { stand.getChildAt(st).addEventListener(MouseEvent.ROLL_OVER, standroll); stand.getChildAt(st).addEventListener(MouseEvent.ROLL_OUT, standout); st++; }; stand.hair.addEventListener(MouseEvent.CLICK, hairpal); stand.shoe.addEventListener(MouseEvent.CLICK, shoepal); stand.earring.addEventListener(MouseEvent.CLICK, earpal); stand.chain.addEventListener(MouseEvent.CLICK, chainpal); stand.top.addEventListener(MouseEvent.CLICK, toppal); stand.bottom.addEventListener(MouseEvent.CLICK, botpal); stand.dress.addEventListener(MouseEvent.CLICK, dresspal); to = 0; while (to <= (palette.topspalette.numChildren - 1)) { palette.topspalette.getChildAt(to).addEventListener(MouseEvent.ROLL_OVER, enabl); palette.topspalette.getChildAt(to).addEventListener(MouseEvent.ROLL_OUT, enablout); palette.topspalette.getChildAt(to).addEventListener(MouseEvent.CLICK, topsclick); to++; }; q0 = 0; while (q0 <= (palette.dresspalette.numChildren - 1)) { palette.dresspalette.getChildAt(q0).addEventListener(MouseEvent.ROLL_OVER, enabl); palette.dresspalette.getChildAt(q0).addEventListener(MouseEvent.ROLL_OUT, enablout); palette.dresspalette.getChildAt(q0).addEventListener(MouseEvent.CLICK, dressclick); q0++; }; C0 = 0; while (C0 <= (palette.chainpalette.numChildren - 1)) { palette.chainpalette.getChildAt(C0).addEventListener(MouseEvent.ROLL_OVER, enabl); palette.chainpalette.getChildAt(C0).addEventListener(MouseEvent.ROLL_OUT, enablout); palette.chainpalette.getChildAt(C0).addEventListener(MouseEvent.CLICK, chainclick); C0++; }; h0 = 0; while (h0 <= (palette.hairpalette.numChildren - 1)) { palette.hairpalette.getChildAt(h0).addEventListener(MouseEvent.ROLL_OVER, enabl); palette.earringpalette.getChildAt(h0).addEventListener(MouseEvent.ROLL_OUT, enablout); palette.hairpalette.getChildAt(h0).addEventListener(MouseEvent.CLICK, hairclick); h0++; }; eo = 0; while (eo <= (palette.earringpalette.numChildren - 1)) { palette.earringpalette.getChildAt(eo).addEventListener(MouseEvent.ROLL_OVER, enabl); palette.earringpalette.getChildAt(eo).addEventListener(MouseEvent.ROLL_OUT, enablout); palette.earringpalette.getChildAt(eo).addEventListener(MouseEvent.CLICK, earsclick); eo++; }; d0 = 0; while (d0 <= (palette.bottomspalette.numChildren - 1)) { palette.bottomspalette.getChildAt(d0).addEventListener(MouseEvent.ROLL_OVER, enabl); palette.bottomspalette.getChildAt(d0).addEventListener(MouseEvent.ROLL_OUT, enablout); palette.bottomspalette.getChildAt(d0).addEventListener(MouseEvent.CLICK, bottomsclick); d0++; }; s0 = 0; while (s0 <= (palette.shoespalette.numChildren - 1)) { palette.shoespalette.getChildAt(s0).addEventListener(MouseEvent.ROLL_OVER, enabl); palette.shoespalette.getChildAt(s0).addEventListener(MouseEvent.ROLL_OUT, enablout); palette.shoespalette.getChildAt(s0).addEventListener(MouseEvent.CLICK, shoesclick); s0++; }; stand.resetbtn.addEventListener(MouseEvent.CLICK, res); stand.resetbtn.gotoAndStop(Globe.temp); stand.nextbtn.gotoAndStop(Globe.temp); stand.nextbtn.addEventListener(MouseEvent.CLICK, nx); stand.nextbtn.buttonMode = true; stand.resetbtn.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); }; oldY = palette.y; scrollMC.buttonMode = true; palette.mask = myMask; bounds = new Rectangle(scrollMC.x, scrollMC.y, 0, 500); scrolling = false; scrollMC.addEventListener(MouseEvent.MOUSE_DOWN, startScroll); stage.addEventListener(MouseEvent.MOUSE_UP, stopScroll); addEventListener(Event.ENTER_FRAME, enterHandler); } 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 frame4(){ stop(); t1.text = ""; t1.restrict = "A-Z0-9"; 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(); playmore.visible = false; 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); }; }; 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 { playmore.visible = true; logo_mc.addEventListener(MouseEvent.CLICK, link5); }; playmore.addEventListener(MouseEvent.CLICK, mor); 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); 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 frame2(){ stop(); Globe.playback = true; if (bulletChannel){ bulletChannel.stop(); }; bg.pl.buttonMode = true; bg.pl.addEventListener(MouseEvent.CLICK, plays); Globe.temp = 1; tempCount = 0; while (tempCount <= (buttonHolder.numChildren - 1)) { buttonHolder.getChildAt(tempCount).addEventListener(MouseEvent.CLICK, starter); tempCount++; }; bg.pl.buttonMode = true; bg.pl.addEventListener(MouseEvent.ROLL_OVER, rollover); bg.pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } public function topsclick(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.tops.gotoAndStop((_local3 + 1)); Globe.tops = doll.tops.currentFrame; doll.dress.gotoAndStop(1); Globe.dress = 0; dressf = 0; topsf = 1; } 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.earring.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.hair.gotoAndStop(1); dressf = 0; topsf = 0; bots = 0; Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.hair = 0; Globe.shoes = 0; Globe.earring = 0; } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.9; _arg1.currentTarget.scaleY = 0.9; } public function starter(_arg1:MouseEvent):void{ var _local2:*; _local2 = _arg1.target; bg.pl.gotoAndStop(_local2.name.substr(1)); Globe.temp = _local2.name.substr(1); } public function showMailBox(_arg1:MouseEvent):void{ email.mouseEnabled = 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 bottomsclick(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.bottoms.gotoAndStop((_local3 + 1)); Globe.bottoms = doll.bottoms.currentFrame; doll.dress.gotoAndStop(1); Globe.dress = 0; dressf = 0; bots = 1; } public function hairclick(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.hair.gotoAndStop(_local3); Globe.hair = doll.hair.currentFrame; } public function hideMailBox(_arg1:MouseEvent):void{ var event = _arg1; email.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 enablout(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } 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){ mailArray[queCount].visible = true; queCount++; trace(queCount); } else { if (queCount == 4){ queCount = 0; mailArray[queCount].visible = true; queCount++; }; }; } public function dresspal(_arg1:MouseEvent):void{ scrollMC.mouseEnabled = true; scrollMC.mouseChildren = true; palette.y = -1310.6; TweenLite.to(palette, 1, {y:69.7}); scrollMC.y = 45.2; CONTENT_HEIGHT = 1200; palette.topspalette.visible = false; palette.bottomspalette.visible = false; palette.dresspalette.visible = true; palette.chainpalette.visible = false; palette.shoespalette.visible = false; palette.earringpalette.visible = false; palette.hairpalette.visible = false; } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function enabl(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function nextbtns(_arg1:MouseEvent):void{ Globe.tex = t1.text; trace(Globe.tex); nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function toppal(_arg1:MouseEvent):void{ scrollMC.mouseEnabled = true; scrollMC.mouseChildren = true; palette.y = -1310.6; TweenLite.to(palette, 1, {y:69.7}); scrollMC.y = 45.2; CONTENT_HEIGHT = 1100; palette.topspalette.visible = true; palette.bottomspalette.visible = false; palette.dresspalette.visible = false; palette.chainpalette.visible = false; palette.shoespalette.visible = false; palette.earringpalette.visible = false; palette.hairpalette.visible = false; } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } 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 = "Jaime Pressly"; 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; variables.path = "http://www.123peppy.com/play/jaime-pressly-dress-game"; 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 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 standroll(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; _arg1.currentTarget.scaleX = 0.9; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function stopScroll(_arg1:Event):void{ scrolling = false; scrollMC.stopDrag(); } public function chainclick(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); trace(_local3); doll.chain.gotoAndStop((_local3 + 1)); Globe.chain = doll.chain.currentFrame; } public function link1(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function hairpal(_arg1:MouseEvent):void{ scrollMC.mouseEnabled = false; scrollMC.mouseChildren = false; palette.y = -1310.6; TweenLite.to(palette, 1, {y:69.7}); scrollMC.y = 45.2; palette.topspalette.visible = false; palette.bottomspalette.visible = false; palette.dresspalette.visible = false; palette.chainpalette.visible = false; palette.shoespalette.visible = false; palette.earringpalette.visible = false; palette.hairpalette.visible = true; } public function botpal(_arg1:MouseEvent):void{ scrollMC.mouseEnabled = true; scrollMC.mouseChildren = true; palette.y = -1310.6; TweenLite.to(palette, 1, {y:69.7}); scrollMC.y = 45.2; CONTENT_HEIGHT = 1100; palette.topspalette.visible = false; palette.bottomspalette.visible = true; palette.dresspalette.visible = false; palette.chainpalette.visible = false; palette.shoespalette.visible = false; palette.earringpalette.visible = false; palette.hairpalette.visible = false; } public function enterHandler(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; if (scrolling == true){ _local2 = Math.round((scrollMC.y - bounds.y)); _local3 = (_local2 / MASK_HEIGHT); oldY = palette.y; _local4 = (-(((CONTENT_HEIGHT - MASK_HEIGHT) * _local3)) + myMask.y); if (Math.abs((oldY - _local4)) > 5){ TweenMax.to(palette, 0.3, {y:(_local4 + 75), blurFilter:{blurX:0, blurY:0}}); }; }; } 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 shoesclick(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.shoes.gotoAndStop((_local3 + 1)); Globe.shoes = doll.shoes.currentFrame; } public function earpal(_arg1:MouseEvent):void{ palette.y = -1310.6; TweenLite.to(palette, 1, {y:67.7}); scrollMC.y = 45.2; scrollMC.mouseEnabled = false; scrollMC.mouseChildren = false; palette.topspalette.visible = false; palette.bottomspalette.visible = false; palette.dresspalette.visible = false; palette.chainpalette.visible = false; palette.shoespalette.visible = false; palette.earringpalette.visible = true; palette.hairpalette.visible = false; } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function dressclick(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.dress.gotoAndStop((_local3 + 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; } public function nx(_arg1:MouseEvent):void{ stage.removeEventListener(Event.ENTER_FRAME, sets); stage.removeEventListener(MouseEvent.MOUSE_UP, stopScroll); 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.earring = doll.earring.currentFrame; Globe.hair = doll.hair.currentFrame; nextFrame(); } public function plays(_arg1:MouseEvent):void{ nextFrame(); } public function startScroll(_arg1:Event):void{ scrolling = true; scrollMC.startDrag(false, bounds); } public function standout(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; _arg1.currentTarget.scaleX = 0.8; } public function earsclick(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.earring.gotoAndStop((_local3 + 1)); Globe.earring = doll.earring.currentFrame; } public function shoepal(_arg1:MouseEvent):void{ scrollMC.mouseEnabled = false; scrollMC.mouseChildren = false; palette.y = -1310.6; TweenLite.to(palette, 1, {y:69.7}); scrollMC.y = 45.2; palette.topspalette.visible = false; palette.bottomspalette.visible = false; palette.dresspalette.visible = false; palette.chainpalette.visible = false; palette.shoespalette.visible = true; palette.earringpalette.visible = false; palette.hairpalette.visible = false; } public function link5(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } } }//package JAIMEPRESSLY_fla
Section 91
//OHLJK_383 (JAIMEPRESSLY_fla.OHLJK_383) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class OHLJK_383 extends MovieClip { public function OHLJK_383(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 92
//OHLJK_386 (JAIMEPRESSLY_fla.OHLJK_386) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class OHLJK_386 extends MovieClip { public function OHLJK_386(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 93
//OHLJK_387 (JAIMEPRESSLY_fla.OHLJK_387) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class OHLJK_387 extends MovieClip { public function OHLJK_387(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 94
//palette_254 (JAIMEPRESSLY_fla.palette_254) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class palette_254 extends MovieClip { public var earringpalette:MovieClip; public var dresspalette:MovieClip; public var hairpalette:MovieClip; public var shoespalette:MovieClip; public var chainpalette:MovieClip; public var bottomspalette:MovieClip; public var topspalette:MovieClip; } }//package JAIMEPRESSLY_fla
Section 95
//peppydfgfsds_loader_19 (JAIMEPRESSLY_fla.peppydfgfsds_loader_19) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class peppydfgfsds_loader_19 extends MovieClip { public function peppydfgfsds_loader_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 96
//rt2_286 (JAIMEPRESSLY_fla.rt2_286) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class rt2_286 extends MovieClip { public var t2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 97
//rt5_292 (JAIMEPRESSLY_fla.rt5_292) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class rt5_292 extends MovieClip { public var t5:MovieClip; } }//package JAIMEPRESSLY_fla
Section 98
//rt6_294 (JAIMEPRESSLY_fla.rt6_294) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class rt6_294 extends MovieClip { public var t6:MovieClip; } }//package JAIMEPRESSLY_fla
Section 99
//rt7_296 (JAIMEPRESSLY_fla.rt7_296) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class rt7_296 extends MovieClip { public var t7:MovieClip; } }//package JAIMEPRESSLY_fla
Section 100
//rt8_298 (JAIMEPRESSLY_fla.rt8_298) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class rt8_298 extends MovieClip { public var t8:MovieClip; } }//package JAIMEPRESSLY_fla
Section 101
//sd1_281 (JAIMEPRESSLY_fla.sd1_281) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd1_281 extends MovieClip { public var d1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 102
//sd10_263 (JAIMEPRESSLY_fla.sd10_263) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd10_263 extends MovieClip { public var d10:MovieClip; } }//package JAIMEPRESSLY_fla
Section 103
//sd11_262 (JAIMEPRESSLY_fla.sd11_262) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd11_262 extends MovieClip { public var d11:MovieClip; } }//package JAIMEPRESSLY_fla
Section 104
//sd2_279 (JAIMEPRESSLY_fla.sd2_279) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd2_279 extends MovieClip { public var d2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 105
//sd3_277 (JAIMEPRESSLY_fla.sd3_277) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd3_277 extends MovieClip { public var d3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 106
//sd4_275 (JAIMEPRESSLY_fla.sd4_275) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd4_275 extends MovieClip { public var d4:MovieClip; } }//package JAIMEPRESSLY_fla
Section 107
//sd5_273 (JAIMEPRESSLY_fla.sd5_273) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd5_273 extends MovieClip { public var d5:MovieClip; } }//package JAIMEPRESSLY_fla
Section 108
//sd6_271 (JAIMEPRESSLY_fla.sd6_271) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd6_271 extends MovieClip { public var d6:MovieClip; } }//package JAIMEPRESSLY_fla
Section 109
//sd7_269 (JAIMEPRESSLY_fla.sd7_269) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd7_269 extends MovieClip { public var d7:MovieClip; } }//package JAIMEPRESSLY_fla
Section 110
//sd8_267 (JAIMEPRESSLY_fla.sd8_267) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd8_267 extends MovieClip { public var d8:MovieClip; } }//package JAIMEPRESSLY_fla
Section 111
//sd9_265 (JAIMEPRESSLY_fla.sd9_265) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sd9_265 extends MovieClip { public var d9:MovieClip; } }//package JAIMEPRESSLY_fla
Section 112
//sh1_352 (JAIMEPRESSLY_fla.sh1_352) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sh1_352 extends MovieClip { public var s1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 113
//sh2_354 (JAIMEPRESSLY_fla.sh2_354) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sh2_354 extends MovieClip { public var s2:MovieClip; } }//package JAIMEPRESSLY_fla
Section 114
//sh3_356 (JAIMEPRESSLY_fla.sh3_356) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sh3_356 extends MovieClip { public var s3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 115
//sh4_358 (JAIMEPRESSLY_fla.sh4_358) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sh4_358 extends MovieClip { public var s4:MovieClip; } }//package JAIMEPRESSLY_fla
Section 116
//sh5_360 (JAIMEPRESSLY_fla.sh5_360) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sh5_360 extends MovieClip { public var s5:MovieClip; } }//package JAIMEPRESSLY_fla
Section 117
//sheos_195 (JAIMEPRESSLY_fla.sheos_195) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class sheos_195 extends MovieClip { public function sheos_195(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 118
//shoespalette_351 (JAIMEPRESSLY_fla.shoespalette_351) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class shoespalette_351 extends MovieClip { public var s1:MovieClip; public var s5:MovieClip; public var s2:MovieClip; public var s4:MovieClip; public var s3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 119
//stand_175 (JAIMEPRESSLY_fla.stand_175) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class stand_175 extends MovieClip { public var shoe:MovieClip; public var bottom:MovieClip; public var dress:MovieClip; public var top:MovieClip; public var nextbtn:MovieClip; public var earring:MovieClip; public var resetbtn:MovieClip; public var chain:MovieClip; public var hair:MovieClip; } }//package JAIMEPRESSLY_fla
Section 120
//tops_232 (JAIMEPRESSLY_fla.tops_232) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class tops_232 extends MovieClip { public function tops_232(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 121
//topscopy_111 (JAIMEPRESSLY_fla.topscopy_111) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class topscopy_111 extends MovieClip { public function topscopy_111(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package JAIMEPRESSLY_fla
Section 122
//topspalete_283 (JAIMEPRESSLY_fla.topspalete_283) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class topspalete_283 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; public var t12:MovieClip; public var t10:MovieClip; public var t11:MovieClip; } }//package JAIMEPRESSLY_fla
Section 123
//tr1_284 (JAIMEPRESSLY_fla.tr1_284) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class tr1_284 extends MovieClip { public var t1:MovieClip; } }//package JAIMEPRESSLY_fla
Section 124
//tr3_288 (JAIMEPRESSLY_fla.tr3_288) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class tr3_288 extends MovieClip { public var t3:MovieClip; } }//package JAIMEPRESSLY_fla
Section 125
//tr4_290 (JAIMEPRESSLY_fla.tr4_290) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class tr4_290 extends MovieClip { public var t4:MovieClip; } }//package JAIMEPRESSLY_fla
Section 126
//tr9_299 (JAIMEPRESSLY_fla.tr9_299) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class tr9_299 extends MovieClip { public var t9:MovieClip; } }//package JAIMEPRESSLY_fla
Section 127
//vc5_337 (JAIMEPRESSLY_fla.vc5_337) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class vc5_337 extends MovieClip { public var c5:MovieClip; } }//package JAIMEPRESSLY_fla
Section 128
//vf13_256 (JAIMEPRESSLY_fla.vf13_256) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class vf13_256 extends MovieClip { public var d13:MovieClip; } }//package JAIMEPRESSLY_fla
Section 129
//vff12_261 (JAIMEPRESSLY_fla.vff12_261) package JAIMEPRESSLY_fla { import flash.display.*; public dynamic class vff12_261 extends MovieClip { public var d12:MovieClip; } }//package JAIMEPRESSLY_fla
Section 130
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 131
//Globe (Globe) package { public class Globe { public static var earstand:Number = 0; public static var chain:Number = 0; public static var life:Number = 0; public static var earring:Number = 0; public static var bottoms:Number = 0; public static var bottomstand:Number = 0; public static var bagstand:Number = 0; public static var shoestand:Number = 0; public static var temp:Number; public static var shoes:Number = 0; public static var playback:Boolean = false; public static var topstand:Number = 0; public static var tex:String = ""; public static var i:Number; public static var bags:Number = 0; public static var hair:Number = 0; public static var hairstand:Number = 0; public static var chainstand:Number = 0; public static var dress:Number = 0; public static var tops:Number = 0; public static var dressstand:Number = 0; } }//package
Section 132
//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

Library Items

Symbol 1 Sound {backscore}
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:12
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:12
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:12
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:12
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:3 5 7 9 11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:26
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:26
Symbol 17 GraphicUsed by:26
Symbol 18 GraphicUsed by:26
Symbol 19 GraphicUsed by:26
Symbol 20 GraphicUsed by:26
Symbol 21 GraphicUsed by:26
Symbol 22 GraphicUsed by:26
Symbol 23 GraphicUsed by:26
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip {JAIMEPRESSLY_fla.cbvdsfdsf_loader_7}Uses:14 16 17 18 19 20 21 22 23 24 25Used by:Timeline
Symbol 27 FontUsed by:28
Symbol 28 EditableTextUses:27Used by:Timeline
Symbol 29 FontUsed by:30
Symbol 30 TextUses:29Used by:Timeline
Symbol 31 GraphicUsed by:Timeline
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:Timeline
Symbol 34 FontUsed by:35 456 528 537 821 822 823 824 825 826 827 828 829 830 831
Symbol 35 TextUses:34Used by:Timeline
Symbol 36 GraphicUsed by:60
Symbol 37 GraphicUsed by:39
Symbol 38 MovieClipUsed by:39
Symbol 39 MovieClipUses:37 38Used by:60
Symbol 40 GraphicUsed by:50
Symbol 41 ShapeTweeningUsed by:49
Symbol 42 GraphicUsed by:49
Symbol 43 ShapeTweeningUsed by:49
Symbol 44 GraphicUsed by:49
Symbol 45 ShapeTweeningUsed by:49
Symbol 46 GraphicUsed by:49
Symbol 47 ShapeTweeningUsed by:49
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:41 42 43 44 45 46 47 48Used by:50
Symbol 50 MovieClipUses:40 49Used by:58
Symbol 51 GraphicUsed by:56
Symbol 52 GraphicUsed by:56
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:51 52 54 55Used by:58
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:50 56 57Used by:60
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:36 39 58 59Used by:Timeline
Symbol 61 FontUsed by:62 63 64 65 66 67 69 70 71 72 73 74 75 76 801
Symbol 62 TextUses:61Used by:68
Symbol 63 TextUses:61Used by:68
Symbol 64 TextUses:61Used by:68
Symbol 65 TextUses:61Used by:68
Symbol 66 TextUses:61Used by:68
Symbol 67 TextUses:61Used by:68
Symbol 68 MovieClip {JAIMEPRESSLY_fla.peppydfgfsds_loader_19}Uses:62 63 64 65 66 67Used by:Timeline
Symbol 69 TextUses:61Used by:77
Symbol 70 TextUses:61Used by:77
Symbol 71 TextUses:61Used by:77
Symbol 72 TextUses:61Used by:77
Symbol 73 TextUses:61Used by:77
Symbol 74 TextUses:61Used by:77
Symbol 75 TextUses:61Used by:77
Symbol 76 TextUses:61Used by:77
Symbol 77 MovieClipUses:69 70 71 72 73 74 75 76Used by:Timeline
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:Timeline
Symbol 80 GraphicUsed by:81 408
Symbol 81 MovieClipUses:80Used by:136 814
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:136 814
Symbol 84 GraphicUsed by:85 142
Symbol 85 MovieClipUses:84Used by:88 105
Symbol 86 GraphicUsed by:87 409
Symbol 87 MovieClipUses:86Used by:88
Symbol 88 MovieClipUses:85 87Used by:136 814 899
Symbol 89 GraphicUsed by:90 139
Symbol 90 MovieClipUses:89Used by:136 814
Symbol 91 GraphicUsed by:92 140
Symbol 92 MovieClipUses:91Used by:136 814
Symbol 93 GraphicUsed by:94 141
Symbol 94 MovieClipUses:93Used by:136 814
Symbol 95 GraphicUsed by:105 149 153
Symbol 96 GraphicUsed by:105 149 153
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:99
Symbol 99 MovieClipUses:98Used by:105
Symbol 100 GraphicUsed by:101 146
Symbol 101 MovieClipUses:100Used by:105
Symbol 102 GraphicUsed by:103 104 147 148
Symbol 103 MovieClipUses:102Used by:105
Symbol 104 MovieClipUses:102Used by:105
Symbol 105 MovieClipUses:95 85 96 99 101 103 104Used by:136 814
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:136 814
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:136 814
Symbol 110 GraphicUsed by:111 553
Symbol 111 MovieClipUses:110Used by:136
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:116
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:116
Symbol 116 MovieClipUses:113 115Used by:123
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:123
Symbol 119 BitmapUsed by:120
Symbol 120 GraphicUses:119Used by:123
Symbol 121 BitmapUsed by:122
Symbol 122 GraphicUses:121Used by:123
Symbol 123 MovieClipUses:116 118 120 122Used by:135
Symbol 124 FontUsed by:125 438 450 462 474 485 497 509 891 905 907 910 912 914 915 916 917
Symbol 125 TextUses:124Used by:135
Symbol 126 GraphicUsed by:135
Symbol 127 GraphicUsed by:135
Symbol 128 GraphicUsed by:135
Symbol 129 GraphicUsed by:135
Symbol 130 GraphicUsed by:135
Symbol 131 GraphicUsed by:135
Symbol 132 GraphicUsed by:135
Symbol 133 GraphicUsed by:135
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClip {JAIMEPRESSLY_fla.khjll_40}Uses:123 125 126 127 128 129 130 131 132 133 134Used by:136
Symbol 136 MovieClip {JAIMEPRESSLY_fla.bggg_22}Uses:81 83 88 90 92 94 105 107 109 111 135Used by:Timeline
Symbol 137 GraphicUsed by:138
Symbol 138 MovieClipUses:137Used by:Timeline
Symbol 139 MovieClipUses:89Used by:Timeline
Symbol 140 MovieClipUses:91Used by:Timeline
Symbol 141 MovieClipUses:93Used by:Timeline
Symbol 142 MovieClipUses:84Used by:149 153 410
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:143Used by:145
Symbol 145 MovieClipUses:144Used by:149
Symbol 146 MovieClipUses:100Used by:149 153
Symbol 147 MovieClipUses:102Used by:149 153
Symbol 148 MovieClipUses:102Used by:149
Symbol 149 MovieClipUses:95 142 96 145 146 147 148Used by:Timeline
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:152
Symbol 152 MovieClipUses:151Used by:153
Symbol 153 MovieClipUses:95 142 152 96 146 147Used by:Timeline
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClipUses:154Used by:Timeline
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:159
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:157 158Used by:Timeline
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClipUses:160Used by:Timeline
Symbol 162 GraphicUsed by:169
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:163Used by:169
Symbol 165 GraphicUsed by:169
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:169
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:162 164 165 167 168Used by:334 676
Symbol 170 GraphicUsed by:180
Symbol 171 GraphicUsed by:172
Symbol 172 MovieClipUses:171Used by:180
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:180
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175Used by:180
Symbol 177 GraphicUsed by:180
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:180
Symbol 180 MovieClipUses:170 172 174 176 177 179Used by:334 676
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:183 562 783
Symbol 183 MovieClipUses:182Used by:334
Symbol 184 BitmapUsed by:186
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:184 185Used by:193
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:193
Symbol 189 GraphicUsed by:193
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:193
Symbol 192 GraphicUsed by:193 202 206 211 237 252 255 264 269 278 281 288 293 298 332 576 585 591 596 601 608 620 626 634 660 661 670 671 672 674
Symbol 193 MovieClipUses:186 188 189 191 192Used by:194 641 706
Symbol 194 MovieClipUses:193Used by:334
Symbol 195 BitmapUsed by:197
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:195 196Used by:202
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:202
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:202
Symbol 202 MovieClipUses:197 199 201 192Used by:270 642 729
Symbol 203 GraphicUsed by:206
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:206
Symbol 206 MovieClipUses:203 205 192Used by:270 642 731
Symbol 207 BitmapUsed by:208
Symbol 208 GraphicUses:207Used by:211
Symbol 209 GraphicUsed by:210
Symbol 210 MovieClipUses:209Used by:211
Symbol 211 MovieClipUses:208 210 192Used by:270 642 733
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:225
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:225
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:216Used by:225
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:218Used by:225
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:220Used by:225
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:222Used by:225
Symbol 224 GraphicUsed by:225
Symbol 225 MovieClipUses:213 215 217 219 221 223 224Used by:270 642 735
Symbol 226 GraphicUsed by:237
Symbol 227 GraphicUsed by:228
Symbol 228 MovieClipUses:227Used by:237
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClipUses:229Used by:237
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:231Used by:237
Symbol 233 GraphicUsed by:234
Symbol 234 MovieClipUses:233Used by:237
Symbol 235 GraphicUsed by:236
Symbol 236 MovieClipUses:235Used by:237
Symbol 237 MovieClipUses:226 228 230 232 234 236 192Used by:270 642 737
Symbol 238 BitmapUsed by:239 282
Symbol 239 GraphicUses:238Used by:243
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:240Used by:243
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:239 241 242Used by:270 642 739
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:270 642 741
Symbol 246 BitmapUsed by:247 303
Symbol 247 GraphicUses:246Used by:252
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:248Used by:252
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:252
Symbol 252 MovieClipUses:247 249 251 192Used by:270 642 743
Symbol 253 GraphicUsed by:254
Symbol 254 MovieClipUses:253Used by:255
Symbol 255 MovieClipUses:254 192Used by:270 642 744
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:256Used by:270 642 745
Symbol 258 BitmapUsed by:259
Symbol 259 GraphicUses:258Used by:264
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:260Used by:264
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClipUses:262Used by:264 269
Symbol 264 MovieClipUses:259 261 263 192Used by:270 642 746
Symbol 265 BitmapUsed by:266
Symbol 266 GraphicUses:265Used by:269
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:267Used by:269
Symbol 269 MovieClipUses:266 268 263 192Used by:270 642 747
Symbol 270 MovieClip {JAIMEPRESSLY_fla.botomscopy_77}Uses:202 206 211 225 237 243 245 252 255 257 264 269Used by:334
Symbol 271 BitmapUsed by:272
Symbol 272 GraphicUses:271Used by:273
Symbol 273 MovieClipUses:272Used by:317 643 709
Symbol 274 BitmapUsed by:275
Symbol 275 GraphicUses:274Used by:278
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:276Used by:278 281
Symbol 278 MovieClipUses:275 277 192Used by:317 643 711
Symbol 279 BitmapUsed by:280
Symbol 280 GraphicUses:279Used by:281
Symbol 281 MovieClipUses:280 277 192Used by:317 643 713
Symbol 282 GraphicUses:238Used by:288
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283Used by:288
Symbol 285 GraphicUsed by:288
Symbol 286 GraphicUsed by:287
Symbol 287 MovieClipUses:286Used by:288
Symbol 288 MovieClipUses:282 284 285 287 192Used by:317 643 715
Symbol 289 BitmapUsed by:290
Symbol 290 GraphicUses:289Used by:293
Symbol 291 GraphicUsed by:292
Symbol 292 MovieClipUses:291Used by:293
Symbol 293 MovieClipUses:290 292 192Used by:317 643 717
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:298
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:298
Symbol 298 MovieClipUses:295 297 192Used by:317 643 719
Symbol 299 BitmapUsed by:300
Symbol 300 GraphicUses:299Used by:301
Symbol 301 MovieClipUses:300Used by:317 643 721
Symbol 302 BitmapUsed by:303
Symbol 303 GraphicUses:302 246Used by:304
Symbol 304 MovieClipUses:303Used by:317 643 722
Symbol 305 BitmapUsed by:307
Symbol 306 BitmapUsed by:307
Symbol 307 GraphicUses:306 305Used by:308
Symbol 308 MovieClipUses:307Used by:317 643 723
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:309Used by:317 643 724
Symbol 311 BitmapUsed by:312
Symbol 312 GraphicUses:311Used by:313
Symbol 313 MovieClipUses:312Used by:317 643 725
Symbol 314 BitmapUsed by:315 560
Symbol 315 GraphicUses:314Used by:316
Symbol 316 MovieClipUses:315Used by:317 643 726
Symbol 317 MovieClip {JAIMEPRESSLY_fla.topscopy_111}Uses:273 278 281 288 293 298 301 304 308 310 313 316Used by:334
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:323 671
Symbol 320 GraphicUsed by:321
Symbol 321 MovieClipUses:320Used by:323
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:319 321 322Used by:324 662 751
Symbol 324 MovieClipUses:323Used by:334
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:325Used by:327 669 788 794
Symbol 327 MovieClip {JAIMEPRESSLY_fla.hairscopy_133}Uses:326Used by:334
Symbol 328 GraphicUsed by:331
Symbol 329 GraphicUsed by:330
Symbol 330 MovieClipUses:329Used by:331 661
Symbol 331 MovieClipUses:328 330Used by:332 661
Symbol 332 MovieClipUses:331 192Used by:333 675 766
Symbol 333 MovieClipUses:332Used by:334
Symbol 334 MovieClipUses:169 180 183 194 270 317 324 327 333Used by:Timeline
Symbol 335 GraphicUsed by:339 344 348 350 354 356 360 362 366 368 371 373 376 378 381 383 386 388 391 395 400 402
Symbol 336 BitmapUsed by:337
Symbol 337 GraphicUses:336Used by:339 344
Symbol 338 GraphicUsed by:339 344
Symbol 339 MovieClipUses:335 337 338Used by:344
Symbol 340 FontUsed by:341 349 361 367 372 377 382 387 392
Symbol 341 TextUses:340Used by:344
Symbol 342 FontUsed by:343 355 401
Symbol 343 TextUses:342Used by:344
Symbol 344 ButtonUses:339 341 343 335 337 338Used by:403
Symbol 345 BitmapUsed by:346
Symbol 346 GraphicUses:345Used by:348 350
Symbol 347 GraphicUsed by:348 350
Symbol 348 MovieClipUses:335 346 347Used by:350
Symbol 349 TextUses:340Used by:350
Symbol 350 ButtonUses:348 349 335 346 347Used by:403
Symbol 351 BitmapUsed by:352
Symbol 352 GraphicUses:351Used by:354 356
Symbol 353 GraphicUsed by:354 356
Symbol 354 MovieClipUses:335 352 353Used by:356
Symbol 355 TextUses:342Used by:356
Symbol 356 ButtonUses:354 355 335 352 353Used by:403
Symbol 357 BitmapUsed by:358
Symbol 358 GraphicUses:357Used by:360 362
Symbol 359 GraphicUsed by:360 362
Symbol 360 MovieClipUses:335 358 359Used by:362
Symbol 361 TextUses:340Used by:362
Symbol 362 ButtonUses:360 361 335 358 359Used by:403
Symbol 363 BitmapUsed by:364
Symbol 364 GraphicUses:363Used by:366 368
Symbol 365 GraphicUsed by:366 368 371 373 376 378 381 383 386 388 391 395
Symbol 366 MovieClipUses:335 364 365Used by:368
Symbol 367 TextUses:340Used by:368
Symbol 368 ButtonUses:366 367 335 364 365Used by:403
Symbol 369 BitmapUsed by:370
Symbol 370 GraphicUses:369Used by:371 373
Symbol 371 MovieClipUses:335 370 365Used by:373
Symbol 372 TextUses:340Used by:373
Symbol 373 ButtonUses:371 372 335 370 365Used by:403
Symbol 374 BitmapUsed by:375
Symbol 375 GraphicUses:374Used by:376 378
Symbol 376 MovieClipUses:335 375 365Used by:378
Symbol 377 TextUses:340Used by:378
Symbol 378 ButtonUses:376 377 335 375 365Used by:403
Symbol 379 BitmapUsed by:380
Symbol 380 GraphicUses:379Used by:381 383
Symbol 381 MovieClipUses:335 380 365Used by:383
Symbol 382 TextUses:340Used by:383
Symbol 383 ButtonUses:381 382 335 380 365Used by:403
Symbol 384 BitmapUsed by:385
Symbol 385 GraphicUses:384Used by:386 388
Symbol 386 MovieClipUses:335 385 365Used by:388
Symbol 387 TextUses:340Used by:388
Symbol 388 ButtonUses:386 387 335 385 365Used by:403
Symbol 389 BitmapUsed by:390
Symbol 390 GraphicUses:389Used by:391 395
Symbol 391 MovieClipUses:335 390 365Used by:395
Symbol 392 TextUses:340Used by:395
Symbol 393 FontUsed by:394
Symbol 394 TextUses:393Used by:395
Symbol 395 ButtonUses:391 392 394 335 390 365Used by:403
Symbol 396 BitmapUsed by:398
Symbol 397 BitmapUsed by:398
Symbol 398 GraphicUses:396 397Used by:400 402
Symbol 399 GraphicUsed by:400 402
Symbol 400 MovieClipUses:335 398 399Used by:402
Symbol 401 TextUses:342Used by:402
Symbol 402 ButtonUses:400 401 335 398 399Used by:403
Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139}Uses:344 350 356 362 368 373 378 383 388 395 402Used by:Timeline
Symbol 404 FontUsed by:405 406
Symbol 405 TextUses:404Used by:407
Symbol 406 TextUses:404Used by:407
Symbol 407 MovieClipUses:405 406Used by:Timeline
Symbol 408 MovieClipUses:80Used by:Timeline
Symbol 409 MovieClipUses:86Used by:410
Symbol 410 MovieClipUses:142 409Used by:Timeline
Symbol 411 GraphicUsed by:424
Symbol 412 GraphicUsed by:413
Symbol 413 MovieClipUses:412Used by:424
Symbol 414 GraphicUsed by:415
Symbol 415 MovieClipUses:414Used by:424
Symbol 416 GraphicUsed by:417
Symbol 417 MovieClipUses:416Used by:424
Symbol 418 GraphicUsed by:419
Symbol 419 MovieClipUses:418Used by:422
Symbol 420 GraphicUsed by:421
Symbol 421 MovieClipUses:420Used by:422
Symbol 422 MovieClipUses:419 421Used by:424
Symbol 423 GraphicUsed by:424
Symbol 424 MovieClipUses:411 413 415 417 422 423Used by:Timeline
Symbol 425 GraphicUsed by:429
Symbol 426 GraphicUsed by:427
Symbol 427 MovieClipUses:426Used by:429
Symbol 428 GraphicUsed by:429
Symbol 429 MovieClipUses:425 427 428Used by:Timeline
Symbol 430 GraphicUsed by:431
Symbol 431 MovieClipUses:430Used by:437
Symbol 432 GraphicUsed by:433
Symbol 433 MovieClipUses:432Used by:436
Symbol 434 GraphicUsed by:435 886 890 909 913
Symbol 435 MovieClipUses:434Used by:436
Symbol 436 MovieClipUses:433 435Used by:437
Symbol 437 MovieClipUses:431 436Used by:449 461 473 484 496 508 520 521 542
Symbol 438 TextUses:124Used by:449
Symbol 439 GraphicUsed by:449
Symbol 440 GraphicUsed by:449
Symbol 441 GraphicUsed by:449 484
Symbol 442 GraphicUsed by:449
Symbol 443 GraphicUsed by:449
Symbol 444 GraphicUsed by:449
Symbol 445 GraphicUsed by:449
Symbol 446 GraphicUsed by:449
Symbol 447 GraphicUsed by:449
Symbol 448 GraphicUsed by:449
Symbol 449 MovieClip {JAIMEPRESSLY_fla.HCVNVHJ_176}Uses:437 438 439 440 441 442 443 444 445 446 447 448Used by:543
Symbol 450 TextUses:124Used by:461
Symbol 451 GraphicUsed by:461
Symbol 452 GraphicUsed by:461
Symbol 453 GraphicUsed by:461
Symbol 454 GraphicUsed by:461
Symbol 455 GraphicUsed by:461
Symbol 456 TextUses:34Used by:461
Symbol 457 GraphicUsed by:461
Symbol 458 GraphicUsed by:461
Symbol 459 GraphicUsed by:461
Symbol 460 GraphicUsed by:461
Symbol 461 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy_182}Uses:437 450 451 452 453 454 455 456 457 458 459 460Used by:543
Symbol 462 TextUses:124Used by:473
Symbol 463 GraphicUsed by:473
Symbol 464 GraphicUsed by:473
Symbol 465 GraphicUsed by:473
Symbol 466 GraphicUsed by:473
Symbol 467 GraphicUsed by:473
Symbol 468 FontUsed by:469 480 515 848 860 865 866
Symbol 469 TextUses:468Used by:473
Symbol 470 GraphicUsed by:473
Symbol 471 GraphicUsed by:473
Symbol 472 GraphicUsed by:473
Symbol 473 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy2_183}Uses:437 462 463 464 465 466 467 469 470 471 472Used by:543
Symbol 474 TextUses:124Used 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 TextUses:468Used by:484
Symbol 481 GraphicUsed by:484
Symbol 482 GraphicUsed by:484
Symbol 483 GraphicUsed by:484
Symbol 484 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy3_184}Uses:437 474 475 476 477 478 479 480 481 482 483 441Used by:543
Symbol 485 TextUses:124Used by:496
Symbol 486 GraphicUsed by:496
Symbol 487 GraphicUsed by:496
Symbol 488 GraphicUsed by:496
Symbol 489 GraphicUsed by:496
Symbol 490 GraphicUsed by:496
Symbol 491 GraphicUsed by:496
Symbol 492 GraphicUsed by:496
Symbol 493 GraphicUsed by:496
Symbol 494 GraphicUsed by:496
Symbol 495 GraphicUsed by:496
Symbol 496 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy4_185}Uses:437 485 486 487 488 489 490 491 492 493 494 495Used by:543
Symbol 497 TextUses:124Used by:508
Symbol 498 GraphicUsed by:508
Symbol 499 GraphicUsed by:508
Symbol 500 GraphicUsed by:508
Symbol 501 GraphicUsed by:508
Symbol 502 GraphicUsed by:508
Symbol 503 GraphicUsed by:508
Symbol 504 GraphicUsed by:508
Symbol 505 GraphicUsed by:508
Symbol 506 GraphicUsed by:508
Symbol 507 GraphicUsed by:508
Symbol 508 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy5_186}Uses:437 497 498 499 500 501 502 503 504 505 506 507Used by:543
Symbol 509 TextUses:124Used by:520
Symbol 510 GraphicUsed by:520
Symbol 511 GraphicUsed by:520
Symbol 512 GraphicUsed by:520
Symbol 513 GraphicUsed by:520
Symbol 514 GraphicUsed by:520
Symbol 515 TextUses:468Used by:520
Symbol 516 GraphicUsed by:520
Symbol 517 GraphicUsed by:520
Symbol 518 GraphicUsed by:520
Symbol 519 GraphicUsed by:520
Symbol 520 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy6_187}Uses:437 509 510 511 512 513 514 515 516 517 518 519Used by:543
Symbol 521 MovieClipUses:437Used by:533
Symbol 522 GraphicUsed by:533
Symbol 523 GraphicUsed by:533
Symbol 524 GraphicUsed by:533
Symbol 525 GraphicUsed by:533
Symbol 526 GraphicUsed by:533
Symbol 527 GraphicUsed by:533
Symbol 528 TextUses:34Used by:533
Symbol 529 GraphicUsed by:533
Symbol 530 GraphicUsed by:533
Symbol 531 GraphicUsed by:533
Symbol 532 GraphicUsed by:533
Symbol 533 MovieClip {JAIMEPRESSLY_fla.buttons1_188}Uses:521 522 523 524 525 526 527 528 529 530 531 532Used by:543  Timeline
Symbol 534 GraphicUsed by:542
Symbol 535 GraphicUsed by:542
Symbol 536 GraphicUsed by:542
Symbol 537 TextUses:34Used by:542
Symbol 538 GraphicUsed by:542
Symbol 539 GraphicUsed by:542
Symbol 540 GraphicUsed by:542
Symbol 541 GraphicUsed by:542
Symbol 542 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy8_190}Uses:437 534 535 536 537 538 539 540 541Used by:543
Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175}Uses:449 461 473 484 496 508 520 533 542Used by:Timeline
Symbol 544 GraphicUsed by:545
Symbol 545 MovieClipUses:544Used by:Timeline
Symbol 546 BitmapUsed by:547
Symbol 547 GraphicUses:546Used by:552
Symbol 548 BitmapUsed by:549
Symbol 549 GraphicUses:548Used by:552
Symbol 550 BitmapUsed by:551
Symbol 551 GraphicUses:550Used by:552
Symbol 552 MovieClipUses:547 549 551Used by:Timeline
Symbol 553 MovieClipUses:110Used by:Timeline
Symbol 554 GraphicUsed by:555
Symbol 555 MovieClipUses:554Used by:562 777
Symbol 556 GraphicUsed by:557
Symbol 557 MovieClipUses:556Used by:562 779
Symbol 558 GraphicUsed by:559
Symbol 559 MovieClipUses:558Used by:562 781
Symbol 560 GraphicUses:314Used by:561
Symbol 561 MovieClipUses:560Used by:562 785
Symbol 562 MovieClip {JAIMEPRESSLY_fla.sheos_195}Uses:555 557 559 182 561Used by:676
Symbol 563 BitmapUsed by:565
Symbol 564 BitmapUsed by:565
Symbol 565 GraphicUses:564 563Used by:566
Symbol 566 MovieClipUses:565Used by:641 704
Symbol 567 BitmapUsed by:569
Symbol 568 BitmapUsed by:569
Symbol 569 GraphicUses:567 568Used by:570
Symbol 570 MovieClipUses:569Used by:641 702
Symbol 571 BitmapUsed by:573
Symbol 572 BitmapUsed by:573
Symbol 573 GraphicUses:572 571Used by:576
Symbol 574 GraphicUsed by:575
Symbol 575 MovieClipUses:574Used by:576
Symbol 576 MovieClipUses:573 575 192Used by:641 700
Symbol 577 GraphicUsed by:585
Symbol 578 GraphicUsed by:579
Symbol 579 MovieClipUses:578Used by:585
Symbol 580 GraphicUsed by:585
Symbol 581 GraphicUsed by:582
Symbol 582 MovieClipUses:581Used by:585
Symbol 583 GraphicUsed by:584
Symbol 584 MovieClipUses:583Used by:585
Symbol 585 MovieClipUses:577 579 580 582 584 192Used by:641 698
Symbol 586 BitmapUsed by:588
Symbol 587 BitmapUsed by:588
Symbol 588 GraphicUses:586 587Used by:591
Symbol 589 GraphicUsed by:590
Symbol 590 MovieClipUses:589Used by:591
Symbol 591 MovieClipUses:588 590 192Used by:641 696
Symbol 592 BitmapUsed by:593
Symbol 593 GraphicUses:592Used by:596
Symbol 594 GraphicUsed by:595
Symbol 595 MovieClipUses:594Used by:596
Symbol 596 MovieClipUses:593 595 192Used by:641 694
Symbol 597 BitmapUsed by:598
Symbol 598 GraphicUses:597Used by:601
Symbol 599 GraphicUsed by:600
Symbol 600 MovieClipUses:599Used by:601
Symbol 601 MovieClipUses:598 600 192Used by:641 692
Symbol 602 BitmapUsed by:603
Symbol 603 GraphicUses:602Used by:608
Symbol 604 GraphicUsed by:605
Symbol 605 MovieClipUses:604Used by:608
Symbol 606 GraphicUsed by:607
Symbol 607 MovieClipUses:606Used by:608
Symbol 608 MovieClipUses:603 605 607 192Used by:641 690
Symbol 609 BitmapUsed by:610
Symbol 610 GraphicUses:609Used by:620
Symbol 611 GraphicUsed by:614
Symbol 612 GraphicUsed by:613
Symbol 613 MovieClipUses:612Used by:614
Symbol 614 MovieClipUses:611 613Used by:620
Symbol 615 GraphicUsed by:620
Symbol 616 GraphicUsed by:617
Symbol 617 MovieClipUses:616Used by:620
Symbol 618 GraphicUsed by:619
Symbol 619 MovieClipUses:618Used by:620
Symbol 620 MovieClipUses:610 614 615 617 619 192Used by:641 688
Symbol 621 BitmapUsed by:623
Symbol 622 BitmapUsed by:623
Symbol 623 GraphicUses:621 622Used by:626
Symbol 624 GraphicUsed by:625
Symbol 625 MovieClipUses:624Used by:626
Symbol 626 MovieClipUses:623 625 192Used by:641 686
Symbol 627 GraphicUsed by:634
Symbol 628 GraphicUsed by:629 630
Symbol 629 MovieClipUses:628Used by:634
Symbol 630 MovieClipUses:628Used by:634
Symbol 631 GraphicUsed by:634
Symbol 632 GraphicUsed by:633
Symbol 633 MovieClipUses:632Used by:634
Symbol 634 MovieClipUses:627 629 630 631 633 192Used by:641 685
Symbol 635 BitmapUsed by:636
Symbol 636 GraphicUses:635Used by:640
Symbol 637 GraphicUsed by:638
Symbol 638 MovieClipUses:637Used by:640
Symbol 639 GraphicUsed by:640
Symbol 640 MovieClipUses:636 638 639Used by:641 684
Symbol 641 MovieClip {JAIMEPRESSLY_fla.dress_200}Uses:193 566 570 576 585 591 596 601 608 620 626 634 640Used by:676
Symbol 642 MovieClip {JAIMEPRESSLY_fla.botoms_231}Uses:202 206 211 225 237 243 245 252 255 257 264 269Used by:676
Symbol 643 MovieClip {JAIMEPRESSLY_fla.tops_232}Uses:273 278 281 288 293 298 301 304 308 310 313 316Used by:676
Symbol 644 GraphicUsed by:645
Symbol 645 MovieClipUses:644Used by:649 672
Symbol 646 GraphicUsed by:647
Symbol 647 MovieClipUses:646Used by:649
Symbol 648 GraphicUsed by:649
Symbol 649 MovieClipUses:645 647 648Used by:662 754
Symbol 650 GraphicUsed by:651
Symbol 651 MovieClipUses:650Used by:653 670
Symbol 652 GraphicUsed by:653
Symbol 653 MovieClipUses:651 652Used by:662 757
Symbol 654 GraphicUsed by:659
Symbol 655 GraphicUsed by:658
Symbol 656 GraphicUsed by:657
Symbol 657 MovieClipUses:656Used by:658
Symbol 658 MovieClipUses:655 657Used by:659
Symbol 659 MovieClipUses:654 658Used by:660 673
Symbol 660 MovieClipUses:659 192Used by:662 760
Symbol 661 MovieClipUses:331 330 192Used by:662 763
Symbol 662 MovieClip {JAIMEPRESSLY_fla.chians_233}Uses:323 649 653 660 661Used by:676
Symbol 663 GraphicUsed by:664
Symbol 664 MovieClipUses:663Used by:669 790
Symbol 665 GraphicUsed by:666
Symbol 666 MovieClipUses:665Used by:669 792
Symbol 667 GraphicUsed by:668
Symbol 668 MovieClipUses:667Used by:669 795
Symbol 669 MovieClip {JAIMEPRESSLY_fla.hairs_244}Uses:326 664 666 668Used by:676
Symbol 670 MovieClipUses:651 192Used by:675 768
Symbol 671 MovieClipUses:319 192Used by:675 770
Symbol 672 MovieClipUses:645 192Used by:675 772
Symbol 673 MovieClipUses:659Used by:674
Symbol 674 MovieClipUses:673 192Used by:675 774
Symbol 675 MovieClip {JAIMEPRESSLY_fla.earring_248}Uses:332 670 671 672 674Used by:676
Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194}Uses:169 180 562 641 642 643 662 669 675Used by:Timeline
Symbol 677 GraphicUsed by:Timeline
Symbol 678 GraphicUsed by:679
Symbol 679 MovieClipUses:678Used by:682
Symbol 680 GraphicUsed by:681
Symbol 681 MovieClipUses:680Used by:682
Symbol 682 MovieClipUses:679 681Used by:683 687 689 691 693 695 697 699 701 703 705 708 710 712 714 716 718 720 728 730 732 734 736 738 740 742 749 752 755 758 761 765 767 769 771 773 776 778 780 782 784 787 789 791 793
Symbol 683 MovieClipUses:682Used by:684 685 686
Symbol 684 MovieClip {JAIMEPRESSLY_fla.vf13_256}Uses:683 640Used by:707
Symbol 685 MovieClip {JAIMEPRESSLY_fla.vff12_261}Uses:683 634Used by:707
Symbol 686 MovieClip {JAIMEPRESSLY_fla.sd11_262}Uses:683 626Used by:707
Symbol 687 MovieClipUses:682Used by:688
Symbol 688 MovieClip {JAIMEPRESSLY_fla.sd10_263}Uses:687 620Used by:707
Symbol 689 MovieClipUses:682Used by:690
Symbol 690 MovieClip {JAIMEPRESSLY_fla.sd9_265}Uses:689 608Used by:707
Symbol 691 MovieClipUses:682Used by:692
Symbol 692 MovieClip {JAIMEPRESSLY_fla.sd8_267}Uses:691 601Used by:707
Symbol 693 MovieClipUses:682Used by:694
Symbol 694 MovieClip {JAIMEPRESSLY_fla.sd7_269}Uses:693 596Used by:707
Symbol 695 MovieClipUses:682Used by:696
Symbol 696 MovieClip {JAIMEPRESSLY_fla.sd6_271}Uses:695 591Used by:707
Symbol 697 MovieClipUses:682Used by:698
Symbol 698 MovieClip {JAIMEPRESSLY_fla.sd5_273}Uses:697 585Used by:707
Symbol 699 MovieClipUses:682Used by:700
Symbol 700 MovieClip {JAIMEPRESSLY_fla.sd4_275}Uses:699 576Used by:707
Symbol 701 MovieClipUses:682Used by:702
Symbol 702 MovieClip {JAIMEPRESSLY_fla.sd3_277}Uses:701 570Used by:707
Symbol 703 MovieClipUses:682Used by:704
Symbol 704 MovieClip {JAIMEPRESSLY_fla.sd2_279}Uses:703 566Used by:707
Symbol 705 MovieClipUses:682Used by:706
Symbol 706 MovieClip {JAIMEPRESSLY_fla.sd1_281}Uses:705 193Used by:707
Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255}Uses:684 685 686 688 690 692 694 696 698 700 702 704 706Used by:797
Symbol 708 MovieClipUses:682Used by:709
Symbol 709 MovieClip {JAIMEPRESSLY_fla.tr1_284}Uses:708 273Used by:727
Symbol 710 MovieClipUses:682Used by:711
Symbol 711 MovieClip {JAIMEPRESSLY_fla.rt2_286}Uses:710 278Used by:727
Symbol 712 MovieClipUses:682Used by:713 722
Symbol 713 MovieClip {JAIMEPRESSLY_fla.tr3_288}Uses:712 281Used by:727
Symbol 714 MovieClipUses:682Used by:715 723
Symbol 715 MovieClip {JAIMEPRESSLY_fla.tr4_290}Uses:714 288Used by:727
Symbol 716 MovieClipUses:682Used by:717 724
Symbol 717 MovieClip {JAIMEPRESSLY_fla.rt5_292}Uses:716 293Used by:727
Symbol 718 MovieClipUses:682Used by:719 725
Symbol 719 MovieClip {JAIMEPRESSLY_fla.rt6_294}Uses:718 298Used by:727
Symbol 720 MovieClipUses:682Used by:721 726
Symbol 721 MovieClip {JAIMEPRESSLY_fla.rt7_296}Uses:720 301Used by:727
Symbol 722 MovieClip {JAIMEPRESSLY_fla.rt8_298}Uses:712 304Used by:727
Symbol 723 MovieClip {JAIMEPRESSLY_fla.tr9_299}Uses:714 308Used by:727
Symbol 724 MovieClip {JAIMEPRESSLY_fla.df10_300}Uses:716 310Used by:727
Symbol 725 MovieClip {JAIMEPRESSLY_fla.df11_301}Uses:718 313Used by:727
Symbol 726 MovieClip {JAIMEPRESSLY_fla.df12_302}Uses:720 316Used by:727
Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283}Uses:709 711 713 715 717 719 721 722 723 724 725 726Used by:797
Symbol 728 MovieClipUses:682Used by:729
Symbol 729 MovieClip {JAIMEPRESSLY_fla.bv1_304}Uses:728 202Used by:748
Symbol 730 MovieClipUses:682Used by:731
Symbol 731 MovieClip {JAIMEPRESSLY_fla.bv2_306}Uses:730 206Used by:748
Symbol 732 MovieClipUses:682Used by:733
Symbol 733 MovieClip {JAIMEPRESSLY_fla.bv3_308}Uses:732 211Used by:748
Symbol 734 MovieClipUses:682Used by:735
Symbol 735 MovieClip {JAIMEPRESSLY_fla.bv4_310}Uses:734 225Used by:748
Symbol 736 MovieClipUses:682Used by:737 744
Symbol 737 MovieClip {JAIMEPRESSLY_fla.bv5_312}Uses:736 237Used by:748
Symbol 738 MovieClipUses:682Used by:739 745
Symbol 739 MovieClip {JAIMEPRESSLY_fla.bv6_314}Uses:738 243Used by:748
Symbol 740 MovieClipUses:682Used by:741 746
Symbol 741 MovieClip {JAIMEPRESSLY_fla.bv7_316}Uses:740 245Used by:748
Symbol 742 MovieClipUses:682Used by:743 747
Symbol 743 MovieClip {JAIMEPRESSLY_fla.bv8_318}Uses:742 252Used by:748
Symbol 744 MovieClip {JAIMEPRESSLY_fla.bv9_320}Uses:736 255Used by:748
Symbol 745 MovieClip {JAIMEPRESSLY_fla.bv10_321}Uses:738 257Used by:748
Symbol 746 MovieClip {JAIMEPRESSLY_fla.bv11_322}Uses:740 264Used by:748
Symbol 747 MovieClip {JAIMEPRESSLY_fla.bv12_323}Uses:742 269Used by:748
Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303}Uses:729 731 733 735 737 739 741 743 744 745 746 747Used by:797
Symbol 749 MovieClipUses:682Used by:750
Symbol 750 MovieClip {JAIMEPRESSLY_fla.ch1_326}Uses:749Used by:751
Symbol 751 MovieClip {JAIMEPRESSLY_fla.cvq1_325}Uses:750 323Used by:764
Symbol 752 MovieClipUses:682Used by:753
Symbol 753 MovieClip {JAIMEPRESSLY_fla.ch2_329}Uses:752Used by:754
Symbol 754 MovieClip {JAIMEPRESSLY_fla.cv2_328}Uses:753 649Used by:764
Symbol 755 MovieClipUses:682Used by:756
Symbol 756 MovieClip {JAIMEPRESSLY_fla.ch3_332}Uses:755Used by:757
Symbol 757 MovieClip {JAIMEPRESSLY_fla.cv3_331}Uses:756 653Used by:764
Symbol 758 MovieClipUses:682Used by:759
Symbol 759 MovieClip {JAIMEPRESSLY_fla.ch4_335}Uses:758Used by:760
Symbol 760 MovieClip {JAIMEPRESSLY_fla.cv4_334}Uses:759 660Used by:764
Symbol 761 MovieClipUses:682Used by:762
Symbol 762 MovieClip {JAIMEPRESSLY_fla.ch5_338}Uses:761Used by:763
Symbol 763 MovieClip {JAIMEPRESSLY_fla.vc5_337}Uses:762 661Used by:764
Symbol 764 MovieClip {JAIMEPRESSLY_fla.chjainpalette_324}Uses:751 754 757 760 763Used by:797
Symbol 765 MovieClipUses:682Used by:766
Symbol 766 MovieClip {JAIMEPRESSLY_fla.er1_341}Uses:765 332Used by:775
Symbol 767 MovieClipUses:682Used by:768
Symbol 768 MovieClip {JAIMEPRESSLY_fla.er2_343}Uses:767 670Used by:775
Symbol 769 MovieClipUses:682Used by:770
Symbol 770 MovieClip {JAIMEPRESSLY_fla.er3_345}Uses:769 671Used by:775
Symbol 771 MovieClipUses:682Used by:772
Symbol 772 MovieClip {JAIMEPRESSLY_fla.er4_347}Uses:771 672Used by:775
Symbol 773 MovieClipUses:682Used by:774
Symbol 774 MovieClip {JAIMEPRESSLY_fla.er45_349}Uses:773 674Used by:775
Symbol 775 MovieClip {JAIMEPRESSLY_fla.earpalette_340}Uses:766 768 770 772 774Used by:797
Symbol 776 MovieClipUses:682Used by:777
Symbol 777 MovieClip {JAIMEPRESSLY_fla.sh1_352}Uses:776 555Used by:786
Symbol 778 MovieClipUses:682Used by:779
Symbol 779 MovieClip {JAIMEPRESSLY_fla.sh2_354}Uses:778 557Used by:786
Symbol 780 MovieClipUses:682Used by:781
Symbol 781 MovieClip {JAIMEPRESSLY_fla.sh3_356}Uses:780 559Used by:786
Symbol 782 MovieClipUses:682Used by:783
Symbol 783 MovieClip {JAIMEPRESSLY_fla.sh4_358}Uses:782 182Used by:786
Symbol 784 MovieClipUses:682Used by:785
Symbol 785 MovieClip {JAIMEPRESSLY_fla.sh5_360}Uses:784 561Used by:786
Symbol 786 MovieClip {JAIMEPRESSLY_fla.shoespalette_351}Uses:777 779 781 783 785Used by:797
Symbol 787 MovieClipUses:682Used by:788
Symbol 788 MovieClip {JAIMEPRESSLY_fla.hair1_363}Uses:787 326Used by:796
Symbol 789 MovieClipUses:682Used by:790
Symbol 790 MovieClip {JAIMEPRESSLY_fla.hair2_365}Uses:789 664Used by:796
Symbol 791 MovieClipUses:682Used by:792
Symbol 792 MovieClip {JAIMEPRESSLY_fla.ahir3_367}Uses:791 666Used by:796
Symbol 793 MovieClipUses:682Used by:794 795
Symbol 794 MovieClip {JAIMEPRESSLY_fla.ahir4_369}Uses:793 326Used by:796
Symbol 795 MovieClip {JAIMEPRESSLY_fla.ahir5_371}Uses:793 668Used by:796
Symbol 796 MovieClip {JAIMEPRESSLY_fla.hairpalette_362}Uses:788 790 792 794 795Used by:797
Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254}Uses:707 727 748 764 775 786 796Used by:Timeline
Symbol 798 GraphicUsed by:799
Symbol 799 MovieClipUses:798Used by:Timeline
Symbol 800 GraphicUsed by:804
Symbol 801 TextUses:61Used by:804
Symbol 802 GraphicUsed by:804
Symbol 803 GraphicUsed by:804
Symbol 804 ButtonUses:800 801 802 803Used by:Timeline
Symbol 805 GraphicUsed by:807 812 813
Symbol 806 GraphicUsed by:807 812 813
Symbol 807 MovieClipUses:805 806Used by:812 813
Symbol 808 GraphicUsed by:809 812 813
Symbol 809 MovieClipUses:808Used by:812 813
Symbol 810 GraphicUsed by:811 812
Symbol 811 MovieClipUses:810Used by:812
Symbol 812 ButtonUses:807 809 811 805 806 808 810Used by:Timeline
Symbol 813 ButtonUses:807 809 805 806 808Used by:Timeline
Symbol 814 MovieClipUses:81 83 88 90 92 94 105 107 109Used by:Timeline
Symbol 815 GraphicUsed by:818
Symbol 816 GraphicUsed by:817
Symbol 817 MovieClipUses:816Used by:818
Symbol 818 MovieClipUses:815 817Used by:Timeline
Symbol 819 FontUsed by:820
Symbol 820 EditableTextUses:819Used by:Timeline
Symbol 821 TextUses:34Used by:832
Symbol 822 TextUses:34Used by:832
Symbol 823 TextUses:34Used by:832
Symbol 824 TextUses:34Used by:832
Symbol 825 TextUses:34Used by:832
Symbol 826 TextUses:34Used by:832
Symbol 827 TextUses:34Used by:832
Symbol 828 TextUses:34Used by:832
Symbol 829 TextUses:34Used by:832
Symbol 830 TextUses:34Used by:832
Symbol 831 TextUses:34Used by:832
Symbol 832 MovieClip {JAIMEPRESSLY_fla.enteryourname_382}Uses:821 822 823 824 825 826 827 828 829 830 831Used by:Timeline
Symbol 833 BitmapUsed by:834
Symbol 834 GraphicUses:833Used by:837
Symbol 835 GraphicUsed by:836
Symbol 836 MovieClipUses:835Used by:837
Symbol 837 MovieClipUses:834 836Used by:853 864 878
Symbol 838 BitmapUsed by:839 854 867
Symbol 839 GraphicUses:838Used by:853
Symbol 840 BitmapUsed by:841 855 868
Symbol 841 GraphicUses:840Used by:853
Symbol 842 BitmapUsed by:843
Symbol 843 GraphicUses:842Used by:853 864 878
Symbol 844 GraphicUsed by:853
Symbol 845 GraphicUsed by:853
Symbol 846 GraphicUsed by:853
Symbol 847 GraphicUsed by:853
Symbol 848 TextUses:468Used by:853
Symbol 849 GraphicUsed by:853
Symbol 850 GraphicUsed by:853
Symbol 851 GraphicUsed by:853
Symbol 852 GraphicUsed by:853
Symbol 853 MovieClip {JAIMEPRESSLY_fla.OHLJK_383}Uses:837 839 841 843 844 845 846 847 848 849 850 851 852Used by:Timeline
Symbol 854 GraphicUses:838Used by:864
Symbol 855 GraphicUses:840Used by:864
Symbol 856 GraphicUsed by:864
Symbol 857 GraphicUsed by:864
Symbol 858 GraphicUsed by:864
Symbol 859 GraphicUsed by:864
Symbol 860 TextUses:468Used by:864
Symbol 861 GraphicUsed by:864
Symbol 862 GraphicUsed by:864
Symbol 863 GraphicUsed by:864
Symbol 864 MovieClip {JAIMEPRESSLY_fla.OHLJK_386}Uses:837 854 855 843 856 857 858 859 860 861 862 863Used by:Timeline
Symbol 865 TextUses:468Used by:Timeline
Symbol 866 EditableTextUses:468Used by:Timeline
Symbol 867 GraphicUses:838Used by:878
Symbol 868 GraphicUses:840Used by:878
Symbol 869 GraphicUsed by:878
Symbol 870 GraphicUsed by:878
Symbol 871 GraphicUsed by:878
Symbol 872 GraphicUsed by:878
Symbol 873 GraphicUsed by:878
Symbol 874 FontUsed by:875
Symbol 875 TextUses:874Used by:878
Symbol 876 GraphicUsed by:878
Symbol 877 GraphicUsed by:878
Symbol 878 MovieClip {JAIMEPRESSLY_fla.OHLJK_387}Uses:837 867 868 843 869 870 871 872 873 875 876 877Used by:Timeline
Symbol 879 GraphicUsed by:896
Symbol 880 GraphicUsed by:881 901
Symbol 881 MovieClipUses:880Used by:896 923
Symbol 882 GraphicUsed by:883 890 909 913
Symbol 883 MovieClipUses:882Used by:890 904
Symbol 884 GraphicUsed by:885 890 902 909 913
Symbol 885 MovieClipUses:884Used by:887
Symbol 886 MovieClipUses:434Used by:887 903
Symbol 887 MovieClipUses:885 886Used by:890
Symbol 888 GraphicUsed by:889
Symbol 889 ButtonUses:888Used by:890
Symbol 890 ButtonUses:883 887 889 882 884 434Used by:896 923
Symbol 891 TextUses:124Used by:896 923
Symbol 892 FontUsed by:893 918 919 920 921 922
Symbol 893 EditableTextUses:892Used by:896
Symbol 894 MovieClipUsed by:896 900
Symbol 895 MovieClipUsed by:896 900
Symbol 896 MovieClip {JAIMEPRESSLY_fla.hdhdfhf_emaikl_389}Uses:879 881 890 891 893 894 895Used by:923
Symbol 897 GraphicUsed by:900
Symbol 898 MovieClipUsed by:900
Symbol 899 MovieClipUses:88Used by:900
Symbol 900 MovieClipUses:897 898 899 894 895Used by:923
Symbol 901 MovieClipUses:880Used by:923
Symbol 902 MovieClipUses:884Used by:903
Symbol 903 MovieClipUses:902 886Used by:904
Symbol 904 MovieClipUses:883 903Used by:906 909 911 913
Symbol 905 TextUses:124Used by:906
Symbol 906 MovieClipUses:904 905Used by:909
Symbol 907 TextUses:124Used by:909
Symbol 908 GraphicUsed by:909 913
Symbol 909 ButtonUses:906 904 907 908 882 884 434Used by:923
Symbol 910 TextUses:124Used by:911
Symbol 911 MovieClipUses:904 910Used by:913
Symbol 912 TextUses:124Used by:913
Symbol 913 ButtonUses:911 904 912 908 882 884 434Used by:923
Symbol 914 TextUses:124Used by:923
Symbol 915 TextUses:124Used by:923
Symbol 916 TextUses:124Used by:923
Symbol 917 TextUses:124Used by:923
Symbol 918 EditableTextUses:892Used by:923
Symbol 919 EditableTextUses:892Used by:923
Symbol 920 EditableTextUses:892Used by:923
Symbol 921 EditableTextUses:892Used by:923
Symbol 922 EditableTextUses:892Used by:923
Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388}Uses:896 900 881 901 909 913 914 915 916 917 891 890 918 919 920 921 922Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 26 MovieClip {JAIMEPRESSLY_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 28 EditableText
"ball"Frame 1Symbol 77 MovieClip
"bg"Frame 2Symbol 136 MovieClip {JAIMEPRESSLY_fla.bggg_22}
"buttonHolder"Frame 2Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139}
"shade"Frame 3Symbol 424 MovieClip
"scrollMC"Frame 3Symbol 429 MovieClip
"stand"Frame 3Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175}
"star"Frame 3Symbol 552 MovieClip
"doll"Frame 3Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194}
"palette"Frame 3Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254}
"myMask"Frame 3Symbol 799 MovieClip
"logo_mc"Frame 3Symbol 804 Button
"sndon"Frame 3Symbol 812 Button
"sndoff"Frame 3Symbol 813 Button
"nextbtn"Frame 4Symbol 533 MovieClip {JAIMEPRESSLY_fla.buttons1_188}
"t1"Frame 4Symbol 820 EditableText
"ent"Frame 4Symbol 832 MovieClip {JAIMEPRESSLY_fla.enteryourname_382}
"nex"Frame 5Symbol 853 MovieClip {JAIMEPRESSLY_fla.OHLJK_383}
"email"Frame 5Symbol 864 MovieClip {JAIMEPRESSLY_fla.OHLJK_386}
"t2"Frame 5Symbol 866 EditableText
"playmore"Frame 5Symbol 878 MovieClip {JAIMEPRESSLY_fla.OHLJK_387}
"dolls"Frame 5Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194}
"popup"Frame 5Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388}
"masker"Symbol 26 MovieClip {JAIMEPRESSLY_fla.cbvdsfdsf_loader_7} Frame 1Symbol 14 MovieClip
"pl"Symbol 136 MovieClip {JAIMEPRESSLY_fla.bggg_22} Frame 1Symbol 135 MovieClip {JAIMEPRESSLY_fla.khjll_40}
"b2"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 344 Button
"b3"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 350 Button
"b4"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 356 Button
"b5"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 362 Button
"b6"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 368 Button
"b7"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 373 Button
"b8"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 378 Button
"b9"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 383 Button
"b10"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 388 Button
"b11"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 395 Button
"b1"Symbol 403 MovieClip {JAIMEPRESSLY_fla.ButtonHolder_139} Frame 1Symbol 402 Button
"b8"Symbol 533 MovieClip {JAIMEPRESSLY_fla.buttons1_188} Frame 1Symbol 521 MovieClip
"dress"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 449 MovieClip {JAIMEPRESSLY_fla.HCVNVHJ_176}
"bottom"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 461 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy_182}
"top"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 473 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy2_183}
"chain"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 484 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy3_184}
"earring"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 496 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy4_185}
"hair"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 508 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy5_186}
"shoe"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 520 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy6_187}
"nextbtn"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 533 MovieClip {JAIMEPRESSLY_fla.buttons1_188}
"resetbtn"Symbol 543 MovieClip {JAIMEPRESSLY_fla.stand_175} Frame 1Symbol 542 MovieClip {JAIMEPRESSLY_fla.HCVNVHJcopy8_190}
"shoes"Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194} Frame 1Symbol 562 MovieClip {JAIMEPRESSLY_fla.sheos_195}
"dress"Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194} Frame 1Symbol 641 MovieClip {JAIMEPRESSLY_fla.dress_200}
"bottoms"Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194} Frame 1Symbol 642 MovieClip {JAIMEPRESSLY_fla.botoms_231}
"tops"Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194} Frame 1Symbol 643 MovieClip {JAIMEPRESSLY_fla.tops_232}
"chain"Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194} Frame 1Symbol 662 MovieClip {JAIMEPRESSLY_fla.chians_233}
"hair"Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194} Frame 1Symbol 669 MovieClip {JAIMEPRESSLY_fla.hairs_244}
"earring"Symbol 676 MovieClip {JAIMEPRESSLY_fla.doll_194} Frame 1Symbol 675 MovieClip {JAIMEPRESSLY_fla.earring_248}
"d13"Symbol 684 MovieClip {JAIMEPRESSLY_fla.vf13_256} Frame 1Symbol 640 MovieClip
"d12"Symbol 685 MovieClip {JAIMEPRESSLY_fla.vff12_261} Frame 1Symbol 634 MovieClip
"d11"Symbol 686 MovieClip {JAIMEPRESSLY_fla.sd11_262} Frame 1Symbol 626 MovieClip
"d10"Symbol 688 MovieClip {JAIMEPRESSLY_fla.sd10_263} Frame 1Symbol 620 MovieClip
"d9"Symbol 690 MovieClip {JAIMEPRESSLY_fla.sd9_265} Frame 1Symbol 608 MovieClip
"d8"Symbol 692 MovieClip {JAIMEPRESSLY_fla.sd8_267} Frame 1Symbol 601 MovieClip
"d7"Symbol 694 MovieClip {JAIMEPRESSLY_fla.sd7_269} Frame 1Symbol 596 MovieClip
"d6"Symbol 696 MovieClip {JAIMEPRESSLY_fla.sd6_271} Frame 1Symbol 591 MovieClip
"d5"Symbol 698 MovieClip {JAIMEPRESSLY_fla.sd5_273} Frame 1Symbol 585 MovieClip
"d4"Symbol 700 MovieClip {JAIMEPRESSLY_fla.sd4_275} Frame 1Symbol 576 MovieClip
"d3"Symbol 702 MovieClip {JAIMEPRESSLY_fla.sd3_277} Frame 1Symbol 570 MovieClip
"d2"Symbol 704 MovieClip {JAIMEPRESSLY_fla.sd2_279} Frame 1Symbol 566 MovieClip
"d1"Symbol 706 MovieClip {JAIMEPRESSLY_fla.sd1_281} Frame 1Symbol 193 MovieClip
"d13"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 684 MovieClip {JAIMEPRESSLY_fla.vf13_256}
"d12"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 685 MovieClip {JAIMEPRESSLY_fla.vff12_261}
"d11"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 686 MovieClip {JAIMEPRESSLY_fla.sd11_262}
"d10"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 688 MovieClip {JAIMEPRESSLY_fla.sd10_263}
"d9"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 690 MovieClip {JAIMEPRESSLY_fla.sd9_265}
"d8"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 692 MovieClip {JAIMEPRESSLY_fla.sd8_267}
"d7"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 694 MovieClip {JAIMEPRESSLY_fla.sd7_269}
"d6"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 696 MovieClip {JAIMEPRESSLY_fla.sd6_271}
"d5"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 698 MovieClip {JAIMEPRESSLY_fla.sd5_273}
"d4"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 700 MovieClip {JAIMEPRESSLY_fla.sd4_275}
"d3"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 702 MovieClip {JAIMEPRESSLY_fla.sd3_277}
"d2"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 704 MovieClip {JAIMEPRESSLY_fla.sd2_279}
"d1"Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255} Frame 1Symbol 706 MovieClip {JAIMEPRESSLY_fla.sd1_281}
"t1"Symbol 709 MovieClip {JAIMEPRESSLY_fla.tr1_284} Frame 1Symbol 273 MovieClip
"t2"Symbol 711 MovieClip {JAIMEPRESSLY_fla.rt2_286} Frame 1Symbol 278 MovieClip
"t3"Symbol 713 MovieClip {JAIMEPRESSLY_fla.tr3_288} Frame 1Symbol 281 MovieClip
"t4"Symbol 715 MovieClip {JAIMEPRESSLY_fla.tr4_290} Frame 1Symbol 288 MovieClip
"t5"Symbol 717 MovieClip {JAIMEPRESSLY_fla.rt5_292} Frame 1Symbol 293 MovieClip
"t6"Symbol 719 MovieClip {JAIMEPRESSLY_fla.rt6_294} Frame 1Symbol 298 MovieClip
"t7"Symbol 721 MovieClip {JAIMEPRESSLY_fla.rt7_296} Frame 1Symbol 301 MovieClip
"t8"Symbol 722 MovieClip {JAIMEPRESSLY_fla.rt8_298} Frame 1Symbol 304 MovieClip
"t9"Symbol 723 MovieClip {JAIMEPRESSLY_fla.tr9_299} Frame 1Symbol 308 MovieClip
"t10"Symbol 724 MovieClip {JAIMEPRESSLY_fla.df10_300} Frame 1Symbol 310 MovieClip
"t11"Symbol 725 MovieClip {JAIMEPRESSLY_fla.df11_301} Frame 1Symbol 313 MovieClip
"t12"Symbol 726 MovieClip {JAIMEPRESSLY_fla.df12_302} Frame 1Symbol 316 MovieClip
"t1"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 709 MovieClip {JAIMEPRESSLY_fla.tr1_284}
"t2"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 711 MovieClip {JAIMEPRESSLY_fla.rt2_286}
"t3"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 713 MovieClip {JAIMEPRESSLY_fla.tr3_288}
"t4"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 715 MovieClip {JAIMEPRESSLY_fla.tr4_290}
"t5"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 717 MovieClip {JAIMEPRESSLY_fla.rt5_292}
"t6"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 719 MovieClip {JAIMEPRESSLY_fla.rt6_294}
"t7"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 721 MovieClip {JAIMEPRESSLY_fla.rt7_296}
"t8"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 722 MovieClip {JAIMEPRESSLY_fla.rt8_298}
"t9"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 723 MovieClip {JAIMEPRESSLY_fla.tr9_299}
"t10"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 724 MovieClip {JAIMEPRESSLY_fla.df10_300}
"t11"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 725 MovieClip {JAIMEPRESSLY_fla.df11_301}
"t12"Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283} Frame 1Symbol 726 MovieClip {JAIMEPRESSLY_fla.df12_302}
"b1"Symbol 729 MovieClip {JAIMEPRESSLY_fla.bv1_304} Frame 1Symbol 202 MovieClip
"b2"Symbol 731 MovieClip {JAIMEPRESSLY_fla.bv2_306} Frame 1Symbol 206 MovieClip
"b3"Symbol 733 MovieClip {JAIMEPRESSLY_fla.bv3_308} Frame 1Symbol 211 MovieClip
"b4"Symbol 735 MovieClip {JAIMEPRESSLY_fla.bv4_310} Frame 1Symbol 225 MovieClip
"b5"Symbol 737 MovieClip {JAIMEPRESSLY_fla.bv5_312} Frame 1Symbol 237 MovieClip
"b6"Symbol 739 MovieClip {JAIMEPRESSLY_fla.bv6_314} Frame 1Symbol 243 MovieClip
"b7"Symbol 741 MovieClip {JAIMEPRESSLY_fla.bv7_316} Frame 1Symbol 245 MovieClip
"b8"Symbol 743 MovieClip {JAIMEPRESSLY_fla.bv8_318} Frame 1Symbol 252 MovieClip
"b9"Symbol 744 MovieClip {JAIMEPRESSLY_fla.bv9_320} Frame 1Symbol 255 MovieClip
"b10"Symbol 745 MovieClip {JAIMEPRESSLY_fla.bv10_321} Frame 1Symbol 257 MovieClip
"b11"Symbol 746 MovieClip {JAIMEPRESSLY_fla.bv11_322} Frame 1Symbol 264 MovieClip
"b12"Symbol 747 MovieClip {JAIMEPRESSLY_fla.bv12_323} Frame 1Symbol 269 MovieClip
"b1"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 729 MovieClip {JAIMEPRESSLY_fla.bv1_304}
"b2"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 731 MovieClip {JAIMEPRESSLY_fla.bv2_306}
"b3"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 733 MovieClip {JAIMEPRESSLY_fla.bv3_308}
"b4"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 735 MovieClip {JAIMEPRESSLY_fla.bv4_310}
"b5"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 737 MovieClip {JAIMEPRESSLY_fla.bv5_312}
"b6"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 739 MovieClip {JAIMEPRESSLY_fla.bv6_314}
"b7"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 741 MovieClip {JAIMEPRESSLY_fla.bv7_316}
"b8"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 743 MovieClip {JAIMEPRESSLY_fla.bv8_318}
"b9"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 744 MovieClip {JAIMEPRESSLY_fla.bv9_320}
"b10"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 745 MovieClip {JAIMEPRESSLY_fla.bv10_321}
"b11"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 746 MovieClip {JAIMEPRESSLY_fla.bv11_322}
"b12"Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303} Frame 1Symbol 747 MovieClip {JAIMEPRESSLY_fla.bv12_323}
"c1"Symbol 750 MovieClip {JAIMEPRESSLY_fla.ch1_326} Frame 1Symbol 749 MovieClip
"c1"Symbol 751 MovieClip {JAIMEPRESSLY_fla.cvq1_325} Frame 1Symbol 750 MovieClip {JAIMEPRESSLY_fla.ch1_326}
"c1"Symbol 751 MovieClip {JAIMEPRESSLY_fla.cvq1_325} Frame 1Symbol 323 MovieClip
"c2"Symbol 753 MovieClip {JAIMEPRESSLY_fla.ch2_329} Frame 1Symbol 752 MovieClip
"c2"Symbol 754 MovieClip {JAIMEPRESSLY_fla.cv2_328} Frame 1Symbol 753 MovieClip {JAIMEPRESSLY_fla.ch2_329}
"c2"Symbol 754 MovieClip {JAIMEPRESSLY_fla.cv2_328} Frame 1Symbol 649 MovieClip
"c3"Symbol 756 MovieClip {JAIMEPRESSLY_fla.ch3_332} Frame 1Symbol 755 MovieClip
"c3"Symbol 757 MovieClip {JAIMEPRESSLY_fla.cv3_331} Frame 1Symbol 756 MovieClip {JAIMEPRESSLY_fla.ch3_332}
"c3"Symbol 757 MovieClip {JAIMEPRESSLY_fla.cv3_331} Frame 1Symbol 653 MovieClip
"c5"Symbol 759 MovieClip {JAIMEPRESSLY_fla.ch4_335} Frame 1Symbol 758 MovieClip
"c4"Symbol 760 MovieClip {JAIMEPRESSLY_fla.cv4_334} Frame 1Symbol 759 MovieClip {JAIMEPRESSLY_fla.ch4_335}
"c4"Symbol 760 MovieClip {JAIMEPRESSLY_fla.cv4_334} Frame 1Symbol 660 MovieClip
"c4"Symbol 762 MovieClip {JAIMEPRESSLY_fla.ch5_338} Frame 1Symbol 761 MovieClip
"c5"Symbol 763 MovieClip {JAIMEPRESSLY_fla.vc5_337} Frame 1Symbol 762 MovieClip {JAIMEPRESSLY_fla.ch5_338}
"c5"Symbol 763 MovieClip {JAIMEPRESSLY_fla.vc5_337} Frame 1Symbol 661 MovieClip
"c1"Symbol 764 MovieClip {JAIMEPRESSLY_fla.chjainpalette_324} Frame 1Symbol 751 MovieClip {JAIMEPRESSLY_fla.cvq1_325}
"c2"Symbol 764 MovieClip {JAIMEPRESSLY_fla.chjainpalette_324} Frame 1Symbol 754 MovieClip {JAIMEPRESSLY_fla.cv2_328}
"c3"Symbol 764 MovieClip {JAIMEPRESSLY_fla.chjainpalette_324} Frame 1Symbol 757 MovieClip {JAIMEPRESSLY_fla.cv3_331}
"c4"Symbol 764 MovieClip {JAIMEPRESSLY_fla.chjainpalette_324} Frame 1Symbol 760 MovieClip {JAIMEPRESSLY_fla.cv4_334}
"c5"Symbol 764 MovieClip {JAIMEPRESSLY_fla.chjainpalette_324} Frame 1Symbol 763 MovieClip {JAIMEPRESSLY_fla.vc5_337}
"e1"Symbol 766 MovieClip {JAIMEPRESSLY_fla.er1_341} Frame 1Symbol 765 MovieClip
"e1"Symbol 766 MovieClip {JAIMEPRESSLY_fla.er1_341} Frame 1Symbol 332 MovieClip
"e2"Symbol 768 MovieClip {JAIMEPRESSLY_fla.er2_343} Frame 1Symbol 767 MovieClip
"e2"Symbol 768 MovieClip {JAIMEPRESSLY_fla.er2_343} Frame 1Symbol 670 MovieClip
"e3"Symbol 770 MovieClip {JAIMEPRESSLY_fla.er3_345} Frame 1Symbol 769 MovieClip
"e3"Symbol 770 MovieClip {JAIMEPRESSLY_fla.er3_345} Frame 1Symbol 671 MovieClip
"e4"Symbol 772 MovieClip {JAIMEPRESSLY_fla.er4_347} Frame 1Symbol 771 MovieClip
"e4"Symbol 772 MovieClip {JAIMEPRESSLY_fla.er4_347} Frame 1Symbol 672 MovieClip
"e5"Symbol 774 MovieClip {JAIMEPRESSLY_fla.er45_349} Frame 1Symbol 773 MovieClip
"e5"Symbol 774 MovieClip {JAIMEPRESSLY_fla.er45_349} Frame 1Symbol 674 MovieClip
"e1"Symbol 775 MovieClip {JAIMEPRESSLY_fla.earpalette_340} Frame 1Symbol 766 MovieClip {JAIMEPRESSLY_fla.er1_341}
"e2"Symbol 775 MovieClip {JAIMEPRESSLY_fla.earpalette_340} Frame 1Symbol 768 MovieClip {JAIMEPRESSLY_fla.er2_343}
"e3"Symbol 775 MovieClip {JAIMEPRESSLY_fla.earpalette_340} Frame 1Symbol 770 MovieClip {JAIMEPRESSLY_fla.er3_345}
"e4"Symbol 775 MovieClip {JAIMEPRESSLY_fla.earpalette_340} Frame 1Symbol 772 MovieClip {JAIMEPRESSLY_fla.er4_347}
"e5"Symbol 775 MovieClip {JAIMEPRESSLY_fla.earpalette_340} Frame 1Symbol 774 MovieClip {JAIMEPRESSLY_fla.er45_349}
"s1"Symbol 777 MovieClip {JAIMEPRESSLY_fla.sh1_352} Frame 1Symbol 776 MovieClip
"s1"Symbol 777 MovieClip {JAIMEPRESSLY_fla.sh1_352} Frame 1Symbol 555 MovieClip
"s2"Symbol 779 MovieClip {JAIMEPRESSLY_fla.sh2_354} Frame 1Symbol 778 MovieClip
"s2"Symbol 779 MovieClip {JAIMEPRESSLY_fla.sh2_354} Frame 1Symbol 557 MovieClip
"s3"Symbol 781 MovieClip {JAIMEPRESSLY_fla.sh3_356} Frame 1Symbol 780 MovieClip
"s3"Symbol 781 MovieClip {JAIMEPRESSLY_fla.sh3_356} Frame 1Symbol 559 MovieClip
"s4"Symbol 783 MovieClip {JAIMEPRESSLY_fla.sh4_358} Frame 1Symbol 782 MovieClip
"s4"Symbol 783 MovieClip {JAIMEPRESSLY_fla.sh4_358} Frame 1Symbol 182 MovieClip
"s5"Symbol 785 MovieClip {JAIMEPRESSLY_fla.sh5_360} Frame 1Symbol 784 MovieClip
"s5"Symbol 785 MovieClip {JAIMEPRESSLY_fla.sh5_360} Frame 1Symbol 561 MovieClip
"s1"Symbol 786 MovieClip {JAIMEPRESSLY_fla.shoespalette_351} Frame 1Symbol 777 MovieClip {JAIMEPRESSLY_fla.sh1_352}
"s2"Symbol 786 MovieClip {JAIMEPRESSLY_fla.shoespalette_351} Frame 1Symbol 779 MovieClip {JAIMEPRESSLY_fla.sh2_354}
"s3"Symbol 786 MovieClip {JAIMEPRESSLY_fla.shoespalette_351} Frame 1Symbol 781 MovieClip {JAIMEPRESSLY_fla.sh3_356}
"s4"Symbol 786 MovieClip {JAIMEPRESSLY_fla.shoespalette_351} Frame 1Symbol 783 MovieClip {JAIMEPRESSLY_fla.sh4_358}
"s5"Symbol 786 MovieClip {JAIMEPRESSLY_fla.shoespalette_351} Frame 1Symbol 785 MovieClip {JAIMEPRESSLY_fla.sh5_360}
"h1"Symbol 788 MovieClip {JAIMEPRESSLY_fla.hair1_363} Frame 1Symbol 787 MovieClip
"h1"Symbol 788 MovieClip {JAIMEPRESSLY_fla.hair1_363} Frame 1Symbol 326 MovieClip
"h2"Symbol 790 MovieClip {JAIMEPRESSLY_fla.hair2_365} Frame 1Symbol 789 MovieClip
"h2"Symbol 790 MovieClip {JAIMEPRESSLY_fla.hair2_365} Frame 1Symbol 664 MovieClip
"h3"Symbol 792 MovieClip {JAIMEPRESSLY_fla.ahir3_367} Frame 1Symbol 791 MovieClip
"h3"Symbol 792 MovieClip {JAIMEPRESSLY_fla.ahir3_367} Frame 1Symbol 666 MovieClip
"h4"Symbol 794 MovieClip {JAIMEPRESSLY_fla.ahir4_369} Frame 1Symbol 793 MovieClip
"h4"Symbol 794 MovieClip {JAIMEPRESSLY_fla.ahir4_369} Frame 1Symbol 326 MovieClip
"h4"Symbol 795 MovieClip {JAIMEPRESSLY_fla.ahir5_371} Frame 1Symbol 793 MovieClip
"h5"Symbol 795 MovieClip {JAIMEPRESSLY_fla.ahir5_371} Frame 1Symbol 668 MovieClip
"h1"Symbol 796 MovieClip {JAIMEPRESSLY_fla.hairpalette_362} Frame 1Symbol 788 MovieClip {JAIMEPRESSLY_fla.hair1_363}
"h2"Symbol 796 MovieClip {JAIMEPRESSLY_fla.hairpalette_362} Frame 1Symbol 790 MovieClip {JAIMEPRESSLY_fla.hair2_365}
"h3"Symbol 796 MovieClip {JAIMEPRESSLY_fla.hairpalette_362} Frame 1Symbol 792 MovieClip {JAIMEPRESSLY_fla.ahir3_367}
"h4"Symbol 796 MovieClip {JAIMEPRESSLY_fla.hairpalette_362} Frame 1Symbol 794 MovieClip {JAIMEPRESSLY_fla.ahir4_369}
"h5"Symbol 796 MovieClip {JAIMEPRESSLY_fla.hairpalette_362} Frame 1Symbol 795 MovieClip {JAIMEPRESSLY_fla.ahir5_371}
"dresspalette"Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254} Frame 1Symbol 707 MovieClip {JAIMEPRESSLY_fla.dresp1_255}
"topspalette"Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254} Frame 1Symbol 727 MovieClip {JAIMEPRESSLY_fla.topspalete_283}
"bottomspalette"Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254} Frame 1Symbol 748 MovieClip {JAIMEPRESSLY_fla.bttompal_303}
"chainpalette"Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254} Frame 1Symbol 764 MovieClip {JAIMEPRESSLY_fla.chjainpalette_324}
"earringpalette"Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254} Frame 1Symbol 775 MovieClip {JAIMEPRESSLY_fla.earpalette_340}
"shoespalette"Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254} Frame 1Symbol 786 MovieClip {JAIMEPRESSLY_fla.shoespalette_351}
"hairpalette"Symbol 797 MovieClip {JAIMEPRESSLY_fla.palette_254} Frame 1Symbol 796 MovieClip {JAIMEPRESSLY_fla.hairpalette_362}
"close"Symbol 896 MovieClip {JAIMEPRESSLY_fla.hdhdfhf_emaikl_389} Frame 1Symbol 890 Button
"friendMail"Symbol 896 MovieClip {JAIMEPRESSLY_fla.hdhdfhf_emaikl_389} Frame 1Symbol 893 EditableText
"friend1"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 896 MovieClip {JAIMEPRESSLY_fla.hdhdfhf_emaikl_389}
"submit"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 909 Button
"addition"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 913 Button
"close"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 890 Button
"friend2"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 896 MovieClip {JAIMEPRESSLY_fla.hdhdfhf_emaikl_389}
"friend3"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 896 MovieClip {JAIMEPRESSLY_fla.hdhdfhf_emaikl_389}
"friend4"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 896 MovieClip {JAIMEPRESSLY_fla.hdhdfhf_emaikl_389}
"nameDetail"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 918 EditableText
"mailDetail"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 919 EditableText
"messageDetail"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 920 EditableText
"friendName"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 921 EditableText
"friendMail"Symbol 923 MovieClip {JAIMEPRESSLY_fla.jgjyiy9_emaikl_388} Frame 1Symbol 922 EditableText

Special Tags

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




http://swfchan.com/24/117638/info.shtml
Created: 7/3 -2019 16:29:39 Last modified: 7/3 -2019 16:29:39 Server time: 25/04 -2024 11:36:13