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

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

winsy.swf

This is the info page for
Flash #125137

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


Text
STYLE

1

0

%

GIRL'S BEST HANGOUT

1

2

3

P

E

Y

L

o

a

d

i

n

g

.

PLAY

replay

reset

next

123PEPPY

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

<p align="left"><font face="Arctic" size="13" color="#996600" letterSpacing="1.000000" kerning="1"><b>L</b></font></p>

<p align="left"><font face="Arctic" size="13" color="#996600" letterSpacing="1.000000" kerning="1"><b>I</b></font></p>

<p align="left"><font face="Arctic" size="13" color="#996600" letterSpacing="1.000000" kerning="1"><b>A</b></font></p>

<p align="left"><font face="Arctic" size="13" color="#996600" letterSpacing="1.000000" kerning="1"><b>M</b></font></p>

<p align="left"><font face="Arctic" size="13" color="#996600" letterSpacing="1.000000" kerning="1"><b>E</b></font></p>

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
//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 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
//belts_169 (winsy_fla.belts_169) package winsy_fla { import flash.display.*; public dynamic class belts_169 extends MovieClip { public function belts_169(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package winsy_fla
Section 14
//beltscopy_81 (winsy_fla.beltscopy_81) package winsy_fla { import flash.display.*; public dynamic class beltscopy_81 extends MovieClip { public function beltscopy_81(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package winsy_fla
Section 15
//bottoms_141 (winsy_fla.bottoms_141) package winsy_fla { import flash.display.*; public dynamic class bottoms_141 extends MovieClip { public function bottoms_141(){ addFrameScript(0, frame1, 14, frame15); } function frame15(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package winsy_fla
Section 16
//buttons1_216 (winsy_fla.buttons1_216) package winsy_fla { import flash.display.*; public dynamic class buttons1_216 extends MovieClip { public var resetbtn:SimpleButton; public var nextbtn1:SimpleButton; } }//package winsy_fla
Section 17
//cbvdsfdsf_loader_7 (winsy_fla.cbvdsfdsf_loader_7) package winsy_fla { import flash.display.*; public dynamic class cbvdsfdsf_loader_7 extends MovieClip { public var masker:MovieClip; } }//package winsy_fla
Section 18
//chains_170 (winsy_fla.chains_170) package winsy_fla { import flash.display.*; public dynamic class chains_170 extends MovieClip { public function chains_170(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ gotoAndStop(2); } } }//package winsy_fla
Section 19
//doll_108 (winsy_fla.doll_108) package winsy_fla { import flash.display.*; public dynamic class doll_108 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 winsy_fla
Section 20
//dress_118 (winsy_fla.dress_118) package winsy_fla { import flash.display.*; public dynamic class dress_118 extends MovieClip { public function dress_118(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package winsy_fla
Section 21
//earrings_183 (winsy_fla.earrings_183) package winsy_fla { import flash.display.*; public dynamic class earrings_183 extends MovieClip { public function earrings_183(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package winsy_fla
Section 22
//ert_229 (winsy_fla.ert_229) package winsy_fla { import flash.display.*; public dynamic class ert_229 extends MovieClip { public function ert_229(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package winsy_fla
Section 23
//hairs_98 (winsy_fla.hairs_98) package winsy_fla { import flash.display.*; public dynamic class hairs_98 extends MovieClip { public function hairs_98(){ addFrameScript(0, frame1, 3, frame4); } function frame1(){ stop(); } function frame4(){ gotoAndStop(1); } } }//package winsy_fla
Section 24
//MainTimeline (winsy_fla.MainTimeline) package winsy_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; 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 t2:TextField; public var t1:TextField; public var dress_btn:SimpleButton; public var tops_btn:SimpleButton; 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 sndon:SimpleButton; public var bullet:backscore; public var glass_btn:SimpleButton; public var music_btn:SimpleButton; public var bottoms_btn:SimpleButton; 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; } 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; }; }; } 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, "83bc01c0"); stop(); 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; 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(); t1.text = ""; t1.restrict = "A-Z0-9"; nextbtn.gotoAndStop(Globe.temp); nextbtn.buttonMode = true; 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[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 == 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[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 == 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[10])); }; }; }; }; }; 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))); }; } 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); } public function earring(_arg1:MouseEvent):void{ doll.earring.nextFrame(); Globe.earring = doll.earring.currentFrame; } 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; } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } 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 rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.9; _arg1.currentTarget.scaleY = 0.9; } 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; } 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()) + 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 = "Mavis"; 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/ingrid"; break; case "de": variables.path = "http://www.123peppy.com/de/play/ingrid"; break; case "it": variables.path = "http://www.123peppy.com/it/play/ingrid"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/ingrid"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/ingrid"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/ingrid"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/ingrid"; break; case "pt-br": variables.path = "http://www.123peppy.com/pt-br/play/ingrid"; break; case "es": variables.path = "http://www.123peppy.com/es/play/ingrid"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/ingrid"; break; default: variables.path = "http://www.123peppy.com/play/ingrid"; 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; } 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; } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } 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; } 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; } public function link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } } }//package winsy_fla
Section 25
//nextbtncopy_106 (winsy_fla.nextbtncopy_106) package winsy_fla { import flash.display.*; public dynamic class nextbtncopy_106 extends MovieClip { public function nextbtncopy_106(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package winsy_fla
Section 26
//peppydfgfsds_loader_19 (winsy_fla.peppydfgfsds_loader_19) package winsy_fla { import flash.display.*; public dynamic class peppydfgfsds_loader_19 extends MovieClip { public function peppydfgfsds_loader_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package winsy_fla
Section 27
//shoes_109 (winsy_fla.shoes_109) package winsy_fla { import flash.display.*; public dynamic class shoes_109 extends MovieClip { public function shoes_109(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package winsy_fla
Section 28
//tops_168 (winsy_fla.tops_168) package winsy_fla { import flash.display.*; public dynamic class tops_168 extends MovieClip { public function tops_168(){ addFrameScript(0, frame1, 14, frame15); } function frame15(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package winsy_fla
Section 29
//topscopy_53 (winsy_fla.topscopy_53) package winsy_fla { import flash.display.*; public dynamic class topscopy_53 extends MovieClip { public function topscopy_53(){ addFrameScript(0, frame1, 14, frame15); } function frame15(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package winsy_fla
Section 30
//zanOHJKNCNCNKL_242 (winsy_fla.zanOHJKNCNCNKL_242) package winsy_fla { import flash.display.*; import flash.text.*; public dynamic class zanOHJKNCNCNKL_242 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; } }//package winsy_fla
Section 31
//zanOL_241 (winsy_fla.zanOL_241) package winsy_fla { import flash.display.*; import flash.text.*; public dynamic class zanOL_241 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 winsy_fla
Section 32
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 33
//bags1 (bags1) package { import flash.display.*; public dynamic class bags1 extends MovieClip { } }//package
Section 34
//bags2 (bags2) package { import flash.display.*; public dynamic class bags2 extends MovieClip { } }//package
Section 35
//bags3 (bags3) package { import flash.display.*; public dynamic class bags3 extends MovieClip { } }//package
Section 36
//bags4 (bags4) package { import flash.display.*; public dynamic class bags4 extends MovieClip { } }//package
Section 37
//bags5 (bags5) package { import flash.display.*; public dynamic class bags5 extends MovieClip { } }//package
Section 38
//bottoms1 (bottoms1) package { import flash.display.*; public dynamic class bottoms1 extends MovieClip { } }//package
Section 39
//bottoms10 (bottoms10) package { import flash.display.*; public dynamic class bottoms10 extends MovieClip { } }//package
Section 40
//bottoms11 (bottoms11) package { import flash.display.*; public dynamic class bottoms11 extends MovieClip { } }//package
Section 41
//bottoms12 (bottoms12) package { import flash.display.*; public dynamic class bottoms12 extends MovieClip { } }//package
Section 42
//bottoms13 (bottoms13) package { import flash.display.*; public dynamic class bottoms13 extends MovieClip { } }//package
Section 43
//bottoms2 (bottoms2) package { import flash.display.*; public dynamic class bottoms2 extends MovieClip { } }//package
Section 44
//bottoms3 (bottoms3) package { import flash.display.*; public dynamic class bottoms3 extends MovieClip { } }//package
Section 45
//bottoms4 (bottoms4) package { import flash.display.*; public dynamic class bottoms4 extends MovieClip { } }//package
Section 46
//bottoms5 (bottoms5) package { import flash.display.*; public dynamic class bottoms5 extends MovieClip { } }//package
Section 47
//bottoms6 (bottoms6) package { import flash.display.*; public dynamic class bottoms6 extends MovieClip { } }//package
Section 48
//bottoms7 (bottoms7) package { import flash.display.*; public dynamic class bottoms7 extends MovieClip { } }//package
Section 49
//bottoms8 (bottoms8) package { import flash.display.*; public dynamic class bottoms8 extends MovieClip { } }//package
Section 50
//bottoms9 (bottoms9) package { import flash.display.*; public dynamic class bottoms9 extends MovieClip { } }//package
Section 51
//chain1 (chain1) package { import flash.display.*; public dynamic class chain1 extends MovieClip { } }//package
Section 52
//chain2 (chain2) package { import flash.display.*; public dynamic class chain2 extends MovieClip { } }//package
Section 53
//chain3 (chain3) package { import flash.display.*; public dynamic class chain3 extends MovieClip { } }//package
Section 54
//chain4 (chain4) package { import flash.display.*; public dynamic class chain4 extends MovieClip { } }//package
Section 55
//chain5 (chain5) package { import flash.display.*; public dynamic class chain5 extends MovieClip { } }//package
Section 56
//chain6 (chain6) package { import flash.display.*; public dynamic class chain6 extends MovieClip { } }//package
Section 57
//dress1 (dress1) package { import flash.display.*; public dynamic class dress1 extends MovieClip { } }//package
Section 58
//dress10 (dress10) package { import flash.display.*; public dynamic class dress10 extends MovieClip { } }//package
Section 59
//dress11 (dress11) package { import flash.display.*; public dynamic class dress11 extends MovieClip { } }//package
Section 60
//dress12 (dress12) package { import flash.display.*; public dynamic class dress12 extends MovieClip { } }//package
Section 61
//dress2 (dress2) package { import flash.display.*; public dynamic class dress2 extends MovieClip { } }//package
Section 62
//dress3 (dress3) package { import flash.display.*; public dynamic class dress3 extends MovieClip { } }//package
Section 63
//dress4 (dress4) package { import flash.display.*; public dynamic class dress4 extends MovieClip { } }//package
Section 64
//dress5 (dress5) package { import flash.display.*; public dynamic class dress5 extends MovieClip { } }//package
Section 65
//dress6 (dress6) package { import flash.display.*; public dynamic class dress6 extends MovieClip { } }//package
Section 66
//dress7 (dress7) package { import flash.display.*; public dynamic class dress7 extends MovieClip { } }//package
Section 67
//dress8 (dress8) package { import flash.display.*; public dynamic class dress8 extends MovieClip { } }//package
Section 68
//dress9 (dress9) package { import flash.display.*; public dynamic class dress9 extends MovieClip { } }//package
Section 69
//earring1 (earring1) package { import flash.display.*; public dynamic class earring1 extends MovieClip { } }//package
Section 70
//earring2 (earring2) package { import flash.display.*; public dynamic class earring2 extends MovieClip { } }//package
Section 71
//earring3 (earring3) package { import flash.display.*; public dynamic class earring3 extends MovieClip { } }//package
Section 72
//earring4 (earring4) package { import flash.display.*; public dynamic class earring4 extends MovieClip { } }//package
Section 73
//earring5 (earring5) package { import flash.display.*; public dynamic class earring5 extends MovieClip { } }//package
Section 74
//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 75
//MochiBot (MochiBot) package { import flash.display.*; import flash.net.*; import flash.system.*; public dynamic class MochiBot extends Sprite { public static function track(_arg1:Sprite, _arg2:String):MochiBot{ var _local3:MochiBot; var _local4:String; var _local5:URLVariables; var _local6:String; var _local7:URLRequest; var _local8:Loader; if (Security.sandboxType == "localWithFile"){ return (null); }; _local3 = new (MochiBot); _arg1.addChild(_local3); Security.allowDomain("*"); Security.allowInsecureDomain("*"); _local4 = "http://core.mochibot.com/my/core.swf"; _local5 = new URLVariables(); _local5["sb"] = Security.sandboxType; _local5["v"] = Capabilities.version; _local5["swfid"] = _arg2; _local5["mv"] = "8"; _local5["fv"] = "9"; _local6 = _local3.root.loaderInfo.loaderURL; if (_local6.indexOf("http") == 0){ _local5["url"] = _local6; } else { _local5["url"] = "local"; }; _local7 = new URLRequest(_local4); _local7.contentType = "application/x-www-form-urlencoded"; _local7.method = URLRequestMethod.POST; _local7.data = _local5; _local8 = new Loader(); _local3.addChild(_local8); _local8.load(_local7); return (_local3); } } }//package
Section 76
//shoe1 (shoe1) package { import flash.display.*; public dynamic class shoe1 extends MovieClip { } }//package
Section 77
//shoe2 (shoe2) package { import flash.display.*; public dynamic class shoe2 extends MovieClip { } }//package
Section 78
//shoe3 (shoe3) package { import flash.display.*; public dynamic class shoe3 extends MovieClip { } }//package
Section 79
//shoe4 (shoe4) package { import flash.display.*; public dynamic class shoe4 extends MovieClip { } }//package
Section 80
//shoe5 (shoe5) package { import flash.display.*; public dynamic class shoe5 extends MovieClip { } }//package
Section 81
//tops1 (tops1) package { import flash.display.*; public dynamic class tops1 extends MovieClip { } }//package
Section 82
//tops10 (tops10) package { import flash.display.*; public dynamic class tops10 extends MovieClip { } }//package
Section 83
//tops11 (tops11) package { import flash.display.*; public dynamic class tops11 extends MovieClip { } }//package
Section 84
//tops12 (tops12) package { import flash.display.*; public dynamic class tops12 extends MovieClip { } }//package
Section 85
//tops13 (tops13) package { import flash.display.*; public dynamic class tops13 extends MovieClip { } }//package
Section 86
//tops2 (tops2) package { import flash.display.*; public dynamic class tops2 extends MovieClip { } }//package
Section 87
//tops3 (tops3) package { import flash.display.*; public dynamic class tops3 extends MovieClip { } }//package
Section 88
//tops4 (tops4) package { import flash.display.*; public dynamic class tops4 extends MovieClip { } }//package
Section 89
//tops5 (tops5) package { import flash.display.*; public dynamic class tops5 extends MovieClip { } }//package
Section 90
//tops6 (tops6) package { import flash.display.*; public dynamic class tops6 extends MovieClip { } }//package
Section 91
//tops7 (tops7) package { import flash.display.*; public dynamic class tops7 extends MovieClip { } }//package
Section 92
//tops8 (tops8) package { import flash.display.*; public dynamic class tops8 extends MovieClip { } }//package
Section 93
//tops9 (tops9) package { import flash.display.*; public dynamic class tops9 extends MovieClip { } }//package

Library Items

Symbol 1 Sound {backscore}
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:5 20
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:3 4Used by:6
Symbol 6 MovieClip {earring5}Uses:5Used by:373
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:10
Symbol 9 GraphicUsed by:10 131
Symbol 10 MovieClipUses:8 9Used by:11
Symbol 11 MovieClip {earring4}Uses:10Used by:373
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:14
Symbol 14 MovieClip {earring3}Uses:13Used by:373
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:17
Symbol 17 MovieClip {earring2}Uses:16Used by:373
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:18 3 19Used by:22
Symbol 21 GraphicUsed by:22 34
Symbol 22 MovieClip {chain6}Uses:20 21Used by:370
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClip {chain5}Uses:24Used by:370
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:28
Symbol 28 MovieClip {chain3}Uses:27Used by:370
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:31
Symbol 31 MovieClip {chain2}Uses:30Used by:370
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:34
Symbol 34 MovieClip {chain1}Uses:33 21Used by:370
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:37
Symbol 37 MovieClip {bottoms13}Uses:36Used by:367
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:40
Symbol 40 MovieClip {bottoms12}Uses:39Used by:367
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClip {bottoms11}Uses:42Used by:367
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:46
Symbol 46 MovieClip {bottoms10}Uses:45Used by:367
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:49
Symbol 49 MovieClip {bottoms9}Uses:48Used by:367
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:52
Symbol 52 MovieClip {bottoms8}Uses:51Used by:367
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:55
Symbol 55 MovieClip {bottoms7}Uses:54Used by:367
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:58
Symbol 58 MovieClip {bottoms6}Uses:57Used by:367
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:61
Symbol 61 MovieClip {bottoms5}Uses:60Used by:367
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:62Used by:64
Symbol 64 MovieClip {bottoms4}Uses:63Used by:367
Symbol 65 GraphicUsed by:69
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:69
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:65 67 68Used by:70
Symbol 70 MovieClip {bottoms3}Uses:69Used by:367
Symbol 71 GraphicUsed by:75
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:75
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:71 73 74Used by:76
Symbol 76 MovieClip {bottoms1}Uses:75Used by:367
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:79
Symbol 79 MovieClip {dress12}Uses:78Used by:366
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:82
Symbol 82 MovieClip {dress11}Uses:81Used by:366
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:85
Symbol 85 MovieClip {dress10}Uses:84Used by:366
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:88
Symbol 88 MovieClip {dress9}Uses:87Used by:366
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:91
Symbol 91 MovieClip {dress8}Uses:90Used by:366
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:94
Symbol 94 MovieClip {dress7}Uses:93Used by:366
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:95Used by:97
Symbol 97 MovieClip {dress6}Uses:96Used by:366
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100
Symbol 100 MovieClip {dress5}Uses:99Used by:366
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:103
Symbol 103 MovieClip {dress4}Uses:102Used by:366
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:106
Symbol 106 MovieClip {dress3}Uses:105Used by:366
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:109
Symbol 109 MovieClip {dress2}Uses:108Used by:366
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:112
Symbol 112 MovieClip {shoe5}Uses:111Used by:365
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:113Used by:115
Symbol 115 MovieClip {shoe4}Uses:114Used by:365
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:118
Symbol 118 MovieClip {shoe3}Uses:117Used by:365
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:121
Symbol 121 MovieClip {shoe2}Uses:120Used by:365
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:124
Symbol 124 MovieClip {earring1}Uses:123Used by:346 373
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:125Used by:127
Symbol 127 MovieClip {chain4}Uses:126Used by:328 370
Symbol 128 GraphicUsed by:130
Symbol 129 GraphicUsed by:130 134 138
Symbol 130 MovieClipUses:128 129Used by:131
Symbol 131 MovieClip {bags5}Uses:130 9Used by:327 369
Symbol 132 GraphicUsed by:134
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:132 129 133Used by:135
Symbol 135 MovieClip {bags4}Uses:134Used by:327 369
Symbol 136 GraphicUsed by:138
Symbol 137 GraphicUsed by:138
Symbol 138 MovieClipUses:136 129 137Used by:139
Symbol 139 MovieClip {bags3}Uses:138Used by:327 369
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:140Used by:142
Symbol 142 MovieClip {bags2}Uses:141Used by:327 369
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:143Used by:145
Symbol 145 MovieClip {bags1}Uses:144Used by:327 369
Symbol 146 GraphicUsed by:149
Symbol 147 FontUsed by:148 176 177
Symbol 148 TextUses:147Used by:149
Symbol 149 MovieClipUses:146 148Used by:150
Symbol 150 MovieClip {tops13}Uses:149Used by:326 368
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151Used by:153
Symbol 153 MovieClip {tops12}Uses:152Used by:326 368
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClipUses:154Used by:156
Symbol 156 MovieClip {tops11}Uses:155Used by:326 368
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:159
Symbol 159 MovieClip {tops10}Uses:158Used by:326 368
Symbol 160 GraphicUsed by:164
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:161Used by:164
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:160 162 163Used by:165
Symbol 165 MovieClip {tops9}Uses:164Used by:326 368
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:168
Symbol 168 MovieClip {tops8}Uses:167Used by:326 368
Symbol 169 GraphicUsed by:170
Symbol 170 MovieClipUses:169Used by:171
Symbol 171 MovieClip {tops7}Uses:170Used by:326 368
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:174
Symbol 174 MovieClip {tops6}Uses:173Used by:326 368
Symbol 175 GraphicUsed by:179
Symbol 176 TextUses:147Used by:179
Symbol 177 TextUses:147Used by:179
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:175 176 177 178Used by:180
Symbol 180 MovieClip {tops5}Uses:179Used by:326 368
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:183
Symbol 183 MovieClip {tops4}Uses:182Used by:326 368
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:186
Symbol 186 MovieClip {tops3}Uses:185Used by:326 368
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:189
Symbol 189 MovieClip {tops2}Uses:188Used by:326 368
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:192
Symbol 192 MovieClip {tops1}Uses:191Used by:326 368
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:195
Symbol 195 MovieClip {dress1}Uses:194Used by:325 366
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196Used by:198
Symbol 198 MovieClip {bottoms2}Uses:197Used by:324 367
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:199Used by:201
Symbol 201 MovieClip {shoe1}Uses:200Used by:323 365
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:202Used by:212
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:212
Symbol 206 GraphicUsed by:207
Symbol 207 MovieClipUses:206Used by:212
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:212
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:212
Symbol 212 MovieClipUses:203 205 207 209 211Used by:Timeline
Symbol 213 GraphicUsed by:214
Symbol 214 MovieClipUses:213Used by:226
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215Used by:226
Symbol 217 GraphicUsed by:226
Symbol 218 GraphicUsed by:226
Symbol 219 GraphicUsed by:226
Symbol 220 GraphicUsed by:226
Symbol 221 GraphicUsed by:226
Symbol 222 GraphicUsed by:226
Symbol 223 GraphicUsed by:226
Symbol 224 GraphicUsed by:226
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClip {winsy_fla.cbvdsfdsf_loader_7}Uses:214 216 217 218 219 220 221 222 223 224 225Used by:Timeline
Symbol 227 FontUsed by:228
Symbol 228 EditableTextUses:227Used by:Timeline
Symbol 229 FontUsed by:230
Symbol 230 TextUses:229Used by:Timeline
Symbol 231 GraphicUsed by:Timeline
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:Timeline
Symbol 234 FontUsed by:235 499 507 508 509 510 511 521 523 525 527 529 530
Symbol 235 TextUses:234Used by:Timeline
Symbol 236 GraphicUsed by:260
Symbol 237 GraphicUsed by:239
Symbol 238 MovieClipUsed by:239
Symbol 239 MovieClipUses:237 238Used by:260
Symbol 240 GraphicUsed by:250
Symbol 241 ShapeTweeningUsed by:249
Symbol 242 GraphicUsed by:249
Symbol 243 ShapeTweeningUsed by:249
Symbol 244 GraphicUsed by:249
Symbol 245 ShapeTweeningUsed by:249
Symbol 246 GraphicUsed by:249
Symbol 247 ShapeTweeningUsed by:249
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:241 242 243 244 245 246 247 248Used by:250
Symbol 250 MovieClipUses:240 249Used by:258
Symbol 251 GraphicUsed by:256
Symbol 252 GraphicUsed by:256
Symbol 253 GraphicUsed by:254
Symbol 254 MovieClipUses:253Used by:256
Symbol 255 GraphicUsed by:256
Symbol 256 MovieClipUses:251 252 254 255Used by:258
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:250 256 257Used by:260
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:236 239 258 259Used by:Timeline
Symbol 261 FontUsed by:262 263 264 265 266 267 269 270 271 272 273 274 275 276 416
Symbol 262 TextUses:261Used by:268
Symbol 263 TextUses:261Used by:268
Symbol 264 TextUses:261Used by:268
Symbol 265 TextUses:261Used by:268
Symbol 266 TextUses:261Used by:268
Symbol 267 TextUses:261Used by:268
Symbol 268 MovieClip {winsy_fla.peppydfgfsds_loader_19}Uses:262 263 264 265 266 267Used by:Timeline
Symbol 269 TextUses:261Used by:277
Symbol 270 TextUses:261Used by:277
Symbol 271 TextUses:261Used by:277
Symbol 272 TextUses:261Used by:277
Symbol 273 TextUses:261Used by:277
Symbol 274 TextUses:261Used by:277
Symbol 275 TextUses:261Used by:277
Symbol 276 TextUses:261Used by:277
Symbol 277 MovieClipUses:269 270 271 272 273 274 275 276Used by:Timeline
Symbol 278 GraphicUsed by:297
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:297
Symbol 281 GraphicUsed by:297
Symbol 282 GraphicUsed by:283
Symbol 283 MovieClipUses:282Used by:297
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClipUses:284Used by:297
Symbol 286 GraphicUsed by:297
Symbol 287 GraphicUsed by:288
Symbol 288 MovieClipUses:287Used by:297
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClipUses:289Used by:297
Symbol 291 GraphicUsed by:297
Symbol 292 GraphicUsed by:295
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:295
Symbol 295 MovieClipUses:292 294Used by:297
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:278 280 281 283 285 286 288 290 291 295 296Used by:Timeline
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:Timeline
Symbol 300 GraphicUsed by:321
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:321
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClipUses:303Used by:321
Symbol 305 GraphicUsed by:308
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:306Used by:308
Symbol 308 MovieClipUses:305 307Used by:321
Symbol 309 MovieClipUsed by:321
Symbol 310 GraphicUsed by:311
Symbol 311 MovieClipUses:310Used by:321
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:321
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:321
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:316Used by:321
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:320
Symbol 320 MovieClipUses:319Used by:321
Symbol 321 MovieClipUses:300 302 304 308 309 311 313 315 317 320Used by:322
Symbol 322 MovieClipUses:321Used by:347 374
Symbol 323 MovieClipUses:201Used by:347
Symbol 324 MovieClipUses:198Used by:347
Symbol 325 MovieClipUses:195Used by:347
Symbol 326 MovieClip {winsy_fla.topscopy_53}Uses:192 189 186 183 180 174 171 168 165 159 156 153 150Used by:347
Symbol 327 MovieClip {winsy_fla.beltscopy_81}Uses:145 142 139 135 131Used by:347
Symbol 328 MovieClipUses:127Used by:347
Symbol 329 GraphicUsed by:336
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:330Used by:336
Symbol 332 GraphicUsed by:336
Symbol 333 GraphicUsed by:334
Symbol 334 MovieClipUses:333Used by:336
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:329 331 332 334 335Used by:347 374
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:337Used by:343
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:339Used by:343
Symbol 341 GraphicUsed by:342
Symbol 342 MovieClipUses:341Used by:343
Symbol 343 MovieClip {winsy_fla.hairs_98}Uses:338 340 342Used by:347 374
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClipUses:344Used by:347 374
Symbol 346 MovieClipUses:124Used by:347
Symbol 347 MovieClipUses:322 323 324 325 326 327 328 336 343 345 346Used by:Timeline
Symbol 348 GraphicUsed by:349 380 383 400 407 413
Symbol 349 MovieClipUses:348Used by:362 376 379 382 399 406 412
Symbol 350 FontUsed by:351 375 408 411 433
Symbol 351 TextUses:350Used by:362
Symbol 352 GraphicUsed by:362
Symbol 353 GraphicUsed by:362
Symbol 354 GraphicUsed by:362
Symbol 355 GraphicUsed by:362
Symbol 356 GraphicUsed by:362
Symbol 357 GraphicUsed by:362
Symbol 358 GraphicUsed by:362
Symbol 359 GraphicUsed by:362
Symbol 360 GraphicUsed by:362
Symbol 361 GraphicUsed by:362
Symbol 362 MovieClip {winsy_fla.nextbtncopy_106}Uses:349 351 352 353 354 355 356 357 358 359 360 361Used by:Timeline
Symbol 363 BitmapUsed by:364
Symbol 364 GraphicUses:363Used by:Timeline
Symbol 365 MovieClip {winsy_fla.shoes_109}Uses:201 121 118 115 112Used by:374
Symbol 366 MovieClip {winsy_fla.dress_118}Uses:195 109 106 103 100 97 94 91 88 85 82 79Used by:374
Symbol 367 MovieClip {winsy_fla.bottoms_141}Uses:76 198 70 64 61 58 55 52 49 46 43 40 37Used by:374
Symbol 368 MovieClip {winsy_fla.tops_168}Uses:192 189 186 183 180 174 171 168 165 159 156 153 150Used by:374
Symbol 369 MovieClip {winsy_fla.belts_169}Uses:145 142 139 135 131Used by:374
Symbol 370 MovieClip {winsy_fla.chains_170}Uses:34 31 28 127 25 22Used by:374
Symbol 371 GraphicUsed by:372
Symbol 372 MovieClipUses:371Used by:374
Symbol 373 MovieClip {winsy_fla.earrings_183}Uses:124 17 14 11 6Used by:374
Symbol 374 MovieClip {winsy_fla.doll_108}Uses:322 365 366 367 368 369 370 336 343 372 345 373Used by:Timeline
Symbol 375 TextUses:350Used by:376
Symbol 376 MovieClipUses:349 375Used by:Timeline
Symbol 377 GraphicUsed by:378 380
Symbol 378 MovieClipUses:377Used by:379
Symbol 379 MovieClipUses:349 378Used by:380
Symbol 380 ButtonUses:379 348 377Used by:Timeline
Symbol 381 GraphicUsed by:382 383
Symbol 382 MovieClipUses:349 381Used by:383
Symbol 383 ButtonUses:382 348 381Used by:Timeline
Symbol 384 GraphicUsed by:385 389 393 397 403 410
Symbol 385 MovieClipUses:384Used by:388 392 396 402 409
Symbol 386 GraphicUsed by:387 389
Symbol 387 MovieClipUses:386Used by:388
Symbol 388 MovieClipUses:385 387Used by:389
Symbol 389 ButtonUses:388 384 386Used by:Timeline
Symbol 390 GraphicUsed by:391 393
Symbol 391 MovieClipUses:390Used by:392
Symbol 392 MovieClipUses:385 391Used by:393
Symbol 393 ButtonUses:392 384 390Used by:Timeline
Symbol 394 GraphicUsed by:395 397
Symbol 395 MovieClipUses:394Used by:396
Symbol 396 MovieClipUses:385 395Used by:397
Symbol 397 ButtonUses:396 384 394Used by:Timeline
Symbol 398 GraphicUsed by:399 400
Symbol 399 MovieClipUses:349 398Used by:400
Symbol 400 ButtonUses:399 348 398Used by:Timeline
Symbol 401 GraphicUsed by:402 403
Symbol 402 MovieClipUses:385 401Used by:403
Symbol 403 ButtonUses:402 384 401Used by:Timeline
Symbol 404 GraphicUsed by:405 407
Symbol 405 MovieClipUses:404Used by:406
Symbol 406 MovieClipUses:349 405Used by:407
Symbol 407 ButtonUses:406 348 404Used by:Timeline
Symbol 408 TextUses:350Used by:409 410
Symbol 409 MovieClipUses:385 408Used by:410
Symbol 410 ButtonUses:409 384 408Used by:414
Symbol 411 TextUses:350Used by:412 413
Symbol 412 MovieClipUses:349 411Used by:413
Symbol 413 ButtonUses:412 348 411Used by:414
Symbol 414 MovieClip {winsy_fla.buttons1_216}Uses:410 413Used by:Timeline
Symbol 415 GraphicUsed by:419
Symbol 416 TextUses:261Used by:419
Symbol 417 GraphicUsed by:419
Symbol 418 GraphicUsed by:419
Symbol 419 ButtonUses:415 416 417 418Used by:Timeline
Symbol 420 GraphicUsed by:422 427 428
Symbol 421 GraphicUsed by:422 427 428
Symbol 422 MovieClipUses:420 421Used by:427 428
Symbol 423 GraphicUsed by:424 427 428
Symbol 424 MovieClipUses:423Used by:427 428
Symbol 425 GraphicUsed by:426 427
Symbol 426 MovieClipUses:425Used by:427
Symbol 427 ButtonUses:422 424 426 420 421 423 425Used by:Timeline
Symbol 428 ButtonUses:422 424 420 421 423Used by:Timeline
Symbol 429 GraphicUsed by:432
Symbol 430 GraphicUsed by:431
Symbol 431 MovieClipUses:430Used by:432
Symbol 432 MovieClipUses:429 431Used by:Timeline
Symbol 433 EditableTextUses:350Used by:Timeline
Symbol 434 GraphicUsed by:435
Symbol 435 MovieClipUses:434Used by:447
Symbol 436 GraphicUsed by:447
Symbol 437 GraphicUsed by:447
Symbol 438 GraphicUsed by:447
Symbol 439 GraphicUsed by:447
Symbol 440 GraphicUsed by:447
Symbol 441 GraphicUsed by:447
Symbol 442 GraphicUsed by:447
Symbol 443 GraphicUsed by:447
Symbol 444 GraphicUsed by:447
Symbol 445 GraphicUsed by:447
Symbol 446 GraphicUsed by:447
Symbol 447 MovieClip {winsy_fla.ert_229}Uses:435 436 437 438 439 440 441 442 443 444 445 446Used by:Timeline
Symbol 448 GraphicUsed by:449 452 455 463
Symbol 449 MovieClipUses:448Used by:452 455 463
Symbol 450 GraphicUsed by:452
Symbol 451 GraphicUsed by:452
Symbol 452 ButtonUses:449 450 451 448Used by:Timeline
Symbol 453 GraphicUsed by:455
Symbol 454 GraphicUsed by:455
Symbol 455 ButtonUses:449 453 454 448Used by:Timeline
Symbol 456 FontUsed by:457 458 459 460 461
Symbol 457 EditableTextUses:456Used by:462
Symbol 458 EditableTextUses:456Used by:462
Symbol 459 EditableTextUses:456Used by:462
Symbol 460 EditableTextUses:456Used by:462
Symbol 461 EditableTextUses:456Used by:462
Symbol 462 MovieClipUses:457 458 459 460 461Used by:463
Symbol 463 ButtonUses:449 462 448Used by:Timeline
Symbol 464 GraphicUsed by:465 469
Symbol 465 MovieClipUses:464Used by:466
Symbol 466 MovieClipUses:465Used by:469
Symbol 467 GraphicUsed by:468
Symbol 468 MovieClipUses:467Used by:469
Symbol 469 ButtonUses:466 468 464Used by:Timeline
Symbol 470 GraphicUsed by:471
Symbol 471 MovieClipUses:470Used by:Timeline
Symbol 472 FontUsed by:473
Symbol 473 TextUses:472Used by:Timeline
Symbol 474 FontUsed by:475
Symbol 475 EditableTextUses:474Used by:Timeline
Symbol 476 GraphicUsed by:481
Symbol 477 GraphicUsed by:478
Symbol 478 MovieClipUses:477Used by:481
Symbol 479 GraphicUsed by:480 483
Symbol 480 MovieClipUses:479Used by:481
Symbol 481 MovieClipUses:476 478 480Used by:484 506
Symbol 482 GraphicUsed by:484
Symbol 483 MovieClipUses:479Used by:484
Symbol 484 MovieClipUses:481 482 483Used by:502
Symbol 485 GraphicUsed by:486 494 526 531
Symbol 486 MovieClipUses:485Used by:494 520
Symbol 487 GraphicUsed by:488 494
Symbol 488 MovieClipUses:487Used by:491
Symbol 489 GraphicUsed by:490 494 526 531
Symbol 490 MovieClipUses:489Used by:491 519
Symbol 491 MovieClipUses:488 490Used by:494
Symbol 492 GraphicUsed by:493
Symbol 493 ButtonUses:492Used by:494
Symbol 494 ButtonUses:486 491 493 485 487 489Used by:502 532
Symbol 495 GraphicUsed by:498
Symbol 496 GraphicUsed by:497
Symbol 497 MovieClipUses:496Used by:498
Symbol 498 MovieClipUses:495 497Used by:502 505
Symbol 499 TextUses:234Used by:502
Symbol 500 FontUsed by:501 512 513 514 515 516
Symbol 501 EditableTextUses:500Used by:502
Symbol 502 MovieClip {winsy_fla.zanOHJKNCNCNKL_242}Uses:484 494 498 499 501Used by:532
Symbol 503 GraphicUsed by:504
Symbol 504 MovieClipUses:503Used by:505
Symbol 505 MovieClipUses:504 498Used by:506
Symbol 506 MovieClipUses:481 505Used by:532
Symbol 507 TextUses:234Used by:532
Symbol 508 TextUses:234Used by:532
Symbol 509 TextUses:234Used by:532
Symbol 510 TextUses:234Used by:532
Symbol 511 TextUses:234Used by:532
Symbol 512 EditableTextUses:500Used by:532
Symbol 513 EditableTextUses:500Used by:532
Symbol 514 EditableTextUses:500Used by:532
Symbol 515 EditableTextUses:500Used by:532
Symbol 516 EditableTextUses:500Used by:532
Symbol 517 GraphicUsed by:518 526 531
Symbol 518 MovieClipUses:517Used by:519
Symbol 519 MovieClipUses:518 490Used by:520
Symbol 520 MovieClipUses:486 519Used by:522 526 528 531
Symbol 521 TextUses:234Used by:522
Symbol 522 MovieClipUses:520 521Used by:526
Symbol 523 TextUses:234Used by:526
Symbol 524 GraphicUsed by:526 531
Symbol 525 TextUses:234Used by:526
Symbol 526 ButtonUses:522 520 523 524 485 517 489 525Used by:532
Symbol 527 TextUses:234Used by:528
Symbol 528 MovieClipUses:520 527Used by:531
Symbol 529 TextUses:234Used by:531
Symbol 530 TextUses:234Used by:531
Symbol 531 ButtonUses:528 520 529 524 485 517 489 530Used by:532
Symbol 532 MovieClip {winsy_fla.zanOL_241}Uses:502 506 507 508 509 510 511 512 513 514 515 516 526 531 494Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 226 MovieClip {winsy_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 228 EditableText
"ball"Frame 1Symbol 277 MovieClip
"pl"Frame 2Symbol 362 MovieClip {winsy_fla.nextbtncopy_106}
"doll"Frame 3Symbol 374 MovieClip {winsy_fla.doll_108}
"dress_btn"Frame 3Symbol 380 Button
"hair_btn"Frame 3Symbol 383 Button
"tops_btn"Frame 3Symbol 389 Button
"bottoms_btn"Frame 3Symbol 393 Button
"chain_btn"Frame 3Symbol 397 Button
"studs_btn"Frame 3Symbol 400 Button
"bags_btn"Frame 3Symbol 403 Button
"shoes_btn"Frame 3Symbol 407 Button
"buttons2"Frame 3Symbol 414 MovieClip {winsy_fla.buttons1_216}
"music_btn"Frame 3Symbol 380 Button
"glass_btn"Frame 3Symbol 383 Button
"caps_btn"Frame 3Symbol 389 Button
"logo_mc"Frame 3Symbol 419 Button
"sndon"Frame 3Symbol 427 Button
"sndoff"Frame 3Symbol 428 Button
"t1"Frame 4Symbol 433 EditableText
"nextbtn"Frame 4Symbol 447 MovieClip {winsy_fla.ert_229}
"play_more"Frame 5Symbol 452 Button
"nex"Frame 5Symbol 455 Button
"email"Frame 5Symbol 463 Button
"bg_btn"Frame 5Symbol 469 Button
"bgss"Frame 5Symbol 471 MovieClip
"t2"Frame 5Symbol 475 EditableText
"popup"Frame 5Symbol 532 MovieClip {winsy_fla.zanOL_241}
"dolls"Frame 5Symbol 374 MovieClip {winsy_fla.doll_108}
"masker"Symbol 226 MovieClip {winsy_fla.cbvdsfdsf_loader_7} Frame 1Symbol 214 MovieClip
"shoes"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 365 MovieClip {winsy_fla.shoes_109}
"dress"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 366 MovieClip {winsy_fla.dress_118}
"bottoms"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 367 MovieClip {winsy_fla.bottoms_141}
"tops"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 368 MovieClip {winsy_fla.tops_168}
"bags"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 369 MovieClip {winsy_fla.belts_169}
"chain"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 370 MovieClip {winsy_fla.chains_170}
"hair"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 336 MovieClip
"hair"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 343 MovieClip {winsy_fla.hairs_98}
"caps"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 372 MovieClip
"glass"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 372 MovieClip
"music"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 372 MovieClip
"earring"Symbol 374 MovieClip {winsy_fla.doll_108} Frame 1Symbol 373 MovieClip {winsy_fla.earrings_183}
"resetbtn"Symbol 414 MovieClip {winsy_fla.buttons1_216} Frame 1Symbol 410 Button
"nextbtn1"Symbol 414 MovieClip {winsy_fla.buttons1_216} Frame 1Symbol 413 Button
"close"Symbol 502 MovieClip {winsy_fla.zanOHJKNCNCNKL_242} Frame 1Symbol 494 Button
"friendMail"Symbol 502 MovieClip {winsy_fla.zanOHJKNCNCNKL_242} Frame 1Symbol 501 EditableText
"friend4"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 502 MovieClip {winsy_fla.zanOHJKNCNCNKL_242}
"friend3"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 502 MovieClip {winsy_fla.zanOHJKNCNCNKL_242}
"friend2"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 502 MovieClip {winsy_fla.zanOHJKNCNCNKL_242}
"friend1"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 502 MovieClip {winsy_fla.zanOHJKNCNCNKL_242}
"nameDetail"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 512 EditableText
"mailDetail"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 513 EditableText
"messageDetail"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 514 EditableText
"friendName"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 515 EditableText
"friendMail"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 516 EditableText
"submit"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 526 Button
"addition"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 531 Button
"close"Symbol 532 MovieClip {winsy_fla.zanOL_241} Frame 1Symbol 494 Button

Special Tags

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




http://swfchan.com/26/125137/info.shtml
Created: 28/2 -2019 12:58:44 Last modified: 28/2 -2019 12:58:44 Server time: 02/05 -2024 20:42:11