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

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

legends-actress-1940.swf

This is the info page for
Flash #110679

(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

PLAY

DRESS

TOPS

BOTTOMS

STUDS

HAIRS

SHOES

RESET

Bastan

NEXT

CHAINS

X

<p align="center"><font face="Lithograph" size="22" color="#c60000" letterSpacing="0.000000" kerning="1">SELECT A MODEL</font></p>

OK

wants something

123PEPPY

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

MORE
GAMES

Spela Me

Designed by

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

PLAY
AGAIN

ActionScript [AS3]

Section 1
//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 2
//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 3
//Back (gs.easing.Back) package gs.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / _arg4); return (((((_arg3 * _arg1) * _arg1) * (((_arg5 + 1) * _arg1) - _arg5)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * ((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) - _arg5))) + _arg2)); }; _arg1 = (_arg1 - 2); _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 2)) + _arg2)); } } }//package gs.easing
Section 4
//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 5
//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 6
//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 7
//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 8
//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 9
//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 10
//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 11
//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 12
//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 13
//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 14
//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 15
//buttons1_181 (threecelebrity_fla.buttons1_181) package threecelebrity_fla { import flash.display.*; public dynamic class buttons1_181 extends MovieClip { public var nextbtn:MovieClip; public var resetbtn:MovieClip; } }//package threecelebrity_fla
Section 16
//cbvdsfdsf_7 (threecelebrity_fla.cbvdsfdsf_7) package threecelebrity_fla { import flash.display.*; public dynamic class cbvdsfdsf_7 extends MovieClip { public var masker:MovieClip; } }//package threecelebrity_fla
Section 17
//cvnbvcjhklhgklcopy_289 (threecelebrity_fla.cvnbvcjhklhgklcopy_289) package threecelebrity_fla { import flash.display.*; import flash.text.*; public dynamic class cvnbvcjhklhgklcopy_289 extends MovieClip { public var wants:MovieClip; public var msgtxt:TextField; public var nextbtn:MovieClip; public function cvnbvcjhklhgklcopy_289(){ addFrameScript(0, frame1); } function frame1(){ buttonMode = true; } } }//package threecelebrity_fla
Section 18
//gdbbbottoms_88 (threecelebrity_fla.gdbbbottoms_88) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbbottoms_88 extends MovieClip { public function gdbbbottoms_88(){ addFrameScript(0, frame1, 9, frame10); } function frame10(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 19
//gdbbchains_232 (threecelebrity_fla.gdbbchains_232) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbchains_232 extends MovieClip { public function gdbbchains_232(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 20
//gdbbdool_218 (threecelebrity_fla.gdbbdool_218) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbdool_218 extends MovieClip { public var dress:MovieClip; public var bags: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 threecelebrity_fla
Section 21
//gdbbdress_224 (threecelebrity_fla.gdbbdress_224) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbdress_224 extends MovieClip { public function gdbbdress_224(){ addFrameScript(0, frame1, 8, frame9); } function frame1(){ stop(); } function frame9(){ gotoAndStop(2); } } }//package threecelebrity_fla
Section 22
//gdbbearrings_239 (threecelebrity_fla.gdbbearrings_239) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbearrings_239 extends MovieClip { public function gdbbearrings_239(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 23
//gdbbhairs_122 (threecelebrity_fla.gdbbhairs_122) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbhairs_122 extends MovieClip { public function gdbbhairs_122(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package threecelebrity_fla
Section 24
//gdbbhairscopy_172 (threecelebrity_fla.gdbbhairscopy_172) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbhairscopy_172 extends MovieClip { public function gdbbhairscopy_172(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 25
//gdbbshoes_219 (threecelebrity_fla.gdbbshoes_219) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbshoes_219 extends MovieClip { public function gdbbshoes_219(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 26
//gdbbtops_99 (threecelebrity_fla.gdbbtops_99) package threecelebrity_fla { import flash.display.*; public dynamic class gdbbtops_99 extends MovieClip { public function gdbbtops_99(){ addFrameScript(0, frame1, 9, frame10); } function frame10(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 27
//gdbottoms_191 (threecelebrity_fla.gdbottoms_191) package threecelebrity_fla { import flash.display.*; public dynamic class gdbottoms_191 extends MovieClip { public function gdbottoms_191(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ gotoAndStop(2); } } }//package threecelebrity_fla
Section 28
//gdbottomscopy_54 (threecelebrity_fla.gdbottomscopy_54) package threecelebrity_fla { import flash.display.*; public dynamic class gdbottomscopy_54 extends MovieClip { public function gdbottomscopy_54(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ gotoAndStop(2); } } }//package threecelebrity_fla
Section 29
//gdccbottmos_251 (threecelebrity_fla.gdccbottmos_251) package threecelebrity_fla { import flash.display.*; public dynamic class gdccbottmos_251 extends MovieClip { public function gdccbottmos_251(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ gotoAndStop(2); } } }//package threecelebrity_fla
Section 30
//gdccchains_267 (threecelebrity_fla.gdccchains_267) package threecelebrity_fla { import flash.display.*; public dynamic class gdccchains_267 extends MovieClip { public function gdccchains_267(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 31
//gdccdoll_245 (threecelebrity_fla.gdccdoll_245) package threecelebrity_fla { import flash.display.*; public dynamic class gdccdoll_245 extends MovieClip { public var dress:MovieClip; public var bags: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 threecelebrity_fla
Section 32
//gdccdress_258 (threecelebrity_fla.gdccdress_258) package threecelebrity_fla { import flash.display.*; public dynamic class gdccdress_258 extends MovieClip { public function gdccdress_258(){ addFrameScript(0, frame1, 10, frame11); } function frame1(){ stop(); } function frame11(){ gotoAndStop(2); } } }//package threecelebrity_fla
Section 33
//gdccearrings_276 (threecelebrity_fla.gdccearrings_276) package threecelebrity_fla { import flash.display.*; public dynamic class gdccearrings_276 extends MovieClip { public function gdccearrings_276(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 34
//gdcchairs_149 (threecelebrity_fla.gdcchairs_149) package threecelebrity_fla { import flash.display.*; public dynamic class gdcchairs_149 extends MovieClip { public function gdcchairs_149(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package threecelebrity_fla
Section 35
//gdcchairscopy_170 (threecelebrity_fla.gdcchairscopy_170) package threecelebrity_fla { import flash.display.*; public dynamic class gdcchairscopy_170 extends MovieClip { public function gdcchairscopy_170(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 36
//gdccshoes_246 (threecelebrity_fla.gdccshoes_246) package threecelebrity_fla { import flash.display.*; public dynamic class gdccshoes_246 extends MovieClip { public function gdccshoes_246(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 37
//gdcctops_136 (threecelebrity_fla.gdcctops_136) package threecelebrity_fla { import flash.display.*; public dynamic class gdcctops_136 extends MovieClip { public function gdcctops_136(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ gotoAndStop(2); } } }//package threecelebrity_fla
Section 38
//gdchians_205 (threecelebrity_fla.gdchians_205) package threecelebrity_fla { import flash.display.*; public dynamic class gdchians_205 extends MovieClip { public function gdchians_205(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 39
//gddoll_185 (threecelebrity_fla.gddoll_185) package threecelebrity_fla { import flash.display.*; public dynamic class gddoll_185 extends MovieClip { public var dress:MovieClip; public var bags: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 threecelebrity_fla
Section 40
//gddresss_192 (threecelebrity_fla.gddresss_192) package threecelebrity_fla { import flash.display.*; public dynamic class gddresss_192 extends MovieClip { public function gddresss_192(){ addFrameScript(0, frame1, 10, frame11); } function frame1(){ stop(); } function frame11(){ gotoAndStop(2); } } }//package threecelebrity_fla
Section 41
//gdearrings_213 (threecelebrity_fla.gdearrings_213) package threecelebrity_fla { import flash.display.*; public dynamic class gdearrings_213 extends MovieClip { public function gdearrings_213(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 42
//gdhairs_74 (threecelebrity_fla.gdhairs_74) package threecelebrity_fla { import flash.display.*; public dynamic class gdhairs_74 extends MovieClip { public function gdhairs_74(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package threecelebrity_fla
Section 43
//gdhairscopy_168 (threecelebrity_fla.gdhairscopy_168) package threecelebrity_fla { import flash.display.*; public dynamic class gdhairscopy_168 extends MovieClip { public function gdhairscopy_168(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 44
//gdshoes_186 (threecelebrity_fla.gdshoes_186) package threecelebrity_fla { import flash.display.*; public dynamic class gdshoes_186 extends MovieClip { public function gdshoes_186(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 45
//gdtops_62 (threecelebrity_fla.gdtops_62) package threecelebrity_fla { import flash.display.*; public dynamic class gdtops_62 extends MovieClip { public function gdtops_62(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ gotoAndStop(2); } } }//package threecelebrity_fla
Section 46
//K_154 (threecelebrity_fla.K_154) package threecelebrity_fla { import flash.display.*; public dynamic class K_154 extends MovieClip { public function K_154(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 47
//K_182 (threecelebrity_fla.K_182) package threecelebrity_fla { import flash.display.*; public dynamic class K_182 extends MovieClip { public function K_182(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 48
//K_300 (threecelebrity_fla.K_300) package threecelebrity_fla { import flash.display.*; public dynamic class K_300 extends MovieClip { public function K_300(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 49
//K_301 (threecelebrity_fla.K_301) package threecelebrity_fla { import flash.display.*; public dynamic class K_301 extends MovieClip { public function K_301(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package threecelebrity_fla
Section 50
//MainTimeline (threecelebrity_fla.MainTimeline) package threecelebrity_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import gs.easing.*; import fl.transitions.*; import flash.media.*; import flash.utils.*; import flash.text.*; import flash.ui.*; import flash.net.*; import flash.system.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.printing.*; import flash.xml.*; import fl.transitions.easing.*; public dynamic class MainTimeline extends MovieClip { public var zLanaTurner:MovieClip; public var LanaTurner:MovieClip; public var LaurenBacall:MovieClip; public var dollNum:int; public var t2:TextField; public var t3:Tween; public var t7:Tween; public var t1:TextField; public var judygarlandpal:MovieClip; public var t5:Tween; public var t6:Tween; public var t4:Tween; public var dress_btn:MovieClip; public var st:MovieClip; public var tops_btn:MovieClip; public var t8:Tween; public var preloader:MovieClip; public var hair_btn:MovieClip; public var shoes_btn:MovieClip; public var nextbtn:MovieClip; public var contestMenu:ContextMenu; public var dollName; public var percentage:Number; public var logo_mc:SimpleButton; public var BitsLoaded:TextField; public var buttons1:MovieClip; public var zjudygarland:MovieClip; public var sndon:SimpleButton; public var bullet:backscore; public var msgstr:String; public var bottoms_btn:MovieClip; public var LanaTurnerpal:MovieClip; public var sndoff:SimpleButton; public var msg:MovieClip; public var LaurenBacallpal:MovieClip; public var play_more:MovieClip; public var bags_btn:MovieClip; public var zLaurenBacall:MovieClip; public var nex:MovieClip; public var bulletChannel:SoundChannel; public var judygarland:MovieClip; public var contextmenuItem:ContextMenuItem; public var charX:Number; public var charY:Number; public var dollArray:Array; public var chain_btn:MovieClip; public var studs_btn:MovieClip; public var pl:MovieClip; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function result(_arg1:Event):void{ if (t1.text == ""){ nextbtn.visible = false; } else { nextbtn.visible = true; }; } public function nextbtnout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function frony(_arg1:MouseEvent){ gotoAndStop(2); } public function chainseltn(_arg1:MouseEvent):void{ if (dollNum != 3){ if (ThreeDoll.dollenable){ dollArray[dollNum].chain.nextFrame(); }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); remEve(); }; } function frame2(){ stop(); ThreeDoll.playback = true; if (bulletChannel){ bulletChannel.stop(); }; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); stage.tabChildren = false; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); pl.scaleX = 0.8; pl.scaleY = 0.8; } public function Beeclick(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } function frame4(){ stop(); t1.text = ""; t1.restrict = "A-Z0-9"; nextbtn.gotoAndStop(ThreeDoll.temp); nextbtn.buttonMode = true; stage.tabChildren = false; stage.addEventListener(Event.ENTER_FRAME, result); nextbtn.addEventListener(MouseEvent.CLICK, nextbtns); nextbtn.addEventListener(MouseEvent.ROLL_OVER, rollover2); nextbtn.addEventListener(MouseEvent.ROLL_OUT, rollout2); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link2); }; nextbtn.scaleX = 0.8; nextbtn.scaleY = 0.8; } function frame5(){ stop(); t2.text = ThreeDoll.tex; LaurenBacall.dress.gotoAndStop(ThreeDoll.dress1); LaurenBacall.tops.gotoAndStop(ThreeDoll.tops1); LaurenBacall.bottoms.gotoAndStop(ThreeDoll.bottoms1); LaurenBacall.chain.gotoAndStop(ThreeDoll.chain1); LaurenBacall.earring.gotoAndStop(ThreeDoll.earring1); LaurenBacall.bags.gotoAndStop(ThreeDoll.bags1); LaurenBacall.shoes.gotoAndStop(ThreeDoll.shoes1); LaurenBacall.hair.gotoAndStop(ThreeDoll.hair1); LanaTurner.dress.gotoAndStop(ThreeDoll.dress2); LanaTurner.tops.gotoAndStop(ThreeDoll.tops2); LanaTurner.bottoms.gotoAndStop(ThreeDoll.bottoms2); LanaTurner.chain.gotoAndStop(ThreeDoll.chain2); LanaTurner.earring.gotoAndStop(ThreeDoll.earring2); LanaTurner.bags.gotoAndStop(ThreeDoll.bags2); LanaTurner.shoes.gotoAndStop(ThreeDoll.shoes2); LanaTurner.hair.gotoAndStop(ThreeDoll.hair2); judygarland.dress.gotoAndStop(ThreeDoll.dress3); judygarland.tops.gotoAndStop(ThreeDoll.tops3); judygarland.bottoms.gotoAndStop(ThreeDoll.bottoms3); judygarland.chain.gotoAndStop(ThreeDoll.chain3); judygarland.earring.gotoAndStop(ThreeDoll.earring3); judygarland.bags.gotoAndStop(ThreeDoll.bags3); judygarland.shoes.gotoAndStop(ThreeDoll.shoes3); judygarland.hair.gotoAndStop(ThreeDoll.hair3); nex.buttonMode = true; play_more.buttonMode = true; stage.tabChildren = false; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; play_more.visible = false; } else { play_more.visible = true; logo_mc.addEventListener(MouseEvent.CLICK, link1); }; play_more.addEventListener(MouseEvent.CLICK, link7); nex.addEventListener(MouseEvent.CLICK, frony); play_more.addEventListener(MouseEvent.ROLL_OVER, nextbtnover1); play_more.addEventListener(MouseEvent.ROLL_OUT, nextbtnout1); nex.addEventListener(MouseEvent.ROLL_OVER, nextbtnover1); nex.addEventListener(MouseEvent.ROLL_OUT, nextbtnout1); play_more.scaleX = 0.8; play_more.scaleY = 0.8; nex.scaleX = 0.8; nex.scaleY = 0.8; } public function msghid(_arg1:MouseEvent):void{ TweenLite.to(msg, 1, {y:1000, ease:Back.easeIn}); addEve(); } function frame1(){ stop(); st.addEventListener(MouseEvent.CLICK, Site); st.buttonMode = true; 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; trace(this.currentFrame); stage.addEventListener(MouseEvent.CLICK, Beeclick); stage.addEventListener(Event.ENTER_FRAME, BeeMoving); } function frame3(){ MochiBot.track(this, "de3e2db9"); stop(); dress_btn.buttonMode = true; tops_btn.buttonMode = true; bottoms_btn.buttonMode = true; studs_btn.buttonMode = true; chain_btn.buttonMode = true; hair_btn.buttonMode = true; bags_btn.buttonMode = true; shoes_btn.buttonMode = true; ThreeDoll.dollenable = false; msgstr = ""; dollArray = [LaurenBacall, LanaTurner, judygarland]; dollNum = 3; charX = 347.4; charY = 238.3; buttons1.nextbtn.buttonMode = true; judygarlandpal.visible = (LanaTurnerpal.visible = (LaurenBacallpal.visible = false)); zjudygarland.visible = (zLanaTurner.visible = (zLaurenBacall.visible = false)); zjudygarland.buttonMode = (zLanaTurner.buttonMode = (zLaurenBacall.buttonMode = true)); addEve(); msg.nextbtn.buttonMode = true; msg.nextbtn.addEventListener(MouseEvent.CLICK, msghid); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); }; bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndon.addEventListener(MouseEvent.CLICK, sndst); buttons1.nextbtn.addEventListener(MouseEvent.ROLL_OVER, nextbtnover); buttons1.nextbtn.addEventListener(MouseEvent.ROLL_OUT, nextbtnout); buttons1.nextbtn.scaleX = 0.8; buttons1.nextbtn.scaleY = 0.8; } public function zdolsel(_arg1:MouseEvent):void{ var _local2:Object; _local2 = _arg1.currentTarget.name.substr(1); if (_local2 == "LaurenBacall"){ dollNum = 0; LaurenBacallpal.alpha = 0; judygarlandpal.visible = (LanaTurnerpal.visible = (LaurenBacallpal.visible = false)); LaurenBacallpal.visible = true; ThreeDoll.dollenable = false; TweenLite.to(LaurenBacall, 1, {x:charX, y:charY, alpha:1}); TweenLite.to(judygarland, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(LanaTurner, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(LaurenBacallpal, 1, {alpha:1}); } else { if (_local2 == "judygarland"){ dollNum = 2; judygarlandpal.alpha = 0; judygarlandpal.visible = (LanaTurnerpal.visible = (LaurenBacallpal.visible = false)); judygarlandpal.visible = true; ThreeDoll.dollenable = false; TweenLite.to(judygarland, 1, {x:charX, y:charY, alpha:1}); TweenLite.to(LaurenBacall, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(LanaTurner, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(judygarlandpal, 1, {alpha:1}); } else { if (_local2 == "LanaTurner"){ dollNum = 1; LanaTurnerpal.alpha = 0; judygarlandpal.visible = (LanaTurnerpal.visible = (LaurenBacallpal.visible = false)); LanaTurnerpal.visible = true; ThreeDoll.dollenable = false; TweenLite.to(LanaTurner, 1, {x:charX, y:charY, alpha:1}); TweenLite.to(LaurenBacall, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(judygarland, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(LanaTurnerpal, 1, {alpha:1}); }; }; }; } public function shoesseltn(_arg1:MouseEvent):void{ if (dollNum != 3){ if (ThreeDoll.dollenable){ dollArray[dollNum].shoes.nextFrame(); }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); remEve(); }; } public function dressseltn(_arg1:MouseEvent):void{ if (dollNum != 3){ if (ThreeDoll.dollenable){ dollArray[dollNum].dress.nextFrame(); dollArray[dollNum].tops.gotoAndStop(1); dollArray[dollNum].bottoms.gotoAndStop(1); }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); remEve(); }; } public function nextbtn1seltn(_arg1:MouseEvent):void{ var _local2:int; var _local3:Array; var _local4:int; if (dollNum != 3){ _local2 = 0; _local3 = []; msgstr = ""; ThreeDoll.dress1 = LaurenBacall.dress.currentFrame; ThreeDoll.tops1 = LaurenBacall.tops.currentFrame; ThreeDoll.bottoms1 = LaurenBacall.bottoms.currentFrame; ThreeDoll.chain1 = LaurenBacall.chain.currentFrame; ThreeDoll.earring1 = LaurenBacall.earring.currentFrame; ThreeDoll.bags1 = LaurenBacall.bags.currentFrame; ThreeDoll.shoes1 = LaurenBacall.shoes.currentFrame; ThreeDoll.hair1 = LaurenBacall.hair.currentFrame; ThreeDoll.dress2 = LanaTurner.dress.currentFrame; ThreeDoll.tops2 = LanaTurner.tops.currentFrame; ThreeDoll.bottoms2 = LanaTurner.bottoms.currentFrame; ThreeDoll.chain2 = LanaTurner.chain.currentFrame; ThreeDoll.earring2 = LanaTurner.earring.currentFrame; ThreeDoll.bags2 = LanaTurner.bags.currentFrame; ThreeDoll.shoes2 = LanaTurner.shoes.currentFrame; ThreeDoll.hair2 = LanaTurner.hair.currentFrame; ThreeDoll.dress3 = judygarland.dress.currentFrame; ThreeDoll.tops3 = judygarland.tops.currentFrame; ThreeDoll.bottoms3 = judygarland.bottoms.currentFrame; ThreeDoll.chain3 = judygarland.chain.currentFrame; ThreeDoll.earring3 = judygarland.earring.currentFrame; ThreeDoll.bags3 = judygarland.bags.currentFrame; ThreeDoll.shoes3 = judygarland.shoes.currentFrame; ThreeDoll.hair3 = judygarland.hair.currentFrame; if ((((((ThreeDoll.dress1 == 1)) && ((ThreeDoll.tops1 == 1)))) || ((((ThreeDoll.dress1 == 1)) && ((ThreeDoll.bottoms1 == 1)))))){ _local3.push("LAUREN BACALL"); }; if ((((((ThreeDoll.dress2 == 1)) && ((ThreeDoll.tops2 == 1)))) || ((((ThreeDoll.dress2 == 1)) && ((ThreeDoll.bottoms2 == 1)))))){ _local3.push("LANA TURNER"); }; if ((((((ThreeDoll.dress3 == 1)) && ((ThreeDoll.tops3 == 1)))) || ((((ThreeDoll.dress3 == 1)) && ((ThreeDoll.bottoms3 == 1)))))){ _local3.push("JUDY GARLAND"); }; if (_local3.length == 0){ nextFrame(); trace("next"); } else { _local4 = 0; while (_local4 < _local3.length) { switch (((_local3.length - 1) - _local4)){ case 0: msgstr = msgstr.concat(_local3[_local4]); msg.wants.visible = true; msg.msgtxt.text = msgstr; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); break; case 1: msgstr = msgstr.concat(_local3[_local4]); msg.wants.visible = true; msgstr = msgstr.concat(" AND "); break; case 2: msgstr = msgstr.concat(_local3[_local4]); msgstr = msgstr.concat(" , "); msg.wants.visible = true; break; default: trace("missed"); break; }; _local4++; }; }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); }; } public function nextbtnout1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function rollout2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function studsseltn(_arg1:MouseEvent):void{ if (dollNum != 3){ if (ThreeDoll.dollenable){ dollArray[dollNum].earring.nextFrame(); }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); remEve(); }; } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function remEve(){ LaurenBacall.buttonMode = (LanaTurner.buttonMode = (judygarland.buttonMode = false)); LaurenBacall.removeEventListener(MouseEvent.CLICK, dolseltn); LanaTurner.removeEventListener(MouseEvent.CLICK, dolseltn); judygarland.removeEventListener(MouseEvent.CLICK, dolseltn); dress_btn.removeEventListener(MouseEvent.CLICK, dressseltn); tops_btn.removeEventListener(MouseEvent.CLICK, topsseltn); bottoms_btn.removeEventListener(MouseEvent.CLICK, bottomsseltn); studs_btn.removeEventListener(MouseEvent.CLICK, studsseltn); chain_btn.removeEventListener(MouseEvent.CLICK, chainseltn); hair_btn.removeEventListener(MouseEvent.CLICK, hairseltn); bags_btn.removeEventListener(MouseEvent.CLICK, bagsseltn); shoes_btn.removeEventListener(MouseEvent.CLICK, shoesseltn); buttons1.nextbtn.removeEventListener(MouseEvent.CLICK, nextbtn1seltn); } public function nextbtnover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function nextbtns(_arg1:MouseEvent):void{ ThreeDoll.tex = t1.text; nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function nextbtnover1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } 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 = (((_local4 + "kbs /") + _local5) + "kbs"); if (_local4 == _local5){ this.gotoAndStop(2); stage.removeEventListener(MouseEvent.CLICK, Beeclick); trace((this.currentFrame + "2")); stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); }; } public function topsseltn(_arg1:MouseEvent):void{ if (dollNum != 3){ if (ThreeDoll.dollenable){ dollArray[dollNum].tops.nextFrame(); dollArray[dollNum].dress.gotoAndStop(1); }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); remEve(); }; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function addEve(){ LaurenBacall.buttonMode = (LanaTurner.buttonMode = (judygarland.buttonMode = true)); LaurenBacall.addEventListener(MouseEvent.CLICK, dolseltn); LanaTurner.addEventListener(MouseEvent.CLICK, dolseltn); judygarland.addEventListener(MouseEvent.CLICK, dolseltn); dress_btn.addEventListener(MouseEvent.CLICK, dressseltn); tops_btn.addEventListener(MouseEvent.CLICK, topsseltn); bottoms_btn.addEventListener(MouseEvent.CLICK, bottomsseltn); studs_btn.addEventListener(MouseEvent.CLICK, studsseltn); chain_btn.addEventListener(MouseEvent.CLICK, chainseltn); hair_btn.addEventListener(MouseEvent.CLICK, hairseltn); bags_btn.addEventListener(MouseEvent.CLICK, bagsseltn); shoes_btn.addEventListener(MouseEvent.CLICK, shoesseltn); buttons1.nextbtn.addEventListener(MouseEvent.CLICK, nextbtn1seltn); } public function link1(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link2(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link7(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function sndst(_arg1:MouseEvent):void{ bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.visible = true; sndon.visible = false; } public function resetbtneltn(_arg1:MouseEvent):void{ } public function rollover2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function link10(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.games2girls.com"); navigateToURL(_local2, "_blank"); } public function link11(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.games2girls.com"); navigateToURL(_local2, "_blank"); } public function bottomsseltn(_arg1:MouseEvent):void{ if (dollNum != 3){ if (ThreeDoll.dollenable){ dollArray[dollNum].bottoms.nextFrame(); dollArray[dollNum].dress.gotoAndStop(1); }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); remEve(); }; } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function hairseltn(_arg1:MouseEvent):void{ if (dollNum != 3){ if (ThreeDoll.dollenable){ dollArray[dollNum].hair.nextFrame(); }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); remEve(); }; } public function dolseltn(_arg1:MouseEvent):void{ LaurenBacall.buttonMode = (LanaTurner.buttonMode = (judygarland.buttonMode = false)); LaurenBacall.removeEventListener(MouseEvent.CLICK, dolseltn); LanaTurner.removeEventListener(MouseEvent.CLICK, dolseltn); judygarland.removeEventListener(MouseEvent.CLICK, dolseltn); if (_arg1.currentTarget.name == "LaurenBacall"){ dollNum = 0; LaurenBacallpal.alpha = 0; judygarlandpal.visible = (LanaTurnerpal.visible = (LaurenBacallpal.visible = false)); LaurenBacallpal.visible = true; ThreeDoll.dollenable = false; TweenLite.to(LaurenBacall, 1, {x:charX, y:charY, alpha:1}); TweenLite.to(judygarland, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(LanaTurner, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(LaurenBacallpal, 1, {alpha:1}); } else { if (_arg1.currentTarget.name == "judygarland"){ dollNum = 2; judygarlandpal.alpha = 0; judygarlandpal.visible = (LanaTurnerpal.visible = (LaurenBacallpal.visible = false)); judygarlandpal.visible = true; ThreeDoll.dollenable = false; TweenLite.to(judygarland, 1, {x:charX, y:charY, alpha:1}); TweenLite.to(LaurenBacall, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(LanaTurner, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(judygarlandpal, 1, {alpha:1}); } else { if (_arg1.currentTarget.name == "LanaTurner"){ dollNum = 1; LanaTurnerpal.alpha = 0; judygarlandpal.visible = (LanaTurnerpal.visible = (LaurenBacallpal.visible = false)); LanaTurnerpal.visible = true; ThreeDoll.dollenable = false; TweenLite.to(LanaTurner, 1, {x:charX, y:charY, alpha:1}); TweenLite.to(LaurenBacall, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(judygarland, 1, {alpha:0, x:charX, y:charY}); TweenLite.to(LanaTurnerpal, 1, {alpha:1}); }; }; }; zjudygarland.visible = (zLanaTurner.visible = (zLaurenBacall.visible = true)); zjudygarland.addEventListener(MouseEvent.CLICK, zdolsel); zLanaTurner.addEventListener(MouseEvent.CLICK, zdolsel); zLaurenBacall.addEventListener(MouseEvent.CLICK, zdolsel); } public function bagsseltn(_arg1:MouseEvent):void{ if (dollNum != 3){ if (ThreeDoll.dollenable){ dollArray[dollNum].bags.nextFrame(); }; } else { msg.msgtxt.text = "SELECT A MODEL"; msg.wants.visible = false; TweenLite.to(msg, 1, {y:285, ease:Back.easeOut}); remEve(); }; } public function plays(_arg1:MouseEvent):void{ nextFrame(); } public function link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } } }//package threecelebrity_fla
Section 51
//peppydfgfsds_18 (threecelebrity_fla.peppydfgfsds_18) package threecelebrity_fla { import flash.display.*; public dynamic class peppydfgfsds_18 extends MovieClip { public function peppydfgfsds_18(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package threecelebrity_fla
Section 52
//sdfsdfsdfsdf_287 (threecelebrity_fla.sdfsdfsdfsdf_287) package threecelebrity_fla { import flash.events.*; import flash.display.*; public dynamic class sdfsdfsdfsdf_287 extends MovieClip { public var doll:SimpleButton; public function sdfsdfsdfsdf_287(){ addFrameScript(0, frame1); } public function dollcli(_arg1:MouseEvent):void{ visible = false; alpha = 0; ThreeDoll.dollenable = true; } function frame1(){ doll.addEventListener(MouseEvent.CLICK, dollcli); } } }//package threecelebrity_fla
Section 53
//sdfsdfsdfsdfsdfsdf_281 (threecelebrity_fla.sdfsdfsdfsdfsdfsdf_281) package threecelebrity_fla { import flash.events.*; import flash.display.*; public dynamic class sdfsdfsdfsdfsdfsdf_281 extends MovieClip { public var doll:SimpleButton; public function sdfsdfsdfsdfsdfsdf_281(){ addFrameScript(0, frame1); } public function dollcli(_arg1:MouseEvent):void{ visible = false; alpha = 0; ThreeDoll.dollenable = true; } function frame1(){ doll.addEventListener(MouseEvent.CLICK, dollcli); } } }//package threecelebrity_fla
Section 54
//sdfsfdsfsd_285 (threecelebrity_fla.sdfsfdsfsd_285) package threecelebrity_fla { import flash.events.*; import flash.display.*; public dynamic class sdfsfdsfsd_285 extends MovieClip { public var doll:SimpleButton; public function sdfsfdsfsd_285(){ addFrameScript(0, frame1); } public function dollcli(_arg1:MouseEvent):void{ visible = false; alpha = 0; ThreeDoll.dollenable = true; } function frame1(){ doll.addEventListener(MouseEvent.CLICK, dollcli); } } }//package threecelebrity_fla
Section 55
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 56
//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 57
//soundbg1 (soundbg1) package { import flash.media.*; public dynamic class soundbg1 extends Sound { } }//package
Section 58
//soundbg2 (soundbg2) package { import flash.media.*; public dynamic class soundbg2 extends Sound { } }//package
Section 59
//soundbg3 (soundbg3) package { import flash.media.*; public dynamic class soundbg3 extends Sound { } }//package
Section 60
//ThreeDoll (ThreeDoll) package { public class ThreeDoll { public static var bottoms1:Number = 0; public static var bottoms2:Number = 0; public static var bottoms3:Number = 0; public static var dollenable:Boolean = false; public static var hair1:Number = 0; public static var chain1:Number = 0; public static var chain2:Number = 0; public static var hair2:Number = 0; public static var hair3:Number = 0; public static var chain3:Number = 0; public static var bags1:Number = 0; public static var bags3:Number = 0; public static var playback:Boolean = false; public static var bags2:Number = 0; public static var tops1:Number = 0; public static var glass1:Number = 0; public static var glass3:Number = 0; public static var tops2:Number = 0; public static var tops3:Number = 0; public static var glass2:Number = 0; public static var tex:String = ""; public static var shoes1:Number = 0; public static var shoes2:Number = 0; public static var shoes3:Number = 0; public static var temp:Number = 0; public static var dress1:Number = 0; public static var dress2:Number = 0; public static var dress3:Number = 0; public static var earring1:Number = 0; public static var earring3:Number = 0; public static var earring2:Number = 0; public static var bgss1:Number = 0; } }//package

Library Items

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

Instance Names

"preloader"Frame 1Symbol 29 MovieClip {threecelebrity_fla.cbvdsfdsf_7}
"BitsLoaded"Frame 1Symbol 31 EditableText
"ball"Frame 1Symbol 77 MovieClip
"st"Frame 1Symbol 79 MovieClip
"pl"Frame 2Symbol 369 MovieClip {threecelebrity_fla.K_154}
"bags_btn"Frame 3Symbol 384 MovieClip
"zLaurenBacall"Frame 3Symbol 401 MovieClip
"zLanaTurner"Frame 3Symbol 405 MovieClip
"zjudygarland"Frame 3Symbol 410 MovieClip
"dress_btn"Frame 3Symbol 418 MovieClip
"tops_btn"Frame 3Symbol 420 MovieClip
"bottoms_btn"Frame 3Symbol 422 MovieClip
"studs_btn"Frame 3Symbol 424 MovieClip
"hair_btn"Frame 3Symbol 426 MovieClip
"shoes_btn"Frame 3Symbol 428 MovieClip
"buttons1"Frame 3Symbol 441 MovieClip {threecelebrity_fla.buttons1_181}
"chain_btn"Frame 3Symbol 443 MovieClip
"LaurenBacall"Frame 3Symbol 503 MovieClip {threecelebrity_fla.gddoll_185}
"judygarland"Frame 3Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218}
"LanaTurner"Frame 3Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245}
"judygarlandpal"Frame 3Symbol 635 MovieClip {threecelebrity_fla.sdfsdfsdfsdfsdfsdf_281}
"LaurenBacallpal"Frame 3Symbol 638 MovieClip {threecelebrity_fla.sdfsfdsfsd_285}
"LanaTurnerpal"Frame 3Symbol 641 MovieClip {threecelebrity_fla.sdfsdfsdfsdf_287}
"msg"Frame 3Symbol 655 MovieClip {threecelebrity_fla.cvnbvcjhklhgklcopy_289}
"logo_mc"Frame 3Symbol 660 Button
"sndon"Frame 3Symbol 668 Button
"sndoff"Frame 3Symbol 669 Button
"nextbtn"Frame 4Symbol 440 MovieClip
"t1"Frame 4Symbol 674 EditableText
"LaurenBacall"Frame 5Symbol 503 MovieClip {threecelebrity_fla.gddoll_185}
"judygarland"Frame 5Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218}
"LanaTurner"Frame 5Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245}
"play_more"Frame 5Symbol 686 MovieClip {threecelebrity_fla.K_300}
"t2"Frame 5Symbol 690 EditableText
"nex"Frame 5Symbol 702 MovieClip {threecelebrity_fla.K_301}
"masker"Symbol 29 MovieClip {threecelebrity_fla.cbvdsfdsf_7} Frame 1Symbol 17 MovieClip
"resetbtn"Symbol 441 MovieClip {threecelebrity_fla.buttons1_181} Frame 1Symbol 438 MovieClip {threecelebrity_fla.K_182}
"nextbtn"Symbol 441 MovieClip {threecelebrity_fla.buttons1_181} Frame 1Symbol 440 MovieClip
"bags"Symbol 503 MovieClip {threecelebrity_fla.gddoll_185} Frame 1Symbol 138 MovieClip
"shoes"Symbol 503 MovieClip {threecelebrity_fla.gddoll_185} Frame 1Symbol 452 MovieClip {threecelebrity_fla.gdshoes_186}
"bottoms"Symbol 503 MovieClip {threecelebrity_fla.gddoll_185} Frame 1Symbol 453 MovieClip {threecelebrity_fla.gdbottoms_191}
"tops"Symbol 503 MovieClip {threecelebrity_fla.gddoll_185} Frame 1Symbol 188 MovieClip {threecelebrity_fla.gdtops_62}
"dress"Symbol 503 MovieClip {threecelebrity_fla.gddoll_185} Frame 1Symbol 480 MovieClip {threecelebrity_fla.gddresss_192}
"chain"Symbol 503 MovieClip {threecelebrity_fla.gddoll_185} Frame 1Symbol 497 MovieClip {threecelebrity_fla.gdchians_205}
"hair"Symbol 503 MovieClip {threecelebrity_fla.gddoll_185} Frame 1Symbol 205 MovieClip {threecelebrity_fla.gdhairs_74}
"earring"Symbol 503 MovieClip {threecelebrity_fla.gddoll_185} Frame 1Symbol 502 MovieClip {threecelebrity_fla.gdearrings_213}
"bags"Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218} Frame 1Symbol 215 MovieClip
"shoes"Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218} Frame 1Symbol 513 MovieClip {threecelebrity_fla.gdbbshoes_219}
"bottoms"Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218} Frame 1Symbol 249 MovieClip {threecelebrity_fla.gdbbbottoms_88}
"tops"Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218} Frame 1Symbol 271 MovieClip {threecelebrity_fla.gdbbtops_99}
"dress"Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218} Frame 1Symbol 536 MovieClip {threecelebrity_fla.gdbbdress_224}
"chain"Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218} Frame 1Symbol 548 MovieClip {threecelebrity_fla.gdbbchains_232}
"hair"Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218} Frame 1Symbol 299 MovieClip {threecelebrity_fla.gdbbhairs_122}
"earring"Symbol 559 MovieClip {threecelebrity_fla.gdbbdool_218} Frame 1Symbol 558 MovieClip {threecelebrity_fla.gdbbearrings_239}
"bags"Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245} Frame 1Symbol 310 MovieClip
"shoes"Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245} Frame 1Symbol 568 MovieClip {threecelebrity_fla.gdccshoes_246}
"bottoms"Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245} Frame 1Symbol 585 MovieClip {threecelebrity_fla.gdccbottmos_251}
"tops"Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245} Frame 1Symbol 334 MovieClip {threecelebrity_fla.gdcctops_136}
"dress"Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245} Frame 1Symbol 602 MovieClip {threecelebrity_fla.gdccdress_258}
"chain"Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245} Frame 1Symbol 617 MovieClip {threecelebrity_fla.gdccchains_267}
"hair"Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245} Frame 1Symbol 347 MovieClip {threecelebrity_fla.gdcchairs_149}
"earring"Symbol 626 MovieClip {threecelebrity_fla.gdccdoll_245} Frame 1Symbol 625 MovieClip {threecelebrity_fla.gdccearrings_276}
"doll"Symbol 635 MovieClip {threecelebrity_fla.sdfsdfsdfsdfsdfsdf_281} Frame 1Symbol 634 Button
"doll"Symbol 638 MovieClip {threecelebrity_fla.sdfsfdsfsd_285} Frame 1Symbol 634 Button
"doll"Symbol 641 MovieClip {threecelebrity_fla.sdfsdfsdfsdf_287} Frame 1Symbol 634 Button
"msgtxt"Symbol 655 MovieClip {threecelebrity_fla.cvnbvcjhklhgklcopy_289} Frame 1Symbol 647 EditableText
"nextbtn"Symbol 655 MovieClip {threecelebrity_fla.cvnbvcjhklhgklcopy_289} Frame 1Symbol 651 MovieClip
"wants"Symbol 655 MovieClip {threecelebrity_fla.cvnbvcjhklhgklcopy_289} Frame 1Symbol 654 MovieClip

Special Tags

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




http://swfchan.com/23/110679/info.shtml
Created: 13/3 -2019 17:52:12 Last modified: 13/3 -2019 17:52:12 Server time: 03/05 -2024 07:20:59