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

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

nathalie-kelley.swf

This is the info page for
Flash #121127

(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

.

Nederlands

Русский

Italiano

Deutsch

Français

Türkçe

Svenska

Español

Polski

Português

English

Play

Spelen

Играть

Giocare

Spielen

Jouer

Oyna

Jugar

Spela

Grać

Brincar

Nathalie
kelley

M
a
k
e

O
v
e
r

M
a
k
e

O
v
e
r

С
д
е
л
а
т
ь

б
о
л
е
е

M
a
k
e

O
v
e
r

M
a
k
e

O
v
e
r

M
a
k
e

O
v
e
r

Ü
z
e
r
i
n
d
e
n

y
a
p

M
a
k
e

O
v
e
r

M
a
k
e

O
v
e
r

M
a
k
e

O
v
e
r

M
a
k
e

O
v
e
r

No

Hair Dye

Волосы на
красителях

Tinture per
capelli

Tinture per
capelli

Saç Boya

Tintes de
cabello

Hårfärgningsm
edel

Farbowania
włosów

Face

Gezicht

Лицо

Volto

Gesicht

Visage

Surat

Cara

Ansikte

Twarz

Rosto

Extra

Extra

Дополнительные

Ekstra

Eyeshade

Eyeshade

Eyeshade

Lidschatten

Far

Eyeshade

Eyeshade

Rouge

Rouge

Руж

Ruj

Lips

Lips

Губы

Lippen

Dudaklar

Dudaklar

Labios

Earring

Studs

Коты

Deckkater

Studs

Chain

Keten

Цепь

Catena

Ketten

Chaîne

Kolyeler

Cadena

Kedja

Sieć

Cadeia

Dresses

Dresses

Платье

Dresses

Kleider

Dresses

Elbiseler

Elbiseler

Klänning

Dress

Vestido

Done

Gedaan

Готово

Fatto

Getan

Fait

Yapıldı

Hecho

Gjord

Zrobione

Feito

123PEPPY

Enter Your
Name

Voer Uw
Naam

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

Inserisci
il tuo
nome

Geben
Sie Ihr
Name

Entrez
votre
nom

Adınız
girin

Ingrese
su
Nombrein

Ange
ditt
namn

Imię i
nazwisk
o

Digite
seu
nome

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

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

Designed
by

Ontworpen
door

Дизайн

progettato
da

Conçu par

Designed By

Tarafından
Tasarlanmışt
ır

Diseñado
Por

Designad av

Designed
by

Desenhado
por

Email

E
mailadres

Электронная
почта

Email

E-posta

Correo
electrónico

Again

opnieuw

снова

nuovamente

erneut

à nouveau

tekrar

otra vez

igen

ponownie

novamente

YOUR FRIEND'S EMAIL :

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

SUBMIT

SUBMIT

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
//allthings_133 (Nathaliekelley_fla.allthings_133) package Nathaliekelley_fla { import flash.display.*; public dynamic class allthings_133 extends 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 Nathaliekelley_fla
Section 14
//asasasasa_239 (Nathaliekelley_fla.asasasasa_239) package Nathaliekelley_fla { import flash.display.*; public dynamic class asasasasa_239 extends MovieClip { public var l:MovieClip; public function asasasasa_239(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 15
//asasasasacopy_46 (Nathaliekelley_fla.asasasasacopy_46) package Nathaliekelley_fla { import flash.display.*; public dynamic class asasasasacopy_46 extends MovieClip { public function asasasasacopy_46(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 16
//asasasasacopy2_250 (Nathaliekelley_fla.asasasasacopy2_250) package Nathaliekelley_fla { import flash.display.*; public dynamic class asasasasacopy2_250 extends MovieClip { public var l:MovieClip; public function asasasasacopy2_250(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 17
//asasasasacopy3_253 (Nathaliekelley_fla.asasasasacopy3_253) package Nathaliekelley_fla { import flash.display.*; public dynamic class asasasasacopy3_253 extends MovieClip { public var l:MovieClip; public function asasasasacopy3_253(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 18
//ButtonHolder_22 (Nathaliekelley_fla.ButtonHolder_22) package Nathaliekelley_fla { import flash.display.*; public dynamic class ButtonHolder_22 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 Nathaliekelley_fla
Section 19
//cbvdsfdsf_7 (Nathaliekelley_fla.cbvdsfdsf_7) package Nathaliekelley_fla { import flash.display.*; public dynamic class cbvdsfdsf_7 extends MovieClip { public var masker:MovieClip; } }//package Nathaliekelley_fla
Section 20
//chainpalette_210 (Nathaliekelley_fla.chainpalette_210) package Nathaliekelley_fla { import flash.display.*; public dynamic class chainpalette_210 extends MovieClip { public var n1:MovieClip; public var n2:MovieClip; public var n5:MovieClip; public var n4:MovieClip; public var n3:MovieClip; } }//package Nathaliekelley_fla
Section 21
//cvbcvbcvbvcy_78_1_20 (Nathaliekelley_fla.cvbcvbcvbvcy_78_1_20) package Nathaliekelley_fla { import flash.display.*; public dynamic class cvbcvbcvbvcy_78_1_20 extends MovieClip { public function cvbcvbcvbvcy_78_1_20(){ addFrameScript(56, frame57); } function frame57(){ stop(); } } }//package Nathaliekelley_fla
Section 22
//cvnhg_236 (Nathaliekelley_fla.cvnhg_236) package Nathaliekelley_fla { import flash.display.*; public dynamic class cvnhg_236 extends MovieClip { public function cvnhg_236(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 23
//desiby_248 (Nathaliekelley_fla.desiby_248) package Nathaliekelley_fla { import flash.display.*; public dynamic class desiby_248 extends MovieClip { public var l:MovieClip; } }//package Nathaliekelley_fla
Section 24
//designedby_249 (Nathaliekelley_fla.designedby_249) package Nathaliekelley_fla { import flash.display.*; public dynamic class designedby_249 extends MovieClip { public function designedby_249(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 25
//doll_51 (Nathaliekelley_fla.doll_51) package Nathaliekelley_fla { import flash.display.*; public dynamic class doll_51 extends MovieClip { public var extra2:MovieClip; public var extra3:MovieClip; public var extra1:MovieClip; public var dress:MovieClip; public var hairdye:MovieClip; public var lips:MovieClip; public var earring:MovieClip; public var rouge:MovieClip; public var chain:MovieClip; public var eyeshade:MovieClip; public var tint:MovieClip; } }//package Nathaliekelley_fla
Section 26
//doll2_52 (Nathaliekelley_fla.doll2_52) package Nathaliekelley_fla { import flash.display.*; public dynamic class doll2_52 extends MovieClip { public function doll2_52(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndPlay(1); } } }//package Nathaliekelley_fla
Section 27
//dress_54 (Nathaliekelley_fla.dress_54) package Nathaliekelley_fla { import flash.display.*; public dynamic class dress_54 extends MovieClip { public function dress_54(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndPlay(1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 28
//dresspalette_223 (Nathaliekelley_fla.dresspalette_223) package Nathaliekelley_fla { import flash.display.*; public dynamic class dresspalette_223 extends MovieClip { public var d4:MovieClip; public var d2:MovieClip; public var d5:MovieClip; public var d3:MovieClip; public var d1:MovieClip; } }//package Nathaliekelley_fla
Section 29
//eadada_89 (Nathaliekelley_fla.eadada_89) package Nathaliekelley_fla { import flash.display.*; public dynamic class eadada_89 extends MovieClip { public function eadada_89(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndPlay(1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 30
//earringpalette_199 (Nathaliekelley_fla.earringpalette_199) package Nathaliekelley_fla { import flash.display.*; public dynamic class earringpalette_199 extends MovieClip { public var e2:MovieClip; public var e5:MovieClip; public var e3:MovieClip; public var e4:MovieClip; public var e1:MovieClip; } }//package Nathaliekelley_fla
Section 31
//email_251 (Nathaliekelley_fla.email_251) package Nathaliekelley_fla { import flash.display.*; public dynamic class email_251 extends MovieClip { public function email_251(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 32
//enteryournameczX_247 (Nathaliekelley_fla.enteryournameczX_247) package Nathaliekelley_fla { import flash.display.*; public dynamic class enteryournameczX_247 extends MovieClip { public function enteryournameczX_247(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 33
//ex_106 (Nathaliekelley_fla.ex_106) package Nathaliekelley_fla { import flash.display.*; public dynamic class ex_106 extends MovieClip { public function ex_106(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndPlay(1); } } }//package Nathaliekelley_fla
Section 34
//extrabtn_154 (Nathaliekelley_fla.extrabtn_154) package Nathaliekelley_fla { import flash.display.*; public dynamic class extrabtn_154 extends MovieClip { public var ex1:MovieClip; public var ex3:MovieClip; public var ex2:MovieClip; } }//package Nathaliekelley_fla
Section 35
//exz_111 (Nathaliekelley_fla.exz_111) package Nathaliekelley_fla { import flash.display.*; public dynamic class exz_111 extends MovieClip { public function exz_111(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package Nathaliekelley_fla
Section 36
//eyeshade_233 (Nathaliekelley_fla.eyeshade_233) package Nathaliekelley_fla { import flash.display.*; public dynamic class eyeshade_233 extends MovieClip { public function eyeshade_233(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 37
//eyeshadepalette_158 (Nathaliekelley_fla.eyeshadepalette_158) package Nathaliekelley_fla { import flash.display.*; public dynamic class eyeshadepalette_158 extends MovieClip { public var e2:MovieClip; public var e5:MovieClip; public var e6:MovieClip; public var e3:MovieClip; public var e4:MovieClip; public var e1:MovieClip; } }//package Nathaliekelley_fla
Section 38
//ghghgh12111_237 (Nathaliekelley_fla.ghghgh12111_237) package Nathaliekelley_fla { import flash.display.*; public dynamic class ghghgh12111_237 extends MovieClip { public function ghghgh12111_237(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 39
//ghghghghghghghghg_238 (Nathaliekelley_fla.ghghghghghghghghg_238) package Nathaliekelley_fla { import flash.display.*; public dynamic class ghghghghghghghghg_238 extends MovieClip { public function ghghghghghghghghg_238(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 40
//hairdayd_119 (Nathaliekelley_fla.hairdayd_119) package Nathaliekelley_fla { import flash.display.*; public dynamic class hairdayd_119 extends MovieClip { public function hairdayd_119(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndPlay(1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 41
//HAIRDAYN_230 (Nathaliekelley_fla.HAIRDAYN_230) package Nathaliekelley_fla { import flash.display.*; public dynamic class HAIRDAYN_230 extends MovieClip { public function HAIRDAYN_230(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 42
//hairpalette_134 (Nathaliekelley_fla.hairpalette_134) package Nathaliekelley_fla { import flash.display.*; public dynamic class hairpalette_134 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h5:MovieClip; public var h6:MovieClip; public var h3:MovieClip; } }//package Nathaliekelley_fla
Section 43
//hdhdfhf_emaikl_256 (Nathaliekelley_fla.hdhdfhf_emaikl_256) package Nathaliekelley_fla { import flash.events.*; import flash.display.*; import flash.text.*; public dynamic class hdhdfhf_emaikl_256 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; public function hdhdfhf_emaikl_256(){ addFrameScript(0, frame1); } public function hideAdd(_arg1:MouseEvent):void{ this.visible = false; } function frame1(){ this.visible = false; close.addEventListener(MouseEvent.CLICK, hideAdd); } } }//package Nathaliekelley_fla
Section 44
//jgjyiy9_emaikl_255 (Nathaliekelley_fla.jgjyiy9_emaikl_255) package Nathaliekelley_fla { import flash.display.*; import flash.text.*; public dynamic class jgjyiy9_emaikl_255 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 Nathaliekelley_fla
Section 45
//lips1_235 (Nathaliekelley_fla.lips1_235) package Nathaliekelley_fla { import flash.display.*; public dynamic class lips1_235 extends MovieClip { public function lips1_235(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 46
//lips1copy_231 (Nathaliekelley_fla.lips1copy_231) package Nathaliekelley_fla { import flash.display.*; public dynamic class lips1copy_231 extends MovieClip { public function lips1copy_231(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 47
//lips1copy3_232 (Nathaliekelley_fla.lips1copy3_232) package Nathaliekelley_fla { import flash.display.*; public dynamic class lips1copy3_232 extends MovieClip { public function lips1copy3_232(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 48
//lipsh_102 (Nathaliekelley_fla.lipsh_102) package Nathaliekelley_fla { import flash.display.*; public dynamic class lipsh_102 extends MovieClip { public function lipsh_102(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndPlay(1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 49
//lipspalette_183 (Nathaliekelley_fla.lipspalette_183) package Nathaliekelley_fla { import flash.display.*; public dynamic class lipspalette_183 extends MovieClip { public var l1:MovieClip; public var l4:MovieClip; public var l5:MovieClip; public var l3:MovieClip; public var l2:MovieClip; } }//package Nathaliekelley_fla
Section 50
//m_48 (Nathaliekelley_fla.m_48) package Nathaliekelley_fla { import flash.display.*; public dynamic class m_48 extends MovieClip { public function m_48(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 51
//MainTimeline (Nathaliekelley_fla.MainTimeline) package Nathaliekelley_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 framesCount:Number; public var t2:TextField; public var t1:TextField; public var i; public var preloader:MovieClip; public var palette:MovieClip; public var palArray:Array; public var dolls:MovieClip; public var nextbtn:MovieClip; public var contestMenu:ContextMenu; public var percentage:Number; public var popup:MovieClip; public var logo_mc:SimpleButton; public var girldollArray:Array; public var BitsLoaded:TextField; public var queCount:uint; public var nextbtn1:MovieClip; public var mailArray:Array; public var ent:MovieClip; public var next:MovieClip; public var previous:MovieClip; public var titles:MovieClip; public var doll:MovieClip; public var sndoff:SimpleButton; public var buttons:MovieClip; public var buttonHolder:MovieClip; public var tempCount:Number; public var email:MovieClip; public var nex:MovieClip; public var contextmenuItem:ContextMenuItem; public var pl:MovieClip; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function lipsfunction(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.lips.gotoAndStop(_local3); Globe.lips = doll.lips.currentFrame; } public function prev(_arg1:MouseEvent):void{ buttons.prevFrame(); framesCount = buttons.currentFrame; } public function sets(_arg1:Event){ switch (framesCount){ case 1: i = 0; while (i <= 8) { if (i == 0){ palArray[0].visible = true; } else { if (i != 0){ palArray[i].visible = false; }; }; i++; }; break; case 2: i = 0; while (i <= 8) { if (i == 1){ palArray[1].visible = true; } else { if (i != 1){ palArray[i].visible = false; }; }; i++; }; break; case 3: i = 0; while (i <= 8) { if (i == 2){ palArray[2].visible = true; } else { if (i != 2){ palArray[i].visible = false; }; }; i++; }; break; case 4: i = 0; while (i <= 8) { if (i == 3){ palArray[3].visible = true; } else { if (i != 3){ palArray[i].visible = false; }; }; i++; }; break; case 5: i = 0; while (i <= 8) { if (i == 4){ palArray[4].visible = true; } else { if (i != 4){ palArray[i].visible = false; }; }; i++; }; break; case 6: i = 0; while (i <= 8) { if (i == 5){ palArray[5].visible = true; } else { if (i != 5){ palArray[i].visible = false; }; }; i++; }; break; case 7: i = 0; while (i <= 8) { if (i == 6){ palArray[6].visible = true; } else { if (i != 6){ palArray[i].visible = false; }; }; i++; }; break; case 8: i = 0; while (i <= 8) { if (i == 7){ palArray[7].visible = true; } else { if (i != 7){ palArray[i].visible = false; }; }; i++; }; break; case 9: i = 0; while (i <= 8) { if (i == 8){ palArray[8].visible = true; } else { if (i != 8){ palArray[i].visible = false; }; }; i++; }; break; }; } public function earringfunction(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.earring.gotoAndStop((_local3 + 1)); Globe.earring = doll.earring.currentFrame; } function frame3(){ MochiBot.track(this, "0ed40a50"); stop(); framesCount = 1; palArray = new Array(); i = 0; while (i <= (palette.numChildren - 1)) { palette.getChildAt(i).visible = false; palArray.push(palette.getChildAt(i)); i++; }; next.addEventListener(MouseEvent.CLICK, nexts); previous.addEventListener(MouseEvent.CLICK, prev); stage.addEventListener(Event.ENTER_FRAME, sets); i = 0; while (i <= (palette.b9.numChildren - 1)) { palette.b9.getChildAt(i).addEventListener(MouseEvent.CLICK, dressfunction); i++; }; i = 0; while (i <= (palette.b2.numChildren - 1)) { palette.b2.getChildAt(i).addEventListener(MouseEvent.CLICK, tintfunction1); i++; }; i = 0; while (i <= (palette.b1.numChildren - 1)) { palette.b1.getChildAt(i).addEventListener(MouseEvent.CLICK, hairfunction); i++; }; i = 0; while (i <= (palette.b4.numChildren - 1)) { palette.b4.getChildAt(i).addEventListener(MouseEvent.CLICK, eyeshadefunction); i++; }; i = 0; while (i <= (palette.b5.numChildren - 1)) { palette.b5.getChildAt(i).addEventListener(MouseEvent.CLICK, rougefunction); i++; }; i = 0; while (i <= (palette.b6.numChildren - 1)) { palette.b6.getChildAt(i).addEventListener(MouseEvent.CLICK, lipsfunction); i++; }; i = 0; while (i <= (palette.b7.numChildren - 1)) { palette.b7.getChildAt(i).addEventListener(MouseEvent.CLICK, earringfunction); i++; }; i = 0; while (i <= (palette.b8.numChildren - 1)) { palette.b8.getChildAt(i).addEventListener(MouseEvent.CLICK, chainfunction); i++; }; i = 0; while (i <= (palette.b3.numChildren - 1)) { palette.b3.getChildAt(i).addEventListener(MouseEvent.CLICK, extrafunction); i++; }; nextbtn.addEventListener(MouseEvent.CLICK, nex1); } public function nextbtns1(_arg1:MouseEvent):void{ Globe.tex = t1.text; nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, results); } function frame5(){ stop(); email.gotoAndStop(Globe.temp); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link5); }; if (((this.loaderInfo.parameters.bg) && ((Globe.playback == false)))){ email.visible = true; nex.playagain.tabEnabled = false; email.buttonMode = true; email.tabEnabled = 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; girldollArray = this.loaderInfo.parameters.girldoll.split(""); dolls.hairdye.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tint.gotoAndStop(Number(girldollArray[1])); dolls.extra1.gotoAndStop(Number(girldollArray[2])); dolls.extra2.gotoAndStop(Number(girldollArray[3])); dolls.extra3.gotoAndStop(Number(girldollArray[4])); dolls.eyeshade.gotoAndStop(Number(girldollArray[5])); dolls.rouge.gotoAndStop(Number(girldollArray[6])); dolls.lips.gotoAndStop(Number(girldollArray[7])); dolls.earring.gotoAndStop(Number(girldollArray[8])); dolls.chain.gotoAndStop(Number(girldollArray[9])); dolls.dress.gotoAndStop(Number(girldollArray[10])); nex.playagain.addEventListener(MouseEvent.CLICK, plas1); email.addEventListener(MouseEvent.ROLL_OVER, rollover3); email.addEventListener(MouseEvent.ROLL_OUT, rollout3); nex.playagain.addEventListener(MouseEvent.ROLL_OVER, rollover3); nex.playagain.addEventListener(MouseEvent.ROLL_OUT, rollout3); nex.tabEnabled = false; nex.playagain.buttonMode = true; nex.playagain.gotoAndStop(Globe.temp); } else { if (Globe.playback == true){ t2.text = Globe.tex; nex.playagain.tabEnabled = false; email.visible = true; email.buttonMode = true; email.tabEnabled = false; dolls.hairdye.gotoAndStop(Globe.hair); dolls.tint.gotoAndStop(Globe.tint); dolls.extra1.gotoAndStop(Globe.extra1); dolls.extra2.gotoAndStop(Globe.extra2); dolls.extra3.gotoAndStop(Globe.extra3); dolls.eyeshade.gotoAndStop(Globe.eyeshade); dolls.rouge.gotoAndStop(Globe.rouge); dolls.lips.gotoAndStop(Globe.lips); dolls.earring.gotoAndStop(Globe.earring); dolls.chain.gotoAndStop(Globe.chain); dolls.dress.gotoAndStop(Globe.dress); nex.playagain.addEventListener(MouseEvent.CLICK, plas); nex.playagain.addEventListener(MouseEvent.ROLL_OVER, rollover2); nex.playagain.addEventListener(MouseEvent.ROLL_OUT, rollout2); email.addEventListener(MouseEvent.ROLL_OVER, rollover2); email.addEventListener(MouseEvent.ROLL_OUT, rollout2); nex.playagain.buttonMode = true; nex.playagain.gotoAndStop(Globe.temp); email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); }; }; queCount = 0; mailArray = new Array(popup.friend1, popup.friend2, popup.friend3, popup.friend4); girlDoll = ((((((((((dolls.hairdye.currentFrame.toString() + dolls.tint.currentFrame.toString()) + dolls.extra1.currentFrame.toString()) + dolls.extra2.currentFrame.toString()) + dolls.extra3.currentFrame.toString()) + dolls.eyeshade.currentFrame.toString()) + dolls.rouge.currentFrame.toString()) + dolls.lips.currentFrame.toString()) + dolls.earring.currentFrame.toString()) + dolls.chain.currentFrame.toString()) + dolls.dress.currentFrame.toString()); trace(girlDoll); stop(); } 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 frame4(){ stop(); t1.text = ""; t1.restrict = "A-Z0-9"; nextbtn1.gotoAndStop(Globe.temp); nextbtn1.buttonMode = true; ent.gotoAndStop(Globe.temp); stage.addEventListener(Event.ENTER_FRAME, results); nextbtn1.addEventListener(MouseEvent.CLICK, nextbtns1); if (loaderInfo.url.match("123peppy")){ } else { logo_mc.addEventListener(MouseEvent.CLICK, link1); }; } public function eyeshadefunction(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.eyeshade.gotoAndStop(_local3); Globe.eyeshade = doll.eyeshade.currentFrame; } function frame2(){ stop(); stop(); Globe.playback = true; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); Globe.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 rougefunction(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.rouge.gotoAndStop(_local3); Globe.rouge = doll.rouge.currentFrame; } public function rollout2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function rollout3(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function nex1(_arg1:MouseEvent):void{ nextFrame(); } public function tintfunction1(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.tint.gotoAndStop(_local3); Globe.tint = doll.tint.currentFrame; } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function starter(_arg1:MouseEvent):void{ var _local2:*; _local2 = _arg1.target; pl.gotoAndStop(_local2.name.substr(1)); Globe.temp = _local2.name.substr(1); titles.gotoAndStop(Globe.temp); } public function showMailBox(_arg1:MouseEvent):void{ email.mouseEnabled = 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 hideMailBox(_arg1:MouseEvent):void{ var event = _arg1; email.mouseEnabled = true; TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function showExtra(_arg1:MouseEvent):void{ if (queCount < 4){ mailArray[queCount].visible = true; queCount++; }; } public function dressfunction(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.dress.gotoAndStop(_local3); Globe.dress = doll.dress.currentFrame; } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } 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.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/nathalie-kelley-makeover"; variables.name = t2.text; 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 BeeMoving(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local2 = (mouseX - ball.x); _local3 = (mouseY - ball.y); ball.x = (ball.x + (_local2 * 0.2)); ball.y = (ball.y + (_local3 * 0.2)); _local4 = loaderInfo.bytesLoaded; _local5 = loaderInfo.bytesTotal; percentage = Math.round(((_local4 / _local5) * 100)); BitsLoaded.text = (((_local4 + "kbs /") + _local5) + "kbs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); if (this.loaderInfo.parameters.bg){ gotoAndStop(3); } else { gotoAndStop(2); }; }; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link1(_arg1:MouseEvent){ 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 rollover3(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function chainfunction(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.chain.gotoAndStop((_local3 + 1)); Globe.chain = doll.chain.currentFrame; } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.5; _arg1.currentTarget.scaleY = 0.5; } public function hairfunction(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); doll.hairdye.gotoAndStop(_local3); Globe.hair = doll.hairdye.currentFrame; } public function plays(_arg1:MouseEvent):void{ nextFrame(); } public function rollover2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function nexts(_arg1:MouseEvent):void{ buttons.nextFrame(); framesCount = buttons.currentFrame; } public function extrafunction(_arg1:MouseEvent):void{ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(2)); switch (_local3){ case 1: doll.extra1.nextFrame(); Globe.extra1 = doll.extra1.currentFrame; break; case 2: doll.extra2.nextFrame(); Globe.extra2 = doll.extra2.currentFrame; break; case 3: doll.extra3.nextFrame(); Globe.extra3 = doll.extra3.currentFrame; break; }; } public function results(_arg1:Event):void{ if (t1.text == ""){ nextbtn1.visible = false; } else { nextbtn1.visible = true; }; } } }//package Nathaliekelley_fla
Section 52
//mnmbnv_254 (Nathaliekelley_fla.mnmbnv_254) package Nathaliekelley_fla { import flash.display.*; public dynamic class mnmbnv_254 extends MovieClip { public function mnmbnv_254(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 53
//neck_60 (Nathaliekelley_fla.neck_60) package Nathaliekelley_fla { import flash.display.*; public dynamic class neck_60 extends MovieClip { public function neck_60(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndPlay(1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 54
//neckcopy2_121 (Nathaliekelley_fla.neckcopy2_121) package Nathaliekelley_fla { import flash.display.*; public dynamic class neckcopy2_121 extends MovieClip { public function neckcopy2_121(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndPlay(1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 55
//nex_252 (Nathaliekelley_fla.nex_252) package Nathaliekelley_fla { import flash.display.*; public dynamic class nex_252 extends MovieClip { public var playagain:MovieClip; } }//package Nathaliekelley_fla
Section 56
//peppydfgfsds_19 (Nathaliekelley_fla.peppydfgfsds_19) package Nathaliekelley_fla { import flash.display.*; public dynamic class peppydfgfsds_19 extends MovieClip { public function peppydfgfsds_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package Nathaliekelley_fla
Section 57
//rouge_234 (Nathaliekelley_fla.rouge_234) package Nathaliekelley_fla { import flash.display.*; public dynamic class rouge_234 extends MovieClip { public function rouge_234(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 58
//rougepalette_171 (Nathaliekelley_fla.rougepalette_171) package Nathaliekelley_fla { import flash.display.*; public dynamic class rougepalette_171 extends MovieClip { public var r2:MovieClip; public var r3:MovieClip; public var r6:MovieClip; public var r5:MovieClip; public var r4:MovieClip; public var r1:MovieClip; } }//package Nathaliekelley_fla
Section 59
//sdasasasasasa_155 (Nathaliekelley_fla.sdasasasasasa_155) package Nathaliekelley_fla { import flash.display.*; public dynamic class sdasasasasasa_155 extends MovieClip { public var extra2:MovieClip; } }//package Nathaliekelley_fla
Section 60
//sdfghjk_229 (Nathaliekelley_fla.sdfghjk_229) package Nathaliekelley_fla { import flash.display.*; public dynamic class sdfghjk_229 extends MovieClip { public var l1:MovieClip; public var l6:MovieClip; public var l:MovieClip; public var l2:MovieClip; public function sdfghjk_229(){ addFrameScript(0, frame1); } function frame1(){ l.gotoAndStop(Globe.temp); stop(); } } }//package Nathaliekelley_fla
Section 61
//tintpalette_144 (Nathaliekelley_fla.tintpalette_144) package Nathaliekelley_fla { import flash.display.*; public dynamic class tintpalette_144 extends MovieClip { public var t2:MovieClip; public var t3:MovieClip; public var t1:MovieClip; public var t4:MovieClip; } }//package Nathaliekelley_fla
Section 62
//vcvcv_78 (Nathaliekelley_fla.vcvcv_78) package Nathaliekelley_fla { import flash.display.*; public dynamic class vcvcv_78 extends MovieClip { public function vcvcv_78(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndPlay(1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 63
//vzxcv_116 (Nathaliekelley_fla.vzxcv_116) package Nathaliekelley_fla { import flash.display.*; public dynamic class vzxcv_116 extends MovieClip { public function vzxcv_116(){ addFrameScript(0, frame1, 3, frame4); } function frame1(){ stop(); } function frame4(){ gotoAndStop(1); } } }//package Nathaliekelley_fla
Section 64
//vzxcvxc_240 (Nathaliekelley_fla.vzxcvxc_240) package Nathaliekelley_fla { import flash.display.*; public dynamic class vzxcvxc_240 extends MovieClip { public function vzxcvxc_240(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 65
//xcxcxcxcxcxcx_50 (Nathaliekelley_fla.xcxcxcxcxcxcx_50) package Nathaliekelley_fla { import flash.display.*; public dynamic class xcxcxcxcxcxcx_50 extends MovieClip { public function xcxcxcxcxcxcx_50(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package Nathaliekelley_fla
Section 66
//Globe (Globe) package { public class Globe { public static var lips:Number = 0; public static var chain:Number = 0; public static var earring:Number = 0; public static var temp:Number = 0; public static var playback:Boolean = false; public static var eyeshade:Number = 0; public static var extra1:Number = 0; public static var extra3:Number = 0; public static var tex:String = ""; public static var extra2:Number = 0; public static var hair:Number = 0; public static var dress:Number = 0; public static var tint:Number = 0; public static var rouge:Number = 0; } }//package
Section 67
//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

Library Items

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

Instance Names

"preloader"Frame 1Symbol 25 MovieClip {Nathaliekelley_fla.cbvdsfdsf_7}
"BitsLoaded"Frame 1Symbol 27 EditableText
"ball"Frame 1Symbol 74 MovieClip {Nathaliekelley_fla.cvbcvbcvbvcy_78_1_20}
"buttonHolder"Frame 2Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22}
"pl"Frame 2Symbol 166 MovieClip
"titles"Frame 2Symbol 204 MovieClip {Nathaliekelley_fla.xcxcxcxcxcxcx_50}
"doll"Frame 2Symbol 342 MovieClip {Nathaliekelley_fla.doll_51}
"previous"Frame 3Symbol 357 MovieClip
"next"Frame 3Symbol 357 MovieClip
"palette"Frame 3Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133}
"buttons"Frame 3Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229}
"nextbtn"Frame 3Symbol 584 MovieClip {Nathaliekelley_fla.asasasasa_239}
"sndoff"Frame 3Symbol 590 Button
"logo_mc"Frame 3Symbol 594 Button
"nextbtn1"Frame 4Symbol 584 MovieClip {Nathaliekelley_fla.asasasasa_239}
"ent"Frame 4Symbol 611 MovieClip {Nathaliekelley_fla.enteryournameczX_247}
"t1"Frame 4Symbol 613 EditableText
"dolls"Frame 5Symbol 342 MovieClip {Nathaliekelley_fla.doll_51}
"t2"Frame 5Symbol 615 EditableText
"email"Frame 5Symbol 637 MovieClip {Nathaliekelley_fla.asasasasacopy2_250}
"nex"Frame 5Symbol 651 MovieClip {Nathaliekelley_fla.nex_252}
"popup"Frame 5Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255}
"masker"Symbol 25 MovieClip {Nathaliekelley_fla.cbvdsfdsf_7} Frame 1Symbol 13 MovieClip
"b2"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 85 Button
"b3"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 92 Button
"b4"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 98 Button
"b5"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 104 Button
"b6"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 110 Button
"b7"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 115 Button
"b8"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 120 Button
"b9"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 125 Button
"b10"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 130 Button
"b11"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 138 Button
"b1"Symbol 146 MovieClip {Nathaliekelley_fla.ButtonHolder_22} Frame 1Symbol 145 Button
"tint"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 208 MovieClip {Nathaliekelley_fla.doll2_52}
"dress"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 224 MovieClip {Nathaliekelley_fla.dress_54}
"chain"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 253 MovieClip {Nathaliekelley_fla.neck_60}
"rouge"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 274 MovieClip {Nathaliekelley_fla.vcvcv_78}
"eyeshade"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 298 MovieClip {Nathaliekelley_fla.eadada_89}
"lips"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 305 MovieClip {Nathaliekelley_fla.lipsh_102}
"extra2"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 313 MovieClip {Nathaliekelley_fla.ex_106}
"extra3"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 322 MovieClip {Nathaliekelley_fla.exz_111}
"extra1"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 324 MovieClip {Nathaliekelley_fla.vzxcv_116}
"hairdye"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 330 MovieClip {Nathaliekelley_fla.hairdayd_119}
"earring"Symbol 342 MovieClip {Nathaliekelley_fla.doll_51} Frame 1Symbol 341 MovieClip {Nathaliekelley_fla.neckcopy2_121}
"h2"Symbol 370 MovieClip {Nathaliekelley_fla.hairpalette_134} Frame 1Symbol 364 MovieClip
"h3"Symbol 370 MovieClip {Nathaliekelley_fla.hairpalette_134} Frame 1Symbol 365 MovieClip
"h4"Symbol 370 MovieClip {Nathaliekelley_fla.hairpalette_134} Frame 1Symbol 366 MovieClip
"h5"Symbol 370 MovieClip {Nathaliekelley_fla.hairpalette_134} Frame 1Symbol 367 MovieClip
"h6"Symbol 370 MovieClip {Nathaliekelley_fla.hairpalette_134} Frame 1Symbol 368 MovieClip
"h1"Symbol 370 MovieClip {Nathaliekelley_fla.hairpalette_134} Frame 1Symbol 369 MovieClip
"t1"Symbol 387 MovieClip {Nathaliekelley_fla.tintpalette_144} Frame 1Symbol 377 MovieClip
"t4"Symbol 387 MovieClip {Nathaliekelley_fla.tintpalette_144} Frame 1Symbol 380 MovieClip
"t2"Symbol 387 MovieClip {Nathaliekelley_fla.tintpalette_144} Frame 1Symbol 383 MovieClip
"t3"Symbol 387 MovieClip {Nathaliekelley_fla.tintpalette_144} Frame 1Symbol 386 MovieClip
"extra2"Symbol 389 MovieClip {Nathaliekelley_fla.sdasasasasasa_155} Frame 1Symbol 324 MovieClip {Nathaliekelley_fla.vzxcv_116}
"ex1"Symbol 394 MovieClip {Nathaliekelley_fla.extrabtn_154} Frame 1Symbol 389 MovieClip {Nathaliekelley_fla.sdasasasasasa_155}
"ex2"Symbol 394 MovieClip {Nathaliekelley_fla.extrabtn_154} Frame 1Symbol 391 MovieClip
"ex3"Symbol 394 MovieClip {Nathaliekelley_fla.extrabtn_154} Frame 1Symbol 393 MovieClip
"e1"Symbol 413 MovieClip {Nathaliekelley_fla.eyeshadepalette_158} Frame 1Symbol 397 MovieClip
"e6"Symbol 413 MovieClip {Nathaliekelley_fla.eyeshadepalette_158} Frame 1Symbol 400 MovieClip
"e5"Symbol 413 MovieClip {Nathaliekelley_fla.eyeshadepalette_158} Frame 1Symbol 403 MovieClip
"e2"Symbol 413 MovieClip {Nathaliekelley_fla.eyeshadepalette_158} Frame 1Symbol 406 MovieClip
"e3"Symbol 413 MovieClip {Nathaliekelley_fla.eyeshadepalette_158} Frame 1Symbol 409 MovieClip
"e4"Symbol 413 MovieClip {Nathaliekelley_fla.eyeshadepalette_158} Frame 1Symbol 412 MovieClip
"r2"Symbol 431 MovieClip {Nathaliekelley_fla.rougepalette_171} Frame 1Symbol 416 MovieClip
"r3"Symbol 431 MovieClip {Nathaliekelley_fla.rougepalette_171} Frame 1Symbol 419 MovieClip
"r4"Symbol 431 MovieClip {Nathaliekelley_fla.rougepalette_171} Frame 1Symbol 422 MovieClip
"r5"Symbol 431 MovieClip {Nathaliekelley_fla.rougepalette_171} Frame 1Symbol 425 MovieClip
"r6"Symbol 431 MovieClip {Nathaliekelley_fla.rougepalette_171} Frame 1Symbol 428 MovieClip
"r1"Symbol 431 MovieClip {Nathaliekelley_fla.rougepalette_171} Frame 1Symbol 430 MovieClip
"l1"Symbol 452 MovieClip {Nathaliekelley_fla.lipspalette_183} Frame 1Symbol 436 MovieClip
"l5"Symbol 452 MovieClip {Nathaliekelley_fla.lipspalette_183} Frame 1Symbol 440 MovieClip
"l3"Symbol 452 MovieClip {Nathaliekelley_fla.lipspalette_183} Frame 1Symbol 442 MovieClip
"l4"Symbol 452 MovieClip {Nathaliekelley_fla.lipspalette_183} Frame 1Symbol 446 MovieClip
"l2"Symbol 452 MovieClip {Nathaliekelley_fla.lipspalette_183} Frame 1Symbol 451 MovieClip
"e1"Symbol 463 MovieClip {Nathaliekelley_fla.earringpalette_199} Frame 1Symbol 454 MovieClip
"e5"Symbol 463 MovieClip {Nathaliekelley_fla.earringpalette_199} Frame 1Symbol 456 MovieClip
"e2"Symbol 463 MovieClip {Nathaliekelley_fla.earringpalette_199} Frame 1Symbol 458 MovieClip
"e3"Symbol 463 MovieClip {Nathaliekelley_fla.earringpalette_199} Frame 1Symbol 460 MovieClip
"e4"Symbol 463 MovieClip {Nathaliekelley_fla.earringpalette_199} Frame 1Symbol 462 MovieClip
"n1"Symbol 476 MovieClip {Nathaliekelley_fla.chainpalette_210} Frame 1Symbol 466 MovieClip
"n5"Symbol 476 MovieClip {Nathaliekelley_fla.chainpalette_210} Frame 1Symbol 469 MovieClip
"n2"Symbol 476 MovieClip {Nathaliekelley_fla.chainpalette_210} Frame 1Symbol 471 MovieClip
"n3"Symbol 476 MovieClip {Nathaliekelley_fla.chainpalette_210} Frame 1Symbol 473 MovieClip
"n4"Symbol 476 MovieClip {Nathaliekelley_fla.chainpalette_210} Frame 1Symbol 475 MovieClip
"d3"Symbol 487 MovieClip {Nathaliekelley_fla.dresspalette_223} Frame 1Symbol 478 MovieClip
"d4"Symbol 487 MovieClip {Nathaliekelley_fla.dresspalette_223} Frame 1Symbol 480 MovieClip
"d2"Symbol 487 MovieClip {Nathaliekelley_fla.dresspalette_223} Frame 1Symbol 482 MovieClip
"d5"Symbol 487 MovieClip {Nathaliekelley_fla.dresspalette_223} Frame 1Symbol 484 MovieClip
"d1"Symbol 487 MovieClip {Nathaliekelley_fla.dresspalette_223} Frame 1Symbol 486 MovieClip
"b1"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 370 MovieClip {Nathaliekelley_fla.hairpalette_134}
"b2"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 387 MovieClip {Nathaliekelley_fla.tintpalette_144}
"b3"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 394 MovieClip {Nathaliekelley_fla.extrabtn_154}
"b4"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 413 MovieClip {Nathaliekelley_fla.eyeshadepalette_158}
"b5"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 431 MovieClip {Nathaliekelley_fla.rougepalette_171}
"b6"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 452 MovieClip {Nathaliekelley_fla.lipspalette_183}
"b7"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 463 MovieClip {Nathaliekelley_fla.earringpalette_199}
"b8"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 476 MovieClip {Nathaliekelley_fla.chainpalette_210}
"b9"Symbol 488 MovieClip {Nathaliekelley_fla.allthings_133} Frame 1Symbol 487 MovieClip {Nathaliekelley_fla.dresspalette_223}
"l"Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229} Frame 1Symbol 499 MovieClip {Nathaliekelley_fla.HAIRDAYN_230}
"l"Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229} Frame 2Symbol 512 MovieClip {Nathaliekelley_fla.lips1copy_231}
"l"Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229} Frame 3Symbol 517 MovieClip {Nathaliekelley_fla.lips1copy3_232}
"l"Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229} Frame 4Symbol 525 MovieClip {Nathaliekelley_fla.eyeshade_233}
"l"Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229} Frame 5Symbol 531 MovieClip {Nathaliekelley_fla.rouge_234}
"l6"Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229} Frame 6Symbol 539 MovieClip {Nathaliekelley_fla.lips1_235}
"l2"Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229} Frame 8Symbol 557 MovieClip {Nathaliekelley_fla.ghghgh12111_237}
"l1"Symbol 570 MovieClip {Nathaliekelley_fla.sdfghjk_229} Frame 9Symbol 569 MovieClip {Nathaliekelley_fla.ghghghghghghghghg_238}
"l"Symbol 584 MovieClip {Nathaliekelley_fla.asasasasa_239} Frame 1Symbol 583 MovieClip {Nathaliekelley_fla.vzxcvxc_240}
"l"Symbol 629 MovieClip {Nathaliekelley_fla.desiby_248} Frame 1Symbol 628 MovieClip {Nathaliekelley_fla.designedby_249}
"l"Symbol 637 MovieClip {Nathaliekelley_fla.asasasasacopy2_250} Frame 1Symbol 636 MovieClip {Nathaliekelley_fla.email_251}
"l"Symbol 650 MovieClip {Nathaliekelley_fla.asasasasacopy3_253} Frame 1Symbol 649 MovieClip {Nathaliekelley_fla.mnmbnv_254}
"playagain"Symbol 651 MovieClip {Nathaliekelley_fla.nex_252} Frame 1Symbol 650 MovieClip {Nathaliekelley_fla.asasasasacopy3_253}
"close"Symbol 669 MovieClip {Nathaliekelley_fla.hdhdfhf_emaikl_256} Frame 1Symbol 664 Button
"friendMail"Symbol 669 MovieClip {Nathaliekelley_fla.hdhdfhf_emaikl_256} Frame 1Symbol 668 EditableText
"friend1"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 669 MovieClip {Nathaliekelley_fla.hdhdfhf_emaikl_256}
"submit"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 682 Button
"addition"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 686 Button
"close"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 664 Button
"friend2"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 669 MovieClip {Nathaliekelley_fla.hdhdfhf_emaikl_256}
"friend3"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 669 MovieClip {Nathaliekelley_fla.hdhdfhf_emaikl_256}
"friend4"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 669 MovieClip {Nathaliekelley_fla.hdhdfhf_emaikl_256}
"nameDetail"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 691 EditableText
"mailDetail"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 692 EditableText
"messageDetail"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 693 EditableText
"friendName"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 694 EditableText
"friendMail"Symbol 696 MovieClip {Nathaliekelley_fla.jgjyiy9_emaikl_255} Frame 1Symbol 695 EditableText

Special Tags

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




http://swfchan.com/25/121127/info.shtml
Created: 5/3 -2019 00:28:15 Last modified: 5/3 -2019 00:28:15 Server time: 04/05 -2024 14:29:47