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

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

nicollette-sheridan-dress-up-game.swf

This is the info page for
Flash #118559

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


Text
GIRL'S BEST HANGOUT

1

2

3

P

E

Y

L

o

a

d

i

n

g

.

PLAY

BOTTOM

Alt

TOP

üst

SHOES

Ayakkabı

CHAIN

Kolye

STUDS

HAIR

Ilerle

Bastan

123PEPPY

DRESS

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

Tekrar Oyna

Mail

DESIGNED BY

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

Spela Me

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

YOUR FRIEND'S EMAIL :

YOUR FRIEND'S EMAIL :

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

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

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

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

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

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

ADD MORE

ADD MORE

ADD MORE

SEND

SEND

ActionScript [AS3]

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

Library Items

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

Instance Names

"preloader"Frame 1Symbol 290 MovieClip {nicollette_fla.Timeline_7}
"BitsLoaded"Frame 1Symbol 292 EditableText
"ball"Frame 1Symbol 337 MovieClip
"pl"Frame 2Symbol 364 MovieClip {nicollette_fla.Timeline_21}
"bottom"Frame 3Symbol 491 MovieClip {nicollette_fla.Timeline_81}
"top"Frame 3Symbol 505 MovieClip {nicollette_fla.Timeline_86}
"shoe"Frame 3Symbol 519 MovieClip {nicollette_fla.Timeline_89}
"chain"Frame 3Symbol 533 MovieClip {nicollette_fla.Timeline_92}
"earring"Frame 3Symbol 547 MovieClip {nicollette_fla.Timeline_95}
"hair"Frame 3Symbol 561 MovieClip {nicollette_fla.Timeline_98}
"nextbtn"Frame 3Symbol 575 MovieClip {nicollette_fla.Timeline_101}
"resetbtn"Frame 3Symbol 586 MovieClip {nicollette_fla.Timeline_104}
"logo_mc"Frame 3Symbol 591 Button
"sndon"Frame 3Symbol 599 Button
"sndoff"Frame 3Symbol 600 Button
"dress"Frame 3Symbol 623 MovieClip {nicollette_fla.dressbtnsdfsdf_113}
"obs"Frame 3Symbol 625 MovieClip
"doll"Frame 3Symbol 662 MovieClip {nicollette_fla.doll_119}
"dresspalette"Frame 3Symbol 663 MovieClip {nicollette_fla.dresspalette_278}
"shoespalette"Frame 3Symbol 664 MovieClip {nicollette_fla.shoespalette_279}
"bottomspalette"Frame 3Symbol 665 MovieClip {nicollette_fla.bottomspalette_280}
"topspalette"Frame 3Symbol 666 MovieClip {nicollette_fla.topspalette_281}
"hairpalette"Frame 3Symbol 667 MovieClip {nicollette_fla.haIRSPLA_282}
"chainspalette"Frame 3Symbol 668 MovieClip {nicollette_fla.chainspla_283}
"earringpalette"Frame 3Symbol 669 MovieClip {nicollette_fla.earringoak_284}
"chainstand"Frame 4Symbol 670 MovieClip
"earstand"Frame 4Symbol 671 MovieClip
"t1"Frame 4Symbol 688 EditableText
"nextbtn"Frame 4Symbol 575 MovieClip {nicollette_fla.Timeline_101}
"obs"Frame 4Symbol 690 MovieClip
"nex"Frame 5Symbol 707 MovieClip {nicollette_fla.Timeline_293}
"email"Frame 5Symbol 718 MovieClip {nicollette_fla.Timeline_296}
"t2"Frame 5Symbol 720 EditableText
"playmore"Frame 5Symbol 732 MovieClip {nicollette_fla.Timeline_297}
"obs"Frame 5Symbol 625 MovieClip
"dolls"Frame 5Symbol 662 MovieClip {nicollette_fla.doll_119}
"popup"Frame 5Symbol 786 MovieClip {nicollette_fla.Timeline_298}
"masker"Symbol 290 MovieClip {nicollette_fla.Timeline_7} Frame 1Symbol 285 MovieClip
"bottom"Symbol 491 MovieClip {nicollette_fla.Timeline_81} Frame 1Symbol 479 Button
"top"Symbol 505 MovieClip {nicollette_fla.Timeline_86} Frame 1Symbol 493 Button
"shoe"Symbol 519 MovieClip {nicollette_fla.Timeline_89} Frame 1Symbol 507 Button
"chain"Symbol 533 MovieClip {nicollette_fla.Timeline_92} Frame 1Symbol 521 Button
"earring"Symbol 547 MovieClip {nicollette_fla.Timeline_95} Frame 1Symbol 535 Button
"hair"Symbol 561 MovieClip {nicollette_fla.Timeline_98} Frame 1Symbol 549 Button
"nextbtn"Symbol 575 MovieClip {nicollette_fla.Timeline_101} Frame 1Symbol 563 Button
"resetbtn"Symbol 586 MovieClip {nicollette_fla.Timeline_104} Frame 1Symbol 577 Button
"dress"Symbol 623 MovieClip {nicollette_fla.dressbtnsdfsdf_113} Frame 1Symbol 612 Button
"shoes"Symbol 662 MovieClip {nicollette_fla.doll_119} Frame 1Symbol 648 MovieClip {nicollette_fla.shoes_130}
"bottoms"Symbol 662 MovieClip {nicollette_fla.doll_119} Frame 1Symbol 649 MovieClip {nicollette_fla.bottoms_143}
"tops"Symbol 662 MovieClip {nicollette_fla.doll_119} Frame 1Symbol 650 MovieClip {nicollette_fla.tops_168}
"dress"Symbol 662 MovieClip {nicollette_fla.doll_119} Frame 1Symbol 651 MovieClip {nicollette_fla.dress_193}
"chain"Symbol 662 MovieClip {nicollette_fla.doll_119} Frame 1Symbol 652 MovieClip {nicollette_fla.chains_230}
"hair"Symbol 662 MovieClip {nicollette_fla.doll_119} Frame 1Symbol 660 MovieClip {nicollette_fla.hairs_255}
"earring"Symbol 662 MovieClip {nicollette_fla.doll_119} Frame 1Symbol 661 MovieClip {nicollette_fla.earr1_262}
"b1"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 152 MovieClip
"b2"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 144 MovieClip
"b3"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 140 MovieClip
"b4"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 129 MovieClip
"b5"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 124 MovieClip
"b6"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 118 MovieClip
"b7"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 110 MovieClip
"b8"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 97 MovieClip
"b9"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 89 MovieClip
"b10"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 82 MovieClip
"b11"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 78 MovieClip
"b12"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 73 MovieClip
"b13"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 68 MovieClip
"b14"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 63 MovieClip
"d15"Symbol 663 MovieClip {nicollette_fla.dresspalette_278} Frame 1Symbol 59 MovieClip
"s3"Symbol 664 MovieClip {nicollette_fla.shoespalette_279} Frame 1Symbol 264 MovieClip
"s5"Symbol 664 MovieClip {nicollette_fla.shoespalette_279} Frame 1Symbol 254 MovieClip
"s4"Symbol 664 MovieClip {nicollette_fla.shoespalette_279} Frame 1Symbol 257 MovieClip
"s2"Symbol 664 MovieClip {nicollette_fla.shoespalette_279} Frame 1Symbol 267 MovieClip
"s1"Symbol 664 MovieClip {nicollette_fla.shoespalette_279} Frame 1Symbol 271 MovieClip
"b1"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 249 MovieClip
"b2"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 244 MovieClip
"b3"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 240 MovieClip
"b4"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 236 MovieClip
"b5"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 232 MovieClip
"b6"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 225 MovieClip
"b7"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 221 MovieClip
"b8"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 217 MovieClip
"b9"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 213 MovieClip
"b10"Symbol 665 MovieClip {nicollette_fla.bottomspalette_280} Frame 1Symbol 207 MovieClip
"b1"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 202 MovieClip
"b2"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 197 MovieClip
"b3"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 193 MovieClip
"b4"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 186 MovieClip
"b5"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 182 MovieClip
"b6"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 178 MovieClip
"b7"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 174 MovieClip
"b8"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 170 MovieClip
"b9"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 162 MovieClip
"b10"Symbol 666 MovieClip {nicollette_fla.topspalette_281} Frame 1Symbol 158 MovieClip
"h2"Symbol 667 MovieClip {nicollette_fla.haIRSPLA_282} Frame 1Symbol 41 MovieClip
"h3"Symbol 667 MovieClip {nicollette_fla.haIRSPLA_282} Frame 1Symbol 44 MovieClip
"h4"Symbol 667 MovieClip {nicollette_fla.haIRSPLA_282} Frame 1Symbol 41 MovieClip
"h1"Symbol 667 MovieClip {nicollette_fla.haIRSPLA_282} Frame 1Symbol 44 MovieClip
"c4"Symbol 668 MovieClip {nicollette_fla.chainspla_283} Frame 1Symbol 50 MovieClip
"c3"Symbol 668 MovieClip {nicollette_fla.chainspla_283} Frame 1Symbol 52 MovieClip
"c5"Symbol 668 MovieClip {nicollette_fla.chainspla_283} Frame 1Symbol 48 MovieClip
"c2"Symbol 668 MovieClip {nicollette_fla.chainspla_283} Frame 1Symbol 54 MovieClip
"c1"Symbol 668 MovieClip {nicollette_fla.chainspla_283} Frame 1Symbol 56 MovieClip
"e1"Symbol 669 MovieClip {nicollette_fla.earringoak_284} Frame 1Symbol 38 MovieClip
"e2"Symbol 669 MovieClip {nicollette_fla.earringoak_284} Frame 1Symbol 29 MovieClip
"e3"Symbol 669 MovieClip {nicollette_fla.earringoak_284} Frame 1Symbol 21 MovieClip
"e4"Symbol 669 MovieClip {nicollette_fla.earringoak_284} Frame 1Symbol 14 MovieClip
"e5"Symbol 669 MovieClip {nicollette_fla.earringoak_284} Frame 1Symbol 7 MovieClip
"close"Symbol 766 MovieClip {nicollette_fla.Timeline_307} Frame 1Symbol 762 Button
"friendMail"Symbol 766 MovieClip {nicollette_fla.Timeline_307} Frame 1Symbol 765 EditableText
"friend4"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 766 MovieClip {nicollette_fla.Timeline_307}
"friend3"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 766 MovieClip {nicollette_fla.Timeline_307}
"friend2"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 766 MovieClip {nicollette_fla.Timeline_307}
"friend1"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 766 MovieClip {nicollette_fla.Timeline_307}
"close"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 762 Button
"nameDetail"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 767 EditableText
"mailDetail"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 768 EditableText
"messageDetail"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 769 EditableText
"friendName"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 770 EditableText
"friendMail"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 771 EditableText
"addition"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 781 Button
"submit"Symbol 786 MovieClip {nicollette_fla.Timeline_298} Frame 1Symbol 785 Button

Special Tags

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




http://swfchan.com/24/118559/info.shtml
Created: 7/3 -2019 03:55:54 Last modified: 7/3 -2019 03:55:54 Server time: 19/04 -2024 16:22:36