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

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

halloween-anthea.swf

This is the info page for
Flash #122637

(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

.

PLAY

Oyna

ANTHEA

Sonraki

Sıfırla

123PEPPY

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
//bottoms_72 (halloween_fla.bottoms_72) package halloween_fla { import flash.display.*; public dynamic class bottoms_72 extends MovieClip { public function bottoms_72(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package halloween_fla
Section 14
//bottomspalette_196 (halloween_fla.bottomspalette_196) package halloween_fla { import flash.display.*; public dynamic class bottomspalette_196 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; } }//package halloween_fla
Section 15
//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 16
//chainpalette_197 (halloween_fla.chainpalette_197) package halloween_fla { import flash.display.*; public dynamic class chainpalette_197 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 17
//chians_158 (halloween_fla.chians_158) package halloween_fla { import flash.display.*; public dynamic class chians_158 extends MovieClip { public function chians_158(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package halloween_fla
Section 18
//doll_57 (halloween_fla.doll_57) package halloween_fla { import flash.display.*; public dynamic class doll_57 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 19
//dress_125 (halloween_fla.dress_125) package halloween_fla { import flash.display.*; public dynamic class dress_125 extends MovieClip { public function dress_125(){ addFrameScript(0, frame1, 16, frame17); } function frame1(){ stop(); } function frame17(){ gotoAndStop(2); } } }//package halloween_fla
Section 20
//dresspalette_194 (halloween_fla.dresspalette_194) package halloween_fla { import flash.display.*; public dynamic class dresspalette_194 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 21
//earringpalette_198 (halloween_fla.earringpalette_198) package halloween_fla { import flash.display.*; public dynamic class earringpalette_198 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 22
//earrings_182 (halloween_fla.earrings_182) package halloween_fla { import flash.display.*; public dynamic class earrings_182 extends MovieClip { public function earrings_182(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package halloween_fla
Section 23
//hairpalette_192 (halloween_fla.hairpalette_192) package halloween_fla { import flash.display.*; public dynamic class hairpalette_192 extends MovieClip { public var h1:MovieClip; public var h2:MovieClip; public var h4:MovieClip; public var h5:MovieClip; public var h6:MovieClip; public var h3:MovieClip; } }//package halloween_fla
Section 24
//hairs_172 (halloween_fla.hairs_172) package halloween_fla { import flash.display.*; public dynamic class hairs_172 extends MovieClip { public function hairs_172(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(1); } function frame1(){ stop(); } } }//package halloween_fla
Section 25
//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, "4c0d49c8"); stop(); Glob.dress = 0; Glob.tops = 0; Glob.bottoms = 0; Glob.chain = 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])); } 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])); } 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])); } 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])); } 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])); }; }; }; }; }; 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); 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()); 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.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 Anthea"; 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-anthea"; break; case "de": variables.path = "http://www.123peppy.com/de/play/halloween-anthea"; break; case "it": variables.path = "http://www.123peppy.com/it/play/halloween-anthea"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/halloween-anthea"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/хеллоуин-антея"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/cadılar-bayramı-anthea"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/allhelgonaafton-anthea"; break; case "pt-br": variables.path = "http://www.123peppy.com/pt-br/play/dia-das-bruxas-anthea"; break; case "es": variables.path = "http://www.123peppy.com/es/play/halloween-anthea"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/haloween-anthea"; break; default: variables.path = "http://www.123peppy.com/play/halloween-anthea"; 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); nextFrame(); } public function plays(_arg1:MouseEvent):void{ nextFrame(); } } }//package halloween_fla
Section 26
//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 27
//shoes_58 (halloween_fla.shoes_58) package halloween_fla { import flash.display.*; public dynamic class shoes_58 extends MovieClip { public function shoes_58(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package halloween_fla
Section 28
//shoespalette_193 (halloween_fla.shoespalette_193) package halloween_fla { import flash.display.*; public dynamic class shoespalette_193 extends MovieClip { public var s1:MovieClip; public var s5:MovieClip; public var s2:MovieClip; public var s4:MovieClip; public var s3:MovieClip; } }//package halloween_fla
Section 29
//ssbuttons_200 (halloween_fla.ssbuttons_200) package halloween_fla { import flash.display.*; public dynamic class ssbuttons_200 extends MovieClip { public var nextbtn:MovieClip; public var resetbtn:MovieClip; } }//package halloween_fla
Section 30
//ssenteryourname_211 (halloween_fla.ssenteryourname_211) package halloween_fla { import flash.display.*; public dynamic class ssenteryourname_211 extends MovieClip { public function ssenteryourname_211(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 31
//ssHOE_214 (halloween_fla.ssHOE_214) package halloween_fla { import flash.display.*; public dynamic class ssHOE_214 extends MovieClip { public var playagain:MovieClip; } }//package halloween_fla
Section 32
//ssOHJKKL_236 (halloween_fla.ssOHJKKL_236) package halloween_fla { import flash.events.*; import flash.display.*; import flash.text.*; public dynamic class ssOHJKKL_236 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; public function ssOHJKKL_236(){ 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 33
//ssOKLJ_201 (halloween_fla.ssOKLJ_201) package halloween_fla { import flash.display.*; public dynamic class ssOKLJ_201 extends MovieClip { public function ssOKLJ_201(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 34
//ssOKLJ_203 (halloween_fla.ssOKLJ_203) package halloween_fla { import flash.display.*; public dynamic class ssOKLJ_203 extends MovieClip { public function ssOKLJ_203(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 35
//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 36
//ssOKLJ_226 (halloween_fla.ssOKLJ_226) package halloween_fla { import flash.display.*; public dynamic class ssOKLJ_226 extends MovieClip { public function ssOKLJ_226(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 37
//ssOKLJ_50 (halloween_fla.ssOKLJ_50) package halloween_fla { import flash.display.*; public dynamic class ssOKLJ_50 extends MovieClip { public function ssOKLJ_50(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 38
//ssONMJKL_227 (halloween_fla.ssONMJKL_227) package halloween_fla { import flash.display.*; import flash.text.*; public dynamic class ssONMJKL_227 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 39
//ssREPLAYBTN2_215 (halloween_fla.ssREPLAYBTN2_215) package halloween_fla { import flash.display.*; public dynamic class ssREPLAYBTN2_215 extends MovieClip { public function ssREPLAYBTN2_215(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 40
//ssREPLAYBTN2copyt_222 (halloween_fla.ssREPLAYBTN2copyt_222) package halloween_fla { import flash.display.*; public dynamic class ssREPLAYBTN2copyt_222 extends MovieClip { public function ssREPLAYBTN2copyt_222(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloween_fla
Section 41
//tops_100 (halloween_fla.tops_100) package halloween_fla { import flash.display.*; public dynamic class tops_100 extends MovieClip { public function tops_100(){ addFrameScript(0, frame1, 11, frame12); } function frame12(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package halloween_fla
Section 42
//topspalette_195 (halloween_fla.topspalette_195) package halloween_fla { import flash.display.*; public dynamic class topspalette_195 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 43
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 44
//bottoms1 (bottoms1) package { import flash.display.*; public dynamic class bottoms1 extends MovieClip { } }//package
Section 45
//bottoms10 (bottoms10) package { import flash.display.*; public dynamic class bottoms10 extends MovieClip { } }//package
Section 46
//bottoms2 (bottoms2) package { import flash.display.*; public dynamic class bottoms2 extends MovieClip { } }//package
Section 47
//bottoms3 (bottoms3) package { import flash.display.*; public dynamic class bottoms3 extends MovieClip { } }//package
Section 48
//bottoms4 (bottoms4) package { import flash.display.*; public dynamic class bottoms4 extends MovieClip { } }//package
Section 49
//bottoms5 (bottoms5) package { import flash.display.*; public dynamic class bottoms5 extends MovieClip { } }//package
Section 50
//bottoms6 (bottoms6) package { import flash.display.*; public dynamic class bottoms6 extends MovieClip { } }//package
Section 51
//bottoms7 (bottoms7) package { import flash.display.*; public dynamic class bottoms7 extends MovieClip { } }//package
Section 52
//bottoms8 (bottoms8) package { import flash.display.*; public dynamic class bottoms8 extends MovieClip { } }//package
Section 53
//bottoms9 (bottoms9) package { import flash.display.*; public dynamic class bottoms9 extends MovieClip { } }//package
Section 54
//chain1 (chain1) package { import flash.display.*; public dynamic class chain1 extends MovieClip { } }//package
Section 55
//chain2 (chain2) package { import flash.display.*; public dynamic class chain2 extends MovieClip { } }//package
Section 56
//chain3 (chain3) package { import flash.display.*; public dynamic class chain3 extends MovieClip { } }//package
Section 57
//chain4 (chain4) package { import flash.display.*; public dynamic class chain4 extends MovieClip { } }//package
Section 58
//chain5 (chain5) package { import flash.display.*; public dynamic class chain5 extends MovieClip { } }//package
Section 59
//dress1 (dress1) package { import flash.display.*; public dynamic class dress1 extends MovieClip { } }//package
Section 60
//dress10 (dress10) package { import flash.display.*; public dynamic class dress10 extends MovieClip { } }//package
Section 61
//dress11 (dress11) package { import flash.display.*; public dynamic class dress11 extends MovieClip { } }//package
Section 62
//dress12 (dress12) package { import flash.display.*; public dynamic class dress12 extends MovieClip { } }//package
Section 63
//dress13 (dress13) package { import flash.display.*; public dynamic class dress13 extends MovieClip { } }//package
Section 64
//dress14 (dress14) package { import flash.display.*; public dynamic class dress14 extends MovieClip { } }//package
Section 65
//dress15 (dress15) package { import flash.display.*; public dynamic class dress15 extends MovieClip { } }//package
Section 66
//dress2 (dress2) package { import flash.display.*; public dynamic class dress2 extends MovieClip { } }//package
Section 67
//dress3 (dress3) package { import flash.display.*; public dynamic class dress3 extends MovieClip { } }//package
Section 68
//dress4 (dress4) package { import flash.display.*; public dynamic class dress4 extends MovieClip { } }//package
Section 69
//dress5 (dress5) package { import flash.display.*; public dynamic class dress5 extends MovieClip { } }//package
Section 70
//dress6 (dress6) package { import flash.display.*; public dynamic class dress6 extends MovieClip { } }//package
Section 71
//dress7 (dress7) package { import flash.display.*; public dynamic class dress7 extends MovieClip { } }//package
Section 72
//dress8 (dress8) package { import flash.display.*; public dynamic class dress8 extends MovieClip { } }//package
Section 73
//dress9 (dress9) package { import flash.display.*; public dynamic class dress9 extends MovieClip { } }//package
Section 74
//earring1 (earring1) package { import flash.display.*; public dynamic class earring1 extends MovieClip { } }//package
Section 75
//earring2 (earring2) package { import flash.display.*; public dynamic class earring2 extends MovieClip { } }//package
Section 76
//earring3 (earring3) package { import flash.display.*; public dynamic class earring3 extends MovieClip { } }//package
Section 77
//earring4 (earring4) package { import flash.display.*; public dynamic class earring4 extends MovieClip { } }//package
Section 78
//earring5 (earring5) package { import flash.display.*; public dynamic class earring5 extends MovieClip { } }//package
Section 79
//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 80
//hair1 (hair1) package { import flash.display.*; public dynamic class hair1 extends MovieClip { } }//package
Section 81
//hair2 (hair2) package { import flash.display.*; public dynamic class hair2 extends MovieClip { } }//package
Section 82
//hair3 (hair3) package { import flash.display.*; public dynamic class hair3 extends MovieClip { } }//package
Section 83
//hair4 (hair4) package { import flash.display.*; public dynamic class hair4 extends MovieClip { } }//package
Section 84
//hair5 (hair5) package { import flash.display.*; public dynamic class hair5 extends MovieClip { } }//package
Section 85
//hair6 (hair6) package { import flash.display.*; public dynamic class hair6 extends MovieClip { } }//package
Section 86
//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 87
//shoe1 (shoe1) package { import flash.display.*; public dynamic class shoe1 extends MovieClip { } }//package
Section 88
//shoe2 (shoe2) package { import flash.display.*; public dynamic class shoe2 extends MovieClip { } }//package
Section 89
//shoe3 (shoe3) package { import flash.display.*; public dynamic class shoe3 extends MovieClip { } }//package
Section 90
//shoe4 (shoe4) package { import flash.display.*; public dynamic class shoe4 extends MovieClip { } }//package
Section 91
//shoe5 (shoe5) package { import flash.display.*; public dynamic class shoe5 extends MovieClip { } }//package
Section 92
//tops1 (tops1) package { import flash.display.*; public dynamic class tops1 extends MovieClip { } }//package
Section 93
//tops10 (tops10) package { import flash.display.*; public dynamic class tops10 extends MovieClip { } }//package
Section 94
//tops2 (tops2) package { import flash.display.*; public dynamic class tops2 extends MovieClip { } }//package
Section 95
//tops3 (tops3) package { import flash.display.*; public dynamic class tops3 extends MovieClip { } }//package
Section 96
//tops4 (tops4) package { import flash.display.*; public dynamic class tops4 extends MovieClip { } }//package
Section 97
//tops5 (tops5) package { import flash.display.*; public dynamic class tops5 extends MovieClip { } }//package
Section 98
//tops6 (tops6) package { import flash.display.*; public dynamic class tops6 extends MovieClip { } }//package
Section 99
//tops7 (tops7) package { import flash.display.*; public dynamic class tops7 extends MovieClip { } }//package
Section 100
//tops8 (tops8) package { import flash.display.*; public dynamic class tops8 extends MovieClip { } }//package
Section 101
//tops9 (tops9) package { import flash.display.*; public dynamic class tops9 extends MovieClip { } }//package

Library Items

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

Instance Names

"preloader"Frame 1Symbol 245 MovieClip {halloween_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 247 EditableText
"ball"Frame 1Symbol 296 MovieClip
"pl"Frame 2Symbol 359 MovieClip {halloween_fla.ssOKLJ_50}
"doll"Frame 3Symbol 381 MovieClip {halloween_fla.doll_57}
"hairpalette"Frame 3Symbol 382 MovieClip {halloween_fla.hairpalette_192}
"shoespalette"Frame 3Symbol 383 MovieClip {halloween_fla.shoespalette_193}
"dresspalette"Frame 3Symbol 384 MovieClip {halloween_fla.dresspalette_194}
"topspalette"Frame 3Symbol 385 MovieClip {halloween_fla.topspalette_195}
"bottomspalette"Frame 3Symbol 386 MovieClip {halloween_fla.bottomspalette_196}
"chainpalette"Frame 3Symbol 387 MovieClip {halloween_fla.chainpalette_197}
"earringpalette"Frame 3Symbol 388 MovieClip {halloween_fla.earringpalette_198}
"bagspalette"Frame 3Symbol 390 MovieClip
"buttons1"Frame 3Symbol 413 MovieClip {halloween_fla.ssbuttons_200}
"logo_mc"Frame 3Symbol 418 Button
"sndon"Frame 3Symbol 426 Button
"sndoff"Frame 3Symbol 427 Button
"nextbtn"Frame 4Symbol 429 MovieClip {halloween_fla.ssOKLJ_210}
"ent"Frame 4Symbol 441 MovieClip {halloween_fla.ssenteryourname_211}
"t1"Frame 4Symbol 444 EditableText
"ent"Frame 4Symbol 441 MovieClip {halloween_fla.ssenteryourname_211}
"dolls"Frame 5Symbol 381 MovieClip {halloween_fla.doll_57}
"nex"Frame 5Symbol 468 MovieClip {halloween_fla.ssHOE_214}
"playmore"Frame 5Symbol 485 MovieClip
"email"Frame 5Symbol 498 MovieClip {halloween_fla.ssOKLJ_226}
"t2"Frame 5Symbol 501 EditableText
"popup"Frame 5Symbol 548 MovieClip {halloween_fla.ssONMJKL_227}
"masker"Symbol 245 MovieClip {halloween_fla.cbvdsfdsf_loader_7} Frame 1Symbol 233 MovieClip
"shoes"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 370 MovieClip {halloween_fla.shoes_58}
"bottoms"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 371 MovieClip {halloween_fla.bottoms_72}
"tops"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 372 MovieClip {halloween_fla.tops_100}
"bags"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 374 MovieClip
"dress"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 375 MovieClip {halloween_fla.dress_125}
"chain"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 376 MovieClip {halloween_fla.chians_158}
"hair"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 377 MovieClip {halloween_fla.hairs_172}
"bags"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 379 MovieClip
"earring"Symbol 381 MovieClip {halloween_fla.doll_57} Frame 1Symbol 380 MovieClip {halloween_fla.earrings_182}
"h3"Symbol 382 MovieClip {halloween_fla.hairpalette_192} Frame 1Symbol 31 MovieClip
"h1"Symbol 382 MovieClip {halloween_fla.hairpalette_192} Frame 1Symbol 24 MovieClip
"h2"Symbol 382 MovieClip {halloween_fla.hairpalette_192} Frame 1Symbol 28 MovieClip
"h4"Symbol 382 MovieClip {halloween_fla.hairpalette_192} Frame 1Symbol 28 MovieClip
"h5"Symbol 382 MovieClip {halloween_fla.hairpalette_192} Frame 1Symbol 24 MovieClip
"h6"Symbol 382 MovieClip {halloween_fla.hairpalette_192} Frame 1Symbol 24 MovieClip
"s5"Symbol 383 MovieClip {halloween_fla.shoespalette_193} Frame 1Symbol 197 MovieClip
"s2"Symbol 383 MovieClip {halloween_fla.shoespalette_193} Frame 1Symbol 211 MovieClip
"s4"Symbol 383 MovieClip {halloween_fla.shoespalette_193} Frame 1Symbol 200 MovieClip
"s1"Symbol 383 MovieClip {halloween_fla.shoespalette_193} Frame 1Symbol 219 MovieClip
"s3"Symbol 383 MovieClip {halloween_fla.shoespalette_193} Frame 1Symbol 208 MovieClip
"d1"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 109 MovieClip
"d2"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 102 MovieClip
"d3"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 99 MovieClip
"d4"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 96 MovieClip
"d5"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 93 MovieClip
"d6"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 87 MovieClip
"d7"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 84 MovieClip
"d8"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 81 MovieClip
"d9"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 78 MovieClip
"d10"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 73 MovieClip
"d11"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 70 MovieClip
"d12"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 67 MovieClip
"d13"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 64 MovieClip
"d14"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 61 MovieClip
"d15"Symbol 384 MovieClip {halloween_fla.dresspalette_194} Frame 1Symbol 58 MovieClip
"t1"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 145 MovieClip
"t2"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 142 MovieClip
"t3"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 139 MovieClip
"t4"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 134 MovieClip
"t5"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 127 MovieClip
"t6"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 124 MovieClip
"t7"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 121 MovieClip
"t8"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 118 MovieClip
"t9"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 115 MovieClip
"t10"Symbol 385 MovieClip {halloween_fla.topspalette_195} Frame 1Symbol 112 MovieClip
"b1"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 194 MovieClip
"b2"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 186 MovieClip
"b10"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 148 MovieClip
"b3"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 175 MovieClip
"b4"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 171 MovieClip
"b5"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 165 MovieClip
"b6"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 160 MovieClip
"b7"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 157 MovieClip
"b8"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 154 MovieClip
"b9"Symbol 386 MovieClip {halloween_fla.bottomspalette_196} Frame 1Symbol 151 MovieClip
"c1"Symbol 387 MovieClip {halloween_fla.chainpalette_197} Frame 1Symbol 55 MovieClip
"c5"Symbol 387 MovieClip {halloween_fla.chainpalette_197} Frame 1Symbol 37 MovieClip
"c2"Symbol 387 MovieClip {halloween_fla.chainpalette_197} Frame 1Symbol 51 MovieClip
"c3"Symbol 387 MovieClip {halloween_fla.chainpalette_197} Frame 1Symbol 48 MovieClip
"c4"Symbol 387 MovieClip {halloween_fla.chainpalette_197} Frame 1Symbol 45 MovieClip
"e3"Symbol 388 MovieClip {halloween_fla.earringpalette_198} Frame 1Symbol 15 MovieClip
"e4"Symbol 388 MovieClip {halloween_fla.earringpalette_198} Frame 1Symbol 9 MovieClip
"e5"Symbol 388 MovieClip {halloween_fla.earringpalette_198} Frame 1Symbol 6 MovieClip
"e1"Symbol 388 MovieClip {halloween_fla.earringpalette_198} Frame 1Symbol 21 MovieClip
"e2"Symbol 388 MovieClip {halloween_fla.earringpalette_198} Frame 1Symbol 18 MovieClip
"nextbtn"Symbol 413 MovieClip {halloween_fla.ssbuttons_200} Frame 1Symbol 403 MovieClip {halloween_fla.ssOKLJ_201}
"resetbtn"Symbol 413 MovieClip {halloween_fla.ssbuttons_200} Frame 1Symbol 412 MovieClip {halloween_fla.ssOKLJ_203}
"playagain"Symbol 468 MovieClip {halloween_fla.ssHOE_214} Frame 1Symbol 467 MovieClip {halloween_fla.ssREPLAYBTN2_215}
"close"Symbol 530 MovieClip {halloween_fla.ssOHJKKL_236} Frame 1Symbol 526 Button
"friendMail"Symbol 530 MovieClip {halloween_fla.ssOHJKKL_236} Frame 1Symbol 529 EditableText
"friend4"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 530 MovieClip {halloween_fla.ssOHJKKL_236}
"friend3"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 530 MovieClip {halloween_fla.ssOHJKKL_236}
"friend2"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 530 MovieClip {halloween_fla.ssOHJKKL_236}
"friend1"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 530 MovieClip {halloween_fla.ssOHJKKL_236}
"close"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 526 Button
"nameDetail"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 531 EditableText
"mailDetail"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 532 EditableText
"messageDetail"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 533 EditableText
"friendName"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 534 EditableText
"friendMail"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 535 EditableText
"addition"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 543 Button
"submit"Symbol 548 MovieClip {halloween_fla.ssONMJKL_227} Frame 1Symbol 547 Button

Special Tags

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




http://swfchan.com/25/122637/info.shtml
Created: 3/3 -2019 21:28:49 Last modified: 3/3 -2019 21:28:49 Server time: 13/05 -2024 11:53:52