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

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

halloween-winx.swf

This is the info page for
Flash #112626

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


Text
%

GIRL'S BEST HANGOUT

1

2

3

P

E

Y

L

o

a

d

i

n

g

.

WINX

PLAY

Oyna

123PEPPY

Sonraki

Sıfırla

Enter Your Name

ENTER YOUR NAME

Voer Uw Naam

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

Inserisci il tuo nome

Geben Sie Ihr Name

Entrez votre nom

Adını gir

Ingrese su Nombre

Ange ditt namn

Imię i nazwisko

Digite seu nome

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

Spela Me

DESIGNED BY

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

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

YOUR FRIEND'S EMAIL :

YOUR FRIEND'S EMAIL :

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

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

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

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

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

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

ADD MORE

ADD MORE

ADD MORE

SEND

SEND

ActionScript [AS3]

Section 1
//Back (gs.easing.Back) package gs.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / _arg4); return (((((_arg3 * _arg1) * _arg1) * (((_arg5 + 1) * _arg1) - _arg5)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * ((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) - _arg5))) + _arg2)); }; _arg1 = (_arg1 - 2); _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 2)) + _arg2)); } } }//package gs.easing
Section 2
//AutoAlphaPlugin (gs.plugins.AutoAlphaPlugin) package gs.plugins { import gs.*; import flash.display.*; public class AutoAlphaPlugin extends TweenPlugin { protected var _tweenVisible:Boolean; protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function AutoAlphaPlugin(){ this.propName = "autoAlpha"; this.overwriteProps = ["alpha", "visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); if (((!((_target.visible == true))) && (_tweenVisible))){ _target.visible = true; }; } public function onCompleteTween():void{ if (((((_tweenVisible) && (!((_tween.vars.runBackwards == true))))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(!((_arg2 == 0))); _tweenVisible = true; addTween(_arg1, "alpha", _arg1.alpha, _arg2, "alpha"); return (true); } override public function killProps(_arg1:Object):void{ super.killProps(_arg1); _tweenVisible = !(Boolean(("visible" in _arg1))); } } }//package gs.plugins
Section 3
//EndArrayPlugin (gs.plugins.EndArrayPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class EndArrayPlugin extends TweenPlugin { protected var _info:Array; protected var _a:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function EndArrayPlugin(){ _info = []; super(); this.propName = "endArray"; this.overwriteProps = ["endArray"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:ArrayTweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _a[_local3.index] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _a[_local3.index] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function init(_arg1:Array, _arg2:Array):void{ var _local3:int; _a = _arg1; _local3 = (_arg2.length - 1); while (_local3 > -1) { if (((!((_arg1[_local3] == _arg2[_local3]))) && (!((_arg1[_local3] == null))))){ _info[_info.length] = new ArrayTweenInfo(_local3, _a[_local3], (_arg2[_local3] - _a[_local3])); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (false); }; init((_arg1 as Array), _arg2); return (true); } } }//package gs.plugins
Section 4
//FramePlugin (gs.plugins.FramePlugin) package gs.plugins { import gs.*; import flash.display.*; public class FramePlugin extends TweenPlugin { public var frame:int; protected var _target:MovieClip; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function FramePlugin(){ this.propName = "frame"; this.overwriteProps = ["frame"]; this.round = true; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.gotoAndStop(this.frame); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is MovieClip))) || (isNaN(_arg2)))){ return (false); }; _target = (_arg1 as MovieClip); this.frame = _target.currentFrame; addTween(this, "frame", this.frame, _arg2, "frame"); return (true); } } }//package gs.plugins
Section 5
//RemoveTintPlugin (gs.plugins.RemoveTintPlugin) package gs.plugins { public class RemoveTintPlugin extends TintPlugin { public static const VERSION:Number = 1.01; public static const API:Number = 1; public function RemoveTintPlugin(){ this.propName = "removeTint"; } } }//package gs.plugins
Section 6
//TintPlugin (gs.plugins.TintPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.geom.*; import gs.utils.tween.*; public class TintPlugin extends TweenPlugin { protected var _ct:ColorTransform; protected var _ignoreAlpha:Boolean; protected var _target:DisplayObject; public static const VERSION:Number = 1.1; public static const API:Number = 1; protected static var _props:Array = ["redMultiplier", "greenMultiplier", "blueMultiplier", "alphaMultiplier", "redOffset", "greenOffset", "blueOffset", "alphaOffset"]; public function TintPlugin(){ this.propName = "tint"; this.overwriteProps = ["tint"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:ColorTransform; updateTweens(_arg1); if (_ignoreAlpha){ _local2 = _target.transform.colorTransform; _ct.alphaMultiplier = _local2.alphaMultiplier; _ct.alphaOffset = _local2.alphaOffset; }; _target.transform.colorTransform = _ct; } public function init(_arg1:DisplayObject, _arg2:ColorTransform):void{ var _local3:int; var _local4:String; _target = _arg1; _ct = _target.transform.colorTransform; _local3 = (_props.length - 1); while (_local3 > -1) { _local4 = _props[_local3]; if (_ct[_local4] != _arg2[_local4]){ _tweens[_tweens.length] = new TweenInfo(_ct, _local4, _ct[_local4], (_arg2[_local4] - _ct[_local4]), "tint", false); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:ColorTransform; if (!(_arg1 is DisplayObject)){ return (false); }; _local4 = new ColorTransform(); if (((!((_arg2 == null))) && (!((_arg3.exposedVars.removeTint == true))))){ _local4.color = uint(_arg2); }; _ignoreAlpha = true; init((_arg1 as DisplayObject), _local4); return (true); } } }//package gs.plugins
Section 7
//TweenPlugin (gs.plugins.TweenPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class TweenPlugin { public var overwriteProps:Array; protected var _tweens:Array; public var round:Boolean; public var onComplete:Function; public var propName:String; protected var _changeFactor:Number;// = 0 public static const VERSION:Number = 1.03; public static const API:Number = 1; public function TweenPlugin(){ _tweens = []; _changeFactor = 0; super(); } protected function updateTweens(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _local3.target[_local3.property] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _changeFactor = _arg1; } protected function addTween(_arg1:Object, _arg2:String, _arg3:Number, _arg4, _arg5:String=null):void{ var _local6:Number; if (_arg4 != null){ _local6 = ((typeof(_arg4))=="number") ? (_arg4 - _arg3) : Number(_arg4); if (_local6 != 0){ _tweens[_tweens.length] = new TweenInfo(_arg1, _arg2, _arg3, _local6, ((_arg5) || (_arg2)), false); }; }; } public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (this.overwriteProps.length - 1); while (_local2 > -1) { if ((this.overwriteProps[_local2] in _arg1)){ this.overwriteProps.splice(_local2, 1); }; _local2--; }; _local2 = (_tweens.length - 1); while (_local2 > -1) { if ((_tweens[_local2].name in _arg1)){ _tweens.splice(_local2, 1); }; _local2--; }; } public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ addTween(_arg1, this.propName, _arg1[this.propName], _arg2, this.propName); return (true); } public function get changeFactor():Number{ return (_changeFactor); } public static function activate(_arg1:Array):Boolean{ var _local2:int; var _local3:Object; _local2 = (_arg1.length - 1); while (_local2 > -1) { _local3 = new (_arg1[_local2]); TweenLite.plugins[_local3.propName] = _arg1[_local2]; _local2--; }; return (true); } } }//package gs.plugins
Section 8
//VisiblePlugin (gs.plugins.VisiblePlugin) package gs.plugins { import gs.*; import flash.display.*; public class VisiblePlugin extends TweenPlugin { protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function VisiblePlugin(){ this.propName = "visible"; this.overwriteProps = ["visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ if (_target.visible != true){ _target.visible = true; }; } public function onCompleteTween():void{ if (((!((_tween.vars.runBackwards == true))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(_arg2); return (true); } } }//package gs.plugins
Section 9
//VolumePlugin (gs.plugins.VolumePlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.media.*; public class VolumePlugin extends TweenPlugin { protected var _st:SoundTransform; protected var _target:Object; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function VolumePlugin(){ this.propName = "volume"; this.overwriteProps = ["volume"]; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.soundTransform = _st; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((isNaN(_arg2)) || (!(_arg1.hasOwnProperty("soundTransform"))))){ return (false); }; _target = _arg1; _st = _target.soundTransform; addTween(_st, "volume", _st.volume, _arg2, "volume"); return (true); } } }//package gs.plugins
Section 10
//ArrayTweenInfo (gs.utils.tween.ArrayTweenInfo) package gs.utils.tween { public class ArrayTweenInfo { public var change:Number; public var index:uint; public var start:Number; public function ArrayTweenInfo(_arg1:uint, _arg2:Number, _arg3:Number){ this.index = _arg1; this.start = _arg2; this.change = _arg3; } } }//package gs.utils.tween
Section 11
//TweenInfo (gs.utils.tween.TweenInfo) package gs.utils.tween { public class TweenInfo { public var start:Number; public var name:String; public var change:Number; public var target:Object; public var property:String; public var isPlugin:Boolean; public function TweenInfo(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:Boolean){ this.target = _arg1; this.property = _arg2; this.start = _arg3; this.change = _arg4; this.name = _arg5; this.isPlugin = _arg6; } } }//package gs.utils.tween
Section 12
//TweenLite (gs.TweenLite) package gs { import flash.events.*; import flash.display.*; import gs.utils.tween.*; import gs.plugins.*; import flash.utils.*; public class TweenLite { public var delay:Number; protected var _hasUpdate:Boolean; protected var _hasPlugins:Boolean; public var started:Boolean; public var initted:Boolean; public var active:Boolean; public var startTime:Number; public var target:Object; public var duration:Number; public var gc:Boolean; public var vars:Object; public var ease:Function; public var tweens:Array; public var exposedVars:Object; public var combinedTimeScale:Number; public var initTime:Number; public static const version:Number = 10.09; private static var _timer:Timer = new Timer(2000); public static var defaultEase:Function = TweenLite.easeOut; public static var plugins:Object = {}; public static var currentTime:uint; public static var masterList:Dictionary = new Dictionary(false); protected static var _reservedProps:Object = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, roundProps:1, onStart:1, onStartParams:1, persist:1, renderOnStart:1, proxiedEase:1, easeParams:1, yoyo:1, loop:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, orientToBezier:1, timeScale:1}; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; public static var timingSprite:Sprite = new Sprite(); public static var overwriteManager:Object; private static var _tlInitted:Boolean; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ var _local4:int; super(); if (_arg1 == null){ return; }; if (!_tlInitted){ TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin]); currentTime = getTimer(); timingSprite.addEventListener(Event.ENTER_FRAME, updateAll, false, 0, true); if (overwriteManager == null){ overwriteManager = {mode:1, enabled:false}; }; _timer.addEventListener("timer", killGarbage, false, 0, true); _timer.start(); _tlInitted = true; }; this.vars = _arg3; this.duration = ((_arg2) || (0.001)); this.delay = ((_arg3.delay) || (0)); this.combinedTimeScale = ((_arg3.timeScale) || (1)); this.active = Boolean((((_arg2 == 0)) && ((this.delay == 0)))); this.target = _arg1; if (typeof(this.vars.ease) != "function"){ this.vars.ease = defaultEase; }; if (this.vars.easeParams != null){ this.vars.proxiedEase = this.vars.ease; this.vars.ease = easeProxy; }; this.ease = this.vars.ease; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedVars : this.vars; this.tweens = []; this.initTime = currentTime; this.startTime = (this.initTime + (this.delay * 1000)); _local4 = ((((_arg3.overwrite == undefined)) || (((!(overwriteManager.enabled)) && ((_arg3.overwrite > 1)))))) ? overwriteManager.mode : int(_arg3.overwrite); if (((!((_arg1 in masterList))) || ((_local4 == 1)))){ masterList[_arg1] = [this]; } else { masterList[_arg1].push(this); }; if ((((((this.vars.runBackwards == true)) && (!((this.vars.renderOnStart == true))))) || (this.active))){ initTweenVals(); if (this.active){ render((this.startTime + 1)); } else { render(this.startTime); }; if (((((!((this.exposedVars.visible == null))) && ((this.vars.runBackwards == true)))) && ((this.target is DisplayObject)))){ this.target.visible = this.exposedVars.visible; }; }; } public function set enabled(_arg1:Boolean):void{ var _local2:Array; var _local3:Boolean; var _local4:int; if (_arg1){ if (!(this.target in masterList)){ masterList[this.target] = [this]; } else { _local2 = masterList[this.target]; _local4 = (_local2.length - 1); while (_local4 > -1) { if (_local2[_local4] == this){ _local3 = true; break; }; _local4--; }; if (!_local3){ _local2[_local2.length] = this; }; }; }; this.gc = (_arg1) ? false : true; if (this.gc){ this.active = false; } else { this.active = this.started; }; } public function clear():void{ this.tweens = []; this.vars = (this.exposedVars = {ease:this.vars.ease}); _hasUpdate = false; } public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = ((_arg1 - this.startTime) * 0.001); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } public function activate():void{ this.started = (this.active = true); if (!this.initted){ initTweenVals(); }; if (this.vars.onStart != null){ this.vars.onStart.apply(null, this.vars.onStartParams); }; if (this.duration == 0.001){ this.startTime = (this.startTime - 1); }; } public function get enabled():Boolean{ return ((this.gc) ? false : true); } public function initTweenVals():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:TweenInfo; if (((!((this.exposedVars.timeScale == undefined))) && ((this.target is TweenLite)))){ this.tweens[this.tweens.length] = new TweenInfo(this.target, "timeScale", this.target.timeScale, (this.exposedVars.timeScale - this.target.timeScale), "timeScale", false); }; for (_local1 in this.exposedVars) { if ((_local1 in _reservedProps)){ } else { if ((_local1 in plugins)){ _local3 = new (plugins[_local1]); if (_local3.onInitTween(this.target, this.exposedVars[_local1], this) == false){ this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); } else { this.tweens[this.tweens.length] = new TweenInfo(_local3, "changeFactor", 0, 1, ((_local3.overwriteProps.length)==1) ? _local3.overwriteProps[0] : "_MULTIPLE_", true); _hasPlugins = true; }; } else { this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); }; }; }; if (this.vars.runBackwards == true){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local4 = this.tweens[_local2]; this.tweens[_local2].start = (_local4.start + _local4.change); _local4.change = -(_local4.change); _local2--; }; }; if (this.vars.onUpdate != null){ _hasUpdate = true; }; if (((TweenLite.overwriteManager.enabled) && ((this.target in masterList)))){ overwriteManager.manageOverwrites(this, masterList[this.target]); }; this.initted = true; } protected function easeProxy(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams))); } public function killVars(_arg1:Object):void{ if (overwriteManager.enabled){ overwriteManager.killVars(_arg1, this.exposedVars, this.tweens); }; } public function complete(_arg1:Boolean=false):void{ var _local2:int; if (!_arg1){ if (!this.initted){ initTweenVals(); }; this.startTime = (currentTime - ((this.duration * 1000) / this.combinedTimeScale)); render(currentTime); return; }; if (_hasPlugins){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { if (((this.tweens[_local2].isPlugin) && (!((this.tweens[_local2].target.onComplete == null))))){ this.tweens[_local2].target.onComplete(); }; _local2--; }; }; if (this.vars.persist != true){ this.enabled = false; }; if (this.vars.onComplete != null){ this.vars.onComplete.apply(null, this.vars.onCompleteParams); }; } public static function updateAll(_arg1:Event=null):void{ var _local2:uint; var _local3:Dictionary; var _local4:Array; var _local5:int; var _local6:TweenLite; _local2 = (currentTime = getTimer()); _local3 = masterList; for each (_local4 in _local3) { _local5 = (_local4.length - 1); while (_local5 > -1) { _local6 = _local4[_local5]; if (_local6.active){ _local6.render(_local2); } else { if (_local6.gc){ _local4.splice(_local5, 1); } else { if (_local2 >= _local6.startTime){ _local6.activate(); _local6.render(_local2); }; }; }; _local5--; }; }; } public static function removeTween(_arg1:TweenLite, _arg2:Boolean=true):void{ if (_arg1 != null){ if (_arg2){ _arg1.clear(); }; _arg1.enabled = false; }; } public static function killTweensOf(_arg1:Object=null, _arg2:Boolean=false):void{ var _local3:Array; var _local4:int; var _local5:TweenLite; if (((!((_arg1 == null))) && ((_arg1 in masterList)))){ _local3 = masterList[_arg1]; _local4 = (_local3.length - 1); while (_local4 > -1) { _local5 = _local3[_local4]; if (((_arg2) && (!(_local5.gc)))){ _local5.complete(false); }; _local5.clear(); _local4--; }; delete masterList[_arg1]; }; } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ _arg3.runBackwards = true; return (new TweenLite(_arg1, _arg2, _arg3)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } protected static function killGarbage(_arg1:TimerEvent):void{ var _local2:Dictionary; var _local3:Object; _local2 = masterList; for (_local3 in _local2) { if (_local2[_local3].length == 0){ delete _local2[_local3]; }; }; } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, overwrite:0})); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package gs
Section 13
//bagspalette_189 (halloween_fla.bagspalette_189) package halloween_fla { import flash.display.*; public dynamic class bagspalette_189 extends MovieClip { public var e2:MovieClip; public var e5:MovieClip; public var e3:MovieClip; public var e4:MovieClip; public var e1:MovieClip; } }//package halloween_fla
Section 14
//bottoms_120 (halloween_fla.bottoms_120) package halloween_fla { import flash.display.*; public dynamic class bottoms_120 extends MovieClip { public function bottoms_120(){ addFrameScript(0, frame1, 12, frame13); } function frame1(){ stop(); } function frame13(){ gotoAndStop(2); } } }//package halloween_fla
Section 15
//bottomspalette_186 (halloween_fla.bottomspalette_186) package halloween_fla { import flash.display.*; public dynamic class bottomspalette_186 extends MovieClip { public var b10:MovieClip; public var b2:MovieClip; public var b4:MovieClip; public var b9:MovieClip; public var b5:MovieClip; public var b6:MovieClip; public var b7:MovieClip; public var b1:MovieClip; public var b3:MovieClip; public var b8:MovieClip; public var b11:MovieClip; } }//package halloween_fla
Section 16
//caps_175 (halloween_fla.caps_175) package halloween_fla { import flash.display.*; public dynamic class caps_175 extends MovieClip { public function caps_175(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package halloween_fla
Section 17
//cbvdsfdsf_loader_7 (halloween_fla.cbvdsfdsf_loader_7) package halloween_fla { import flash.display.*; public dynamic class cbvdsfdsf_loader_7 extends MovieClip { public var masker:MovieClip; } }//package halloween_fla
Section 18
//chainpalette_188 (halloween_fla.chainpalette_188) package halloween_fla { import flash.display.*; public dynamic class chainpalette_188 extends MovieClip { public var c1:MovieClip; public var c3:MovieClip; public var c4:MovieClip; public var c5:MovieClip; public var c2:MovieClip; } }//package halloween_fla
Section 19
//chains_165 (halloween_fla.chains_165) package halloween_fla { import flash.display.*; public dynamic class chains_165 extends MovieClip { public function chains_165(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package halloween_fla
Section 20
//dolls_72 (halloween_fla.dolls_72) package halloween_fla { import flash.display.*; public dynamic class dolls_72 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 halloween_fla
Section 21
//dollscopy_33 (halloween_fla.dollscopy_33) package halloween_fla { import flash.display.*; public dynamic class dollscopy_33 extends MovieClip { public var hair:MovieClip; } }//package halloween_fla
Section 22
//dress_89 (halloween_fla.dress_89) package halloween_fla { import flash.display.*; public dynamic class dress_89 extends MovieClip { public function dress_89(){ addFrameScript(0, frame1, 16, frame17); } function frame1(){ stop(); } function frame17(){ gotoAndStop(2); } } }//package halloween_fla
Section 23
//dresspalette_185 (halloween_fla.dresspalette_185) package halloween_fla { import flash.display.*; public dynamic class dresspalette_185 extends MovieClip { public var d4:MovieClip; public var d8:MovieClip; public var d2:MovieClip; public var d5:MovieClip; public var d6:MovieClip; public var d7:MovieClip; public var d9:MovieClip; public var d3:MovieClip; public var d10:MovieClip; public var d11:MovieClip; public var d14:MovieClip; public var d13:MovieClip; public var d15:MovieClip; public var d12:MovieClip; public var d1:MovieClip; } }//package halloween_fla
Section 24
//earringpalette_64 (halloween_fla.earringpalette_64) package halloween_fla { import flash.display.*; public dynamic class earringpalette_64 extends MovieClip { public var b2:MovieClip; public var b1:MovieClip; public var b3:MovieClip; } }//package halloween_fla
Section 25
//hairpalette_65 (halloween_fla.hairpalette_65) package halloween_fla { import flash.display.*; public dynamic class hairpalette_65 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h3:MovieClip; } }//package halloween_fla
Section 26
//hairs_44 (halloween_fla.hairs_44) package halloween_fla { import flash.display.*; public dynamic class hairs_44 extends MovieClip { public function hairs_44(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package halloween_fla
Section 27
//MainTimeline (halloween_fla.MainTimeline) package halloween_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import gs.easing.*; import flash.media.*; import flash.text.*; import flash.ui.*; import flash.utils.*; import flash.net.*; import flash.system.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.printing.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var girlDoll:String; public var t2:TextField; public var ba:Number; public var t1:TextField; public var hairpalette:MovieClip; public var bo:Number; public var topsf:Number; public var dresspalette:MovieClip; public var ch:Number; public var preloader:MovieClip; public var to:Number; public var dolls:MovieClip; public var playmore:MovieClip; public var nextbtn:MovieClip; public var shoespalette:MovieClip; public var chainpalette:MovieClip; public var percentage:Number; public var contestMenu:ContextMenu; public var popup:MovieClip; public var bagspalette:MovieClip; public var logo_mc:SimpleButton; public var shi:Number; public var girldollArray:Array; public var BitsLoaded:TextField; public var queCount:uint; public var buttons1:MovieClip; public var ga:Number; public var mailArray:Array; public var ent:MovieClip; public var ha:Number; public var topspalette:MovieClip; public var bullet:backscore; public var sndon:SimpleButton; public var dressf:Number; public var earringpalette:MovieClip; public var doll:MovieClip; public var sndoff:SimpleButton; public var dre:Number; public var bots:Number; public var email:MovieClip; public var nex:MovieClip; public var bulletChannel:SoundChannel; public var contextmenuItem:ContextMenuItem; public var bottomspalette:MovieClip; public var pl:MovieClip; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function result(_arg1:Event):void{ if (t1.text == ""){ nextbtn.visible = false; } else { nextbtn.visible = true; }; } public function bagsfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var bagss:Class; var bags:Object; var putbags:Function; var e1 = _arg1; putbags = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (bags.hitTestObject(doll)){ doll.bags.gotoAndStop((_local3 + 1)); Glob.bags = doll.bags.currentFrame; }; removeChild(DisplayObject(bags)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); bagss = (getDefinitionByName(("bags" + t)) as Class); bags = new (bagss); bags.name = ("b" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(bags)); bags.x = mouseX; bags.y = mouseY; bags.startDrag(true); bags.addEventListener(MouseEvent.MOUSE_UP, putbags); } public function sets(_arg1:Event){ if (dressf == 1){ buttons1.nextbtn.visible = true; } else { if ((((topsf == 1)) && ((bots == 1)))){ buttons1.nextbtn.visible = true; } else { buttons1.nextbtn.visible = false; }; }; } function frame3(){ MochiBot.track(this, "bbabf2b8"); stop(); Glob.dress = 0; Glob.tops = 0; Glob.bottoms = 0; Glob.chain = 0; Glob.bags = 0; Glob.shoes = 0; Glob.earring = 0; Glob.hair = 0; dressf = 0; topsf = 0; bots = 0; doll.hair.gotoAndStop(1); doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.bags.gotoAndStop(1); bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndon.addEventListener(MouseEvent.CLICK, sndst); stage.addEventListener(Event.ENTER_FRAME, sets); dre = 0; while (dre <= (dresspalette.numChildren - 1)) { dresspalette.getChildAt(dre).addEventListener(MouseEvent.ROLL_OVER, enabl); dresspalette.getChildAt(dre).addEventListener(MouseEvent.MOUSE_DOWN, dressfunction); dre++; }; to = 0; while (to <= (topspalette.numChildren - 1)) { topspalette.getChildAt(to).addEventListener(MouseEvent.ROLL_OVER, enabl); topspalette.getChildAt(to).addEventListener(MouseEvent.MOUSE_DOWN, topsfunction); to++; }; bo = 0; while (bo <= (bottomspalette.numChildren - 1)) { bottomspalette.getChildAt(bo).addEventListener(MouseEvent.ROLL_OVER, enabl); bottomspalette.getChildAt(bo).addEventListener(MouseEvent.MOUSE_DOWN, bottomsfunction); bo++; }; shi = 0; while (shi <= (shoespalette.numChildren - 1)) { shoespalette.getChildAt(shi).addEventListener(MouseEvent.ROLL_OVER, enabl); shoespalette.getChildAt(shi).addEventListener(MouseEvent.MOUSE_DOWN, shoesfunction); shi++; }; ch = 0; while (ch <= (chainpalette.numChildren - 1)) { chainpalette.getChildAt(ch).addEventListener(MouseEvent.ROLL_OVER, enabl); chainpalette.getChildAt(ch).addEventListener(MouseEvent.MOUSE_DOWN, chainfunction); ch++; }; ba = 0; while (ba <= (earringpalette.numChildren - 1)) { earringpalette.getChildAt(ba).addEventListener(MouseEvent.ROLL_OVER, enabl); earringpalette.getChildAt(ba).addEventListener(MouseEvent.MOUSE_DOWN, earringfunction); ba++; }; ga = 0; while (ga <= (bagspalette.numChildren - 1)) { bagspalette.getChildAt(ga).addEventListener(MouseEvent.ROLL_OVER, enabl); bagspalette.getChildAt(ga).addEventListener(MouseEvent.MOUSE_DOWN, bagsfunction); ga++; }; ha = 0; while (ha <= (hairpalette.numChildren - 1)) { hairpalette.getChildAt(ha).addEventListener(MouseEvent.ROLL_OVER, enabl); hairpalette.getChildAt(ha).addEventListener(MouseEvent.MOUSE_DOWN, hairfunction); ha++; }; buttons1.resetbtn.addEventListener(MouseEvent.CLICK, res); buttons1.resetbtn.gotoAndStop(Glob.temp); buttons1.resetbtn.buttonMode = true; buttons1.nextbtn.gotoAndStop(Glob.temp); buttons1.nextbtn.addEventListener(MouseEvent.CLICK, nx); buttons1.nextbtn.buttonMode = true; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); }; buttons1.nextbtn.addEventListener(MouseEvent.ROLL_OVER, rollover1); buttons1.nextbtn.addEventListener(MouseEvent.ROLL_OUT, rollout1); buttons1.resetbtn.addEventListener(MouseEvent.ROLL_OVER, rollover1); buttons1.resetbtn.addEventListener(MouseEvent.ROLL_OUT, rollout1); } function frame4(){ stop(); t1.text = ""; t1.restrict = "A-Z"; nextbtn.gotoAndStop(Glob.temp); nextbtn.buttonMode = true; ent.gotoAndStop(Glob.temp); stage.addEventListener(Event.ENTER_FRAME, result); nextbtn.addEventListener(MouseEvent.CLICK, nextbtns); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link1); }; } public function earringfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var earrings:Class; var earring:Object; var putearring:Function; var e1 = _arg1; putearring = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (earring.hitTestObject(doll)){ doll.earring.gotoAndStop((_local3 + 1)); Glob.earring = doll.earring.currentFrame; }; removeChild(DisplayObject(earring)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); earrings = (getDefinitionByName(("earring" + t)) as Class); earring = new (earrings); earring.name = ("s" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(earring)); earring.x = mouseX; earring.y = mouseY; earring.startDrag(true); earring.addEventListener(MouseEvent.MOUSE_UP, putearring); } function frame5(){ stop(); if (((this.loaderInfo.parameters.bg) && ((Glob.playback == false)))){ email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); t2.text = this.loaderInfo.parameters.name; email.visible = true; email.tabEnabled = false; girldollArray = this.loaderInfo.parameters.girldoll.split(""); if (this.loaderInfo.parameters.bg == 1){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop(Number(girldollArray[2])); dolls.chain.gotoAndStop(Number(girldollArray[3])); dolls.shoes.gotoAndStop(Number(girldollArray[4])); dolls.hair.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.bags.gotoAndStop(Number(girldollArray[7])); } else { if (this.loaderInfo.parameters.bg == 2){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop((Number(girldollArray[3]).toString() + Number(girldollArray[4]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[5])); dolls.shoes.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.earring.gotoAndStop(Number(girldollArray[8])); dolls.bags.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.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); } else { if (this.loaderInfo.parameters.bg == 4){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); } else { if (this.loaderInfo.parameters.bg == 5){ dolls.dress.gotoAndStop((Number(girldollArray[0]).toString() + Number(girldollArray[1]).toString())); dolls.tops.gotoAndStop(Number(girldollArray[2]).toString()); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); }; }; }; }; }; nex.addEventListener(MouseEvent.CLICK, plas1); } else { if (Glob.playback == true){ t2.text = Glob.tex; email.visible = true; email.buttonMode = true; email.tabEnabled = false; dolls.chain.gotoAndStop(Glob.chain); dolls.shoes.gotoAndStop(Glob.shoes); dolls.dress.gotoAndStop(Glob.dress); dolls.tops.gotoAndStop(Glob.tops); dolls.bottoms.gotoAndStop(Glob.bottoms); dolls.hair.gotoAndStop(Glob.hair); dolls.earring.gotoAndStop(Glob.earring); dolls.bags.gotoAndStop(Glob.bags); nex.addEventListener(MouseEvent.CLICK, plas); email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); }; }; playmore.buttonMode = true; nex.buttonMode = true; email.gotoAndStop(Glob.temp); nex.gotoAndStop(Glob.temp); playmore.gotoAndStop(Glob.temp); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; playmore.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link5); }; playmore.addEventListener(MouseEvent.CLICK, mor); queCount = 0; mailArray = new Array(popup.friend1, popup.friend2, popup.friend3, popup.friend4); girlDoll = (((((((dolls.dress.currentFrame.toString() + dolls.tops.currentFrame.toString()) + dolls.bottoms.currentFrame.toString()) + dolls.chain.currentFrame.toString()) + dolls.shoes.currentFrame.toString()) + dolls.hair.currentFrame.toString()) + dolls.earring.currentFrame.toString()) + dolls.bags.currentFrame.toString()); trace(girlDoll); playmore.addEventListener(MouseEvent.ROLL_OVER, rollover5); playmore.addEventListener(MouseEvent.ROLL_OUT, rollout5); nex.addEventListener(MouseEvent.ROLL_OVER, rollover5); nex.addEventListener(MouseEvent.ROLL_OUT, rollout5); email.addEventListener(MouseEvent.ROLL_OVER, rollover6); email.addEventListener(MouseEvent.ROLL_OUT, rollout6); } function frame1(){ stop(); contestMenu = new ContextMenu(); contestMenu.hideBuiltInItems(); contextmenuItem = new ContextMenuItem("www.123peppy.com"); contextmenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, Site); contestMenu.customItems.push(contextmenuItem); this.contextMenu = contestMenu; percentage = 0; stage.addEventListener(Event.ENTER_FRAME, BeeMoving); } function frame2(){ stop(); Glob.playback = true; if (bulletChannel){ bulletChannel.stop(); }; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); switch (this.loaderInfo.parameters.lang){ case "fr": Glob.temp = 6; pl.gotoAndStop(Glob.temp); break; case "de": Glob.temp = 5; pl.gotoAndStop(Glob.temp); break; case "it": Glob.temp = 4; pl.gotoAndStop(Glob.temp); break; case "pl": Glob.temp = 10; pl.gotoAndStop(Glob.temp); break; case "ru": Glob.temp = 3; pl.gotoAndStop(Glob.temp); break; case "tr": Glob.temp = 7; pl.gotoAndStop(Glob.temp); break; case "sv": Glob.temp = 8; pl.gotoAndStop(Glob.temp); break; case "pt-br": Glob.temp = 11; pl.gotoAndStop(Glob.temp); break; case "es": Glob.temp = 9; pl.gotoAndStop(Glob.temp); break; case "nl": Glob.temp = 2; pl.gotoAndStop(Glob.temp); break; default: Glob.temp = 1; pl.gotoAndStop(Glob.temp); break; }; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } public function rollout5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function rollout6(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function res(_arg1:MouseEvent):void{ doll.dress.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.hair.gotoAndStop(1); doll.bags.gotoAndStop(1); dressf = 0; topsf = 0; bots = 0; Glob.dress = 0; Glob.tops = 0; Glob.bottoms = 0; Glob.chain = 0; Glob.bags = 0; Glob.shoes = 0; Glob.earring = 0; Glob.hair = 0; } public function rollout1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } 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 shoesfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var shoess:Class; var shoes:Object; var putshoes:Function; var e1 = _arg1; putshoes = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (shoes.hitTestObject(doll)){ doll.shoes.gotoAndStop((_local3 + 1)); Glob.shoes = doll.shoes.currentFrame; }; removeChild(DisplayObject(shoes)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); shoess = (getDefinitionByName(("shoe" + t)) as Class); shoes = new (shoess); shoes.name = ("s" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(shoes)); shoes.x = mouseX; shoes.y = mouseY; shoes.startDrag(true); shoes.addEventListener(MouseEvent.MOUSE_UP, putshoes); } public function hideMailBox(_arg1:MouseEvent):void{ var event = _arg1; email.mouseEnabled = true; 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 mor(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function showExtra(_arg1:MouseEvent):void{ if (queCount < 4){ mailArray[queCount].visible = true; queCount++; trace(queCount); } else { if (queCount == 4){ queCount = 0; mailArray[queCount].visible = true; queCount++; }; }; } public function enabl(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; } public function nextbtns(_arg1:MouseEvent):void{ Glob.tex = t1.text; trace(Glob.tex); nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function dressfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var dress:Class; var dres:Object; var putdress:Function; var e1 = _arg1; putdress = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); removeChild(DisplayObject(dres)); if (dres.hitTestObject(doll)){ doll.dress.gotoAndStop((_local3 + 1)); Glob.dress = doll.dress.currentFrame; Glob.tops = 0; Glob.bottoms = 0; doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); dressf = 1; topsf = 0; bots = 0; }; }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); dress = (getDefinitionByName(("dress" + t)) as Class); dres = new (dress); dres.name = ("d" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(dres)); dres.x = mouseX; dres.y = mouseY; dres.startDrag(true); dres.addEventListener(MouseEvent.MOUSE_UP, putdress); } public function callMail(_arg1:MouseEvent):void{ var request:URLRequest; var variables:URLVariables; var event = _arg1; email.mouseEnabled = true; request = new URLRequest("http://facefun.123peppy.com/gamemail.php"); request.method = URLRequestMethod.POST; variables = new URLVariables(); variables.nameDetail = popup.nameDetail.text; variables.mailDetail = popup.mailDetail.text; variables.messageDetail = popup.messageDetail.text; variables.friendName = popup.friendName.text; variables.friendMail = popup.friendMail.text; variables.gamename = "Halloween Winx"; 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/halloween-winx"; break; case "de": variables.path = "http://www.123peppy.com/de/play/halloween-winx"; break; case "it": variables.path = "http://www.123peppy.com/it/play/halloween-winx"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/halloween-winx"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/хэллоуин-winx"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/cadılar-bayramı-winx"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/allhelgonaafton-winx"; break; case "pt-br": variables.path = "http://www.123peppy.com/pt-br/play/dia-das-bruxas-winx"; break; case "es": variables.path = "http://www.123peppy.com/es/play/halloween-winx"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/halloween-winx"; break; default: variables.path = "http://www.123peppy.com/play/halloween-winx"; 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; }; }; }; }; trace(variables.bg); request.data = variables; sendToURL(request); TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } public function BeeMoving(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local2 = (mouseX - ball.x); _local3 = (mouseY - ball.y); ball.x = (ball.x + (_local2 * 0.2)); ball.y = (ball.y + (_local3 * 0.2)); _local4 = loaderInfo.bytesLoaded; _local5 = loaderInfo.bytesTotal; percentage = Math.round(((_local4 / _local5) * 100)); 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 Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link5(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function rollover5(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function rollover6(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.7; _arg1.currentTarget.scaleY = 0.7; } public function bottomsfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var bottomss:Class; var bottoms:Object; var putbottoms:Function; var e1 = _arg1; putbottoms = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); removeChild(DisplayObject(bottoms)); if (bottoms.hitTestObject(doll)){ doll.bottoms.gotoAndStop((_local3 + 1)); Glob.bottoms = doll.bottoms.currentFrame; doll.dress.gotoAndStop(1); Glob.dress = 0; dressf = 0; bots = 1; }; }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); bottomss = (getDefinitionByName(("bottoms" + t)) as Class); bottoms = new (bottomss); bottoms.name = ("t" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(bottoms)); bottoms.x = mouseX; bottoms.y = mouseY; bottoms.startDrag(true); bottoms.addEventListener(MouseEvent.MOUSE_UP, putbottoms); } public function sndst(_arg1:MouseEvent):void{ bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.visible = true; sndon.visible = false; } public function rollover1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function chainfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var chains:Class; var chain:Object; var putchain:Function; var e1 = _arg1; putchain = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (chain.hitTestObject(doll)){ doll.chain.gotoAndStop((_local3 + 1)); Glob.chain = doll.chain.currentFrame; }; removeChild(DisplayObject(chain)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); chains = (getDefinitionByName(("chain" + t)) as Class); chain = new (chains); chain.name = ("s" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(chain)); chain.x = mouseX; chain.y = mouseY; chain.startDrag(true); chain.addEventListener(MouseEvent.MOUSE_UP, putchain); } public function link1(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.8; _arg1.currentTarget.scaleY = 0.8; } public function hairfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var hairs:Class; var hair:Object; var puthair:Function; var e1 = _arg1; puthair = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); if (hair.hitTestObject(doll)){ doll.hair.gotoAndStop(_local3); Glob.hair = doll.hair.currentFrame; }; removeChild(DisplayObject(hair)); }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); hairs = (getDefinitionByName(("hair" + t)) as Class); hair = new (hairs); hair.name = ("s" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(hair)); hair.x = mouseX; hair.y = mouseY; hair.startDrag(true); hair.addEventListener(MouseEvent.MOUSE_UP, puthair); } public function topsfunction(_arg1:MouseEvent):void{ var e:*; var t:Number; var topss:Class; var tops:Object; var puttops:Function; var e1 = _arg1; puttops = function (_arg1:MouseEvent){ var _local2:*; var _local3:Number; _local2 = _arg1.currentTarget; _local3 = parseInt(_local2.name.substr(1)); removeChild(DisplayObject(tops)); if (tops.hitTestObject(doll)){ doll.tops.gotoAndStop((_local3 + 1)); Glob.tops = doll.tops.currentFrame; doll.dress.gotoAndStop(1); Glob.dress = 0; dressf = 0; topsf = 1; }; }; e = e1.currentTarget; t = parseInt(e.name.substr(1)); topss = (getDefinitionByName(("tops" + t)) as Class); tops = new (topss); tops.name = ("t" + e1.currentTarget.name.substr(1)); addChild(DisplayObject(tops)); tops.x = mouseX; tops.y = mouseY; tops.startDrag(true); tops.addEventListener(MouseEvent.MOUSE_UP, puttops); } public function nx(_arg1:MouseEvent):void{ stage.removeEventListener(Event.ENTER_FRAME, sets); Glob.hair = doll.hair.currentFrame; Glob.bags = doll.bags.currentFrame; Glob.earring = doll.earring.currentFrame; Glob.chain = doll.chain.currentFrame; Glob.shoes = doll.shoes.currentFrame; Glob.bottoms = doll.bottoms.currentFrame; Glob.tops = doll.tops.currentFrame; Glob.dress = doll.dress.currentFrame; nextFrame(); } public function plays(_arg1:MouseEvent):void{ nextFrame(); } } }//package halloween_fla
Section 28
//pau_63 (halloween_fla.pau_63) package halloween_fla { import flash.display.*; public dynamic class pau_63 extends MovieClip { public function pau_63(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 29
//peppydfgfsds_loader_19 (halloween_fla.peppydfgfsds_loader_19) package halloween_fla { import flash.display.*; public dynamic class peppydfgfsds_loader_19 extends MovieClip { public function peppydfgfsds_loader_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package halloween_fla
Section 30
//sheos_77 (halloween_fla.sheos_77) package halloween_fla { import flash.display.*; public dynamic class sheos_77 extends MovieClip { public function sheos_77(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ gotoAndStop(2); } } }//package halloween_fla
Section 31
//shoespalette_190 (halloween_fla.shoespalette_190) package halloween_fla { import flash.display.*; public dynamic class shoespalette_190 extends MovieClip { public var s1:MovieClip; public var s5:MovieClip; public var s6:MovieClip; public var s2:MovieClip; public var s4:MovieClip; public var s3:MovieClip; } }//package halloween_fla
Section 32
//ssbuttons_191 (halloween_fla.ssbuttons_191) package halloween_fla { import flash.display.*; public dynamic class ssbuttons_191 extends MovieClip { public var nextbtn:MovieClip; public var resetbtn:MovieClip; } }//package halloween_fla
Section 33
//ssenteryourname_197 (halloween_fla.ssenteryourname_197) package halloween_fla { import flash.display.*; public dynamic class ssenteryourname_197 extends MovieClip { public function ssenteryourname_197(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 34
//ssHOE_198 (halloween_fla.ssHOE_198) package halloween_fla { import flash.display.*; public dynamic class ssHOE_198 extends MovieClip { public var playagain:MovieClip; } }//package halloween_fla
Section 35
//ssOHJKKL_220 (halloween_fla.ssOHJKKL_220) package halloween_fla { import flash.events.*; import flash.display.*; import flash.text.*; public dynamic class ssOHJKKL_220 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; public function ssOHJKKL_220(){ addFrameScript(0, frame1); } public function hideAdd(_arg1:MouseEvent):void{ this.visible = false; } function frame1(){ this.visible = false; close.addEventListener(MouseEvent.CLICK, hideAdd); } } }//package halloween_fla
Section 36
//ssOKLJ_192 (halloween_fla.ssOKLJ_192) package halloween_fla { import flash.display.*; public dynamic class ssOKLJ_192 extends MovieClip { public function ssOKLJ_192(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 37
//ssOKLJ_194 (halloween_fla.ssOKLJ_194) package halloween_fla { import flash.display.*; public dynamic class ssOKLJ_194 extends MovieClip { public function ssOKLJ_194(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 38
//ssOKLJ_196 (halloween_fla.ssOKLJ_196) package halloween_fla { import flash.display.*; public dynamic class ssOKLJ_196 extends MovieClip { public function ssOKLJ_196(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 39
//ssOKLJ_210 (halloween_fla.ssOKLJ_210) package halloween_fla { import flash.display.*; public dynamic class ssOKLJ_210 extends MovieClip { public function ssOKLJ_210(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 40
//ssONMJKL_211 (halloween_fla.ssONMJKL_211) package halloween_fla { import flash.display.*; import flash.text.*; public dynamic class ssONMJKL_211 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 halloween_fla
Section 41
//ssREPLAYBTN2_199 (halloween_fla.ssREPLAYBTN2_199) package halloween_fla { import flash.display.*; public dynamic class ssREPLAYBTN2_199 extends MovieClip { public function ssREPLAYBTN2_199(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 42
//ssREPLAYBTN2copyt_206 (halloween_fla.ssREPLAYBTN2copyt_206) package halloween_fla { import flash.display.*; public dynamic class ssREPLAYBTN2copyt_206 extends MovieClip { public function ssREPLAYBTN2copyt_206(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 43
//tops_144 (halloween_fla.tops_144) package halloween_fla { import flash.display.*; public dynamic class tops_144 extends MovieClip { public function tops_144(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package halloween_fla
Section 44
//topspalette_187 (halloween_fla.topspalette_187) package halloween_fla { import flash.display.*; public dynamic class topspalette_187 extends MovieClip { public var t2:MovieClip; public var t3:MovieClip; public var t7:MovieClip; public var t1:MovieClip; public var t9:MovieClip; public var t5:MovieClip; public var t8:MovieClip; public var t4:MovieClip; public var t6:MovieClip; public var t10:MovieClip; } }//package halloween_fla
Section 45
//wingss_73 (halloween_fla.wingss_73) package halloween_fla { import flash.display.*; public dynamic class wingss_73 extends MovieClip { public function wingss_73(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(2); } } }//package halloween_fla
Section 46
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 47
//bags1 (bags1) package { import flash.display.*; public dynamic class bags1 extends MovieClip { } }//package
Section 48
//bags2 (bags2) package { import flash.display.*; public dynamic class bags2 extends MovieClip { } }//package
Section 49
//bags3 (bags3) package { import flash.display.*; public dynamic class bags3 extends MovieClip { } }//package
Section 50
//bottoms1 (bottoms1) package { import flash.display.*; public dynamic class bottoms1 extends MovieClip { } }//package
Section 51
//bottoms10 (bottoms10) package { import flash.display.*; public dynamic class bottoms10 extends MovieClip { } }//package
Section 52
//bottoms11 (bottoms11) package { import flash.display.*; public dynamic class bottoms11 extends MovieClip { } }//package
Section 53
//bottoms2 (bottoms2) package { import flash.display.*; public dynamic class bottoms2 extends MovieClip { } }//package
Section 54
//bottoms3 (bottoms3) package { import flash.display.*; public dynamic class bottoms3 extends MovieClip { } }//package
Section 55
//bottoms4 (bottoms4) package { import flash.display.*; public dynamic class bottoms4 extends MovieClip { } }//package
Section 56
//bottoms5 (bottoms5) package { import flash.display.*; public dynamic class bottoms5 extends MovieClip { } }//package
Section 57
//bottoms6 (bottoms6) package { import flash.display.*; public dynamic class bottoms6 extends MovieClip { } }//package
Section 58
//bottoms7 (bottoms7) package { import flash.display.*; public dynamic class bottoms7 extends MovieClip { } }//package
Section 59
//bottoms8 (bottoms8) package { import flash.display.*; public dynamic class bottoms8 extends MovieClip { } }//package
Section 60
//bottoms9 (bottoms9) package { import flash.display.*; public dynamic class bottoms9 extends MovieClip { } }//package
Section 61
//chain1 (chain1) package { import flash.display.*; public dynamic class chain1 extends MovieClip { } }//package
Section 62
//chain2 (chain2) package { import flash.display.*; public dynamic class chain2 extends MovieClip { } }//package
Section 63
//chain3 (chain3) package { import flash.display.*; public dynamic class chain3 extends MovieClip { } }//package
Section 64
//chain4 (chain4) package { import flash.display.*; public dynamic class chain4 extends MovieClip { } }//package
Section 65
//chain5 (chain5) package { import flash.display.*; public dynamic class chain5 extends MovieClip { } }//package
Section 66
//dress1 (dress1) package { import flash.display.*; public dynamic class dress1 extends MovieClip { } }//package
Section 67
//dress10 (dress10) package { import flash.display.*; public dynamic class dress10 extends MovieClip { } }//package
Section 68
//dress11 (dress11) package { import flash.display.*; public dynamic class dress11 extends MovieClip { } }//package
Section 69
//dress12 (dress12) package { import flash.display.*; public dynamic class dress12 extends MovieClip { } }//package
Section 70
//dress13 (dress13) package { import flash.display.*; public dynamic class dress13 extends MovieClip { } }//package
Section 71
//dress14 (dress14) package { import flash.display.*; public dynamic class dress14 extends MovieClip { } }//package
Section 72
//dress15 (dress15) package { import flash.display.*; public dynamic class dress15 extends MovieClip { } }//package
Section 73
//dress2 (dress2) package { import flash.display.*; public dynamic class dress2 extends MovieClip { } }//package
Section 74
//dress3 (dress3) package { import flash.display.*; public dynamic class dress3 extends MovieClip { } }//package
Section 75
//dress4 (dress4) package { import flash.display.*; public dynamic class dress4 extends MovieClip { } }//package
Section 76
//dress5 (dress5) package { import flash.display.*; public dynamic class dress5 extends MovieClip { } }//package
Section 77
//dress6 (dress6) package { import flash.display.*; public dynamic class dress6 extends MovieClip { } }//package
Section 78
//dress7 (dress7) package { import flash.display.*; public dynamic class dress7 extends MovieClip { } }//package
Section 79
//dress8 (dress8) package { import flash.display.*; public dynamic class dress8 extends MovieClip { } }//package
Section 80
//dress9 (dress9) package { import flash.display.*; public dynamic class dress9 extends MovieClip { } }//package
Section 81
//earring1 (earring1) package { import flash.display.*; public dynamic class earring1 extends MovieClip { } }//package
Section 82
//earring2 (earring2) package { import flash.display.*; public dynamic class earring2 extends MovieClip { } }//package
Section 83
//earring3 (earring3) package { import flash.display.*; public dynamic class earring3 extends MovieClip { } }//package
Section 84
//earring4 (earring4) package { import flash.display.*; public dynamic class earring4 extends MovieClip { } }//package
Section 85
//earring5 (earring5) package { import flash.display.*; public dynamic class earring5 extends MovieClip { } }//package
Section 86
//Glob (Glob) package { public class Glob { public static var shoes:Number = 0; public static var chain:Number = 0; public static var hair:Number = 0; public static var earring:Number = 0; public static var tex:String = ""; public static var bags:Number = 0; public static var bottoms:Number = 0; public static var temp:Number = 0; public static var dress:Number = 0; public static var playback:Boolean = false; public static var tops:Number = 0; } }//package
Section 87
//hair1 (hair1) package { import flash.display.*; public dynamic class hair1 extends MovieClip { } }//package
Section 88
//hair2 (hair2) package { import flash.display.*; public dynamic class hair2 extends MovieClip { } }//package
Section 89
//hair3 (hair3) package { import flash.display.*; public dynamic class hair3 extends MovieClip { } }//package
Section 90
//hair4 (hair4) package { import flash.display.*; public dynamic class hair4 extends MovieClip { } }//package
Section 91
//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 92
//shoe1 (shoe1) package { import flash.display.*; public dynamic class shoe1 extends MovieClip { } }//package
Section 93
//shoe2 (shoe2) package { import flash.display.*; public dynamic class shoe2 extends MovieClip { } }//package
Section 94
//shoe3 (shoe3) package { import flash.display.*; public dynamic class shoe3 extends MovieClip { } }//package
Section 95
//shoe4 (shoe4) package { import flash.display.*; public dynamic class shoe4 extends MovieClip { } }//package
Section 96
//shoe5 (shoe5) package { import flash.display.*; public dynamic class shoe5 extends MovieClip { } }//package
Section 97
//shoe6 (shoe6) package { import flash.display.*; public dynamic class shoe6 extends MovieClip { } }//package
Section 98
//tops1 (tops1) package { import flash.display.*; public dynamic class tops1 extends MovieClip { } }//package
Section 99
//tops10 (tops10) package { import flash.display.*; public dynamic class tops10 extends MovieClip { } }//package
Section 100
//tops2 (tops2) package { import flash.display.*; public dynamic class tops2 extends MovieClip { } }//package
Section 101
//tops3 (tops3) package { import flash.display.*; public dynamic class tops3 extends MovieClip { } }//package
Section 102
//tops4 (tops4) package { import flash.display.*; public dynamic class tops4 extends MovieClip { } }//package
Section 103
//tops5 (tops5) package { import flash.display.*; public dynamic class tops5 extends MovieClip { } }//package
Section 104
//tops6 (tops6) package { import flash.display.*; public dynamic class tops6 extends MovieClip { } }//package
Section 105
//tops7 (tops7) package { import flash.display.*; public dynamic class tops7 extends MovieClip { } }//package
Section 106
//tops8 (tops8) package { import flash.display.*; public dynamic class tops8 extends MovieClip { } }//package
Section 107
//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:4 374
Symbol 4 MovieClip {earring5}Uses:3Used by:368
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:7 374
Symbol 7 MovieClip {earring4}Uses:6Used by:368
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:10 374
Symbol 10 MovieClip {earring3}Uses:9Used by:368
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:13 325 374
Symbol 13 MovieClip {earring2}Uses:12Used by:368
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:16 374
Symbol 16 MovieClip {earring1}Uses:15Used by:368
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:19 373
Symbol 19 MovieClip {chain5}Uses:18Used by:367
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:22 373
Symbol 22 MovieClip {chain4}Uses:21Used by:367
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:25 373
Symbol 25 MovieClip {chain3}Uses:24Used by:367
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:28 328 373
Symbol 28 MovieClip {chain2}Uses:27Used by:367
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:31 373
Symbol 31 MovieClip {chain1}Uses:30Used by:367
Symbol 32 GraphicUsed by:35
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:35 68
Symbol 35 MovieClipUses:32 34Used by:36 372
Symbol 36 MovieClip {tops10}Uses:35Used by:366
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:39 372
Symbol 39 MovieClip {tops9}Uses:38Used by:366
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:42 372
Symbol 42 MovieClip {tops8}Uses:41Used by:366
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:45 372
Symbol 45 MovieClip {tops7}Uses:44Used by:366
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:48 372
Symbol 48 MovieClip {tops6}Uses:47Used by:366
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:51 372
Symbol 51 MovieClip {tops5}Uses:50Used by:366
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:54 372
Symbol 54 MovieClip {tops4}Uses:53Used by:366
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:57 372
Symbol 57 MovieClip {tops3}Uses:56Used by:366
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:60 372
Symbol 60 MovieClip {tops2}Uses:59Used by:366
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:63 372
Symbol 63 MovieClip {tops1}Uses:62Used by:366
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:66 371
Symbol 66 MovieClip {bottoms11}Uses:65Used by:365
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67 34Used by:69 371
Symbol 69 MovieClip {bottoms10}Uses:68Used by:365
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:72 371
Symbol 72 MovieClip {bottoms9}Uses:71Used by:365
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:73Used by:75 371
Symbol 75 MovieClip {bottoms8}Uses:74Used by:365
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:78 371
Symbol 78 MovieClip {bottoms7}Uses:77Used by:365
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79Used by:81 371
Symbol 81 MovieClip {bottoms6}Uses:80Used by:365
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:84 371
Symbol 84 MovieClip {bottoms5}Uses:83Used by:365
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:85Used by:87 371
Symbol 87 MovieClip {bottoms4}Uses:86Used by:365
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:90 371
Symbol 90 MovieClip {bottoms3}Uses:89Used by:365
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:91Used by:93 371
Symbol 93 MovieClip {bottoms2}Uses:92Used by:365
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:96 371
Symbol 96 MovieClip {bottoms1}Uses:95Used by:365
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:99 370
Symbol 99 MovieClip {dress15}Uses:98Used by:364
Symbol 100 GraphicUsed by:103
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:103
Symbol 103 MovieClipUses:100 102Used by:104 370
Symbol 104 MovieClip {dress14}Uses:103Used by:364
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:107 370
Symbol 107 MovieClip {dress13}Uses:106Used by:364
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:110 370
Symbol 110 MovieClip {dress12}Uses:109Used by:364
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClipUses:111Used by:113 370
Symbol 113 MovieClip {dress11}Uses:112Used by:364
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:116 370
Symbol 116 MovieClip {dress10}Uses:115Used by:364
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:119 370
Symbol 119 MovieClip {dress9}Uses:118Used by:364
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:122 370
Symbol 122 MovieClip {dress8}Uses:121Used by:364
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:123Used by:125 370
Symbol 125 MovieClip {dress7}Uses:124Used by:364
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:128 370
Symbol 128 MovieClip {dress6}Uses:127Used by:364
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:129Used by:131 370
Symbol 131 MovieClip {dress5}Uses:130Used by:364
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:134 370
Symbol 134 MovieClip {dress4}Uses:133Used by:364
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:135Used by:137 370
Symbol 137 MovieClip {dress3}Uses:136Used by:364
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:140 370
Symbol 140 MovieClip {dress2}Uses:139Used by:364
Symbol 141 GraphicUsed by:147
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:147
Symbol 144 GraphicUsed by:147
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:147
Symbol 147 MovieClipUses:141 143 144 146Used by:148 327 370
Symbol 148 MovieClip {dress1}Uses:147Used by:364
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:149Used by:151 375
Symbol 151 MovieClip {shoe6}Uses:150Used by:363
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:152Used by:154 375
Symbol 154 MovieClip {shoe5}Uses:153Used by:363
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:155Used by:157 375
Symbol 157 MovieClip {shoe4}Uses:156Used by:363
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158Used by:160 375
Symbol 160 MovieClip {shoe3}Uses:159Used by:363
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:161Used by:163 375
Symbol 163 MovieClip {shoe2}Uses:162Used by:363
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:166 326 375
Symbol 166 MovieClip {shoe1}Uses:165Used by:363
Symbol 167 GraphicUsed by:170 171
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:170 171
Symbol 170 MovieClipUses:167 169Used by:173
Symbol 171 MovieClipUses:167 169Used by:173
Symbol 172 GraphicUsed by:173 345
Symbol 173 MovieClipUses:170 171 172Used by:174 175 176 311 346
Symbol 174 MovieClip {bags3}Uses:173Used by:362
Symbol 175 MovieClip {bags2}Uses:173Used by:362
Symbol 176 MovieClip {bags1}Uses:173Used by:362
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:177Used by:179 180 347
Symbol 179 MovieClip {hair4}Uses:178Used by:324
Symbol 180 MovieClip {hair3}Uses:178Used by:324
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:183 347
Symbol 183 MovieClip {hair2}Uses:182Used by:324
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:186 347
Symbol 186 MovieClip {hair1}Uses:185Used by:324
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:197
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189Used by:197
Symbol 191 GraphicUsed by:192
Symbol 192 MovieClipUses:191Used by:197
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:197
Symbol 195 GraphicUsed by:196
Symbol 196 MovieClipUses:195Used by:197
Symbol 197 MovieClipUses:188 190 192 194 196Used by:Timeline
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:211
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:211
Symbol 202 GraphicUsed by:211
Symbol 203 GraphicUsed by:211
Symbol 204 GraphicUsed by:211
Symbol 205 GraphicUsed by:211
Symbol 206 GraphicUsed by:211
Symbol 207 GraphicUsed by:211
Symbol 208 GraphicUsed by:211
Symbol 209 GraphicUsed by:211
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClip {halloween_fla.cbvdsfdsf_loader_7}Uses:199 201 202 203 204 205 206 207 208 209 210Used by:Timeline
Symbol 212 FontUsed by:213
Symbol 213 EditableTextUses:212Used by:Timeline
Symbol 214 FontUsed by:215
Symbol 215 TextUses:214Used by:Timeline
Symbol 216 GraphicUsed by:Timeline
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClipUses:217Used by:Timeline
Symbol 219 FontUsed by:220 385 394 407 408 409 410 411 412 413 414 415 416 417
Symbol 220 TextUses:219Used by:Timeline
Symbol 221 GraphicUsed by:245
Symbol 222 GraphicUsed by:224
Symbol 223 MovieClipUsed by:224
Symbol 224 MovieClipUses:222 223Used by:245
Symbol 225 GraphicUsed by:235
Symbol 226 ShapeTweeningUsed by:234
Symbol 227 GraphicUsed by:234
Symbol 228 ShapeTweeningUsed by:234
Symbol 229 GraphicUsed by:234
Symbol 230 ShapeTweeningUsed by:234
Symbol 231 GraphicUsed by:234
Symbol 232 ShapeTweeningUsed by:234
Symbol 233 GraphicUsed by:234
Symbol 234 MovieClipUses:226 227 228 229 230 231 232 233Used by:235
Symbol 235 MovieClipUses:225 234Used by:243
Symbol 236 GraphicUsed by:241
Symbol 237 GraphicUsed by:241
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:238Used by:241
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:236 237 239 240Used by:243
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:235 241 242Used by:245
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:221 224 243 244Used by:Timeline
Symbol 246 FontUsed by:247 248 249 250 251 252 254 255 256 257 258 259 260 261 349
Symbol 247 TextUses:246Used by:253
Symbol 248 TextUses:246Used by:253
Symbol 249 TextUses:246Used by:253
Symbol 250 TextUses:246Used by:253
Symbol 251 TextUses:246Used by:253
Symbol 252 TextUses:246Used by:253
Symbol 253 MovieClip {halloween_fla.peppydfgfsds_loader_19}Uses:247 248 249 250 251 252Used by:Timeline
Symbol 254 TextUses:246Used by:262
Symbol 255 TextUses:246Used by:262
Symbol 256 TextUses:246Used by:262
Symbol 257 TextUses:246Used by:262
Symbol 258 TextUses:246Used by:262
Symbol 259 TextUses:246Used by:262
Symbol 260 TextUses:246Used by:262
Symbol 261 TextUses:246Used by:262
Symbol 262 MovieClipUses:254 255 256 257 258 259 260 261Used by:Timeline
Symbol 263 GraphicUsed by:310
Symbol 264 GraphicUsed by:265
Symbol 265 MovieClipUses:264Used by:310
Symbol 266 GraphicUsed by:267
Symbol 267 MovieClipUses:266Used by:310
Symbol 268 GraphicUsed by:310
Symbol 269 GraphicUsed by:271
Symbol 270 GraphicUsed by:271
Symbol 271 MovieClipUses:269 270Used by:310
Symbol 272 GraphicUsed by:310
Symbol 273 GraphicUsed by:275
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:273 274Used by:310
Symbol 276 GraphicUsed by:310
Symbol 277 GraphicUsed by:280
Symbol 278 GraphicUsed by:280
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:277 278 279Used by:309
Symbol 281 GraphicUsed by:284
Symbol 282 GraphicUsed by:284
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:281 282 283Used by:309
Symbol 285 GraphicUsed by:291
Symbol 286 GraphicUsed by:291
Symbol 287 GraphicUsed by:291
Symbol 288 GraphicUsed by:291
Symbol 289 GraphicUsed by:291
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:285 286 287 288 289 290Used by:309
Symbol 292 GraphicUsed by:296
Symbol 293 GraphicUsed by:296
Symbol 294 GraphicUsed by:296
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:292 293 294 295Used by:309
Symbol 297 GraphicUsed by:303
Symbol 298 GraphicUsed by:303
Symbol 299 GraphicUsed by:303
Symbol 300 GraphicUsed by:303
Symbol 301 GraphicUsed by:303
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:297 298 299 300 301 302Used by:309
Symbol 304 GraphicUsed by:308
Symbol 305 GraphicUsed by:308
Symbol 306 GraphicUsed by:308
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:304 305 306 307Used by:309
Symbol 309 MovieClipUses:280 284 291 296 303 308Used by:310
Symbol 310 MovieClipUses:263 265 267 268 271 272 275 276 309Used by:Timeline
Symbol 311 MovieClipUses:173Used by:329
Symbol 312 GraphicUsed by:323
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClipUses:313Used by:323
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315Used by:323
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:317Used by:323
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:323
Symbol 321 GraphicUsed by:323
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:312 314 316 318 320 321 322Used by:329 369
Symbol 324 MovieClip {halloween_fla.hairs_44}Uses:186 183 180 179Used by:329 369
Symbol 325 MovieClipUses:12Used by:329
Symbol 326 MovieClipUses:165Used by:329
Symbol 327 MovieClipUses:147Used by:329
Symbol 328 MovieClipUses:27Used by:329
Symbol 329 MovieClip {halloween_fla.dollscopy_33}Uses:311 323 324 325 326 327 328Used by:Timeline
Symbol 330 FontUsed by:331 334
Symbol 331 TextUses:330Used by:Timeline
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:Timeline
Symbol 334 TextUses:330Used by:345
Symbol 335 GraphicUsed by:345
Symbol 336 GraphicUsed by:345
Symbol 337 GraphicUsed by:345
Symbol 338 GraphicUsed by:345
Symbol 339 GraphicUsed by:345
Symbol 340 FontUsed by:341
Symbol 341 TextUses:340Used by:345
Symbol 342 GraphicUsed by:345
Symbol 343 GraphicUsed by:345
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClip {halloween_fla.pau_63}Uses:334 172 335 336 337 338 339 341 342 343 344Used by:Timeline
Symbol 346 MovieClip {halloween_fla.earringpalette_64}Uses:173Used by:Timeline
Symbol 347 MovieClip {halloween_fla.hairpalette_65}Uses:178 182 185Used by:Timeline
Symbol 348 GraphicUsed by:352
Symbol 349 TextUses:246Used by:352
Symbol 350 GraphicUsed by:352
Symbol 351 GraphicUsed by:352
Symbol 352 ButtonUses:348 349 350 351Used by:Timeline
Symbol 353 GraphicUsed by:355 360 361
Symbol 354 GraphicUsed by:355 360 361
Symbol 355 MovieClipUses:353 354Used by:360 361
Symbol 356 GraphicUsed by:357 360 361
Symbol 357 MovieClipUses:356Used by:360 361
Symbol 358 GraphicUsed by:359 360
Symbol 359 MovieClipUses:358Used by:360
Symbol 360 ButtonUses:355 357 359 353 354 356 358Used by:Timeline
Symbol 361 ButtonUses:355 357 353 354 356Used by:Timeline
Symbol 362 MovieClip {halloween_fla.wingss_73}Uses:176 175 174Used by:369
Symbol 363 MovieClip {halloween_fla.sheos_77}Uses:166 163 160 157 154 151Used by:369
Symbol 364 MovieClip {halloween_fla.dress_89}Uses:148 140 137 134 131 128 125 122 119 116 113 110 107 104 99Used by:369
Symbol 365 MovieClip {halloween_fla.bottoms_120}Uses:96 93 90 87 84 81 78 75 72 69 66Used by:369
Symbol 366 MovieClip {halloween_fla.tops_144}Uses:63 60 57 54 51 48 45 42 39 36Used by:369
Symbol 367 MovieClip {halloween_fla.chains_165}Uses:31 28 25 22 19Used by:369
Symbol 368 MovieClip {halloween_fla.caps_175}Uses:16 13 10 7 4Used by:369
Symbol 369 MovieClip {halloween_fla.dolls_72}Uses:362 323 363 364 365 366 367 324 368Used by:Timeline
Symbol 370 MovieClip {halloween_fla.dresspalette_185}Uses:147 139 136 133 130 127 124 121 118 115 112 109 106 103 98Used by:Timeline
Symbol 371 MovieClip {halloween_fla.bottomspalette_186}Uses:95 92 89 86 83 80 77 74 71 68 65Used by:Timeline
Symbol 372 MovieClip {halloween_fla.topspalette_187}Uses:62 59 56 44 53 50 47 41 38 35Used by:Timeline
Symbol 373 MovieClip {halloween_fla.chainpalette_188}Uses:30 27 18 21 24Used by:Timeline
Symbol 374 MovieClip {halloween_fla.bagspalette_189}Uses:6 3 9 12 15Used by:Timeline
Symbol 375 MovieClip {halloween_fla.shoespalette_190}Uses:156 153 159 150 162 165Used by:Timeline
Symbol 376 GraphicUsed by:390 399 406
Symbol 377 GraphicUsed by:378
Symbol 378 MovieClipUses:377Used by:390 399 406 469
Symbol 379 GraphicUsed by:390 406
Symbol 380 GraphicUsed by:390 406
Symbol 381 GraphicUsed by:390 406
Symbol 382 GraphicUsed by:390 406
Symbol 383 GraphicUsed by:390 406
Symbol 384 GraphicUsed by:390 406
Symbol 385 TextUses:219Used by:390 406
Symbol 386 GraphicUsed by:390 406
Symbol 387 GraphicUsed by:390 406
Symbol 388 GraphicUsed by:390 406
Symbol 389 GraphicUsed by:390 406
Symbol 390 MovieClip {halloween_fla.ssOKLJ_192}Uses:376 378 379 380 381 382 383 384 385 386 387 388 389Used by:400
Symbol 391 GraphicUsed by:399
Symbol 392 GraphicUsed by:399
Symbol 393 GraphicUsed by:399
Symbol 394 TextUses:219Used by:399
Symbol 395 GraphicUsed by:399
Symbol 396 GraphicUsed by:399
Symbol 397 GraphicUsed by:399
Symbol 398 GraphicUsed by:399
Symbol 399 MovieClip {halloween_fla.ssOKLJ_194}Uses:376 378 391 392 393 394 395 396 397 398Used by:400
Symbol 400 MovieClip {halloween_fla.ssbuttons_191}Uses:390 399Used by:Timeline
Symbol 401 GraphicUsed by:Timeline
Symbol 402 FontUsed by:403
Symbol 403 TextUses:402Used by:Timeline
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:404Used by:Timeline
Symbol 406 MovieClip {halloween_fla.ssOKLJ_196}Uses:376 378 379 380 381 382 383 384 385 386 387 388 389Used by:Timeline
Symbol 407 TextUses:219Used by:418
Symbol 408 TextUses:219Used by:418
Symbol 409 TextUses:219Used by:418
Symbol 410 TextUses:219Used by:418
Symbol 411 TextUses:219Used by:418
Symbol 412 TextUses:219Used by:418
Symbol 413 TextUses:219Used by:418
Symbol 414 TextUses:219Used by:418
Symbol 415 TextUses:219Used by:418
Symbol 416 TextUses:219Used by:418
Symbol 417 TextUses:219Used by:418
Symbol 418 MovieClip {halloween_fla.ssenteryourname_197}Uses:407 408 409 410 411 412 413 414 415 416 417Used by:Timeline
Symbol 419 FontUsed by:420
Symbol 420 EditableTextUses:419Used by:Timeline
Symbol 421 GraphicUsed by:422 423 441
Symbol 422 MovieClipUses:421Used by:427
Symbol 423 MovieClipUses:421Used by:426
Symbol 424 GraphicUsed by:425 442 494 498 515 519
Symbol 425 MovieClipUses:424Used by:426
Symbol 426 MovieClipUses:423 425Used by:427
Symbol 427 MovieClipUses:422 426Used by:439
Symbol 428 GraphicUsed by:439
Symbol 429 GraphicUsed by:439
Symbol 430 GraphicUsed by:439
Symbol 431 GraphicUsed by:439
Symbol 432 GraphicUsed by:439
Symbol 433 GraphicUsed by:439
Symbol 434 GraphicUsed by:439
Symbol 435 GraphicUsed by:439
Symbol 436 GraphicUsed by:439
Symbol 437 GraphicUsed by:439
Symbol 438 GraphicUsed by:439
Symbol 439 MovieClip {halloween_fla.ssREPLAYBTN2_199}Uses:427 428 429 430 431 432 433 434 435 436 437 438Used by:440
Symbol 440 MovieClip {halloween_fla.ssHOE_198}Uses:439Used by:Timeline
Symbol 441 MovieClipUses:421Used by:443
Symbol 442 MovieClipUses:424Used by:443
Symbol 443 MovieClipUses:441 442Used by:455
Symbol 444 GraphicUsed by:455
Symbol 445 GraphicUsed by:455
Symbol 446 GraphicUsed by:455
Symbol 447 GraphicUsed by:455
Symbol 448 GraphicUsed by:455
Symbol 449 GraphicUsed by:455
Symbol 450 GraphicUsed by:455
Symbol 451 FontUsed by:452
Symbol 452 TextUses:451Used by:455
Symbol 453 GraphicUsed by:455
Symbol 454 GraphicUsed by:455
Symbol 455 MovieClip {halloween_fla.ssREPLAYBTN2copyt_206}Uses:443 444 445 446 447 448 449 450 452 453 454Used by:456
Symbol 456 MovieClipUses:455Used by:Timeline
Symbol 457 GraphicUsed by:469
Symbol 458 GraphicUsed by:469
Symbol 459 GraphicUsed by:469
Symbol 460 GraphicUsed by:469
Symbol 461 GraphicUsed by:469
Symbol 462 GraphicUsed by:469
Symbol 463 GraphicUsed by:469
Symbol 464 GraphicUsed by:469
Symbol 465 GraphicUsed by:469
Symbol 466 GraphicUsed by:469
Symbol 467 GraphicUsed by:469
Symbol 468 GraphicUsed by:469
Symbol 469 MovieClip {halloween_fla.ssOKLJ_210}Uses:457 378 458 459 460 461 462 463 464 465 466 467 468Used by:Timeline
Symbol 470 FontUsed by:471 472
Symbol 471 TextUses:470Used by:Timeline
Symbol 472 EditableTextUses:470Used by:Timeline
Symbol 473 GraphicUsed by:474
Symbol 474 MovieClipUses:473Used by:486 493
Symbol 475 BitmapUsed by:476 478 482
Symbol 476 GraphicUses:475Used by:477
Symbol 477 MovieClipUses:476Used by:486 493
Symbol 478 GraphicUses:475Used by:481
Symbol 479 GraphicUsed by:480
Symbol 480 MovieClipUses:479Used by:481 484
Symbol 481 MovieClipUses:478 480Used by:485
Symbol 482 GraphicUses:475Used by:483
Symbol 483 MovieClipUses:482Used by:484
Symbol 484 MovieClipUses:483 480Used by:485 502
Symbol 485 MovieClipUses:481 484Used by:486
Symbol 486 MovieClipUses:474 477 485Used by:520
Symbol 487 FontUsed by:488 489 490 491 492 499 510 512 513 516 518
Symbol 488 TextUses:487Used by:520
Symbol 489 TextUses:487Used by:520
Symbol 490 TextUses:487Used by:520
Symbol 491 TextUses:487Used by:520
Symbol 492 TextUses:487Used by:520
Symbol 493 MovieClipUses:474 477Used by:502
Symbol 494 MovieClipUses:424Used by:495 508
Symbol 495 MovieClipUses:494Used by:498
Symbol 496 GraphicUsed by:497
Symbol 497 ButtonUses:496Used by:498
Symbol 498 ButtonUses:495 497 424Used by:502 520
Symbol 499 TextUses:487Used by:502
Symbol 500 FontUsed by:501 503 504 505 506 507
Symbol 501 EditableTextUses:500Used by:502
Symbol 502 MovieClip {halloween_fla.ssOHJKKL_220}Uses:493 498 484 499 501Used by:520
Symbol 503 EditableTextUses:500Used by:520
Symbol 504 EditableTextUses:500Used by:520
Symbol 505 EditableTextUses:500Used by:520
Symbol 506 EditableTextUses:500Used by:520
Symbol 507 EditableTextUses:500Used by:520
Symbol 508 MovieClipUses:494Used by:509
Symbol 509 MovieClipUses:508Used by:511 515 517 519
Symbol 510 TextUses:487Used by:511
Symbol 511 MovieClipUses:509 510Used by:515
Symbol 512 TextUses:487Used by:515
Symbol 513 TextUses:487Used by:515
Symbol 514 GraphicUsed by:515 519
Symbol 515 ButtonUses:511 509 512 513 514 424Used by:520
Symbol 516 TextUses:487Used by:517
Symbol 517 MovieClipUses:509 516Used by:519
Symbol 518 TextUses:487Used by:519
Symbol 519 ButtonUses:517 509 518 514 424Used by:520
Symbol 520 MovieClip {halloween_fla.ssONMJKL_211}Uses:486 488 489 490 491 492 502 498 503 504 505 506 507 515 519Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 211 MovieClip {halloween_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 213 EditableText
"ball"Frame 1Symbol 262 MovieClip
"pl"Frame 2Symbol 345 MovieClip {halloween_fla.pau_63}
"bagspalette"Frame 3Symbol 346 MovieClip {halloween_fla.earringpalette_64}
"hairpalette"Frame 3Symbol 347 MovieClip {halloween_fla.hairpalette_65}
"logo_mc"Frame 3Symbol 352 Button
"sndon"Frame 3Symbol 360 Button
"sndoff"Frame 3Symbol 361 Button
"doll"Frame 3Symbol 369 MovieClip {halloween_fla.dolls_72}
"dresspalette"Frame 3Symbol 370 MovieClip {halloween_fla.dresspalette_185}
"bottomspalette"Frame 3Symbol 371 MovieClip {halloween_fla.bottomspalette_186}
"topspalette"Frame 3Symbol 372 MovieClip {halloween_fla.topspalette_187}
"chainpalette"Frame 3Symbol 373 MovieClip {halloween_fla.chainpalette_188}
"earringpalette"Frame 3Symbol 374 MovieClip {halloween_fla.bagspalette_189}
"shoespalette"Frame 3Symbol 375 MovieClip {halloween_fla.shoespalette_190}
"buttons1"Frame 3Symbol 400 MovieClip {halloween_fla.ssbuttons_191}
"nextbtn"Frame 4Symbol 406 MovieClip {halloween_fla.ssOKLJ_196}
"ent"Frame 4Symbol 418 MovieClip {halloween_fla.ssenteryourname_197}
"t1"Frame 4Symbol 420 EditableText
"ent"Frame 4Symbol 418 MovieClip {halloween_fla.ssenteryourname_197}
"nex"Frame 5Symbol 440 MovieClip {halloween_fla.ssHOE_198}
"playmore"Frame 5Symbol 456 MovieClip
"email"Frame 5Symbol 469 MovieClip {halloween_fla.ssOKLJ_210}
"t2"Frame 5Symbol 472 EditableText
"dolls"Frame 5Symbol 369 MovieClip {halloween_fla.dolls_72}
"popup"Frame 5Symbol 520 MovieClip {halloween_fla.ssONMJKL_211}
"masker"Symbol 211 MovieClip {halloween_fla.cbvdsfdsf_loader_7} Frame 1Symbol 199 MovieClip
"hair"Symbol 329 MovieClip {halloween_fla.dollscopy_33} Frame 1Symbol 324 MovieClip {halloween_fla.hairs_44}
"b2"Symbol 346 MovieClip {halloween_fla.earringpalette_64} Frame 1Symbol 173 MovieClip
"b3"Symbol 346 MovieClip {halloween_fla.earringpalette_64} Frame 1Symbol 173 MovieClip
"b1"Symbol 346 MovieClip {halloween_fla.earringpalette_64} Frame 1Symbol 173 MovieClip
"h4"Symbol 347 MovieClip {halloween_fla.hairpalette_65} Frame 1Symbol 178 MovieClip
"h2"Symbol 347 MovieClip {halloween_fla.hairpalette_65} Frame 1Symbol 182 MovieClip
"h3"Symbol 347 MovieClip {halloween_fla.hairpalette_65} Frame 1Symbol 178 MovieClip
"h1"Symbol 347 MovieClip {halloween_fla.hairpalette_65} Frame 1Symbol 185 MovieClip
"bags"Symbol 369 MovieClip {halloween_fla.dolls_72} Frame 1Symbol 362 MovieClip {halloween_fla.wingss_73}
"shoes"Symbol 369 MovieClip {halloween_fla.dolls_72} Frame 1Symbol 363 MovieClip {halloween_fla.sheos_77}
"dress"Symbol 369 MovieClip {halloween_fla.dolls_72} Frame 1Symbol 364 MovieClip {halloween_fla.dress_89}
"bottoms"Symbol 369 MovieClip {halloween_fla.dolls_72} Frame 1Symbol 365 MovieClip {halloween_fla.bottoms_120}
"tops"Symbol 369 MovieClip {halloween_fla.dolls_72} Frame 1Symbol 366 MovieClip {halloween_fla.tops_144}
"chain"Symbol 369 MovieClip {halloween_fla.dolls_72} Frame 1Symbol 367 MovieClip {halloween_fla.chains_165}
"hair"Symbol 369 MovieClip {halloween_fla.dolls_72} Frame 1Symbol 324 MovieClip {halloween_fla.hairs_44}
"earring"Symbol 369 MovieClip {halloween_fla.dolls_72} Frame 1Symbol 368 MovieClip {halloween_fla.caps_175}
"d1"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 147 MovieClip
"d2"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 139 MovieClip
"d3"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 136 MovieClip
"d4"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 133 MovieClip
"d5"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 130 MovieClip
"d6"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 127 MovieClip
"d7"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 124 MovieClip
"d8"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 121 MovieClip
"d9"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 118 MovieClip
"d10"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 115 MovieClip
"d11"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 112 MovieClip
"d12"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 109 MovieClip
"d13"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 106 MovieClip
"d14"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 103 MovieClip
"d15"Symbol 370 MovieClip {halloween_fla.dresspalette_185} Frame 1Symbol 98 MovieClip
"b1"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 95 MovieClip
"b2"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 92 MovieClip
"b3"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 89 MovieClip
"b4"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 86 MovieClip
"b5"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 83 MovieClip
"b6"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 80 MovieClip
"b7"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 77 MovieClip
"b8"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 74 MovieClip
"b9"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 71 MovieClip
"b10"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 68 MovieClip
"b11"Symbol 371 MovieClip {halloween_fla.bottomspalette_186} Frame 1Symbol 65 MovieClip
"t1"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 62 MovieClip
"t2"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 59 MovieClip
"t3"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 56 MovieClip
"t7"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 44 MovieClip
"t4"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 53 MovieClip
"t5"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 50 MovieClip
"t6"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 47 MovieClip
"t8"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 41 MovieClip
"t9"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 38 MovieClip
"t10"Symbol 372 MovieClip {halloween_fla.topspalette_187} Frame 1Symbol 35 MovieClip
"c1"Symbol 373 MovieClip {halloween_fla.chainpalette_188} Frame 1Symbol 30 MovieClip
"c2"Symbol 373 MovieClip {halloween_fla.chainpalette_188} Frame 1Symbol 27 MovieClip
"c5"Symbol 373 MovieClip {halloween_fla.chainpalette_188} Frame 1Symbol 18 MovieClip
"c4"Symbol 373 MovieClip {halloween_fla.chainpalette_188} Frame 1Symbol 21 MovieClip
"c3"Symbol 373 MovieClip {halloween_fla.chainpalette_188} Frame 1Symbol 24 MovieClip
"e4"Symbol 374 MovieClip {halloween_fla.bagspalette_189} Frame 1Symbol 6 MovieClip
"e5"Symbol 374 MovieClip {halloween_fla.bagspalette_189} Frame 1Symbol 3 MovieClip
"e3"Symbol 374 MovieClip {halloween_fla.bagspalette_189} Frame 1Symbol 9 MovieClip
"e2"Symbol 374 MovieClip {halloween_fla.bagspalette_189} Frame 1Symbol 12 MovieClip
"e1"Symbol 374 MovieClip {halloween_fla.bagspalette_189} Frame 1Symbol 15 MovieClip
"s4"Symbol 375 MovieClip {halloween_fla.shoespalette_190} Frame 1Symbol 156 MovieClip
"s5"Symbol 375 MovieClip {halloween_fla.shoespalette_190} Frame 1Symbol 153 MovieClip
"s3"Symbol 375 MovieClip {halloween_fla.shoespalette_190} Frame 1Symbol 159 MovieClip
"s6"Symbol 375 MovieClip {halloween_fla.shoespalette_190} Frame 1Symbol 150 MovieClip
"s2"Symbol 375 MovieClip {halloween_fla.shoespalette_190} Frame 1Symbol 162 MovieClip
"s1"Symbol 375 MovieClip {halloween_fla.shoespalette_190} Frame 1Symbol 165 MovieClip
"nextbtn"Symbol 400 MovieClip {halloween_fla.ssbuttons_191} Frame 1Symbol 390 MovieClip {halloween_fla.ssOKLJ_192}
"resetbtn"Symbol 400 MovieClip {halloween_fla.ssbuttons_191} Frame 1Symbol 399 MovieClip {halloween_fla.ssOKLJ_194}
"playagain"Symbol 440 MovieClip {halloween_fla.ssHOE_198} Frame 1Symbol 439 MovieClip {halloween_fla.ssREPLAYBTN2_199}
"close"Symbol 502 MovieClip {halloween_fla.ssOHJKKL_220} Frame 1Symbol 498 Button
"friendMail"Symbol 502 MovieClip {halloween_fla.ssOHJKKL_220} Frame 1Symbol 501 EditableText
"friend4"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 502 MovieClip {halloween_fla.ssOHJKKL_220}
"friend3"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 502 MovieClip {halloween_fla.ssOHJKKL_220}
"friend2"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 502 MovieClip {halloween_fla.ssOHJKKL_220}
"friend1"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 502 MovieClip {halloween_fla.ssOHJKKL_220}
"close"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 498 Button
"nameDetail"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 503 EditableText
"mailDetail"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 504 EditableText
"messageDetail"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 505 EditableText
"friendName"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 506 EditableText
"friendMail"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 507 EditableText
"addition"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 515 Button
"submit"Symbol 520 MovieClip {halloween_fla.ssONMJKL_211} Frame 1Symbol 519 Button

Special Tags

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




http://swfchan.com/23/112626/info.shtml
Created: 12/3 -2019 06:51:22 Last modified: 12/3 -2019 06:51:22 Server time: 11/05 -2024 21:40:06