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

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

jessica-alba-dress-up.swf

This is the info page for
Flash #118092

(Click the ID number above for more basic data on this flash file.)


Text
%

100

GIRL'S BEST HANGOUT

1

2

3

P

E

Y

L

o

a

d

i

n

g

.

PLAY

HAIR

DRESS

TOP

BOTTOM

BOTTOM

BOTTOM

GLASS

CHAIN

CHAIN

CHAIN

SHOE

NEXT

RESET

Play

123PEPPY

ENTER YOUR NAME

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

EMAIL

REPLAY

MORE
GAMES

Designed by

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

YOUR FRIEND'S EMAIL :

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

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

YOUR FRIEND'S EMAIL :

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

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

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

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

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

SEND

SEND

SEND

ADD MORE

ADD MORE

ADD MORE

ActionScript [AS3]

Section 1
//Color (fl.motion.Color) package fl.motion { import flash.geom.*; import flash.display.*; public class Color extends ColorTransform { private var _tintMultiplier:Number;// = 0 private var _tintColor:Number;// = 0 public function Color(_arg1:Number=1, _arg2:Number=1, _arg3:Number=1, _arg4:Number=1, _arg5:Number=0, _arg6:Number=0, _arg7:Number=0, _arg8:Number=0){ _tintColor = 0; _tintMultiplier = 0; super(_arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg7, _arg8); } public function setTint(_arg1:uint, _arg2:Number):void{ var _local3:uint; var _local4:uint; var _local5:uint; this._tintColor = _arg1; this._tintMultiplier = _arg2; this.redMultiplier = (this.greenMultiplier = (this.blueMultiplier = (1 - _arg2))); _local3 = ((_arg1 >> 16) & 0xFF); _local4 = ((_arg1 >> 8) & 0xFF); _local5 = (_arg1 & 0xFF); this.redOffset = Math.round((_local3 * _arg2)); this.greenOffset = Math.round((_local4 * _arg2)); this.blueOffset = Math.round((_local5 * _arg2)); } public function set tintColor(_arg1:uint):void{ this.setTint(_arg1, this.tintMultiplier); } public function get brightness():Number{ return ((this.redOffset) ? (1 - this.redMultiplier) : (this.redMultiplier - 1)); } private function deriveTintColor():uint{ var _local1:Number; var _local2:uint; var _local3:uint; var _local4:uint; var _local5:uint; _local1 = (1 / this.tintMultiplier); _local2 = Math.round((this.redOffset * _local1)); _local3 = Math.round((this.greenOffset * _local1)); _local4 = Math.round((this.blueOffset * _local1)); _local5 = (((_local2 << 16) | (_local3 << 8)) | _local4); return (_local5); } public function get tintMultiplier():Number{ return (this._tintMultiplier); } public function get tintColor():uint{ return (this._tintColor); } public function set brightness(_arg1:Number):void{ var _local2:Number; var _local3:Number; if (_arg1 > 1){ _arg1 = 1; } else { if (_arg1 < -1){ _arg1 = -1; }; }; _local2 = (1 - Math.abs(_arg1)); _local3 = 0; if (_arg1 > 0){ _local3 = (_arg1 * 0xFF); }; this.redMultiplier = (this.greenMultiplier = (this.blueMultiplier = _local2)); this.redOffset = (this.greenOffset = (this.blueOffset = _local3)); } public function set tintMultiplier(_arg1:Number):void{ this.setTint(this.tintColor, _arg1); } private function parseXML(_arg1:XML=null):Color{ var _local2:XML; var _local3:XML; var _local4:String; var _local5:uint; if (!_arg1){ return (this); }; _local2 = _arg1.elements()[0]; if (!_local2){ return (this); }; for each (_local3 in _local2.attributes()) { _local4 = _local3.localName(); if (_local4 == "tintColor"){ _local5 = (Number(_local3.toString()) as uint); this.tintColor = _local5; } else { this[_local4] = Number(_local3.toString()); }; }; return (this); } public static function interpolateColor(_arg1:uint, _arg2:uint, _arg3:Number):uint{ var _local4:Number; var _local5:uint; var _local6:uint; var _local7:uint; var _local8:uint; var _local9:uint; var _local10:uint; var _local11:uint; var _local12:uint; var _local13:uint; var _local14:uint; var _local15:uint; var _local16:uint; var _local17:uint; _local4 = (1 - _arg3); _local5 = ((_arg1 >> 24) & 0xFF); _local6 = ((_arg1 >> 16) & 0xFF); _local7 = ((_arg1 >> 8) & 0xFF); _local8 = (_arg1 & 0xFF); _local9 = ((_arg2 >> 24) & 0xFF); _local10 = ((_arg2 >> 16) & 0xFF); _local11 = ((_arg2 >> 8) & 0xFF); _local12 = (_arg2 & 0xFF); _local13 = ((_local5 * _local4) + (_local9 * _arg3)); _local14 = ((_local6 * _local4) + (_local10 * _arg3)); _local15 = ((_local7 * _local4) + (_local11 * _arg3)); _local16 = ((_local8 * _local4) + (_local12 * _arg3)); _local17 = ((((_local13 << 24) | (_local14 << 16)) | (_local15 << 8)) | _local16); return (_local17); } public static function interpolateTransform(_arg1:ColorTransform, _arg2:ColorTransform, _arg3:Number):ColorTransform{ var _local4:Number; var _local5:ColorTransform; _local4 = (1 - _arg3); _local5 = new ColorTransform(((_arg1.redMultiplier * _local4) + (_arg2.redMultiplier * _arg3)), ((_arg1.greenMultiplier * _local4) + (_arg2.greenMultiplier * _arg3)), ((_arg1.blueMultiplier * _local4) + (_arg2.blueMultiplier * _arg3)), ((_arg1.alphaMultiplier * _local4) + (_arg2.alphaMultiplier * _arg3)), ((_arg1.redOffset * _local4) + (_arg2.redOffset * _arg3)), ((_arg1.greenOffset * _local4) + (_arg2.greenOffset * _arg3)), ((_arg1.blueOffset * _local4) + (_arg2.blueOffset * _arg3)), ((_arg1.alphaOffset * _local4) + (_arg2.alphaOffset * _arg3))); return (_local5); } public static function fromXML(_arg1:XML):Color{ return (Color(new (Color).parseXML(_arg1))); } } }//package fl.motion
Section 2
//Back (fl.transitions.easing.Back) package fl.transitions.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _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=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _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=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _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 fl.transitions.easing
Section 3
//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 4
//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 5
//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 6
//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 7
//TintPlugin (gs.plugins.TintPlugin) package gs.plugins { import gs.*; import flash.geom.*; import flash.display.*; 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 8
//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 9
//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 10
//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 11
//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 12
//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 13
//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 14
//aaanOHJKNCNCNKL_187 (jessica_fla.aaanOHJKNCNCNKL_187) package jessica_fla { import flash.display.*; import flash.text.*; public dynamic class aaanOHJKNCNCNKL_187 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; } }//package jessica_fla
Section 15
//aaanOL_186 (jessica_fla.aaanOL_186) package jessica_fla { import flash.display.*; import flash.text.*; public dynamic class aaanOL_186 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 jessica_fla
Section 16
//aadfgj_158 (jessica_fla.aadfgj_158) package jessica_fla { import flash.events.*; import flash.display.*; import flash.net.*; public dynamic class aadfgj_158 extends MovieClip { public function aadfgj_158(){ addFrameScript(0, frame1); } function frame1(){ buttonMode = true; addEventListener(MouseEvent.CLICK, Links); } public function Links(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.allfungirlsgames.com"); navigateToURL(_local2, "_blank"); } } }//package jessica_fla
Section 17
//aagty_151 (jessica_fla.aagty_151) package jessica_fla { import flash.events.*; import flash.display.*; import flash.net.*; public dynamic class aagty_151 extends MovieClip { public function aagty_151(){ addFrameScript(0, frame1); } function frame1(){ buttonMode = true; addEventListener(MouseEvent.CLICK, Links); } public function Links(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.dailygames.com"); navigateToURL(_local2, "_blank"); } } }//package jessica_fla
Section 18
//aanhg_162 (jessica_fla.aanhg_162) package jessica_fla { import flash.events.*; import flash.display.*; import flash.net.*; public dynamic class aanhg_162 extends MovieClip { public function aanhg_162(){ addFrameScript(0, frame1); } function frame1(){ buttonMode = true; addEventListener(MouseEvent.CLICK, Links); } public function Links(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.girlgames4u.com"); navigateToURL(_local2, "_blank"); } } }//package jessica_fla
Section 19
//aaothermclogo123_150 (jessica_fla.aaothermclogo123_150) package jessica_fla { import flash.events.*; import flash.display.*; import flash.net.*; public dynamic class aaothermclogo123_150 extends MovieClip { public function aaothermclogo123_150(){ addFrameScript(0, frame1); } function frame1(){ buttonMode = true; addEventListener(MouseEvent.CLICK, Links); } public function Links(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.kibagames.com"); navigateToURL(_local2, "_blank"); } } }//package jessica_fla
Section 20
//aaothermcSymbol1_153 (jessica_fla.aaothermcSymbol1_153) package jessica_fla { import flash.events.*; import flash.display.*; import flash.net.*; public dynamic class aaothermcSymbol1_153 extends MovieClip { public function aaothermcSymbol1_153(){ addFrameScript(0, frame1); } function frame1(){ buttonMode = true; addEventListener(MouseEvent.CLICK, Links); } public function Links(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.didigames.com"); navigateToURL(_local2, "_blank"); } } }//package jessica_fla
Section 21
//bottoms_91 (jessica_fla.bottoms_91) package jessica_fla { import flash.display.*; public dynamic class bottoms_91 extends MovieClip { public function bottoms_91(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package jessica_fla
Section 22
//buttons2_81 (jessica_fla.buttons2_81) package jessica_fla { import flash.display.*; public dynamic class buttons2_81 extends MovieClip { public var resetbtn:SimpleButton; public var nextbtn1:SimpleButton; } }//package jessica_fla
Section 23
//cbvdsfdsf_loader_7 (jessica_fla.cbvdsfdsf_loader_7) package jessica_fla { import flash.display.*; public dynamic class cbvdsfdsf_loader_7 extends MovieClip { public var masker:MovieClip; } }//package jessica_fla
Section 24
//chains_128 (jessica_fla.chains_128) package jessica_fla { import flash.display.*; public dynamic class chains_128 extends MovieClip { public function chains_128(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package jessica_fla
Section 25
//doll_90 (jessica_fla.doll_90) package jessica_fla { import flash.display.*; public dynamic class doll_90 extends MovieClip { public var music:MovieClip; public var dress:MovieClip; public var bags:MovieClip; public var glass:MovieClip; public var earring:MovieClip; public var bottoms:MovieClip; public var tops:MovieClip; public var chain:MovieClip; public var caps:MovieClip; public var shoes:MovieClip; public var hair:MovieClip; } }//package jessica_fla
Section 26
//dresses_113 (jessica_fla.dresses_113) package jessica_fla { import flash.display.*; public dynamic class dresses_113 extends MovieClip { public function dresses_113(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package jessica_fla
Section 27
//ghjkhygk_46 (jessica_fla.ghjkhygk_46) package jessica_fla { import flash.display.*; public dynamic class ghjkhygk_46 extends MovieClip { public function ghjkhygk_46(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package jessica_fla
Section 28
//glasses_135 (jessica_fla.glasses_135) package jessica_fla { import flash.display.*; public dynamic class glasses_135 extends MovieClip { public function glasses_135(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package jessica_fla
Section 29
//jui_168 (jessica_fla.jui_168) package jessica_fla { import flash.events.*; import flash.display.*; import flash.net.*; public dynamic class jui_168 extends MovieClip { public function jui_168(){ addFrameScript(0, frame1); } function frame1(){ buttonMode = true; addEventListener(MouseEvent.CLICK, Links); } public function Links(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.dolidoli.com"); navigateToURL(_local2, "_blank"); } } }//package jessica_fla
Section 30
//MainTimeline (jessica_fla.MainTimeline) package jessica_fla { import gs.*; import flash.events.*; import fl.motion.*; import flash.geom.*; import flash.display.*; import fl.transitions.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.*; import gs.easing.*; public dynamic class MainTimeline extends MovieClip { public var pl:MovieClip; public var TintMc:MovieClip; public var t2:TextField; public var t1:TextField; public var dress_btn:SimpleButton; public var tops_btn:SimpleButton; public var tintEffect:Color; public var preloader:MovieClip; public var hair_btn:SimpleButton; public var shoes_btn:SimpleButton; 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 BitsLoaded:TextField; public var queCount:uint; public var que:Array; public var buttons2:MovieClip; public var girldollArray:Array; public var dress1; public var mailArray:Array; public var kiba_mc:MovieClip; public var sndon:SimpleButton; public var bullet:backscore; public var glass_btn:SimpleButton; public var music_btn:SimpleButton; public var bottoms_btn:SimpleButton; public var site:MovieClip; public var doll:MovieClip; public var top; public var bg_btn:SimpleButton; public var bgss:MovieClip; public var sndoff:SimpleButton; public var play_more:SimpleButton; public var bags_btn:SimpleButton; public var email:SimpleButton; public var nex:SimpleButton; public var bulletChannel:SoundChannel; public var contextmenuItem:ContextMenuItem; public var bot; public var chain_btn:SimpleButton; public var studs_btn:SimpleButton; public var caps_btn:SimpleButton; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function hideAdd1(_arg1:MouseEvent):void{ popup.friend1.visible = false; que.push("0"); que.sort(); trace(("close1:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd2(_arg1:MouseEvent):void{ popup.friend2.visible = false; que.push("1"); que.sort(); trace(("close2:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd3(_arg1:MouseEvent):void{ popup.friend3.visible = false; que.push("2"); que.sort(); trace(("close3:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd4(_arg1:MouseEvent):void{ popup.friend4.visible = false; que.push("3"); que.sort(); trace(("close4:" + que)); popup.addition.mouseEnabled = true; } public function result(_arg1:Event):void{ if (t1.text == ""){ nextbtn.visible = false; } else { nextbtn.visible = true; }; } public function music(_arg1:MouseEvent):void{ doll.music.nextFrame(); Globe.music = doll.music.currentFrame; } public function dress(_arg1:MouseEvent):void{ doll.dress.nextFrame(); if (doll.dress.currentFrame == doll.dress.totalFrames){ doll.dress.gotoAndStop(2); }; trace(doll.dress.currentFrame); Globe.dress = doll.dress.currentFrame; Globe.tops = 0; Globe.bottoms = 0; doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); dress1 = 1; top = 0; bot = 0; SaranTintFun((doll.dress as MovieClip)); } public function ser(_arg1:Event){ if (dress1 == 1){ buttons2.nextbtn1.visible = true; } else { if ((((top == 1)) && ((bot == 1)))){ buttons2.nextbtn1.visible = true; } else { buttons2.nextbtn1.visible = false; }; }; if (TintMc != null){ if (TintMc.over){ if (TintMc.speed < 0){ TintMc.speed = 0; TintMc.over = false; TintMc = null; } else { tintEffect.setTint(0xFFFFFF, TintMc.speed); TintMc.transform.colorTransform = tintEffect; TintMc.speed = (TintMc.speed - 0.2); }; }; }; } function frame2(){ stop(); Globe.playback = true; if (bulletChannel){ bulletChannel.stop(); }; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); stage.tabChildren = false; switch (this.loaderInfo.parameters.lang){ case "fr": Globe.temp = 6; pl.gotoAndStop(Globe.temp); break; case "de": Globe.temp = 5; pl.gotoAndStop(Globe.temp); break; case "it": Globe.temp = 4; pl.gotoAndStop(Globe.temp); break; case "pl": Globe.temp = 10; pl.gotoAndStop(Globe.temp); break; case "ru": Globe.temp = 3; pl.gotoAndStop(Globe.temp); break; case "tr": Globe.temp = 7; pl.gotoAndStop(Globe.temp); break; case "sv": Globe.temp = 8; pl.gotoAndStop(Globe.temp); break; case "pt-br": Globe.temp = 11; pl.gotoAndStop(Globe.temp); break; case "es": Globe.temp = 9; pl.gotoAndStop(Globe.temp); break; case "nl": Globe.temp = 2; pl.gotoAndStop(Globe.temp); break; default: Globe.temp = 1; pl.gotoAndStop(Globe.temp); break; }; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } function frame3(){ MochiBot.track(this, "0883b093"); stop(); tintEffect = new Color(); dress1 = 0; top = 0; bot = 0; doll.hair.gotoAndStop(1); stage.tabChildren = false; doll.dress.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.bags.gotoAndStop(1); doll.glass.gotoAndStop(1); doll.music.gotoAndStop(1); doll.caps.gotoAndStop(1); stage.addEventListener(Event.ENTER_FRAME, ser); bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndon.addEventListener(MouseEvent.CLICK, sndst); dress_btn.addEventListener(MouseEvent.CLICK, dress); hair_btn.addEventListener(MouseEvent.CLICK, hair); tops_btn.addEventListener(MouseEvent.CLICK, tops); bottoms_btn.addEventListener(MouseEvent.CLICK, bottoms); shoes_btn.addEventListener(MouseEvent.CLICK, shoe); chain_btn.addEventListener(MouseEvent.CLICK, chain); studs_btn.addEventListener(MouseEvent.CLICK, earring); bags_btn.addEventListener(MouseEvent.CLICK, bags); glass_btn.addEventListener(MouseEvent.CLICK, glass); music_btn.addEventListener(MouseEvent.CLICK, music); caps_btn.addEventListener(MouseEvent.CLICK, caps); buttons2.resetbtn.addEventListener(MouseEvent.CLICK, rese); buttons2.nextbtn1.addEventListener(MouseEvent.CLICK, nx); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); }; } function frame4(){ stop(); nextbtn.buttonMode = true; t1.text = ""; t1.restrict = "A-Z0-9"; stage.tabChildren = false; stage.addEventListener(Event.ENTER_FRAME, result); nextbtn.addEventListener(MouseEvent.CLICK, nextbtns); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link2); }; } function frame5(){ stop(); dolls.hair.gotoAndStop(Globe.hair); dolls.dress.gotoAndStop(Globe.dress); dolls.tops.gotoAndStop(Globe.tops); dolls.bottoms.gotoAndStop(Globe.bottoms); dolls.shoes.gotoAndStop(Globe.shoes); dolls.chain.gotoAndStop(Globe.chain); dolls.earring.gotoAndStop(Globe.earring); dolls.bags.gotoAndStop(Globe.bags); dolls.glass.gotoAndStop(Globe.glass); dolls.music.gotoAndStop(Globe.music); dolls.caps.gotoAndStop(Globe.caps); switch (this.loaderInfo.parameters.lang){ case "fr": Globe.temp = 6; break; case "de": Globe.temp = 5; break; case "it": Globe.temp = 4; break; case "pl": Globe.temp = 10; break; case "ru": Globe.temp = 3; break; case "tr": Globe.temp = 7; break; case "sv": Globe.temp = 8; break; case "pt-br": Globe.temp = 11; break; case "es": Globe.temp = 9; break; case "nl": Globe.temp = 2; break; default: Globe.temp = 1; break; }; bg_btn.addEventListener(MouseEvent.CLICK, bgss1); stage.tabChildren = false; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; play_more.visible = false; } else { play_more.visible = true; logo_mc.addEventListener(MouseEvent.CLICK, link1); }; play_more.addEventListener(MouseEvent.CLICK, link7); if (((this.loaderInfo.parameters.bg) && ((Globe.playback == false)))){ email.visible = true; nex.tabEnabled = false; 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(""); if (this.loaderInfo.parameters.bg == 1){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop(Number(girldollArray[2])); dolls.bags.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.glass.gotoAndStop(Number(girldollArray[8])); dolls.music.gotoAndStop(Number(girldollArray[9])); dolls.caps.gotoAndStop(Number(girldollArray[10])); bgss.gotoAndStop(Number(girldollArray[11])); } else { if (this.loaderInfo.parameters.bg == 2){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop((Number(girldollArray[3]).toString() + Number(girldollArray[4]).toString())); dolls.bags.gotoAndStop(Number(girldollArray[5])); dolls.chain.gotoAndStop(Number(girldollArray[6])); dolls.shoes.gotoAndStop(Number(girldollArray[7])); dolls.earring.gotoAndStop(Number(girldollArray[8])); dolls.hair.gotoAndStop(Number(girldollArray[9])); dolls.glass.gotoAndStop(Number(girldollArray[10])); dolls.music.gotoAndStop(Number(girldollArray[11])); dolls.caps.gotoAndStop(Number(girldollArray[12])); bgss.gotoAndStop(Number(girldollArray[13])); } else { if (this.loaderInfo.parameters.bg == 3){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop((Number(girldollArray[2]).toString() + Number(girldollArray[3]).toString())); dolls.bags.gotoAndStop(Number(girldollArray[4])); dolls.chain.gotoAndStop(Number(girldollArray[5])); dolls.shoes.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.hair.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); dolls.music.gotoAndStop(Number(girldollArray[10])); dolls.caps.gotoAndStop(Number(girldollArray[11])); bgss.gotoAndStop(Number(girldollArray[12])); } else { if (this.loaderInfo.parameters.bg == 4){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.bags.gotoAndStop(Number(girldollArray[4])); dolls.chain.gotoAndStop(Number(girldollArray[5])); dolls.shoes.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.hair.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); dolls.music.gotoAndStop(Number(girldollArray[10])); dolls.caps.gotoAndStop(Number(girldollArray[11])); bgss.gotoAndStop(Number(girldollArray[12])); } else { if (this.loaderInfo.parameters.bg == 5){ dolls.dress.gotoAndStop((Number(girldollArray[0]).toString() + Number(girldollArray[1]).toString())); dolls.tops.gotoAndStop(Number(girldollArray[2]).toString()); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.bags.gotoAndStop(Number(girldollArray[4])); dolls.chain.gotoAndStop(Number(girldollArray[5])); dolls.shoes.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.hair.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); dolls.music.gotoAndStop(Number(girldollArray[10])); dolls.caps.gotoAndStop(Number(girldollArray[11])); bgss.gotoAndStop(Number(girldollArray[12])); }; }; }; }; }; nex.addEventListener(MouseEvent.CLICK, plas1); nex.tabEnabled = false; } else { if (Globe.playback == true){ t2.text = Globe.tex; nex.tabEnabled = false; email.visible = true; email.tabEnabled = false; dolls.dress.gotoAndStop(Globe.dress); dolls.tops.gotoAndStop(Globe.tops); dolls.bottoms.gotoAndStop(Globe.bottoms); dolls.bags.gotoAndStop(Globe.bags); dolls.chain.gotoAndStop(Globe.chain); dolls.shoes.gotoAndStop(Globe.shoes); dolls.earring.gotoAndStop(Globe.earring); dolls.hair.gotoAndStop(Globe.hair); dolls.glass.gotoAndStop(Globe.glass); bgss.gotoAndStop(Globe.bgss); nex.addEventListener(MouseEvent.CLICK, plas); email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); }; }; que = new Array("0", "1", "2", "3"); queCount = 0; mailArray = new Array(popup.friend1, popup.friend2, popup.friend3, popup.friend4); Globe.bgss = bgss.currentFrame; popup.friend1.close.addEventListener(MouseEvent.CLICK, hideAdd1); popup.friend2.close.addEventListener(MouseEvent.CLICK, hideAdd2); popup.friend3.close.addEventListener(MouseEvent.CLICK, hideAdd3); popup.friend4.close.addEventListener(MouseEvent.CLICK, hideAdd4); var _local2 = popup; with (_local2) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; } public function SaranTintFun(_arg1:MovieClip){ var _local2:int; TintMc = (_arg1 as MovieClip); _local2 = 0; while (_local2 <= 10000) { tintEffect.setTint(0xFFFFFF, 1); tintEffect.alphaOffset = 100; TintMc.transform.colorTransform = tintEffect; TintMc.speed = 1.2; _local2++; }; TintMc.speed = 1.2; TintMc.over = true; } public function earring(_arg1:MouseEvent):void{ doll.earring.nextFrame(); Globe.earring = doll.earring.currentFrame; SaranTintFun((doll.earring as MovieClip)); } 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); site.buttonMode = true; site.addEventListener(MouseEvent.CLICK, sitefun); } public function rollout5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function rollout2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function chain(_arg1:MouseEvent):void{ doll.chain.nextFrame(); Globe.chain = doll.chain.currentFrame; SaranTintFun((doll.chain as MovieClip)); } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } public function showMailBox(_arg1:MouseEvent):void{ email.mouseEnabled = false; TweenLite.to(popup, 0.5, {y:(498 - 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 sitefun(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function caps(_arg1:MouseEvent):void{ doll.caps.nextFrame(); Globe.caps = doll.caps.currentFrame; } public function rollout123(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.9; _arg1.currentTarget.scaleY = 0.9; } public function shoe(_arg1:MouseEvent):void{ doll.shoes.nextFrame(); Globe.shoes = doll.shoes.currentFrame; SaranTintFun((doll.shoes as MovieClip)); } public function hideMailBox(_arg1:MouseEvent):void{ var event = _arg1; email.mouseEnabled = true; que[0] = "0"; que[1] = "1"; que[2] = "2"; que[3] = "3"; popup.addition.mouseEnabled = true; TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function showExtra(_arg1:MouseEvent):void{ if (queCount < 4){ queCount++; trace(queCount); }; trace(("que[0]:" + que[0])); switch (que[0]){ case que[0]: mailArray[que[0]].visible = true; que.splice(0, 1); que.sort(); trace(("after switch:" + que)); if (que.length == 0){ popup.addition.mouseEnabled = false; }; break; }; } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function nextbtns(_arg1:MouseEvent):void{ Globe.tex = t1.text; nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } public function callMail(_arg1:MouseEvent):void{ var girlDoll:String; var countRequest:URLRequest; var countVariables:URLVariables; var loadG:URLLoader; var ups:Function; var request:URLRequest; var variables:URLVariables; var event = _arg1; ups = function (_arg1:Event):void{ trace(_arg1.target.data); }; Globe.bgss = bgss.currentFrame; girlDoll = (((((((((((dolls.dress.currentFrame.toString() + dolls.tops.currentFrame.toString()) + dolls.bottoms.currentFrame.toString()) + dolls.bags.currentFrame.toString()) + dolls.chain.currentFrame.toString()) + dolls.shoes.currentFrame.toString()) + dolls.earring.currentFrame.toString()) + dolls.hair.currentFrame.toString()) + dolls.glass.currentFrame.toString()) + dolls.music.currentFrame.toString()) + dolls.caps.currentFrame.toString()) + bgss.currentFrame.toString()); trace((girlDoll + "Final")); countRequest = new URLRequest("http://www.123peppy.com/gamecount"); countVariables = new URLVariables(); countVariables.gameid = this.loaderInfo.parameters.gameid; countRequest.data = countVariables; loadG = new URLLoader(); loadG.load(countRequest); loadG.addEventListener(Event.COMPLETE, ups); email.mouseEnabled = true; request = new URLRequest("http://facefun.123peppy.com/gamemail.php"); request.method = URLRequestMethod.POST; variables = new URLVariables(); variables.nameDetail = popup.nameDetail.text; variables.mailDetail = popup.mailDetail.text; variables.messageDetail = popup.messageDetail.text; variables.friendName = popup.friendName.text; variables.friendMail = popup.friendMail.text; variables.gamename = "Jessica Alba"; variables.friendMail1 = popup.friend1.friendMail.text; variables.friendMail2 = popup.friend2.friendMail.text; variables.friendMail3 = popup.friend3.friendMail.text; variables.friendMail4 = popup.friend4.friendMail.text; variables.girldoll = girlDoll; switch (this.loaderInfo.parameters.lang){ case "fr": variables.path = "http://www.123peppy.com/fr/play/jessica-alba-celebrity-habillent"; break; case "de": variables.path = "http://www.123peppy.com/de/play/jessica-alba-celebrity-kleiden"; break; case "it": variables.path = "http://www.123peppy.com/it/play/celebrity-jessica-alba-vestire"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/celebrity-ubierz-jessica-alba"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/джессика-альба-знаменитости-одеть"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/jessica-alba-ünlü-giydir"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/jessica-alba-celebrity-klä-upp"; break; case "pt-br": variables.path = "http://www.123peppy.com/pt-br/play/jessica-alba-celebrity-vestir"; break; case "es": variables.path = "http://www.123peppy.com/es/play/famoso-jessica-alba-viste"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/jessica-alba-celebrity-kleding"; break; default: variables.path = "http://www.123peppy.com/play/jessica-alba-celebrity-dressup"; break; }; variables.name = t2.text; if (dolls.dress.currentFrame > 9){ variables.bg = 5; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame <= 9)))){ variables.bg = 4; } else { if ((((dolls.bottoms.currentFrame > 9)) && ((dolls.tops.currentFrame <= 9)))){ variables.bg = 3; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame > 9)))){ variables.bg = 2; } else { variables.bg = 1; }; }; }; }; 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 = (((Math.round((_local4 / 0x0400)) + "kBs /") + Math.round((_local5 / 0x0400))) + "kBs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); if (this.loaderInfo.parameters.bg){ gotoAndStop(5); } else { gotoAndStop(2); }; }; } public function bags(_arg1:MouseEvent):void{ doll.bags.nextFrame(); Globe.bags = doll.bags.currentFrame; SaranTintFun((doll.bags as MovieClip)); } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function bgss1(_arg1:MouseEvent):void{ bgss.nextFrame(); Globe.bgss = bgss.currentFrame; } public function link1(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link2(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function glass(_arg1:MouseEvent):void{ doll.glass.nextFrame(); Globe.glass = doll.glass.currentFrame; } public function link7(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link9(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.games2girls.com"); navigateToURL(_local2, "_blank"); } public function rollover2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function rollover5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function sndst(_arg1:MouseEvent):void{ bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.visible = true; sndon.visible = false; } public function link10(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.games2girls.com"); navigateToURL(_local2, "_blank"); } public function link11(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.games2girls.com"); navigateToURL(_local2, "_blank"); } public function bottoms(_arg1:MouseEvent):void{ doll.bottoms.nextFrame(); Globe.bottoms = doll.bottoms.currentFrame; Globe.dress = 0; doll.dress.gotoAndStop(1); dress1 = 0; bot = 1; SaranTintFun((doll.bottoms as MovieClip)); } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function tops(_arg1:MouseEvent):void{ doll.tops.nextFrame(); Globe.tops = doll.tops.currentFrame; Globe.dress = 0; doll.dress.gotoAndStop(1); dress1 = 0; top = 1; SaranTintFun((doll.tops as MovieClip)); } public function rese(_arg1:MouseEvent):void{ doll.hair.gotoAndStop(1); doll.dress.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.bags.gotoAndStop(1); doll.glass.gotoAndStop(1); doll.music.gotoAndStop(1); doll.caps.gotoAndStop(1); dress1 = 0; top = 0; bot = 0; Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.earring = 0; Globe.shoes = 0; Globe.bags = 0; Globe.hair = 0; Globe.glass = 0; Globe.music = 0; Globe.caps = 0; } public function rollover123(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function nx(_arg1:MouseEvent):void{ stage.removeEventListener(Event.ENTER_FRAME, ser); nextFrame(); } public function plays(_arg1:MouseEvent):void{ nextFrame(); } public function hair(_arg1:MouseEvent):void{ doll.hair.nextFrame(); Globe.hair = doll.hair.currentFrame; SaranTintFun((doll.hair as MovieClip)); } public function link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } } }//package jessica_fla
Section 31
//peppydfgfsds_loader_19 (jessica_fla.peppydfgfsds_loader_19) package jessica_fla { import flash.display.*; public dynamic class peppydfgfsds_loader_19 extends MovieClip { public function peppydfgfsds_loader_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package jessica_fla
Section 32
//shoes_28 (jessica_fla.shoes_28) package jessica_fla { import flash.display.*; public dynamic class shoes_28 extends MovieClip { public function shoes_28(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package jessica_fla
Section 33
//tops_102 (jessica_fla.tops_102) package jessica_fla { import flash.display.*; public dynamic class tops_102 extends MovieClip { public function tops_102(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package jessica_fla
Section 34
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 35
//Globe (Globe) package { public class Globe { public static var chain:Number = 0; public static var tops:Number = 0; public static var earring:Number = 0; public static var temp:Number = 0; public static var playback:Boolean = false; public static var caps:Number = 0; public static var hair:Number = 0; public static var music:Number = 0; public static var tex:String = ""; public static var shoes:Number = 0; public static var bags:Number = 0; public static var bgss:Number = 0; public static var bottoms:Number = 0; public static var glass:Number = 0; public static var dress:Number = 0; } }//package
Section 36
//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 Sound {backscore}
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:12
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:12
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:12
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:12
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:3 5 7 9 11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:26
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:26
Symbol 17 GraphicUsed by:26
Symbol 18 GraphicUsed by:26
Symbol 19 GraphicUsed by:26
Symbol 20 GraphicUsed by:26
Symbol 21 GraphicUsed by:26
Symbol 22 GraphicUsed by:26
Symbol 23 GraphicUsed by:26
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip {jessica_fla.cbvdsfdsf_loader_7}Uses:14 16 17 18 19 20 21 22 23 24 25Used by:Timeline
Symbol 27 FontUsed by:28
Symbol 28 EditableTextUses:27Used by:Timeline
Symbol 29 FontUsed by:30 31
Symbol 30 TextUses:29Used by:Timeline
Symbol 31 TextUses:29Used by:Timeline
Symbol 32 GraphicUsed by:79  Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:Timeline
Symbol 35 FontUsed by:36
Symbol 36 TextUses:35Used by:Timeline
Symbol 37 GraphicUsed by:61
Symbol 38 GraphicUsed by:40
Symbol 39 MovieClipUsed by:40
Symbol 40 MovieClipUses:38 39Used by:61
Symbol 41 GraphicUsed by:51
Symbol 42 ShapeTweeningUsed by:50
Symbol 43 GraphicUsed by:50
Symbol 44 ShapeTweeningUsed by:50
Symbol 45 GraphicUsed by:50
Symbol 46 ShapeTweeningUsed by:50
Symbol 47 GraphicUsed by:50
Symbol 48 ShapeTweeningUsed by:50
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:42 43 44 45 46 47 48 49Used by:51
Symbol 51 MovieClipUses:41 50Used by:59
Symbol 52 GraphicUsed by:57
Symbol 53 GraphicUsed by:57
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:57
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:52 53 55 56Used by:59
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:51 57 58Used by:61
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:37 40 59 60Used by:Timeline
Symbol 62 FontUsed by:63 64 65 66 67 68 70 71 72 73 74 75 76 77 296
Symbol 63 TextUses:62Used by:69
Symbol 64 TextUses:62Used by:69
Symbol 65 TextUses:62Used by:69
Symbol 66 TextUses:62Used by:69
Symbol 67 TextUses:62Used by:69
Symbol 68 TextUses:62Used by:69
Symbol 69 MovieClip {jessica_fla.peppydfgfsds_loader_19}Uses:63 64 65 66 67 68Used by:Timeline
Symbol 70 TextUses:62Used by:78
Symbol 71 TextUses:62Used by:78
Symbol 72 TextUses:62Used by:78
Symbol 73 TextUses:62Used by:78
Symbol 74 TextUses:62Used by:78
Symbol 75 TextUses:62Used by:78
Symbol 76 TextUses:62Used by:78
Symbol 77 TextUses:62Used by:78
Symbol 78 MovieClipUses:70 71 72 73 74 75 76 77Used by:Timeline
Symbol 79 MovieClipUses:32Used by:Timeline
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:82
Symbol 82 MovieClipUses:81Used by:Timeline
Symbol 83 GraphicUsed by:89 141 142 146 147 151 152 159 160 164 165 171 172 176 177 181 182 186 187 351 352 356 357 361 362
Symbol 84 GraphicUsed by:85 88 138 140 143 145 148 150 153 158 161 163 166 170 173 175 178 180 183 185 348 350 353 355 358 360
Symbol 85 MovieClipUses:84Used by:88
Symbol 86 FontUsed by:87 139 144 149 156 157 162 167 168 169 174 179 184 349 354 359
Symbol 87 TextUses:86Used by:88
Symbol 88 ButtonUses:85 87 84Used by:89
Symbol 89 MovieClipUses:83 88Used by:Timeline
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:131 285
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:102
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:102
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:102
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:102
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:102
Symbol 102 MovieClip {jessica_fla.shoes_28}Uses:93 95 97 99 101Used by:131 285
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:105 209
Symbol 105 MovieClipUses:104Used by:131
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:108 231
Symbol 108 MovieClipUses:107Used by:131
Symbol 109 GraphicUsed by:112
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:112
Symbol 112 MovieClipUses:109 111Used by:115
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:113Used by:115
Symbol 115 MovieClipUses:112 114Used by:131 285
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:118 274
Symbol 118 MovieClipUses:117Used by:131
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:121 283
Symbol 121 MovieClipUses:120Used by:131
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:130
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:130
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:130
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:130
Symbol 130 MovieClip {jessica_fla.ghjkhygk_46}Uses:123 125 127 129Used by:131 285
Symbol 131 MovieClipUses:91 102 105 108 115 118 121 130Used by:Timeline
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:134
Symbol 134 MovieClipUses:133Used by:Timeline
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:137
Symbol 137 MovieClipUses:136Used by:Timeline
Symbol 138 MovieClipUses:84Used by:140
Symbol 139 TextUses:86Used by:140
Symbol 140 ButtonUses:138 139 84Used by:141 142
Symbol 141 MovieClipUses:83 140Used by:142
Symbol 142 ButtonUses:141 83 140Used by:Timeline
Symbol 143 MovieClipUses:84Used by:145
Symbol 144 TextUses:86Used by:145
Symbol 145 ButtonUses:143 144 84Used by:146 147
Symbol 146 MovieClipUses:83 145Used by:147
Symbol 147 ButtonUses:146 83 145Used by:Timeline
Symbol 148 MovieClipUses:84Used by:150
Symbol 149 TextUses:86Used by:150
Symbol 150 ButtonUses:148 149 84Used by:151 152
Symbol 151 MovieClipUses:83 150Used by:152
Symbol 152 ButtonUses:151 83 150Used by:Timeline
Symbol 153 MovieClipUses:84Used by:158
Symbol 154 FontUsed by:155
Symbol 155 TextUses:154Used by:158
Symbol 156 TextUses:86Used by:158
Symbol 157 TextUses:86Used by:158
Symbol 158 ButtonUses:153 155 156 84 157Used by:159 160
Symbol 159 MovieClipUses:83 158Used by:160
Symbol 160 ButtonUses:159 83 158Used by:Timeline
Symbol 161 MovieClipUses:84Used by:163
Symbol 162 TextUses:86Used by:163
Symbol 163 ButtonUses:161 162 84Used by:164 165
Symbol 164 MovieClipUses:83 163Used by:165
Symbol 165 ButtonUses:164 83 163Used by:Timeline
Symbol 166 MovieClipUses:84Used by:170
Symbol 167 TextUses:86Used by:170
Symbol 168 TextUses:86Used by:170
Symbol 169 TextUses:86Used by:170
Symbol 170 ButtonUses:166 167 168 84 169Used by:171 172
Symbol 171 MovieClipUses:83 170Used by:172
Symbol 172 ButtonUses:171 83 170Used by:Timeline
Symbol 173 MovieClipUses:84Used by:175
Symbol 174 TextUses:86Used by:175
Symbol 175 ButtonUses:173 174 84Used by:176 177
Symbol 176 MovieClipUses:83 175Used by:177
Symbol 177 ButtonUses:176 83 175Used by:Timeline
Symbol 178 MovieClipUses:84Used by:180
Symbol 179 TextUses:86Used by:180
Symbol 180 ButtonUses:178 179 84Used by:181 182
Symbol 181 MovieClipUses:83 180Used by:182  Timeline
Symbol 182 ButtonUses:181 83 180Used by:188
Symbol 183 MovieClipUses:84Used by:185
Symbol 184 TextUses:86Used by:185
Symbol 185 ButtonUses:183 184 84Used by:186 187
Symbol 186 MovieClipUses:83 185Used by:187
Symbol 187 ButtonUses:186 83 185Used by:188
Symbol 188 MovieClip {jessica_fla.buttons2_81}Uses:182 187Used by:Timeline
Symbol 189 GraphicUsed by:Timeline
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:209
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:192Used by:209
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:209
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196Used by:209
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:200
Symbol 200 MovieClipUses:199Used by:209
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:201Used by:209
Symbol 203 GraphicUsed by:204
Symbol 204 MovieClipUses:203Used by:209
Symbol 205 GraphicUsed by:206
Symbol 206 MovieClipUses:205Used by:209
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:209
Symbol 209 MovieClip {jessica_fla.bottoms_91}Uses:191 193 195 197 200 202 204 206 104 208Used by:285
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:231
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:212Used by:231
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:231
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:216Used by:231
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:218Used by:231
Symbol 220 GraphicUsed by:224
Symbol 221 FontUsed by:222
Symbol 222 TextUses:221Used by:223
Symbol 223 MovieClipUses:222Used by:224
Symbol 224 MovieClipUses:220 223Used by:231
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:225Used by:231
Symbol 227 GraphicUsed by:228
Symbol 228 MovieClipUses:227Used by:231
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClipUses:229Used by:231
Symbol 231 MovieClip {jessica_fla.tops_102}Uses:211 213 215 107 217 219 224 226 228 230Used by:285
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:261
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234Used by:261
Symbol 236 GraphicUsed by:240
Symbol 237 GraphicUsed by:238 284
Symbol 238 MovieClipUses:237Used by:240
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:236 238 239Used by:261
Symbol 241 GraphicUsed by:244
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:242Used by:244
Symbol 244 MovieClipUses:241 243Used by:261
Symbol 245 GraphicUsed by:248
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:246Used by:248
Symbol 248 MovieClipUses:245 247Used by:261
Symbol 249 GraphicUsed by:250
Symbol 250 MovieClipUses:249Used by:261
Symbol 251 GraphicUsed by:252
Symbol 252 MovieClipUses:251Used by:261
Symbol 253 GraphicUsed by:254
Symbol 254 MovieClipUses:253Used by:261
Symbol 255 GraphicUsed by:258
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:256Used by:258
Symbol 258 MovieClipUses:255 257Used by:261
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:259Used by:261
Symbol 261 MovieClip {jessica_fla.dresses_113}Uses:233 235 240 244 248 250 252 254 258 260Used by:285
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:269
Symbol 268 GraphicUsed by:269
Symbol 269 MovieClipUses:267 268Used by:274
Symbol 270 GraphicUsed by:273
Symbol 271 GraphicUsed by:272
Symbol 272 MovieClipUses:271Used by:273
Symbol 273 MovieClipUses:270 272Used by:274
Symbol 274 MovieClip {jessica_fla.chains_128}Uses:263 117 265 269 273Used by:285
Symbol 275 GraphicUsed by:276
Symbol 276 MovieClipUses:275Used by:283
Symbol 277 GraphicUsed by:278
Symbol 278 MovieClipUses:277Used by:283
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:283
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:283
Symbol 283 MovieClip {jessica_fla.glasses_135}Uses:276 278 280 282 120Used by:285
Symbol 284 MovieClipUses:237Used by:285
Symbol 285 MovieClip {jessica_fla.doll_90}Uses:91 102 209 231 261 115 274 283 130 284Used by:Timeline
Symbol 286 GraphicUsed by:288 293 294
Symbol 287 GraphicUsed by:288 293 294
Symbol 288 MovieClipUses:286 287Used by:293 294
Symbol 289 GraphicUsed by:290 293 294
Symbol 290 MovieClipUses:289Used by:293 294
Symbol 291 GraphicUsed by:292 293
Symbol 292 MovieClipUses:291Used by:293
Symbol 293 ButtonUses:288 290 292 286 287 289 291Used by:Timeline
Symbol 294 ButtonUses:288 290 286 287 289Used by:Timeline
Symbol 295 GraphicUsed by:303
Symbol 296 TextUses:62Used by:298 302 303
Symbol 297 GraphicUsed by:303
Symbol 298 MovieClipUses:296Used by:302
Symbol 299 GraphicUsed by:302
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:300Used by:302
Symbol 302 MovieClipUses:296 298 299 301Used by:303
Symbol 303 ButtonUses:295 296 297 302Used by:Timeline
Symbol 304 BitmapUsed by:305
Symbol 305 GraphicUses:304Used by:306
Symbol 306 MovieClip {jessica_fla.aaothermclogo123_150}Uses:305Used by:Timeline
Symbol 307 BitmapUsed by:308 309
Symbol 308 GraphicUses:307Used by:310
Symbol 309 GraphicUses:307Used by:310
Symbol 310 ButtonUses:308 309Used by:311
Symbol 311 MovieClip {jessica_fla.aagty_151}Uses:310Used by:Timeline
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:322
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:322
Symbol 316 GraphicUsed by:322
Symbol 317 GraphicUsed by:322
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:322
Symbol 320 GraphicUsed by:321
Symbol 321 MovieClipUses:320Used by:322
Symbol 322 MovieClip {jessica_fla.aaothermcSymbol1_153}Uses:313 315 316 317 319 321Used by:Timeline
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:323Used by:329
Symbol 325 GraphicUsed by:329
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:326Used by:329
Symbol 328 GraphicUsed by:329
Symbol 329 ButtonUses:324 325 327 328Used by:330
Symbol 330 MovieClip {jessica_fla.aadfgj_158}Uses:329Used by:Timeline
Symbol 331 GraphicUsed by:336 338
Symbol 332 GraphicUsed by:333 338
Symbol 333 MovieClipUses:332Used by:336
Symbol 334 GraphicUsed by:335 338
Symbol 335 MovieClipUses:334Used by:336
Symbol 336 MovieClipUses:331 333 335Used by:337
Symbol 337 MovieClipUses:336Used by:338
Symbol 338 ButtonUses:337 331 332 334Used by:339
Symbol 339 MovieClip {jessica_fla.aanhg_162}Uses:338Used by:Timeline
Symbol 340 BitmapUsed by:341
Symbol 341 GraphicUses:340Used by:342
Symbol 342 MovieClip {jessica_fla.jui_168}Uses:341Used by:Timeline
Symbol 343 GraphicUsed by:Timeline
Symbol 344 FontUsed by:345
Symbol 345 TextUses:344Used by:Timeline
Symbol 346 FontUsed by:347
Symbol 347 EditableTextUses:346Used by:Timeline
Symbol 348 MovieClipUses:84Used by:350
Symbol 349 TextUses:86Used by:350
Symbol 350 ButtonUses:348 349 84Used by:351 352
Symbol 351 MovieClipUses:83 350Used by:352
Symbol 352 ButtonUses:351 83 350Used by:Timeline
Symbol 353 MovieClipUses:84Used by:355
Symbol 354 TextUses:86Used by:355
Symbol 355 ButtonUses:353 354 84Used by:356 357
Symbol 356 MovieClipUses:83 355Used by:357
Symbol 357 ButtonUses:356 83 355Used by:Timeline
Symbol 358 MovieClipUses:84Used by:360
Symbol 359 TextUses:86Used by:360
Symbol 360 ButtonUses:358 359 84Used by:361 362
Symbol 361 MovieClipUses:83 360Used by:362
Symbol 362 ButtonUses:361 83 360Used by:Timeline
Symbol 363 FontUsed by:364
Symbol 364 TextUses:363Used by:Timeline
Symbol 365 FontUsed by:366
Symbol 366 EditableTextUses:365Used by:Timeline
Symbol 367 GraphicUsed by:368 372
Symbol 368 MovieClipUses:367Used by:369
Symbol 369 MovieClipUses:368Used by:372
Symbol 370 GraphicUsed by:371
Symbol 371 MovieClipUses:370Used by:372
Symbol 372 ButtonUses:369 371 367Used by:Timeline
Symbol 373 GraphicUsed by:374
Symbol 374 MovieClipUses:373Used by:Timeline
Symbol 375 GraphicUsed by:380
Symbol 376 GraphicUsed by:377
Symbol 377 MovieClipUses:376Used by:380
Symbol 378 GraphicUsed by:379 382
Symbol 379 MovieClipUses:378Used by:380
Symbol 380 MovieClipUses:375 377 379Used by:383 406
Symbol 381 GraphicUsed by:383
Symbol 382 MovieClipUses:378Used by:383
Symbol 383 MovieClipUses:380 381 382Used by:402
Symbol 384 GraphicUsed by:385 393 426 431
Symbol 385 MovieClipUses:384Used by:393 420
Symbol 386 GraphicUsed by:387 393
Symbol 387 MovieClipUses:386Used by:390
Symbol 388 GraphicUsed by:389 393 426 431
Symbol 389 MovieClipUses:388Used by:390 419
Symbol 390 MovieClipUses:387 389Used by:393
Symbol 391 GraphicUsed by:392
Symbol 392 ButtonUses:391Used by:393
Symbol 393 ButtonUses:385 390 392 384 386 388Used by:402 432
Symbol 394 GraphicUsed by:397
Symbol 395 GraphicUsed by:396
Symbol 396 MovieClipUses:395Used by:397
Symbol 397 MovieClipUses:394 396Used by:402 405
Symbol 398 FontUsed by:399 407 408 409 410 411 421 423 425 427 429 430
Symbol 399 TextUses:398Used by:402
Symbol 400 FontUsed by:401 412 413 414 415 416
Symbol 401 EditableTextUses:400Used by:402
Symbol 402 MovieClip {jessica_fla.aaanOHJKNCNCNKL_187}Uses:383 393 397 399 401Used by:432
Symbol 403 GraphicUsed by:404
Symbol 404 MovieClipUses:403Used by:405
Symbol 405 MovieClipUses:404 397Used by:406
Symbol 406 MovieClipUses:380 405Used by:432
Symbol 407 TextUses:398Used by:432
Symbol 408 TextUses:398Used by:432
Symbol 409 TextUses:398Used by:432
Symbol 410 TextUses:398Used by:432
Symbol 411 TextUses:398Used by:432
Symbol 412 EditableTextUses:400Used by:432
Symbol 413 EditableTextUses:400Used by:432
Symbol 414 EditableTextUses:400Used by:432
Symbol 415 EditableTextUses:400Used by:432
Symbol 416 EditableTextUses:400Used by:432
Symbol 417 GraphicUsed by:418 426 431
Symbol 418 MovieClipUses:417Used by:419
Symbol 419 MovieClipUses:418 389Used by:420
Symbol 420 MovieClipUses:385 419Used by:422 426 428 431
Symbol 421 TextUses:398Used by:422
Symbol 422 MovieClipUses:420 421Used by:426
Symbol 423 TextUses:398Used by:426
Symbol 424 GraphicUsed by:426 431
Symbol 425 TextUses:398Used by:426
Symbol 426 ButtonUses:422 420 423 424 384 417 388 425Used by:432
Symbol 427 TextUses:398Used by:428
Symbol 428 MovieClipUses:420 427Used by:431
Symbol 429 TextUses:398Used by:431
Symbol 430 TextUses:398Used by:431
Symbol 431 ButtonUses:428 420 429 424 384 417 388 430Used by:432
Symbol 432 MovieClip {jessica_fla.aaanOL_186}Uses:402 406 407 408 409 410 411 412 413 414 415 416 426 431 393Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 26 MovieClip {jessica_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 28 EditableText
"ball"Frame 1Symbol 78 MovieClip
"site"Frame 1Symbol 79 MovieClip
"pl"Frame 2Symbol 89 MovieClip
"hair_btn"Frame 3Symbol 142 Button
"dress_btn"Frame 3Symbol 147 Button
"tops_btn"Frame 3Symbol 152 Button
"bottoms_btn"Frame 3Symbol 160 Button
"studs_btn"Frame 3Symbol 165 Button
"chain_btn"Frame 3Symbol 172 Button
"shoes_btn"Frame 3Symbol 177 Button
"music_btn"Frame 3Symbol 142 Button
"caps_btn"Frame 3Symbol 147 Button
"glass_btn"Frame 3Symbol 152 Button
"bags_btn"Frame 3Symbol 160 Button
"buttons2"Frame 3Symbol 188 MovieClip {jessica_fla.buttons2_81}
"doll"Frame 3Symbol 285 MovieClip {jessica_fla.doll_90}
"sndon"Frame 3Symbol 293 Button
"sndoff"Frame 3Symbol 294 Button
"logo_mc"Frame 3Symbol 303 Button
"kiba_mc"Frame 3Symbol 306 MovieClip {jessica_fla.aaothermclogo123_150}
"nextbtn"Frame 4Symbol 181 MovieClip
"t1"Frame 4Symbol 347 EditableText
"email"Frame 5Symbol 352 Button
"nex"Frame 5Symbol 357 Button
"play_more"Frame 5Symbol 362 Button
"t2"Frame 5Symbol 366 EditableText
"dolls"Frame 5Symbol 285 MovieClip {jessica_fla.doll_90}
"bg_btn"Frame 5Symbol 372 Button
"bgss"Frame 5Symbol 374 MovieClip
"popup"Frame 5Symbol 432 MovieClip {jessica_fla.aaanOL_186}
"masker"Symbol 26 MovieClip {jessica_fla.cbvdsfdsf_loader_7} Frame 1Symbol 14 MovieClip
"nextbtn1"Symbol 188 MovieClip {jessica_fla.buttons2_81} Frame 1Symbol 182 Button
"resetbtn"Symbol 188 MovieClip {jessica_fla.buttons2_81} Frame 1Symbol 187 Button
"shoes"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 102 MovieClip {jessica_fla.shoes_28}
"bottoms"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 209 MovieClip {jessica_fla.bottoms_91}
"tops"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 231 MovieClip {jessica_fla.tops_102}
"dress"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 261 MovieClip {jessica_fla.dresses_113}
"chain"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 274 MovieClip {jessica_fla.chains_128}
"earring"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 283 MovieClip {jessica_fla.glasses_135}
"hair"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 130 MovieClip {jessica_fla.ghjkhygk_46}
"glass"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 284 MovieClip
"caps"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 284 MovieClip
"music"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 284 MovieClip
"bags"Symbol 285 MovieClip {jessica_fla.doll_90} Frame 1Symbol 284 MovieClip
"close"Symbol 402 MovieClip {jessica_fla.aaanOHJKNCNCNKL_187} Frame 1Symbol 393 Button
"friendMail"Symbol 402 MovieClip {jessica_fla.aaanOHJKNCNCNKL_187} Frame 1Symbol 401 EditableText
"friend4"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 402 MovieClip {jessica_fla.aaanOHJKNCNCNKL_187}
"friend3"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 402 MovieClip {jessica_fla.aaanOHJKNCNCNKL_187}
"friend2"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 402 MovieClip {jessica_fla.aaanOHJKNCNCNKL_187}
"friend1"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 402 MovieClip {jessica_fla.aaanOHJKNCNCNKL_187}
"nameDetail"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 412 EditableText
"mailDetail"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 413 EditableText
"messageDetail"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 414 EditableText
"friendName"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 415 EditableText
"friendMail"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 416 EditableText
"submit"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 426 Button
"addition"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 431 Button
"close"Symbol 432 MovieClip {jessica_fla.aaanOL_186} Frame 1Symbol 393 Button

Special Tags

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




http://swfchan.com/24/118092/info.shtml
Created: 7/3 -2019 10:49:00 Last modified: 7/3 -2019 10:49:00 Server time: 26/04 -2024 04:08:37