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

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

lisa-kudrow-dress-up-game.swf

This is the info page for
Flash #126980

(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
//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 5
//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 6
//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 7
//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 8
//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 9
//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 10
//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 11
//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 12
//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 13
//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 14
//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 15
//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 16
//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 17
//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 18
//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 19
//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 20
//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 21
//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 22
//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 23
//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 24
//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 25
//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 26
//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 27
//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 28
//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 29
//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 30
//bottoms_204 (lisa_fla.bottoms_204) package lisa_fla { import flash.display.*; public dynamic class bottoms_204 extends MovieClip { public function bottoms_204(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package lisa_fla
Section 31
//bottomspalette_140 (lisa_fla.bottomspalette_140) package lisa_fla { import flash.display.*; public dynamic class bottomspalette_140 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 lisa_fla
Section 32
//chains_226 (lisa_fla.chains_226) package lisa_fla { import flash.display.*; public dynamic class chains_226 extends MovieClip { public function chains_226(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package lisa_fla
Section 33
//chainspla_164 (lisa_fla.chainspla_164) package lisa_fla { import flash.display.*; public dynamic class chainspla_164 extends MovieClip { public var z1:MovieClip; public var z4:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package lisa_fla
Section 34
//doll_170 (lisa_fla.doll_170) package lisa_fla { import flash.display.*; public dynamic class doll_170 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 lisa_fla
Section 35
//dress_188 (lisa_fla.dress_188) package lisa_fla { import flash.display.*; public dynamic class dress_188 extends MovieClip { public function dress_188(){ addFrameScript(0, frame1, 16, frame17); } function frame1(){ stop(); } function frame17(){ gotoAndStop(2); } } }//package lisa_fla
Section 36
//dressbtnsdfsdf_113 (lisa_fla.dressbtnsdfsdf_113) package lisa_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 lisa_fla
Section 37
//dresspalette_119 (lisa_fla.dresspalette_119) package lisa_fla { import flash.display.*; public dynamic class dresspalette_119 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 lisa_fla
Section 38
//earringoak_267 (lisa_fla.earringoak_267) package lisa_fla { import flash.display.*; public dynamic class earringoak_267 extends MovieClip { public var z1:MovieClip; public var z4:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package lisa_fla
Section 39
//earrings_245 (lisa_fla.earrings_245) package lisa_fla { import flash.display.*; public dynamic class earrings_245 extends MovieClip { public function earrings_245(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package lisa_fla
Section 40
//HAIRS_235 (lisa_fla.HAIRS_235) package lisa_fla { import flash.display.*; public dynamic class HAIRS_235 extends MovieClip { public function HAIRS_235(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ stop(); } } }//package lisa_fla
Section 41
//haIRSPLA_266 (lisa_fla.haIRSPLA_266) package lisa_fla { import flash.display.*; public dynamic class haIRSPLA_266 extends MovieClip { public var z1:MovieClip; public var z4:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package lisa_fla
Section 42
//MainTimeline (lisa_fla.MainTimeline) package lisa_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import flash.filters.*; import fl.transitions.easing.*; import gs.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 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 BitsLoaded:TextField; 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:275, y:500, ease:Linear.easeNone, onComplete:putshoess}); } 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(); 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); obs.mouseEnabled = false; playmore.buttonMode = true; nex.buttonMode = true; 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); playmore.addEventListener(MouseEvent.ROLL_OVER, rollover5); playmore.addEventListener(MouseEvent.ROLL_OUT, rollout5); nex.addEventListener(MouseEvent.ROLL_OVER, rollover5); nex.addEventListener(MouseEvent.ROLL_OUT, rollout5); email.addEventListener(MouseEvent.ROLL_OVER, rollover5); email.addEventListener(MouseEvent.ROLL_OUT, rollout5); } function frame1(){ stop(); contestMenu = new ContextMenu(); contestMenu.hideBuiltInItems(); contextmenuItem = new ContextMenuItem("www.123peppy.com"); contextmenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, Site); contestMenu.customItems.push(contextmenuItem); this.contextMenu = contestMenu; percentage = 0; stage.addEventListener(Event.ENTER_FRAME, BeeMoving); } function frame2(){ stop(); Globe.playback = true; if (bulletChannel){ bulletChannel.stop(); }; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); pl.gotoAndStop(Globe.temp); switch (this.loaderInfo.parameters.lang){ case "fr": Globe.temp = 6; pl.gotoAndStop(Globe.temp); break; case "de": Globe.temp = 5; pl.gotoAndStop(Globe.temp); break; case "it": Globe.temp = 4; pl.gotoAndStop(Globe.temp); break; case "pl": Globe.temp = 10; pl.gotoAndStop(Globe.temp); break; case "ru": Globe.temp = 3; pl.gotoAndStop(Globe.temp); break; case "tr": Globe.temp = 7; pl.gotoAndStop(Globe.temp); break; case "sv": Globe.temp = 8; pl.gotoAndStop(Globe.temp); break; case "pt_br": Globe.temp = 11; pl.gotoAndStop(Globe.temp); break; case "es": Globe.temp = 9; pl.gotoAndStop(Globe.temp); break; case "nl": Globe.temp = 2; pl.gotoAndStop(Globe.temp); break; default: Globe.temp = 1; pl.gotoAndStop(Globe.temp); break; }; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } function frame3(){ MochiBot.track(this, "af3e7f57"); 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:260, y:200, ease:Linear.easeNone, onComplete:puttops}); } public function bottompal(_arg1:MouseEvent):void{ obj = bottomspalette; obj.mouseChildren = true; obj.mouseEnabled = true; if (obj != prev){ obj.visible = true; t11 = new Tween(prev, "alpha", Regular.easeOut, 1, 0, 1.5, true); t12 = new Tween(obj, "alpha", Regular.easeOut, 0, 1, 1.5, true); prev.visible = true; prev.mouseChildren = false; prev.mouseEnabled = false; prev = obj; }; } public function rollout5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function res(_arg1:MouseEvent):void{ doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.hair.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.earring.gotoAndStop(1); dressf = 0; topsf = 0; bots = 0; Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.shoes = 0; Globe.hair = 0; } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function 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:250, 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:275, y:120, ease:Linear.easeNone, onComplete:puthairs}); } 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 sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function enabl(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; } 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:200, 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):void{ 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(("dresss" + 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:260, y:200, 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(("earring" + t)) as Class); ears = new (earss); addChild(DisplayObject(ears)); ears.x = mouseX; ears.y = mouseY; TweenLite.to(ears, 0.5, {x:300, y:165, ease:Linear.easeNone, onComplete:putearss}); } } }//package lisa_fla
Section 43
//shoes_175 (lisa_fla.shoes_175) package lisa_fla { import flash.display.*; public dynamic class shoes_175 extends MovieClip { public function shoes_175(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package lisa_fla
Section 44
//shoespalette_265 (lisa_fla.shoespalette_265) package lisa_fla { import flash.display.*; public dynamic class shoespalette_265 extends MovieClip { public var z1:MovieClip; public var z4:MovieClip; public var z5:MovieClip; public var z3:MovieClip; public var z2:MovieClip; } }//package lisa_fla
Section 45
//Timeline_101 (lisa_fla.Timeline_101) package lisa_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 lisa_fla
Section 46
//Timeline_104 (lisa_fla.Timeline_104) package lisa_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 lisa_fla
Section 47
//Timeline_18 (lisa_fla.Timeline_18) package lisa_fla { import flash.display.*; public dynamic class Timeline_18 extends MovieClip { public function Timeline_18(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package lisa_fla
Section 48
//Timeline_21 (lisa_fla.Timeline_21) package lisa_fla { import flash.display.*; public dynamic class Timeline_21 extends MovieClip { public function Timeline_21(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package lisa_fla
Section 49
//Timeline_270 (lisa_fla.Timeline_270) package lisa_fla { import flash.display.*; public dynamic class Timeline_270 extends MovieClip { public function Timeline_270(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package lisa_fla
Section 50
//Timeline_276 (lisa_fla.Timeline_276) package lisa_fla { import flash.display.*; public dynamic class Timeline_276 extends MovieClip { public function Timeline_276(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package lisa_fla
Section 51
//Timeline_279 (lisa_fla.Timeline_279) package lisa_fla { import flash.display.*; public dynamic class Timeline_279 extends MovieClip { public function Timeline_279(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package lisa_fla
Section 52
//Timeline_280 (lisa_fla.Timeline_280) package lisa_fla { import flash.display.*; public dynamic class Timeline_280 extends MovieClip { public function Timeline_280(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package lisa_fla
Section 53
//Timeline_281 (lisa_fla.Timeline_281) package lisa_fla { import flash.display.*; import flash.text.*; public dynamic class Timeline_281 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 lisa_fla
Section 54
//Timeline_290 (lisa_fla.Timeline_290) package lisa_fla { import flash.display.*; import flash.text.*; public dynamic class Timeline_290 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; } }//package lisa_fla
Section 55
//Timeline_7 (lisa_fla.Timeline_7) package lisa_fla { import flash.display.*; public dynamic class Timeline_7 extends MovieClip { public var masker:MovieClip; } }//package lisa_fla
Section 56
//Timeline_81 (lisa_fla.Timeline_81) package lisa_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 lisa_fla
Section 57
//Timeline_86 (lisa_fla.Timeline_86) package lisa_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 lisa_fla
Section 58
//Timeline_89 (lisa_fla.Timeline_89) package lisa_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 lisa_fla
Section 59
//Timeline_92 (lisa_fla.Timeline_92) package lisa_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 lisa_fla
Section 60
//Timeline_95 (lisa_fla.Timeline_95) package lisa_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 lisa_fla
Section 61
//Timeline_98 (lisa_fla.Timeline_98) package lisa_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 lisa_fla
Section 62
//tops_215 (lisa_fla.tops_215) package lisa_fla { import flash.display.*; public dynamic class tops_215 extends MovieClip { public function tops_215(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package lisa_fla
Section 63
//topspalette_153 (lisa_fla.topspalette_153) package lisa_fla { import flash.display.*; public dynamic class topspalette_153 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 lisa_fla
Section 64
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 65
//bottoms1 (bottoms1) package { import flash.display.*; public dynamic class bottoms1 extends MovieClip { } }//package
Section 66
//bottoms10 (bottoms10) package { import flash.display.*; public dynamic class bottoms10 extends MovieClip { } }//package
Section 67
//bottoms2 (bottoms2) package { import flash.display.*; public dynamic class bottoms2 extends MovieClip { } }//package
Section 68
//bottoms3 (bottoms3) package { import flash.display.*; public dynamic class bottoms3 extends MovieClip { } }//package
Section 69
//bottoms4 (bottoms4) package { import flash.display.*; public dynamic class bottoms4 extends MovieClip { } }//package
Section 70
//bottoms5 (bottoms5) package { import flash.display.*; public dynamic class bottoms5 extends MovieClip { } }//package
Section 71
//bottoms6 (bottoms6) package { import flash.display.*; public dynamic class bottoms6 extends MovieClip { } }//package
Section 72
//bottoms7 (bottoms7) package { import flash.display.*; public dynamic class bottoms7 extends MovieClip { } }//package
Section 73
//bottoms8 (bottoms8) package { import flash.display.*; public dynamic class bottoms8 extends MovieClip { } }//package
Section 74
//bottoms9 (bottoms9) package { import flash.display.*; public dynamic class bottoms9 extends MovieClip { } }//package
Section 75
//chain1 (chain1) package { import flash.display.*; public dynamic class chain1 extends MovieClip { } }//package
Section 76
//chain2 (chain2) package { import flash.display.*; public dynamic class chain2 extends MovieClip { } }//package
Section 77
//chain3 (chain3) package { import flash.display.*; public dynamic class chain3 extends MovieClip { } }//package
Section 78
//chain4 (chain4) package { import flash.display.*; public dynamic class chain4 extends MovieClip { } }//package
Section 79
//chain5 (chain5) package { import flash.display.*; public dynamic class chain5 extends MovieClip { } }//package
Section 80
//dresss1 (dresss1) package { import flash.display.*; public dynamic class dresss1 extends MovieClip { } }//package
Section 81
//dresss10 (dresss10) package { import flash.display.*; public dynamic class dresss10 extends MovieClip { } }//package
Section 82
//dresss11 (dresss11) package { import flash.display.*; public dynamic class dresss11 extends MovieClip { } }//package
Section 83
//dresss12 (dresss12) package { import flash.display.*; public dynamic class dresss12 extends MovieClip { } }//package
Section 84
//dresss13 (dresss13) package { import flash.display.*; public dynamic class dresss13 extends MovieClip { } }//package
Section 85
//dresss14 (dresss14) package { import flash.display.*; public dynamic class dresss14 extends MovieClip { } }//package
Section 86
//dresss15 (dresss15) package { import flash.display.*; public dynamic class dresss15 extends MovieClip { } }//package
Section 87
//dresss2 (dresss2) package { import flash.display.*; public dynamic class dresss2 extends MovieClip { } }//package
Section 88
//dresss3 (dresss3) package { import flash.display.*; public dynamic class dresss3 extends MovieClip { } }//package
Section 89
//dresss4 (dresss4) package { import flash.display.*; public dynamic class dresss4 extends MovieClip { } }//package
Section 90
//dresss5 (dresss5) package { import flash.display.*; public dynamic class dresss5 extends MovieClip { } }//package
Section 91
//dresss6 (dresss6) package { import flash.display.*; public dynamic class dresss6 extends MovieClip { } }//package
Section 92
//dresss7 (dresss7) package { import flash.display.*; public dynamic class dresss7 extends MovieClip { } }//package
Section 93
//dresss8 (dresss8) package { import flash.display.*; public dynamic class dresss8 extends MovieClip { } }//package
Section 94
//dresss9 (dresss9) package { import flash.display.*; public dynamic class dresss9 extends MovieClip { } }//package
Section 95
//ear1 (ear1) package { import flash.display.*; public dynamic class ear1 extends MovieClip { } }//package
Section 96
//ear3 (ear3) package { import flash.display.*; public dynamic class ear3 extends MovieClip { } }//package
Section 97
//ear4 (ear4) package { import flash.display.*; public dynamic class ear4 extends MovieClip { } }//package
Section 98
//ear5 (ear5) package { import flash.display.*; public dynamic class ear5 extends MovieClip { } }//package
Section 99
//earring1 (earring1) package { import flash.display.*; public dynamic class earring1 extends MovieClip { } }//package
Section 100
//earring2 (earring2) package { import flash.display.*; public dynamic class earring2 extends MovieClip { } }//package
Section 101
//earring3 (earring3) package { import flash.display.*; public dynamic class earring3 extends MovieClip { } }//package
Section 102
//earring4 (earring4) package { import flash.display.*; public dynamic class earring4 extends MovieClip { } }//package
Section 103
//earring5 (earring5) package { import flash.display.*; public dynamic class earring5 extends MovieClip { } }//package
Section 104
//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 105
//hair1 (hair1) package { import flash.display.*; public dynamic class hair1 extends MovieClip { } }//package
Section 106
//hair2 (hair2) package { import flash.display.*; public dynamic class hair2 extends MovieClip { } }//package
Section 107
//hair3 (hair3) package { import flash.display.*; public dynamic class hair3 extends MovieClip { } }//package
Section 108
//hair4 (hair4) package { import flash.display.*; public dynamic class hair4 extends MovieClip { } }//package
Section 109
//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 110
//shoes1 (shoes1) package { import flash.display.*; public dynamic class shoes1 extends MovieClip { } }//package
Section 111
//shoes2 (shoes2) package { import flash.display.*; public dynamic class shoes2 extends MovieClip { } }//package
Section 112
//shoes3 (shoes3) package { import flash.display.*; public dynamic class shoes3 extends MovieClip { } }//package
Section 113
//shoes4 (shoes4) package { import flash.display.*; public dynamic class shoes4 extends MovieClip { } }//package
Section 114
//shoes5 (shoes5) package { import flash.display.*; public dynamic class shoes5 extends MovieClip { } }//package
Section 115
//tops1 (tops1) package { import flash.display.*; public dynamic class tops1 extends MovieClip { } }//package
Section 116
//tops10 (tops10) package { import flash.display.*; public dynamic class tops10 extends MovieClip { } }//package
Section 117
//tops2 (tops2) package { import flash.display.*; public dynamic class tops2 extends MovieClip { } }//package
Section 118
//tops3 (tops3) package { import flash.display.*; public dynamic class tops3 extends MovieClip { } }//package
Section 119
//tops4 (tops4) package { import flash.display.*; public dynamic class tops4 extends MovieClip { } }//package
Section 120
//tops5 (tops5) package { import flash.display.*; public dynamic class tops5 extends MovieClip { } }//package
Section 121
//tops6 (tops6) package { import flash.display.*; public dynamic class tops6 extends MovieClip { } }//package
Section 122
//tops7 (tops7) package { import flash.display.*; public dynamic class tops7 extends MovieClip { } }//package
Section 123
//tops8 (tops8) package { import flash.display.*; public dynamic class tops8 extends MovieClip { } }//package
Section 124
//tops9 (tops9) package { import flash.display.*; public dynamic class tops9 extends MovieClip { } }//package

Library Items

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

Instance Names

"preloader"Frame 1Symbol 227 MovieClip {lisa_fla.Timeline_7}
"BitsLoaded"Frame 1Symbol 229 EditableText
"ball"Frame 1Symbol 274 MovieClip
"pl"Frame 2Symbol 301 MovieClip {lisa_fla.Timeline_21}
"bottom"Frame 3Symbol 428 MovieClip {lisa_fla.Timeline_81}
"top"Frame 3Symbol 442 MovieClip {lisa_fla.Timeline_86}
"shoe"Frame 3Symbol 456 MovieClip {lisa_fla.Timeline_89}
"chain"Frame 3Symbol 470 MovieClip {lisa_fla.Timeline_92}
"earring"Frame 3Symbol 484 MovieClip {lisa_fla.Timeline_95}
"hair"Frame 3Symbol 498 MovieClip {lisa_fla.Timeline_98}
"nextbtn"Frame 3Symbol 512 MovieClip {lisa_fla.Timeline_101}
"resetbtn"Frame 3Symbol 523 MovieClip {lisa_fla.Timeline_104}
"logo_mc"Frame 3Symbol 528 Button
"sndon"Frame 3Symbol 536 Button
"sndoff"Frame 3Symbol 537 Button
"dress"Frame 3Symbol 560 MovieClip {lisa_fla.dressbtnsdfsdf_113}
"obs"Frame 3Symbol 562 MovieClip
"dresspalette"Frame 3Symbol 563 MovieClip {lisa_fla.dresspalette_119}
"bottomspalette"Frame 3Symbol 564 MovieClip {lisa_fla.bottomspalette_140}
"topspalette"Frame 3Symbol 565 MovieClip {lisa_fla.topspalette_153}
"chainspalette"Frame 3Symbol 566 MovieClip {lisa_fla.chainspla_164}
"doll"Frame 3Symbol 588 MovieClip {lisa_fla.doll_170}
"shoespalette"Frame 3Symbol 589 MovieClip {lisa_fla.shoespalette_265}
"hairpalette"Frame 3Symbol 590 MovieClip {lisa_fla.haIRSPLA_266}
"earringpalette"Frame 3Symbol 591 MovieClip {lisa_fla.earringoak_267}
"chainstand"Frame 4Symbol 592 MovieClip
"earstand"Frame 4Symbol 593 MovieClip
"t1"Frame 4Symbol 610 EditableText
"nextbtn"Frame 4Symbol 512 MovieClip {lisa_fla.Timeline_101}
"obs"Frame 4Symbol 612 MovieClip
"nex"Frame 5Symbol 629 MovieClip {lisa_fla.Timeline_276}
"email"Frame 5Symbol 640 MovieClip {lisa_fla.Timeline_279}
"t2"Frame 5Symbol 642 EditableText
"playmore"Frame 5Symbol 654 MovieClip {lisa_fla.Timeline_280}
"obs"Frame 5Symbol 562 MovieClip
"dolls"Frame 5Symbol 588 MovieClip {lisa_fla.doll_170}
"popup"Frame 5Symbol 708 MovieClip {lisa_fla.Timeline_281}
"masker"Symbol 227 MovieClip {lisa_fla.Timeline_7} Frame 1Symbol 222 MovieClip
"bottom"Symbol 428 MovieClip {lisa_fla.Timeline_81} Frame 1Symbol 416 Button
"top"Symbol 442 MovieClip {lisa_fla.Timeline_86} Frame 1Symbol 430 Button
"shoe"Symbol 456 MovieClip {lisa_fla.Timeline_89} Frame 1Symbol 444 Button
"chain"Symbol 470 MovieClip {lisa_fla.Timeline_92} Frame 1Symbol 458 Button
"earring"Symbol 484 MovieClip {lisa_fla.Timeline_95} Frame 1Symbol 472 Button
"hair"Symbol 498 MovieClip {lisa_fla.Timeline_98} Frame 1Symbol 486 Button
"nextbtn"Symbol 512 MovieClip {lisa_fla.Timeline_101} Frame 1Symbol 500 Button
"resetbtn"Symbol 523 MovieClip {lisa_fla.Timeline_104} Frame 1Symbol 514 Button
"dress"Symbol 560 MovieClip {lisa_fla.dressbtnsdfsdf_113} Frame 1Symbol 549 Button
"z1"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 189 MovieClip
"z2"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 185 MovieClip
"z3"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 180 MovieClip
"z4"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 175 MovieClip
"z5"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 171 MovieClip
"z6"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 159 MovieClip
"z8"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 151 MovieClip
"z9"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 147 MovieClip
"z10"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 144 MovieClip
"z11"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 141 MovieClip
"z12"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 136 MovieClip
"z13"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 132 MovieClip
"z14"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 128 MovieClip
"z15"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 125 MovieClip
"z7"Symbol 563 MovieClip {lisa_fla.dresspalette_119} Frame 1Symbol 155 MovieClip
"z1"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 122 MovieClip
"z2"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 119 MovieClip
"z3"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 116 MovieClip
"z4"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 111 MovieClip
"z5"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 107 MovieClip
"z6"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 103 MovieClip
"z7"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 98 MovieClip
"z8"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 95 MovieClip
"z9"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 91 MovieClip
"z10"Symbol 564 MovieClip {lisa_fla.bottomspalette_140} Frame 1Symbol 88 MovieClip
"z1"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 85 MovieClip
"z2"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 81 MovieClip
"z3"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 77 MovieClip
"z4"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 74 MovieClip
"z5"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 71 MovieClip
"z6"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 68 MovieClip
"z7"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 65 MovieClip
"z8"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 62 MovieClip
"z9"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 58 MovieClip
"z10"Symbol 565 MovieClip {lisa_fla.topspalette_153} Frame 1Symbol 55 MovieClip
"z1"Symbol 566 MovieClip {lisa_fla.chainspla_164} Frame 1Symbol 52 MovieClip
"z2"Symbol 566 MovieClip {lisa_fla.chainspla_164} Frame 1Symbol 49 MovieClip
"z3"Symbol 566 MovieClip {lisa_fla.chainspla_164} Frame 1Symbol 46 MovieClip
"z4"Symbol 566 MovieClip {lisa_fla.chainspla_164} Frame 1Symbol 43 MovieClip
"z5"Symbol 566 MovieClip {lisa_fla.chainspla_164} Frame 1Symbol 40 MovieClip
"shoes"Symbol 588 MovieClip {lisa_fla.doll_170} Frame 1Symbol 575 MovieClip {lisa_fla.shoes_175}
"dress"Symbol 588 MovieClip {lisa_fla.doll_170} Frame 1Symbol 576 MovieClip {lisa_fla.dress_188}
"bottoms"Symbol 588 MovieClip {lisa_fla.doll_170} Frame 1Symbol 577 MovieClip {lisa_fla.bottoms_204}
"tops"Symbol 588 MovieClip {lisa_fla.doll_170} Frame 1Symbol 578 MovieClip {lisa_fla.tops_215}
"chain"Symbol 588 MovieClip {lisa_fla.doll_170} Frame 1Symbol 579 MovieClip {lisa_fla.chains_226}
"hair"Symbol 588 MovieClip {lisa_fla.doll_170} Frame 1Symbol 586 MovieClip {lisa_fla.HAIRS_235}
"earring"Symbol 588 MovieClip {lisa_fla.doll_170} Frame 1Symbol 587 MovieClip {lisa_fla.earrings_245}
"z1"Symbol 589 MovieClip {lisa_fla.shoespalette_265} Frame 1Symbol 208 MovieClip
"z2"Symbol 589 MovieClip {lisa_fla.shoespalette_265} Frame 1Symbol 201 MovieClip
"z3"Symbol 589 MovieClip {lisa_fla.shoespalette_265} Frame 1Symbol 198 MovieClip
"z4"Symbol 589 MovieClip {lisa_fla.shoespalette_265} Frame 1Symbol 195 MovieClip
"z5"Symbol 589 MovieClip {lisa_fla.shoespalette_265} Frame 1Symbol 192 MovieClip
"z3"Symbol 590 MovieClip {lisa_fla.haIRSPLA_266} Frame 1Symbol 33 MovieClip
"z4"Symbol 590 MovieClip {lisa_fla.haIRSPLA_266} Frame 1Symbol 27 MovieClip
"z2"Symbol 590 MovieClip {lisa_fla.haIRSPLA_266} Frame 1Symbol 27 MovieClip
"z1"Symbol 590 MovieClip {lisa_fla.haIRSPLA_266} Frame 1Symbol 37 MovieClip
"z3"Symbol 591 MovieClip {lisa_fla.earringoak_267} Frame 1Symbol 15 MovieClip
"z4"Symbol 591 MovieClip {lisa_fla.earringoak_267} Frame 1Symbol 10 MovieClip
"z5"Symbol 591 MovieClip {lisa_fla.earringoak_267} Frame 1Symbol 5 MovieClip
"z1"Symbol 591 MovieClip {lisa_fla.earringoak_267} Frame 1Symbol 24 MovieClip
"z2"Symbol 591 MovieClip {lisa_fla.earringoak_267} Frame 1Symbol 19 MovieClip
"close"Symbol 688 MovieClip {lisa_fla.Timeline_290} Frame 1Symbol 684 Button
"friendMail"Symbol 688 MovieClip {lisa_fla.Timeline_290} Frame 1Symbol 687 EditableText
"friend4"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 688 MovieClip {lisa_fla.Timeline_290}
"friend3"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 688 MovieClip {lisa_fla.Timeline_290}
"friend2"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 688 MovieClip {lisa_fla.Timeline_290}
"friend1"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 688 MovieClip {lisa_fla.Timeline_290}
"close"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 684 Button
"nameDetail"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 689 EditableText
"mailDetail"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 690 EditableText
"messageDetail"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 691 EditableText
"friendName"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 692 EditableText
"friendMail"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 693 EditableText
"addition"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 703 Button
"submit"Symbol 708 MovieClip {lisa_fla.Timeline_281} Frame 1Symbol 707 Button

Special Tags

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




http://swfchan.com/26/126980/info.shtml
Created: 25/2 -2019 12:20:57 Last modified: 25/2 -2019 12:20:57 Server time: 12/05 -2024 11:01:12