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

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

Crazy-Cream-Dessert.swf

This is the info page for
Flash #125779

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


Text
Play More
Dressup Games

Free Games For
Your Website

<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">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">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>

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">category3:</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="#ffffff" letterSpacing="0.000000" kerning="1">frame 3</font></p>

<p align="left"><font face="Courier New" size="30" color="#ff6666" 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>

<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
//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 11
//PropertyRequirement (common.comparing.PropertyRequirement) package common.comparing { public class PropertyRequirement implements IRequirement { private var _value:Object; private var _property:String; public function PropertyRequirement(_arg1:String, _arg2:Object){ _property = _arg1; _value = _arg2; } public function accept(_arg1:Object):Boolean{ return (((((_arg1) && (_arg1.hasOwnProperty(_property)))) && ((_arg1[_property] == _value)))); } } }//package common.comparing
Section 12
//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 13
//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 14
//IConverter (common.converting.IConverter) package common.converting { public interface IConverter { function convert(_arg1:Object):Object; } }//package common.converting
Section 15
//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 16
//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 17
//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 18
//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.useHandCursor = _enabled; _content.buttonMode = _enabled; if (_checked){ _content.gotoAndStop(2); } else { _content.gotoAndStop(1); }; } } }//package common.flash.controls
Section 19
//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 20
//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 21
//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 22
//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 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 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 23
//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 24
//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 25
//pojava_logo_2 (cooking_fla.pojava_logo_2) package cooking_fla { import flash.display.*; public dynamic class pojava_logo_2 extends MovieClip { public var loader:McBar; } }//package cooking_fla
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.btnLogo.scaleX; initialize(); setDefaultState(); } private function initialize():void{ setButtonAction(_content.btnBack, onBackClick); setButtonAction(_content.btnPhoto, onPhotoClick); setButtonAction(_content.btnLogo, onLogoClick); setButtonAction(_content.btnReset, onResetClick); } private function onBackClick():void{ app.scene.controlsVisible = true; setDefaultState(); } private function onPhotoClick():void{ app.scene.controlsVisible = false; showButtons(_content.btnBack, _content.btnLogo, _content.btnReset); } public function setDefaultState():void{ showButtons(_content.btnPhoto, _content.btnReset, _content.btnLogo); } 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.cookinggames.com/"); } private function onResetClick():void{ app.scene.reset(); app.scene.controlsVisible = true; showButtons(_content.btnPhoto, _content.btnLogo, _content.btnReset); } } }//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()); _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
//Symbol23_3 (dressup_fla.Symbol23_3) package dressup_fla { import flash.display.*; public dynamic class Symbol23_3 extends MovieClip { public var head:MovieClip; } }//package dressup_fla
Section 36
//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.cookinggames.com/"); } private function onMoreGamesClick(_arg1:MouseEvent):void{ BrowserUtil.navigate("http://www.cookinggames.com/"); } private function onLogoClick(_arg1:MouseEvent):void{ BrowserUtil.navigate("http://www.cookinggames.com/"); } } }//package girlgames
Section 37
//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.cookinggames.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 38
//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 39
//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 40
//IFlexAsset (mx.core.IFlexAsset) package mx.core { public interface IFlexAsset { } }//package mx.core
Section 41
//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 42
//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 43
//McBar (McBar) package { import flash.display.*; public dynamic class McBar extends MovieClip { public var barMask:MovieClip; } }//package
Section 44
//McControlPanel (McControlPanel) package { import flash.display.*; public dynamic class McControlPanel extends MovieClip { public var btnLogo:SimpleButton; public var btnPhoto:SimpleButton; public var btnBack:SimpleButton; public var btnReset:SimpleButton; } }//package
Section 45
//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 46
//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 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:41
Symbol 3 BitmapUsed by:4
Symbol 4 GraphicUses:3Used by:41
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:41
Symbol 7 BitmapUsed by:8
Symbol 8 GraphicUses:7Used by:41
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:41
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:41
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:41
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:41
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:41
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:41
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:41
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:41
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:41
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:41
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:41
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:41
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:41
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:41
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:41
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:41
Symbol 41 MovieClipUses:2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40Used by:45
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:44
Symbol 44 MovieClipUses:43Used by:45
Symbol 45 MovieClip {McBar} [McBar]Uses:41 44Used by:77 80
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:51 804
Symbol 48 GraphicUsed by:51
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:51 804
Symbol 51 MovieClipUses:47 48 50Used by:76 77
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:76 77 807
Symbol 54 GraphicUsed by:58
Symbol 55 GraphicUsed by:58
Symbol 56 GraphicUsed by:58
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:54 55 56 57Used by:77
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:77
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:76 77
Symbol 63 GraphicUsed by:75
Symbol 64 GraphicUsed by:67
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:67
Symbol 67 MovieClipUses:64 66Used by:75 802
Symbol 68 GraphicUsed by:75
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:75 802
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:75 802
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:73Used by:75
Symbol 75 MovieClipUses:63 67 68 70 72 74Used by:76 77
Symbol 76 MovieClipUses:75 51 62 53Used by:77 79
Symbol 77 MovieClip {cooking_fla.pojava_logo_2} [cooking_fla.pojava_logo_2]Uses:45 51 53 58 60 62 75 76Used by:80
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:76 78Used by:80
Symbol 80 MovieClip {PreloaderMC} [PreloaderMC]Uses:77 45 79
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:124
Symbol 83 FontUsed by:84 87
Symbol 84 TextUses:83Used by:86
Symbol 85 GraphicUsed by:86 88 123
Symbol 86 ButtonUses:84 85Used by:124
Symbol 87 TextUses:83Used by:88
Symbol 88 ButtonUses:87 85Used by:124
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:103 121
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:91Used by:95
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:95
Symbol 95 MovieClipUses:92 94Used by:103 121
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:102
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:102
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:102
Symbol 102 MovieClipUses:97 99 101Used by:103 121
Symbol 103 MovieClipUses:90 95 102Used by:119
Symbol 104 GraphicUsed by:119
Symbol 105 GraphicUsed by:119
Symbol 106 GraphicUsed by:119
Symbol 107 GraphicUsed by:119
Symbol 108 GraphicUsed by:119
Symbol 109 GraphicUsed by:119
Symbol 110 GraphicUsed by:119
Symbol 111 GraphicUsed by:119
Symbol 112 GraphicUsed by:119
Symbol 113 GraphicUsed by:119
Symbol 114 GraphicUsed by:119
Symbol 115 GraphicUsed by:119
Symbol 116 GraphicUsed by:119
Symbol 117 GraphicUsed by:119
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118Used by:120
Symbol 120 MovieClipUses:119Used by:123
Symbol 121 MovieClipUses:90 95 102Used by:122
Symbol 122 MovieClipUses:121Used by:123
Symbol 123 ButtonUses:120 122 85Used by:124
Symbol 124 MovieClip {McGirlgamesBaner} [McGirlgamesBaner]Uses:82 86 88 123
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:132
Symbol 127 BitmapUsed by:128
Symbol 128 GraphicUses:127Used by:129
Symbol 129 MovieClipUses:128Used by:132
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:130Used by:132
Symbol 132 MovieClip {assets.McIntro} [assets.McIntro]Uses:126 129 131
Symbol 133 GraphicUsed by:216
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:216
Symbol 136 GraphicUsed by:216
Symbol 137 GraphicUsed by:138
Symbol 138 MovieClipUses:137Used by:216
Symbol 139 GraphicUsed by:216
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:140Used by:216
Symbol 142 GraphicUsed by:160
Symbol 143 GraphicUsed by:160
Symbol 144 GraphicUsed by:160
Symbol 145 GraphicUsed by:160
Symbol 146 GraphicUsed by:160
Symbol 147 GraphicUsed by:160
Symbol 148 GraphicUsed by:160
Symbol 149 GraphicUsed by:160
Symbol 150 GraphicUsed by:160
Symbol 151 GraphicUsed by:160
Symbol 152 GraphicUsed by:160
Symbol 153 GraphicUsed by:160
Symbol 154 GraphicUsed by:160
Symbol 155 GraphicUsed by:160
Symbol 156 GraphicUsed by:160
Symbol 157 GraphicUsed by:160
Symbol 158 GraphicUsed by:160
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159Used by:216
Symbol 161 GraphicUsed by:216
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClipUses:162Used by:216
Symbol 164 GraphicUsed by:216
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:168
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:166 167Used by:216
Symbol 169 GraphicUsed by:216
Symbol 170 GraphicUsed by:173
Symbol 171 GraphicUsed by:173
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:170 171 172Used by:216
Symbol 174 GraphicUsed by:216
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175Used by:216
Symbol 177 GraphicUsed by:196
Symbol 178 GraphicUsed by:196
Symbol 179 GraphicUsed by:196
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:180Used by:196 214
Symbol 182 GraphicUsed by:196
Symbol 183 GraphicUsed by:196
Symbol 184 GraphicUsed by:196
Symbol 185 GraphicUsed by:196
Symbol 186 GraphicUsed by:196
Symbol 187 GraphicUsed by:196
Symbol 188 GraphicUsed by:196
Symbol 189 GraphicUsed by:196
Symbol 190 GraphicUsed by:196
Symbol 191 GraphicUsed by:196
Symbol 192 GraphicUsed by:196
Symbol 193 GraphicUsed by:196
Symbol 194 GraphicUsed by:196
Symbol 195 GraphicUsed by:196
Symbol 196 MovieClipUses:177 178 179 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195Used by:215
Symbol 197 GraphicUsed by:214
Symbol 198 GraphicUsed by:214
Symbol 199 GraphicUsed by:214
Symbol 200 GraphicUsed by:214
Symbol 201 GraphicUsed by:214
Symbol 202 GraphicUsed by:214
Symbol 203 GraphicUsed by:214
Symbol 204 GraphicUsed by:214
Symbol 205 GraphicUsed by:214
Symbol 206 GraphicUsed by:214
Symbol 207 GraphicUsed by:214
Symbol 208 GraphicUsed by:214
Symbol 209 GraphicUsed by:214
Symbol 210 GraphicUsed by:214
Symbol 211 GraphicUsed by:214
Symbol 212 GraphicUsed by:214
Symbol 213 GraphicUsed by:214
Symbol 214 MovieClipUses:197 198 199 181 200 201 202 203 204 205 206 207 208 209 210 211 212 213Used by:215
Symbol 215 MovieClipUses:196 214Used by:216
Symbol 216 MovieClip {dressup_fla.Symbol23_3} [dressup_fla.Symbol23_3]Uses:133 135 136 138 139 141 160 161 163 164 168 169 173 174 176 215Used by:351
Symbol 217 GraphicUsed by:351
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:218Used by:351
Symbol 220 GraphicUsed by:221 358 361
Symbol 221 MovieClipUses:220Used by:229 279
Symbol 222 GraphicUsed by:229 361
Symbol 223 GraphicUsed by:224 361
Symbol 224 MovieClipUses:223Used by:229
Symbol 225 GraphicUsed by:229 361
Symbol 226 GraphicUsed by:227 361
Symbol 227 MovieClipUses:226Used by:229
Symbol 228 GraphicUsed by:229 361
Symbol 229 MovieClipUses:221 222 224 225 227 228Used by:351 361
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClipUses:230Used by:351
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:351
Symbol 234 GraphicUsed by:264
Symbol 235 GraphicUsed by:236
Symbol 236 MovieClipUses:235Used by:264
Symbol 237 GraphicUsed by:251
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:238Used by:251
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:240Used by:251
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:242Used by:251
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:251
Symbol 246 GraphicUsed by:251
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:247Used by:251
Symbol 249 GraphicUsed by:250
Symbol 250 MovieClipUses:249Used by:251
Symbol 251 MovieClipUses:237 239 241 243 245 246 248 250Used by:264
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:252Used by:264
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:254Used by:264
Symbol 256 GraphicUsed by:264
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:257Used by:264
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:259Used by:264
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClipUses:261Used by:264
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClipUses:234 236 251 253 255 256 258 260 262 263Used by:351
Symbol 265 GraphicUsed by:268
Symbol 266 GraphicUsed by:267
Symbol 267 MovieClipUses:266Used by:268
Symbol 268 MovieClipUses:265 267Used by:269 271
Symbol 269 MovieClipUses:268Used by:351
Symbol 270 GraphicUsed by:271
Symbol 271 MovieClipUses:270 268Used by:351
Symbol 272 GraphicUsed by:351
Symbol 273 GraphicUsed by:274
Symbol 274 MovieClipUses:273Used by:351
Symbol 275 GraphicUsed by:351
Symbol 276 GraphicUsed by:279 358
Symbol 277 GraphicUsed by:278 355 358
Symbol 278 MovieClipUses:277Used by:279 347
Symbol 279 MovieClipUses:221 276 278Used by:351 358
Symbol 280 GraphicUsed by:351
Symbol 281 GraphicUsed by:340
Symbol 282 BitmapUsed by:283
Symbol 283 GraphicUses:282Used by:286
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClipUses:284Used by:286
Symbol 286 MovieClipUses:283 285Used by:340
Symbol 287 GraphicUsed by:288
Symbol 288 MovieClipUses:287Used by:340
Symbol 289 GraphicUsed by:340
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:340
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:340
Symbol 294 GraphicUsed by:340
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:295Used by:340
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:297Used by:340
Symbol 299 GraphicUsed by:340
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:300Used by:340
Symbol 302 GraphicUsed by:340
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClipUses:303Used by:340
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:340
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:307Used by:331
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:309Used by:331
Symbol 311 GraphicUsed by:331
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:331
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:331
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:316Used by:331
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:331
Symbol 320 GraphicUsed by:331
Symbol 321 GraphicUsed by:331
Symbol 322 GraphicUsed by:331
Symbol 323 GraphicUsed by:331
Symbol 324 GraphicUsed by:331
Symbol 325 GraphicUsed by:331
Symbol 326 GraphicUsed by:331
Symbol 327 GraphicUsed by:331
Symbol 328 GraphicUsed by:331
Symbol 329 GraphicUsed by:331
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:308 310 311 313 315 317 319 320 321 322 323 324 325 326 327 328 329 330Used by:334
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:334
Symbol 334 MovieClipUses:331 333Used by:340
Symbol 335 GraphicUsed by:340
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClipUses:336Used by:340
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClipUses:338Used by:340
Symbol 340 MovieClipUses:281 286 288 289 291 293 294 296 298 299 301 302 304 306 334 335 337 339Used by:351
Symbol 341 GraphicUsed by:351
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342Used by:351
Symbol 344 GraphicUsed by:351
Symbol 345 GraphicUsed by:347 355
Symbol 346 GraphicUsed by:347 355
Symbol 347 MovieClipUses:345 278 346Used by:351 355
Symbol 348 GraphicUsed by:351
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349Used by:351
Symbol 351 MovieClip {assets.scene.McBackground} [assets.scene.McBackground]Uses:216 217 219 229 231 233 264 269 271 272 274 275 279 280 340 341 343 344 347 348 350Used by:817
Symbol 352 GraphicUsed by:355
Symbol 353 GraphicUsed by:355
Symbol 354 GraphicUsed by:355
Symbol 355 ButtonUses:347 352 353 354 345 277 346Used by:356
Symbol 356 MovieClipUses:355Used by:363
Symbol 357 GraphicUsed by:358
Symbol 358 ButtonUses:279 357 220 276 277Used by:359
Symbol 359 MovieClipUses:358Used by:363
Symbol 360 GraphicUsed by:361
Symbol 361 ButtonUses:229 360 220 222 223 225 226 228Used by:362
Symbol 362 MovieClipUses:361Used by:363
Symbol 363 MovieClipUses:356 359 362Used by:817
Symbol 364 GraphicUsed by:365 368 382 385 388 391 394
Symbol 365 MovieClipUses:364Used by:368 382 385 388 391 394
Symbol 366 GraphicUsed by:367 368 406
Symbol 367 MovieClipUses:366Used by:368 405
Symbol 368 ButtonUses:365 367 364 366Used by:369
Symbol 369 MovieClipUses:368Used by:396
Symbol 370 GraphicUsed by:382
Symbol 371 GraphicUsed by:372 382
Symbol 372 MovieClipUses:371Used by:382
Symbol 373 GraphicUsed by:374 382
Symbol 374 MovieClipUses:373Used by:382
Symbol 375 GraphicUsed by:382
Symbol 376 GraphicUsed by:377 382
Symbol 377 MovieClipUses:376Used by:382
Symbol 378 GraphicUsed by:379 382 646 656
Symbol 379 MovieClipUses:378Used by:382
Symbol 380 GraphicUsed by:381 382
Symbol 381 MovieClipUses:380Used by:382
Symbol 382 ButtonUses:365 370 372 374 375 377 379 381 364 371 373 376 378 380Used by:383
Symbol 383 MovieClipUses:382Used by:396
Symbol 384 GraphicUsed by:385
Symbol 385 ButtonUses:365 384 364Used by:386
Symbol 386 MovieClipUses:385Used by:396
Symbol 387 GraphicUsed by:388
Symbol 388 ButtonUses:365 387 364Used by:389
Symbol 389 MovieClipUses:388Used by:396
Symbol 390 GraphicUsed by:391
Symbol 391 ButtonUses:365 390 364Used by:392
Symbol 392 MovieClipUses:391Used by:396
Symbol 393 GraphicUsed by:394
Symbol 394 ButtonUses:365 393 364Used by:395
Symbol 395 MovieClipUses:394Used by:396
Symbol 396 MovieClipUses:369 383 386 389 392 395Used by:817
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClipUses:397Used by:399
Symbol 399 MovieClipUses:398Used by:438 508 681 702 714 751
Symbol 400 GraphicUsed by:401 404
Symbol 401 MovieClipUses:400Used by:402
Symbol 402 MovieClipUses:401Used by:404 777
Symbol 403 GraphicUsed by:404
Symbol 404 ButtonUses:402 403 400Used by:438
Symbol 405 MovieClipUses:367Used by:406 777
Symbol 406 ButtonUses:405 366Used by:438
Symbol 407 GraphicUsed by:408 411
Symbol 408 MovieClipUses:407Used by:409
Symbol 409 MovieClipUses:408Used by:411 777
Symbol 410 GraphicUsed by:411
Symbol 411 ButtonUses:409 410 407Used by:438
Symbol 412 GraphicUsed by:413 416
Symbol 413 MovieClipUses:412Used by:414
Symbol 414 MovieClipUses:413Used by:416 777
Symbol 415 GraphicUsed by:416
Symbol 416 ButtonUses:414 415 412Used by:438
Symbol 417 GraphicUsed by:418 420
Symbol 418 MovieClipUses:417Used by:420 777
Symbol 419 GraphicUsed by:420
Symbol 420 ButtonUses:418 419 417Used by:438
Symbol 421 GraphicUsed by:422 424
Symbol 422 MovieClipUses:421Used by:424 777
Symbol 423 GraphicUsed by:424
Symbol 424 ButtonUses:422 423 421Used by:438
Symbol 425 GraphicUsed by:426 433
Symbol 426 MovieClipUses:425Used by:431
Symbol 427 GraphicUsed by:428 433
Symbol 428 MovieClipUses:427Used by:431
Symbol 429 GraphicUsed by:430 433
Symbol 430 MovieClipUses:429Used by:431
Symbol 431 MovieClipUses:426 428 430Used by:433 777
Symbol 432 GraphicUsed by:433
Symbol 433 ButtonUses:431 432 425 427 429Used by:438
Symbol 434 GraphicUsed by:435 437
Symbol 435 MovieClipUses:434Used by:437 777
Symbol 436 GraphicUsed by:437
Symbol 437 ButtonUses:435 436 434Used by:438
Symbol 438 MovieClipUses:399 404 406 411 416 420 424 433 437Used by:752
Symbol 439 GraphicUsed by:442 444
Symbol 440 GraphicUsed by:441 444
Symbol 441 MovieClipUses:440Used by:442
Symbol 442 MovieClipUses:439 441Used by:444 766
Symbol 443 GraphicUsed by:444
Symbol 444 ButtonUses:442 443 439 440Used by:508
Symbol 445 GraphicUsed by:462 464
Symbol 446 GraphicUsed by:447 464
Symbol 447 MovieClipUses:446Used by:462
Symbol 448 GraphicUsed by:449 464
Symbol 449 MovieClipUses:448Used by:462
Symbol 450 GraphicUsed by:451 464
Symbol 451 MovieClipUses:450Used by:462
Symbol 452 GraphicUsed by:453 464
Symbol 453 MovieClipUses:452Used by:462
Symbol 454 GraphicUsed by:455 464
Symbol 455 MovieClipUses:454Used by:462
Symbol 456 GraphicUsed by:462 464
Symbol 457 GraphicUsed by:458 464
Symbol 458 MovieClipUses:457Used by:462
Symbol 459 GraphicUsed by:462 464
Symbol 460 GraphicUsed by:461 464
Symbol 461 MovieClipUses:460Used by:462
Symbol 462 MovieClipUses:445 447 449 451 453 455 456 458 459 461Used by:464 766
Symbol 463 GraphicUsed by:464
Symbol 464 ButtonUses:462 463 445 446 448 450 452 454 456 457 459 460Used by:508
Symbol 465 GraphicUsed by:466 468
Symbol 466 MovieClipUses:465Used by:468 766
Symbol 467 GraphicUsed by:468
Symbol 468 ButtonUses:466 467 465Used by:508
Symbol 469 GraphicUsed by:486 488
Symbol 470 GraphicUsed by:471 488
Symbol 471 MovieClipUses:470Used by:486
Symbol 472 GraphicUsed by:473 488
Symbol 473 MovieClipUses:472Used by:486
Symbol 474 GraphicUsed by:475 488
Symbol 475 MovieClipUses:474Used by:486
Symbol 476 GraphicUsed by:477 488
Symbol 477 MovieClipUses:476Used by:486
Symbol 478 GraphicUsed by:479 488
Symbol 479 MovieClipUses:478Used by:486
Symbol 480 GraphicUsed by:481 488
Symbol 481 MovieClipUses:480Used by:486
Symbol 482 GraphicUsed by:486 488
Symbol 483 GraphicUsed by:484 488
Symbol 484 MovieClipUses:483Used by:486
Symbol 485 GraphicUsed by:486 488
Symbol 486 MovieClipUses:469 471 473 475 477 479 481 482 484 485Used by:488 766
Symbol 487 GraphicUsed by:488
Symbol 488 ButtonUses:486 487 469 470 472 474 476 478 480 482 483 485Used by:508
Symbol 489 GraphicUsed by:490 494
Symbol 490 MovieClipUses:489Used by:492
Symbol 491 GraphicUsed by:492 494
Symbol 492 MovieClipUses:490 491Used by:494 766
Symbol 493 GraphicUsed by:494
Symbol 494 ButtonUses:492 493 489 491Used by:508
Symbol 495 GraphicUsed by:496 498
Symbol 496 MovieClipUses:495Used by:498 766
Symbol 497 GraphicUsed by:498
Symbol 498 ButtonUses:496 497 495Used by:508
Symbol 499 GraphicUsed by:500 501
Symbol 500 MovieClipUses:499Used by:501 766
Symbol 501 ButtonUses:500 499Used by:508
Symbol 502 GraphicUsed by:505 507
Symbol 503 GraphicUsed by:504 507
Symbol 504 MovieClipUses:503Used by:505
Symbol 505 MovieClipUses:502 504Used by:507 766
Symbol 506 GraphicUsed by:507
Symbol 507 ButtonUses:505 506 502 503Used by:508
Symbol 508 MovieClipUses:399 444 464 468 488 494 498 501 507Used by:752
Symbol 509 GraphicUsed by:510 512
Symbol 510 MovieClipUses:509Used by:512 779
Symbol 511 GraphicUsed by:512
Symbol 512 ButtonUses:510 511 509Used by:681
Symbol 513 GraphicUsed by:518 520
Symbol 514 GraphicUsed by:515 520
Symbol 515 MovieClipUses:514Used by:518
Symbol 516 GraphicUsed by:517 520
Symbol 517 MovieClipUses:516Used by:518
Symbol 518 MovieClipUses:513 515 517Used by:520 779
Symbol 519 GraphicUsed by:520
Symbol 520 ButtonUses:518 519 513 514 516Used by:681
Symbol 521 GraphicUsed by:525 527
Symbol 522 GraphicUsed by:523 527
Symbol 523 MovieClipUses:522Used by:525
Symbol 524 GraphicUsed by:525 527
Symbol 525 MovieClipUses:521 523 524Used by:527 779
Symbol 526 GraphicUsed by:527
Symbol 527 ButtonUses:525 526 521 522 524Used by:681
Symbol 528 GraphicUsed by:534 536
Symbol 529 GraphicUsed by:530 536
Symbol 530 MovieClipUses:529Used by:534
Symbol 531 GraphicUsed by:532 536
Symbol 532 MovieClipUses:531Used by:534
Symbol 533 GraphicUsed by:534 536
Symbol 534 MovieClipUses:528 530 532 533Used by:536 779
Symbol 535 GraphicUsed by:536
Symbol 536 ButtonUses:534 535 528 529 531 533Used by:681
Symbol 537 GraphicUsed by:654 656
Symbol 538 GraphicUsed by:649 656
Symbol 539 GraphicUsed by:540 656
Symbol 540 MovieClipUses:539Used by:649
Symbol 541 GraphicUsed by:542 656
Symbol 542 MovieClipUses:541Used by:649
Symbol 543 GraphicUsed by:544 656
Symbol 544 MovieClipUses:543Used by:649
Symbol 545 GraphicUsed by:546 656
Symbol 546 MovieClipUses:545Used by:649
Symbol 547 GraphicUsed by:548 656
Symbol 548 MovieClipUses:547Used by:649
Symbol 549 GraphicUsed by:550 656
Symbol 550 MovieClipUses:549Used by:649
Symbol 551 GraphicUsed by:552 656
Symbol 552 MovieClipUses:551Used by:649
Symbol 553 GraphicUsed by:554 656
Symbol 554 MovieClipUses:553Used by:649
Symbol 555 GraphicUsed by:556 656
Symbol 556 MovieClipUses:555Used by:649
Symbol 557 GraphicUsed by:558 656
Symbol 558 MovieClipUses:557Used by:649
Symbol 559 GraphicUsed by:560 656
Symbol 560 MovieClipUses:559Used by:649
Symbol 561 GraphicUsed by:562 656
Symbol 562 MovieClipUses:561Used by:649
Symbol 563 GraphicUsed by:564 656
Symbol 564 MovieClipUses:563Used by:649
Symbol 565 GraphicUsed by:566 656
Symbol 566 MovieClipUses:565Used by:649
Symbol 567 GraphicUsed by:568 656
Symbol 568 MovieClipUses:567Used by:649
Symbol 569 GraphicUsed by:570 656
Symbol 570 MovieClipUses:569Used by:649
Symbol 571 GraphicUsed by:572 656
Symbol 572 MovieClipUses:571Used by:649
Symbol 573 GraphicUsed by:574 656
Symbol 574 MovieClipUses:573Used by:649
Symbol 575 GraphicUsed by:576 656
Symbol 576 MovieClipUses:575Used by:649
Symbol 577 GraphicUsed by:578 656
Symbol 578 MovieClipUses:577Used by:649
Symbol 579 GraphicUsed by:580 656
Symbol 580 MovieClipUses:579Used by:649
Symbol 581 GraphicUsed by:582 656
Symbol 582 MovieClipUses:581Used by:649
Symbol 583 GraphicUsed by:584 656
Symbol 584 MovieClipUses:583Used by:649
Symbol 585 GraphicUsed by:586 656
Symbol 586 MovieClipUses:585Used by:649
Symbol 587 GraphicUsed by:588 656
Symbol 588 MovieClipUses:587Used by:649
Symbol 589 GraphicUsed by:590 656
Symbol 590 MovieClipUses:589Used by:649
Symbol 591 GraphicUsed by:592 656
Symbol 592 MovieClipUses:591Used by:649
Symbol 593 GraphicUsed by:594 656
Symbol 594 MovieClipUses:593Used by:649
Symbol 595 GraphicUsed by:596 656
Symbol 596 MovieClipUses:595Used by:649
Symbol 597 GraphicUsed by:598 656
Symbol 598 MovieClipUses:597Used by:649
Symbol 599 GraphicUsed by:600 656
Symbol 600 MovieClipUses:599Used by:649
Symbol 601 GraphicUsed by:602 656
Symbol 602 MovieClipUses:601Used by:649
Symbol 603 GraphicUsed by:604 656
Symbol 604 MovieClipUses:603Used by:649
Symbol 605 GraphicUsed by:606 656
Symbol 606 MovieClipUses:605Used by:649
Symbol 607 GraphicUsed by:608 656
Symbol 608 MovieClipUses:607Used by:649
Symbol 609 GraphicUsed by:649 656
Symbol 610 GraphicUsed by:611 656
Symbol 611 MovieClipUses:610Used by:649
Symbol 612 GraphicUsed by:613 656
Symbol 613 MovieClipUses:612Used by:649
Symbol 614 GraphicUsed by:649 656
Symbol 615 GraphicUsed by:616 656
Symbol 616 MovieClipUses:615Used by:649
Symbol 617 GraphicUsed by:618 656
Symbol 618 MovieClipUses:617Used by:649
Symbol 619 GraphicUsed by:620 656
Symbol 620 MovieClipUses:619Used by:649
Symbol 621 GraphicUsed by:649 656
Symbol 622 GraphicUsed by:623 656
Symbol 623 MovieClipUses:622Used by:649
Symbol 624 GraphicUsed by:649 656
Symbol 625 GraphicUsed by:626 656
Symbol 626 MovieClipUses:625Used by:649
Symbol 627 GraphicUsed by:649 656
Symbol 628 GraphicUsed by:629 656
Symbol 629 MovieClipUses:628Used by:649
Symbol 630 GraphicUsed by:649 656
Symbol 631 GraphicUsed by:632 656
Symbol 632 MovieClipUses:631Used by:649
Symbol 633 GraphicUsed by:649 656
Symbol 634 GraphicUsed by:635 656
Symbol 635 MovieClipUses:634Used by:649
Symbol 636 GraphicUsed by:637 656
Symbol 637 MovieClipUses:636Used by:649
Symbol 638 GraphicUsed by:639 656
Symbol 639 MovieClipUses:638Used by:649
Symbol 640 GraphicUsed by:641 656
Symbol 641 MovieClipUses:640Used by:649
Symbol 642 GraphicUsed by:649 656
Symbol 643 GraphicUsed by:644 656
Symbol 644 MovieClipUses:643Used by:649
Symbol 645 GraphicUsed by:649 656
Symbol 646 MovieClipUses:378Used by:649
Symbol 647 GraphicUsed by:648 656
Symbol 648 MovieClipUses:647Used by:649
Symbol 649 MovieClipUses:538 540 542 544 546 548 550 552 554 556 558 560 562 564 566 568 570 572 574 576 578 580 582 584 586 588 590 592 594 596 598 600 602 604 606 608 609 611 613 614 616 618 620 621 623 624 626 627 629 630 632 633 635 637 639 641 642 644 645 646 648Used by:654
Symbol 650 GraphicUsed by:654 656
Symbol 651 GraphicUsed by:652 656
Symbol 652 MovieClipUses:651Used by:654
Symbol 653 GraphicUsed by:654 656
Symbol 654 MovieClipUses:537 649 650 652 653Used by:656 779
Symbol 655 GraphicUsed by:656
Symbol 656 ButtonUses:654 655 537 538 539 541 543 545 547 549 551 553 555 557 559 561 563 565 567 569 571 573 575 577 579 581 583 585 587 589 591 593 595 597 599 601 603 605 607 609 610 612 614 615 617 619 621 622 624 625 627 628 630 631 633 634 636 638 640 642 643 645 378 647 650 651 653Used by:681
Symbol 657 GraphicUsed by:658 660
Symbol 658 MovieClipUses:657Used by:660 779
Symbol 659 GraphicUsed by:660
Symbol 660 ButtonUses:658 659 657Used by:681
Symbol 661 GraphicUsed by:664 666
Symbol 662 GraphicUsed by:663 666
Symbol 663 MovieClipUses:662Used by:664
Symbol 664 MovieClipUses:661 663Used by:666 779
Symbol 665 GraphicUsed by:666
Symbol 666 ButtonUses:664 665 661 662Used by:681
Symbol 667 GraphicUsed by:671 673
Symbol 668 GraphicUsed by:669 673
Symbol 669 MovieClipUses:668Used by:671
Symbol 670 GraphicUsed by:671 673
Symbol 671 MovieClipUses:667 669 670Used by:673 779
Symbol 672 GraphicUsed by:673
Symbol 673 ButtonUses:671 672 667 668 670Used by:681
Symbol 674 GraphicUsed by:678 680
Symbol 675 GraphicUsed by:676 680
Symbol 676 MovieClipUses:675Used by:678
Symbol 677 GraphicUsed by:678 680
Symbol 678 MovieClipUses:674 676 677Used by:680 779
Symbol 679 GraphicUsed by:680
Symbol 680 ButtonUses:678 679 674 675 677Used by:681
Symbol 681 MovieClipUses:399 512 520 527 536 656 660 666 673 680Used by:752
Symbol 682 GraphicUsed by:683 685 687 689 691 693 695 697 699 701 750
Symbol 683 MovieClipUses:682Used by:685 687 689 691 693 695 697 699 701 750 769
Symbol 684 GraphicUsed by:685
Symbol 685 ButtonUses:683 684 682Used by:702
Symbol 686 GraphicUsed by:687
Symbol 687 ButtonUses:683 686 682Used by:702
Symbol 688 GraphicUsed by:689
Symbol 689 ButtonUses:683 688 682Used by:702
Symbol 690 GraphicUsed by:691
Symbol 691 ButtonUses:683 690 682Used by:702
Symbol 692 GraphicUsed by:693
Symbol 693 ButtonUses:683 692 682Used by:702
Symbol 694 GraphicUsed by:695
Symbol 695 ButtonUses:683 694 682Used by:702
Symbol 696 GraphicUsed by:697
Symbol 697 ButtonUses:683 696 682Used by:702
Symbol 698 GraphicUsed by:699
Symbol 699 ButtonUses:683 698 682Used by:702
Symbol 700 GraphicUsed by:701
Symbol 701 ButtonUses:683 700 682Used by:702
Symbol 702 MovieClipUses:399 685 687 689 691 693 695 697 699 701Used by:752
Symbol 703 GraphicUsed by:704 705 706 707 708 709 710 711 712 713 750
Symbol 704 MovieClipUses:703Used by:705 706 707 708 709 710 711 712 713 750 769
Symbol 705 ButtonUses:704 703Used by:714
Symbol 706 ButtonUses:704 703Used by:714
Symbol 707 ButtonUses:704 703Used by:714
Symbol 708 ButtonUses:704 703Used by:714
Symbol 709 ButtonUses:704 703Used by:714
Symbol 710 ButtonUses:704 703Used by:714
Symbol 711 ButtonUses:704 703Used by:714
Symbol 712 ButtonUses:704 703Used by:714
Symbol 713 ButtonUses:704 703Used by:714
Symbol 714 MovieClipUses:399 705 706 707 708 709 710 711 712 713Used by:752
Symbol 715 GraphicUsed by:716 719
Symbol 716 MovieClipUses:715Used by:719 769
Symbol 717 GraphicUsed by:718 719
Symbol 718 MovieClipUses:717Used by:719 769
Symbol 719 ButtonUses:716 718 715 717Used by:751
Symbol 720 GraphicUsed by:721 724
Symbol 721 MovieClipUses:720Used by:724 769
Symbol 722 GraphicUsed by:723 724
Symbol 723 MovieClipUses:722Used by:724 769
Symbol 724 ButtonUses:721 723 720 722Used by:751
Symbol 725 GraphicUsed by:726 729
Symbol 726 MovieClipUses:725Used by:729 769
Symbol 727 GraphicUsed by:728 729
Symbol 728 MovieClipUses:727Used by:729 769
Symbol 729 ButtonUses:726 728 725 727Used by:751
Symbol 730 GraphicUsed by:731 734
Symbol 731 MovieClipUses:730Used by:734 769
Symbol 732 GraphicUsed by:733 734
Symbol 733 MovieClipUses:732Used by:734 769
Symbol 734 ButtonUses:731 733 730 732Used by:751
Symbol 735 GraphicUsed by:736 739
Symbol 736 MovieClipUses:735Used by:739 769
Symbol 737 GraphicUsed by:738 739
Symbol 738 MovieClipUses:737Used by:739 769
Symbol 739 ButtonUses:736 738 735 737Used by:751
Symbol 740 GraphicUsed by:741 744
Symbol 741 MovieClipUses:740Used by:744 769
Symbol 742 GraphicUsed by:743 744
Symbol 743 MovieClipUses:742Used by:744 769
Symbol 744 ButtonUses:741 743 740 742Used by:751
Symbol 745 GraphicUsed by:746 749
Symbol 746 MovieClipUses:745Used by:749 769
Symbol 747 GraphicUsed by:748 749
Symbol 748 MovieClipUses:747Used by:749 769
Symbol 749 ButtonUses:746 748 745 747Used by:751
Symbol 750 ButtonUses:704 683 703 682Used by:751
Symbol 751 MovieClipUses:399 719 724 729 734 739 744 749 750Used by:752
Symbol 752 MovieClipUses:438 508 681 702 714 751Used by:817
Symbol 753 FontUsed by:754 755 756 757 758 759 760 761 762 763 764 765 767 770 772 774 775 776 778 780 782
Symbol 754 EditableTextUses:753Used by:766
Symbol 755 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 756 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 757 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 758 EditableTextUses:753Used by:766 769 771 773 779 781 783
Symbol 759 EditableTextUses:753Used by:766 769 771 773 779 781 783
Symbol 760 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 761 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 762 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 763 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 764 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 765 EditableTextUses:753Used by:766 769 771 773 777 779 781 783
Symbol 766 MovieClipUses:754 755 756 505 757 500 758 496 759 492 760 486 761 466 762 462 763 442 764 765Used by:784
Symbol 767 TextUses:753Used by:768
Symbol 768 MovieClipUses:767Used by:769
Symbol 769 MovieClipUses:755 756 768 704 683 757 746 748 758 741 743 759 736 738 760 731 733 761 726 728 762 721 723 763 716 718 764 765Used by:784
Symbol 770 EditableTextUses:753Used by:771
Symbol 771 MovieClipUses:770 755 756 757 758 759 760 761 762 763 764 765Used by:784
Symbol 772 EditableTextUses:753Used by:773
Symbol 773 MovieClipUses:772 755 756 757 758 759 760 761 762 763 764 765Used by:784
Symbol 774 EditableTextUses:753Used by:777
Symbol 775 EditableTextUses:753Used by:777
Symbol 776 EditableTextUses:753Used by:777
Symbol 777 MovieClipUses:774 755 756 435 757 431 775 422 776 418 760 414 761 409 762 405 763 402 764 765Used by:784
Symbol 778 EditableTextUses:753Used by:779
Symbol 779 MovieClipUses:778 755 756 678 757 671 758 664 759 658 760 654 761 534 762 525 763 518 764 510 765Used by:784
Symbol 780 EditableTextUses:753Used by:781
Symbol 781 MovieClipUses:780 755 756 757 758 759 760 761 762 763 764 765Used by:784
Symbol 782 EditableTextUses:753Used by:783
Symbol 783 MovieClipUses:782 755 756 757 758 759 760 761 762 763 764 765Used by:784
Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel]Uses:766 769 771 773 777 779 781 783Used by:817
Symbol 785 GraphicUsed by:789 797
Symbol 786 GraphicUsed by:789
Symbol 787 GraphicUsed by:789
Symbol 788 GraphicUsed by:789
Symbol 789 ButtonUses:785 786 787 788Used by:816
Symbol 790 GraphicUsed by:793
Symbol 791 GraphicUsed by:793
Symbol 792 GraphicUsed by:793
Symbol 793 ButtonUses:790 791 792Used by:816
Symbol 794 GraphicUsed by:797
Symbol 795 GraphicUsed by:797
Symbol 796 GraphicUsed by:797
Symbol 797 ButtonUses:785 794 795 796Used by:816
Symbol 798 GraphicUsed by:802 815
Symbol 799 GraphicUsed by:802 815
Symbol 800 GraphicUsed by:801 815
Symbol 801 MovieClipUses:800Used by:802
Symbol 802 MovieClipUses:798 67 799 70 72 801Used by:807
Symbol 803 GraphicUsed by:804 815
Symbol 804 MovieClipUses:47 803 50Used by:807
Symbol 805 GraphicUsed by:806 815
Symbol 806 MovieClipUses:805Used by:807
Symbol 807 MovieClipUses:802 804 806 53Used by:815
Symbol 808 GraphicUsed by:815
Symbol 809 GraphicUsed by:815
Symbol 810 GraphicUsed by:815
Symbol 811 GraphicUsed by:815
Symbol 812 GraphicUsed by:815
Symbol 813 GraphicUsed by:815
Symbol 814 GraphicUsed by:815
Symbol 815 ButtonUses:807 798 808 809 799 810 811 800 812 803 813 805 814Used by:816
Symbol 816 MovieClip {McControlPanel} [McControlPanel]Uses:789 793 797 815Used by:817
Symbol 817 MovieClip {assets.scene.McScene} [assets.scene.McScene]Uses:351 363 396 752 784 816
Symbol 818 BinaryData {dressup.Application_CONFIG_XML}

Instance Names

"barMask"Symbol 45 MovieClip {McBar} [McBar] Frame 1Symbol 44 MovieClip
"loader"Symbol 77 MovieClip {cooking_fla.pojava_logo_2} [cooking_fla.pojava_logo_2] Frame 1Symbol 45 MovieClip {McBar} [McBar]
"anim2"Symbol 80 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 77 MovieClip {cooking_fla.pojava_logo_2} [cooking_fla.pojava_logo_2]
"loader"Symbol 80 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 45 MovieClip {McBar} [McBar]
"anim1"Symbol 80 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 79 MovieClip
"btnMoreGames"Symbol 124 MovieClip {McGirlgamesBaner} [McGirlgamesBaner] Frame 1Symbol 86 Button
"btnFreeGames"Symbol 124 MovieClip {McGirlgamesBaner} [McGirlgamesBaner] Frame 1Symbol 88 Button
"btnLogo"Symbol 124 MovieClip {McGirlgamesBaner} [McGirlgamesBaner] Frame 1Symbol 123 Button
"head"Symbol 216 MovieClip {dressup_fla.Symbol23_3} [dressup_fla.Symbol23_3] Frame 1Symbol 168 MovieClip
"mcPart5"Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 766 MovieClip
"mcPart1"Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 769 MovieClip
"mcPart2"Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 771 MovieClip
"mcPart3"Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 773 MovieClip
"mcPart6"Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 777 MovieClip
"mcPart4"Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 779 MovieClip
"mcPart7"Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 781 MovieClip
"mcPart8"Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 783 MovieClip
"btnBack"Symbol 816 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 789 Button
"btnPhoto"Symbol 816 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 793 Button
"btnReset"Symbol 816 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 797 Button
"btnLogo"Symbol 816 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 815 Button
"mcBackground"Symbol 817 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 351 MovieClip {assets.scene.McBackground} [assets.scene.McBackground]
"mcBgButtons"Symbol 817 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 363 MovieClip
"mcCatButtons"Symbol 817 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 396 MovieClip
"mcCatPanels"Symbol 817 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 752 MovieClip
"mcModel"Symbol 817 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 784 MovieClip {assets.scene.McModel} [assets.scene.McModel]
"mcControlPanel"Symbol 817 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 816 MovieClip {McControlPanel} [McControlPanel]

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 1461 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 80 as "PreloaderMC"
ExportAssets (56)Timeline Frame 1Symbol 45 as "McBar"
ExportAssets (56)Timeline Frame 1Symbol 77 as "cooking_fla.pojava_logo_2"
ExportAssets (56)Timeline Frame 2Symbol 124 as "McGirlgamesBaner"
ExportAssets (56)Timeline Frame 2Symbol 132 as "assets.McIntro"
ExportAssets (56)Timeline Frame 2Symbol 817 as "assets.scene.McScene"
ExportAssets (56)Timeline Frame 2Symbol 816 as "McControlPanel"
ExportAssets (56)Timeline Frame 2Symbol 351 as "assets.scene.McBackground"
ExportAssets (56)Timeline Frame 2Symbol 784 as "assets.scene.McModel"
ExportAssets (56)Timeline Frame 2Symbol 216 as "dressup_fla.Symbol23_3"
SerialNumber (41)Timeline Frame 1

Labels

"Main"Frame 1
"start"Frame 2




http://swfchan.com/26/125779/info.shtml
Created: 27/2 -2019 12:42:22 Last modified: 27/2 -2019 12:42:22 Server time: 15/05 -2024 07:02:49