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

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

rachael-leigh-cook-dress-up-game.swf

This is the info page for
Flash #121940

(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

.

100

Nederlands

Nederlands

Русский

Italiano

Deutsch

Français

Türkçe

Svenska

Español

Polski

Português

English

PLAY

RACHAEL

LEIGH

COOK

Sıfırla

Sonraki

123PEPPY

Ilerle

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

ENTER YOUR NAME

Voer Uw Naam

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

Inserisci il tuo nome

Geben Sie Ihr Name

Entrez votre nom

Adını gir

Ingrese su Nombre

Ange ditt namn

Imię i nazwisko

Digite seu nome

Tekrar Oyna

Mail

Spela Me

DESIGNED BY

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

YOUR FRIEND'S EMAIL :

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

SEND

SEND

ADD MORE

ADD MORE

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

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

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

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

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

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

ActionScript [AS3]

Section 1
//Back (gs.easing.Back) package gs.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / _arg4); return (((((_arg3 * _arg1) * _arg1) * (((_arg5 + 1) * _arg1) - _arg5)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * ((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) - _arg5))) + _arg2)); }; _arg1 = (_arg1 - 2); _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 2)) + _arg2)); } } }//package gs.easing
Section 2
//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 3
//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 4
//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 5
//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 6
//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 7
//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 8
//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 9
//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 10
//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 11
//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 12
//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 13
//bottoms_145 (RACHAELLEIGHCOOK_fla.bottoms_145) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class bottoms_145 extends MovieClip { public function bottoms_145(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 14
//bottomspalette_223 (RACHAELLEIGHCOOK_fla.bottomspalette_223) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class bottomspalette_223 extends MovieClip { public var b10:MovieClip; public var b2:MovieClip; public var b4:MovieClip; public var b9:MovieClip; public var b5:MovieClip; public var b6:MovieClip; public var b7:MovieClip; public var b1:MovieClip; public var b3:MovieClip; public var b8:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 15
//ButtonHolder_64 (RACHAELLEIGHCOOK_fla.ButtonHolder_64) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class ButtonHolder_64 extends MovieClip { public var b10:SimpleButton; public var b2:SimpleButton; public var b4:SimpleButton; public var b9:SimpleButton; public var b5:SimpleButton; public var b6:SimpleButton; public var b7:SimpleButton; public var b1:SimpleButton; public var b3:SimpleButton; public var b8:SimpleButton; public var b11:SimpleButton; } }//package RACHAELLEIGHCOOK_fla
Section 16
//buttons1copyy_247 (RACHAELLEIGHCOOK_fla.buttons1copyy_247) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class buttons1copyy_247 extends MovieClip { public var b8:MovieClip; public function buttons1copyy_247(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 17
//buttons2uu_92 (RACHAELLEIGHCOOK_fla.buttons2uu_92) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class buttons2uu_92 extends MovieClip { public var nextbtn:MovieClip; public var resetbtn:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 18
//cbvdsfdsf_loader_7 (RACHAELLEIGHCOOK_fla.cbvdsfdsf_loader_7) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class cbvdsfdsf_loader_7 extends MovieClip { public var masker:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 19
//chainpalette_216 (RACHAELLEIGHCOOK_fla.chainpalette_216) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class chainpalette_216 extends MovieClip { public var c1:MovieClip; public var c3:MovieClip; public var c4:MovieClip; public var c5:MovieClip; public var c2:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 20
//chians_188 (RACHAELLEIGHCOOK_fla.chians_188) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class chians_188 extends MovieClip { public function chians_188(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 21
//cvbcvbcvbvcy_78_1_loader_21 (RACHAELLEIGHCOOK_fla.cvbcvbcvbvcy_78_1_loader_21) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class cvbcvbcvbvcy_78_1_loader_21 extends MovieClip { public function cvbcvbcvbvcy_78_1_loader_21(){ addFrameScript(56, frame57); } function frame57(){ } } }//package RACHAELLEIGHCOOK_fla
Section 22
//doll_102 (RACHAELLEIGHCOOK_fla.doll_102) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class doll_102 extends MovieClip { public var dress:MovieClip; public var bags:MovieClip; public var glass: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 RACHAELLEIGHCOOK_fla
Section 23
//dress_114 (RACHAELLEIGHCOOK_fla.dress_114) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class dress_114 extends MovieClip { public function dress_114(){ addFrameScript(0, frame1, 16, frame17); } function frame1(){ stop(); } function frame17(){ gotoAndStop(2); } } }//package RACHAELLEIGHCOOK_fla
Section 24
//dresspalette_224 (RACHAELLEIGHCOOK_fla.dresspalette_224) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class dresspalette_224 extends MovieClip { public var d4:MovieClip; public var d8:MovieClip; public var d2:MovieClip; public var d5:MovieClip; public var d6:MovieClip; public var d7:MovieClip; public var d9:MovieClip; public var d3:MovieClip; public var d10:MovieClip; public var d11:MovieClip; public var d14:MovieClip; public var d13:MovieClip; public var d15:MovieClip; public var d12:MovieClip; public var d1:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 25
//ear_205 (RACHAELLEIGHCOOK_fla.ear_205) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class ear_205 extends MovieClip { public function ear_205(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 26
//earringpalette_217 (RACHAELLEIGHCOOK_fla.earringpalette_217) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class earringpalette_217 extends MovieClip { public var e2:MovieClip; public var e5:MovieClip; public var e3:MovieClip; public var e4:MovieClip; public var e1:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 27
//enteryournamey_254 (RACHAELLEIGHCOOK_fla.enteryournamey_254) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class enteryournamey_254 extends MovieClip { public function enteryournamey_254(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 28
//hairpalette_225 (RACHAELLEIGHCOOK_fla.hairpalette_225) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class hairpalette_225 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h3:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 29
//hairs_50 (RACHAELLEIGHCOOK_fla.hairs_50) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class hairs_50 extends MovieClip { public function hairs_50(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package RACHAELLEIGHCOOK_fla
Section 30
//hdhdfhf_emaikl_261 (RACHAELLEIGHCOOK_fla.hdhdfhf_emaikl_261) package RACHAELLEIGHCOOK_fla { import flash.events.*; import flash.display.*; import flash.text.*; public dynamic class hdhdfhf_emaikl_261 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; public function hdhdfhf_emaikl_261(){ addFrameScript(0, frame1); } public function hideAdd(_arg1:MouseEvent):void{ this.visible = false; } function frame1(){ this.visible = false; close.addEventListener(MouseEvent.CLICK, hideAdd); } } }//package RACHAELLEIGHCOOK_fla
Section 31
//jgjyiy9_emaikl_260 (RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260) package RACHAELLEIGHCOOK_fla { import flash.display.*; import flash.text.*; public dynamic class jgjyiy9_emaikl_260 extends MovieClip { public var addition:SimpleButton; public var close:SimpleButton; public var submit:SimpleButton; public var messageDetail:TextField; public var friendName:TextField; public var friend2:MovieClip; public var friend4:MovieClip; public var friend1:MovieClip; public var friend3:MovieClip; public var friendMail:TextField; public var nameDetail:TextField; public var mailDetail:TextField; } }//package RACHAELLEIGHCOOK_fla
Section 32
//khjll_87 (RACHAELLEIGHCOOK_fla.khjll_87) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class khjll_87 extends MovieClip { public function khjll_87(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 33
//MainTimeline (RACHAELLEIGHCOOK_fla.MainTimeline) package RACHAELLEIGHCOOK_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import gs.easing.*; import flash.media.*; import flash.text.*; import flash.ui.*; import flash.utils.*; 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.*; public dynamic class MainTimeline extends MovieClip { public var girlDoll:String; public var t2:TextField; public var ba:Number; public var t1:TextField; public var percent:TextField; public var hairpalette:MovieClip; public var bo:Number; public var topsf:Number; public var dresspalette:MovieClip; public var ch:Number; public var preloader:MovieClip; public var to:Number; public var dolls:MovieClip; public var playmore:MovieClip; public var nextbtn:MovieClip; public var shoespalette:MovieClip; public var chainpalette:MovieClip; public var percentage:Number; public var contestMenu:ContextMenu; public var popup:MovieClip; public var bagspalette:MovieClip; public var logo_mc:SimpleButton; public var shi:Number; public var girldollArray:Array; public var BitsLoaded:TextField; public var queCount:uint; public var buttons1:MovieClip; public var que:Array; public var ga:Number; public var mailArray:Array; public var ent:MovieClip; public var ha:Number; public var topspalette:MovieClip; public var sndon:SimpleButton; public var bullet:backscore; public var dressf:Number; public var earringpalette:MovieClip; public var doll:MovieClip; public var sndoff:SimpleButton; public var glasspalette:MovieClip; public var buttonHolder:MovieClip; public var dre:Number; public var tempCount:Number; public var email:MovieClip; public var nex:MovieClip; public var bots:Number; public var bulletChannel:SoundChannel; public var contextmenuItem:ContextMenuItem; public var bottomspalette: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 link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function hideAdd1(_arg1:MouseEvent):void{ popup.friend1.visible = false; que.push("0"); que.sort(); trace(("close1:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd2(_arg1:MouseEvent):void{ popup.friend2.visible = false; que.push("1"); que.sort(); trace(("close2:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd3(_arg1:MouseEvent):void{ popup.friend3.visible = false; que.push("2"); que.sort(); trace(("close3:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd4(_arg1:MouseEvent):void{ popup.friend4.visible = false; que.push("3"); que.sort(); trace(("close4:" + que)); popup.addition.mouseEnabled = true; } public function result(_arg1:Event):void{ if (t1.text == ""){ nextbtn.visible = false; } else { nextbtn.visible = true; }; } public function sets(_arg1:Event){ if (dressf == 1){ buttons1.nextbtn.visible = true; } else { if ((((topsf == 1)) && ((bots == 1)))){ buttons1.nextbtn.visible = true; } else { buttons1.nextbtn.visible = false; }; }; } function frame3(){ MochiBot.track(this, "e02990a0"); stop(); dressf = 0; topsf = 0; bots = 0; doll.hair.gotoAndStop(1); doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.glass.gotoAndStop(1); bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndon.addEventListener(MouseEvent.CLICK, sndst); stage.addEventListener(Event.ENTER_FRAME, sets); dre = 0; while (dre <= (dresspalette.numChildren - 1)) { dresspalette.getChildAt(dre).addEventListener(MouseEvent.ROLL_OVER, enabl); dresspalette.getChildAt(dre).addEventListener(MouseEvent.MOUSE_DOWN, dressfunction); dre++; }; to = 0; while (to <= (topspalette.numChildren - 1)) { topspalette.getChildAt(to).addEventListener(MouseEvent.ROLL_OVER, enabl); topspalette.getChildAt(to).addEventListener(MouseEvent.MOUSE_DOWN, topsfunction); to++; }; bo = 0; while (bo <= (bottomspalette.numChildren - 1)) { bottomspalette.getChildAt(bo).addEventListener(MouseEvent.ROLL_OVER, enabl); bottomspalette.getChildAt(bo).addEventListener(MouseEvent.MOUSE_DOWN, bottomsfunction); bo++; }; shi = 0; while (shi <= (shoespalette.numChildren - 1)) { shoespalette.getChildAt(shi).addEventListener(MouseEvent.ROLL_OVER, enabl); shoespalette.getChildAt(shi).addEventListener(MouseEvent.MOUSE_DOWN, shoesfunction); shi++; }; ch = 0; while (ch <= (chainpalette.numChildren - 1)) { chainpalette.getChildAt(ch).addEventListener(MouseEvent.ROLL_OVER, enabl); chainpalette.getChildAt(ch).addEventListener(MouseEvent.MOUSE_DOWN, chainfunction); ch++; }; ba = 0; while (ba <= (earringpalette.numChildren - 1)) { earringpalette.getChildAt(ba).addEventListener(MouseEvent.ROLL_OVER, enabl); earringpalette.getChildAt(ba).addEventListener(MouseEvent.MOUSE_DOWN, earringfunction); ba++; }; ga = 0; while (ga <= (glasspalette.numChildren - 1)) { glasspalette.getChildAt(ga).addEventListener(MouseEvent.ROLL_OVER, enabl); glasspalette.getChildAt(ga).addEventListener(MouseEvent.MOUSE_DOWN, glassfunction); ga++; }; ha = 0; while (ha <= (hairpalette.numChildren - 1)) { hairpalette.getChildAt(ha).addEventListener(MouseEvent.ROLL_OVER, enabl); hairpalette.getChildAt(ha).addEventListener(MouseEvent.MOUSE_DOWN, hairfunction); ha++; }; buttons1.resetbtn.addEventListener(MouseEvent.CLICK, res); buttons1.resetbtn.gotoAndStop(Glob.temp); buttons1.resetbtn.buttonMode = true; buttons1.nextbtn.gotoAndStop(Glob.temp); buttons1.nextbtn.addEventListener(MouseEvent.CLICK, nx); buttons1.nextbtn.buttonMode = true; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); }; buttons1.nextbtn.addEventListener(MouseEvent.ROLL_OVER, rollover1); buttons1.nextbtn.addEventListener(MouseEvent.ROLL_OUT, rollout1); buttons1.resetbtn.addEventListener(MouseEvent.ROLL_OVER, rollover1); buttons1.resetbtn.addEventListener(MouseEvent.ROLL_OUT, rollout1); } function frame4(){ stop(); t1.text = ""; t1.restrict = "A-Z"; nextbtn.gotoAndStop(Glob.temp); nextbtn.buttonMode = true; ent.gotoAndStop(Glob.temp); stage.addEventListener(Event.ENTER_FRAME, result); nextbtn.addEventListener(MouseEvent.CLICK, nextbtns); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link1); }; } public function earringfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var earrings:Class; var earring:Object; var putearring:Function; var e1 = _arg1; putearring = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (earring.hitTestObject(doll)){ doll.earring.gotoAndStop((_local3 + 1)); Glob.earring = doll.earring.currentFrame; }; removeChild(DisplayObject(earring)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); earrings = (getDefinitionByName(("earring" + t)) as Class); earring = new (earrings); earring.name = ("s" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(earring)); earring.x = mouseX; earring.y = mouseY; earring.startDrag(true); earring.addEventListener(MouseEvent.MOUSE_UP, putearring); } function frame5(){ stop(); if (((this.loaderInfo.parameters.bg) && ((Glob.playback == false)))){ email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); t2.text = this.loaderInfo.parameters.name; email.visible = true; email.tabEnabled = false; girldollArray = this.loaderInfo.parameters.girldoll.split(""); if (this.loaderInfo.parameters.bg == 1){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop(Number(girldollArray[2])); dolls.chain.gotoAndStop(Number(girldollArray[3])); dolls.shoes.gotoAndStop(Number(girldollArray[4])); dolls.hair.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.glass.gotoAndStop(Number(girldollArray[7])); } else { if (this.loaderInfo.parameters.bg == 2){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop((Number(girldollArray[3]).toString() + Number(girldollArray[4]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[5])); dolls.shoes.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.earring.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[8])); } else { if (this.loaderInfo.parameters.bg == 3){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop((Number(girldollArray[2]).toString() + Number(girldollArray[3]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.glass.gotoAndStop(Number(girldollArray[8])); } else { if (this.loaderInfo.parameters.bg == 4){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.glass.gotoAndStop(Number(girldollArray[8])); } else { if (this.loaderInfo.parameters.bg == 5){ dolls.dress.gotoAndStop((Number(girldollArray[0]).toString() + Number(girldollArray[1]).toString())); dolls.tops.gotoAndStop(Number(girldollArray[2]).toString()); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.glass.gotoAndStop(Number(girldollArray[8])); }; }; }; }; }; nex.addEventListener(MouseEvent.CLICK, plas1); } else { if (Glob.playback == true){ t2.text = Glob.tex; email.visible = true; email.buttonMode = true; email.tabEnabled = false; dolls.chain.gotoAndStop(Glob.chain); dolls.shoes.gotoAndStop(Glob.shoes); dolls.glass.gotoAndStop(Glob.glass); dolls.dress.gotoAndStop(Glob.dress); dolls.tops.gotoAndStop(Glob.tops); dolls.bottoms.gotoAndStop(Glob.bottoms); dolls.hair.gotoAndStop(Glob.hair); dolls.earring.gotoAndStop(Glob.earring); nex.addEventListener(MouseEvent.CLICK, plas); email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); }; }; playmore.buttonMode = true; nex.buttonMode = true; email.gotoAndStop(Glob.temp); nex.gotoAndStop(Glob.temp); playmore.gotoAndStop(Glob.temp); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; playmore.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link5); }; playmore.addEventListener(MouseEvent.CLICK, mor); que = new Array("0", "1", "2", "3"); queCount = 0; mailArray = new Array(popup.friend1, popup.friend2, popup.friend3, popup.friend4); girlDoll = (((((((dolls.dress.currentFrame.toString() + dolls.tops.currentFrame.toString()) + dolls.bottoms.currentFrame.toString()) + dolls.chain.currentFrame.toString()) + dolls.shoes.currentFrame.toString()) + dolls.hair.currentFrame.toString()) + dolls.earring.currentFrame.toString()) + dolls.glass.currentFrame.toString()); trace(girlDoll); popup.friend1.close.addEventListener(MouseEvent.CLICK, hideAdd1); popup.friend2.close.addEventListener(MouseEvent.CLICK, hideAdd2); popup.friend3.close.addEventListener(MouseEvent.CLICK, hideAdd3); popup.friend4.close.addEventListener(MouseEvent.CLICK, hideAdd4); playmore.addEventListener(MouseEvent.ROLL_OVER, rollover5); playmore.addEventListener(MouseEvent.ROLL_OUT, rollout5); nex.addEventListener(MouseEvent.ROLL_OVER, rollover5); nex.addEventListener(MouseEvent.ROLL_OUT, rollout5); email.addEventListener(MouseEvent.ROLL_OVER, rollover6); email.addEventListener(MouseEvent.ROLL_OUT, rollout6); } function frame1(){ stop(); contestMenu = new ContextMenu(); contestMenu.hideBuiltInItems(); contextmenuItem = new ContextMenuItem("www.123peppy.com"); contextmenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, Site); contestMenu.customItems.push(contextmenuItem); this.contextMenu = contestMenu; percentage = 0; stage.addEventListener(Event.ENTER_FRAME, BeeMoving); } function frame2(){ stop(); Glob.playback = true; if (bulletChannel){ bulletChannel.stop(); }; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); Glob.temp = 1; tempCount = 0; while (tempCount <= (buttonHolder.numChildren - 1)) { buttonHolder.getChildAt(tempCount).addEventListener(MouseEvent.CLICK, starter); tempCount++; }; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } public function rollout5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function rollout6(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function res(_arg1:MouseEvent):void{ doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.hair.gotoAndStop(1); doll.glass.gotoAndStop(1); dressf = 0; topsf = 0; bots = 0; Glob.dress = 0; Glob.tops = 0; Glob.bottoms = 0; Glob.chain = 0; Glob.shoes = 0; Glob.earring = 0; Glob.hair = 0; } public function rollout1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.9; _arg1.currentTarget.scaleY = 0.9; } public function starter(_arg1:MouseEvent):void{ var _local2:*; _local2 = _arg1.target; pl.gotoAndStop(_local2.name.substr(1)); Glob.temp = _local2.name.substr(1); } public function showMailBox(_arg1:MouseEvent):void{ email.mouseEnabled = false; popup.friend1.visible = false; popup.friend2.visible = false; popup.friend3.visible = false; popup.friend4.visible = false; TweenLite.to(popup, 0.5, {y:(600 - popup.height), ease:Back.easeOut}); popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function shoesfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var shoess:Class; var shoes:Object; var putshoes:Function; var e1 = _arg1; putshoes = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (shoes.hitTestObject(doll)){ doll.shoes.gotoAndStop((_local3 + 1)); Glob.shoes = doll.shoes.currentFrame; }; removeChild(DisplayObject(shoes)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); shoess = (getDefinitionByName(("shoe" + t)) as Class); shoes = new (shoess); shoes.name = ("s" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(shoes)); shoes.x = mouseX; shoes.y = mouseY; shoes.startDrag(true); shoes.addEventListener(MouseEvent.MOUSE_UP, putshoes); } public function hideMailBox(_arg1:MouseEvent):void{ var event = _arg1; email.mouseEnabled = true; que[0] = "0"; que[1] = "1"; que[2] = "2"; que[3] = "3"; TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function showExtra(_arg1:MouseEvent):void{ if (queCount < 4){ queCount++; trace(queCount); }; trace(("que[0]:" + que[0])); switch (que[0]){ case que[0]: mailArray[que[0]].visible = true; que.splice(0, 1); que.sort(); trace(("after switch:" + que)); if (que.length == 0){ popup.addition.mouseEnabled = false; }; break; }; } public function mor(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function enabl(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; } public function nextbtns(_arg1:MouseEvent):void{ Glob.tex = t1.text; trace(Glob.tex); nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function dressfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var dress:Class; var dres:Object; var putdress:Function; var e1 = _arg1; putdress = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); removeChild(DisplayObject(dres)); if (dres.hitTestObject(doll)){ doll.dress.gotoAndStop((_local3 + 1)); Glob.dress = doll.dress.currentFrame; Glob.tops = 0; Glob.bottoms = 0; doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); dressf = 1; topsf = 0; bots = 0; }; }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); dress = (getDefinitionByName(("dress" + t)) as Class); dres = new (dress); dres.name = ("d" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(dres)); dres.x = mouseX; dres.y = mouseY; dres.startDrag(true); dres.addEventListener(MouseEvent.MOUSE_UP, putdress); } public function callMail(_arg1:MouseEvent):void{ var request:URLRequest; var variables:URLVariables; var event = _arg1; email.mouseEnabled = true; request = new URLRequest("http://facefun.123peppy.com/gamemail.php"); request.method = URLRequestMethod.POST; variables = new URLVariables(); variables.nameDetail = popup.nameDetail.text; variables.mailDetail = popup.mailDetail.text; variables.messageDetail = popup.messageDetail.text; variables.friendName = popup.friendName.text; variables.friendMail = popup.friendMail.text; variables.gamename = "Rachael Leigh Cook"; variables.friendMail1 = popup.friend1.friendMail.text; variables.friendMail2 = popup.friend2.friendMail.text; variables.friendMail3 = popup.friend3.friendMail.text; variables.friendMail4 = popup.friend4.friendMail.text; variables.girldoll = girlDoll; variables.path = "http://www.123peppy.com/play/rachael-leigh-cook-dress-game"; variables.name = t2.text; if (dolls.dress.currentFrame > 9){ variables.bg = 5; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame < 9)))){ variables.bg = 4; } else { if ((((dolls.bottoms.currentFrame > 9)) && ((dolls.tops.currentFrame < 9)))){ variables.bg = 3; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame > 9)))){ variables.bg = 2; } else { variables.bg = 1; }; }; }; }; trace(variables.bg); request.data = variables; sendToURL(request); TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } public function 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)); percent.text = String(percentage); BitsLoaded.text = (((Math.round((_local4 / 0x0400)) + "kBs /") + Math.round((_local5 / 0x0400))) + "kBs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); if (this.loaderInfo.parameters.bg){ gotoAndStop(5); } else { gotoAndStop(2); }; }; } public function glassfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var glasss:Class; var glass:Object; var putglass:Function; var e1 = _arg1; putglass = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (glass.hitTestObject(doll)){ doll.glass.gotoAndStop((_local3 + 1)); Glob.glass = doll.glass.currentFrame; }; removeChild(DisplayObject(glass)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); glasss = (getDefinitionByName(("glass" + t)) as Class); glass = new (glasss); glass.name = ("b" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(glass)); glass.x = mouseX; glass.y = mouseY; glass.startDrag(true); glass.addEventListener(MouseEvent.MOUSE_UP, putglass); } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link5(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function rollover5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function bottomsfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var bottomss:Class; var bottoms:Object; var putbottoms:Function; var e1 = _arg1; putbottoms = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); removeChild(DisplayObject(bottoms)); if (bottoms.hitTestObject(doll)){ doll.bottoms.gotoAndStop((_local3 + 1)); Glob.bottoms = doll.bottoms.currentFrame; doll.dress.gotoAndStop(1); Glob.dress = 0; dressf = 0; bots = 1; }; }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); bottomss = (getDefinitionByName(("bottoms" + t)) as Class); bottoms = new (bottomss); bottoms.name = ("t" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(bottoms)); bottoms.x = mouseX; bottoms.y = mouseY; bottoms.startDrag(true); bottoms.addEventListener(MouseEvent.MOUSE_UP, putbottoms); } public function sndst(_arg1:MouseEvent):void{ bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.visible = true; sndon.visible = false; } public function rollover1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function chainfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var chains:Class; var chain:Object; var putchain:Function; var e1 = _arg1; putchain = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (chain.hitTestObject(doll)){ doll.chain.gotoAndStop((_local3 + 1)); Glob.chain = doll.chain.currentFrame; }; removeChild(DisplayObject(chain)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); chains = (getDefinitionByName(("chain" + t)) as Class); chain = new (chains); chain.name = ("s" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(chain)); chain.x = mouseX; chain.y = mouseY; chain.startDrag(true); chain.addEventListener(MouseEvent.MOUSE_UP, putchain); } public function rollover6(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function link1(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.3; _arg1.currentTarget.scaleY = 1.3; } public function hairfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var hairs:Class; var hair:Object; var puthair:Function; var e1 = _arg1; puthair = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (hair.hitTestObject(doll)){ doll.hair.gotoAndStop(_local3); Glob.hair = doll.hair.currentFrame; }; removeChild(DisplayObject(hair)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); hairs = (getDefinitionByName(("hair" + t)) as Class); hair = new (hairs); hair.name = ("s" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(hair)); hair.x = mouseX; hair.y = mouseY; hair.startDrag(true); hair.addEventListener(MouseEvent.MOUSE_UP, puthair); } public function topsfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var topss:Class; var tops:Object; var puttops:Function; var e1 = _arg1; puttops = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); removeChild(DisplayObject(tops)); if (tops.hitTestObject(doll)){ doll.tops.gotoAndStop((_local3 + 1)); Glob.tops = doll.tops.currentFrame; doll.dress.gotoAndStop(1); Glob.dress = 0; dressf = 0; topsf = 1; }; }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); topss = (getDefinitionByName(("tops" + t)) as Class); tops = new (topss); tops.name = ("t" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(tops)); tops.x = mouseX; tops.y = mouseY; tops.startDrag(true); tops.addEventListener(MouseEvent.MOUSE_UP, puttops); } public function nx(_arg1:MouseEvent):void{ stage.removeEventListener(Event.ENTER_FRAME, sets); nextFrame(); } public function plays(_arg1:MouseEvent):void{ nextFrame(); } } }//package RACHAELLEIGHCOOK_fla
Section 34
//OHLJK_255 (RACHAELLEIGHCOOK_fla.OHLJK_255) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class OHLJK_255 extends MovieClip { public function OHLJK_255(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 35
//OHLJK_258 (RACHAELLEIGHCOOK_fla.OHLJK_258) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class OHLJK_258 extends MovieClip { public function OHLJK_258(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 36
//OHLJK_259 (RACHAELLEIGHCOOK_fla.OHLJK_259) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class OHLJK_259 extends MovieClip { public function OHLJK_259(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 37
//peppydfgfsds_loader_20 (RACHAELLEIGHCOOK_fla.peppydfgfsds_loader_20) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class peppydfgfsds_loader_20 extends MovieClip { public function peppydfgfsds_loader_20(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 38
//shoes_103 (RACHAELLEIGHCOOK_fla.shoes_103) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class shoes_103 extends MovieClip { public function shoes_103(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 39
//shoespalette_221 (RACHAELLEIGHCOOK_fla.shoespalette_221) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class shoespalette_221 extends MovieClip { public var s1:MovieClip; public var s5:MovieClip; public var s2:MovieClip; public var s4:MovieClip; public var s3:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 40
//Symbol2DFASFcopy6uu_93 (RACHAELLEIGHCOOK_fla.Symbol2DFASFcopy6uu_93) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class Symbol2DFASFcopy6uu_93 extends MovieClip { public function Symbol2DFASFcopy6uu_93(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 41
//Symbol2DFASFcopy7uu_100 (RACHAELLEIGHCOOK_fla.Symbol2DFASFcopy7uu_100) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class Symbol2DFASFcopy7uu_100 extends MovieClip { public function Symbol2DFASFcopy7uu_100(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 42
//tops_167 (RACHAELLEIGHCOOK_fla.tops_167) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class tops_167 extends MovieClip { public function tops_167(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package RACHAELLEIGHCOOK_fla
Section 43
//topspalette_222 (RACHAELLEIGHCOOK_fla.topspalette_222) package RACHAELLEIGHCOOK_fla { import flash.display.*; public dynamic class topspalette_222 extends MovieClip { public var t2:MovieClip; public var t3:MovieClip; public var t7:MovieClip; public var t1:MovieClip; public var t9:MovieClip; public var t5:MovieClip; public var t8:MovieClip; public var t4:MovieClip; public var t6:MovieClip; public var t10:MovieClip; } }//package RACHAELLEIGHCOOK_fla
Section 44
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 45
//bottoms1 (bottoms1) package { import flash.display.*; public dynamic class bottoms1 extends MovieClip { } }//package
Section 46
//bottoms10 (bottoms10) package { import flash.display.*; public dynamic class bottoms10 extends MovieClip { } }//package
Section 47
//bottoms2 (bottoms2) package { import flash.display.*; public dynamic class bottoms2 extends MovieClip { } }//package
Section 48
//bottoms3 (bottoms3) package { import flash.display.*; public dynamic class bottoms3 extends MovieClip { } }//package
Section 49
//bottoms4 (bottoms4) package { import flash.display.*; public dynamic class bottoms4 extends MovieClip { } }//package
Section 50
//bottoms5 (bottoms5) package { import flash.display.*; public dynamic class bottoms5 extends MovieClip { } }//package
Section 51
//bottoms6 (bottoms6) package { import flash.display.*; public dynamic class bottoms6 extends MovieClip { } }//package
Section 52
//bottoms7 (bottoms7) package { import flash.display.*; public dynamic class bottoms7 extends MovieClip { } }//package
Section 53
//bottoms8 (bottoms8) package { import flash.display.*; public dynamic class bottoms8 extends MovieClip { } }//package
Section 54
//bottoms9 (bottoms9) package { import flash.display.*; public dynamic class bottoms9 extends MovieClip { } }//package
Section 55
//chain1 (chain1) package { import flash.display.*; public dynamic class chain1 extends MovieClip { } }//package
Section 56
//chain2 (chain2) package { import flash.display.*; public dynamic class chain2 extends MovieClip { } }//package
Section 57
//chain3 (chain3) package { import flash.display.*; public dynamic class chain3 extends MovieClip { } }//package
Section 58
//chain4 (chain4) package { import flash.display.*; public dynamic class chain4 extends MovieClip { } }//package
Section 59
//chain5 (chain5) package { import flash.display.*; public dynamic class chain5 extends MovieClip { } }//package
Section 60
//cloth_18 (cloth_18) package { import flash.display.*; public dynamic class cloth_18 extends MovieClip { } }//package
Section 61
//dress1 (dress1) package { import flash.display.*; public dynamic class dress1 extends MovieClip { } }//package
Section 62
//dress10 (dress10) package { import flash.display.*; public dynamic class dress10 extends MovieClip { } }//package
Section 63
//dress11 (dress11) package { import flash.display.*; public dynamic class dress11 extends MovieClip { } }//package
Section 64
//dress12 (dress12) package { import flash.display.*; public dynamic class dress12 extends MovieClip { } }//package
Section 65
//dress13 (dress13) package { import flash.display.*; public dynamic class dress13 extends MovieClip { } }//package
Section 66
//dress14 (dress14) package { import flash.display.*; public dynamic class dress14 extends MovieClip { } }//package
Section 67
//dress15 (dress15) package { import flash.display.*; public dynamic class dress15 extends MovieClip { } }//package
Section 68
//dress2 (dress2) package { import flash.display.*; public dynamic class dress2 extends MovieClip { } }//package
Section 69
//dress3 (dress3) package { import flash.display.*; public dynamic class dress3 extends MovieClip { } }//package
Section 70
//dress4 (dress4) package { import flash.display.*; public dynamic class dress4 extends MovieClip { } }//package
Section 71
//dress5 (dress5) package { import flash.display.*; public dynamic class dress5 extends MovieClip { } }//package
Section 72
//dress6 (dress6) package { import flash.display.*; public dynamic class dress6 extends MovieClip { } }//package
Section 73
//dress7 (dress7) package { import flash.display.*; public dynamic class dress7 extends MovieClip { } }//package
Section 74
//dress8 (dress8) package { import flash.display.*; public dynamic class dress8 extends MovieClip { } }//package
Section 75
//dress9 (dress9) package { import flash.display.*; public dynamic class dress9 extends MovieClip { } }//package
Section 76
//earring1 (earring1) package { import flash.display.*; public dynamic class earring1 extends MovieClip { } }//package
Section 77
//earring2 (earring2) package { import flash.display.*; public dynamic class earring2 extends MovieClip { } }//package
Section 78
//earring3 (earring3) package { import flash.display.*; public dynamic class earring3 extends MovieClip { } }//package
Section 79
//earring4 (earring4) package { import flash.display.*; public dynamic class earring4 extends MovieClip { } }//package
Section 80
//earring5 (earring5) package { import flash.display.*; public dynamic class earring5 extends MovieClip { } }//package
Section 81
//Glob (Glob) package { public class Glob { public static var shoes:Number = 0; public static var chain:Number = 0; public static var hair:Number = 0; public static var glass:Number = 0; public static var earring:Number = 0; public static var tex:String = ""; public static var bags:Number = 0; public static var bottoms:Number = 0; public static var temp:Number = 0; public static var dress:Number = 0; public static var playback:Boolean = false; public static var tops:Number = 0; } }//package
Section 82
//hair1 (hair1) package { import flash.display.*; public dynamic class hair1 extends MovieClip { } }//package
Section 83
//hair2 (hair2) package { import flash.display.*; public dynamic class hair2 extends MovieClip { } }//package
Section 84
//hair3 (hair3) package { import flash.display.*; public dynamic class hair3 extends MovieClip { } }//package
Section 85
//hair4 (hair4) package { import flash.display.*; public dynamic class hair4 extends MovieClip { } }//package
Section 86
//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 87
//shoe1 (shoe1) package { import flash.display.*; public dynamic class shoe1 extends MovieClip { } }//package
Section 88
//shoe2 (shoe2) package { import flash.display.*; public dynamic class shoe2 extends MovieClip { } }//package
Section 89
//shoe3 (shoe3) package { import flash.display.*; public dynamic class shoe3 extends MovieClip { } }//package
Section 90
//shoe4 (shoe4) package { import flash.display.*; public dynamic class shoe4 extends MovieClip { } }//package
Section 91
//shoe5 (shoe5) package { import flash.display.*; public dynamic class shoe5 extends MovieClip { } }//package
Section 92
//tops1 (tops1) package { import flash.display.*; public dynamic class tops1 extends MovieClip { } }//package
Section 93
//tops10 (tops10) package { import flash.display.*; public dynamic class tops10 extends MovieClip { } }//package
Section 94
//tops2 (tops2) package { import flash.display.*; public dynamic class tops2 extends MovieClip { } }//package
Section 95
//tops3 (tops3) package { import flash.display.*; public dynamic class tops3 extends MovieClip { } }//package
Section 96
//tops4 (tops4) package { import flash.display.*; public dynamic class tops4 extends MovieClip { } }//package
Section 97
//tops5 (tops5) package { import flash.display.*; public dynamic class tops5 extends MovieClip { } }//package
Section 98
//tops6 (tops6) package { import flash.display.*; public dynamic class tops6 extends MovieClip { } }//package
Section 99
//tops7 (tops7) package { import flash.display.*; public dynamic class tops7 extends MovieClip { } }//package
Section 100
//tops8 (tops8) package { import flash.display.*; public dynamic class tops8 extends MovieClip { } }//package
Section 101
//tops9 (tops9) package { import flash.display.*; public dynamic class tops9 extends MovieClip { } }//package

Library Items

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

Instance Names

"preloader"Frame 1Symbol 252 MovieClip {RACHAELLEIGHCOOK_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 254 EditableText
"ball"Frame 1Symbol 304 MovieClip {RACHAELLEIGHCOOK_fla.cvbcvbcvbvcy_78_1_loader_21}
"percent"Frame 1Symbol 305 EditableText
"buttonHolder"Frame 2Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64}
"pl"Frame 2Symbol 446 MovieClip {RACHAELLEIGHCOOK_fla.khjll_87}
"buttons1"Frame 3Symbol 487 MovieClip {RACHAELLEIGHCOOK_fla.buttons2uu_92}
"doll"Frame 3Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102}
"chainpalette"Frame 3Symbol 499 MovieClip {RACHAELLEIGHCOOK_fla.chainpalette_216}
"earringpalette"Frame 3Symbol 505 MovieClip {RACHAELLEIGHCOOK_fla.earringpalette_217}
"shoespalette"Frame 3Symbol 506 MovieClip {RACHAELLEIGHCOOK_fla.shoespalette_221}
"topspalette"Frame 3Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222}
"bottomspalette"Frame 3Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223}
"dresspalette"Frame 3Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224}
"hairpalette"Frame 3Symbol 510 MovieClip {RACHAELLEIGHCOOK_fla.hairpalette_225}
"bagspalette"Frame 3Symbol 512 MovieClip
"glasspalette"Frame 3Symbol 512 MovieClip
"logo_mc"Frame 3Symbol 517 Button
"sndon"Frame 3Symbol 525 Button
"sndoff"Frame 3Symbol 526 Button
"nextbtn"Frame 4Symbol 559 MovieClip {RACHAELLEIGHCOOK_fla.buttons1copyy_247}
"t1"Frame 4Symbol 561 EditableText
"ent"Frame 4Symbol 573 MovieClip {RACHAELLEIGHCOOK_fla.enteryournamey_254}
"dolls"Frame 5Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102}
"nex"Frame 5Symbol 595 MovieClip {RACHAELLEIGHCOOK_fla.OHLJK_255}
"email"Frame 5Symbol 606 MovieClip {RACHAELLEIGHCOOK_fla.OHLJK_258}
"playmore"Frame 5Symbol 618 MovieClip {RACHAELLEIGHCOOK_fla.OHLJK_259}
"t2"Frame 5Symbol 620 EditableText
"popup"Frame 5Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260}
"masker"Symbol 252 MovieClip {RACHAELLEIGHCOOK_fla.cbvdsfdsf_loader_7} Frame 1Symbol 240 MovieClip
"b2"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 367 Button
"b3"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 373 Button
"b4"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 379 Button
"b5"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 385 Button
"b6"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 391 Button
"b7"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 396 Button
"b8"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 401 Button
"b9"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 406 Button
"b10"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 411 Button
"b11"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 418 Button
"b1"Symbol 426 MovieClip {RACHAELLEIGHCOOK_fla.ButtonHolder_64} Frame 1Symbol 425 Button
"resetbtn"Symbol 487 MovieClip {RACHAELLEIGHCOOK_fla.buttons2uu_92} Frame 1Symbol 472 MovieClip {RACHAELLEIGHCOOK_fla.Symbol2DFASFcopy6uu_93}
"nextbtn"Symbol 487 MovieClip {RACHAELLEIGHCOOK_fla.buttons2uu_92} Frame 1Symbol 486 MovieClip {RACHAELLEIGHCOOK_fla.Symbol2DFASFcopy7uu_100}
"shoes"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 488 MovieClip {RACHAELLEIGHCOOK_fla.shoes_103}
"dress"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 489 MovieClip {RACHAELLEIGHCOOK_fla.dress_114}
"bottoms"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 490 MovieClip {RACHAELLEIGHCOOK_fla.bottoms_145}
"tops"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 491 MovieClip {RACHAELLEIGHCOOK_fla.tops_167}
"chain"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 492 MovieClip {RACHAELLEIGHCOOK_fla.chians_188}
"hair"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 355 MovieClip {RACHAELLEIGHCOOK_fla.hairs_50}
"bags"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 494 MovieClip
"glass"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 494 MovieClip
"earring"Symbol 496 MovieClip {RACHAELLEIGHCOOK_fla.doll_102} Frame 1Symbol 495 MovieClip {RACHAELLEIGHCOOK_fla.ear_205}
"c5"Symbol 499 MovieClip {RACHAELLEIGHCOOK_fla.chainpalette_216} Frame 1Symbol 26 MovieClip
"c4"Symbol 499 MovieClip {RACHAELLEIGHCOOK_fla.chainpalette_216} Frame 1Symbol 30 MovieClip
"c3"Symbol 499 MovieClip {RACHAELLEIGHCOOK_fla.chainpalette_216} Frame 1Symbol 34 MovieClip
"c2"Symbol 499 MovieClip {RACHAELLEIGHCOOK_fla.chainpalette_216} Frame 1Symbol 40 MovieClip
"c1"Symbol 499 MovieClip {RACHAELLEIGHCOOK_fla.chainpalette_216} Frame 1Symbol 47 MovieClip
"e2"Symbol 505 MovieClip {RACHAELLEIGHCOOK_fla.earringpalette_217} Frame 1Symbol 15 MovieClip
"e3"Symbol 505 MovieClip {RACHAELLEIGHCOOK_fla.earringpalette_217} Frame 1Symbol 500 MovieClip
"e1"Symbol 505 MovieClip {RACHAELLEIGHCOOK_fla.earringpalette_217} Frame 1Symbol 19 MovieClip
"e4"Symbol 505 MovieClip {RACHAELLEIGHCOOK_fla.earringpalette_217} Frame 1Symbol 502 MovieClip
"e5"Symbol 505 MovieClip {RACHAELLEIGHCOOK_fla.earringpalette_217} Frame 1Symbol 504 MovieClip
"s4"Symbol 506 MovieClip {RACHAELLEIGHCOOK_fla.shoespalette_221} Frame 1Symbol 199 MovieClip
"s3"Symbol 506 MovieClip {RACHAELLEIGHCOOK_fla.shoespalette_221} Frame 1Symbol 202 MovieClip
"s2"Symbol 506 MovieClip {RACHAELLEIGHCOOK_fla.shoespalette_221} Frame 1Symbol 205 MovieClip
"s1"Symbol 506 MovieClip {RACHAELLEIGHCOOK_fla.shoespalette_221} Frame 1Symbol 209 MovieClip
"s5"Symbol 506 MovieClip {RACHAELLEIGHCOOK_fla.shoespalette_221} Frame 1Symbol 196 MovieClip
"t1"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 87 MovieClip
"t2"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 83 MovieClip
"t3"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 79 MovieClip
"t4"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 75 MovieClip
"t5"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 71 MovieClip
"t6"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 67 MovieClip
"t7"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 63 MovieClip
"t8"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 59 MovieClip
"t9"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 55 MovieClip
"t10"Symbol 507 MovieClip {RACHAELLEIGHCOOK_fla.topspalette_222} Frame 1Symbol 51 MovieClip
"b1"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 128 MovieClip
"b2"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 124 MovieClip
"b3"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 121 MovieClip
"b4"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 117 MovieClip
"b5"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 110 MovieClip
"b6"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 106 MovieClip
"b7"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 102 MovieClip
"b8"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 98 MovieClip
"b9"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 94 MovieClip
"b10"Symbol 508 MovieClip {RACHAELLEIGHCOOK_fla.bottomspalette_223} Frame 1Symbol 91 MovieClip
"d15"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 131 MovieClip
"d14"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 136 MovieClip
"d13"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 139 MovieClip
"d12"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 142 MovieClip
"d11"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 145 MovieClip
"d10"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 155 MovieClip
"d9"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 159 MovieClip
"d8"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 163 MovieClip
"d7"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 166 MovieClip
"d6"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 171 MovieClip
"d5"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 176 MovieClip
"d4"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 180 MovieClip
"d3"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 183 MovieClip
"d2"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 187 MovieClip
"d1"Symbol 509 MovieClip {RACHAELLEIGHCOOK_fla.dresspalette_224} Frame 1Symbol 191 MovieClip
"h4"Symbol 510 MovieClip {RACHAELLEIGHCOOK_fla.hairpalette_225} Frame 1Symbol 218 MovieClip
"h2"Symbol 510 MovieClip {RACHAELLEIGHCOOK_fla.hairpalette_225} Frame 1Symbol 218 MovieClip
"h3"Symbol 510 MovieClip {RACHAELLEIGHCOOK_fla.hairpalette_225} Frame 1Symbol 224 MovieClip
"h1"Symbol 510 MovieClip {RACHAELLEIGHCOOK_fla.hairpalette_225} Frame 1Symbol 224 MovieClip
"b8"Symbol 559 MovieClip {RACHAELLEIGHCOOK_fla.buttons1copyy_247} Frame 1Symbol 557 MovieClip
"close"Symbol 638 MovieClip {RACHAELLEIGHCOOK_fla.hdhdfhf_emaikl_261} Frame 1Symbol 632 Button
"friendMail"Symbol 638 MovieClip {RACHAELLEIGHCOOK_fla.hdhdfhf_emaikl_261} Frame 1Symbol 635 EditableText
"friend1"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 638 MovieClip {RACHAELLEIGHCOOK_fla.hdhdfhf_emaikl_261}
"submit"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 656 Button
"addition"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 660 Button
"close"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 632 Button
"friend2"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 638 MovieClip {RACHAELLEIGHCOOK_fla.hdhdfhf_emaikl_261}
"friend3"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 638 MovieClip {RACHAELLEIGHCOOK_fla.hdhdfhf_emaikl_261}
"friend4"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 638 MovieClip {RACHAELLEIGHCOOK_fla.hdhdfhf_emaikl_261}
"nameDetail"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 665 EditableText
"mailDetail"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 666 EditableText
"messageDetail"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 667 EditableText
"friendName"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 668 EditableText
"friendMail"Symbol 670 MovieClip {RACHAELLEIGHCOOK_fla.jgjyiy9_emaikl_260} Frame 1Symbol 669 EditableText

Special Tags

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




http://swfchan.com/25/121940/info.shtml
Created: 4/3 -2019 05:26:01 Last modified: 4/3 -2019 05:26:01 Server time: 27/04 -2024 02:45:27