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

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

raisy.swf

This is the info page for
Flash #109142

(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

.

RAISY

DRESS UP GAME

PLAY

DRESS

TOP

üst

BOTTOM

Alt

STUDS

CAPS

CHAIN

Kolye

SHOES

Ayakkabı

Bastan

Ilerle

123PEPPY

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

Spela Me

Achtergrond

Фон

Femminile

Femelle

Bakgrund

DESIGNED BY

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

YOUR FRIEND'S EMAIL :

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

SEND

SEND

ADD MORE

ADD MORE

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

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

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

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

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

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

ActionScript [AS3]

Section 1
//Back (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
//BGSS_152 (raisy_fla.BGSS_152) package raisy_fla { import flash.display.*; public dynamic class BGSS_152 extends MovieClip { public function BGSS_152(){ addFrameScript(0, frame1, 3, frame4); } function frame1(){ stop(); } function frame4(){ gotoAndStop(1); } } }//package raisy_fla
Section 14
//BOTTOMS_88 (raisy_fla.BOTTOMS_88) package raisy_fla { import flash.display.*; public dynamic class BOTTOMS_88 extends MovieClip { public function BOTTOMS_88(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package raisy_fla
Section 15
//but1_25 (raisy_fla.but1_25) package raisy_fla { import flash.display.*; public dynamic class but1_25 extends MovieClip { public var but1:MovieClip; public function but1_25(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 16
//but1copy_54 (raisy_fla.but1copy_54) package raisy_fla { import flash.display.*; public dynamic class but1copy_54 extends MovieClip { public var but1:MovieClip; public function but1copy_54(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 17
//but1copy10_66 (raisy_fla.but1copy10_66) package raisy_fla { import flash.display.*; public dynamic class but1copy10_66 extends MovieClip { public var but1:MovieClip; public function but1copy10_66(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 18
//but1copy11_167 (raisy_fla.but1copy11_167) package raisy_fla { import flash.display.*; public dynamic class but1copy11_167 extends MovieClip { public var but1:MovieClip; public function but1copy11_167(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 19
//but1copy12_168 (raisy_fla.but1copy12_168) package raisy_fla { import flash.display.*; public dynamic class but1copy12_168 extends MovieClip { public var but1:MovieClip; public function but1copy12_168(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 20
//but1copy13_170 (raisy_fla.but1copy13_170) package raisy_fla { import flash.display.*; public dynamic class but1copy13_170 extends MovieClip { public var but1:MovieClip; public function but1copy13_170(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 21
//but1copy2_55 (raisy_fla.but1copy2_55) package raisy_fla { import flash.display.*; public dynamic class but1copy2_55 extends MovieClip { public var but1:MovieClip; public function but1copy2_55(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 22
//but1copy3_56 (raisy_fla.but1copy3_56) package raisy_fla { import flash.display.*; public dynamic class but1copy3_56 extends MovieClip { public var but1:MovieClip; public function but1copy3_56(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 23
//but1copy4_57 (raisy_fla.but1copy4_57) package raisy_fla { import flash.display.*; public dynamic class but1copy4_57 extends MovieClip { public var but1:MovieClip; public function but1copy4_57(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 24
//but1copy5_58 (raisy_fla.but1copy5_58) package raisy_fla { import flash.display.*; public dynamic class but1copy5_58 extends MovieClip { public var but1:MovieClip; public function but1copy5_58(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 25
//but1copy6_59 (raisy_fla.but1copy6_59) package raisy_fla { import flash.display.*; public dynamic class but1copy6_59 extends MovieClip { public var but1:MovieClip; public function but1copy6_59(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 26
//but1copy7_60 (raisy_fla.but1copy7_60) package raisy_fla { import flash.display.*; public dynamic class but1copy7_60 extends MovieClip { public var but1:MovieClip; public function but1copy7_60(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 27
//but1copy8_61 (raisy_fla.but1copy8_61) package raisy_fla { import flash.display.*; public dynamic class but1copy8_61 extends MovieClip { public var but1:MovieClip; public function but1copy8_61(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 28
//but1copy9_64 (raisy_fla.but1copy9_64) package raisy_fla { import flash.display.*; public dynamic class but1copy9_64 extends MovieClip { public var but1:MovieClip; public function but1copy9_64(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 29
//buttons_26 (raisy_fla.buttons_26) package raisy_fla { import flash.display.*; public dynamic class buttons_26 extends MovieClip { public var box:MovieClip; } }//package raisy_fla
Section 30
//buttons1_63 (raisy_fla.buttons1_63) package raisy_fla { import flash.display.*; public dynamic class buttons1_63 extends MovieClip { public var resetbtn:MovieClip; public var nextbtn1:MovieClip; } }//package raisy_fla
Section 31
//caps_139 (raisy_fla.caps_139) package raisy_fla { import flash.display.*; public dynamic class caps_139 extends MovieClip { public function caps_139(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package raisy_fla
Section 32
//cbvdsfdsf_loader_7 (raisy_fla.cbvdsfdsf_loader_7) package raisy_fla { import flash.display.*; public dynamic class cbvdsfdsf_loader_7 extends MovieClip { public var masker:MovieClip; } }//package raisy_fla
Section 33
//CHIANS_113 (raisy_fla.CHIANS_113) package raisy_fla { import flash.display.*; public dynamic class CHIANS_113 extends MovieClip { public function CHIANS_113(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package raisy_fla
Section 34
//doll_68 (raisy_fla.doll_68) package raisy_fla { import flash.display.*; public dynamic class doll_68 extends MovieClip { public var dress:MovieClip; public var bags:MovieClip; public var earring:MovieClip; public var bottoms:MovieClip; public var tops:MovieClip; public var chain:MovieClip; public var shoes:MovieClip; public var hair:MovieClip; } }//package raisy_fla
Section 35
//DRESS_74 (raisy_fla.DRESS_74) package raisy_fla { import flash.display.*; public dynamic class DRESS_74 extends MovieClip { public function DRESS_74(){ addFrameScript(0, frame1, 14, frame15); } function frame15(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package raisy_fla
Section 36
//EARRINGS_131 (raisy_fla.EARRINGS_131) package raisy_fla { import flash.display.*; public dynamic class EARRINGS_131 extends MovieClip { public function EARRINGS_131(){ addFrameScript(0, frame1, 8, frame9); } function frame1(){ stop(); } function frame9(){ gotoAndStop(2); } } }//package raisy_fla
Section 37
//fans_126 (raisy_fla.fans_126) package raisy_fla { import flash.display.*; public dynamic class fans_126 extends MovieClip { public function fans_126(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package raisy_fla
Section 38
//GLASS_120 (raisy_fla.GLASS_120) package raisy_fla { import flash.display.*; public dynamic class GLASS_120 extends MovieClip { public function GLASS_120(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package raisy_fla
Section 39
//hdhdfhf_emaiklY_178 (raisy_fla.hdhdfhf_emaiklY_178) package raisy_fla { import flash.events.*; import flash.display.*; import flash.text.*; public dynamic class hdhdfhf_emaiklY_178 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; public function hdhdfhf_emaiklY_178(){ addFrameScript(0, frame1); } public function hideAdd(_arg1:MouseEvent):void{ this.visible = false; } function frame1(){ this.visible = false; close.addEventListener(MouseEvent.CLICK, hideAdd); } } }//package raisy_fla
Section 40
//jgjyiy9_emaiklY_177 (raisy_fla.jgjyiy9_emaiklY_177) package raisy_fla { import flash.display.*; import flash.text.*; public dynamic class jgjyiy9_emaiklY_177 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 raisy_fla
Section 41
//MainTimeline (raisy_fla.MainTimeline) package raisy_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 t2:TextField; public var t1:TextField; public var percent:TextField; public var dress_btn:MovieClip; public var tops_btn:MovieClip; public var preloader:MovieClip; public var hair_btn:MovieClip; public var shoes_btn:MovieClip; 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 bottoms_btn:MovieClip; public var doll:MovieClip; public var top; public var bg_btn:MovieClip; public var bgss:MovieClip; public var sndoff:SimpleButton; public var buttonHolder:MovieClip; public var play_more:MovieClip; public var bags_btn:MovieClip; public var email:MovieClip; public var nex:MovieClip; public var bulletChannel:SoundChannel; public var contextmenuItem:ContextMenuItem; public var bot; public var chain_btn:MovieClip; public var studs_btn:MovieClip; public var pl:MovieClip; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function 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 dress(_arg1:MouseEvent):void{ doll.dress.nextFrame(); 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); 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, "22beae8d"); stop(); dress1 = 0; top = 0; bot = 0; 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); 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); buttons2.resetbtn.addEventListener(MouseEvent.CLICK, rese); buttons2.nextbtn1.addEventListener(MouseEvent.CLICK, nx); tops_btn.addEventListener(MouseEvent.ROLL_OVER, rollover123); dress_btn.addEventListener(MouseEvent.ROLL_OVER, rollover123); hair_btn.addEventListener(MouseEvent.ROLL_OVER, rollover123); bottoms_btn.addEventListener(MouseEvent.ROLL_OVER, rollover123); shoes_btn.addEventListener(MouseEvent.ROLL_OVER, rollover123); chain_btn.addEventListener(MouseEvent.ROLL_OVER, rollover123); studs_btn.addEventListener(MouseEvent.ROLL_OVER, rollover123); bags_btn.addEventListener(MouseEvent.ROLL_OVER, rollover123); buttons2.resetbtn.addEventListener(MouseEvent.ROLL_OVER, rollover123); buttons2.nextbtn1.addEventListener(MouseEvent.ROLL_OVER, rollover123); tops_btn.addEventListener(MouseEvent.ROLL_OUT, rollout123); dress_btn.addEventListener(MouseEvent.ROLL_OUT, rollout123); hair_btn.addEventListener(MouseEvent.ROLL_OUT, rollout123); bottoms_btn.addEventListener(MouseEvent.ROLL_OUT, rollout123); shoes_btn.addEventListener(MouseEvent.ROLL_OUT, rollout123); chain_btn.addEventListener(MouseEvent.ROLL_OUT, rollout123); studs_btn.addEventListener(MouseEvent.ROLL_OUT, rollout123); bags_btn.addEventListener(MouseEvent.ROLL_OUT, rollout123); buttons2.resetbtn.addEventListener(MouseEvent.ROLL_OUT, rollout123); buttons2.nextbtn1.addEventListener(MouseEvent.ROLL_OUT, rollout123); tops_btn.buttonMode = true; dress_btn.buttonMode = true; hair_btn.buttonMode = true; bottoms_btn.buttonMode = true; shoes_btn.buttonMode = true; chain_btn.buttonMode = true; studs_btn.buttonMode = true; bags_btn.buttonMode = true; buttons2.resetbtn.buttonMode = true; buttons2.nextbtn1.buttonMode = true; tops_btn.gotoAndStop(Globe.temp); dress_btn.gotoAndStop(Globe.temp); hair_btn.gotoAndStop(Globe.temp); bottoms_btn.gotoAndStop(Globe.temp); shoes_btn.gotoAndStop(Globe.temp); chain_btn.gotoAndStop(Globe.temp); studs_btn.gotoAndStop(Globe.temp); bags_btn.gotoAndStop(Globe.temp); buttons2.resetbtn.gotoAndStop(Globe.temp); buttons2.nextbtn1.gotoAndStop(Globe.temp); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } 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.addEventListener(Event.ENTER_FRAME, result); nextbtn.addEventListener(MouseEvent.CLICK, nextbtns); nextbtn.addEventListener(MouseEvent.ROLL_OVER, rollover2); nextbtn.addEventListener(MouseEvent.ROLL_OUT, rollout2); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } 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); 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); bg_btn.buttonMode = true; bg_btn.gotoAndStop(Globe.temp); email.gotoAndStop(Globe.temp); play_more.gotoAndStop(Globe.temp); play_more.buttonMode = true; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link1); }; play_more.addEventListener(MouseEvent.CLICK, link7); if (((this.loaderInfo.parameters.bg) && ((Globe.playback == false)))){ email.visible = true; nex.tabEnabled = false; email.buttonMode = true; email.tabEnabled = false; email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); t2.text = this.loaderInfo.parameters.name; girldollArray = this.loaderInfo.parameters.girldoll.split(""); 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])); bgss.gotoAndStop(Number(girldollArray[8])); } 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])); bgss.gotoAndStop(Number(girldollArray[9])); } 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])); bgss.gotoAndStop(Number(girldollArray[8])); } else { if (this.loaderInfo.parameters.bg == 4){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.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])); bgss.gotoAndStop(Number(girldollArray[9])); } 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])); bgss.gotoAndStop(Number(girldollArray[9])); }; }; }; }; }; nex.addEventListener(MouseEvent.CLICK, plas1); nex.tabEnabled = false; nex.buttonMode = true; nex.gotoAndStop(Globe.temp); } else { if (Globe.playback == true){ t2.text = Globe.tex; nex.tabEnabled = false; email.visible = true; email.buttonMode = 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); bgss.gotoAndStop(Globe.bgss); nex.addEventListener(MouseEvent.CLICK, plas); nex.buttonMode = true; nex.gotoAndStop(Globe.temp); email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); }; }; 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); nex.addEventListener(MouseEvent.ROLL_OVER, rollover5); nex.addEventListener(MouseEvent.ROLL_OUT, rollout5); play_more.addEventListener(MouseEvent.ROLL_OVER, rollover5); play_more.addEventListener(MouseEvent.ROLL_OUT, rollout5); email.addEventListener(MouseEvent.ROLL_OVER, rollover5); email.addEventListener(MouseEvent.ROLL_OUT, rollout5); } 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{ TweenLite.to(_arg1.currentTarget.but1.box, 0.5, {rotation:0, ease:Back.easeInOut}); } public function rollout2(_arg1:MouseEvent):void{ TweenLite.to(_arg1.currentTarget.but1.box, 0.5, {rotation:0, ease:Back.easeInOut}); } 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{ TweenLite.to(_arg1.currentTarget.but1.box, 0.5, {rotation:45, ease:Back.easeInOut}); } public function rollout123(_arg1:MouseEvent):void{ TweenLite.to(_arg1.currentTarget.but1.box, 0.5, {rotation:0, ease:Back.easeInOut}); } 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; trace(Globe.tex); 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()) + 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 = "Raisy"; 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/raisy"; break; case "de": variables.path = "http://www.123peppy.com/de/play/raisy"; break; case "it": variables.path = "http://www.123peppy.com/it/play/raisy"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/raisy"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/raisy"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/raisy"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/raisy"; break; case "pt-br": variables.path = "http://www.123peppy.com/pt-br/play/raisy"; break; case "es": variables.path = "http://www.123peppy.com/es/play/raisy"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/raisy"; break; default: variables.path = "http://www.123peppy.com/play/raisy"; 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)); percent.text = String(percentage); BitsLoaded.text = (((Math.round((_local4 / 0x0400)) + "kBs /") + Math.round((_local5 / 0x0400))) + "kBs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); if (this.loaderInfo.parameters.bg){ gotoAndStop(5); } else { gotoAndStop(2); }; }; } public function 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 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{ TweenLite.to(_arg1.currentTarget.but1.box, 0.5, {rotation:45, ease:Back.easeInOut}); } public function rollover5(_arg1:MouseEvent):void{ TweenLite.to(_arg1.currentTarget.but1.box, 0.5, {rotation:45, ease:Back.easeInOut}); } 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{ TweenLite.to(_arg1.currentTarget.but1.box, 0.5, {rotation:0, ease:Back.easeInOut}); } 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); 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; } public function rollover123(_arg1:MouseEvent):void{ TweenLite.to(_arg1.currentTarget.but1.box, 0.5, {rotation:45, ease:Back.easeInOut}); } 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 raisy_fla
Section 42
//peppydfgfsds_loader_19 (raisy_fla.peppydfgfsds_loader_19) package raisy_fla { import flash.display.*; public dynamic class peppydfgfsds_loader_19 extends MovieClip { public function peppydfgfsds_loader_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package raisy_fla
Section 43
//SHOES_69 (raisy_fla.SHOES_69) package raisy_fla { import flash.display.*; public dynamic class SHOES_69 extends MovieClip { public function SHOES_69(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package raisy_fla
Section 44
//Symbol2DFASFcopy16T_171 (raisy_fla.Symbol2DFASFcopy16T_171) package raisy_fla { import flash.display.*; public dynamic class Symbol2DFASFcopy16T_171 extends MovieClip { public function Symbol2DFASFcopy16T_171(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package raisy_fla
Section 45
//TOPS_100 (raisy_fla.TOPS_100) package raisy_fla { import flash.display.*; public dynamic class TOPS_100 extends MovieClip { public function TOPS_100(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package raisy_fla
Section 46
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 47
//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 hair:Number = 0; public static var bgss:Number = 0; public static var tex:String = ""; public static var shoes:Number = 0; public static var bags:Number = 0; public static var bottoms:Number = 0; public static var glass:Number = 0; public static var dress:Number = 0; } }//package
Section 48
//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 {raisy_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 EditableTextUses:29Used by:Timeline
Symbol 31 TextUses:29Used by:Timeline
Symbol 32 GraphicUsed by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:Timeline
Symbol 35 FontUsed by:36 189 264 277
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 431
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 {raisy_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 GraphicUsed by:82
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:82
Symbol 82 MovieClipUses:79 81Used by:477  Timeline
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:477  Timeline
Symbol 85 FontUsed by:86
Symbol 86 TextUses:85Used by:87
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 FontUsed by:89 178 226 238 538 539
Symbol 89 TextUses:88Used by:Timeline
Symbol 90 GraphicUsed by:95
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:91Used by:95
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:95
Symbol 95 MovieClip {raisy_fla.buttons_26}Uses:90 92 94Used by:108 171 182 194 206 219 231 243 256 269 282 490 503 515
Symbol 96 FontUsed by:97
Symbol 97 TextUses:96Used by:108
Symbol 98 GraphicUsed by:108
Symbol 99 GraphicUsed by:108
Symbol 100 GraphicUsed by:108
Symbol 101 GraphicUsed by:108
Symbol 102 GraphicUsed by:108
Symbol 103 GraphicUsed by:108
Symbol 104 GraphicUsed by:108
Symbol 105 GraphicUsed by:108
Symbol 106 GraphicUsed by:108
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClip {raisy_fla.but1_25}Uses:95 97 98 99 100 101 102 103 104 105 106 107Used by:Timeline
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:109Used by:Timeline
Symbol 111 GraphicUsed by:113
Symbol 112 MovieClipUsed by:113
Symbol 113 MovieClipUses:111 112Used by:118
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:118
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:118
Symbol 118 MovieClipUses:113 115 117Used by:158 429
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:121 418
Symbol 121 MovieClipUses:120Used by:158
Symbol 122 BitmapUsed by:123
Symbol 123 GraphicUses:122Used by:124
Symbol 124 MovieClipUses:123Used by:125 292
Symbol 125 MovieClipUses:124Used by:158
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:128 342
Symbol 128 MovieClipUses:127Used by:158
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:129Used by:131 368
Symbol 131 MovieClipUses:130Used by:158
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:144 405
Symbol 134 GraphicUsed by:144
Symbol 135 GraphicUsed by:144
Symbol 136 GraphicUsed by:144
Symbol 137 GraphicUsed by:144
Symbol 138 GraphicUsed by:144
Symbol 139 GraphicUsed by:144
Symbol 140 GraphicUsed by:144
Symbol 141 GraphicUsed by:144
Symbol 142 GraphicUsed by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:133 134 135 136 137 138 139 140 141 142 143Used by:145 382
Symbol 145 MovieClipUses:144Used by:158
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:158 429
Symbol 148 GraphicUsed by:149
Symbol 149 MovieClipUses:148Used by:158 429
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:152 402
Symbol 152 MovieClipUses:151Used by:158
Symbol 153 GraphicUsed by:156
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClipUses:154Used by:156
Symbol 156 MovieClipUses:153 155Used by:157 428
Symbol 157 MovieClipUses:156Used by:158
Symbol 158 MovieClipUses:118 121 125 128 131 145 147 149 152 157Used by:Timeline
Symbol 159 FontUsed by:160 172 183 195 220 232 551 567 569 572 574 576 577 578 579
Symbol 160 TextUses:159Used by:171
Symbol 161 GraphicUsed by:171
Symbol 162 GraphicUsed by:171
Symbol 163 GraphicUsed by:171
Symbol 164 GraphicUsed by:171
Symbol 165 GraphicUsed by:171
Symbol 166 GraphicUsed by:171
Symbol 167 GraphicUsed by:171
Symbol 168 GraphicUsed by:171
Symbol 169 GraphicUsed by:171
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClip {raisy_fla.but1copy_54}Uses:95 160 161 162 163 164 165 166 167 168 169 170Used by:Timeline
Symbol 172 TextUses:159Used by:182
Symbol 173 GraphicUsed by:182
Symbol 174 GraphicUsed by:182
Symbol 175 GraphicUsed by:182
Symbol 176 GraphicUsed by:182
Symbol 177 GraphicUsed by:182
Symbol 178 TextUses:88Used by:182
Symbol 179 GraphicUsed by:182
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClip {raisy_fla.but1copy2_55}Uses:95 172 173 174 175 176 177 178 179 180 181Used by:Timeline
Symbol 183 TextUses:159Used by:194
Symbol 184 GraphicUsed by:194
Symbol 185 GraphicUsed by:194
Symbol 186 GraphicUsed by:194
Symbol 187 GraphicUsed by:194
Symbol 188 GraphicUsed by:194
Symbol 189 TextUses:35Used by:194
Symbol 190 GraphicUsed by:194
Symbol 191 GraphicUsed by:194
Symbol 192 GraphicUsed by:194
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClip {raisy_fla.but1copy3_56}Uses:95 183 184 185 186 187 188 189 190 191 192 193Used by:Timeline
Symbol 195 TextUses:159Used by:206
Symbol 196 GraphicUsed by:206
Symbol 197 GraphicUsed by:206
Symbol 198 GraphicUsed by:206
Symbol 199 GraphicUsed by:206
Symbol 200 GraphicUsed by:206
Symbol 201 GraphicUsed by:206
Symbol 202 GraphicUsed by:206
Symbol 203 GraphicUsed by:206
Symbol 204 GraphicUsed by:206
Symbol 205 GraphicUsed by:206
Symbol 206 MovieClip {raisy_fla.but1copy4_57}Uses:95 195 196 197 198 199 200 201 202 203 204 205Used by:Timeline
Symbol 207 FontUsed by:208
Symbol 208 TextUses:207Used by:219
Symbol 209 GraphicUsed by:219
Symbol 210 GraphicUsed by:219
Symbol 211 GraphicUsed by:219
Symbol 212 GraphicUsed by:219
Symbol 213 GraphicUsed by:219
Symbol 214 GraphicUsed by:219
Symbol 215 GraphicUsed by:219
Symbol 216 GraphicUsed by:219
Symbol 217 GraphicUsed by:219
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClip {raisy_fla.but1copy5_58}Uses:95 208 209 210 211 212 213 214 215 216 217 218Used by:Timeline
Symbol 220 TextUses:159Used by:231
Symbol 221 GraphicUsed by:231
Symbol 222 GraphicUsed by:231
Symbol 223 GraphicUsed by:231
Symbol 224 GraphicUsed by:231
Symbol 225 GraphicUsed by:231
Symbol 226 TextUses:88Used by:231
Symbol 227 GraphicUsed by:231
Symbol 228 GraphicUsed by:231
Symbol 229 GraphicUsed by:231
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClip {raisy_fla.but1copy6_59}Uses:95 220 221 222 223 224 225 226 227 228 229 230Used by:Timeline
Symbol 232 TextUses:159Used by:243
Symbol 233 GraphicUsed by:243
Symbol 234 GraphicUsed by:243
Symbol 235 GraphicUsed by:243
Symbol 236 GraphicUsed by:243
Symbol 237 GraphicUsed by:243
Symbol 238 TextUses:88Used by:243
Symbol 239 GraphicUsed by:243
Symbol 240 GraphicUsed by:243
Symbol 241 GraphicUsed by:243
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClip {raisy_fla.but1copy7_60}Uses:95 232 233 234 235 236 237 238 239 240 241 242Used by:Timeline
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:256
Symbol 246 GraphicUsed by:256
Symbol 247 GraphicUsed by:256
Symbol 248 GraphicUsed by:256
Symbol 249 GraphicUsed by:256
Symbol 250 GraphicUsed by:256
Symbol 251 GraphicUsed by:256
Symbol 252 GraphicUsed by:256
Symbol 253 GraphicUsed by:256
Symbol 254 GraphicUsed by:256
Symbol 255 GraphicUsed by:256
Symbol 256 MovieClip {raisy_fla.but1copy8_61}Uses:95 245 246 247 248 249 250 251 252 253 254 255Used by:Timeline
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:257Used by:269
Symbol 259 GraphicUsed by:269
Symbol 260 GraphicUsed by:269
Symbol 261 GraphicUsed by:269
Symbol 262 GraphicUsed by:269
Symbol 263 GraphicUsed by:269
Symbol 264 TextUses:35Used by:269
Symbol 265 GraphicUsed by:269
Symbol 266 GraphicUsed by:269
Symbol 267 GraphicUsed by:269
Symbol 268 GraphicUsed by:269
Symbol 269 MovieClip {raisy_fla.but1copy9_64}Uses:95 258 259 260 261 262 263 264 265 266 267 268Used by:283
Symbol 270 GraphicUsed by:271
Symbol 271 MovieClipUses:270Used by:282
Symbol 272 GraphicUsed by:282
Symbol 273 GraphicUsed by:282
Symbol 274 GraphicUsed by:282
Symbol 275 GraphicUsed by:282
Symbol 276 GraphicUsed by:282
Symbol 277 TextUses:35Used by:282
Symbol 278 GraphicUsed by:282
Symbol 279 GraphicUsed by:282
Symbol 280 GraphicUsed by:282
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClip {raisy_fla.but1copy10_66}Uses:95 271 272 273 274 275 276 277 278 279 280 281Used by:283  Timeline
Symbol 283 MovieClip {raisy_fla.buttons1_63}Uses:269 282Used by:Timeline
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClipUses:284Used by:292
Symbol 286 GraphicUsed by:287
Symbol 287 MovieClipUses:286Used by:292
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:292
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:292
Symbol 292 MovieClip {raisy_fla.SHOES_69}Uses:285 124 287 289 291Used by:429
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:319
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:295Used by:319
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:297Used by:319
Symbol 299 GraphicUsed by:300
Symbol 300 MovieClipUses:299Used by:319
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:319
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClipUses:303Used by:319
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:319
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:307Used by:319
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:309Used by:319
Symbol 311 GraphicUsed by:312
Symbol 312 MovieClipUses:311Used by:319
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClipUses:313Used by:319
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315Used by:319
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:317Used by:319
Symbol 319 MovieClip {raisy_fla.DRESS_74}Uses:294 296 298 300 302 304 306 308 310 312 314 316 318Used by:429
Symbol 320 GraphicUsed by:321
Symbol 321 MovieClipUses:320Used by:342
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:322Used by:342
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324Used by:342
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:326Used by:342
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:342
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:330Used by:342
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:342
Symbol 334 GraphicUsed by:335
Symbol 335 MovieClipUses:334Used by:342
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClipUses:336Used by:342
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClipUses:338Used by:342
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClipUses:340Used by:342
Symbol 342 MovieClip {raisy_fla.BOTTOMS_88}Uses:321 323 325 327 329 331 333 335 337 339 127 341Used by:429
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:343Used by:368
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:345Used by:368
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:347Used by:368
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349Used by:368
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351Used by:368
Symbol 353 GraphicUsed by:354
Symbol 354 MovieClipUses:353Used by:368
Symbol 355 GraphicUsed by:359
Symbol 356 GraphicUsed by:357
Symbol 357 MovieClipUses:356Used by:359
Symbol 358 GraphicUsed by:359
Symbol 359 MovieClipUses:355 357 358Used by:368
Symbol 360 GraphicUsed by:361
Symbol 361 MovieClipUses:360Used by:368
Symbol 362 GraphicUsed by:363
Symbol 363 MovieClipUses:362Used by:368
Symbol 364 GraphicUsed by:365
Symbol 365 MovieClipUses:364Used by:368
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:366Used by:368
Symbol 368 MovieClip {raisy_fla.TOPS_100}Uses:344 346 348 350 352 354 359 361 363 130 365 367Used by:429
Symbol 369 GraphicUsed by:370
Symbol 370 MovieClipUses:369Used by:382
Symbol 371 GraphicUsed by:372
Symbol 372 MovieClipUses:371Used by:382
Symbol 373 GraphicUsed by:374
Symbol 374 MovieClipUses:373Used by:376 415
Symbol 375 GraphicUsed by:376
Symbol 376 MovieClipUses:374 375Used by:382
Symbol 377 GraphicUsed by:381
Symbol 378 GraphicUsed by:379
Symbol 379 MovieClipUses:378Used by:381 417
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:377 379 380Used by:382
Symbol 382 MovieClip {raisy_fla.CHIANS_113}Uses:144 370 372 376 381Used by:429
Symbol 383 GraphicUsed by:384
Symbol 384 MovieClipUses:383Used by:393
Symbol 385 GraphicUsed by:386
Symbol 386 MovieClipUses:385Used by:393
Symbol 387 GraphicUsed by:388
Symbol 388 MovieClipUses:387Used by:393
Symbol 389 GraphicUsed by:390
Symbol 390 MovieClipUses:389Used by:393
Symbol 391 GraphicUsed by:392
Symbol 392 MovieClipUses:391Used by:393
Symbol 393 MovieClip {raisy_fla.GLASS_120}Uses:384 386 388 390 392Used by:429
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClipUses:394Used by:402
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:396Used by:402
Symbol 398 GraphicUsed by:399
Symbol 399 MovieClipUses:398Used by:402
Symbol 400 GraphicUsed by:401
Symbol 401 MovieClipUses:400Used by:402
Symbol 402 MovieClip {raisy_fla.fans_126}Uses:395 151 397 399 401Used by:429
Symbol 403 GraphicUsed by:405
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:403 133 404Used by:418
Symbol 406 GraphicUsed by:409
Symbol 407 GraphicUsed by:408
Symbol 408 MovieClipUses:407Used by:409
Symbol 409 MovieClipUses:406 408Used by:418
Symbol 410 GraphicUsed by:411
Symbol 411 MovieClipUses:410Used by:418
Symbol 412 GraphicUsed by:413
Symbol 413 MovieClipUses:412Used by:418
Symbol 414 GraphicUsed by:415
Symbol 415 MovieClipUses:374 414Used by:418
Symbol 416 GraphicUsed by:417
Symbol 417 MovieClipUses:379 416Used by:418
Symbol 418 MovieClip {raisy_fla.EARRINGS_131}Uses:120 405 409 411 413 415 417Used by:429
Symbol 419 GraphicUsed by:420
Symbol 420 MovieClipUses:419Used by:428
Symbol 421 GraphicUsed by:422
Symbol 422 MovieClipUses:421Used by:425
Symbol 423 GraphicUsed by:425
Symbol 424 GraphicUsed by:425
Symbol 425 MovieClipUses:422 423 424Used by:428
Symbol 426 GraphicUsed by:427
Symbol 427 MovieClipUses:426Used by:428
Symbol 428 MovieClip {raisy_fla.caps_139}Uses:420 425 427 156Used by:429
Symbol 429 MovieClip {raisy_fla.doll_68}Uses:118 292 319 342 368 382 393 149 402 147 418 428Used by:Timeline
Symbol 430 GraphicUsed by:434
Symbol 431 TextUses:62Used by:434
Symbol 432 GraphicUsed by:434
Symbol 433 GraphicUsed by:434
Symbol 434 ButtonUses:430 431 432 433Used by:Timeline
Symbol 435 GraphicUsed by:437 442 443
Symbol 436 GraphicUsed by:437 442 443
Symbol 437 MovieClipUses:435 436Used by:442 443
Symbol 438 GraphicUsed by:439 442 443
Symbol 439 MovieClipUses:438Used by:442 443
Symbol 440 GraphicUsed by:441 442
Symbol 441 MovieClipUses:440Used by:442
Symbol 442 ButtonUses:437 439 441 435 436 438 440Used by:Timeline
Symbol 443 ButtonUses:437 439 435 436 438Used by:Timeline
Symbol 444 BitmapUsed by:445
Symbol 445 GraphicUses:444Used by:448
Symbol 446 GraphicUsed by:447
Symbol 447 MovieClipUses:446Used by:448
Symbol 448 MovieClipUses:445 447Used by:Timeline
Symbol 449 FontUsed by:450
Symbol 450 EditableTextUses:449Used by:Timeline
Symbol 451 GraphicUsed by:454
Symbol 452 GraphicUsed by:453
Symbol 453 MovieClipUses:452Used by:454
Symbol 454 MovieClipUses:451 453Used by:476 477
Symbol 455 GraphicUsed by:456
Symbol 456 MovieClipUses:455Used by:465 470
Symbol 457 GraphicUsed by:458
Symbol 458 MovieClipUses:457Used by:465 470
Symbol 459 GraphicUsed by:465
Symbol 460 GraphicUsed by:461 462 469
Symbol 461 MovieClipUses:460Used by:462 469
Symbol 462 MovieClipUses:460 461Used by:465
Symbol 463 GraphicUsed by:464
Symbol 464 MovieClipUses:463Used by:465 470
Symbol 465 MovieClipUses:456 458 459 462 464Used by:477
Symbol 466 GraphicUsed by:467
Symbol 467 MovieClipUses:466Used by:476
Symbol 468 GraphicUsed by:470
Symbol 469 MovieClipUses:460 461Used by:470
Symbol 470 MovieClipUses:456 458 468 469 464Used by:476
Symbol 471 GraphicUsed by:476
Symbol 472 GraphicUsed by:473
Symbol 473 MovieClipUses:472Used by:476
Symbol 474 GraphicUsed by:475
Symbol 475 MovieClipUses:474Used by:476
Symbol 476 MovieClipUses:454 467 470 471 473 475Used by:477
Symbol 477 MovieClip {raisy_fla.BGSS_152}Uses:82 84 454 465 476Used by:Timeline
Symbol 478 GraphicUsed by:490
Symbol 479 GraphicUsed by:490
Symbol 480 GraphicUsed by:490
Symbol 481 GraphicUsed by:490
Symbol 482 GraphicUsed by:490
Symbol 483 GraphicUsed by:490
Symbol 484 GraphicUsed by:490
Symbol 485 FontUsed by:486
Symbol 486 TextUses:485Used by:490
Symbol 487 GraphicUsed by:490
Symbol 488 GraphicUsed by:490
Symbol 489 GraphicUsed by:490
Symbol 490 MovieClip {raisy_fla.but1copy11_167}Uses:95 478 479 480 481 482 483 484 486 487 488 489Used by:Timeline
Symbol 491 GraphicUsed by:492
Symbol 492 MovieClipUses:491Used by:503
Symbol 493 GraphicUsed by:503
Symbol 494 GraphicUsed by:503
Symbol 495 GraphicUsed by:503
Symbol 496 GraphicUsed by:503
Symbol 497 GraphicUsed by:503
Symbol 498 GraphicUsed by:503
Symbol 499 GraphicUsed by:503
Symbol 500 GraphicUsed by:503
Symbol 501 GraphicUsed by:503
Symbol 502 GraphicUsed by:503
Symbol 503 MovieClip {raisy_fla.but1copy12_168}Uses:95 492 493 494 495 496 497 498 499 500 501 502Used by:Timeline
Symbol 504 GraphicUsed by:515
Symbol 505 GraphicUsed by:515
Symbol 506 GraphicUsed by:515
Symbol 507 GraphicUsed by:515
Symbol 508 GraphicUsed by:515
Symbol 509 GraphicUsed by:515
Symbol 510 GraphicUsed by:515
Symbol 511 GraphicUsed by:515
Symbol 512 GraphicUsed by:515
Symbol 513 GraphicUsed by:515
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClip {raisy_fla.but1copy13_170}Uses:95 504 505 506 507 508 509 510 511 512 513 514Used by:Timeline
Symbol 516 GraphicUsed by:517
Symbol 517 MovieClipUses:516Used by:523
Symbol 518 GraphicUsed by:519 545 550 564 571 575
Symbol 519 MovieClipUses:518Used by:522
Symbol 520 GraphicUsed by:521 546 550 571 575
Symbol 521 MovieClipUses:520Used by:522
Symbol 522 MovieClipUses:519 521Used by:523
Symbol 523 MovieClipUses:517 522Used by:537
Symbol 524 GraphicUsed by:537
Symbol 525 FontUsed by:526 529 531 533
Symbol 526 TextUses:525Used by:537
Symbol 527 FontUsed by:528
Symbol 528 TextUses:527Used by:537
Symbol 529 TextUses:525Used by:537
Symbol 530 GraphicUsed by:537
Symbol 531 TextUses:525Used by:537
Symbol 532 GraphicUsed by:537
Symbol 533 TextUses:525Used by:537
Symbol 534 GraphicUsed by:537
Symbol 535 GraphicUsed by:537
Symbol 536 GraphicUsed by:537
Symbol 537 MovieClip {raisy_fla.Symbol2DFASFcopy16T_171}Uses:523 524 526 528 529 530 531 532 533 534 535 536Used by:Timeline
Symbol 538 TextUses:88Used by:Timeline
Symbol 539 EditableTextUses:88Used by:Timeline
Symbol 540 GraphicUsed by:556
Symbol 541 GraphicUsed by:542 563
Symbol 542 MovieClipUses:541Used by:556 585
Symbol 543 GraphicUsed by:544 550 571 575
Symbol 544 MovieClipUses:543Used by:550 566
Symbol 545 MovieClipUses:518Used by:547
Symbol 546 MovieClipUses:520Used by:547 565
Symbol 547 MovieClipUses:545 546Used by:550
Symbol 548 GraphicUsed by:549
Symbol 549 ButtonUses:548Used by:550
Symbol 550 ButtonUses:544 547 549 543 518 520Used by:556 585
Symbol 551 TextUses:159Used by:556 585
Symbol 552 FontUsed by:553 580 581 582 583 584
Symbol 553 EditableTextUses:552Used by:556
Symbol 554 MovieClipUsed by:556 562
Symbol 555 MovieClipUsed by:556 562
Symbol 556 MovieClip {raisy_fla.hdhdfhf_emaiklY_178}Uses:540 542 550 551 553 554 555Used by:585
Symbol 557 GraphicUsed by:562
Symbol 558 MovieClipUsed by:562
Symbol 559 GraphicUsed by:560
Symbol 560 MovieClipUses:559Used by:561
Symbol 561 MovieClipUses:560Used by:562
Symbol 562 MovieClipUses:557 558 561 554 555Used by:585
Symbol 563 MovieClipUses:541Used by:585
Symbol 564 MovieClipUses:518Used by:565
Symbol 565 MovieClipUses:564 546Used by:566
Symbol 566 MovieClipUses:544 565Used by:568 571 573 575
Symbol 567 TextUses:159Used by:568
Symbol 568 MovieClipUses:566 567Used by:571
Symbol 569 TextUses:159Used by:571
Symbol 570 GraphicUsed by:571 575
Symbol 571 ButtonUses:568 566 569 570 543 518 520Used by:585
Symbol 572 TextUses:159Used by:573
Symbol 573 MovieClipUses:566 572Used by:575
Symbol 574 TextUses:159Used by:575
Symbol 575 ButtonUses:573 566 574 570 543 518 520Used by:585
Symbol 576 TextUses:159Used by:585
Symbol 577 TextUses:159Used by:585
Symbol 578 TextUses:159Used by:585
Symbol 579 TextUses:159Used by:585
Symbol 580 EditableTextUses:552Used by:585
Symbol 581 EditableTextUses:552Used by:585
Symbol 582 EditableTextUses:552Used by:585
Symbol 583 EditableTextUses:552Used by:585
Symbol 584 EditableTextUses:552Used by:585
Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177}Uses:556 562 542 563 571 575 576 577 578 579 551 550 580 581 582 583 584Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 26 MovieClip {raisy_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 28 EditableText
"percent"Frame 1Symbol 30 EditableText
"ball"Frame 1Symbol 78 MovieClip
"pl"Frame 2Symbol 108 MovieClip {raisy_fla.but1_25}
"buttonHolder"Frame 2Symbol 110 MovieClip
"dress_btn"Frame 3Symbol 171 MovieClip {raisy_fla.but1copy_54}
"tops_btn"Frame 3Symbol 182 MovieClip {raisy_fla.but1copy2_55}
"bottoms_btn"Frame 3Symbol 194 MovieClip {raisy_fla.but1copy3_56}
"studs_btn"Frame 3Symbol 206 MovieClip {raisy_fla.but1copy4_57}
"hair_btn"Frame 3Symbol 219 MovieClip {raisy_fla.but1copy5_58}
"chain_btn"Frame 3Symbol 231 MovieClip {raisy_fla.but1copy6_59}
"shoes_btn"Frame 3Symbol 243 MovieClip {raisy_fla.but1copy7_60}
"bags_btn"Frame 3Symbol 256 MovieClip {raisy_fla.but1copy8_61}
"buttons2"Frame 3Symbol 283 MovieClip {raisy_fla.buttons1_63}
"doll"Frame 3Symbol 429 MovieClip {raisy_fla.doll_68}
"logo_mc"Frame 3Symbol 434 Button
"sndon"Frame 3Symbol 442 Button
"sndoff"Frame 3Symbol 443 Button
"nextbtn"Frame 4Symbol 282 MovieClip {raisy_fla.but1copy10_66}
"t1"Frame 4Symbol 450 EditableText
"bgss"Frame 5Symbol 477 MovieClip {raisy_fla.BGSS_152}
"play_more"Frame 5Symbol 490 MovieClip {raisy_fla.but1copy11_167}
"email"Frame 5Symbol 503 MovieClip {raisy_fla.but1copy12_168}
"nex"Frame 5Symbol 515 MovieClip {raisy_fla.but1copy13_170}
"bg_btn"Frame 5Symbol 537 MovieClip {raisy_fla.Symbol2DFASFcopy16T_171}
"dolls"Frame 5Symbol 429 MovieClip {raisy_fla.doll_68}
"t2"Frame 5Symbol 539 EditableText
"popup"Frame 5Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177}
"masker"Symbol 26 MovieClip {raisy_fla.cbvdsfdsf_loader_7} Frame 1Symbol 14 MovieClip
"box"Symbol 95 MovieClip {raisy_fla.buttons_26} Frame 1Symbol 94 MovieClip
"but1"Symbol 108 MovieClip {raisy_fla.but1_25} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 171 MovieClip {raisy_fla.but1copy_54} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 182 MovieClip {raisy_fla.but1copy2_55} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 194 MovieClip {raisy_fla.but1copy3_56} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 206 MovieClip {raisy_fla.but1copy4_57} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 219 MovieClip {raisy_fla.but1copy5_58} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 231 MovieClip {raisy_fla.but1copy6_59} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 243 MovieClip {raisy_fla.but1copy7_60} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 256 MovieClip {raisy_fla.but1copy8_61} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 269 MovieClip {raisy_fla.but1copy9_64} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 282 MovieClip {raisy_fla.but1copy10_66} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"resetbtn"Symbol 283 MovieClip {raisy_fla.buttons1_63} Frame 1Symbol 269 MovieClip {raisy_fla.but1copy9_64}
"nextbtn1"Symbol 283 MovieClip {raisy_fla.buttons1_63} Frame 1Symbol 282 MovieClip {raisy_fla.but1copy10_66}
"shoes"Symbol 429 MovieClip {raisy_fla.doll_68} Frame 1Symbol 292 MovieClip {raisy_fla.SHOES_69}
"dress"Symbol 429 MovieClip {raisy_fla.doll_68} Frame 1Symbol 319 MovieClip {raisy_fla.DRESS_74}
"bottoms"Symbol 429 MovieClip {raisy_fla.doll_68} Frame 1Symbol 342 MovieClip {raisy_fla.BOTTOMS_88}
"tops"Symbol 429 MovieClip {raisy_fla.doll_68} Frame 1Symbol 368 MovieClip {raisy_fla.TOPS_100}
"chain"Symbol 429 MovieClip {raisy_fla.doll_68} Frame 1Symbol 382 MovieClip {raisy_fla.CHIANS_113}
"bags"Symbol 429 MovieClip {raisy_fla.doll_68} Frame 1Symbol 402 MovieClip {raisy_fla.fans_126}
"earring"Symbol 429 MovieClip {raisy_fla.doll_68} Frame 1Symbol 418 MovieClip {raisy_fla.EARRINGS_131}
"hair"Symbol 429 MovieClip {raisy_fla.doll_68} Frame 1Symbol 428 MovieClip {raisy_fla.caps_139}
"but1"Symbol 490 MovieClip {raisy_fla.but1copy11_167} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 503 MovieClip {raisy_fla.but1copy12_168} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"but1"Symbol 515 MovieClip {raisy_fla.but1copy13_170} Frame 1Symbol 95 MovieClip {raisy_fla.buttons_26}
"close"Symbol 556 MovieClip {raisy_fla.hdhdfhf_emaiklY_178} Frame 1Symbol 550 Button
"friendMail"Symbol 556 MovieClip {raisy_fla.hdhdfhf_emaiklY_178} Frame 1Symbol 553 EditableText
"friend1"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 556 MovieClip {raisy_fla.hdhdfhf_emaiklY_178}
"submit"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 571 Button
"addition"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 575 Button
"close"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 550 Button
"friend2"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 556 MovieClip {raisy_fla.hdhdfhf_emaiklY_178}
"friend3"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 556 MovieClip {raisy_fla.hdhdfhf_emaiklY_178}
"friend4"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 556 MovieClip {raisy_fla.hdhdfhf_emaiklY_178}
"nameDetail"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 580 EditableText
"mailDetail"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 581 EditableText
"messageDetail"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 582 EditableText
"friendName"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 583 EditableText
"friendMail"Symbol 585 MovieClip {raisy_fla.jgjyiy9_emaiklY_177} Frame 1Symbol 584 EditableText

Special Tags

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




http://swfchan.com/22/109142/info.shtml
Created: 14/3 -2019 17:38:58 Last modified: 14/3 -2019 17:38:58 Server time: 04/05 -2024 16:54:35