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

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

halloween-room-decor.swf

This is the info page for
Flash #111627

(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

.

halloween
room
decor

play

Enter Your Name

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

Next

11

12

1

2

10

9

8

7

6

5

4

3

!

reset

sound:on

sound:off

123PEPPY

Again

more

ActionScript [AS3]

Section 1
//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 2
//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 3
//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 4
//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 5
//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 6
//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 7
//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 8
//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 9
//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 10
//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 11
//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 12
//cbvdsfdsf_7 (halloweendecor_fla.cbvdsfdsf_7) package halloweendecor_fla { import flash.display.*; public dynamic class cbvdsfdsf_7 extends MovieClip { public var masker:MovieClip; } }//package halloweendecor_fla
Section 13
//cvbcvbcvbvcy_78_1_20 (halloweendecor_fla.cvbcvbcvbvcy_78_1_20) package halloweendecor_fla { import flash.display.*; public dynamic class cvbcvbcvbvcy_78_1_20 extends MovieClip { public function cvbcvbcvbvcy_78_1_20(){ addFrameScript(56, frame57); } function frame57(){ stop(); } } }//package halloweendecor_fla
Section 14
//MainTimeline (halloweendecor_fla.MainTimeline) package halloweendecor_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import flash.media.*; import flash.text.*; import flash.ui.*; import flash.utils.*; import flash.net.*; import flash.system.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.printing.*; import flash.xml.*; import gs.easing.*; public dynamic class MainTimeline extends MovieClip { public var previewbg:MovieClip; public var t1:TextField; public var objectArray:Array; public var i:uint; public var preloader:MovieClip; public var ds:MovieClip; public var nextbtn:SimpleButton; public var contestMenu:ContextMenu; public var percentage:Number; public var resetbtn:SimpleButton; public var logo_mc:SimpleButton; public var BitsLoaded:TextField; public var Objects:MovieClip; public var bullet:backscore; public var sndon:MovieClip; public var more:SimpleButton; public var sndoff:MovieClip; public var again:SimpleButton; public var point:Point; public var nex:SimpleButton; public var bulletChannel:SoundChannel; public var contextmenuItem:ContextMenuItem; public var preview:MovieClip; public var oo:TextField; public var ply:SimpleButton; 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 stopAll(_arg1:MouseEvent):void{ stopDrag(); } function frame2(){ stop(); ply.addEventListener(MouseEvent.CLICK, gamepage); } public function but_mod(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; } function frame4(){ stop(); previewbg.visible = false; objectArray = new Array(); i = 0; while (i < Objects.numChildren) { point = new Point(Objects.getChildAt(i).x, Objects.getChildAt(i).y); objectArray.push(point); Objects.getChildAt(i).addEventListener(MouseEvent.ROLL_OVER, enabl); Objects.getChildAt(i).addEventListener(MouseEvent.MOUSE_DOWN, process); i++; }; stage.addEventListener(MouseEvent.MOUSE_UP, stopAll); trace(objectArray); resetbtn.addEventListener(MouseEvent.CLICK, resetAll); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, gotoPeppy); }; preview.addEventListener(MouseEvent.ROLL_OVER, yespreview); nextbtn.addEventListener(MouseEvent.CLICK, page2); bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndoff.addEventListener(MouseEvent.ROLL_OVER, but_mod); sndon.addEventListener(MouseEvent.CLICK, sndst); sndon.addEventListener(MouseEvent.ROLL_OVER, but_mod); } function frame5(){ oo.text = Globe.entername; again.addEventListener(MouseEvent.CLICK, againplay); more.addEventListener(MouseEvent.CLICK, link); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; more.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); more.visible = true; }; } function frame1(){ stop(); contestMenu = new ContextMenu(); contestMenu.hideBuiltInItems(); contextmenuItem = new ContextMenuItem("http://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 frame3(){ MochiBot.track(this, "6851fc6b"); t1.text = ""; stage.addEventListener(Event.ENTER_FRAME, enterfun1); if (bulletChannel){ bulletChannel.stop(); }; } public function process(_arg1:MouseEvent):void{ _arg1.currentTarget.startDrag(); } public function okpreview(){ preview.addEventListener(MouseEvent.ROLL_OVER, yespreview); } public function againplay(_arg1:MouseEvent):void{ gotoAndStop(3); } public function gotoPeppy(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function nopreview(_arg1:MouseEvent):void{ preview.buttonMode = false; previewbg.visible = false; preview.removeEventListener(MouseEvent.ROLL_OVER, yespreview); preview.removeEventListener(MouseEvent.ROLL_OUT, nopreview); preview.h.y = 54.9; TweenLite.to(preview.h, 5, {y:21.4, onComplete:okpreview}); } public function yespreview(_arg1:MouseEvent):void{ preview.buttonMode = true; preview.h.y = 21.4; previewbg.visible = true; preview.addEventListener(MouseEvent.ROLL_OUT, nopreview); } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function enabl(_arg1:MouseEvent):void{ _arg1.currentTarget.buttonMode = true; } 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 = (((_local4 + "kbs /") + _local5) + "kbs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); gotoAndStop(2); }; } public function enterfun1(_arg1:Event):void{ if (t1.text == ""){ nex.visible = false; } else { nex.visible = true; nex.addEventListener(MouseEvent.CLICK, playpage); }; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function gamepage(_arg1:MouseEvent):void{ nextFrame(); } public function page2(_arg1:MouseEvent):void{ nextFrame(); } public function sndst(_arg1:MouseEvent):void{ bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.visible = true; sndon.visible = false; } public function playpage(_arg1:MouseEvent):void{ stage.removeEventListener(Event.ENTER_FRAME, enterfun1); nex.removeEventListener(MouseEvent.CLICK, playpage); Globe.entername = t1.text; nextFrame(); } public function resetAll(_arg1:MouseEvent):void{ i = 0; while (i < Objects.numChildren) { Objects.getChildAt(i).x = objectArray[i].x; Objects.getChildAt(i).y = objectArray[i].y; i++; }; } } }//package halloweendecor_fla
Section 15
//peppydfgfsds_19 (halloweendecor_fla.peppydfgfsds_19) package halloweendecor_fla { import flash.display.*; public dynamic class peppydfgfsds_19 extends MovieClip { public function peppydfgfsds_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package halloweendecor_fla
Section 16
//soundon_125 (halloweendecor_fla.soundon_125) package halloweendecor_fla { import flash.display.*; public dynamic class soundon_125 extends MovieClip { public function soundon_125(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package halloweendecor_fla
Section 17
//Symbol1copy2bcvb_129 (halloweendecor_fla.Symbol1copy2bcvb_129) package halloweendecor_fla { import flash.display.*; public dynamic class Symbol1copy2bcvb_129 extends MovieClip { public function Symbol1copy2bcvb_129(){ addFrameScript(0, frame1, 24, frame25); } function frame1(){ gotoAndPlay(Math.round(((Math.random() * Math.random()) * 50))); } function frame25(){ gotoAndPlay(Math.round(((Math.random() * Math.random()) * 50))); } } }//package halloweendecor_fla
Section 18
//Symbol1copy3bcvbcb_130 (halloweendecor_fla.Symbol1copy3bcvbcb_130) package halloweendecor_fla { import flash.display.*; public dynamic class Symbol1copy3bcvbcb_130 extends MovieClip { public function Symbol1copy3bcvbcb_130(){ addFrameScript(0, frame1, 25, frame26); } function frame1(){ gotoAndPlay(Math.round(((Math.random() * Math.random()) * 50))); } function frame26(){ gotoAndPlay(Math.round(((Math.random() * Math.random()) * 50))); } } }//package halloweendecor_fla
Section 19
//Symbol1copybvcb_128 (halloweendecor_fla.Symbol1copybvcb_128) package halloweendecor_fla { import flash.display.*; public dynamic class Symbol1copybvcb_128 extends MovieClip { public function Symbol1copybvcb_128(){ addFrameScript(0, frame1, 34, frame35); } function frame1(){ gotoAndPlay(Math.round(((Math.random() * Math.random()) * 50))); } function frame35(){ gotoAndPlay(Math.round(((Math.random() * Math.random()) * 50))); } } }//package halloweendecor_fla
Section 20
//Symbol1xcvzxcv_127 (halloweendecor_fla.Symbol1xcvzxcv_127) package halloweendecor_fla { import flash.display.*; public dynamic class Symbol1xcvzxcv_127 extends MovieClip { public function Symbol1xcvzxcv_127(){ addFrameScript(0, frame1, 26, frame27); } function frame1(){ gotoAndPlay(Math.round(((Math.random() * Math.random()) * 50))); } function frame27(){ gotoAndPlay(Math.round((((Math.random() * Math.random()) * Math.random()) * 20))); } } }//package halloweendecor_fla
Section 21
//Symbol1zxcvxc_140 (halloweendecor_fla.Symbol1zxcvxc_140) package halloweendecor_fla { import flash.display.*; import flash.text.*; public dynamic class Symbol1zxcvxc_140 extends MovieClip { public var oo:TextField; } }//package halloweendecor_fla
Section 22
//Symbol40_131 (halloweendecor_fla.Symbol40_131) package halloweendecor_fla { import flash.display.*; public dynamic class Symbol40_131 extends MovieClip { public function Symbol40_131(){ addFrameScript(0, frame1); } function frame1(){ visible = false; } } }//package halloweendecor_fla
Section 23
//xcvSymbol23_118 (halloweendecor_fla.xcvSymbol23_118) package halloweendecor_fla { import flash.display.*; public dynamic class xcvSymbol23_118 extends MovieClip { public var c:MovieClip; public var h:MovieClip; public function xcvSymbol23_118(){ addFrameScript(0, frame1); } function frame1(){ c.mask = h; } } }//package halloweendecor_fla
Section 24
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 25
//Globe (Globe) package { public class Globe { public static var entername:String; public static var tex:String = ""; } }//package
Section 26
//MochiBot (MochiBot) package { import flash.display.*; import flash.net.*; import flash.system.*; public dynamic class MochiBot extends Sprite { public static function track(_arg1:Sprite, _arg2:String):MochiBot{ var _local3:MochiBot; var _local4:String; var _local5:URLVariables; var _local6:String; var _local7:URLRequest; var _local8:Loader; if (Security.sandboxType == "localWithFile"){ return (null); }; _local3 = new (MochiBot); _arg1.addChild(_local3); Security.allowDomain("*"); Security.allowInsecureDomain("*"); _local4 = "http://core.mochibot.com/my/core.swf"; _local5 = new URLVariables(); _local5["sb"] = Security.sandboxType; _local5["v"] = Capabilities.version; _local5["swfid"] = _arg2; _local5["mv"] = "8"; _local5["fv"] = "9"; _local6 = _local3.root.loaderInfo.loaderURL; if (_local6.indexOf("http") == 0){ _local5["url"] = _local6; } else { _local5["url"] = "local"; }; _local7 = new URLRequest(_local4); _local7.contentType = "application/x-www-form-urlencoded"; _local7.method = URLRequestMethod.POST; _local7.data = _local5; _local8 = new Loader(); _local3.addChild(_local8); _local8.load(_local7); return (_local3); } } }//package

Library Items

Symbol 1 Sound {backscore}
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:12
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:12
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:12
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:12
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:3 5 7 9 11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:26
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:26
Symbol 17 GraphicUsed by:26
Symbol 18 GraphicUsed by:26
Symbol 19 GraphicUsed by:26
Symbol 20 GraphicUsed by:26
Symbol 21 GraphicUsed by:26
Symbol 22 GraphicUsed by:26
Symbol 23 GraphicUsed by:26
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip {halloweendecor_fla.cbvdsfdsf_7}Uses:14 16 17 18 19 20 21 22 23 24 25Used by:Timeline
Symbol 27 FontUsed by:28
Symbol 28 EditableTextUses:27Used by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:Timeline
Symbol 32 FontUsed by:33
Symbol 33 TextUses:32Used by:Timeline
Symbol 34 GraphicUsed by:58
Symbol 35 GraphicUsed by:37
Symbol 36 MovieClipUsed by:37
Symbol 37 MovieClipUses:35 36Used by:58
Symbol 38 GraphicUsed by:48
Symbol 39 ShapeTweeningUsed by:47
Symbol 40 GraphicUsed by:47
Symbol 41 ShapeTweeningUsed by:47
Symbol 42 GraphicUsed by:47
Symbol 43 ShapeTweeningUsed by:47
Symbol 44 GraphicUsed by:47
Symbol 45 ShapeTweeningUsed by:47
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:39 40 41 42 43 44 45 46Used by:48
Symbol 48 MovieClipUses:38 47Used by:56
Symbol 49 GraphicUsed by:54
Symbol 50 GraphicUsed by:54
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:54
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:49 50 52 53Used by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:48 54 55Used by:58
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:34 37 56 57Used by:Timeline
Symbol 59 FontUsed by:60 61 62 63 64 65 67 68 69 70 71 72 73 74 410
Symbol 60 TextUses:59Used by:66
Symbol 61 TextUses:59Used by:66
Symbol 62 TextUses:59Used by:66
Symbol 63 TextUses:59Used by:66
Symbol 64 TextUses:59Used by:66
Symbol 65 TextUses:59Used by:66
Symbol 66 MovieClip {halloweendecor_fla.peppydfgfsds_19}Uses:60 61 62 63 64 65Used by:Timeline
Symbol 67 TextUses:59Used by:75
Symbol 68 TextUses:59Used by:75
Symbol 69 TextUses:59Used by:75
Symbol 70 TextUses:59Used by:75
Symbol 71 TextUses:59Used by:75
Symbol 72 TextUses:59Used by:75
Symbol 73 TextUses:59Used by:75
Symbol 74 TextUses:59Used by:75
Symbol 75 MovieClip {halloweendecor_fla.cvbcvbcvbvcy_78_1_20}Uses:67 68 69 70 71 72 73 74Used by:Timeline
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:141
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:141
Symbol 80 GraphicUsed by:83
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:83
Symbol 83 MovieClipUses:80 82Used by:84
Symbol 84 MovieClipUses:83Used by:141
Symbol 85 GraphicUsed by:141
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:141
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:141
Symbol 90 GraphicUsed by:140
Symbol 91 GraphicUsed by:92 297 343
Symbol 92 MovieClipUses:91Used by:140
Symbol 93 GraphicUsed by:140
Symbol 94 GraphicUsed by:140
Symbol 95 GraphicUsed by:140
Symbol 96 GraphicUsed by:140
Symbol 97 GraphicUsed by:140
Symbol 98 GraphicUsed by:140
Symbol 99 GraphicUsed by:140
Symbol 100 GraphicUsed by:140
Symbol 101 GraphicUsed by:140
Symbol 102 GraphicUsed by:140
Symbol 103 GraphicUsed by:140
Symbol 104 GraphicUsed by:140
Symbol 105 GraphicUsed by:140
Symbol 106 GraphicUsed by:140
Symbol 107 GraphicUsed by:140
Symbol 108 GraphicUsed by:140
Symbol 109 GraphicUsed by:140
Symbol 110 GraphicUsed by:140
Symbol 111 GraphicUsed by:140
Symbol 112 GraphicUsed by:140
Symbol 113 GraphicUsed by:140
Symbol 114 GraphicUsed by:140
Symbol 115 GraphicUsed by:140
Symbol 116 GraphicUsed by:140
Symbol 117 GraphicUsed by:140
Symbol 118 GraphicUsed by:140
Symbol 119 GraphicUsed by:140
Symbol 120 GraphicUsed by:140
Symbol 121 GraphicUsed by:140
Symbol 122 GraphicUsed by:140
Symbol 123 GraphicUsed by:140
Symbol 124 GraphicUsed by:140
Symbol 125 GraphicUsed by:140
Symbol 126 GraphicUsed by:140
Symbol 127 GraphicUsed by:140
Symbol 128 GraphicUsed by:140 343
Symbol 129 GraphicUsed by:140
Symbol 130 GraphicUsed by:140
Symbol 131 GraphicUsed by:140
Symbol 132 GraphicUsed by:140
Symbol 133 GraphicUsed by:140
Symbol 134 GraphicUsed by:140
Symbol 135 GraphicUsed by:140
Symbol 136 GraphicUsed by:140
Symbol 137 GraphicUsed by:140
Symbol 138 GraphicUsed by:140
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139Used by:141
Symbol 141 MovieClipUses:77 79 84 85 87 89 140Used by:Timeline
Symbol 142 FontUsed by:148
Symbol 143 FontUsed by:148
Symbol 144 FontUsed by:148
Symbol 145 FontUsed by:148
Symbol 146 FontUsed by:148
Symbol 147 Font
Symbol 148 TextUses:142 143 144 145 146Used by:150
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:148 149Used by:Timeline
Symbol 151 ShapeTweeningUsed by:157
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:152Used by:157
Symbol 154 ShapeTweeningUsed by:157
Symbol 155 ShapeTweeningUsed by:157
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:151 153 154 155 156Used by:Timeline
Symbol 158 GraphicUsed by:159 163
Symbol 159 MovieClipUses:158Used by:163
Symbol 160 FontUsed by:161 172 175 178 389 413 416
Symbol 161 TextUses:160Used by:162 163
Symbol 162 MovieClipUses:161Used by:163
Symbol 163 ButtonUses:159 162 158 161Used by:Timeline
Symbol 164 GraphicUsed by:Timeline
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:171
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:171
Symbol 169 GraphicUsed by:170
Symbol 170 MovieClipUses:169Used by:171
Symbol 171 MovieClipUses:166 168 170Used by:378  Timeline
Symbol 172 TextUses:160Used by:Timeline
Symbol 173 GraphicUsed by:174
Symbol 174 ButtonUses:173Used by:Timeline
Symbol 175 EditableTextUses:160Used by:Timeline
Symbol 176 GraphicUsed by:177 180 390 415 418
Symbol 177 MovieClipUses:176Used by:180 390 415 418
Symbol 178 TextUses:160Used by:179 180
Symbol 179 MovieClipUses:178Used by:180
Symbol 180 ButtonUses:177 179 176 178Used by:Timeline
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:372 377
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:183Used by:372 377
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:185Used by:371 372 377
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:190 372 377
Symbol 189 GraphicUsed by:191
Symbol 190 MovieClipUses:188Used by:191
Symbol 191 MovieClipUses:189 190Used by:372 377
Symbol 192 GraphicUsed by:195
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:195
Symbol 195 MovieClipUses:192 194Used by:372 377
Symbol 196 GraphicUsed by:204
Symbol 197 ShapeTweeningUsed by:203
Symbol 198 ShapeTweeningUsed by:203
Symbol 199 ShapeTweeningUsed by:203
Symbol 200 ShapeTweeningUsed by:203
Symbol 201 ShapeTweeningUsed by:203
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:197 198 199 200 201 202Used by:204
Symbol 204 MovieClipUses:196 203Used by:372 377
Symbol 205 GraphicUsed by:206
Symbol 206 MovieClipUses:205Used by:372 377
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:372 377
Symbol 209 GraphicUsed by:210
Symbol 210 MovieClipUses:209Used by:372 377
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClipUses:211Used by:214
Symbol 213 GraphicUsed by:214
Symbol 214 MovieClipUses:212 213Used by:372 377
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215Used by:372 377
Symbol 217 GraphicUsed by:220
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:218Used by:220
Symbol 220 MovieClipUses:217 219Used by:221
Symbol 221 MovieClipUses:220Used by:372 377
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:222Used by:226 230
Symbol 224 GraphicUsed by:225
Symbol 225 MovieClipUses:224Used by:226 229 230
Symbol 226 MovieClipUses:223 225Used by:372 377
Symbol 227 GraphicUsed by:228
Symbol 228 MovieClipUses:227Used by:229
Symbol 229 MovieClipUses:228 225Used by:372 377
Symbol 230 MovieClipUses:223 225Used by:372 377
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:231Used by:372 377
Symbol 233 GraphicUsed by:234
Symbol 234 MovieClipUses:233Used by:372 377
Symbol 235 GraphicUsed by:236
Symbol 236 MovieClipUses:235Used by:372 377
Symbol 237 GraphicUsed by:242
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:238Used by:242
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:240Used by:242
Symbol 242 MovieClipUses:237 239 241Used by:372 377
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:243Used by:245
Symbol 245 MovieClipUses:244Used by:372 377
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:246Used by:372 377
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:248Used by:258
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:258
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:252Used by:258
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:254Used by:258
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:256Used by:258
Symbol 258 MovieClipUses:249 251 253 255 257Used by:372 377
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:259Used by:269
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClipUses:261Used by:269
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClipUses:263Used by:269
Symbol 265 GraphicUsed by:266
Symbol 266 MovieClipUses:265Used by:269
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:267Used by:269
Symbol 269 MovieClipUses:260 262 264 266 268Used by:372 377
Symbol 270 GraphicUsed by:271
Symbol 271 MovieClipUses:270Used by:372 377
Symbol 272 GraphicUsed by:273
Symbol 273 MovieClipUses:272Used by:372 374
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:372 374
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:276Used by:372 374
Symbol 278 GraphicUsed by:283
Symbol 279 ShapeTweeningUsed by:282
Symbol 280 ShapeTweeningUsed by:282
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:279 280 281Used by:283
Symbol 283 MovieClipUses:278 282Used by:372 377
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClipUses:284Used by:372 377
Symbol 286 GraphicUsed by:287
Symbol 287 MovieClipUses:286Used by:372 377
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:372 377
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:372 377
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:372 377
Symbol 294 GraphicUsed by:295
Symbol 295 MovieClipUses:294Used by:372 377
Symbol 296 GraphicUsed by:343
Symbol 297 MovieClipUses:91Used by:343
Symbol 298 GraphicUsed by:343
Symbol 299 GraphicUsed by:343
Symbol 300 GraphicUsed by:343
Symbol 301 GraphicUsed by:343
Symbol 302 GraphicUsed by:343
Symbol 303 GraphicUsed by:343
Symbol 304 GraphicUsed by:343
Symbol 305 GraphicUsed by:343
Symbol 306 GraphicUsed by:343
Symbol 307 GraphicUsed by:343
Symbol 308 GraphicUsed by:343
Symbol 309 GraphicUsed by:343
Symbol 310 GraphicUsed by:343
Symbol 311 GraphicUsed by:343
Symbol 312 GraphicUsed by:343
Symbol 313 GraphicUsed by:343
Symbol 314 GraphicUsed by:343
Symbol 315 GraphicUsed by:343
Symbol 316 GraphicUsed by:343
Symbol 317 GraphicUsed by:343
Symbol 318 GraphicUsed by:343
Symbol 319 GraphicUsed by:343
Symbol 320 GraphicUsed by:343
Symbol 321 GraphicUsed by:343
Symbol 322 GraphicUsed by:343
Symbol 323 GraphicUsed by:343
Symbol 324 GraphicUsed by:343
Symbol 325 GraphicUsed by:343
Symbol 326 GraphicUsed by:343
Symbol 327 GraphicUsed by:343
Symbol 328 GraphicUsed by:343
Symbol 329 GraphicUsed by:343
Symbol 330 GraphicUsed by:343
Symbol 331 GraphicUsed by:343
Symbol 332 GraphicUsed by:343
Symbol 333 GraphicUsed by:343
Symbol 334 GraphicUsed by:343
Symbol 335 GraphicUsed by:343
Symbol 336 GraphicUsed by:343
Symbol 337 GraphicUsed by:343
Symbol 338 GraphicUsed by:343
Symbol 339 GraphicUsed by:343
Symbol 340 GraphicUsed by:343
Symbol 341 GraphicUsed by:343
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 91 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 128 332 333 334 335 336 337 338 339 340 341 342Used by:372 377
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClipUses:344Used by:368
Symbol 346 GraphicUsed by:347
Symbol 347 MovieClipUses:346Used by:368
Symbol 348 GraphicUsed by:353
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349Used by:353
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351Used by:353
Symbol 353 MovieClipUses:348 350 352Used by:368
Symbol 354 GraphicUsed by:368
Symbol 355 FontUsed by:356 357 358 359 360 361 362 363 364 365 366 367
Symbol 356 TextUses:355Used by:368
Symbol 357 TextUses:355Used by:368
Symbol 358 TextUses:355Used by:368
Symbol 359 TextUses:355Used by:368
Symbol 360 TextUses:355Used by:368
Symbol 361 TextUses:355Used by:368
Symbol 362 TextUses:355Used by:368
Symbol 363 TextUses:355Used by:368
Symbol 364 TextUses:355Used by:368
Symbol 365 TextUses:355Used by:368
Symbol 366 TextUses:355Used by:368
Symbol 367 TextUses:355Used by:368
Symbol 368 MovieClipUses:345 347 353 354 356 357 358 359 360 361 362 363 364 365 366 367Used by:372 377
Symbol 369 GraphicUsed by:370
Symbol 370 MovieClipUses:369Used by:372
Symbol 371 MovieClipUses:186Used by:372
Symbol 372 MovieClipUses:182 184 186 188 191 195 204 206 208 210 214 216 221 226 229 230 232 234 236 242 245 247 258 269 271 273 275 277 283 285 287 289 291 293 295 343 368 370 371Used by:Timeline
Symbol 373 GraphicUsed by:377
Symbol 374 MovieClipUses:273 275 277Used by:377
Symbol 375 GraphicUsed by:376
Symbol 376 MovieClipUses:375Used by:377
Symbol 377 MovieClipUses:373 182 184 186 188 191 195 204 206 208 210 214 216 221 226 229 230 232 234 236 242 245 247 258 269 271 374 283 285 287 289 291 293 295 343 368 376Used by:378
Symbol 378 MovieClipUses:171 377Used by:Timeline
Symbol 379 GraphicUsed by:385
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:380Used by:385
Symbol 382 FontUsed by:383
Symbol 383 TextUses:382Used by:384
Symbol 384 MovieClipUses:383Used by:385
Symbol 385 MovieClipUses:379 381 384Used by:388
Symbol 386 GraphicUsed by:387
Symbol 387 MovieClipUses:386Used by:388
Symbol 388 MovieClip {halloweendecor_fla.xcvSymbol23_118}Uses:385 387Used by:Timeline
Symbol 389 TextUses:160Used by:390
Symbol 390 ButtonUses:177 389 176Used by:Timeline
Symbol 391 FontUsed by:392 406
Symbol 392 TextUses:391Used by:402
Symbol 393 GraphicUsed by:400 405
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClip {halloweendecor_fla.Symbol1xcvzxcv_127}Uses:394Used by:400
Symbol 396 GraphicUsed by:397 398 399
Symbol 397 MovieClip {halloweendecor_fla.Symbol1copybvcb_128}Uses:396Used by:400
Symbol 398 MovieClip {halloweendecor_fla.Symbol1copy2bcvb_129}Uses:396Used by:400
Symbol 399 MovieClip {halloweendecor_fla.Symbol1copy3bcvbcb_130}Uses:396Used by:400
Symbol 400 MovieClipUses:393 395 397 398 399Used by:402
Symbol 401 GraphicUsed by:402 407
Symbol 402 MovieClip {halloweendecor_fla.soundon_125}Uses:392 400 401Used by:403
Symbol 403 MovieClipUses:402Used by:Timeline
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:393 404Used by:407
Symbol 406 TextUses:391Used by:407
Symbol 407 MovieClipUses:405 406 401Used by:408
Symbol 408 MovieClip {halloweendecor_fla.Symbol40_131}Uses:407Used by:Timeline
Symbol 409 GraphicUsed by:411 412
Symbol 410 TextUses:59Used by:411 412
Symbol 411 MovieClipUses:409 410Used by:412
Symbol 412 ButtonUses:411 409 410Used by:Timeline
Symbol 413 TextUses:160Used by:414 415
Symbol 414 MovieClipUses:413Used by:415
Symbol 415 ButtonUses:177 414 176 413Used by:Timeline
Symbol 416 TextUses:160Used by:417 418
Symbol 417 MovieClipUses:416Used by:418
Symbol 418 ButtonUses:177 417 176 416Used by:Timeline
Symbol 419 GraphicUsed by:420
Symbol 420 MovieClipUses:419Used by:421
Symbol 421 MovieClipUses:420Used by:424
Symbol 422 FontUsed by:423 425
Symbol 423 EditableTextUses:422Used by:424
Symbol 424 MovieClip {halloweendecor_fla.Symbol1zxcvxc_140}Uses:421 423Used by:Timeline
Symbol 425 EditableTextUses:422Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 26 MovieClip {halloweendecor_fla.cbvdsfdsf_7}
"BitsLoaded"Frame 1Symbol 28 EditableText
"ball"Frame 1Symbol 75 MovieClip {halloweendecor_fla.cvbcvbcvbvcy_78_1_20}
"ply"Frame 2Symbol 163 Button
"t1"Frame 3Symbol 175 EditableText
"nex"Frame 3Symbol 180 Button
"Objects"Frame 4Symbol 372 MovieClip
"previewbg"Frame 4Symbol 378 MovieClip
"preview"Frame 4Symbol 388 MovieClip {halloweendecor_fla.xcvSymbol23_118}
"nextbtn"Frame 4Symbol 180 Button
"resetbtn"Frame 4Symbol 390 Button
"sndoff"Frame 4Symbol 403 MovieClip
"sndon"Frame 4Symbol 408 MovieClip {halloweendecor_fla.Symbol40_131}
"logo_mc"Frame 4Symbol 412 Button
"again"Frame 5Symbol 415 Button
"more"Frame 5Symbol 418 Button
"ds"Frame 5Symbol 424 MovieClip {halloweendecor_fla.Symbol1zxcvxc_140}
"oo"Frame 5Symbol 425 EditableText
"masker"Symbol 26 MovieClip {halloweendecor_fla.cbvdsfdsf_7} Frame 1Symbol 14 MovieClip
"c"Symbol 388 MovieClip {halloweendecor_fla.xcvSymbol23_118} Frame 1Symbol 385 MovieClip
"h"Symbol 388 MovieClip {halloweendecor_fla.xcvSymbol23_118} Frame 1Symbol 387 MovieClip
"oo"Symbol 424 MovieClip {halloweendecor_fla.Symbol1zxcvxc_140} Frame 1Symbol 423 EditableText

Special Tags

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




http://swfchan.com/23/111627/info.shtml
Created: 12/3 -2019 21:41:29 Last modified: 12/3 -2019 21:41:29 Server time: 22/12 -2024 01:24:18