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

swfchan turned sixteen years old yesterday! (5may2024)

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

Girl Games - Cheeseburger Madness.swf

This is the info page for
Flash #110246

(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">kotleta4:</font></p>

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

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

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

<p align="left"><font face="Courier New" size="30" color="#333333" letterSpacing="0.000000" kerning="1">frame 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>

<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">ovochi7:</font></p>

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

category1:

ActionScript [AS3]

Section 1
//McModel (assets.scene.McModel) package assets.scene { import flash.display.*; public dynamic class McModel extends MovieClip { public var mcPart3:MovieClip; public var mcPart4:MovieClip; public var mcPart5:MovieClip; public var mcPart6:MovieClip; public var mcPart7:MovieClip; public var mcPart8:MovieClip; public var mcPart1:MovieClip; public var mcPart2:MovieClip; } }//package assets.scene
Section 2
//McScene (assets.scene.McScene) package assets.scene { import flash.display.*; public dynamic class McScene extends MovieClip { public var mcBackground:MovieClip; public var mcBgButtons:MovieClip; public var mcCatPanels:MovieClip; public var mcModel:McModel; public var mcCatButtons:MovieClip; public var mcControlPanel:McControlPanel; } }//package assets.scene
Section 3
//McIntro (assets.McIntro) package assets { import flash.display.*; public dynamic class McIntro extends MovieClip { } }//package assets
Section 4
//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(value:Boolean):void{ if (_active != value){ _active = value; }; } public function pushAction(action:Object):void{ if ((((action is Function)) || ((action is ICommand)))){ _items.push(action); } 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 5
//IAsincCommand (common.commands.IAsincCommand) package common.commands { import common.events.*; public interface IAsincCommand extends ICommand { function get completeEvent():EventSender; } }//package common.commands
Section 6
//ICancelableCommand (common.commands.ICancelableCommand) package common.commands { public interface ICancelableCommand extends IAsincCommand { function cancel():void; } }//package common.commands
Section 7
//ICommand (common.commands.ICommand) package common.commands { public interface ICommand { function execute():void; } }//package common.commands
Section 8
//IRequirement (common.comparing.IRequirement) package common.comparing { public interface IRequirement { function accept(:Object):Boolean; } }//package common.comparing
Section 9
//MultipleFramesRequirement (common.comparing.MultipleFramesRequirement) package common.comparing { import flash.display.*; public class MultipleFramesRequirement implements IRequirement { public function MultipleFramesRequirement(){ super(); } public function accept(object:Object):Boolean{ return ((((object is MovieClip)) && ((MovieClip(object).totalFrames > 1)))); } } }//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(name:String, isPrefix:Boolean=false){ super(); _property = "name"; _value = name; _isPrefix = isPrefix; } public function accept(object:Object):Boolean{ if (_isPrefix){ return (((((object) && (object.hasOwnProperty(_property)))) && ((String(object[_property]).indexOf(_value) == 0)))); }; return (((((object) && (object.hasOwnProperty(_property)))) && ((object[_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 _path:Array; public function PropertyRequirement(property:String, value:Object){ super(); _path = property.split("."); _value = value; } public function accept(object:Object):Boolean{ var property:String; if (!object){ return (false); }; var item:Object = object; for each (property in _path) { if (((item) && (item.hasOwnProperty(property)))){ item = item[property]; } else { return (false); }; }; return ((item == _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(type:Class){ super(); _type = type; } public function accept(object:Object):Boolean{ return ((object 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(constructor:Class){ super(); _constructor = constructor; } public function convert(value:Object):Object{ return (new _constructor(value)); } } }//package common.converting
Section 14
//IConverter (common.converting.IConverter) package common.converting { public interface IConverter { function convert(: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(event:EventSender, handler:Function):int{ var info:EventData; var i:int; while (i < _listeners.length) { info = _listeners[i]; if ((((info.event == event)) && ((info.handler == handler)))){ return (i); }; i++; }; return (-1); } public function unregisterNativeEvent(object:EventDispatcher, type:String, listener:Function, useCapture:Boolean=false):void{ var index:int = getNativeEventIndex(object, type, listener, useCapture); if (index == -1){ throw (new Error("Event is not registered")); }; object.removeEventListener(type, listener, useCapture); _nativeListeners.splice(index, 1); } public function registerEvent(event:EventSender, handler:Function):void{ var index:int = getEventIndex(event, handler); if (index >= 0){ throw (new Error("Event is already registered.")); }; event.addListener(handler); _listeners.push(new EventData(event, handler)); } public function registerNativeEvent(object:EventDispatcher, type:String, listener:Function, useCapture:Boolean=false):void{ var index:int = getNativeEventIndex(object, type, listener, useCapture); if (index >= 0){ throw (new Error("Event is already registered")); }; object.addEventListener(type, listener, useCapture); _nativeListeners.push(new NativeEventData(object, type, listener, useCapture)); } private function getNativeEventIndex(object:EventDispatcher, type:String, listener:Function, useCapture:Boolean):int{ var o:NativeEventData; var i:int; while (i < _nativeListeners.length) { o = _nativeListeners[i]; if ((((((((o.object == object)) && ((o.type == type)))) && ((o.listener == listener)))) && ((o.useCapture == useCapture)))){ return (i); }; i++; }; return (-1); } public function clearEvents():void{ var eventData:EventData; var nativeEventData:NativeEventData; for each (eventData in _listeners) { eventData.event.removeListener(eventData.handler); }; _listeners = []; for each (nativeEventData in _nativeListeners) { nativeEventData.object.removeEventListener(nativeEventData.type, nativeEventData.listener, nativeEventData.useCapture); }; _nativeListeners = []; } public function unregisterEvent(event:EventSender, handler:Function):void{ var index:int = getEventIndex(event, handler); if (index == -1){ throw (new Error("Event is not registered")); }; event.removeListener(handler); _listeners.splice(index, 1); } } }//package common.events import flash.events.*; class EventData { public var handler:Function; public var event:EventSender; private function EventData(event:EventSender, handler:Function):void{ super(); this.event = event; this.handler = handler; } } class NativeEventData { public var listener:Function; public var useCapture:Boolean; public var type:String; public var object:EventDispatcher; private function NativeEventData(object:EventDispatcher, type:String, listener:Function, useCapture:Boolean):void{ super(); this.object = object; this.type = type; this.listener = listener; this.useCapture = useCapture; } }
Section 16
//EventSender (common.events.EventSender) package common.events { public class EventSender { private var _listeners:Array; private var _sender:Object; public function EventSender(sender:Object){ _listeners = []; super(); _sender = sender; } public function sendEvent(argument=null):void{ var handler:Function; var handlers:Array = _listeners.slice(); for each (handler in handlers) { if (handler.length == 0){ handler(); } else { if (handler.length == 1){ handler(_sender); } else { if (handler.length == 2){ handler(_sender, argument); } else { throw (new ArgumentError("Incorrect number of arguments in handler")); }; }; }; }; } public function addListener(listener:Function):void{ if (hasListener(listener)){ throw (new Error("List already contains such listener")); }; _listeners.push(listener); } public function hasListener(func:Function):Boolean{ return ((_listeners.indexOf(func) >= 0)); } public function removeListener(listener:Function):void{ if (hasListener(listener)){ _listeners.splice(_listeners.indexOf(listener), 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(content:MovieClip, container:Sprite){ _completeEvent = new EventSender(this); super(); _content = content; _container = container; 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(e:KeyboardEvent):void{ if (e.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(e:MouseEvent):void{ BrowserUtil.navigate(clickTag); } private function onEnterFrame(e: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(content:MovieClip){ _clickEvent = new EventSender(this); super(); _content = content; initialize(); refresh(); } public function get enabled():Boolean{ return (_enabled); } public function get checked():Boolean{ return (_checked); } public function set checked(value:Boolean):void{ if (_checked != value){ _checked = value; refresh(); }; } private function onMouseClick(e:MouseEvent):void{ checked = !(checked); _clickEvent.sendEvent(); } public function get clickEvent():EventSender{ return (_clickEvent); } public function set enabled(value:Boolean):void{ if (_enabled != value){ _enabled = value; refresh(); }; } private function initialize():void{ _content.addEventListener(MouseEvent.CLICK, onMouseClick); } private function refresh():void{ _content.mouseEnabled = _enabled; _content.mouseChildren = _enabled; _content.useHandCursor = _enabled; _content.buttonMode = _enabled; if (_checked){ _content.gotoAndStop(2); } else { _content.gotoAndStop(1); }; } } }//package common.flash.controls
Section 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(buttons:Array){ _items = []; _clickEvent = new EventSender(this); super(); _items = buttons; initialize(); } public function get buttons():Array{ return (_items); } private function setSelection(value:CheckBox):void{ if (_selectedItem){ _selectedItem.checked = false; _selectedItem.enabled = true; }; _selectedItem = value; if (_selectedItem){ _selectedItem.checked = true; _selectedItem.enabled = false; }; } public function get selectedItem():CheckBox{ return (_selectedItem); } private function initialize():void{ var item:CheckBox; for each (item in _items) { item.clickEvent.addListener(onButtonClick); }; } public function get clickEvent():EventSender{ return (_clickEvent); } public function set selectedIndex(value:int):void{ selectedItem = _items[value]; } private function onButtonClick(sender:CheckBox):void{ selectedItem = sender; _clickEvent.sendEvent(); } public function set selectedItem(value:CheckBox):void{ if (_selectedItem != value){ setSelection(value); }; } 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 function ArrayUtil(){ super(); } public static function getFirstRequired(source:Object, requirement:IRequirement):Object{ var item:Object; var result:Object; for each (item in source) { if (requirement.accept(item)){ result = item; break; }; }; return (result); } public static function getByProperty(source:Object, property:String, value:Object):Array{ return (getRequired(source, new PropertyRequirement(property, value))); } public static function convert(source:Object, converter:IConverter):Array{ var item:Object; var result:Array = []; for each (item in source) { result.push(converter.convert(item)); }; return (result); } public static function getRequired(source:Object, requirement:IRequirement):Array{ var item:Object; var result:Array = []; for each (item in source) { if (requirement.accept(item)){ result.push(item); }; }; return (result); } public static function getFirstByProperty(source:Object, property:String, value:Object):Object{ return (getFirstRequired(source, new PropertyRequirement(property, value))); } public static function removeItem(source:Array, item:Object):void{ var index:int = source.indexOf(item); if (index >= 0){ source.splice(index, 1); }; } public static function hasRequired(source:Object, requirement:IRequirement):Object{ return (Boolean(getFirstRequired(source, requirement))); } public static function getRandomItem(source:Array){ return (source[int((Math.random() * source.length))]); } public static function findByProperty(source:Object, property:String, value:Object):Object{ return (getFirstRequired(source, new PropertyRequirement(property, value))); } public static function getRandomItems(source:Array, count:int):Array{ var index:int; var result:Array = []; var selection:Array = []; var i:int; while (i < count) { index = (Math.random() * source.length); while (selection.indexOf(index) >= 0) { index++; if (index == source.length){ index = 0; }; }; result.push(source[index]); selection.push(index); i++; }; return (result); } } }//package common.utils
Section 21
//BrowserUtil (common.utils.BrowserUtil) package common.utils { import flash.external.*; import flash.net.*; public class BrowserUtil { public function BrowserUtil(){ super(); } public static function navigate(url:String, window:String="_blank"):void{ var browser:String; var url = url; var window = window; if (ExternalInterface.available){ 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); }; //unresolved jump var _slot1 = e; 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 function GraphUtil(){ super(); } public static function alignCenter(object:DisplayObject, bounds:Rectangle):void{ var objectBounds:Rectangle = object.getBounds(object.parent); object.x = (object.x + (((0.5 * (bounds.left + bounds.right)) - (0.5 * objectBounds.width)) - objectBounds.left)); object.y = (object.y + (((0.5 * (bounds.top + bounds.bottom)) - (0.5 * objectBounds.height)) - objectBounds.top)); } public static function cacheChildrenAsBitmap(container:DisplayObjectContainer):void{ var child:DisplayObject; var animations:Array; var children:Array = getChildren(container); for each (child in children) { if ((child is DisplayObjectContainer)){ animations = getAllChildren(container, new MultipleFramesRequirement()); if (animations.length == 0){ child.cacheAsBitmap = true; } else { if (((!((child is MovieClip))) || ((MovieClip(child).totalFrames == 1)))){ cacheChildrenAsBitmap((child as DisplayObjectContainer)); }; }; } else { child.cacheAsBitmap = true; }; }; } public static function fromRGB(r:uint, g:uint, b:uint):uint{ return ((((r << 16) | (g << 8)) | b)); } public static function attachBefore(sprite:DisplayObject, before:DisplayObject):void{ before.parent.addChildAt(sprite, before.parent.getChildIndex(before)); } public static function setBtnEnabled(button:InteractiveObject, enabled:Boolean, alpha:Number=0.5):void{ button.mouseEnabled = enabled; if ((button is DisplayObjectContainer)){ DisplayObjectContainer(button).mouseChildren = enabled; }; button.alpha = (enabled) ? 1 : alpha; } public static function setScale(object:DisplayObject, scale:Number):void{ object.scaleX = (object.scaleY = scale); } public static function addColor(target:DisplayObject, color:int):void{ var rgb:Object = toRGB(color); var transform:ColorTransform = target.transform.colorTransform; transform.redOffset = (transform.redOffset + rgb.r); transform.greenOffset = (transform.greenOffset + rgb.g); transform.blueOffset = (transform.blueOffset + rgb.b); target.transform.colorTransform = transform; } public static function getAllChildren(object:DisplayObjectContainer, requirement:IRequirement=null):Array{ var item:DisplayObject; var children:Array = getChildren(object); var result:Array = []; for each (item in children) { if ((((requirement == null)) || (requirement.accept(item)))){ result.push(item); }; if ((item is DisplayObjectContainer)){ result = result.concat(getAllChildren(DisplayObjectContainer(item), requirement)); }; }; return (result); } public static function getPixel(item:DisplayObject, x:int, y:int):int{ var bitmapData:BitmapData = new BitmapData(4, 4); var matrix:Matrix = new Matrix(); matrix.tx = -(x); matrix.ty = -(y); bitmapData.draw(item, matrix, item.transform.colorTransform, item.blendMode); return (bitmapData.getPixel(1, 1)); } public static function claimBounds(object:DisplayObject, bounds:Rectangle):void{ var rect:Rectangle = object.getBounds(object.parent); if (rect.left < bounds.left){ object.x = (object.x + (bounds.left - rect.left)); } else { if (rect.right > bounds.right){ object.x = (object.x + (bounds.right - rect.right)); }; }; if (rect.top < bounds.top){ object.y = (object.y + (bounds.top - rect.top)); } else { if (rect.bottom > bounds.bottom){ object.y = (object.y + (bounds.bottom - rect.bottom)); }; }; } public static function toRGB(color:uint):Object{ return ({r:(color >> 16), g:((color >> 8) & 0xFF), b:(color & 0xFF)}); } public static function toPoint(object:Object):Point{ return (new Point(object.x, object.y)); } public static function attachAfter(sprite:DisplayObject, after:DisplayObject):void{ after.parent.addChildAt(sprite, (after.parent.getChildIndex(after) + 1)); } public static function findObject(container:DisplayObjectContainer, requirement:IRequirement, recursive:Boolean=true):DisplayObject{ if (recursive){ return (getAllChildren(container, requirement)[0]); }; return (getChildren(container, requirement)[0]); } public static function getChildrenBounds(container:DisplayObjectContainer):Rectangle{ var child:DisplayObject; var bounds:Rectangle; var minX:Number = Number.MAX_VALUE; var maxX:Number = Number.MIN_VALUE; var minY:Number = Number.MAX_VALUE; var maxY:Number = Number.MIN_VALUE; var i:int; while (i < container.numChildren) { child = container.getChildAt(i); bounds = child.getBounds(container); minX = Math.min(minX, bounds.x); minY = Math.min(minY, bounds.y); maxX = Math.max(maxX, bounds.right); maxY = Math.max(maxY, bounds.bottom); i++; }; return (new Rectangle(minX, minY, (maxX - minX), (maxY - minY))); } public static function getAllButtonChildren(button:SimpleButton, requirement:IRequirement=null):Array{ var state:DisplayObject; var states:Array = [button.upState, button.overState, button.downState]; var result:Array = []; for each (state in states) { if ((((requirement == null)) || (requirement.accept(state)))){ result.push(state); }; if ((state is DisplayObjectContainer)){ result = result.concat(getAllChildren(DisplayObjectContainer(state), requirement)); }; }; return (result); } public static function stopAllChildren(container:DisplayObjectContainer, frameNum:int=0):void{ var child:MovieClip; var clips:Array = getAllChildren(container, new TypeRequirement(MovieClip)); if ((container is MovieClip)){ clips.push(container); }; for each (child in clips) { if (child.totalFrames > 1){ if (frameNum > 0){ child.gotoAndStop(frameNum); } else { child.stop(); }; }; }; } public static function removeChildren(container:DisplayObjectContainer):void{ while (container.numChildren > 0) { container.removeChildAt(0); }; } public static function adjustBounds(object:DisplayObject, bounds:Rectangle):void{ claimScale(object, bounds.width, bounds.height); alignCenter(object, bounds); } public static function createRectSprite(width:Number, height:Number, color:int=0, alpha:Number=1):Sprite{ var sprite:Sprite = new Sprite(); sprite.graphics.beginFill(color, alpha); sprite.graphics.drawRect(0, 0, width, height); sprite.graphics.endFill(); return (sprite); } public static function setRandomFrame(clip:MovieClip):void{ var frameNum:int = (1 + (Math.random() * clip.totalFrames)); clip.gotoAndStop(frameNum); } public static function transformCoords(point:Point, source:DisplayObject, target:DisplayObject):Point{ return (target.globalToLocal(source.localToGlobal(point))); } public static function setPosition(object:DisplayObject, position:Object):void{ object.x = position.x; object.y = position.y; } public static function detachFromDisplay(displyObject:DisplayObject):void{ displyObject.parent.removeChild(displyObject); } public static function claimScale(object:DisplayObject, maxWidth:Number, maxHeight:Number):void{ var scale:Number = Math.min((maxWidth / object.width), (maxHeight / object.height)); object.height = (object.height * scale); object.width = (object.width * scale); } public static function sendToBack(object:DisplayObject):void{ var parent:DisplayObjectContainer = object.parent; parent.setChildIndex(object, 0); } public static function setFontSize(field:TextField, size:int):void{ var format:TextFormat = field.getTextFormat(); format.size = size; field.setTextFormat(format); } public static function playAllChildren(clip:MovieClip):void{ var child:MovieClip; clip.play(); var children:Array = getAllChildren(clip, new TypeRequirement(MovieClip)); for each (child in children) { if (child.totalFrames > 1){ child.play(); }; }; } public static function getChildren(object:DisplayObjectContainer, requirement:IRequirement=null):Array{ var child:DisplayObject; var result:Array = []; var i:int; while (i < object.numChildren) { child = object.getChildAt(i); if ((((requirement == null)) || (requirement.accept(child)))){ result.push(child); }; i++; }; return (result); } public static function addBoundsRect(object:Sprite, color:int=0, alpha:Number=0):Sprite{ var bounds:Rectangle = object.getBounds(object); var rect:Sprite = createRectSprite(bounds.width, bounds.height, color, alpha); object.addChild(rect); rect.x = bounds.x; rect.y = bounds.y; return (rect); } public static function bringToFront(object:DisplayObject):void{ var parent:DisplayObjectContainer = object.parent; parent.setChildIndex(object, (parent.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 function StringUtil(){ super(); } public static function trim(str:String):String{ if (str == null){ return (""); }; var index1:int; var index2:int = (str.length - 1); var length:int = str.length; while ((((index1 < length)) && ((EMPTY_CHARS.indexOf(str.charAt(index1)) >= 0)))) { index1++; }; while ((((index2 > 0)) && ((EMPTY_CHARS.indexOf(str.charAt(index2)) >= 0)))) { index2--; }; return (((index2)>=index1) ? str.slice(index1, (index2 + 1)) : ""); } public static function format(str:String, ... _args):String{ var length:int = _args.length; var i:int; while (i < length) { str = str.replace(new RegExp((("\\{" + i) + "\\}"), "g"), _args[i]); i++; }; return (str); } public static function replaceChars(source:String, characters:Array, matches:Array):String{ var matchIndex:int; var result:String = ""; var i:int; while (i < source.length) { matchIndex = characters.indexOf(source.charAt(i)); if (matchIndex != -1){ result = (result + matches[matchIndex]); } else { result = (result + source.charAt(i)); }; i++; }; return (result); } public static function isBlankString(source:String):Boolean{ var i:int; while (i <= source.length) { if (EMPTY_CHARS.indexOf(source.charAt(i)) < 0){ return (false); }; i++; }; return (true); } public static function extractInt(source:String):int{ return (source.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 function Sounds(){ super(); } public static function get muted():Boolean{ return ((_musicVolume == 0)); } private static function setMusicVolume(value:Number):void{ _musicVolume = value; if (_musicChannel){ _musicChannel.soundTransform = new SoundTransform(_musicVolume); }; } public static function playMusic(musicClass:Class):void{ if (_musicChannel){ _musicChannel.stop(); }; _musicClass = musicClass; var sound:Sound = new (musicClass); _musicChannel = sound.play(0, 0, new SoundTransform(_musicVolume)); _musicChannel.addEventListener(Event.SOUND_COMPLETE, onMusicComplete); } public static function play(soundClass:Class, playSafe:Boolean=false):void{ var sound:Sound; var channel:SoundChannel; var soundClass = soundClass; var playSafe = playSafe; if (((!(playSafe)) || (!((soundClass in _nowPlaying))))){ sound = new (soundClass); channel = sound.play(0, 0, new SoundTransform(DEFAULT_VOLUME)); channel.addEventListener(Event.SOUND_COMPLETE, function (e: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(e: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; public function Controller(){ super(); } protected function registerNativeEvent(object:EventDispatcher, type:String, listener:Function, useCapture:Boolean=false):void{ if (!_eventManager){ _eventManager = new EventManager(); }; _eventManager.registerNativeEvent(object, type, listener, useCapture); } protected function get app():Application{ return (Application.instance); } protected function unregisterNativeEvent(object:EventDispatcher, type:String, listener:Function, useCapture:Boolean=false):void{ if (_eventManager){ _eventManager.unregisterNativeEvent(object, type, listener, useCapture); }; } protected function registerEvent(event:EventSender, handler:Function):void{ if (!_eventManager){ _eventManager = new EventManager(); }; _eventManager.registerEvent(event, handler); } protected function clearEvents():void{ if (_eventManager){ _eventManager.clearEvents(); }; } protected function unregisterEvent(event:EventSender, handler:Function):void{ if (_eventManager){ _eventManager.unregisterEvent(event, handler); }; } 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(content:Sprite){ super(); _content = content; } public function get content():Sprite{ return (_content); } public static function setButtonText(button:SimpleButton, fieldName:String, value):void{ var field:TextField; var fields:Array = GraphUtil.getAllButtonChildren(button, new NameRequirement(fieldName)); for each (field in fields) { field.text = String(value); }; } public static function getCheckBoxes(container:Sprite):Array{ var clips:Array = GraphUtil.getChildren(container, new PropertyRequirement("totalFrames", 2)); var buttons:Array = ArrayUtil.convert(clips, new ConstructorConverter(CheckBox)); return (buttons.reverse()); } public static function setButtonAction(button:InteractiveObject, handler:Function, soundClass:Class=null, ... _args):void{ var button = button; var handler = handler; var soundClass = soundClass; var rest = _args; var clickHandler:Function = function (e:MouseEvent):void{ handler.apply(this, rest); }; var pressHandler:Function = function (e:MouseEvent):void{ if (((soundClass) || (defaultSound))){ Sounds.play(((soundClass) || (defaultSound))); }; }; button.addEventListener(MouseEvent.MOUSE_DOWN, pressHandler); button.addEventListener(MouseEvent.CLICK, clickHandler); } public static function setButtonEnabled(button:InteractiveObject, enabled:Boolean):void{ GraphUtil.setBtnEnabled(button, enabled); } } }//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(content:McScene){ _changeEvent = new EventSender(this); super(content); initClip(content.mcBackground); initButtons(content.mcBgButtons); } private function initClip(clip:MovieClip):void{ _clip = clip; _clip.stop(); _clip.mouseEnabled = false; _clip.mouseChildren = false; _clip.opaqueBackground = 0; } public function get changeEvent():EventSender{ return (_changeEvent); } public function set selectedIndex(value:int):void{ GraphUtil.stopAllChildren(_clip); _clip.gotoAndStop((value + 1)); _buttons.selectedIndex = value; } private function initButtons(container:Sprite):void{ var checkboxes:Array = getCheckBoxes(container); _buttons = new RadioGroup(checkboxes); _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(content:McScene){ _clickEvent = new EventSender(this); super(content); initPanels(content.mcCatPanels); initPanelSelector(content.mcCatButtons); } private function initPanelButtons(panel:Sprite):void{ var button:SimpleButton; var buttons:Array = getButtons(panel); for each (button in buttons) { button.addEventListener(MouseEvent.CLICK, onButtonClick); }; } private function onCategoryClick():void{ categoryIndex = _panelSelector.selectedIndex; } private function onButtonClick(e:MouseEvent):void{ var button:SimpleButton = (e.currentTarget as SimpleButton); _frameIndex = getButtons(_selectedPanel).indexOf(button); _filters = button.filters; _clickEvent.sendEvent(); } private function initPanelSelector(container:Sprite):void{ var checkboxes:Array = getCheckBoxes(container); _panelSelector = new RadioGroup(checkboxes); _panelSelector.clickEvent.addListener(onCategoryClick); } private function initPanels(container:Sprite):void{ var panel:Sprite; _panelsContainer = container; _panels = GraphUtil.getChildren(_panelsContainer).reverse(); for each (panel in _panels) { initPanelButtons(panel); GraphUtil.detachFromDisplay(panel); }; } private function getButtons(container:Sprite):Array{ return (GraphUtil.getChildren(container, new TypeRequirement(SimpleButton)).reverse()); } public function get frameIndex():int{ return (_frameIndex); } public function set categoryIndex(value:int):void{ if (_selectedPanel){ GraphUtil.detachFromDisplay(_selectedPanel); }; _selectedPanel = _panels[value]; _panelSelector.selectedIndex = value; 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(content:McControlPanel){ super((_content = content)); _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 button:SimpleButton; GraphUtil.removeChildren(_content); for each (button in _args) { _content.addChild(button); if ((((button == _content.btnBottomLogo)) || ((button == _content.btnTopLogo)))){ GraphUtil.setScale(button, (_defaultScale * 0.75)); TweenLite.to(button, 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(content:Sprite){ _items = []; super(content); initItems(); } private function initItems():void{ var clip:MovieClip; var index:int; var clips:Array = GraphUtil.getChildren(content, new NameRequirement(PART_NAME, true)); for each (clip in clips) { index = StringUtil.extractInt(clip.name); initItem(clip, index); }; } public function setDefaultItem(itemIndex:int, frameIndex:int):void{ var item:MovieClip = _items[itemIndex]; item.mouseEnabled = false; showItem(itemIndex, frameIndex); } public function hideItem(itemIndex:int):void{ var item:MovieClip = _items[itemIndex]; item.visible = false; } public function showItem(itemIndex:int, frameIndex:int):void{ var item:MovieClip = _items[itemIndex]; item.visible = true; item.gotoAndStop((frameIndex + 1)); } public function hideAllItems():void{ var i:int; while (i < _items.length) { if (_items[i]){ hideItem(i); }; i++; }; } private function onClick(e:MouseEvent):void{ var item:MovieClip = (e.currentTarget as MovieClip); var index:int = _items.indexOf(item); hideItem(index); } private function initItem(clip:MovieClip, index:int):void{ _items[(index - 1)] = clip; clip.addEventListener(MouseEvent.CLICK, onClick); clip.buttonMode = true; clip.useHandCursor = true; clip.mouseChildren = false; clip.visible = false; clip.stop(); } public function applyFilters(itemIndex:int, childIndex:int, filters:Array):void{ var item:MovieClip = _items[itemIndex]; var children:Array = GraphUtil.getChildren(item, new TypeRequirement(Sprite)).reverse(); var child:Sprite = (((children[childIndex] as Sprite)) || (item)); child.filters = filters; } public function resetDefaultItems():void{ var item:MovieClip; for each (item in _items) { if (item){ item.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 effectData:XML; var buttonIndex:int; var categoryIndex:int; var effects:XMLList = app.config.filterEffect; for each (effectData in effects) { buttonIndex = (int(effectData.@buttonNum) - 1); categoryIndex = (int(effectData.@targetCategoryNum) - 1); _categories; }; } private function onItemSelect(sender:CategoreisView):void{ var buttonNum:int; var effects:XMLList; var targetIndex:int; var childIndex:int; var sender = sender; 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(value:Boolean):void{ _content.mcBgButtons.visible = value; _content.mcCatPanels.visible = value; _content.mcCatButtons.visible = value; } 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(root:Sprite):void{ var command:PlayIntroCommand; _root = root; _root.addChild(_appRoot); _config = new XML(new CONFIG_XML()); command = new PlayIntroCommand(new McIntro(), _appRoot); command.allowSkip = true; conveyor.pushAction(command); conveyor.pushAction(createScene); } private function showBaner():void{ var baner:GirlgamesBanner = new GirlgamesBanner(); baner.y = (Main.HEIGHT - baner.height); _root.addChild(baner); } public static function get instance():Application{ if (!_instance){ _instance = new (Application); }; return (_instance); } } }//package dressup
Section 34
//Application_CONFIG_XML (dressup.Application_CONFIG_XML) package dressup { import mx.core.*; public class Application_CONFIG_XML extends ByteArrayAsset { } }//package dressup
Section 35
//GirlgamesBanner (girlgames.GirlgamesBanner) package girlgames { import flash.events.*; import common.utils.*; public class GirlgamesBanner extends McGirlgamesBaner { public function GirlgamesBanner(){ super(); initialize(); } private function initialize():void{ btnLogo.addEventListener(MouseEvent.CLICK, onLogoClick); btnMoreGames.addEventListener(MouseEvent.CLICK, onMoreGamesClick); btnFreeGames.addEventListener(MouseEvent.CLICK, onFreeGamesClick); } private function onFreeGamesClick(e:MouseEvent):void{ BrowserUtil.navigate("http://www.cookinggames.com/"); } private function onMoreGamesClick(e:MouseEvent):void{ BrowserUtil.navigate("http://www.cookinggames.com/"); } private function onLogoClick(e:MouseEvent):void{ BrowserUtil.navigate("http://www.cookinggames.com/"); } } }//package girlgames
Section 36
//GirlgamesPreloader (girlgames.GirlgamesPreloader) package girlgames { import flash.events.*; import flash.display.*; import common.events.*; import common.utils.*; public class GirlgamesPreloader { private var _root:MovieClip; private var _clickRect:Sprite; private var _completeEvent:EventSender; private var _content:PreloaderMC; private var _state:Function; public function GirlgamesPreloader(root:MovieClip){ _completeEvent = new EventSender(this); super(); _root = root; _state = playingAnim1; initContent(); setPercent(0); } private function setPercent(value:Number):void{ _content.loader.barMask.scaleX = value; } 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(e:ProgressEvent):void{ setPercent((e.bytesLoaded / e.bytesTotal)); } private function onMouseClick(e: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(e:Event):void{ _state(); } private function loading():void{ if (_root.loaderInfo.bytesLoaded == _root.loaderInfo.bytesTotal){ _content.loader.visible = false; _content.anim1.visible = false; _content.anim2.visible = true; _content.anim2.play(); _state = finishing; }; } } }//package girlgames
Section 37
//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($target:Object, $duration:Number, $vars:Object){ super(); if ($target == null){ return; }; if (((((!(($vars.overwrite == false))) && (!(($target == null))))) || ((_all[$target] == undefined)))){ delete _all[$target]; _all[$target] = new Dictionary(); }; _all[$target][this] = this; this.vars = $vars; this.duration = (($duration) || (0.001)); this.delay = (($vars.delay) || (0)); this.target = $target; 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 = ((($duration == 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($proxy:Function, $target:Object, $props:Object, $info:Object=null):void{ var p:String; var sub:Object = {proxy:$proxy, target:$target, info:$info}; _subTweens.push(sub); for (p in $props) { if (typeof($props[p]) == "number"){ this.tweens.push({o:$target, p:p, s:$target[p], c:($props[p] - $target[p]), sub:sub}); } else { this.tweens.push({o:$target, p:p, s:$target[p], c:Number($props[p]), sub:sub}); }; }; _hst = true; } public function initTweenVals($hrp:Boolean=false, $reservedProps:String=""):void{ var p:String; var i:int; var endArray:Array; var clr:ColorTransform; var endClr:ColorTransform; var tp:Object; var isDO = (this.target is DisplayObject); if ((this.target is Array)){ endArray = ((this.vars.endArray) || ([])); i = 0; while (i < endArray.length) { if (((!((this.target[i] == endArray[i]))) && (!((this.target[i] == undefined))))){ this.tweens.push({o:this.target, p:i.toString(), s:this.target[i], c:(endArray[i] - this.target[i])}); }; i++; }; } else { for (p in this.vars) { if ((((((((((((((((((((((((((((((((((((((p == "ease")) || ((p == "delay")))) || ((p == "overwrite")))) || ((p == "onComplete")))) || ((p == "onCompleteParams")))) || ((p == "onCompleteScope")))) || ((p == "runBackwards")))) || ((p == "visible")))) || ((p == "onUpdate")))) || ((p == "onUpdateParams")))) || ((p == "onUpdateScope")))) || ((p == "autoAlpha")))) || ((p == "onStart")))) || ((p == "onStartParams")))) || ((p == "onStartScope")))) || ((p == "renderOnStart")))) || ((p == "proxiedEase")))) || ((p == "easeParams")))) || ((($hrp) && (!(($reservedProps.indexOf(((" " + p) + " ")) == -1))))))){ } else { if ((((p == "tint")) && (isDO))){ clr = this.target.transform.colorTransform; endClr = new ColorTransform(); if (this.vars.alpha != undefined){ endClr.alphaMultiplier = this.vars.alpha; delete this.vars.alpha; i = (this.tweens.length - 1); while (i > -1) { if (this.tweens[i].p == "alpha"){ this.tweens.splice(i, 1); break; }; i--; }; } else { endClr.alphaMultiplier = this.target.alpha; }; if (((((!((this.vars[p] == null))) && (!((this.vars[p] == ""))))) || ((this.vars[p] == 0)))){ endClr.color = this.vars[p]; }; addSubTween(tintProxy, {progress:0}, {progress:1}, {target:this.target, color:clr, endColor:endClr}); } else { if ((((p == "frame")) && (isDO))){ addSubTween(frameProxy, {frame:this.target.currentFrame}, {frame:this.vars[p]}, {target:this.target}); } else { if ((((p == "volume")) && (((isDO) || ((this.target is SoundChannel)))))){ addSubTween(volumeProxy, this.target.soundTransform, {volume:this.vars[p]}, {target:this.target}); } else { if (typeof(this.vars[p]) == "number"){ this.tweens.push({o:this.target, p:p, s:this.target[p], c:(this.vars[p] - this.target[p])}); } else { this.tweens.push({o:this.target, p:p, s:this.target[p], c:Number(this.vars[p])}); }; }; }; }; }; }; }; if (this.vars.runBackwards == true){ i = (this.tweens.length - 1); while (i > -1) { tp = this.tweens[i]; tp.s = (tp.s + tp.c); tp.c = (tp.c * -1); i--; }; }; 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($t:uint):void{ var factor:Number; var tp:Object; var i:int; var time:Number = (($t - this.startTime) / 1000); if (time >= this.duration){ time = this.duration; factor = 1; } else { factor = this.vars.ease(time, 0, 1, this.duration); }; i = (this.tweens.length - 1); while (i > -1) { tp = this.tweens[i]; tp.o[tp.p] = (tp.s + (factor * tp.c)); i--; }; if (_hst){ i = (_subTweens.length - 1); while (i > -1) { _subTweens[i].proxy(_subTweens[i]); i--; }; }; if (this.vars.onUpdate != null){ this.vars.onUpdate.apply(this.vars.onUpdateScope, this.vars.onUpdateParams); }; if (time == this.duration){ complete(true); }; } protected function easeProxy($t:Number, $b:Number, $c:Number, $d:Number):Number{ return (this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams))); } public function complete($skipRender:Boolean=false):void{ if (!$skipRender){ 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($t:Number, $b:Number, $c:Number, $d:Number):Number{ $t = ($t / $d); return ((((-($c) * $t) * ($t - 2)) + $b)); } public static function frameProxy($o:Object):void{ $o.info.target.gotoAndStop(Math.round($o.target.frame)); } public static function removeTween($t:TweenLite=null):void{ if (((!(($t == null))) && (!((_all[$t.target] == undefined))))){ delete _all[$t.target][$t]; }; } public static function killTweensOf($tg:Object=null, $complete:Boolean=false):void{ var o:Object; var tw:*; if (((!(($tg == null))) && (!((_all[$tg] == undefined))))){ if ($complete){ o = _all[$tg]; for (tw in o) { o[tw].complete(false); }; }; delete _all[$tg]; }; } public static function delayedCall($delay:Number, $onComplete:Function, $onCompleteParams:Array=null, $onCompleteScope=null):TweenLite{ return (new TweenLite($onComplete, 0, {delay:$delay, onComplete:$onComplete, onCompleteParams:$onCompleteParams, onCompleteScope:$onCompleteScope, overwrite:false})); } public static function from($target:Object, $duration:Number, $vars:Object):TweenLite{ $vars.runBackwards = true; return (new TweenLite($target, $duration, $vars)); } public static function executeAll($e:Event=null):void{ var a:Dictionary; var p:Object; var tw:Object; var t:uint = (_curTime = getTimer()); if (_listening){ a = _all; for each (p in a) { for (tw in p) { if (((!((p[tw] == undefined))) && (p[tw].active))){ p[tw].render(t); }; }; }; }; } public static function volumeProxy($o:Object):void{ $o.info.target.soundTransform = $o.target; } public static function killGarbage($e:TimerEvent):void{ var found:Boolean; var p:Object; var twp:Object; var tw:Object; var tg_cnt:uint; for (p in _all) { found = false; for (twp in _all[p]) { found = true; break; }; if (!found){ delete _all[p]; } else { tg_cnt++; }; }; if (tg_cnt == 0){ _timer.removeEventListener("timer", killGarbage); _timer.stop(); _listening = false; }; } public static function tintProxy($o:Object):void{ var n:Number = $o.target.progress; var r:Number = (1 - n); var sc:Object = $o.info.color; var ec:Object = $o.info.endColor; $o.info.target.transform.colorTransform = new ColorTransform(((sc.redMultiplier * r) + (ec.redMultiplier * n)), ((sc.greenMultiplier * r) + (ec.greenMultiplier * n)), ((sc.blueMultiplier * r) + (ec.blueMultiplier * n)), ((sc.alphaMultiplier * r) + (ec.alphaMultiplier * n)), ((sc.redOffset * r) + (ec.redOffset * n)), ((sc.greenOffset * r) + (ec.greenOffset * n)), ((sc.blueOffset * r) + (ec.blueOffset * n)), ((sc.alphaOffset * r) + (ec.alphaOffset * n))); } public static function to($target:Object, $duration:Number, $vars:Object):TweenLite{ return (new TweenLite($target, $duration, $vars)); } } }//package gs
Section 38
//ByteArrayAsset (mx.core.ByteArrayAsset) package mx.core { import flash.utils.*; public class ByteArrayAsset extends ByteArray implements IFlexAsset { mx_internal static const VERSION:String = "3.5.0.12683"; public function ByteArrayAsset(){ super(); } } }//package mx.core
Section 39
//IFlexAsset (mx.core.IFlexAsset) package mx.core { public interface IFlexAsset { } }//package mx.core
Section 40
//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 41
//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 preloader:GirlgamesPreloader; super(); scrollRect = BOUNDS; opaqueBackground = 0; preloader = new GirlgamesPreloader(this); preloader.completeEvent.addListener(startup); //unresolved jump addEventListener(Event.ENTER_FRAME, onEnterFrame); } private function initializeApp(e:Event=null):void{ removeEventListener(Event.ADDED_TO_STAGE, initializeApp); var applicationClass:Class = Class(getDefinitionByName("dressup.Application")); applicationClass["instance"].initialize(this); } private function onEnterFrame(e: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 42
//McBar (McBar) package { import flash.display.*; public dynamic class McBar extends MovieClip { public var barMask:MovieClip; } }//package
Section 43
//McControlPanel (McControlPanel) package { import flash.display.*; public dynamic class McControlPanel extends MovieClip { public var btnLogo:SimpleButton; public var btnReset:SimpleButton; public var btnPhoto:SimpleButton; public var btnBack:SimpleButton; } }//package
Section 44
//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 45
//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
Symbol 48 GraphicUsed by:51
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:51
Symbol 51 MovieClipUses:47 48 50Used by:76 77
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:76 77 572
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
Symbol 68 GraphicUsed by:75
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:75
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:75
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 GraphicUsed by:151
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:130 197
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:130 197
Symbol 130 MovieClipUses:127 129Used by:131
Symbol 131 MovieClipUses:130Used by:151
Symbol 132 GraphicUsed by:151
Symbol 133 GraphicUsed by:144
Symbol 134 GraphicUsed by:144
Symbol 135 GraphicUsed by:144
Symbol 136 GraphicUsed by:144
Symbol 137 GraphicUsed by:144
Symbol 138 GraphicUsed by:144
Symbol 139 GraphicUsed by:144
Symbol 140 GraphicUsed by:144
Symbol 141 GraphicUsed by:144
Symbol 142 GraphicUsed by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:133 134 135 136 137 138 139 140 141 142 143Used by:145 146
Symbol 145 MovieClipUses:144Used by:151
Symbol 146 MovieClipUses:144Used by:151
Symbol 147 GraphicUsed by:151
Symbol 148 GraphicUsed by:149
Symbol 149 MovieClipUses:148Used by:151 216
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:125 131 132 145 146 147 149 150Used by:195
Symbol 152 GraphicUsed by:192
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:166 170 222
Symbol 155 GraphicUsed by:159 167
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:159 163 167 169 221
Symbol 158 GraphicUsed by:159 167
Symbol 159 MovieClipUses:155 157 158Used by:166 222
Symbol 160 GraphicUsed by:163
Symbol 161 GraphicUsed by:163 169
Symbol 162 GraphicUsed by:163 169
Symbol 163 MovieClipUses:160 161 157 162Used by:166
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:166 170 222
Symbol 166 MovieClipUses:154 159 163 165Used by:192
Symbol 167 MovieClipUses:155 157 158Used by:170
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168 161 157 162Used by:170
Symbol 170 MovieClipUses:154 167 169 165Used by:192 228 262 276
Symbol 171 GraphicUsed by:192
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:192
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:174Used by:192
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClipUses:176Used by:178
Symbol 178 MovieClipUses:177Used by:192
Symbol 179 GraphicUsed by:180
Symbol 180 MovieClipUses:179Used by:192
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:192
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClipUses:183Used by:192
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:185Used by:187
Symbol 187 MovieClipUses:186Used by:192
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:188Used by:192
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:192 536
Symbol 192 MovieClipUses:152 166 170 171 173 175 178 180 182 184 187 189 191Used by:195
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:195
Symbol 195 MovieClip {assets.McIntro} [assets.McIntro]Uses:151 192 194
Symbol 196 GraphicUsed by:216
Symbol 197 MovieClipUses:127 129Used by:198
Symbol 198 MovieClipUses:197Used by:216
Symbol 199 GraphicUsed by:216
Symbol 200 GraphicUsed by:211
Symbol 201 GraphicUsed by:211
Symbol 202 GraphicUsed by:211
Symbol 203 GraphicUsed by:211
Symbol 204 GraphicUsed by:211
Symbol 205 GraphicUsed by:211
Symbol 206 GraphicUsed by:211
Symbol 207 GraphicUsed by:211
Symbol 208 GraphicUsed by:211
Symbol 209 GraphicUsed by:211
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:200 201 202 203 204 205 206 207 208 209 210Used by:212 213
Symbol 212 MovieClipUses:211Used by:216
Symbol 213 MovieClipUses:211Used by:216
Symbol 214 GraphicUsed by:216
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:196 198 199 212 213 214 149 215Used by:228
Symbol 217 GraphicUsed by:228
Symbol 218 GraphicUsed by:221
Symbol 219 GraphicUsed by:221
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:218 219 157 220Used by:222
Symbol 222 MovieClipUses:154 159 221 165Used by:228 262 276
Symbol 223 GraphicUsed by:228
Symbol 224 GraphicUsed by:225 578 586
Symbol 225 MovieClipUses:224Used by:228 262 276 577 585
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:226Used by:228
Symbol 228 MovieClipUses:216 217 222 170 223 225 227Used by:277
Symbol 229 GraphicUsed by:253
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClipUses:230Used by:232
Symbol 232 MovieClipUses:231Used by:253
Symbol 233 GraphicUsed by:253
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234Used by:253
Symbol 236 GraphicUsed by:253
Symbol 237 GraphicUsed by:241
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:238Used by:241
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:237 239 240Used by:253
Symbol 242 GraphicUsed by:253
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:243Used by:253
Symbol 245 GraphicUsed by:253
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:246Used by:253
Symbol 248 GraphicUsed by:253
Symbol 249 GraphicUsed by:253
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:253
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:229 232 233 235 236 241 242 244 245 247 248 249 251 252Used by:262
Symbol 254 GraphicUsed by:262
Symbol 255 GraphicUsed by:262
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:256Used by:262
Symbol 258 GraphicUsed by:262
Symbol 259 GraphicUsed by:262
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:260Used by:262
Symbol 262 MovieClipUses:253 254 222 170 255 257 258 225 259 261Used by:277
Symbol 263 GraphicUsed by:268
Symbol 264 GraphicUsed by:265
Symbol 265 MovieClipUses:264Used by:266
Symbol 266 MovieClipUses:265Used by:268
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:263 266 267Used by:276
Symbol 269 GraphicUsed by:276
Symbol 270 GraphicUsed by:276
Symbol 271 GraphicUsed by:272
Symbol 272 MovieClipUses:271Used by:276
Symbol 273 GraphicUsed by:276
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:276
Symbol 276 MovieClipUses:268 269 222 170 270 272 273 225 275Used by:277
Symbol 277 MovieClipUses:228 262 276Used by:589
Symbol 278 GraphicUsed by:279
Symbol 279 MovieClipUses:278Used by:319 344 373 396 421 447 457 466 489
Symbol 280 GraphicUsed by:284
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:284
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:280 282 283Used by:286 320 518
Symbol 285 GraphicUsed by:286 290 294 298 303 320 323 326 329 333 336 339 343 348 349 352 355 363 366 369 372 376 377 380 383 386 389 392 395 399 400 405 408 411 414 417 420 424 427 430 435 438 442 445 446 469 470 473 476 479 482 485 488
Symbol 286 ButtonUses:284 285Used by:287
Symbol 287 MovieClipUses:286Used by:319
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:290 291 349 516
Symbol 290 ButtonUses:289 285Used by:291
Symbol 291 MovieClipUses:290 289Used by:319
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:294 295 377 499
Symbol 294 ButtonUses:293 285Used by:295
Symbol 295 MovieClipUses:294 293Used by:319
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:298 299 400 497
Symbol 298 ButtonUses:297 285Used by:299
Symbol 299 MovieClipUses:298 297Used by:319
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:300Used by:302
Symbol 302 MovieClipUses:301Used by:303 304 446 495
Symbol 303 ButtonUses:302 285Used by:304
Symbol 304 MovieClipUses:303 302Used by:319
Symbol 305 GraphicUsed by:306 310 314 317 458 459 460 461 462 463 464 465
Symbol 306 MovieClipUses:305Used by:310 312 314 316 317 318 458 459 460 461 462 463 464 465 470 536
Symbol 307 GraphicUsed by:310
Symbol 308 GraphicUsed by:309 310 314 317
Symbol 309 MovieClipUses:308Used by:310 314 316 317 318 449 450 451 452 453 454 455 456 536
Symbol 310 ButtonUses:306 307 309 305 308Used by:312
Symbol 311 GraphicUsed by:312
Symbol 312 MovieClipUses:310 306 311Used by:319
Symbol 313 GraphicUsed by:314
Symbol 314 ButtonUses:306 313 309 305 308Used by:316
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:314 306 315 309Used by:319
Symbol 317 ButtonUses:306 309 305 308Used by:318
Symbol 318 MovieClipUses:317 306 309Used by:319
Symbol 319 MovieClipUses:279 287 291 295 299 304 312 316 318Used by:589
Symbol 320 ButtonUses:284 285Used by:344
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:323 518
Symbol 323 ButtonUses:322 285Used by:344
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324Used by:326 518
Symbol 326 ButtonUses:325 285Used by:344
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClipUses:327Used by:329 518
Symbol 329 ButtonUses:328 285Used by:344
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:330Used by:332
Symbol 332 MovieClipUses:331Used by:333 518
Symbol 333 ButtonUses:332 285Used by:344
Symbol 334 GraphicUsed by:335
Symbol 335 MovieClipUses:334Used by:336 518
Symbol 336 ButtonUses:335 285Used by:344
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:337Used by:339 518
Symbol 339 ButtonUses:338 285Used by:344
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClipUses:340Used by:342
Symbol 342 MovieClipUses:341Used by:343 518
Symbol 343 ButtonUses:342 285Used by:344
Symbol 344 MovieClipUses:279 320 323 326 329 333 336 339 343Used by:490
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:345Used by:347
Symbol 347 MovieClipUses:346Used by:348 516
Symbol 348 ButtonUses:347 285Used by:373
Symbol 349 ButtonUses:289 285Used by:373
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:350Used by:352 516
Symbol 352 ButtonUses:351 285Used by:373
Symbol 353 GraphicUsed by:354
Symbol 354 MovieClipUses:353Used by:355 516
Symbol 355 ButtonUses:354 285Used by:373
Symbol 356 GraphicUsed by:362
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClipUses:357Used by:362
Symbol 359 GraphicUsed by:362
Symbol 360 GraphicUsed by:362
Symbol 361 GraphicUsed by:362
Symbol 362 MovieClipUses:356 358 359 360 361Used by:363 516
Symbol 363 ButtonUses:362 285Used by:373
Symbol 364 GraphicUsed by:365
Symbol 365 MovieClipUses:364Used by:366 516
Symbol 366 ButtonUses:365 285Used by:373
Symbol 367 GraphicUsed by:368
Symbol 368 MovieClipUses:367Used by:369 516
Symbol 369 ButtonUses:368 285Used by:373
Symbol 370 GraphicUsed by:371
Symbol 371 MovieClipUses:370Used by:372 516
Symbol 372 ButtonUses:371 285Used by:373
Symbol 373 MovieClipUses:279 348 349 352 355 363 366 369 372Used by:490
Symbol 374 GraphicUsed by:375
Symbol 375 MovieClipUses:374Used by:376 499
Symbol 376 ButtonUses:375 285Used by:396
Symbol 377 ButtonUses:293 285Used by:396
Symbol 378 GraphicUsed by:379
Symbol 379 MovieClipUses:378Used by:380 499
Symbol 380 ButtonUses:379 285Used by:396
Symbol 381 GraphicUsed by:382
Symbol 382 MovieClipUses:381Used by:383 499
Symbol 383 ButtonUses:382 285Used by:396
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClipUses:384Used by:386 499
Symbol 386 ButtonUses:385 285Used by:396
Symbol 387 GraphicUsed by:388
Symbol 388 MovieClipUses:387Used by:389 499
Symbol 389 ButtonUses:388 285Used by:396
Symbol 390 GraphicUsed by:391
Symbol 391 MovieClipUses:390Used by:392 499
Symbol 392 ButtonUses:391 285Used by:396
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClipUses:393Used by:395 499
Symbol 395 ButtonUses:394 285Used by:396
Symbol 396 MovieClipUses:279 376 377 380 383 386 389 392 395Used by:490
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClipUses:397Used by:399 497
Symbol 399 ButtonUses:398 285Used by:421
Symbol 400 ButtonUses:297 285Used by:421
Symbol 401 GraphicUsed by:402
Symbol 402 MovieClipUses:401Used by:404
Symbol 403 GraphicUsed by:404
Symbol 404 MovieClipUses:402 403Used by:405 497
Symbol 405 ButtonUses:404 285Used by:421
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClipUses:406Used by:408 497
Symbol 408 ButtonUses:407 285Used by:421
Symbol 409 GraphicUsed by:410
Symbol 410 MovieClipUses:409Used by:411 497
Symbol 411 ButtonUses:410 285Used by:421
Symbol 412 GraphicUsed by:413
Symbol 413 MovieClipUses:412Used by:414 497
Symbol 414 ButtonUses:413 285Used by:421
Symbol 415 GraphicUsed by:416
Symbol 416 MovieClipUses:415Used by:417 497
Symbol 417 ButtonUses:416 285Used by:421
Symbol 418 GraphicUsed by:419
Symbol 419 MovieClipUses:418Used by:420 497
Symbol 420 ButtonUses:419 285Used by:421
Symbol 421 MovieClipUses:279 399 400 405 408 411 414 417 420Used by:490
Symbol 422 GraphicUsed by:423
Symbol 423 MovieClipUses:422Used by:424 495
Symbol 424 ButtonUses:423 285Used by:447
Symbol 425 GraphicUsed by:426
Symbol 426 MovieClipUses:425Used by:427 495
Symbol 427 ButtonUses:426 285Used by:447
Symbol 428 GraphicUsed by:429
Symbol 429 MovieClipUses:428Used by:430 495
Symbol 430 ButtonUses:429 285Used by:447
Symbol 431 GraphicUsed by:432
Symbol 432 MovieClipUses:431Used by:434
Symbol 433 GraphicUsed by:434
Symbol 434 MovieClipUses:432 433Used by:435 495
Symbol 435 ButtonUses:434 285Used by:447
Symbol 436 GraphicUsed by:437
Symbol 437 MovieClipUses:436Used by:438 495
Symbol 438 ButtonUses:437 285Used by:447
Symbol 439 GraphicUsed by:440
Symbol 440 MovieClipUses:439Used by:441
Symbol 441 MovieClipUses:440Used by:442 495
Symbol 442 ButtonUses:441 285Used by:447
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:443Used by:445 495
Symbol 445 ButtonUses:444 285Used by:447
Symbol 446 ButtonUses:302 285Used by:447
Symbol 447 MovieClipUses:279 424 427 430 435 438 442 445 446Used by:490
Symbol 448 GraphicUsed by:449 450 451 452 453 454 455 456
Symbol 449 ButtonUses:309 448Used by:457
Symbol 450 ButtonUses:309 448Used by:457
Symbol 451 ButtonUses:309 448Used by:457
Symbol 452 ButtonUses:309 448Used by:457
Symbol 453 ButtonUses:309 448Used by:457
Symbol 454 ButtonUses:309 448Used by:457
Symbol 455 ButtonUses:309 448Used by:457
Symbol 456 ButtonUses:309 448Used by:457
Symbol 457 MovieClipUses:279 449 450 451 452 453 454 455 456Used by:490
Symbol 458 ButtonUses:306 305Used by:466
Symbol 459 ButtonUses:306 305Used by:466
Symbol 460 ButtonUses:306 305Used by:466
Symbol 461 ButtonUses:306 305Used by:466
Symbol 462 ButtonUses:306 305Used by:466
Symbol 463 ButtonUses:306 305Used by:466
Symbol 464 ButtonUses:306 305Used by:466
Symbol 465 ButtonUses:306 305Used by:466
Symbol 466 MovieClipUses:279 458 459 460 461 462 463 464 465Used by:490
Symbol 467 GraphicUsed by:468
Symbol 468 MovieClipUses:467Used by:469 536
Symbol 469 ButtonUses:468 285Used by:489
Symbol 470 ButtonUses:306 285Used by:489
Symbol 471 GraphicUsed by:472
Symbol 472 MovieClipUses:471Used by:473 536
Symbol 473 ButtonUses:472 285Used by:489
Symbol 474 GraphicUsed by:475
Symbol 475 MovieClipUses:474Used by:476 536
Symbol 476 ButtonUses:475 285Used by:489
Symbol 477 GraphicUsed by:478
Symbol 478 MovieClipUses:477Used by:479 536
Symbol 479 ButtonUses:478 285Used by:489
Symbol 480 GraphicUsed by:481
Symbol 481 MovieClipUses:480Used by:482 536
Symbol 482 ButtonUses:481 285Used by:489
Symbol 483 GraphicUsed by:484
Symbol 484 MovieClipUses:483Used by:485 536
Symbol 485 ButtonUses:484 285Used by:489
Symbol 486 GraphicUsed by:487
Symbol 487 MovieClipUses:486Used by:488 536
Symbol 488 ButtonUses:487 285Used by:489
Symbol 489 MovieClipUses:279 469 470 473 476 479 482 485 488Used by:490
Symbol 490 MovieClipUses:344 373 396 421 447 457 466 489Used by:589
Symbol 491 FontUsed by:492 496 498 500 501 502 503 504 505 506 507 508 509 510 511 513 515 517 521
Symbol 492 EditableTextUses:491Used by:495
Symbol 493 GraphicUsed by:494
Symbol 494 MovieClipUses:493Used by:495
Symbol 495 MovieClipUses:492 302 444 494 441 437 434 429 426 423Used by:537
Symbol 496 EditableTextUses:491Used by:497
Symbol 497 MovieClipUses:496 419 416 413 410 407 404 297 398Used by:537
Symbol 498 EditableTextUses:491Used by:499
Symbol 499 MovieClipUses:498 394 391 388 385 382 379 293 375Used by:537
Symbol 500 EditableTextUses:491Used by:512
Symbol 501 EditableTextUses:491Used by:512 514
Symbol 502 EditableTextUses:491Used by:512 514
Symbol 503 EditableTextUses:491Used by:512 514
Symbol 504 EditableTextUses:491Used by:512 514
Symbol 505 EditableTextUses:491Used by:512 514
Symbol 506 EditableTextUses:491Used by:512 514
Symbol 507 EditableTextUses:491Used by:512 514
Symbol 508 EditableTextUses:491Used by:512 514
Symbol 509 EditableTextUses:491Used by:512 514
Symbol 510 EditableTextUses:491Used by:512 514
Symbol 511 EditableTextUses:491Used by:512 514
Symbol 512 MovieClipUses:500 501 502 503 504 505 506 507 508 509 510 511Used by:537
Symbol 513 EditableTextUses:491Used by:514
Symbol 514 MovieClipUses:513 501 502 503 504 505 506 507 508 509 510 511Used by:537
Symbol 515 EditableTextUses:491Used by:516
Symbol 516 MovieClipUses:515 371 368 365 362 354 351 289 347Used by:537
Symbol 517 EditableTextUses:491Used by:518
Symbol 518 MovieClipUses:517 342 338 335 332 328 325 322 284Used by:537
Symbol 519 GraphicUsed by:520
Symbol 520 MovieClipUses:519Used by:536
Symbol 521 TextUses:491Used by:522
Symbol 522 MovieClipUses:521Used by:536
Symbol 523 GraphicUsed by:524
Symbol 524 MovieClipUses:523Used by:536
Symbol 525 GraphicUsed by:526
Symbol 526 MovieClipUses:525Used by:536
Symbol 527 GraphicUsed by:528
Symbol 528 MovieClipUses:527Used by:529
Symbol 529 MovieClipUses:528Used by:536
Symbol 530 GraphicUsed by:531
Symbol 531 MovieClipUses:530Used by:536
Symbol 532 GraphicUsed by:533
Symbol 533 MovieClipUses:532Used by:536
Symbol 534 GraphicUsed by:535
Symbol 535 MovieClipUses:534Used by:536
Symbol 536 MovieClipUses:520 522 487 191 484 524 481 526 478 529 475 531 472 533 306 309 468 535Used by:537
Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel]Uses:495 497 499 512 514 516 518 536Used by:589
Symbol 538 GraphicUsed by:542 550
Symbol 539 GraphicUsed by:542
Symbol 540 GraphicUsed by:542
Symbol 541 GraphicUsed by:542
Symbol 542 ButtonUses:538 539 540 541Used by:575
Symbol 543 GraphicUsed by:546
Symbol 544 GraphicUsed by:546
Symbol 545 GraphicUsed by:546
Symbol 546 ButtonUses:543 544 545Used by:575
Symbol 547 GraphicUsed by:550
Symbol 548 GraphicUsed by:550
Symbol 549 GraphicUsed by:550
Symbol 550 ButtonUses:538 547 548 549Used by:575
Symbol 551 GraphicUsed by:563 574
Symbol 552 GraphicUsed by:555 574
Symbol 553 GraphicUsed by:554 574
Symbol 554 MovieClipUses:553Used by:555
Symbol 555 MovieClipUses:552 554Used by:563
Symbol 556 GraphicUsed by:563 574
Symbol 557 GraphicUsed by:558 574
Symbol 558 MovieClipUses:557Used by:563
Symbol 559 GraphicUsed by:560 574
Symbol 560 MovieClipUses:559Used by:563
Symbol 561 GraphicUsed by:562 574
Symbol 562 MovieClipUses:561Used by:563
Symbol 563 MovieClipUses:551 555 556 558 560 562Used by:572
Symbol 564 GraphicUsed by:565 574
Symbol 565 MovieClipUses:564Used by:569
Symbol 566 GraphicUsed by:569 574
Symbol 567 GraphicUsed by:568 574
Symbol 568 MovieClipUses:567Used by:569
Symbol 569 MovieClipUses:565 566 568Used by:572
Symbol 570 GraphicUsed by:571 574
Symbol 571 MovieClipUses:570Used by:572
Symbol 572 MovieClipUses:563 569 571 53Used by:574
Symbol 573 GraphicUsed by:574
Symbol 574 ButtonUses:572 551 552 553 556 557 559 561 564 566 567 570 573Used by:575
Symbol 575 MovieClip {McControlPanel} [McControlPanel]Uses:542 546 550 574Used by:589
Symbol 576 GraphicUsed by:577 578
Symbol 577 MovieClipUses:576 225Used by:578 579
Symbol 578 ButtonUses:577 576 224Used by:579
Symbol 579 MovieClipUses:578 577Used by:588
Symbol 580 GraphicUsed by:581 582
Symbol 581 MovieClipUses:580Used by:582
Symbol 582 ButtonUses:581 580Used by:583
Symbol 583 MovieClipUses:582Used by:588
Symbol 584 GraphicUsed by:585 586
Symbol 585 MovieClipUses:584 225Used by:586 587
Symbol 586 ButtonUses:585 584 224Used by:587
Symbol 587 MovieClipUses:586 585Used by:588
Symbol 588 MovieClipUses:579 583 587Used by:589
Symbol 589 MovieClip {assets.scene.McScene} [assets.scene.McScene]Uses:277 319 490 537 575 588
Symbol 590 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
"mcPart4"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 495 MovieClip
"mcPart5"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 497 MovieClip
"mcPart6"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 499 MovieClip
"mcPart2"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 512 MovieClip
"mcPart3"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 514 MovieClip
"mcPart2"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 512 MovieClip
"mcPart3"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 514 MovieClip
"mcPart2"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 512 MovieClip
"mcPart3"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 514 MovieClip
"mcPart2"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 512 MovieClip
"mcPart3"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 514 MovieClip
"mcPart7"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 516 MovieClip
"mcPart8"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 518 MovieClip
"mcPart1"Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel] Frame 1Symbol 536 MovieClip
"btnBack"Symbol 575 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 542 Button
"btnPhoto"Symbol 575 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 546 Button
"btnReset"Symbol 575 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 550 Button
"btnLogo"Symbol 575 MovieClip {McControlPanel} [McControlPanel] Frame 1Symbol 574 Button
"mcBackground"Symbol 589 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 277 MovieClip
"mcCatButtons"Symbol 589 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 319 MovieClip
"mcCatPanels"Symbol 589 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 490 MovieClip
"mcModel"Symbol 589 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 537 MovieClip {assets.scene.McModel} [assets.scene.McModel]
"mcControlPanel"Symbol 589 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 575 MovieClip {McControlPanel} [McControlPanel]
"mcBgButtons"Symbol 589 MovieClip {assets.scene.McScene} [assets.scene.McScene] Frame 1Symbol 588 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 1462 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 195 as "assets.McIntro"
ExportAssets (56)Timeline Frame 2Symbol 589 as "assets.scene.McScene"
ExportAssets (56)Timeline Frame 2Symbol 575 as "McControlPanel"
ExportAssets (56)Timeline Frame 2Symbol 537 as "assets.scene.McModel"
EnableDebugger2 (64)Timeline Frame 131 bytes "u.$1$8k$9rpIOGlp.15XmmoubrdxD1."
DebugMX1 (63)Timeline Frame 1
SerialNumber (41)Timeline Frame 1

Labels

"Main"Frame 1
"start"Frame 2




http://swfchan.com/23/110246/info.shtml
Created: 13/3 -2019 22:12:03 Last modified: 13/3 -2019 22:12:03 Server time: 06/05 -2024 18:03:50