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

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

cupcake-kate.swf

This is the info page for
Flash #118896

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


Text
Play More
Dressup Games

Free Games For
Your Website

intro

category1:

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">category2:</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 5</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 6</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 7</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 8</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 9</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 10</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">category3:</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 1</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 1</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 2</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 3</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 4</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">category4:</font></p>

4

e

m

a

r

f

3

5

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">category5:</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">category6:</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">category7:</font></p>

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">category8:</font></p>

ActionScript [AS3]

Section 1
//McBackground (assets.scene.McBackground) package assets.scene { import flash.display.*; public dynamic class McBackground extends MovieClip { } }//package assets.scene
Section 2
//McModel (assets.scene.McModel) package assets.scene { import flash.display.*; public dynamic class McModel extends MovieClip { public var mcPart1:MovieClip; public var mcPart2:MovieClip; public var mcPart5:MovieClip; public var mcPart6:MovieClip; public var mcPart8:MovieClip; public var mcPart3:MovieClip; public var mcPart7:MovieClip; public var mcPart4:MovieClip; } }//package assets.scene
Section 3
//McScene (assets.scene.McScene) package assets.scene { import flash.display.*; public dynamic class McScene extends MovieClip { public var mcCatButtons:MovieClip; public var mcModel:McModel; public var mcControlPanel:McControlPanel; public var mcBackground:McBackground; public var mcCatPanels:MovieClip; public var mcBgButtons:MovieClip; } }//package assets.scene
Section 4
//McIntro (assets.McIntro) package assets { import flash.display.*; public dynamic class McIntro extends MovieClip { } }//package assets
Section 5
//Conveyor (common.commands.Conveyor) package common.commands { public class Conveyor { private var _items:Array; private var _active:Boolean;// = true private var _currentItem:Object; public function Conveyor(){ _items = []; super(); } public function get active():Boolean{ return (_active); } private function executeNext():void{ while (((_active) && ((_items.length > 0)))) { _currentItem = _items.shift(); if ((_currentItem is IAsincCommand)){ IAsincCommand(_currentItem).completeEvent.addListener(onComplete); IAsincCommand(_currentItem).execute(); break; } else { if ((_currentItem is Function)){ _currentItem(); _currentItem = null; } else { if ((_currentItem is ICommand)){ ICommand(_currentItem).execute(); _currentItem = null; }; }; }; }; } public function set active(_arg1:Boolean):void{ if (_active != _arg1){ _active = _arg1; }; } public function pushAction(_arg1:Object):void{ if ((((_arg1 is Function)) || ((_arg1 is ICommand)))){ _items.push(_arg1); } else { throw (new ArgumentError()); }; checkForExecute(); } private function checkForExecute():void{ if (((_active) && (!(_currentItem)))){ executeNext(); }; } private function onComplete():void{ resetCurrentItem(); executeNext(); } private function resetCurrentItem():void{ IAsincCommand(_currentItem).completeEvent.removeListener(onComplete); _currentItem = null; } public function dispose():void{ if ((_currentItem is ICancelableCommand)){ ICancelableCommand(_currentItem).cancel(); }; if ((_currentItem is IAsincCommand)){ resetCurrentItem(); }; _items = null; } } }//package common.commands
Section 6
//IAsincCommand (common.commands.IAsincCommand) package common.commands { import common.events.*; public interface IAsincCommand extends ICommand { function get completeEvent():EventSender; } }//package common.commands
Section 7
//ICancelableCommand (common.commands.ICancelableCommand) package common.commands { public interface ICancelableCommand extends IAsincCommand { function cancel():void; } }//package common.commands
Section 8
//ICommand (common.commands.ICommand) package common.commands { public interface ICommand { function execute():void; } }//package common.commands
Section 9
//IRequirement (common.comparing.IRequirement) package common.comparing { public interface IRequirement { function accept(_arg1:Object):Boolean; } }//package common.comparing
Section 10
//MultipleFramesRequirement (common.comparing.MultipleFramesRequirement) package common.comparing { import flash.display.*; public class MultipleFramesRequirement implements IRequirement { public function accept(_arg1:Object):Boolean{ return ((((_arg1 is MovieClip)) && ((MovieClip(_arg1).totalFrames > 1)))); } } }//package common.comparing
Section 11
//NameRequirement (common.comparing.NameRequirement) package common.comparing { public class NameRequirement implements IRequirement { private var _value:String; private var _property:String; private var _isPrefix:Boolean; public function NameRequirement(_arg1:String, _arg2:Boolean=false){ _property = "name"; _value = _arg1; _isPrefix = _arg2; } public function accept(_arg1:Object):Boolean{ if (_isPrefix){ return (((((_arg1) && (_arg1.hasOwnProperty(_property)))) && ((String(_arg1[_property]).indexOf(_value) == 0)))); }; return (((((_arg1) && (_arg1.hasOwnProperty(_property)))) && ((_arg1[_property] == _value)))); } } }//package common.comparing
Section 12
//PropertyRequirement (common.comparing.PropertyRequirement) package common.comparing { public class PropertyRequirement implements IRequirement { private var _value:Object; private var _path:Array; public function PropertyRequirement(_arg1:String, _arg2:Object){ _path = _arg1.split("."); _value = _arg2; } public function accept(_arg1:Object):Boolean{ var _local3:String; if (!_arg1){ return (false); }; var _local2:Object = _arg1; for each (_local3 in _path) { if (((_local2) && (_local2.hasOwnProperty(_local3)))){ _local2 = _local2[_local3]; } else { return (false); }; }; return ((_local2 == _value)); } } }//package common.comparing
Section 13
//TypeRequirement (common.comparing.TypeRequirement) package common.comparing { public class TypeRequirement implements IRequirement { private var _type:Class; public function TypeRequirement(_arg1:Class){ _type = _arg1; } public function accept(_arg1:Object):Boolean{ return ((_arg1 is _type)); } } }//package common.comparing
Section 14
//ConstructorConverter (common.converting.ConstructorConverter) package common.converting { public class ConstructorConverter implements IConverter { private var _constructor:Class; public function ConstructorConverter(_arg1:Class){ _constructor = _arg1; } public function convert(_arg1:Object):Object{ return (new _constructor(_arg1)); } } }//package common.converting
Section 15
//IConverter (common.converting.IConverter) package common.converting { public interface IConverter { function convert(_arg1:Object):Object; } }//package common.converting
Section 16
//EventManager (common.events.EventManager) package common.events { import flash.events.*; public class EventManager { private var _listeners:Array; private var _nativeListeners:Array; public function EventManager(){ _listeners = []; _nativeListeners = []; super(); } private function getEventIndex(_arg1:EventSender, _arg2:Function):int{ var _local4:EventData; var _local3:int; while (_local3 < _listeners.length) { _local4 = _listeners[_local3]; if ((((_local4.event == _arg1)) && ((_local4.handler == _arg2)))){ return (_local3); }; _local3++; }; return (-1); } public function unregisterNativeEvent(_arg1:EventDispatcher, _arg2:String, _arg3:Function, _arg4:Boolean=false):void{ var _local5:int = getNativeEventIndex(_arg1, _arg2, _arg3, _arg4); if (_local5 == -1){ throw (new Error("Event is not registered")); }; _arg1.removeEventListener(_arg2, _arg3, _arg4); _nativeListeners.splice(_local5, 1); } public function registerEvent(_arg1:EventSender, _arg2:Function):void{ var _local3:int = getEventIndex(_arg1, _arg2); if (_local3 >= 0){ throw (new Error("Event is already registered.")); }; _arg1.addListener(_arg2); _listeners.push(new EventData(_arg1, _arg2)); } public function registerNativeEvent(_arg1:EventDispatcher, _arg2:String, _arg3:Function, _arg4:Boolean=false):void{ var _local5:int = getNativeEventIndex(_arg1, _arg2, _arg3, _arg4); if (_local5 >= 0){ throw (new Error("Event is already registered")); }; _arg1.addEventListener(_arg2, _arg3, _arg4); _nativeListeners.push(new NativeEventData(_arg1, _arg2, _arg3, _arg4)); } private function getNativeEventIndex(_arg1:EventDispatcher, _arg2:String, _arg3:Function, _arg4:Boolean):int{ var _local6:NativeEventData; var _local5:int; while (_local5 < _nativeListeners.length) { _local6 = _nativeListeners[_local5]; if ((((((((_local6.object == _arg1)) && ((_local6.type == _arg2)))) && ((_local6.listener == _arg3)))) && ((_local6.useCapture == _arg4)))){ return (_local5); }; _local5++; }; return (-1); } public function clearEvents():void{ var _local1:EventData; var _local2:NativeEventData; for each (_local1 in _listeners) { _local1.event.removeListener(_local1.handler); }; _listeners = []; for each (_local2 in _nativeListeners) { _local2.object.removeEventListener(_local2.type, _local2.listener, _local2.useCapture); }; _nativeListeners = []; } public function unregisterEvent(_arg1:EventSender, _arg2:Function):void{ var _local3:int = getEventIndex(_arg1, _arg2); if (_local3 == -1){ throw (new Error("Event is not registered")); }; _arg1.removeListener(_arg2); _listeners.splice(_local3, 1); } } }//package common.events import flash.events.*; class EventData { public var handler:Function; public var event:EventSender; private function EventData(_arg1:EventSender, _arg2:Function):void{ this.event = _arg1; this.handler = _arg2; } } class NativeEventData { public var listener:Function; public var useCapture:Boolean; public var type:String; public var object:EventDispatcher; private function NativeEventData(_arg1:EventDispatcher, _arg2:String, _arg3:Function, _arg4:Boolean):void{ this.object = _arg1; this.type = _arg2; this.listener = _arg3; this.useCapture = _arg4; } }
Section 17
//EventSender (common.events.EventSender) package common.events { public class EventSender { private var _listeners:Array; private var _sender:Object; public function EventSender(_arg1:Object){ _listeners = []; super(); _sender = _arg1; } public function sendEvent(_arg1=null):void{ var _local3:Function; var _local2:Array = _listeners.slice(); for each (_local3 in _local2) { if (_local3.length == 0){ _local3(); } else { if (_local3.length == 1){ _local3(_sender); } else { if (_local3.length == 2){ _local3(_sender, _arg1); } else { throw (new ArgumentError("Incorrect number of arguments in handler")); }; }; }; }; } public function addListener(_arg1:Function):void{ if (hasListener(_arg1)){ throw (new Error("List already contains such listener")); }; _listeners.push(_arg1); } public function hasListener(_arg1:Function):Boolean{ return ((_listeners.indexOf(_arg1) >= 0)); } public function removeListener(_arg1:Function):void{ if (hasListener(_arg1)){ _listeners.splice(_listeners.indexOf(_arg1), 1); } else { throw (new Error("List doesn't contain such listener")); }; } } }//package common.events
Section 18
//PlayIntroCommand (common.flash.commands.PlayIntroCommand) package common.flash.commands { import flash.display.*; import common.commands.*; import flash.events.*; import common.events.*; import common.utils.*; public class PlayIntroCommand implements ICancelableCommand { private var _completeEvent:EventSender; public var allowSkip:Boolean;// = false private var _container:Sprite; public var clickTag:String;// = null private var _focus:InteractiveObject; private var _content:MovieClip; private static const SKIP_CODE:int = 39; public function PlayIntroCommand(_arg1:MovieClip, _arg2:Sprite){ _completeEvent = new EventSender(this); super(); _content = _arg1; _container = _arg2; initialize(); } public function get completeEvent():EventSender{ return (_completeEvent); } public function cancel():void{ stop(); } private function stop():void{ _content.removeEventListener(Event.ENTER_FRAME, onEnterFrame); if (_focus){ _focus.removeEventListener(KeyboardEvent.KEY_DOWN, onKeyDown); _focus = null; }; GraphUtil.stopAllChildren(_content); GraphUtil.detachFromDisplay(_content); } private function onKeyDown(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == SKIP_CODE){ stop(); _completeEvent.sendEvent(); }; } private function initialize():void{ _content.mouseChildren = false; _content.mouseEnabled = false; _content.opaqueBackground = 0; GraphUtil.stopAllChildren(_content); } private function onClick(_arg1:MouseEvent):void{ BrowserUtil.navigate(clickTag); } private function onEnterFrame(_arg1:Event):void{ if (_content.currentFrame == _content.totalFrames){ stop(); _completeEvent.sendEvent(); }; } public function execute():void{ _container.addChild(_content); _content.addEventListener(Event.ENTER_FRAME, onEnterFrame); if (clickTag){ _content.mouseEnabled = true; _content.useHandCursor = true; _content.buttonMode = true; _content.addEventListener(MouseEvent.CLICK, onClick); }; if (allowSkip){ _focus = ((_content.stage) || (_content)); _focus.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDown); }; GraphUtil.playAllChildren(_content); } } }//package common.flash.commands
Section 19
//CheckBox (common.flash.controls.CheckBox) package common.flash.controls { import flash.display.*; import flash.events.*; import common.events.*; public class CheckBox { private var _checked:Boolean;// = false private var _enabled:Boolean;// = true private var _clickEvent:EventSender; private var _content:MovieClip; public function CheckBox(_arg1:MovieClip){ _clickEvent = new EventSender(this); super(); _content = _arg1; initialize(); refresh(); } public function get enabled():Boolean{ return (_enabled); } public function get checked():Boolean{ return (_checked); } public function set checked(_arg1:Boolean):void{ if (_checked != _arg1){ _checked = _arg1; refresh(); }; } private function onMouseClick(_arg1:MouseEvent):void{ checked = !(checked); _clickEvent.sendEvent(); } public function get clickEvent():EventSender{ return (_clickEvent); } public function set enabled(_arg1:Boolean):void{ if (_enabled != _arg1){ _enabled = _arg1; refresh(); }; } private function initialize():void{ _content.addEventListener(MouseEvent.CLICK, onMouseClick); } private function refresh():void{ _content.mouseEnabled = _enabled; _content.mouseChildren = _enabled; _content.useHandCursor = _enabled; _content.buttonMode = _enabled; if (_checked){ _content.gotoAndStop(2); } else { _content.gotoAndStop(1); }; } } }//package common.flash.controls
Section 20
//RadioGroup (common.flash.controls.RadioGroup) package common.flash.controls { import common.events.*; public class RadioGroup { private var _items:Array; private var _selectedItem:CheckBox;// = null private var _clickEvent:EventSender; public function RadioGroup(_arg1:Array){ _items = []; _clickEvent = new EventSender(this); super(); _items = _arg1; initialize(); } public function get buttons():Array{ return (_items); } private function setSelection(_arg1:CheckBox):void{ if (_selectedItem){ _selectedItem.checked = false; _selectedItem.enabled = true; }; _selectedItem = _arg1; if (_selectedItem){ _selectedItem.checked = true; _selectedItem.enabled = false; }; } public function get selectedItem():CheckBox{ return (_selectedItem); } private function initialize():void{ var _local1:CheckBox; for each (_local1 in _items) { _local1.clickEvent.addListener(onButtonClick); }; } public function get clickEvent():EventSender{ return (_clickEvent); } public function set selectedIndex(_arg1:int):void{ selectedItem = _items[_arg1]; } private function onButtonClick(_arg1:CheckBox):void{ selectedItem = _arg1; _clickEvent.sendEvent(); } public function set selectedItem(_arg1:CheckBox):void{ if (_selectedItem != _arg1){ setSelection(_arg1); }; } public function get selectedIndex():int{ return (_items.indexOf(_selectedItem)); } } }//package common.flash.controls
Section 21
//ArrayUtil (common.utils.ArrayUtil) package common.utils { import common.converting.*; import common.comparing.*; public class ArrayUtil { public static function getFirstRequired(_arg1:Object, _arg2:IRequirement):Object{ var _local4:Object; var _local3:Object; for each (_local4 in _arg1) { if (_arg2.accept(_local4)){ _local3 = _local4; break; }; }; return (_local3); } public static function getByProperty(_arg1:Object, _arg2:String, _arg3:Object):Array{ return (getRequired(_arg1, new PropertyRequirement(_arg2, _arg3))); } public static function convert(_arg1:Object, _arg2:IConverter):Array{ var _local4:Object; var _local3:Array = []; for each (_local4 in _arg1) { _local3.push(_arg2.convert(_local4)); }; return (_local3); } public static function getRequired(_arg1:Object, _arg2:IRequirement):Array{ var _local4:Object; var _local3:Array = []; for each (_local4 in _arg1) { if (_arg2.accept(_local4)){ _local3.push(_local4); }; }; return (_local3); } public static function getFirstByProperty(_arg1:Object, _arg2:String, _arg3:Object):Object{ return (getFirstRequired(_arg1, new PropertyRequirement(_arg2, _arg3))); } public static function removeItem(_arg1:Array, _arg2:Object):void{ var _local3:int = _arg1.indexOf(_arg2); if (_local3 >= 0){ _arg1.splice(_local3, 1); }; } public static function hasRequired(_arg1:Object, _arg2:IRequirement):Object{ return (Boolean(getFirstRequired(_arg1, _arg2))); } public static function getRandomItem(_arg1:Array){ return (_arg1[int((Math.random() * _arg1.length))]); } public static function findByProperty(_arg1:Object, _arg2:String, _arg3:Object):Object{ return (getFirstRequired(_arg1, new PropertyRequirement(_arg2, _arg3))); } public static function getRandomItems(_arg1:Array, _arg2:int):Array{ var _local6:int; var _local3:Array = []; var _local4:Array = []; var _local5:int; while (_local5 < _arg2) { _local6 = (Math.random() * _arg1.length); while (_local4.indexOf(_local6) >= 0) { _local6++; if (_local6 == _arg1.length){ _local6 = 0; }; }; _local3.push(_arg1[_local6]); _local4.push(_local6); _local5++; }; return (_local3); } } }//package common.utils
Section 22
//BrowserUtil (common.utils.BrowserUtil) package common.utils { import flash.external.*; import flash.net.*; public class BrowserUtil { public static function navigate(_arg1:String, _arg2:String="_blank"):void{ var browser:String; var url = _arg1; var window = _arg2; if (ExternalInterface.available){ try { browser = (ExternalInterface.call("function getBrowser(){return navigator.userAgent}") as String); if (((!((browser.indexOf("Firefox") == -1))) || (!((browser.indexOf("MSIE 7.0") == -1))))){ ExternalInterface.call((((("window.open(\"" + url) + "\",\"") + window) + "\")")); } else { navigateToURL(new URLRequest(url), window); }; } catch(e:Error) { navigateToURL(new URLRequest(url), window); }; } else { navigateToURL(new URLRequest(url), window); }; } } }//package common.utils
Section 23
//GraphUtil (common.utils.GraphUtil) package common.utils { import flash.display.*; import flash.geom.*; import common.comparing.*; import flash.text.*; public class GraphUtil { public static function alignCenter(_arg1:DisplayObject, _arg2:Rectangle):void{ var _local3:Rectangle = _arg1.getBounds(_arg1.parent); _arg1.x = (_arg1.x + (((0.5 * (_arg2.left + _arg2.right)) - (0.5 * _local3.width)) - _local3.left)); _arg1.y = (_arg1.y + (((0.5 * (_arg2.top + _arg2.bottom)) - (0.5 * _local3.height)) - _local3.top)); } public static function cacheChildrenAsBitmap(_arg1:DisplayObjectContainer):void{ var _local3:DisplayObject; var _local4:Array; var _local2:Array = getChildren(_arg1); for each (_local3 in _local2) { if ((_local3 is DisplayObjectContainer)){ _local4 = getAllChildren(_arg1, new MultipleFramesRequirement()); if (_local4.length == 0){ _local3.cacheAsBitmap = true; } else { if (((!((_local3 is MovieClip))) || ((MovieClip(_local3).totalFrames == 1)))){ cacheChildrenAsBitmap((_local3 as DisplayObjectContainer)); }; }; } else { _local3.cacheAsBitmap = true; }; }; } public static function fromRGB(_arg1:uint, _arg2:uint, _arg3:uint):uint{ return ((((_arg1 << 16) | (_arg2 << 8)) | _arg3)); } public static function attachBefore(_arg1:DisplayObject, _arg2:DisplayObject):void{ _arg2.parent.addChildAt(_arg1, _arg2.parent.getChildIndex(_arg2)); } public static function setBtnEnabled(_arg1:InteractiveObject, _arg2:Boolean, _arg3:Number=0.5):void{ _arg1.mouseEnabled = _arg2; if ((_arg1 is DisplayObjectContainer)){ DisplayObjectContainer(_arg1).mouseChildren = _arg2; }; _arg1.alpha = (_arg2) ? 1 : _arg3; } public static function setScale(_arg1:DisplayObject, _arg2:Number):void{ _arg1.scaleX = (_arg1.scaleY = _arg2); } public static function addColor(_arg1:DisplayObject, _arg2:int):void{ var _local3:Object = toRGB(_arg2); var _local4:ColorTransform = _arg1.transform.colorTransform; _arg1.transform.colorTransform.redOffset = (_local4.redOffset + _local3.r); _local4.greenOffset = (_local4.greenOffset + _local3.g); _local4.blueOffset = (_local4.blueOffset + _local3.b); _arg1.transform.colorTransform = _local4; } public static function getAllChildren(_arg1:DisplayObjectContainer, _arg2:IRequirement=null):Array{ var _local5:DisplayObject; var _local3:Array = getChildren(_arg1); var _local4:Array = []; for each (_local5 in _local3) { if ((((_arg2 == null)) || (_arg2.accept(_local5)))){ _local4.push(_local5); }; if ((_local5 is DisplayObjectContainer)){ _local4 = _local4.concat(getAllChildren(DisplayObjectContainer(_local5), _arg2)); }; }; return (_local4); } public static function getPixel(_arg1:DisplayObject, _arg2:int, _arg3:int):int{ var _local4:BitmapData = new BitmapData(4, 4); var _local5:Matrix = new Matrix(); _local5.tx = -(_arg2); _local5.ty = -(_arg3); _local4.draw(_arg1, _local5, _arg1.transform.colorTransform, _arg1.blendMode); return (_local4.getPixel(1, 1)); } public static function claimBounds(_arg1:DisplayObject, _arg2:Rectangle):void{ var _local3:Rectangle = _arg1.getBounds(_arg1.parent); if (_local3.left < _arg2.left){ _arg1.x = (_arg1.x + (_arg2.left - _local3.left)); } else { if (_local3.right > _arg2.right){ _arg1.x = (_arg1.x + (_arg2.right - _local3.right)); }; }; if (_local3.top < _arg2.top){ _arg1.y = (_arg1.y + (_arg2.top - _local3.top)); } else { if (_local3.bottom > _arg2.bottom){ _arg1.y = (_arg1.y + (_arg2.bottom - _local3.bottom)); }; }; } public static function toRGB(_arg1:uint):Object{ return ({r:(_arg1 >> 16), g:((_arg1 >> 8) & 0xFF), b:(_arg1 & 0xFF)}); } public static function toPoint(_arg1:Object):Point{ return (new Point(_arg1.x, _arg1.y)); } public static function attachAfter(_arg1:DisplayObject, _arg2:DisplayObject):void{ _arg2.parent.addChildAt(_arg1, (_arg2.parent.getChildIndex(_arg2) + 1)); } public static function findObject(_arg1:DisplayObjectContainer, _arg2:IRequirement, _arg3:Boolean=true):DisplayObject{ if (_arg3){ return (getAllChildren(_arg1, _arg2)[0]); }; return (getChildren(_arg1, _arg2)[0]); } public static function getChildrenBounds(_arg1:DisplayObjectContainer):Rectangle{ var _local7:DisplayObject; var _local8:Rectangle; var _local2:Number = Number.MAX_VALUE; var _local3:Number = Number.MIN_VALUE; var _local4:Number = Number.MAX_VALUE; var _local5:Number = Number.MIN_VALUE; var _local6:int; while (_local6 < _arg1.numChildren) { _local7 = _arg1.getChildAt(_local6); _local8 = _local7.getBounds(_arg1); _local2 = Math.min(_local2, _local8.x); _local4 = Math.min(_local4, _local8.y); _local3 = Math.max(_local3, _local8.right); _local5 = Math.max(_local5, _local8.bottom); _local6++; }; return (new Rectangle(_local2, _local4, (_local3 - _local2), (_local5 - _local4))); } public static function getAllButtonChildren(_arg1:SimpleButton, _arg2:IRequirement=null):Array{ var _local5:DisplayObject; var _local3:Array = [_arg1.upState, _arg1.overState, _arg1.downState]; var _local4:Array = []; for each (_local5 in _local3) { if ((((_arg2 == null)) || (_arg2.accept(_local5)))){ _local4.push(_local5); }; if ((_local5 is DisplayObjectContainer)){ _local4 = _local4.concat(getAllChildren(DisplayObjectContainer(_local5), _arg2)); }; }; return (_local4); } public static function stopAllChildren(_arg1:DisplayObjectContainer, _arg2:int=0):void{ var _local4:MovieClip; var _local3:Array = getAllChildren(_arg1, new TypeRequirement(MovieClip)); if ((_arg1 is MovieClip)){ _local3.push(_arg1); }; for each (_local4 in _local3) { if (_local4.totalFrames > 1){ if (_arg2 > 0){ _local4.gotoAndStop(_arg2); } else { _local4.stop(); }; }; }; } public static function removeChildren(_arg1:DisplayObjectContainer):void{ while (_arg1.numChildren > 0) { _arg1.removeChildAt(0); }; } public static function adjustBounds(_arg1:DisplayObject, _arg2:Rectangle):void{ claimScale(_arg1, _arg2.width, _arg2.height); alignCenter(_arg1, _arg2); } public static function createRectSprite(_arg1:Number, _arg2:Number, _arg3:int=0, _arg4:Number=1):Sprite{ var _local5:Sprite = new Sprite(); _local5.graphics.beginFill(_arg3, _arg4); _local5.graphics.drawRect(0, 0, _arg1, _arg2); _local5.graphics.endFill(); return (_local5); } public static function setRandomFrame(_arg1:MovieClip):void{ var _local2:int = (1 + (Math.random() * _arg1.totalFrames)); _arg1.gotoAndStop(_local2); } public static function transformCoords(_arg1:Point, _arg2:DisplayObject, _arg3:DisplayObject):Point{ return (_arg3.globalToLocal(_arg2.localToGlobal(_arg1))); } public static function setPosition(_arg1:DisplayObject, _arg2:Object):void{ _arg1.x = _arg2.x; _arg1.y = _arg2.y; } public static function detachFromDisplay(_arg1:DisplayObject):void{ _arg1.parent.removeChild(_arg1); } public static function claimScale(_arg1:DisplayObject, _arg2:Number, _arg3:Number):void{ var _local4:Number = Math.min((_arg2 / _arg1.width), (_arg3 / _arg1.height)); _arg1.height = (_arg1.height * _local4); _arg1.width = (_arg1.width * _local4); } public static function sendToBack(_arg1:DisplayObject):void{ var _local2:DisplayObjectContainer = _arg1.parent; _local2.setChildIndex(_arg1, 0); } public static function setFontSize(_arg1:TextField, _arg2:int):void{ var _local3:TextFormat = _arg1.getTextFormat(); _local3.size = _arg2; _arg1.setTextFormat(_local3); } public static function playAllChildren(_arg1:MovieClip):void{ var _local3:MovieClip; _arg1.play(); var _local2:Array = getAllChildren(_arg1, new TypeRequirement(MovieClip)); for each (_local3 in _local2) { if (_local3.totalFrames > 1){ _local3.play(); }; }; } public static function getChildren(_arg1:DisplayObjectContainer, _arg2:IRequirement=null):Array{ var _local5:DisplayObject; var _local3:Array = []; var _local4:int; while (_local4 < _arg1.numChildren) { _local5 = _arg1.getChildAt(_local4); if ((((_arg2 == null)) || (_arg2.accept(_local5)))){ _local3.push(_local5); }; _local4++; }; return (_local3); } public static function addBoundsRect(_arg1:Sprite, _arg2:int=0, _arg3:Number=0):Sprite{ var _local4:Rectangle = _arg1.getBounds(_arg1); var _local5:Sprite = createRectSprite(_local4.width, _local4.height, _arg2, _arg3); _arg1.addChild(_local5); _local5.x = _local4.x; _local5.y = _local4.y; return (_local5); } public static function bringToFront(_arg1:DisplayObject):void{ var _local2:DisplayObjectContainer = _arg1.parent; _local2.setChildIndex(_arg1, (_local2.numChildren - 1)); } } }//package common.utils
Section 24
//StringUtil (common.utils.StringUtil) package common.utils { public class StringUtil { public static const EMPTY_CHARS:String = (" \t\r\n\f" + String.fromCharCode(160)); public static function trim(_arg1:String):String{ if (_arg1 == null){ return (""); }; var _local2:int; var _local3:int = (_arg1.length - 1); var _local4:int = _arg1.length; while ((((_local2 < _local4)) && ((EMPTY_CHARS.indexOf(_arg1.charAt(_local2)) >= 0)))) { _local2++; }; while ((((_local3 > 0)) && ((EMPTY_CHARS.indexOf(_arg1.charAt(_local3)) >= 0)))) { _local3--; }; return (((_local3)>=_local2) ? _arg1.slice(_local2, (_local3 + 1)) : ""); } public static function format(_arg1:String, ... _args):String{ var _local3:int = _args.length; var _local4:int; while (_local4 < _local3) { _arg1 = _arg1.replace(new RegExp((("\\{" + _local4) + "\\}"), "g"), _args[_local4]); _local4++; }; return (_arg1); } public static function replaceChars(_arg1:String, _arg2:Array, _arg3:Array):String{ var _local6:int; var _local4 = ""; var _local5:int; while (_local5 < _arg1.length) { _local6 = _arg2.indexOf(_arg1.charAt(_local5)); if (_local6 != -1){ _local4 = (_local4 + _arg3[_local6]); } else { _local4 = (_local4 + _arg1.charAt(_local5)); }; _local5++; }; return (_local4); } public static function isBlankString(_arg1:String):Boolean{ var _local2:int; while (_local2 <= _arg1.length) { if (EMPTY_CHARS.indexOf(_arg1.charAt(_local2)) < 0){ return (false); }; _local2++; }; return (true); } public static function extractInt(_arg1:String):int{ return (_arg1.match(/\d+/)[0]); } } }//package common.utils
Section 25
//Sounds (components.Sounds) package components { import flash.events.*; import flash.utils.*; import flash.media.*; public class Sounds { private static const DEFAULT_VOLUME:Number = 1; private static var _musicVolume:Number = 1; private static var _musicClass:Class; private static var _nowPlaying:Dictionary = new Dictionary(); private static var _musicChannel:SoundChannel; public static function get muted():Boolean{ return ((_musicVolume == 0)); } private static function setMusicVolume(_arg1:Number):void{ _musicVolume = _arg1; if (_musicChannel){ _musicChannel.soundTransform = new SoundTransform(_musicVolume); }; } public static function playMusic(_arg1:Class):void{ if (_musicChannel){ _musicChannel.stop(); }; _musicClass = _arg1; var _local2:Sound = new (_arg1); _musicChannel = _local2.play(0, 0, new SoundTransform(_musicVolume)); _musicChannel.addEventListener(Event.SOUND_COMPLETE, onMusicComplete); } public static function play(_arg1:Class, _arg2:Boolean=false):void{ var sound:Sound; var channel:SoundChannel; var soundClass = _arg1; var playSafe = _arg2; if (((!(playSafe)) || (!((soundClass in _nowPlaying))))){ sound = new (soundClass); channel = sound.play(0, 0, new SoundTransform(DEFAULT_VOLUME)); channel.addEventListener(Event.SOUND_COMPLETE, function (_arg1:Event):void{ delete _nowPlaying[soundClass]; }); _nowPlaying[soundClass] = true; }; } public static function mute():void{ if (_musicVolume == 0){ setMusicVolume(DEFAULT_VOLUME); } else { setMusicVolume(0); }; } private static function onMusicComplete(_arg1:Event):void{ playMusic(_musicClass); } } }//package components
Section 26
//Controller (dressup.abstract.Controller) package dressup.abstract { import dressup.*; import flash.events.*; import common.events.*; public class Controller { private var _eventManager:EventManager; protected function registerNativeEvent(_arg1:EventDispatcher, _arg2:String, _arg3:Function, _arg4:Boolean=false):void{ if (!_eventManager){ _eventManager = new EventManager(); }; _eventManager.registerNativeEvent(_arg1, _arg2, _arg3, _arg4); } protected function get app():Application{ return (Application.instance); } protected function unregisterNativeEvent(_arg1:EventDispatcher, _arg2:String, _arg3:Function, _arg4:Boolean=false):void{ if (_eventManager){ _eventManager.unregisterNativeEvent(_arg1, _arg2, _arg3, _arg4); }; } protected function registerEvent(_arg1:EventSender, _arg2:Function):void{ if (!_eventManager){ _eventManager = new EventManager(); }; _eventManager.registerEvent(_arg1, _arg2); } protected function clearEvents():void{ if (_eventManager){ _eventManager.clearEvents(); }; } protected function unregisterEvent(_arg1:EventSender, _arg2:Function):void{ if (_eventManager){ _eventManager.unregisterEvent(_arg1, _arg2); }; } public function dispose():void{ if (_eventManager){ _eventManager.clearEvents(); }; } } }//package dressup.abstract
Section 27
//View (dressup.abstract.View) package dressup.abstract { import flash.display.*; import flash.text.*; import flash.events.*; import common.converting.*; import common.comparing.*; import common.flash.controls.*; import components.*; import common.utils.*; public class View extends Controller { private var _enabled:Boolean;// = true private var _content:Sprite; public static var defaultSound:Class; public function View(_arg1:Sprite){ _content = _arg1; } public function get content():Sprite{ return (_content); } public static function setButtonText(_arg1:SimpleButton, _arg2:String, _arg3):void{ var _local5:TextField; var _local4:Array = GraphUtil.getAllButtonChildren(_arg1, new NameRequirement(_arg2)); for each (_local5 in _local4) { _local5.text = String(_arg3); }; } public static function getCheckBoxes(_arg1:Sprite):Array{ var _local2:Array = GraphUtil.getChildren(_arg1, new PropertyRequirement("totalFrames", 2)); var _local3:Array = ArrayUtil.convert(_local2, new ConstructorConverter(CheckBox)); return (_local3.reverse()); } public static function setButtonAction(_arg1:InteractiveObject, _arg2:Function, _arg3:Class=null, ... _args):void{ var button = _arg1; var handler = _arg2; var soundClass = _arg3; var rest = _args; var clickHandler:Function = function (_arg1:MouseEvent):void{ handler.apply(this, rest); }; var pressHandler:Function = function (_arg1:MouseEvent):void{ if (((soundClass) || (defaultSound))){ Sounds.play(((soundClass) || (defaultSound))); }; }; button.addEventListener(MouseEvent.MOUSE_DOWN, pressHandler); button.addEventListener(MouseEvent.CLICK, clickHandler); } public static function setButtonEnabled(_arg1:InteractiveObject, _arg2:Boolean):void{ GraphUtil.setBtnEnabled(_arg1, _arg2); } } }//package dressup.abstract
Section 28
//BackgroundView (dressup.scene.BackgroundView) package dressup.scene { import flash.display.*; import common.events.*; import assets.scene.*; import common.flash.controls.*; import dressup.abstract.*; import common.utils.*; public class BackgroundView extends View { private var _buttons:RadioGroup; private var _changeEvent:EventSender; private var _clip:MovieClip; public function BackgroundView(_arg1:McScene){ _changeEvent = new EventSender(this); super(_arg1); initClip(_arg1.mcBackground); initButtons(_arg1.mcBgButtons); } private function initClip(_arg1:MovieClip):void{ _clip = _arg1; _clip.stop(); _clip.mouseEnabled = false; _clip.mouseChildren = false; _clip.opaqueBackground = 0; } public function get changeEvent():EventSender{ return (_changeEvent); } public function set selectedIndex(_arg1:int):void{ GraphUtil.stopAllChildren(_clip); _clip.gotoAndStop((_arg1 + 1)); _buttons.selectedIndex = _arg1; } private function initButtons(_arg1:Sprite):void{ var _local2:Array = getCheckBoxes(_arg1); _buttons = new RadioGroup(_local2); _buttons.selectedIndex = 0; _buttons.clickEvent.addListener(onButtonClick); } private function onButtonClick():void{ selectedIndex = _buttons.selectedIndex; _changeEvent.sendEvent(); } public function get selectedIndex():int{ return (_buttons.selectedIndex); } } }//package dressup.scene
Section 29
//CategoreisView (dressup.scene.CategoreisView) package dressup.scene { import flash.display.*; import flash.events.*; import common.events.*; import common.comparing.*; import assets.scene.*; import common.flash.controls.*; import dressup.abstract.*; import common.utils.*; public class CategoreisView extends View { private var _frameIndex:int; private var _panelSelector:RadioGroup; private var _panels:Array; private var _clickEvent:EventSender; private var _panelsContainer:Sprite; private var _selectedPanel:Sprite; private var _filters:Array; public function CategoreisView(_arg1:McScene){ _clickEvent = new EventSender(this); super(_arg1); initPanels(_arg1.mcCatPanels); initPanelSelector(_arg1.mcCatButtons); } private function initPanelButtons(_arg1:Sprite):void{ var _local3:SimpleButton; var _local2:Array = getButtons(_arg1); for each (_local3 in _local2) { _local3.addEventListener(MouseEvent.CLICK, onButtonClick); }; } private function onCategoryClick():void{ categoryIndex = _panelSelector.selectedIndex; } private function onButtonClick(_arg1:MouseEvent):void{ var _local2:SimpleButton = (_arg1.currentTarget as SimpleButton); _frameIndex = getButtons(_selectedPanel).indexOf(_local2); _filters = _local2.filters; _clickEvent.sendEvent(); } private function initPanelSelector(_arg1:Sprite):void{ var _local2:Array = getCheckBoxes(_arg1); _panelSelector = new RadioGroup(_local2); _panelSelector.clickEvent.addListener(onCategoryClick); } private function initPanels(_arg1:Sprite):void{ var _local2:Sprite; _panelsContainer = _arg1; _panels = GraphUtil.getChildren(_panelsContainer).reverse(); for each (_local2 in _panels) { initPanelButtons(_local2); GraphUtil.detachFromDisplay(_local2); }; } private function getButtons(_arg1:Sprite):Array{ return (GraphUtil.getChildren(_arg1, new TypeRequirement(SimpleButton)).reverse()); } public function get frameIndex():int{ return (_frameIndex); } public function set categoryIndex(_arg1:int):void{ if (_selectedPanel){ GraphUtil.detachFromDisplay(_selectedPanel); }; _selectedPanel = _panels[_arg1]; _panelSelector.selectedIndex = _arg1; if (_selectedPanel){ _panelsContainer.addChild(_selectedPanel); }; } public function get clickEvent():EventSender{ return (_clickEvent); } public function get categoryIndex():int{ return (_panels.indexOf(_selectedPanel)); } public function get filters():Array{ return (_filters); } } }//package dressup.scene
Section 30
//ControlPanelView (dressup.scene.ControlPanelView) package dressup.scene { import flash.display.*; import gs.*; import dressup.abstract.*; import common.utils.*; public class ControlPanelView extends View { private var _defaultScale:Number; private var _content:McControlPanel; public function ControlPanelView(_arg1:McControlPanel){ super((_content = _arg1)); _defaultScale = _content.btnTopLogo.scaleX; initialize(); setDefaultState(); } private function initialize():void{ setButtonAction(_content.btnBack, onBackClick); setButtonAction(_content.btnPhoto, onPhotoClick); setButtonAction(_content.btnTopLogo, onLogoClick); setButtonAction(_content.btnBottomLogo, onLogoClick); setButtonAction(_content.btnReset, onResetClick); } private function onBackClick():void{ app.scene.controlsVisible = true; setDefaultState(); } private function onPhotoClick():void{ app.scene.controlsVisible = false; showButtons(_content.btnTopLogo, _content.btnBack); } public function setDefaultState():void{ showButtons(_content.btnPhoto, _content.btnReset); } private function showButtons(... _args):void{ var _local2:SimpleButton; GraphUtil.removeChildren(_content); for each (_local2 in _args) { _content.addChild(_local2); if ((((_local2 == _content.btnBottomLogo)) || ((_local2 == _content.btnTopLogo)))){ GraphUtil.setScale(_local2, (_defaultScale * 0.75)); TweenLite.to(_local2, 0.1, {scaleX:_defaultScale, scaleY:_defaultScale}); }; }; } private function onLogoClick():void{ BrowserUtil.navigate("http://www.girlgames.com/"); } private function onResetClick():void{ app.scene.reset(); showButtons(_content.btnPhoto, _content.btnBottomLogo); } } }//package dressup.scene
Section 31
//ModelView (dressup.scene.ModelView) package dressup.scene { import flash.display.*; import flash.events.*; import common.comparing.*; import dressup.abstract.*; import common.utils.*; public class ModelView extends View { private var _items:Array; private static const PART_NAME:String = "mcPart"; public function ModelView(_arg1:Sprite){ _items = []; super(_arg1); initItems(); } private function initItems():void{ var _local2:MovieClip; var _local3:int; var _local1:Array = GraphUtil.getChildren(content, new NameRequirement(PART_NAME, true)); for each (_local2 in _local1) { _local3 = StringUtil.extractInt(_local2.name); initItem(_local2, _local3); }; } public function setDefaultItem(_arg1:int, _arg2:int):void{ var _local3:MovieClip = _items[_arg1]; _local3.mouseEnabled = false; showItem(_arg1, _arg2); } public function hideItem(_arg1:int):void{ var _local2:MovieClip = _items[_arg1]; _local2.visible = false; } public function showItem(_arg1:int, _arg2:int):void{ var _local3:MovieClip = _items[_arg1]; _local3.visible = true; _local3.gotoAndStop((_arg2 + 1)); } public function hideAllItems():void{ var _local1:int; while (_local1 < _items.length) { if (_items[_local1]){ hideItem(_local1); }; _local1++; }; } private function onClick(_arg1:MouseEvent):void{ var _local2:MovieClip = (_arg1.currentTarget as MovieClip); var _local3:int = _items.indexOf(_local2); hideItem(_local3); } private function initItem(_arg1:MovieClip, _arg2:int):void{ _items[(_arg2 - 1)] = _arg1; _arg1.addEventListener(MouseEvent.CLICK, onClick); _arg1.buttonMode = true; _arg1.useHandCursor = true; _arg1.mouseChildren = false; _arg1.visible = false; _arg1.stop(); } public function applyFilters(_arg1:int, _arg2:int, _arg3:Array):void{ var _local4:MovieClip = _items[_arg1]; var _local5:Array = GraphUtil.getChildren(_local4, new TypeRequirement(Sprite)).reverse(); var _local6:Sprite = (((_local5[_arg2] as Sprite)) || (_local4)); _local6.filters = _arg3; } public function resetDefaultItems():void{ var _local1:MovieClip; for each (_local1 in _items) { if (_local1){ _local1.mouseEnabled = true; }; }; } } }//package dressup.scene
Section 32
//SceneScreen (dressup.scene.SceneScreen) package dressup.scene { import assets.scene.*; import dressup.abstract.*; public class SceneScreen extends View { private var _categories:CategoreisView; private var _model:ModelView; private var _background:BackgroundView; private var _controls:ControlPanelView; private var _content:McScene; public function SceneScreen(){ _content = new McScene(); _controls = new ControlPanelView(_content.mcControlPanel); _categories = new CategoreisView(_content); _background = new BackgroundView(_content); _model = new ModelView(_content.mcModel); super(_content); initCategories(); refreshDefaultItems(); _background.changeEvent.addListener(onBackgoundChange); _categories.clickEvent.addListener(onItemSelect); } private function refreshDefaultItems():void{ var bgNum:int; var defaultItems:XMLList; var itemData:XML; var itemIndex:int; var frameIndex:int; bgNum = (_background.selectedIndex + 1); defaultItems = app.config.background.(int(@num) == bgNum).defaultItem; _model.resetDefaultItems(); for each (itemData in defaultItems) { itemIndex = (int(itemData.@categoryNum) - 1); frameIndex = (int(itemData.@frameNum) - 1); _model.setDefaultItem(itemIndex, frameIndex); }; } private function initCategories():void{ var _local2:XML; var _local3:int; var _local4:int; var _local1:XMLList = app.config.filterEffect; for each (_local2 in _local1) { _local3 = (int(_local2.@buttonNum) - 1); _local4 = (int(_local2.@targetCategoryNum) - 1); _categories; }; } private function onItemSelect(_arg1:CategoreisView):void{ var buttonNum:int; var effects:XMLList; var targetIndex:int; var childIndex:int; var sender = _arg1; buttonNum = (_categories.categoryIndex + 1); effects = app.config.filterEffect.(int(@buttonNum) == buttonNum); _controls.setDefaultState(); if (effects.length() == 0){ _model.showItem(_categories.categoryIndex, _categories.frameIndex); } else { targetIndex = (int(effects.@targetCategoryNum) - 1); childIndex = (int(effects.@childNum) - 1); _model.applyFilters(targetIndex, childIndex, _categories.filters); }; } public function reset():void{ _model.hideAllItems(); refreshDefaultItems(); } public function set controlsVisible(_arg1:Boolean):void{ _content.mcBgButtons.visible = _arg1; _content.mcCatPanels.visible = _arg1; _content.mcCatButtons.visible = _arg1; } private function onBackgoundChange():void{ _categories.categoryIndex = -1; refreshDefaultItems(); } } }//package dressup.scene
Section 33
//Application (dressup.Application) package dressup { import flash.display.*; import flash.text.*; import common.commands.*; import dressup.scene.*; import girlgames.*; import assets.*; import common.flash.commands.*; public class Application { private var _root:Sprite; private var _appRoot:Sprite; private var _conveyor:Conveyor; private var _scene:SceneScreen; private var _textStyles:StyleSheet; private var _config:XML; public static const CONFIG_XML:Class = Application_CONFIG_XML; private static var _instance:Application; public function Application(){ _conveyor = new Conveyor(); _appRoot = new Sprite(); super(); } public function get conveyor():Conveyor{ return (_conveyor); } public function get scene():SceneScreen{ return (_scene); } public function get textStyles():StyleSheet{ return (_textStyles); } public function get config():XML{ return (_config); } public function createScene():void{ _scene = new SceneScreen(); _appRoot.addChild(_scene.content); } public function initialize(_arg1:Sprite):void{ var _local2:PlayIntroCommand; _root = _arg1; _root.addChild(_appRoot); _config = new XML(new CONFIG_XML()); showBaner(); _local2 = new PlayIntroCommand(new McIntro(), _appRoot); _local2.allowSkip = true; conveyor.pushAction(_local2); conveyor.pushAction(createScene); } private function showBaner():void{ var _local1:GirlgamesBanner = new GirlgamesBanner(); _local1.y = (Main.HEIGHT - _local1.height); _root.addChild(_local1); } public static function get instance():Application{ if (!_instance){ _instance = new (Application); }; return (_instance); } } }//package dressup
Section 34
//Application_CONFIG_XML (dressup.Application_CONFIG_XML) package dressup { import mx.core.*; public class Application_CONFIG_XML extends ByteArrayAsset { } }//package dressup
Section 35
//GirlgamesBanner (girlgames.GirlgamesBanner) package girlgames { import flash.events.*; import common.utils.*; public class GirlgamesBanner extends McGirlgamesBaner { public function GirlgamesBanner(){ initialize(); } private function initialize():void{ btnLogo.addEventListener(MouseEvent.CLICK, onLogoClick); btnMoreGames.addEventListener(MouseEvent.CLICK, onMoreGamesClick); btnFreeGames.addEventListener(MouseEvent.CLICK, onFreeGamesClick); } private function onFreeGamesClick(_arg1:MouseEvent):void{ BrowserUtil.navigate("http://www.girlgames.com/free-girl-games/"); } private function onMoreGamesClick(_arg1:MouseEvent):void{ BrowserUtil.navigate("http://www.girlgames.com/"); } private function onLogoClick(_arg1:MouseEvent):void{ BrowserUtil.navigate("http://www.girlgames.com/"); } } }//package girlgames
Section 36
//GirlgamesPreloader (girlgames.GirlgamesPreloader) package girlgames { import flash.events.*; import flash.display.*; import common.events.*; import common.utils.*; public class GirlgamesPreloader { private var _root:MovieClip; private var _clickRect:Sprite; private var _completeEvent:EventSender; private var _content:PreloaderMC; private var _state:Function; public function GirlgamesPreloader(_arg1:MovieClip){ _completeEvent = new EventSender(this); super(); _root = _arg1; _state = playingAnim1; initContent(); setPercent(0); } private function setPercent(_arg1:Number):void{ _content.loader.barMask.scaleX = _arg1; } public function get completeEvent():EventSender{ return (_completeEvent); } private function initContent():void{ _content = new PreloaderMC(); _content.anim2.stop(); _content.anim2.visible = false; _content.addEventListener(Event.ENTER_FRAME, onEnterFrame); _content.mouseChildren = false; _content.mouseEnabled = false; _clickRect = GraphUtil.createRectSprite(Main.WIDTH, Main.HEIGHT, 0, 0); _clickRect.useHandCursor = true; _clickRect.buttonMode = true; _clickRect.mouseChildren = false; _clickRect.addEventListener(MouseEvent.CLICK, onMouseClick); _root.addChild(_content); _root.addChild(_clickRect); _root.opaqueBackground = 0xFFFFFF; _root.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress); } private function playingAnim1():void{ if (_content.anim1.currentFrame == _content.anim1.totalFrames){ _content.anim1.stop(); _state = loading; }; } private function onProgress(_arg1:ProgressEvent):void{ setPercent((_arg1.bytesLoaded / _arg1.bytesTotal)); } private function onMouseClick(_arg1:MouseEvent):void{ BrowserUtil.navigate("http://www.girlgames.com/"); } private function finishing():void{ if (_content.anim2.currentFrame == _content.anim2.totalFrames){ GraphUtil.stopAllChildren(_content); GraphUtil.detachFromDisplay(_content); GraphUtil.detachFromDisplay(_clickRect); _content.removeEventListener(Event.ENTER_FRAME, onEnterFrame); _root.loaderInfo.removeEventListener(ProgressEvent.PROGRESS, onProgress); _completeEvent.sendEvent(); }; } private function onEnterFrame(_arg1:Event):void{ _state(); } private function loading():void{ if (_root.loaderInfo.bytesLoaded == _root.loaderInfo.bytesTotal){ _content.loader.visible = false; _content.anim1.visible = false; _content.anim2.visible = true; _content.anim2.play(); _state = finishing; }; } } }//package girlgames
Section 37
//pojava_logo_2 (girlgames_fla.pojava_logo_2) package girlgames_fla { import flash.display.*; public dynamic class pojava_logo_2 extends MovieClip { public var loader:McBar; } }//package girlgames_fla
Section 38
//Symbol12_16 (girlgames_fla.Symbol12_16) package girlgames_fla { import flash.display.*; public dynamic class Symbol12_16 extends MovieClip { public function Symbol12_16(){ addFrameScript(59, frame60); } function frame60(){ stop(); } } }//package girlgames_fla
Section 39
//Symbol13_17 (girlgames_fla.Symbol13_17) package girlgames_fla { import flash.display.*; public dynamic class Symbol13_17 extends MovieClip { public var anim2:MovieClip; } }//package girlgames_fla
Section 40
//TweenLite (gs.TweenLite) package gs { import flash.display.*; import flash.events.*; import flash.utils.*; import flash.media.*; import flash.geom.*; public class TweenLite { public var delay:Number; protected var _initted:Boolean; protected var _subTweens:Array; public var startTime:int; public var target:Object; public var duration:Number; protected var _hst:Boolean; protected var _active:Boolean; public var tweens:Array; public var vars:Object; public var initTime:int; private static var _timer:Timer = new Timer(2000); private static var _classInitted:Boolean; public static var defaultEase:Function = TweenLite.easeOut; public static var version:Number = 6.31; private static var _sprite:Sprite = new Sprite(); protected static var _all:Dictionary = new Dictionary(); public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; protected static var _curTime:uint; private static var _listening:Boolean; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ if (_arg1 == null){ return; }; if (((((!((_arg3.overwrite == false))) && (!((_arg1 == null))))) || ((_all[_arg1] == undefined)))){ delete _all[_arg1]; _all[_arg1] = new Dictionary(); }; _all[_arg1][this] = this; this.vars = _arg3; this.duration = ((_arg2) || (0.001)); this.delay = ((_arg3.delay) || (0)); this.target = _arg1; if (!(this.vars.ease is Function)){ this.vars.ease = defaultEase; }; if (this.vars.easeParams != null){ this.vars.proxiedEase = this.vars.ease; this.vars.ease = easeProxy; }; if (!isNaN(Number(this.vars.autoAlpha))){ this.vars.alpha = Number(this.vars.autoAlpha); if ((((this.vars.alpha == 0)) && (!((this.vars.runBackwards == true))))){ this.vars.visible = false; }; }; this.tweens = []; _subTweens = []; _hst = (_initted = false); _active = (((_arg2 == 0)) && ((this.delay == 0))); if (!_classInitted){ _curTime = getTimer(); _sprite.addEventListener(Event.ENTER_FRAME, executeAll); _classInitted = true; }; this.initTime = _curTime; if ((((((this.vars.runBackwards == true)) && (!((this.vars.renderOnStart == true))))) || (_active))){ initTweenVals(); this.startTime = _curTime; if (_active){ render((this.startTime + 1)); } else { render(this.startTime); }; }; if (((!(_listening)) && (!(_active)))){ _timer.addEventListener("timer", killGarbage); _timer.start(); _listening = true; }; } protected function addSubTween(_arg1:Function, _arg2:Object, _arg3:Object, _arg4:Object=null):void{ var _local6:String; var _local5:Object = {proxy:_arg1, target:_arg2, info:_arg4}; _subTweens.push(_local5); for (_local6 in _arg3) { if (typeof(_arg3[_local6]) == "number"){ this.tweens.push({o:_arg2, p:_local6, s:_arg2[_local6], c:(_arg3[_local6] - _arg2[_local6]), sub:_local5}); } else { this.tweens.push({o:_arg2, p:_local6, s:_arg2[_local6], c:Number(_arg3[_local6]), sub:_local5}); }; }; _hst = true; } public function initTweenVals(_arg1:Boolean=false, _arg2:String=""):void{ var _local4:String; var _local5:int; var _local6:Array; var _local7:ColorTransform; var _local8:ColorTransform; var _local9:Object; var _local3 = (this.target is DisplayObject); if ((this.target is Array)){ _local6 = ((this.vars.endArray) || ([])); _local5 = 0; while (_local5 < _local6.length) { if (((!((this.target[_local5] == _local6[_local5]))) && (!((this.target[_local5] == undefined))))){ this.tweens.push({o:this.target, p:_local5.toString(), s:this.target[_local5], c:(_local6[_local5] - this.target[_local5])}); }; _local5++; }; } else { for (_local4 in this.vars) { if ((((((((((((((((((((((((((((((((((((((_local4 == "ease")) || ((_local4 == "delay")))) || ((_local4 == "overwrite")))) || ((_local4 == "onComplete")))) || ((_local4 == "onCompleteParams")))) || ((_local4 == "onCompleteScope")))) || ((_local4 == "runBackwards")))) || ((_local4 == "visible")))) || ((_local4 == "onUpdate")))) || ((_local4 == "onUpdateParams")))) || ((_local4 == "onUpdateScope")))) || ((_local4 == "autoAlpha")))) || ((_local4 == "onStart")))) || ((_local4 == "onStartParams")))) || ((_local4 == "onStartScope")))) || ((_local4 == "renderOnStart")))) || ((_local4 == "proxiedEase")))) || ((_local4 == "easeParams")))) || (((_arg1) && (!((_arg2.indexOf(((" " + _local4) + " ")) == -1))))))){ } else { if ((((_local4 == "tint")) && (_local3))){ _local7 = this.target.transform.colorTransform; _local8 = new ColorTransform(); if (this.vars.alpha != undefined){ _local8.alphaMultiplier = this.vars.alpha; delete this.vars.alpha; _local5 = (this.tweens.length - 1); while (_local5 > -1) { if (this.tweens[_local5].p == "alpha"){ this.tweens.splice(_local5, 1); break; }; _local5--; }; } else { _local8.alphaMultiplier = this.target.alpha; }; if (((((!((this.vars[_local4] == null))) && (!((this.vars[_local4] == ""))))) || ((this.vars[_local4] == 0)))){ _local8.color = this.vars[_local4]; }; addSubTween(tintProxy, {progress:0}, {progress:1}, {target:this.target, color:_local7, endColor:_local8}); } else { if ((((_local4 == "frame")) && (_local3))){ addSubTween(frameProxy, {frame:this.target.currentFrame}, {frame:this.vars[_local4]}, {target:this.target}); } else { if ((((_local4 == "volume")) && (((_local3) || ((this.target is SoundChannel)))))){ addSubTween(volumeProxy, this.target.soundTransform, {volume:this.vars[_local4]}, {target:this.target}); } else { if (typeof(this.vars[_local4]) == "number"){ this.tweens.push({o:this.target, p:_local4, s:this.target[_local4], c:(this.vars[_local4] - this.target[_local4])}); } else { this.tweens.push({o:this.target, p:_local4, s:this.target[_local4], c:Number(this.vars[_local4])}); }; }; }; }; }; }; }; if (this.vars.runBackwards == true){ _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local9 = this.tweens[_local5]; this.tweens[_local5].s = (_local9.s + _local9.c); _local9.c = (_local9.c * -1); _local5--; }; }; if (typeof(this.vars.autoAlpha) == "number"){ this.target.visible = !((((this.vars.runBackwards == true)) && ((this.target.alpha == 0)))); }; _initted = true; } public function get active():Boolean{ if (_active){ return (true); }; if (((_curTime - this.initTime) / 1000) > this.delay){ _active = true; this.startTime = (this.initTime + (this.delay * 1000)); if (!_initted){ initTweenVals(); } else { if (typeof(this.vars.autoAlpha) == "number"){ this.target.visible = true; }; }; if (this.vars.onStart != null){ this.vars.onStart.apply(this.vars.onStartScope, this.vars.onStartParams); }; if (this.duration == 0.001){ this.startTime = (this.startTime - 1); }; return (true); //unresolved jump }; return (false); } public function render(_arg1:uint):void{ var _local3:Number; var _local4:Object; var _local5:int; var _local2:Number = ((_arg1 - this.startTime) / 1000); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = 1; } else { _local3 = this.vars.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.o[_local4.p] = (_local4.s + (_local3 * _local4.c)); _local5--; }; if (_hst){ _local5 = (_subTweens.length - 1); while (_local5 > -1) { _subTweens[_local5].proxy(_subTweens[_local5]); _local5--; }; }; if (this.vars.onUpdate != null){ this.vars.onUpdate.apply(this.vars.onUpdateScope, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(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 complete(_arg1:Boolean=false):void{ if (!_arg1){ if (!_initted){ initTweenVals(); }; this.startTime = (_curTime - (this.duration * 1000)); render(_curTime); return; }; if (this.vars.visible != undefined){ this.target.visible = Boolean(this.vars.visible); }; removeTween(this); if (this.vars.onComplete != null){ this.vars.onComplete.apply(this.vars.onCompleteScope, this.vars.onCompleteParams); }; } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } public static function frameProxy(_arg1:Object):void{ _arg1.info.target.gotoAndStop(Math.round(_arg1.target.frame)); } public static function removeTween(_arg1:TweenLite=null):void{ if (((!((_arg1 == null))) && (!((_all[_arg1.target] == undefined))))){ delete _all[_arg1.target][_arg1]; }; } public static function killTweensOf(_arg1:Object=null, _arg2:Boolean=false):void{ var _local3:Object; var _local4:*; if (((!((_arg1 == null))) && (!((_all[_arg1] == undefined))))){ if (_arg2){ _local3 = _all[_arg1]; for (_local4 in _local3) { _local3[_local4].complete(false); }; }; delete _all[_arg1]; }; } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null, _arg4=null):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, onCompleteScope:_arg4, overwrite:false})); } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ _arg3.runBackwards = true; return (new TweenLite(_arg1, _arg2, _arg3)); } public static function executeAll(_arg1:Event=null):void{ var _local3:Dictionary; var _local4:Object; var _local5:Object; var _local2:uint = (_curTime = getTimer()); if (_listening){ _local3 = _all; for each (_local4 in _local3) { for (_local5 in _local4) { if (((!((_local4[_local5] == undefined))) && (_local4[_local5].active))){ _local4[_local5].render(_local2); }; }; }; }; } public static function volumeProxy(_arg1:Object):void{ _arg1.info.target.soundTransform = _arg1.target; } public static function killGarbage(_arg1:TimerEvent):void{ var _local3:Boolean; var _local4:Object; var _local5:Object; var _local6:Object; var _local2:uint; for (_local4 in _all) { _local3 = false; for (_local5 in _all[_local4]) { _local3 = true; break; }; if (!_local3){ delete _all[_local4]; } else { _local2++; }; }; if (_local2 == 0){ _timer.removeEventListener("timer", killGarbage); _timer.stop(); _listening = false; }; } public static function tintProxy(_arg1:Object):void{ var _local2:Number = _arg1.target.progress; var _local3:Number = (1 - _local2); var _local4:Object = _arg1.info.color; var _local5:Object = _arg1.info.endColor; _arg1.info.target.transform.colorTransform = new ColorTransform(((_local4.redMultiplier * _local3) + (_local5.redMultiplier * _local2)), ((_local4.greenMultiplier * _local3) + (_local5.greenMultiplier * _local2)), ((_local4.blueMultiplier * _local3) + (_local5.blueMultiplier * _local2)), ((_local4.alphaMultiplier * _local3) + (_local5.alphaMultiplier * _local2)), ((_local4.redOffset * _local3) + (_local5.redOffset * _local2)), ((_local4.greenOffset * _local3) + (_local5.greenOffset * _local2)), ((_local4.blueOffset * _local3) + (_local5.blueOffset * _local2)), ((_local4.alphaOffset * _local3) + (_local5.alphaOffset * _local2))); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package gs
Section 41
//ByteArrayAsset (mx.core.ByteArrayAsset) package mx.core { import flash.utils.*; public class ByteArrayAsset extends ByteArray implements IFlexAsset { mx_internal static const VERSION:String = "3.3.0.4852"; } }//package mx.core
Section 42
//IFlexAsset (mx.core.IFlexAsset) package mx.core { public interface IFlexAsset { } }//package mx.core
Section 43
//mx_internal (mx.core.mx_internal) package mx.core { public namespace mx_internal = "http://www.adobe.com/2006/flex/mx/internal"; }//package mx.core
Section 44
//Main (Main) package { import flash.events.*; import flash.display.*; import flash.geom.*; import girlgames.*; import flash.utils.*; public class Main extends MovieClip { public static const BOUNDS:Rectangle = new Rectangle(0, 0, WIDTH, HEIGHT); public static const WIDTH:Number = 760; public static const HEIGHT:Number = 610; public function Main(){ var _local1:GirlgamesPreloader; super(); scrollRect = BOUNDS; opaqueBackground = 0; _local1 = new GirlgamesPreloader(this); _local1.completeEvent.addListener(startup); //unresolved jump addEventListener(Event.ENTER_FRAME, onEnterFrame); } private function initializeApp(_arg1:Event=null):void{ removeEventListener(Event.ADDED_TO_STAGE, initializeApp); var _local2:Class = Class(getDefinitionByName("dressup.Application")); _local2["instance"].initialize(this); } private function onEnterFrame(_arg1:Event):void{ if (currentFrame == totalFrames){ removeEventListener(Event.ENTER_FRAME, onEnterFrame); startup(); }; } private function startup():void{ stop(); if (stage){ initializeApp(); } else { addEventListener(Event.ADDED_TO_STAGE, initializeApp); }; } } }//package
Section 45
//McBar (McBar) package { import flash.display.*; public dynamic class McBar extends MovieClip { public var barMask:MovieClip; } }//package
Section 46
//McControlPanel (McControlPanel) package { import flash.display.*; public dynamic class McControlPanel extends MovieClip { public var btnPhoto:SimpleButton; public var btnBack:SimpleButton; public var btnReset:SimpleButton; public var btnTopLogo:SimpleButton; public var btnBottomLogo:SimpleButton; } }//package
Section 47
//McGirlgamesBaner (McGirlgamesBaner) package { import flash.display.*; public dynamic class McGirlgamesBaner extends MovieClip { public var btnLogo:SimpleButton; public var btnMoreGames:SimpleButton; public var btnFreeGames:SimpleButton; } }//package
Section 48
//PreloaderMC (PreloaderMC) package { import flash.display.*; public dynamic class PreloaderMC extends MovieClip { public var loader:McBar; public var anim2:MovieClip; public var anim1:MovieClip; } }//package

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:60 84
Symbol 3 BitmapUsed by:4
Symbol 4 GraphicUses:3Used by:43
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:43
Symbol 7 BitmapUsed by:8
Symbol 8 GraphicUses:7Used by:43
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:43
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:43
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:43
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:43
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:43
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:43
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:43
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:43
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:43
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:43
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:43
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:43
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:43
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:43
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:43
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:43
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:43
Symbol 43 MovieClipUses:4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 42Used by:47
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:46
Symbol 46 MovieClipUses:45Used by:47
Symbol 47 MovieClip {McBar} [McBar]Uses:43 46Used by:60 85
Symbol 48 GraphicUsed by:51
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:51
Symbol 51 MovieClipUses:48 50Used by:60 82
Symbol 52 GraphicUsed by:55
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:55
Symbol 55 MovieClipUses:52 54Used by:60 82
Symbol 56 GraphicUsed by:59
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:59
Symbol 59 MovieClipUses:56 58Used by:60 82
Symbol 60 MovieClip {girlgames_fla.pojava_logo_2} [girlgames_fla.pojava_logo_2]Uses:2 47 51 55 59Used by:85
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:63
Symbol 63 MovieClipUses:62Used by:85
Symbol 64 GraphicUsed by:82
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:82
Symbol 67 GraphicUsed by:82
Symbol 68 GraphicUsed by:82
Symbol 69 GraphicUsed by:82
Symbol 70 GraphicUsed by:82
Symbol 71 GraphicUsed by:82
Symbol 72 GraphicUsed by:82
Symbol 73 GraphicUsed by:82
Symbol 74 GraphicUsed by:82
Symbol 75 GraphicUsed by:82
Symbol 76 GraphicUsed by:82
Symbol 77 GraphicUsed by:82
Symbol 78 GraphicUsed by:82
Symbol 79 GraphicUsed by:82
Symbol 80 GraphicUsed by:82
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:64 66 51 55 59 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81Used by:83
Symbol 83 MovieClip {girlgames_fla.Symbol13_17} [girlgames_fla.Symbol13_17]Uses:82Used by:84
Symbol 84 MovieClip {girlgames_fla.Symbol12_16} [girlgames_fla.Symbol12_16]Uses:83 2Used by:85
Symbol 85 MovieClip {PreloaderMC} [PreloaderMC]Uses:60 63 84 47
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:129
Symbol 88 FontUsed by:89 92
Symbol 89 TextUses:88Used by:91
Symbol 90 GraphicUsed by:91 93 128
Symbol 91 ButtonUses:89 90Used by:129
Symbol 92 TextUses:88Used by:93
Symbol 93 ButtonUses:92 90Used by:129
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:108 126
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:100
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100
Symbol 100 MovieClipUses:97 99Used by:108 126
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:107
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:107
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:107
Symbol 107 MovieClipUses:102 104 106Used by:108 126
Symbol 108 MovieClipUses:95 100 107Used by:124
Symbol 109 GraphicUsed by:124
Symbol 110 GraphicUsed by:124
Symbol 111 GraphicUsed by:124
Symbol 112 GraphicUsed by:124
Symbol 113 GraphicUsed by:124
Symbol 114 GraphicUsed by:124
Symbol 115 GraphicUsed by:124
Symbol 116 GraphicUsed by:124
Symbol 117 GraphicUsed by:124
Symbol 118 GraphicUsed by:124
Symbol 119 GraphicUsed by:124
Symbol 120 GraphicUsed by:124
Symbol 121 GraphicUsed by:124
Symbol 122 GraphicUsed by:124
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123Used by:125
Symbol 125 MovieClipUses:124Used by:128
Symbol 126 MovieClipUses:95 100 107Used by:127
Symbol 127 MovieClipUses:126Used by:128
Symbol 128 ButtonUses:125 127 90Used by:129
Symbol 129 MovieClip {McGirlgamesBaner} [McGirlgamesBaner]Uses:87 91 93 128
Symbol 130 GraphicUsed by:339
Symbol 131 FontUsed by:132
Symbol 132 TextUses:131Used by:339
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:133Used by:339
Symbol 135 GraphicUsed by:339
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:136Used by:339 472 515 517
Symbol 138 MovieClipUsed by:339 472 515 517 652 671 718 741
Symbol 139 GraphicUsed by:339
Symbol 140 GraphicUsed by:339
Symbol 141 GraphicUsed by:339
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:339 472 515 517
Symbol 144 GraphicUsed by:339
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:339 472 515 517 765
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClipUses:147Used by:339 472 515 517
Symbol 149 GraphicUsed by:339
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:339 472 515 517
Symbol 152 GraphicUsed by:339
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:339 472 515 517
Symbol 155 GraphicUsed by:339
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:339 472 515 517 671
Symbol 158 GraphicUsed by:339
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:339 472 515 517 671
Symbol 161 GraphicUsed by:339
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClipUses:162Used by:339 472 515 517 671
Symbol 164 GraphicUsed by:339
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:339 472 515 517 671
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:339 472 515 517 671
Symbol 169 GraphicUsed by:339
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:339 472 515 517 671
Symbol 172 GraphicUsed by:339
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:339 472 515 517 671 741
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175Used by:339 472 515 517 671
Symbol 177 GraphicUsed by:339
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:339 472 515 517 671
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:180Used by:339 472 515 517 671
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:339 472 515 517 671
Symbol 184 GraphicUsed by:339
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:185Used by:339 472 515 517 671
Symbol 187 GraphicUsed by:339
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:188Used by:339 472 515 517 671 765
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:339 472 515 517 671
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:192Used by:339 472 515 517 671
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:339 472 515 517 671
Symbol 196 GraphicUsed by:200
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:200
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:196 198 199Used by:339
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:201Used by:339 472 515 517
Symbol 203 GraphicUsed by:339
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:339 472 515 517
Symbol 206 GraphicUsed by:339
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:339 472 515 517
Symbol 209 GraphicUsed by:339
Symbol 210 GraphicUsed by:339
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClipUses:211Used by:339 472 515 517
Symbol 213 GraphicUsed by:339
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:339 472 515 517
Symbol 216 GraphicUsed by:339
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClipUses:217Used by:339 472 515 517
Symbol 219 GraphicUsed by:220
Symbol 220 MovieClipUses:219Used by:339 472 515 517
Symbol 221 GraphicUsed by:339
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:222Used by:339 472 515 517
Symbol 224 GraphicUsed by:339
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:225Used by:339 472 515 517
Symbol 227 GraphicUsed by:339
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:228Used by:339 472 515 517
Symbol 230 GraphicUsed by:339
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:231Used by:339 472 515 517
Symbol 233 GraphicUsed by:339
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234Used by:339 472 515 517 652
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:339 472 515 517
Symbol 238 GraphicUsed by:339
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:239Used by:339 472 515 517
Symbol 241 GraphicUsed by:339
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:242Used by:339 472 515 517
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:339 472 515 517
Symbol 246 GraphicUsed by:339
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:247Used by:339 472 515 517 652
Symbol 249 GraphicUsed by:250
Symbol 250 MovieClipUses:249Used by:339 472 515 517
Symbol 251 GraphicUsed by:252
Symbol 252 MovieClipUses:251Used by:339 472 515 517 652
Symbol 253 GraphicUsed by:339
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:254Used by:339 472 515 517
Symbol 256 GraphicUsed by:339
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:257Used by:339 472 515 517
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:259Used by:339 472 515 517
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClipUses:261Used by:339 472 515 517 765
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClipUses:263Used by:339
Symbol 265 GraphicUsed by:339
Symbol 266 GraphicUsed by:267
Symbol 267 MovieClipUses:266Used by:339
Symbol 268 GraphicUsed by:339
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269Used by:339
Symbol 271 GraphicUsed by:301
Symbol 272 GraphicUsed by:281
Symbol 273 GraphicUsed by:281 290
Symbol 274 GraphicUsed by:281
Symbol 275 GraphicUsed by:281
Symbol 276 GraphicUsed by:281
Symbol 277 GraphicUsed by:281
Symbol 278 GraphicUsed by:281
Symbol 279 GraphicUsed by:281
Symbol 280 GraphicUsed by:281
Symbol 281 MovieClipUses:272 273 274 275 276 277 278 279 280Used by:301
Symbol 282 GraphicUsed by:290
Symbol 283 GraphicUsed by:290
Symbol 284 GraphicUsed by:290
Symbol 285 GraphicUsed by:290
Symbol 286 GraphicUsed by:290
Symbol 287 GraphicUsed by:290
Symbol 288 GraphicUsed by:290
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClipUses:282 273 283 284 285 286 287 288 289Used by:301
Symbol 291 GraphicUsed by:292
Symbol 292 MovieClipUses:291Used by:301 472 515 517
Symbol 293 GraphicUsed by:301
Symbol 294 GraphicUsed by:295
Symbol 295 MovieClipUses:294Used by:301
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:301
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:300
Symbol 300 MovieClipUses:299Used by:301 798 969
Symbol 301 MovieClipUses:271 281 290 292 293 295 297 300Used by:339
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302Used by:304
Symbol 304 MovieClipUses:303Used by:339
Symbol 305 GraphicUsed by:339
Symbol 306 GraphicUsed by:339
Symbol 307 GraphicUsed by:339
Symbol 308 GraphicUsed by:339
Symbol 309 GraphicUsed by:339
Symbol 310 GraphicUsed by:339
Symbol 311 GraphicUsed by:339
Symbol 312 GraphicUsed by:339
Symbol 313 GraphicUsed by:339
Symbol 314 GraphicUsed by:339
Symbol 315 GraphicUsed by:339
Symbol 316 GraphicUsed by:339
Symbol 317 GraphicUsed by:339
Symbol 318 GraphicUsed by:339
Symbol 319 GraphicUsed by:339
Symbol 320 GraphicUsed by:339
Symbol 321 GraphicUsed by:339
Symbol 322 GraphicUsed by:339
Symbol 323 GraphicUsed by:339
Symbol 324 GraphicUsed by:339
Symbol 325 GraphicUsed by:339
Symbol 326 GraphicUsed by:339
Symbol 327 GraphicUsed by:339
Symbol 328 GraphicUsed by:339
Symbol 329 GraphicUsed by:339
Symbol 330 GraphicUsed by:339
Symbol 331 GraphicUsed by:339
Symbol 332 GraphicUsed by:339
Symbol 333 GraphicUsed by:339
Symbol 334 GraphicUsed by:339
Symbol 335 GraphicUsed by:339
Symbol 336 GraphicUsed by:339
Symbol 337 GraphicUsed by:339
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClip {assets.McIntro} [assets.McIntro]Uses:130 132 134 135 137 138 139 140 141 143 144 146 148 149 151 152 154 155 157 158 160 161 163 164 166 168 169 171 172 174 176 177 179 181 183 184 186 187 189 191 193 195 200 202 203 205 206 208 209 210 212 213 215 216 218 220 221 223 224 226 227 229 230 232 233 235 237 238 240 241 243 245 246 248 250 252 253 255 256 258 260 262 264 265 267 268 270 301 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
Symbol 340 GraphicUsed by:517
Symbol 341 GraphicUsed by:342
Symbol 342 MovieClipUses:341Used by:517
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:343Used by:472 515 517
Symbol 345 GraphicUsed by:517
Symbol 346 GraphicUsed by:517
Symbol 347 GraphicUsed by:517
Symbol 348 GraphicUsed by:517
Symbol 349 GraphicUsed by:517
Symbol 350 GraphicUsed by:517
Symbol 351 GraphicUsed by:517
Symbol 352 GraphicUsed by:517
Symbol 353 GraphicUsed by:517
Symbol 354 GraphicUsed by:517
Symbol 355 GraphicUsed by:517
Symbol 356 GraphicUsed by:517
Symbol 357 GraphicUsed by:517
Symbol 358 GraphicUsed by:517
Symbol 359 GraphicUsed by:517
Symbol 360 GraphicUsed by:517
Symbol 361 GraphicUsed by:517
Symbol 362 GraphicUsed by:517
Symbol 363 GraphicUsed by:517
Symbol 364 GraphicUsed by:517
Symbol 365 GraphicUsed by:517
Symbol 366 GraphicUsed by:517
Symbol 367 GraphicUsed by:517
Symbol 368 GraphicUsed by:517
Symbol 369 GraphicUsed by:517
Symbol 370 GraphicUsed by:517
Symbol 371 GraphicUsed by:517
Symbol 372 GraphicUsed by:517
Symbol 373 GraphicUsed by:517
Symbol 374 GraphicUsed by:517
Symbol 375 GraphicUsed by:517
Symbol 376 GraphicUsed by:517
Symbol 377 GraphicUsed by:378
Symbol 378 MovieClipUses:377Used by:472 515 517 718
Symbol 379 GraphicUsed by:517
Symbol 380 GraphicUsed by:389
Symbol 381 GraphicUsed by:389 398
Symbol 382 GraphicUsed by:389
Symbol 383 GraphicUsed by:389
Symbol 384 GraphicUsed by:389
Symbol 385 GraphicUsed by:389
Symbol 386 GraphicUsed by:389
Symbol 387 GraphicUsed by:389
Symbol 388 GraphicUsed by:389
Symbol 389 MovieClipUses:380 381 382 383 384 385 386 387 388Used by:472 515 517
Symbol 390 GraphicUsed by:398
Symbol 391 GraphicUsed by:398
Symbol 392 GraphicUsed by:398
Symbol 393 GraphicUsed by:398
Symbol 394 GraphicUsed by:398
Symbol 395 GraphicUsed by:398
Symbol 396 GraphicUsed by:398
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClipUses:390 381 391 392 393 394 395 396 397Used by:472 515 517
Symbol 399 GraphicUsed by:517
Symbol 400 GraphicUsed by:407
Symbol 401 GraphicUsed by:402
Symbol 402 MovieClipUses:401Used by:407
Symbol 403 GraphicUsed by:404
Symbol 404 MovieClipUses:403Used by:407
Symbol 405 GraphicUsed by:406
Symbol 406 MovieClipUses:405Used by:407
Symbol 407 MovieClipUses:400 402 404 406Used by:472 515 517
Symbol 408 GraphicUsed by:428
Symbol 409 ShapeTweeningUsed by:427
Symbol 410 GraphicUsed by:427
Symbol 411 GraphicUsed by:427
Symbol 412 GraphicUsed by:427
Symbol 413 GraphicUsed by:427
Symbol 414 GraphicUsed by:427
Symbol 415 GraphicUsed by:427
Symbol 416 GraphicUsed by:427
Symbol 417 ShapeTweeningUsed by:427
Symbol 418 GraphicUsed by:427
Symbol 419 GraphicUsed by:427
Symbol 420 GraphicUsed by:427
Symbol 421 GraphicUsed by:427
Symbol 422 GraphicUsed by:427
Symbol 423 GraphicUsed by:427
Symbol 424 GraphicUsed by:427
Symbol 425 GraphicUsed by:427
Symbol 426 GraphicUsed by:427
Symbol 427 MovieClipUses:409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426Used by:428 472 515
Symbol 428 MovieClipUses:408 427Used by:517
Symbol 429 GraphicUsed by:472
Symbol 430 GraphicUsed by:472
Symbol 431 GraphicUsed by:472
Symbol 432 GraphicUsed by:472
Symbol 433 GraphicUsed by:472
Symbol 434 GraphicUsed by:472
Symbol 435 GraphicUsed by:472
Symbol 436 GraphicUsed by:472
Symbol 437 GraphicUsed by:472
Symbol 438 GraphicUsed by:472
Symbol 439 GraphicUsed by:472
Symbol 440 GraphicUsed by:472
Symbol 441 GraphicUsed by:472
Symbol 442 GraphicUsed by:472
Symbol 443 GraphicUsed by:472
Symbol 444 GraphicUsed by:472
Symbol 445 GraphicUsed by:449
Symbol 446 GraphicUsed by:447
Symbol 447 MovieClipUses:446Used by:449
Symbol 448 GraphicUsed by:449
Symbol 449 MovieClipUses:445 447 448Used by:472
Symbol 450 GraphicUsed by:472
Symbol 451 GraphicUsed by:472
Symbol 452 GraphicUsed by:472
Symbol 453 GraphicUsed by:472
Symbol 454 GraphicUsed by:472
Symbol 455 GraphicUsed by:472
Symbol 456 GraphicUsed by:472
Symbol 457 GraphicUsed by:472
Symbol 458 GraphicUsed by:472
Symbol 459 GraphicUsed by:472
Symbol 460 GraphicUsed by:472
Symbol 461 GraphicUsed by:472
Symbol 462 GraphicUsed by:472
Symbol 463 GraphicUsed by:472
Symbol 464 GraphicUsed by:472
Symbol 465 GraphicUsed by:472
Symbol 466 GraphicUsed by:472
Symbol 467 GraphicUsed by:472
Symbol 468 GraphicUsed by:472
Symbol 469 GraphicUsed by:472
Symbol 470 GraphicUsed by:471
Symbol 471 MovieClipUses:470Used by:472 515
Symbol 472 MovieClipUses:344 429 137 138 430 431 432 143 433 146 148 434 151 435 154 436 157 437 160 438 163 439 166 168 440 171 441 174 176 442 179 181 183 443 186 444 189 191 193 195 449 450 202 451 205 452 208 453 454 212 455 215 456 218 220 457 223 458 226 459 229 460 232 461 235 237 462 240 463 243 245 464 248 250 252 465 255 466 258 260 262 378 467 389 398 292 468 407 469 471 427Used by:517
Symbol 473 GraphicUsed by:476
Symbol 474 GraphicUsed by:475
Symbol 475 MovieClipUses:474Used by:476
Symbol 476 MovieClipUses:473 475Used by:516
Symbol 477 GraphicUsed by:515
Symbol 478 GraphicUsed by:515
Symbol 479 GraphicUsed by:515
Symbol 480 GraphicUsed by:515
Symbol 481 GraphicUsed by:515
Symbol 482 GraphicUsed by:515
Symbol 483 GraphicUsed by:515
Symbol 484 GraphicUsed by:515
Symbol 485 GraphicUsed by:515
Symbol 486 GraphicUsed by:515
Symbol 487 GraphicUsed by:515
Symbol 488 GraphicUsed by:515
Symbol 489 GraphicUsed by:515
Symbol 490 GraphicUsed by:515
Symbol 491 GraphicUsed by:515
Symbol 492 GraphicUsed by:515
Symbol 493 GraphicUsed by:515
Symbol 494 GraphicUsed by:515
Symbol 495 GraphicUsed by:515
Symbol 496 GraphicUsed by:515
Symbol 497 GraphicUsed by:515
Symbol 498 GraphicUsed by:515
Symbol 499 GraphicUsed by:515
Symbol 500 GraphicUsed by:515
Symbol 501 GraphicUsed by:515
Symbol 502 GraphicUsed by:515
Symbol 503 GraphicUsed by:515
Symbol 504 GraphicUsed by:515
Symbol 505 GraphicUsed by:515
Symbol 506 GraphicUsed by:515
Symbol 507 GraphicUsed by:515
Symbol 508 GraphicUsed by:515
Symbol 509 GraphicUsed by:510
Symbol 510 MovieClipUses:509Used by:515
Symbol 511 GraphicUsed by:515
Symbol 512 GraphicUsed by:515
Symbol 513 GraphicUsed by:514
Symbol 514 MovieClipUses:513Used by:515
Symbol 515 MovieClipUses:344 477 137 138 478 479 480 143 481 146 148 482 151 483 154 484 157 485 160 486 163 487 166 168 488 171 489 174 176 490 179 181 183 491 186 492 189 191 193 195 202 493 205 494 208 495 496 212 497 215 498 218 220 499 223 500 226 501 229 502 232 503 235 237 504 240 505 243 245 506 248 250 252 507 255 508 258 260 262 378 510 511 389 398 292 512 407 514 471 427Used by:516
Symbol 516 MovieClipUses:476 515Used by:517
Symbol 517 MovieClip {assets.scene.McBackground} [assets.scene.McBackground]Uses:340 342 344 345 137 138 346 347 348 143 349 146 148 350 151 351 154 352 157 353 160 354 163 355 166 168 356 171 357 174 176 358 179 181 183 359 186 360 189 191 193 195 202 361 205 362 208 363 364 212 365 215 366 218 220 367 223 368 226 369 229 370 232 371 235 237 372 240 373 243 245 374 248 250 252 375 255 376 258 260 262 378 379 389 398 292 399 407 428 472 516Used by:1016
Symbol 518 GraphicUsed by:519
Symbol 519 MovieClipUses:518Used by:523 526 529
Symbol 520 GraphicUsed by:521 523
Symbol 521 MovieClipUses:520Used by:523
Symbol 522 GraphicUsed by:523 526 529
Symbol 523 ButtonUses:519 521 522 520Used by:524
Symbol 524 MovieClipUses:523Used by:531
Symbol 525 GraphicUsed by:526
Symbol 526 ButtonUses:519 525 522Used by:527
Symbol 527 MovieClipUses:526Used by:531
Symbol 528 GraphicUsed by:529
Symbol 529 ButtonUses:519 528 522Used by:530
Symbol 530 MovieClipUses:529Used by:531
Symbol 531 MovieClipUses:524 527 530Used by:1016
Symbol 532 GraphicUsed by:533
Symbol 533 MovieClipUses:532Used by:536 539 543 547 551 555
Symbol 534 GraphicUsed by:536
Symbol 535 GraphicUsed by:536 539 720
Symbol 536 ButtonUses:533 534 535Used by:537
Symbol 537 MovieClipUses:536Used by:557
Symbol 538 GraphicUsed by:539
Symbol 539 ButtonUses:533 538 535Used by:540
Symbol 540 MovieClipUses:539Used by:557
Symbol 541 GraphicUsed by:543
Symbol 542 GraphicUsed by:543
Symbol 543 ButtonUses:533 541 542Used by:544
Symbol 544 MovieClipUses:543Used by:557
Symbol 545 GraphicUsed by:547
Symbol 546 GraphicUsed by:547
Symbol 547 ButtonUses:533 545 546Used by:548
Symbol 548 MovieClipUses:547Used by:557
Symbol 549 GraphicUsed by:551
Symbol 550 GraphicUsed by:551
Symbol 551 ButtonUses:533 549 550Used by:552
Symbol 552 MovieClipUses:551Used by:557
Symbol 553 GraphicUsed by:555
Symbol 554 GraphicUsed by:555
Symbol 555 ButtonUses:533 553 554Used by:556
Symbol 556 MovieClipUses:555Used by:557
Symbol 557 MovieClipUses:537 540 544 548 552 556Used by:1016
Symbol 558 GraphicUsed by:559
Symbol 559 MovieClipUses:558Used by:563 564 768 813 866 872 882 935
Symbol 560 GraphicUsed by:562
Symbol 561 GraphicUsed by:562
Symbol 562 ButtonUses:560 561Used by:563 564
Symbol 563 MovieClipUses:559 562Used by:936
Symbol 564 MovieClipUses:559 562Used by:936
Symbol 565 GraphicUsed by:652
Symbol 566 GraphicUsed by:567
Symbol 567 MovieClipUses:566Used by:652
Symbol 568 GraphicUsed by:652
Symbol 569 GraphicUsed by:570
Symbol 570 MovieClipUses:569Used by:652
Symbol 571 GraphicUsed by:652
Symbol 572 GraphicUsed by:573
Symbol 573 MovieClipUses:572Used by:652
Symbol 574 GraphicUsed by:575
Symbol 575 MovieClipUses:574Used by:652
Symbol 576 GraphicUsed by:652
Symbol 577 GraphicUsed by:578 604
Symbol 578 MovieClipUses:577Used by:652
Symbol 579 GraphicUsed by:652
Symbol 580 GraphicUsed by:652
Symbol 581 GraphicUsed by:652
Symbol 582 GraphicUsed by:583
Symbol 583 MovieClipUses:582Used by:652
Symbol 584 GraphicUsed by:652
Symbol 585 GraphicUsed by:586
Symbol 586 MovieClipUses:585Used by:652
Symbol 587 GraphicUsed by:652
Symbol 588 GraphicUsed by:589
Symbol 589 MovieClipUses:588Used by:652
Symbol 590 GraphicUsed by:652
Symbol 591 GraphicUsed by:652
Symbol 592 GraphicUsed by:593
Symbol 593 MovieClipUses:592Used by:652
Symbol 594 GraphicUsed by:652
Symbol 595 GraphicUsed by:652
Symbol 596 GraphicUsed by:597
Symbol 597 MovieClipUses:596Used by:652
Symbol 598 GraphicUsed by:652
Symbol 599 GraphicUsed by:600
Symbol 600 MovieClipUses:599Used by:652
Symbol 601 GraphicUsed by:602
Symbol 602 MovieClipUses:601Used by:652
Symbol 603 GraphicUsed by:652
Symbol 604 MovieClipUses:577Used by:652
Symbol 605 GraphicUsed by:652
Symbol 606 GraphicUsed by:607
Symbol 607 MovieClipUses:606Used by:652
Symbol 608 GraphicUsed by:652
Symbol 609 GraphicUsed by:610
Symbol 610 MovieClipUses:609Used by:652
Symbol 611 GraphicUsed by:652
Symbol 612 GraphicUsed by:613
Symbol 613 MovieClipUses:612Used by:652
Symbol 614 GraphicUsed by:652
Symbol 615 GraphicUsed by:616
Symbol 616 MovieClipUses:615Used by:652
Symbol 617 GraphicUsed by:652
Symbol 618 GraphicUsed by:619
Symbol 619 MovieClipUses:618Used by:652
Symbol 620 GraphicUsed by:621
Symbol 621 MovieClipUses:620Used by:652
Symbol 622 GraphicUsed by:623
Symbol 623 MovieClipUses:622Used by:652
Symbol 624 GraphicUsed by:652
Symbol 625 GraphicUsed by:626
Symbol 626 MovieClipUses:625Used by:652
Symbol 627 GraphicUsed by:652
Symbol 628 GraphicUsed by:629
Symbol 629 MovieClipUses:628Used by:652
Symbol 630 GraphicUsed by:631
Symbol 631 MovieClipUses:630Used by:652
Symbol 632 GraphicUsed by:652
Symbol 633 GraphicUsed by:634
Symbol 634 MovieClipUses:633Used by:652
Symbol 635 GraphicUsed by:636
Symbol 636 MovieClipUses:635Used by:652
Symbol 637 GraphicUsed by:638
Symbol 638 MovieClipUses:637Used by:652
Symbol 639 GraphicUsed by:640
Symbol 640 MovieClipUses:639Used by:652
Symbol 641 GraphicUsed by:642
Symbol 642 MovieClipUses:641Used by:652
Symbol 643 GraphicUsed by:644
Symbol 644 MovieClipUses:643Used by:652
Symbol 645 GraphicUsed by:646
Symbol 646 MovieClipUses:645Used by:652
Symbol 647 GraphicUsed by:648
Symbol 648 MovieClipUses:647Used by:652
Symbol 649 GraphicUsed by:650
Symbol 650 MovieClipUses:649Used by:652
Symbol 651 GraphicUsed by:652
Symbol 652 MovieClipUses:565 567 568 570 571 573 575 576 578 579 248 580 252 581 583 584 586 587 589 590 138 591 593 594 235 595 597 598 600 602 603 604 605 607 608 610 611 613 614 616 617 619 621 623 624 626 627 629 631 632 634 636 638 640 642 644 646 648 650 651Used by:654 971
Symbol 653 GraphicUsed by:654
Symbol 654 ButtonUses:652 653Used by:768
Symbol 655 GraphicUsed by:722
Symbol 656 GraphicUsed by:673 720
Symbol 657 GraphicUsed by:658
Symbol 658 MovieClipUses:657Used by:671
Symbol 659 GraphicUsed by:660
Symbol 660 MovieClipUses:659Used by:671
Symbol 661 GraphicUsed by:662
Symbol 662 MovieClipUses:661Used by:671
Symbol 663 GraphicUsed by:664
Symbol 664 MovieClipUses:663Used by:671
Symbol 665 GraphicUsed by:666
Symbol 666 MovieClipUses:665Used by:671 741
Symbol 667 GraphicUsed by:668
Symbol 668 MovieClipUses:667Used by:671 741
Symbol 669 GraphicUsed by:670
Symbol 670 MovieClipUses:669Used by:671 741
Symbol 671 MovieClipUses:157 138 160 658 163 660 166 168 662 171 664 174 176 666 179 181 183 668 186 670 189 191 193 195Used by:673
Symbol 672 GraphicUsed by:673
Symbol 673 MovieClipUses:656 671 672Used by:722 728
Symbol 674 GraphicUsed by:675 676
Symbol 675 MovieClipUses:674Used by:718
Symbol 676 MovieClipUses:674Used by:718
Symbol 677 GraphicUsed by:678
Symbol 678 MovieClipUses:677Used by:718
Symbol 679 GraphicUsed by:680
Symbol 680 MovieClipUses:679Used by:718
Symbol 681 GraphicUsed by:682
Symbol 682 MovieClipUses:681Used by:718
Symbol 683 GraphicUsed by:684
Symbol 684 MovieClipUses:683Used by:718
Symbol 685 GraphicUsed by:686
Symbol 686 MovieClipUses:685Used by:718
Symbol 687 GraphicUsed by:688
Symbol 688 MovieClipUses:687Used by:718
Symbol 689 GraphicUsed by:690 691
Symbol 690 MovieClipUses:689Used by:718
Symbol 691 MovieClipUses:689Used by:718
Symbol 692 GraphicUsed by:693
Symbol 693 MovieClipUses:692Used by:718
Symbol 694 GraphicUsed by:695
Symbol 695 MovieClipUses:694Used by:718
Symbol 696 GraphicUsed by:697
Symbol 697 MovieClipUses:696Used by:718
Symbol 698 GraphicUsed by:699
Symbol 699 MovieClipUses:698Used by:718
Symbol 700 GraphicUsed by:701
Symbol 701 MovieClipUses:700Used by:718
Symbol 702 GraphicUsed by:703
Symbol 703 MovieClipUses:702Used by:718
Symbol 704 GraphicUsed by:705
Symbol 705 MovieClipUses:704Used by:718
Symbol 706 GraphicUsed by:707
Symbol 707 MovieClipUses:706Used by:718
Symbol 708 GraphicUsed by:709
Symbol 709 MovieClipUses:708Used by:718
Symbol 710 GraphicUsed by:711
Symbol 711 MovieClipUses:710Used by:718 741
Symbol 712 GraphicUsed by:713
Symbol 713 MovieClipUses:712Used by:718 741
Symbol 714 GraphicUsed by:715
Symbol 715 MovieClipUses:714Used by:718 741
Symbol 716 GraphicUsed by:717
Symbol 717 MovieClipUses:716Used by:718 741
Symbol 718 MovieClipUses:378 675 676 678 680 682 684 686 688 690 691 693 695 697 699 701 703 705 707 709 711 713 715 717 138Used by:720
Symbol 719 GraphicUsed by:720
Symbol 720 MovieClipUses:535 656 718 719Used by:722 728
Symbol 721 GraphicUsed by:722
Symbol 722 MovieClipUses:655 673 720 721Used by:723
Symbol 723 MovieClipUses:722Used by:725 971
Symbol 724 GraphicUsed by:725
Symbol 725 ButtonUses:723 724Used by:768
Symbol 726 GraphicUsed by:728
Symbol 727 GraphicUsed by:728
Symbol 728 MovieClipUses:726 673 720 727Used by:730 971
Symbol 729 GraphicUsed by:730
Symbol 730 ButtonUses:728 729Used by:768
Symbol 731 GraphicUsed by:741
Symbol 732 GraphicUsed by:741
Symbol 733 GraphicUsed by:741
Symbol 734 GraphicUsed by:741
Symbol 735 GraphicUsed by:741
Symbol 736 GraphicUsed by:737
Symbol 737 MovieClipUses:736Used by:741
Symbol 738 GraphicUsed by:739
Symbol 739 MovieClipUses:738Used by:741
Symbol 740 GraphicUsed by:741
Symbol 741 MovieClipUses:138 731 174 732 666 733 668 734 713 715 717 735 670 711 737 739 740Used by:742 750
Symbol 742 MovieClipUses:741Used by:744 971
Symbol 743 GraphicUsed by:744 751
Symbol 744 ButtonUses:742 743Used by:768
Symbol 745 GraphicUsed by:746
Symbol 746 MovieClipUses:745Used by:747
Symbol 747 MovieClipUses:746Used by:749 971
Symbol 748 GraphicUsed by:749 754
Symbol 749 ButtonUses:747 748Used by:768
Symbol 750 MovieClipUses:741Used by:751 971
Symbol 751 ButtonUses:750 743Used by:768
Symbol 752 GraphicUsed by:753
Symbol 753 MovieClipUses:752Used by:754 971
Symbol 754 ButtonUses:753 748Used by:768
Symbol 755 GraphicUsed by:765
Symbol 756 GraphicUsed by:765
Symbol 757 GraphicUsed by:765
Symbol 758 GraphicUsed by:765
Symbol 759 GraphicUsed by:760
Symbol 760 MovieClipUses:759Used by:765
Symbol 761 GraphicUsed by:765
Symbol 762 GraphicUsed by:763
Symbol 763 MovieClipUses:762Used by:765
Symbol 764 GraphicUsed by:765
Symbol 765 MovieClipUses:755 189 756 146 757 262 758 760 761 763 764Used by:767 971
Symbol 766 GraphicUsed by:767
Symbol 767 ButtonUses:765 766Used by:768
Symbol 768 MovieClipUses:559 654 725 730 744 749 751 754 767Used by:936
Symbol 769 GraphicUsed by:772
Symbol 770 GraphicUsed by:771
Symbol 771 MovieClipUses:770Used by:772
Symbol 772 MovieClipUses:769 771Used by:774 969
Symbol 773 GraphicUsed by:774
Symbol 774 ButtonUses:772 773Used by:813
Symbol 775 GraphicUsed by:776
Symbol 776 MovieClipUses:775Used by:778 969
Symbol 777 GraphicUsed by:778
Symbol 778 ButtonUses:776 777Used by:813
Symbol 779 GraphicUsed by:780
Symbol 780 MovieClipUses:779Used by:782 969
Symbol 781 GraphicUsed by:782 785
Symbol 782 ButtonUses:780 781Used by:813
Symbol 783 GraphicUsed by:784
Symbol 784 MovieClipUses:783Used by:785 969
Symbol 785 ButtonUses:784 781Used by:813
Symbol 786 GraphicUsed by:794
Symbol 787 GraphicUsed by:788
Symbol 788 MovieClipUses:787Used by:794
Symbol 789 GraphicUsed by:790
Symbol 790 MovieClipUses:789Used by:794
Symbol 791 GraphicUsed by:792
Symbol 792 MovieClipUses:791Used by:794
Symbol 793 GraphicUsed by:794
Symbol 794 MovieClipUses:786 788 790 792 793Used by:796 969
Symbol 795 GraphicUsed by:796
Symbol 796 ButtonUses:794 795Used by:813
Symbol 797 GraphicUsed by:798
Symbol 798 ButtonUses:300 797Used by:813
Symbol 799 GraphicUsed by:806
Symbol 800 GraphicUsed by:805
Symbol 801 GraphicUsed by:802
Symbol 802 MovieClipUses:801Used by:805
Symbol 803 GraphicUsed by:804 844 849
Symbol 804 MovieClipUses:803Used by:805
Symbol 805 MovieClipUses:800 802 804Used by:806
Symbol 806 MovieClipUses:799 805Used by:808 969
Symbol 807 GraphicUsed by:808
Symbol 808 ButtonUses:806 807Used by:813
Symbol 809 GraphicUsed by:810
Symbol 810 MovieClipUses:809Used by:812 969
Symbol 811 GraphicUsed by:812
Symbol 812 ButtonUses:810 811Used by:813
Symbol 813 MovieClipUses:559 774 778 782 785 796 798 808 812Used by:936
Symbol 814 GraphicUsed by:815
Symbol 815 MovieClipUses:814Used by:817 967
Symbol 816 GraphicUsed by:817 821
Symbol 817 ButtonUses:815 816Used by:866
Symbol 818 GraphicUsed by:819
Symbol 819 MovieClipUses:818Used by:820
Symbol 820 MovieClipUses:819Used by:821 967
Symbol 821 ButtonUses:820 816Used by:866
Symbol 822 GraphicUsed by:823
Symbol 823 MovieClipUses:822Used by:824
Symbol 824 MovieClipUses:823Used by:826 967
Symbol 825 GraphicUsed by:826 829
Symbol 826 ButtonUses:824 825Used by:866
Symbol 827 GraphicUsed by:828
Symbol 828 MovieClipUses:827Used by:829 967
Symbol 829 ButtonUses:828 825Used by:866
Symbol 830 GraphicUsed by:831
Symbol 831 MovieClipUses:830Used by:832
Symbol 832 MovieClipUses:831Used by:834 967
Symbol 833 GraphicUsed by:834 837
Symbol 834 ButtonUses:832 833Used by:866
Symbol 835 GraphicUsed by:836
Symbol 836 MovieClipUses:835Used by:837 967
Symbol 837 ButtonUses:836 833Used by:866
Symbol 838 GraphicUsed by:859
Symbol 839 GraphicUsed by:840 842 846 848
Symbol 840 MovieClipUses:839Used by:845 856
Symbol 841 GraphicUsed by:845
Symbol 842 MovieClipUses:839Used by:845 856
Symbol 843 GraphicUsed by:845
Symbol 844 MovieClipUses:803Used by:845 856
Symbol 845 MovieClipUses:840 841 842 843 844Used by:859
Symbol 846 MovieClipUses:839Used by:850 858
Symbol 847 GraphicUsed by:850
Symbol 848 MovieClipUses:839Used by:850 858
Symbol 849 MovieClipUses:803Used by:850 858
Symbol 850 MovieClipUses:846 847 848 849Used by:859
Symbol 851 GraphicUsed by:852
Symbol 852 MovieClipUses:851Used by:859
Symbol 853 GraphicUsed by:859
Symbol 854 GraphicUsed by:856
Symbol 855 GraphicUsed by:856
Symbol 856 MovieClipUses:840 854 842 855 844Used by:859
Symbol 857 GraphicUsed by:858
Symbol 858 MovieClipUses:846 857 848 849Used by:859
Symbol 859 MovieClipUses:838 845 850 852 853 856 858Used by:861 967
Symbol 860 GraphicUsed by:861
Symbol 861 ButtonUses:859 860Used by:866
Symbol 862 GraphicUsed by:863
Symbol 863 MovieClipUses:862Used by:865 967
Symbol 864 GraphicUsed by:865
Symbol 865 ButtonUses:863 864Used by:866
Symbol 866 MovieClipUses:559 817 821 826 829 834 837 861 865Used by:936
Symbol 867 GraphicUsed by:868
Symbol 868 MovieClipUses:867Used by:870 871 904 942
Symbol 869 GraphicUsed by:870 871
Symbol 870 ButtonUses:868 869Used by:872
Symbol 871 ButtonUses:868 869Used by:872
Symbol 872 MovieClipUses:559 870 871Used by:936
Symbol 873 GraphicUsed by:874
Symbol 874 MovieClipUses:873Used by:876 877 878 879 880 881 885 942
Symbol 875 GraphicUsed by:876 877 878 879 880 881
Symbol 876 ButtonUses:874 875Used by:882
Symbol 877 ButtonUses:874 875Used by:882
Symbol 878 ButtonUses:874 875Used by:882
Symbol 879 ButtonUses:874 875Used by:882
Symbol 880 ButtonUses:874 875Used by:882
Symbol 881 ButtonUses:874 875Used by:882
Symbol 882 MovieClipUses:559 876 877 878 879 880 881Used by:936
Symbol 883 GraphicUsed by:884
Symbol 884 MovieClipUses:883Used by:885 942
Symbol 885 MovieClipUses:874 884Used by:887
Symbol 886 GraphicUsed by:887
Symbol 887 ButtonUses:885 886Used by:935
Symbol 888 GraphicUsed by:889
Symbol 889 MovieClipUses:888Used by:892 942
Symbol 890 GraphicUsed by:891
Symbol 891 MovieClipUses:890Used by:892 942
Symbol 892 MovieClipUses:889 891Used by:894
Symbol 893 GraphicUsed by:894
Symbol 894 ButtonUses:892 893Used by:935
Symbol 895 GraphicUsed by:896
Symbol 896 MovieClipUses:895Used by:899 942
Symbol 897 GraphicUsed by:898
Symbol 898 MovieClipUses:897Used by:899 942
Symbol 899 MovieClipUses:896 898Used by:901
Symbol 900 GraphicUsed by:901
Symbol 901 ButtonUses:899 900Used by:935
Symbol 902 GraphicUsed by:903
Symbol 903 MovieClipUses:902Used by:904 942
Symbol 904 MovieClipUses:903 868Used by:906
Symbol 905 GraphicUsed by:906
Symbol 906 ButtonUses:904 905Used by:935
Symbol 907 GraphicUsed by:908
Symbol 908 MovieClipUses:907Used by:911 942
Symbol 909 GraphicUsed by:910
Symbol 910 MovieClipUses:909Used by:911 942
Symbol 911 MovieClipUses:908 910Used by:913
Symbol 912 GraphicUsed by:913
Symbol 913 ButtonUses:911 912Used by:935
Symbol 914 GraphicUsed by:915
Symbol 915 MovieClipUses:914Used by:918 942
Symbol 916 GraphicUsed by:917
Symbol 917 MovieClipUses:916Used by:918 942
Symbol 918 MovieClipUses:915 917Used by:920
Symbol 919 GraphicUsed by:920
Symbol 920 ButtonUses:918 919Used by:935
Symbol 921 GraphicUsed by:922
Symbol 922 MovieClipUses:921Used by:925 942
Symbol 923 GraphicUsed by:924
Symbol 924 MovieClipUses:923Used by:925 942
Symbol 925 MovieClipUses:922 924Used by:927
Symbol 926 GraphicUsed by:927
Symbol 927 ButtonUses:925 926Used by:935
Symbol 928 GraphicUsed by:929
Symbol 929 MovieClipUses:928Used by:932 942
Symbol 930 GraphicUsed by:931
Symbol 931 MovieClipUses:930Used by:932 942
Symbol 932 MovieClipUses:929 931Used by:934
Symbol 933 GraphicUsed by:934
Symbol 934 ButtonUses:932 933Used by:935
Symbol 935 MovieClipUses:559 887 894 901 906 913 920 927 934Used by:936
Symbol 936 MovieClipUses:563 564 768 813 866 872 882 935Used by:1016
Symbol 937 GraphicUsed by:938
Symbol 938 MovieClipUses:937Used by:942
Symbol 939 FontUsed by:940 943 944 945 946 947 948 949 951 952 953 954 955 956 958 959 960 961 962 963 964 965 966 968 970 972 974
Symbol 940 TextUses:939Used by:941
Symbol 941 MovieClipUses:940Used by:942
Symbol 942 MovieClipUses:938 941 929 931 922 924 915 917 908 910 903 868 896 898 889 891 874 884Used by:976
Symbol 943 EditableTextUses:939Used by:950
Symbol 944 EditableTextUses:939Used by:950 957 969 973 975
Symbol 945 EditableTextUses:939Used by:950 957 967 969 973 975
Symbol 946 EditableTextUses:939Used by:950 957 967 969 971 973 975
Symbol 947 EditableTextUses:939Used by:950 957 967 969 971 973 975
Symbol 948 EditableTextUses:939Used by:950 957 967 969 971 973 975
Symbol 949 EditableTextUses:939Used by:950 957 967 969 971 973 975
Symbol 950 MovieClipUses:943 944 945 946 947 948 949Used by:976
Symbol 951 EditableTextUses:939Used by:957
Symbol 952 EditableTextUses:939Used by:957 967 969 973 975
Symbol 953 EditableTextUses:939Used by:957 967 969 973 975
Symbol 954 EditableTextUses:939Used by:957 967 969 973 975
Symbol 955 EditableTextUses:939Used by:957 967 969 973 975
Symbol 956 EditableTextUses:939Used by:957 969 973 975
Symbol 957 MovieClipUses:951 952 953 954 955 956 944 945 946 947 948 949Used by:976
Symbol 958 EditableTextUses:939Used by:967
Symbol 959 TextUses:939Used by:967
Symbol 960 TextUses:939Used by:967
Symbol 961 TextUses:939Used by:967
Symbol 962 TextUses:939Used by:967
Symbol 963 TextUses:939Used by:967
Symbol 964 TextUses:939Used by:967
Symbol 965 TextUses:939Used by:967
Symbol 966 TextUses:939Used by:967
Symbol 967 MovieClipUses:958 952 953 863 954 859 955 836 959 960 961 962 963 964 965 832 828 824 820 966 815 945 946 947 948 949Used by:976
Symbol 968 EditableTextUses:939Used by:969
Symbol 969 MovieClipUses:968 952 953 810 954 806 955 300 956 794 944 784 945 780 946 776 947 772 948 949Used by:976
Symbol 970 EditableTextUses:939Used by:971
Symbol 971 MovieClipUses:970 765 753 750 747 742 728 946 723 947 652 948 949Used by:976
Symbol 972 EditableTextUses:939Used by:973
Symbol 973 MovieClipUses:972 952 953 954 955 956 944 945 946 947 948 949Used by:976
Symbol 974 EditableTextUses:939Used by:975
Symbol 975 MovieClipUses:974 952 953 954 955 956 944 945 946 947 948 949Used by:976
Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel]Uses:942 950 957 967 969 971 973 975Used by:1016
Symbol 977 GraphicUsed by:981 989
Symbol 978 GraphicUsed by:981
Symbol 979 GraphicUsed by:981
Symbol 980 GraphicUsed by:981
Symbol 981 ButtonUses:977 978 979 980Used by:1015
Symbol 982 GraphicUsed by:985
Symbol 983 GraphicUsed by:985
Symbol 984 GraphicUsed by:985
Symbol 985 ButtonUses:982 983 984Used by:1015
Symbol 986 GraphicUsed by:989
Symbol 987 GraphicUsed by:989
Symbol 988 GraphicUsed by:989
Symbol 989 ButtonUses:977 986 987 988Used by:1015
Symbol 990 GraphicUsed by:991
Symbol 991 MovieClipUses:990Used by:995
Symbol 992 GraphicUsed by:993
Symbol 993 MovieClipUses:992Used by:995
Symbol 994 GraphicUsed by:995
Symbol 995 MovieClipUses:991 993 994Used by:1011 1014
Symbol 996 GraphicUsed by:1001
Symbol 997 GraphicUsed by:998
Symbol 998 MovieClipUses:997Used by:1001
Symbol 999 GraphicUsed by:1000
Symbol 1000 MovieClipUses:999Used by:1001
Symbol 1001 MovieClipUses:996 998 1000Used by:1011 1014
Symbol 1002 GraphicUsed by:1009
Symbol 1003 GraphicUsed by:1004
Symbol 1004 MovieClipUses:1003Used by:1009
Symbol 1005 GraphicUsed by:1006
Symbol 1006 MovieClipUses:1005Used by:1009
Symbol 1007 GraphicUsed by:1008
Symbol 1008 MovieClipUses:1007Used by:1009
Symbol 1009 MovieClipUses:1002 1004 1006 1008Used by:1011 1014
Symbol 1010 GraphicUsed by:1012 1014
Symbol 1011 MovieClipUses:995 1001 1009Used by:1014
Symbol 1012 MovieClipUses:1010Used by:1014
Symbol 1013 GraphicUsed by:1014
Symbol 1014 ButtonUses:995 1001 1009 1010 1011 1012 1013Used by:1015
Symbol 1015 MovieClip {McControlPanel} [McControlPanel]Uses:981 985 989 1014Used by:1016
Symbol 1016 MovieClip {assets.scene.McScene} [assets.scene.McScene]Uses:517 531 557 936 976 1015
Symbol 1017 BinaryData {dressup.Application_CONFIG_XML}

Instance Names

"barMask"Symbol 47 MovieClip {McBar} [McBar] Frame 1Symbol 46 MovieClip
"loader"Symbol 60 MovieClip {girlgames_fla.pojava_logo_2} [girlgames_fla.pojava_logo_2] Frame 1Symbol 47 MovieClip {McBar} [McBar]
"anim2"Symbol 83 MovieClip {girlgames_fla.Symbol13_17} [girlgames_fla.Symbol13_17] Frame 1Symbol 82 MovieClip
"anim2"Symbol 85 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 60 MovieClip {girlgames_fla.pojava_logo_2} [girlgames_fla.pojava_logo_2]
"anim1"Symbol 85 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 84 MovieClip {girlgames_fla.Symbol12_16} [girlgames_fla.Symbol12_16]
"loader"Symbol 85 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 47 MovieClip {McBar} [McBar]
"btnMoreGames"Symbol 129 MovieClip {McGirlgamesBaner} [McGirlgamesBaner] Frame 1Symbol 91 Button
"btnFreeGames"Symbol 129 MovieClip {McGirlgamesBaner} [McGirlgamesBaner] Frame 1Symbol 93 Button
"btnLogo"Symbol 129 MovieClip {McGirlgamesBaner} [McGirlgamesBaner] Frame 1Symbol 128 Button
"mcPart1"Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 942 MovieClip
"mcPart2"Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 950 MovieClip
"mcPart3"Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 957 MovieClip
"mcPart4"Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 967 MovieClip
"mcPart5"Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 969 MovieClip
"mcPart6"Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 971 MovieClip
"mcPart7"Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 973 MovieClip
"mcPart8"Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 975 MovieClip
"btnBack"Symbol 1015 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 981 Button
"btnPhoto"Symbol 1015 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 985 Button
"btnReset"Symbol 1015 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 989 Button
"btnBottomLogo"Symbol 1015 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 1014 Button
"btnTopLogo"Symbol 1015 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 1014 Button
"mcBackground"Symbol 1016 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 517 MovieClip {assets.scene.McBackground} [assets.scene.McBackground]
"mcBgButtons"Symbol 1016 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 531 MovieClip
"mcCatButtons"Symbol 1016 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 557 MovieClip
"mcCatPanels"Symbol 1016 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 936 MovieClip
"mcModel"Symbol 1016 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 976 MovieClip {assets.scene.McModel} [assets.scene.McModel]
"mcControlPanel"Symbol 1016 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 1015 MovieClip {McControlPanel} [McControlPanel]

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 1463 bytes "<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'><rdf:Description rdf:about='' xmlns ..."
ScriptLimits (65)Timeline Frame 1MaxRecursionDepth: 1000, ScriptTimeout: 60 seconds
ExportAssets (56)Timeline Frame 1Symbol 85 as "PreloaderMC"
ExportAssets (56)Timeline Frame 1Symbol 60 as "girlgames_fla.pojava_logo_2"
ExportAssets (56)Timeline Frame 1Symbol 47 as "McBar"
ExportAssets (56)Timeline Frame 1Symbol 84 as "girlgames_fla.Symbol12_16"
ExportAssets (56)Timeline Frame 1Symbol 83 as "girlgames_fla.Symbol13_17"
ExportAssets (56)Timeline Frame 2Symbol 129 as "McGirlgamesBaner"
ExportAssets (56)Timeline Frame 2Symbol 339 as "assets.McIntro"
ExportAssets (56)Timeline Frame 2Symbol 1016 as "assets.scene.McScene"
ExportAssets (56)Timeline Frame 2Symbol 1015 as "McControlPanel"
ExportAssets (56)Timeline Frame 2Symbol 517 as "assets.scene.McBackground"
ExportAssets (56)Timeline Frame 2Symbol 976 as "assets.scene.McModel"
SerialNumber (41)Timeline Frame 1

Labels

"Main"Frame 1
"start"Frame 2




http://swfchan.com/24/118896/info.shtml
Created: 6/3 -2019 05:27:10 Last modified: 6/3 -2019 05:27:10 Server time: 26/04 -2024 05:15:26