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

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

julie-benz-dress-up-game.swf

This is the info page for
Flash #118202

(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_206 (julie_fla.bottoms_206) package julie_fla { import flash.display.*; public dynamic class bottoms_206 extends MovieClip { public function bottoms_206(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package julie_fla
Section 32
//bottomspalette_282 (julie_fla.bottomspalette_282) package julie_fla { import flash.display.*; public dynamic class bottomspalette_282 extends MovieClip { public var z7:MovieClip; public var z8:MovieClip; public var z9:MovieClip; public var z4:MovieClip; public var z6:MovieClip; public var z1:MovieClip; public var z10:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package julie_fla
Section 33
//chainspla_285 (julie_fla.chainspla_285) package julie_fla { import flash.display.*; public dynamic class chainspla_285 extends MovieClip { public var z1:MovieClip; public var z4:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package julie_fla
Section 34
//chians_235 (julie_fla.chians_235) package julie_fla { import flash.display.*; public dynamic class chians_235 extends MovieClip { public function chians_235(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package julie_fla
Section 35
//doll_119 (julie_fla.doll_119) package julie_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 julie_fla
Section 36
//dress_143 (julie_fla.dress_143) package julie_fla { import flash.display.*; public dynamic class dress_143 extends MovieClip { public function dress_143(){ addFrameScript(0, frame1, 16, frame17); } function frame1(){ stop(); } function frame17(){ gotoAndStop(2); } } }//package julie_fla
Section 37
//dressbtnsdfsdf_113 (julie_fla.dressbtnsdfsdf_113) package julie_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 julie_fla
Section 38
//dresspalette_280 (julie_fla.dresspalette_280) package julie_fla { import flash.display.*; public dynamic class dresspalette_280 extends MovieClip { public var z7:MovieClip; public var z8:MovieClip; public var z9:MovieClip; public var z4:MovieClip; public var z6:MovieClip; public var z11:MovieClip; public var z12:MovieClip; public var z13:MovieClip; public var z15:MovieClip; public var z14:MovieClip; public var z1:MovieClip; public var z10:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package julie_fla
Section 39
//ear_263 (julie_fla.ear_263) package julie_fla { import flash.display.*; public dynamic class ear_263 extends MovieClip { public function ear_263(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package julie_fla
Section 40
//earringoak_286 (julie_fla.earringoak_286) package julie_fla { import flash.display.*; public dynamic class earringoak_286 extends MovieClip { public var z1:MovieClip; public var z4:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package julie_fla
Section 41
//hairs_254 (julie_fla.hairs_254) package julie_fla { import flash.display.*; public dynamic class hairs_254 extends MovieClip { public function hairs_254(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndStop(1); } function frame1(){ stop(); } } }//package julie_fla
Section 42
//haIRSPLA_284 (julie_fla.haIRSPLA_284) package julie_fla { import flash.display.*; public dynamic class haIRSPLA_284 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h5:MovieClip; public var h3:MovieClip; } }//package julie_fla
Section 43
//MainTimeline (julie_fla.MainTimeline) package julie_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(("shoes" + t)) as Class); shoes = new (shoess); addChild(DisplayObject(shoes)); shoes.x = mouseX; shoes.y = mouseY; TweenLite.to(shoes, 0.5, {x:260, y:525, 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); switch (this.loaderInfo.parameters.lang){ case "fr": Globe.temp = 6; pl.gotoAndStop(Globe.temp); break; case "de": Globe.temp = 5; pl.gotoAndStop(Globe.temp); break; case "it": Globe.temp = 4; pl.gotoAndStop(Globe.temp); break; case "pl": Globe.temp = 10; pl.gotoAndStop(Globe.temp); break; case "ru": Globe.temp = 3; pl.gotoAndStop(Globe.temp); break; case "tr": Globe.temp = 7; pl.gotoAndStop(Globe.temp); break; case "sv": Globe.temp = 8; pl.gotoAndStop(Globe.temp); break; case "pt-br": Globe.temp = 11; pl.gotoAndStop(Globe.temp); break; case "es": Globe.temp = 9; pl.gotoAndStop(Globe.temp); break; case "nl": Globe.temp = 2; pl.gotoAndStop(Globe.temp); break; default: Globe.temp = 1; pl.gotoAndStop(Globe.temp); break; }; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } function frame3(){ MochiBot.track(this, "212ee817"); stop(); obs.mouseEnabled = false; prev = dresspalette; dress.gotoAndStop(Globe.temp); top.gotoAndStop(Globe.temp); chain.gotoAndStop(Globe.temp); bottom.gotoAndStop(Globe.temp); earring.gotoAndStop(Globe.temp); hair.gotoAndStop(Globe.temp); shoe.gotoAndStop(Globe.temp); resetbtn.gotoAndStop(Globe.temp); nextbtn.gotoAndStop(Globe.temp); nextbtn.visible = false; dressf = 0; topsf = 0; bots = 0; earringpalette.alpha = 0; topspalette.alpha = 0; bottomspalette.alpha = 0; dresspalette.alpha = 1; chainspalette.alpha = 0; shoespalette.alpha = 0; hairpalette.alpha = 0; earringpalette.visible = false; topspalette.visible = false; bottomspalette.visible = false; dresspalette.visible = true; chainspalette.visible = false; shoespalette.visible = false; hairpalette.visible = false; doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.hair.gotoAndStop(1); doll.earring.gotoAndStop(1); bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndon.addEventListener(MouseEvent.CLICK, sndst); stage.addEventListener(Event.ENTER_FRAME, sets); hair.addEventListener(MouseEvent.CLICK, hairpal); shoe.addEventListener(MouseEvent.CLICK, shoepal); dress.addEventListener(MouseEvent.CLICK, dresspal); top.addEventListener(MouseEvent.CLICK, topspal); bottom.addEventListener(MouseEvent.CLICK, bottompal); chain.addEventListener(MouseEvent.CLICK, chainpal); earring.addEventListener(MouseEvent.CLICK, earringpal); ha = 0; while (ha <= (hairpalette.numChildren - 1)) { hairpalette.getChildAt(ha).addEventListener(MouseEvent.ROLL_OVER, enabl); hairpalette.getChildAt(ha).addEventListener(MouseEvent.MOUSE_DOWN, hairclick); ha++; }; sa = 0; while (sa <= (shoespalette.numChildren - 1)) { shoespalette.getChildAt(sa).addEventListener(MouseEvent.ROLL_OVER, enabl); shoespalette.getChildAt(sa).addEventListener(MouseEvent.MOUSE_DOWN, shoedown); sa++; }; ea = 0; while (ea <= (earringpalette.numChildren - 1)) { earringpalette.getChildAt(ea).addEventListener(MouseEvent.ROLL_OVER, enabl); earringpalette.getChildAt(ea).addEventListener(MouseEvent.MOUSE_DOWN, earclick); ea++; }; ca = 0; while (ca <= (chainspalette.numChildren - 1)) { chainspalette.getChildAt(ca).addEventListener(MouseEvent.ROLL_OVER, enabl); chainspalette.getChildAt(ca).addEventListener(MouseEvent.MOUSE_DOWN, chainclick); ca++; }; d0 = 0; while (d0 <= (bottomspalette.numChildren - 1)) { bottomspalette.getChildAt(d0).addEventListener(MouseEvent.ROLL_OVER, enabl); bottomspalette.getChildAt(d0).addEventListener(MouseEvent.MOUSE_DOWN, bottomsclick); d0++; }; to = 0; while (to <= (topspalette.numChildren - 1)) { topspalette.getChildAt(to).addEventListener(MouseEvent.ROLL_OVER, enabl); topspalette.getChildAt(to).addEventListener(MouseEvent.MOUSE_DOWN, topsclick); to++; }; q0 = 0; while (q0 <= (dresspalette.numChildren - 1)) { dresspalette.getChildAt(q0).addEventListener(MouseEvent.ROLL_OVER, enabl); dresspalette.getChildAt(q0).addEventListener(MouseEvent.MOUSE_DOWN, dressclick); q0++; }; resetbtn.addEventListener(MouseEvent.CLICK, res); nextbtn.addEventListener(MouseEvent.CLICK, nx); nextbtn.buttonMode = true; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); }; } public function earringpal(_arg1:MouseEvent):void{ obj = earringpalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t15 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t16 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; }; } public function topsclick(_arg1:MouseEvent):void{ var t1:*; var t:Number; var topss:Class; var tops:Object; var puttops:Function; var tt = _arg1; puttops = function (){ removeChild(DisplayObject(tops)); if (tops.hitTestObject(doll)){ doll.tops.gotoAndStop((t + 1)); Globe.tops = doll.tops.currentFrame; doll.dress.gotoAndStop(1); Globe.dress = 0; dressf = 0; topsf = 1; }; }; t1 = tt.currentTarget; t = parseInt(t1.name.substr(1)); topss = (getDefinitionByName(("tops" + t)) as Class); tops = new (topss); addChild(DisplayObject(tops)); tops.x = mouseX; tops.y = mouseY; TweenMax.from(tops, 0.5, {scaleX:0.3, scaleY:0.3}); TweenLite.to(tops, 0.5, {x:250, y:150, 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:300, 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:280, y:100, 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 = "Julie benz"; variables.friendMail1 = popup.friend1.friendMail.text; variables.friendMail2 = popup.friend2.friendMail.text; variables.friendMail3 = popup.friend3.friendMail.text; variables.friendMail4 = popup.friend4.friendMail.text; variables.girldoll = girlDoll; switch (this.loaderInfo.parameters.lang){ case "fr": variables.path = "http://www.123peppy.com/fr/play/jeu-de-habillent-de-julie-benz"; break; case "de": variables.path = "http://www.123peppy.com/de/play/julie-benz-kleiden-spiel"; break; case "it": variables.path = "http://www.123peppy.com/it/play/julie-benz-gioco-di-vestire"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/gra-ubieranki-julie-benz"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/%D0%B4%D0%B6%D1%83%D0%BB%D0%B8-%D0%B1%D0%B5%D0%BD%D1%86-%D0%B8%D0%B3%D1%80%D1%8B-%D0%BE%D0%B4%D0%B5%D0%BD%D1%8C"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/julie-benz-giydirme-oyunlar"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/julie-benz-kl%C3%A4-upp-spel"; break; case "pt-br": variables.path = "http://www.123peppy.com/pt-br/play/julie-benz-jogo-de-vestir"; break; case "es": variables.path = "http://www.123peppy.com/es/play/julie-benz-juego-de-vestir"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/julie-benz-kleding-spelletjes"; break; default: variables.path = "http://www.123peppy.com/play/julie-benz-dress-game"; break; }; variables.name = t2.text; if (dolls.dress.currentFrame > 9){ variables.bg = 5; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame <= 9)))){ variables.bg = 4; } else { if ((((dolls.bottoms.currentFrame > 9)) && ((dolls.tops.currentFrame <= 9)))){ variables.bg = 3; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame > 9)))){ variables.bg = 2; } else { variables.bg = 1; }; }; }; }; trace(variables.bg); request.data = variables; sendToURL(request); TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } public function nextbtns(_arg1:MouseEvent):void{ Globe.tex = t1.text; trace(Globe.tex); nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function BeeMoving(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local2 = (mouseX - ball.x); _local3 = (mouseY - ball.y); ball.x = (ball.x + (_local2 * 0.2)); ball.y = (ball.y + (_local3 * 0.2)); _local4 = loaderInfo.bytesLoaded; _local5 = loaderInfo.bytesTotal; percentage = Math.round(((_local4 / _local5) * 100)); BitsLoaded.text = (((Math.round((_local4 / 0x0400)) + "kBs /") + Math.round((_local5 / 0x0400))) + "kBs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); if (this.loaderInfo.parameters.bg){ gotoAndStop(5); } else { gotoAndStop(2); }; }; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function chainclick(_arg1:MouseEvent):void{ var t1:*; var t:Number; var chainss:Class; var chains:Object; var putchains:Function; var tt = _arg1; putchains = function (){ removeChild(DisplayObject(chains)); if (chains.hitTestObject(doll)){ doll.chain.gotoAndStop((t + 1)); Globe.chain = doll.chain.currentFrame; }; }; t1 = tt.currentTarget; t = parseInt(t1.name.substr(1)); chainss = (getDefinitionByName(("chain" + t)) as Class); chains = new (chainss); addChild(DisplayObject(chains)); chains.x = mouseX; chains.y = mouseY; TweenLite.to(chains, 0.5, {x:275, y:175, 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:250, y:150, 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:290, y:150, ease:Linear.easeNone, onComplete:putearss}); } } }//package julie_fla
Section 44
//shoes_129 (julie_fla.shoes_129) package julie_fla { import flash.display.*; public dynamic class shoes_129 extends MovieClip { public function shoes_129(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package julie_fla
Section 45
//shoespalette_281 (julie_fla.shoespalette_281) package julie_fla { import flash.display.*; public dynamic class shoespalette_281 extends MovieClip { public var z1:MovieClip; public var z4:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package julie_fla
Section 46
//Timeline_101 (julie_fla.Timeline_101) package julie_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 julie_fla
Section 47
//Timeline_104 (julie_fla.Timeline_104) package julie_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 julie_fla
Section 48
//Timeline_18 (julie_fla.Timeline_18) package julie_fla { import flash.display.*; public dynamic class Timeline_18 extends MovieClip { public function Timeline_18(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package julie_fla
Section 49
//Timeline_21 (julie_fla.Timeline_21) package julie_fla { import flash.display.*; public dynamic class Timeline_21 extends MovieClip { public function Timeline_21(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package julie_fla
Section 50
//Timeline_289 (julie_fla.Timeline_289) package julie_fla { import flash.display.*; public dynamic class Timeline_289 extends MovieClip { public function Timeline_289(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package julie_fla
Section 51
//Timeline_295 (julie_fla.Timeline_295) package julie_fla { import flash.display.*; public dynamic class Timeline_295 extends MovieClip { public function Timeline_295(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package julie_fla
Section 52
//Timeline_298 (julie_fla.Timeline_298) package julie_fla { import flash.display.*; public dynamic class Timeline_298 extends MovieClip { public function Timeline_298(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package julie_fla
Section 53
//Timeline_299 (julie_fla.Timeline_299) package julie_fla { import flash.display.*; public dynamic class Timeline_299 extends MovieClip { public function Timeline_299(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package julie_fla
Section 54
//Timeline_300 (julie_fla.Timeline_300) package julie_fla { import flash.display.*; import flash.text.*; public dynamic class Timeline_300 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 julie_fla
Section 55
//Timeline_309 (julie_fla.Timeline_309) package julie_fla { import flash.display.*; import flash.text.*; public dynamic class Timeline_309 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; } }//package julie_fla
Section 56
//Timeline_7 (julie_fla.Timeline_7) package julie_fla { import flash.display.*; public dynamic class Timeline_7 extends MovieClip { public var masker:MovieClip; } }//package julie_fla
Section 57
//Timeline_81 (julie_fla.Timeline_81) package julie_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 julie_fla
Section 58
//Timeline_86 (julie_fla.Timeline_86) package julie_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 julie_fla
Section 59
//Timeline_89 (julie_fla.Timeline_89) package julie_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 julie_fla
Section 60
//Timeline_92 (julie_fla.Timeline_92) package julie_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 julie_fla
Section 61
//Timeline_95 (julie_fla.Timeline_95) package julie_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 julie_fla
Section 62
//Timeline_98 (julie_fla.Timeline_98) package julie_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 julie_fla
Section 63
//tops_183 (julie_fla.tops_183) package julie_fla { import flash.display.*; public dynamic class tops_183 extends MovieClip { public function tops_183(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package julie_fla
Section 64
//topspalette_283 (julie_fla.topspalette_283) package julie_fla { import flash.display.*; public dynamic class topspalette_283 extends MovieClip { public var z7:MovieClip; public var z8:MovieClip; public var z9:MovieClip; public var z4:MovieClip; public var z6:MovieClip; public var z1:MovieClip; public var z10:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package julie_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
//hair5 (hair5) package { import flash.display.*; public dynamic class hair5 extends MovieClip { } }//package
Section 107
//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 108
//shoes1 (shoes1) package { import flash.display.*; public dynamic class shoes1 extends MovieClip { } }//package
Section 109
//shoes2 (shoes2) package { import flash.display.*; public dynamic class shoes2 extends MovieClip { } }//package
Section 110
//shoes3 (shoes3) package { import flash.display.*; public dynamic class shoes3 extends MovieClip { } }//package
Section 111
//shoes4 (shoes4) package { import flash.display.*; public dynamic class shoes4 extends MovieClip { } }//package
Section 112
//shoes5 (shoes5) package { import flash.display.*; public dynamic class shoes5 extends MovieClip { } }//package
Section 113
//tops1 (tops1) package { import flash.display.*; public dynamic class tops1 extends MovieClip { } }//package
Section 114
//tops10 (tops10) package { import flash.display.*; public dynamic class tops10 extends MovieClip { } }//package
Section 115
//tops2 (tops2) package { import flash.display.*; public dynamic class tops2 extends MovieClip { } }//package
Section 116
//tops3 (tops3) package { import flash.display.*; public dynamic class tops3 extends MovieClip { } }//package
Section 117
//tops4 (tops4) package { import flash.display.*; public dynamic class tops4 extends MovieClip { } }//package
Section 118
//tops5 (tops5) package { import flash.display.*; public dynamic class tops5 extends MovieClip { } }//package
Section 119
//tops6 (tops6) package { import flash.display.*; public dynamic class tops6 extends MovieClip { } }//package
Section 120
//tops7 (tops7) package { import flash.display.*; public dynamic class tops7 extends MovieClip { } }//package
Section 121
//tops8 (tops8) package { import flash.display.*; public dynamic class tops8 extends MovieClip { } }//package
Section 122
//tops9 (tops9) package { import flash.display.*; public dynamic class tops9 extends MovieClip { } }//package

Library Items

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

Instance Names

"preloader"Frame 1Symbol 283 MovieClip {julie_fla.Timeline_7}
"BitsLoaded"Frame 1Symbol 285 EditableText
"ball"Frame 1Symbol 330 MovieClip
"pl"Frame 2Symbol 357 MovieClip {julie_fla.Timeline_21}
"bottom"Frame 3Symbol 484 MovieClip {julie_fla.Timeline_81}
"top"Frame 3Symbol 498 MovieClip {julie_fla.Timeline_86}
"shoe"Frame 3Symbol 512 MovieClip {julie_fla.Timeline_89}
"chain"Frame 3Symbol 526 MovieClip {julie_fla.Timeline_92}
"earring"Frame 3Symbol 540 MovieClip {julie_fla.Timeline_95}
"hair"Frame 3Symbol 554 MovieClip {julie_fla.Timeline_98}
"nextbtn"Frame 3Symbol 568 MovieClip {julie_fla.Timeline_101}
"resetbtn"Frame 3Symbol 579 MovieClip {julie_fla.Timeline_104}
"logo_mc"Frame 3Symbol 584 Button
"sndon"Frame 3Symbol 592 Button
"sndoff"Frame 3Symbol 593 Button
"dress"Frame 3Symbol 616 MovieClip {julie_fla.dressbtnsdfsdf_113}
"obs"Frame 3Symbol 618 MovieClip
"doll"Frame 3Symbol 648 MovieClip {julie_fla.doll_119}
"dresspalette"Frame 3Symbol 649 MovieClip {julie_fla.dresspalette_280}
"shoespalette"Frame 3Symbol 650 MovieClip {julie_fla.shoespalette_281}
"bottomspalette"Frame 3Symbol 651 MovieClip {julie_fla.bottomspalette_282}
"topspalette"Frame 3Symbol 652 MovieClip {julie_fla.topspalette_283}
"hairpalette"Frame 3Symbol 653 MovieClip {julie_fla.haIRSPLA_284}
"chainspalette"Frame 3Symbol 654 MovieClip {julie_fla.chainspla_285}
"earringpalette"Frame 3Symbol 655 MovieClip {julie_fla.earringoak_286}
"chainstand"Frame 4Symbol 656 MovieClip
"earstand"Frame 4Symbol 657 MovieClip
"t1"Frame 4Symbol 674 EditableText
"nextbtn"Frame 4Symbol 568 MovieClip {julie_fla.Timeline_101}
"obs"Frame 4Symbol 676 MovieClip
"nex"Frame 5Symbol 693 MovieClip {julie_fla.Timeline_295}
"email"Frame 5Symbol 704 MovieClip {julie_fla.Timeline_298}
"t2"Frame 5Symbol 706 EditableText
"playmore"Frame 5Symbol 718 MovieClip {julie_fla.Timeline_299}
"obs"Frame 5Symbol 618 MovieClip
"dolls"Frame 5Symbol 648 MovieClip {julie_fla.doll_119}
"popup"Frame 5Symbol 772 MovieClip {julie_fla.Timeline_300}
"masker"Symbol 283 MovieClip {julie_fla.Timeline_7} Frame 1Symbol 278 MovieClip
"bottom"Symbol 484 MovieClip {julie_fla.Timeline_81} Frame 1Symbol 472 Button
"top"Symbol 498 MovieClip {julie_fla.Timeline_86} Frame 1Symbol 486 Button
"shoe"Symbol 512 MovieClip {julie_fla.Timeline_89} Frame 1Symbol 500 Button
"chain"Symbol 526 MovieClip {julie_fla.Timeline_92} Frame 1Symbol 514 Button
"earring"Symbol 540 MovieClip {julie_fla.Timeline_95} Frame 1Symbol 528 Button
"hair"Symbol 554 MovieClip {julie_fla.Timeline_98} Frame 1Symbol 542 Button
"nextbtn"Symbol 568 MovieClip {julie_fla.Timeline_101} Frame 1Symbol 556 Button
"resetbtn"Symbol 579 MovieClip {julie_fla.Timeline_104} Frame 1Symbol 570 Button
"dress"Symbol 616 MovieClip {julie_fla.dressbtnsdfsdf_113} Frame 1Symbol 605 Button
"shoes"Symbol 648 MovieClip {julie_fla.doll_119} Frame 1Symbol 639 MovieClip {julie_fla.shoes_129}
"dress"Symbol 648 MovieClip {julie_fla.doll_119} Frame 1Symbol 640 MovieClip {julie_fla.dress_143}
"tops"Symbol 648 MovieClip {julie_fla.doll_119} Frame 1Symbol 641 MovieClip {julie_fla.tops_183}
"bottoms"Symbol 648 MovieClip {julie_fla.doll_119} Frame 1Symbol 642 MovieClip {julie_fla.bottoms_206}
"chain"Symbol 648 MovieClip {julie_fla.doll_119} Frame 1Symbol 643 MovieClip {julie_fla.chians_235}
"hair"Symbol 648 MovieClip {julie_fla.doll_119} Frame 1Symbol 644 MovieClip {julie_fla.hairs_254}
"earring"Symbol 648 MovieClip {julie_fla.doll_119} Frame 1Symbol 645 MovieClip {julie_fla.ear_263}
"z1"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 243 MovieClip
"z2"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 238 MovieClip
"z3"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 229 MovieClip
"z4"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 226 MovieClip
"z5"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 221 MovieClip
"z6"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 215 MovieClip
"z7"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 210 MovieClip
"z8"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 207 MovieClip
"z9"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 203 MovieClip
"z10"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 196 MovieClip
"z11"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 190 MovieClip
"z12"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 186 MovieClip
"z13"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 183 MovieClip
"z14"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 175 MovieClip
"z15"Symbol 649 MovieClip {julie_fla.dresspalette_280} Frame 1Symbol 168 MovieClip
"z5"Symbol 650 MovieClip {julie_fla.shoespalette_281} Frame 1Symbol 246 MovieClip
"z1"Symbol 650 MovieClip {julie_fla.shoespalette_281} Frame 1Symbol 264 MovieClip
"z2"Symbol 650 MovieClip {julie_fla.shoespalette_281} Frame 1Symbol 259 MovieClip
"z3"Symbol 650 MovieClip {julie_fla.shoespalette_281} Frame 1Symbol 254 MovieClip
"z4"Symbol 650 MovieClip {julie_fla.shoespalette_281} Frame 1Symbol 249 MovieClip
"z5"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 95 MovieClip
"z6"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 91 MovieClip
"z7"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 87 MovieClip
"z4"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 98 MovieClip
"z3"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 105 MovieClip
"z8"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 82 MovieClip
"z9"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 76 MovieClip
"z2"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 113 MovieClip
"z1"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 119 MovieClip
"z10"Symbol 651 MovieClip {julie_fla.bottomspalette_282} Frame 1Symbol 67 MovieClip
"z2"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 160 MovieClip
"z9"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 126 MovieClip
"z5"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 143 MovieClip
"z4"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 148 MovieClip
"z8"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 132 MovieClip
"z6"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 139 MovieClip
"z3"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 154 MovieClip
"z10"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 122 MovieClip
"z1"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 165 MovieClip
"z7"Symbol 652 MovieClip {julie_fla.topspalette_283} Frame 1Symbol 136 MovieClip
"h2"Symbol 653 MovieClip {julie_fla.haIRSPLA_284} Frame 1Symbol 34 MovieClip
"h4"Symbol 653 MovieClip {julie_fla.haIRSPLA_284} Frame 1Symbol 30 MovieClip
"h5"Symbol 653 MovieClip {julie_fla.haIRSPLA_284} Frame 1Symbol 27 MovieClip
"h3"Symbol 653 MovieClip {julie_fla.haIRSPLA_284} Frame 1Symbol 27 MovieClip
"h1"Symbol 653 MovieClip {julie_fla.haIRSPLA_284} Frame 1Symbol 30 MovieClip
"z1"Symbol 654 MovieClip {julie_fla.chainspla_285} Frame 1Symbol 62 MovieClip
"z2"Symbol 654 MovieClip {julie_fla.chainspla_285} Frame 1Symbol 58 MovieClip
"z3"Symbol 654 MovieClip {julie_fla.chainspla_285} Frame 1Symbol 51 MovieClip
"z4"Symbol 654 MovieClip {julie_fla.chainspla_285} Frame 1Symbol 43 MovieClip
"z5"Symbol 654 MovieClip {julie_fla.chainspla_285} Frame 1Symbol 39 MovieClip
"z2"Symbol 655 MovieClip {julie_fla.earringoak_286} Frame 1Symbol 21 MovieClip
"z1"Symbol 655 MovieClip {julie_fla.earringoak_286} Frame 1Symbol 24 MovieClip
"z3"Symbol 655 MovieClip {julie_fla.earringoak_286} Frame 1Symbol 16 MovieClip
"z4"Symbol 655 MovieClip {julie_fla.earringoak_286} Frame 1Symbol 9 MovieClip
"z5"Symbol 655 MovieClip {julie_fla.earringoak_286} Frame 1Symbol 6 MovieClip
"close"Symbol 752 MovieClip {julie_fla.Timeline_309} Frame 1Symbol 748 Button
"friendMail"Symbol 752 MovieClip {julie_fla.Timeline_309} Frame 1Symbol 751 EditableText
"friend4"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 752 MovieClip {julie_fla.Timeline_309}
"friend3"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 752 MovieClip {julie_fla.Timeline_309}
"friend2"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 752 MovieClip {julie_fla.Timeline_309}
"friend1"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 752 MovieClip {julie_fla.Timeline_309}
"close"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 748 Button
"nameDetail"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 753 EditableText
"mailDetail"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 754 EditableText
"messageDetail"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 755 EditableText
"friendName"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 756 EditableText
"friendMail"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 757 EditableText
"addition"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 767 Button
"submit"Symbol 772 MovieClip {julie_fla.Timeline_300} Frame 1Symbol 771 Button

Special Tags

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




http://swfchan.com/24/118202/info.shtml
Created: 7/3 -2019 09:09:34 Last modified: 7/3 -2019 09:09:34 Server time: 25/04 -2024 04:45:57