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

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

a-kiss-in-melrose.swf

This is the info page for
Flash #119524

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


Text
Play More
Dressup Games

Free Games For
Your Website

send a  screenshot?

ActionScript [AS3]

Section 1
//JSON (com.adobe.serialization.json.JSON) package com.adobe.serialization.json { public class JSON { public static function decode(_arg1:String){ var _local2:JSONDecoder = new JSONDecoder(_arg1); return (_local2.getValue()); } public static function encode(_arg1:Object):String{ var _local2:JSONEncoder = new JSONEncoder(_arg1); return (_local2.getString()); } } }//package com.adobe.serialization.json
Section 2
//JSONDecoder (com.adobe.serialization.json.JSONDecoder) package com.adobe.serialization.json { public class JSONDecoder { private var value; private var tokenizer:JSONTokenizer; private var token:JSONToken; public function JSONDecoder(_arg1:String){ this.tokenizer = new JSONTokenizer(_arg1); this.nextToken(); this.value = this.parseValue(); } private function parseObject():Object{ var _local2:String; var _local1:Object = new Object(); this.nextToken(); if (this.token.type == JSONTokenType.RIGHT_BRACE){ return (_local1); }; while (true) { if (this.token.type == JSONTokenType.STRING){ _local2 = String(this.token.value); this.nextToken(); if (this.token.type == JSONTokenType.COLON){ this.nextToken(); _local1[_local2] = this.parseValue(); this.nextToken(); if (this.token.type == JSONTokenType.RIGHT_BRACE){ return (_local1); }; if (this.token.type == JSONTokenType.COMMA){ this.nextToken(); } else { this.tokenizer.parseError(("Expecting } or , but found " + this.token.value)); }; } else { this.tokenizer.parseError(("Expecting : but found " + this.token.value)); }; } else { this.tokenizer.parseError(("Expecting string but found " + this.token.value)); }; }; return (null); } private function parseValue():Object{ if (this.token == null){ this.tokenizer.parseError("Unexpected end of input"); }; switch (this.token.type){ case JSONTokenType.LEFT_BRACE: return (this.parseObject()); case JSONTokenType.LEFT_BRACKET: return (this.parseArray()); case JSONTokenType.STRING: case JSONTokenType.NUMBER: case JSONTokenType.TRUE: case JSONTokenType.FALSE: case JSONTokenType.NULL: return (this.token.value); default: this.tokenizer.parseError(("Unexpected " + this.token.value)); }; return (null); } private function nextToken():JSONToken{ return ((this.token = this.tokenizer.getNextToken())); } public function getValue(){ return (this.value); } private function parseArray():Array{ var _local1:Array = new Array(); this.nextToken(); if (this.token.type == JSONTokenType.RIGHT_BRACKET){ return (_local1); }; while (true) { _local1.push(this.parseValue()); this.nextToken(); if (this.token.type == JSONTokenType.RIGHT_BRACKET){ return (_local1); }; if (this.token.type == JSONTokenType.COMMA){ this.nextToken(); } else { this.tokenizer.parseError(("Expecting ] or , but found " + this.token.value)); }; }; return (null); } } }//package com.adobe.serialization.json
Section 3
//JSONEncoder (com.adobe.serialization.json.JSONEncoder) package com.adobe.serialization.json { import flash.utils.*; public class JSONEncoder { private var jsonString:String; public function JSONEncoder(_arg1){ this.jsonString = this.convertToString(_arg1); } private function escapeString(_arg1:String):String{ var _local3:String; var _local6:String; var _local7:String; var _local2 = ""; var _local4:Number = _arg1.length; var _local5:int; while (_local5 < _local4) { _local3 = _arg1.charAt(_local5); switch (_local3){ case "\"": _local2 = (_local2 + "\\\""); break; case "\\": _local2 = (_local2 + "\\\\"); break; case "\b": _local2 = (_local2 + "\\b"); break; case "\f": _local2 = (_local2 + "\\f"); break; case "\n": _local2 = (_local2 + "\\n"); break; case "\r": _local2 = (_local2 + "\\r"); break; case "\t": _local2 = (_local2 + "\\t"); break; default: if (_local3 < " "){ _local6 = _local3.charCodeAt(0).toString(16); _local7 = ((_local6.length == 2)) ? "00" : "000"; _local2 = (_local2 + (("\\u" + _local7) + _local6)); } else { _local2 = (_local2 + _local3); }; }; _local5++; }; return ((("\"" + _local2) + "\"")); } private function arrayToString(_arg1:Array):String{ var _local2 = ""; var _local3:int; while (_local3 < _arg1.length) { if (_local2.length > 0){ _local2 = (_local2 + ","); }; _local2 = (_local2 + this.convertToString(_arg1[_local3])); _local3++; }; return ((("[" + _local2) + "]")); } public function getString():String{ return (this.jsonString); } private function objectToString(_arg1:Object):String{ var value:Object; var key:String; var v:XML; var o = _arg1; var s = ""; var classInfo:XML = describeType(o); if (classInfo.@name.toString() == "Object"){ for (key in o) { value = o[key]; if ((value is Function)){ } else { if (s.length > 0){ s = (s + ","); }; s = (s + ((this.escapeString(key) + ":") + this.convertToString(value))); }; }; } else { for each (v in classInfo..*.(((name() == "variable")) || ((name() == "accessor")))) { if (s.length > 0){ s = (s + ","); }; s = (s + ((this.escapeString(v.@name.toString()) + ":") + this.convertToString(o[v.@name]))); }; }; return ((("{" + s) + "}")); } private function convertToString(_arg1):String{ if ((_arg1 is String)){ return (this.escapeString((_arg1 as String))); }; if ((_arg1 is Number)){ return ((isFinite((_arg1 as Number))) ? _arg1.toString() : "null"); } else { if ((_arg1 is Boolean)){ return ((_arg1) ? "true" : "false"); } else { if ((_arg1 is Array)){ return (this.arrayToString((_arg1 as Array))); }; if ((((_arg1 is Object)) && (!((_arg1 == null))))){ return (this.objectToString(_arg1)); }; }; }; return ("null"); } } }//package com.adobe.serialization.json
Section 4
//JSONParseError (com.adobe.serialization.json.JSONParseError) package com.adobe.serialization.json { public class JSONParseError extends Error { private var _location:int; private var _text:String; public function JSONParseError(_arg1:String="", _arg2:int=0, _arg3:String=""){ super(_arg1); name = "JSONParseError"; this._location = _arg2; this._text = _arg3; } public function get location():int{ return (this._location); } public function get text():String{ return (this._text); } } }//package com.adobe.serialization.json
Section 5
//JSONToken (com.adobe.serialization.json.JSONToken) package com.adobe.serialization.json { public class JSONToken { private var _value:Object; private var _type:int; public function JSONToken(_arg1:int=-1, _arg2:Object=null){ this._type = _arg1; this._value = _arg2; } public function get value():Object{ return (this._value); } public function get type():int{ return (this._type); } public function set type(_arg1:int):void{ this._type = _arg1; } public function set value(_arg1:Object):void{ this._value = _arg1; } } }//package com.adobe.serialization.json
Section 6
//JSONTokenizer (com.adobe.serialization.json.JSONTokenizer) package com.adobe.serialization.json { public class JSONTokenizer { private var loc:int; private var ch:String; private var obj:Object; private var jsonString:String; public function JSONTokenizer(_arg1:String){ this.jsonString = _arg1; this.loc = 0; this.nextChar(); } private function skipComments():void{ if (this.ch == "/"){ this.nextChar(); switch (this.ch){ case "/": do { this.nextChar(); } while (((!((this.ch == "\n"))) && (!((this.ch == ""))))); this.nextChar(); break; case "*": this.nextChar(); while (true) { if (this.ch == "*"){ this.nextChar(); if (this.ch == "/"){ this.nextChar(); break; }; } else { this.nextChar(); }; if (this.ch == ""){ this.parseError("Multi-line comment not closed"); }; }; break; default: this.parseError((("Unexpected " + this.ch) + " encountered (expecting '/' or '*' )")); }; }; } private function isDigit(_arg1:String):Boolean{ return ((((_arg1 >= "0")) && ((_arg1 <= "9")))); } private function readString():JSONToken{ var _local3:String; var _local4:int; var _local1:JSONToken = new JSONToken(); _local1.type = JSONTokenType.STRING; var _local2 = ""; this.nextChar(); while (((!((this.ch == "\""))) && (!((this.ch == ""))))) { if (this.ch == "\\"){ this.nextChar(); switch (this.ch){ case "\"": _local2 = (_local2 + "\""); break; case "/": _local2 = (_local2 + "/"); break; case "\\": _local2 = (_local2 + "\\"); break; case "b": _local2 = (_local2 + "\b"); break; case "f": _local2 = (_local2 + "\f"); break; case "n": _local2 = (_local2 + "\n"); break; case "r": _local2 = (_local2 + "\r"); break; case "t": _local2 = (_local2 + "\t"); break; case "u": _local3 = ""; _local4 = 0; while (_local4 < 4) { if (!this.isHexDigit(this.nextChar())){ this.parseError((" Excepted a hex digit, but found: " + this.ch)); }; _local3 = (_local3 + this.ch); _local4++; }; _local2 = (_local2 + String.fromCharCode(parseInt(_local3, 16))); break; default: _local2 = (_local2 + ("\\" + this.ch)); }; } else { _local2 = (_local2 + this.ch); }; this.nextChar(); }; if (this.ch == ""){ this.parseError("Unterminated string literal"); }; this.nextChar(); _local1.value = _local2; return (_local1); } private function nextChar():String{ return ((this.ch = this.jsonString.charAt(this.loc++))); } public function getNextToken():JSONToken{ var _local2:String; var _local3:String; var _local4:String; var _local1:JSONToken = new JSONToken(); this.skipIgnored(); switch (this.ch){ case "{": _local1.type = JSONTokenType.LEFT_BRACE; _local1.value = "{"; this.nextChar(); break; case "}": _local1.type = JSONTokenType.RIGHT_BRACE; _local1.value = "}"; this.nextChar(); break; case "[": _local1.type = JSONTokenType.LEFT_BRACKET; _local1.value = "["; this.nextChar(); break; case "]": _local1.type = JSONTokenType.RIGHT_BRACKET; _local1.value = "]"; this.nextChar(); break; case ",": _local1.type = JSONTokenType.COMMA; _local1.value = ","; this.nextChar(); break; case ":": _local1.type = JSONTokenType.COLON; _local1.value = ":"; this.nextChar(); break; case "t": _local2 = ((("t" + this.nextChar()) + this.nextChar()) + this.nextChar()); if (_local2 == "true"){ _local1.type = JSONTokenType.TRUE; _local1.value = true; this.nextChar(); } else { this.parseError(("Expecting 'true' but found " + _local2)); }; break; case "f": _local3 = (((("f" + this.nextChar()) + this.nextChar()) + this.nextChar()) + this.nextChar()); if (_local3 == "false"){ _local1.type = JSONTokenType.FALSE; _local1.value = false; this.nextChar(); } else { this.parseError(("Expecting 'false' but found " + _local3)); }; break; case "n": _local4 = ((("n" + this.nextChar()) + this.nextChar()) + this.nextChar()); if (_local4 == "null"){ _local1.type = JSONTokenType.NULL; _local1.value = null; this.nextChar(); } else { this.parseError(("Expecting 'null' but found " + _local4)); }; break; case "\"": _local1 = this.readString(); break; default: if (((this.isDigit(this.ch)) || ((this.ch == "-")))){ _local1 = this.readNumber(); } else { if (this.ch == ""){ return (null); }; this.parseError((("Unexpected " + this.ch) + " encountered")); }; }; return (_local1); } private function skipWhite():void{ while (this.isWhiteSpace(this.ch)) { this.nextChar(); }; } public function parseError(_arg1:String):void{ throw (new JSONParseError(_arg1, this.loc, this.jsonString)); } private function isWhiteSpace(_arg1:String):Boolean{ return ((((((((_arg1 == " ")) || ((_arg1 == "\t")))) || ((_arg1 == "\n")))) || ((_arg1 == "\r")))); } private function skipIgnored():void{ var _local1:int; do { _local1 = this.loc; this.skipWhite(); this.skipComments(); } while (_local1 != this.loc); } private function isHexDigit(_arg1:String):Boolean{ var _local2:String = _arg1.toUpperCase(); return (((this.isDigit(_arg1)) || ((((_local2 >= "A")) && ((_local2 <= "F")))))); } private function readNumber():JSONToken{ var _local1:JSONToken = new JSONToken(); _local1.type = JSONTokenType.NUMBER; var _local2 = ""; if (this.ch == "-"){ _local2 = (_local2 + "-"); this.nextChar(); }; if (!this.isDigit(this.ch)){ this.parseError("Expecting a digit"); }; if (this.ch == "0"){ _local2 = (_local2 + this.ch); this.nextChar(); if (this.isDigit(this.ch)){ this.parseError("A digit cannot immediately follow 0"); }; } else { while (this.isDigit(this.ch)) { _local2 = (_local2 + this.ch); this.nextChar(); }; }; if (this.ch == "."){ _local2 = (_local2 + "."); this.nextChar(); if (!this.isDigit(this.ch)){ this.parseError("Expecting a digit"); }; while (this.isDigit(this.ch)) { _local2 = (_local2 + this.ch); this.nextChar(); }; }; if ((((this.ch == "e")) || ((this.ch == "E")))){ _local2 = (_local2 + "e"); this.nextChar(); if ((((this.ch == "+")) || ((this.ch == "-")))){ _local2 = (_local2 + this.ch); this.nextChar(); }; if (!this.isDigit(this.ch)){ this.parseError("Scientific notation number needs exponent value"); }; while (this.isDigit(this.ch)) { _local2 = (_local2 + this.ch); this.nextChar(); }; }; var _local3:Number = Number(_local2); if (((isFinite(_local3)) && (!(isNaN(_local3))))){ _local1.value = _local3; return (_local1); }; this.parseError((("Number " + _local3) + " is not valid!")); return (null); } } }//package com.adobe.serialization.json
Section 7
//JSONTokenType (com.adobe.serialization.json.JSONTokenType) package com.adobe.serialization.json { public class JSONTokenType { public static const NUMBER:int = 11; public static const FALSE:int = 8; public static const RIGHT_BRACKET:int = 4; public static const NULL:int = 9; public static const TRUE:int = 7; public static const RIGHT_BRACE:int = 2; public static const UNKNOWN:int = -1; public static const COMMA:int = 0; public static const LEFT_BRACKET:int = 3; public static const STRING:int = 10; public static const LEFT_BRACE:int = 1; public static const COLON:int = 6; } }//package com.adobe.serialization.json
Section 8
//APIEvent (com.girlgames.dressup.api.APIEvent) package com.girlgames.dressup.api { import flash.events.*; public class APIEvent extends Event { public var actionType:String; public function APIEvent(_arg1:String, _arg2:String){ this.actionType = _arg2; super(_arg1); } } }//package com.girlgames.dressup.api
Section 9
//ApiUI (com.girlgames.dressup.api.ApiUI) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; public class ApiUI { private var stateSaver:StateSaver; private var signupMessage:SignUpMessageMc; private var messageWin:ErrorMessageMc; private var selectScreen:SelectScreenShotMc; private var placement:Object; private var saveBtn:MButton; private var selectSreenWin:SelectScreenWin; private var game:DressupGame; private var content:ApiMovieClip; public function ApiUI(_arg1:Stage, _arg2:DressupGame, _arg3:StateSaver, _arg4:Object=null, _arg5:MovieClip=null){ MousePointer.init(_arg1); this.stateSaver = _arg3; this.placement = _arg4; this.game = _arg2; if (_arg5){ this.content = (_arg5 as ApiMovieClip); } else { this.content = new ApiMovieClip(); this.game.addChild(this.content); }; this.saveBtn = new MButton(this.content.saveBtn); this.saveBtn.addActionListener(this.onSave1); if (!this.content.stage){ this.content.addEventListener(Event.ADDED_TO_STAGE, this.onUIAdedToStage); } else { this.content.stage.addEventListener(MouseEvent.MOUSE_DOWN, this.onStageMouseDown); }; this.messageWin = new ErrorMessageMc(); this.messageWin.addEventListener(MouseEvent.MOUSE_DOWN, this.blockMouse); this.messageWin.yesBtn.addEventListener(MouseEvent.CLICK, this.onStageMouseDown); this.signupMessage = new SignUpMessageMc(); this.signupMessage.addEventListener(MouseEvent.MOUSE_DOWN, this.blockMouse); this.signupMessage.noBtn.addEventListener(MouseEvent.CLICK, this.onStageMouseDown); this.signupMessage.yesBtn.addEventListener(MouseEvent.CLICK, this.onSignUP); this.selectScreen = new SelectScreenShotMc(); this.selectScreen.addEventListener(MouseEvent.MOUSE_DOWN, this.blockMouse); this.selectScreen.noBtn.addEventListener(MouseEvent.CLICK, this.onScreenNo); this.selectScreen.yesBtn.addEventListener(MouseEvent.CLICK, this.onScreenYes); _arg2.addEventListener(DressupGame.EDIT_EVENT, this.onEdit); this.stateSaver.addEventListener(StateSaver.ACTION_COMPLTE, this.onActionComplete); this.selectSreenWin = new SelectScreenWin(this.game); this.selectSreenWin.saveBtn.addActionListener(this.onSave); this.selectSreenWin.visible = false; this.saveBtn.enabled = false; if (this.placement){ if (this.placement.pl){ switch (this.placement.pl){ case "tl": this.content.x = 0; this.content.y = 0; break; case "tr": this.content.x = (this.game.WIDTH - this.content.width); this.content.y = 0; break; case "bl": this.content.x = 0; this.content.y = (this.game.HEIGHT - this.content.height); break; case "br": this.content.x = (this.game.WIDTH - this.content.width); this.content.y = (this.game.HEIGHT - this.content.height); break; default: throw (new Error("bad placement format, see docs!!!")); }; } else { if (((parseFloat(this.placement.x)) && (parseFloat(this.placement.y)))){ this.content.x = parseFloat(this.placement.x); this.content.y = parseFloat(this.placement.y); } else { throw (new Error("bad placement format, see docs!!!")); }; }; } else { this.content.x = (this.game.WIDTH - this.content.width); this.content.y = (this.game.HEIGHT - this.content.height); }; } private function onSave(_arg1:Event=null):void{ this.content.visible = true; this.selectSreenWin.visible = false; if (this.stateSaver.mode != StateSaver.MODE_USER){ this.showSignupMessage(); } else { this.saveBtn.enabled = false; this.stateSaver.sendCommand(StateSaver.STORE_DATA); }; } private function onEdit(_arg1:Event):void{ if (!this.saveBtn.enabled){ this.saveBtn.enabled = true; }; } private function onScreenNo(_arg1:MouseEvent):void{ this.selectScreen.visible = false; this.stateSaver.screenShot = null; this.onSave(); } private function onActionComplete(_arg1:APIEvent):void{ this.stateSaver.console.print(_arg1.actionType); var _local2 = ""; if (this.stateSaver.error == "1"){ if (!this.stateSaver.errorDescription){ _local2 = this.stateSaver.dafaultErrorMessage; } else { _local2 = this.stateSaver.errorDescription; }; this.showMessage(_local2); return; }; if (this.game.edited){ this.saveBtn.enabled = true; }; _local2 = this.stateSaver.successDescription; this.stateSaver.console.print(_local2); if (_local2){ this.showMessage(_local2); }; } private function showMessage(_arg1:String):void{ var _local2:Stage = this.content.stage; _local2.addChild(this.messageWin); this.messageWin.x = ((_local2.stageWidth - this.messageWin.width) / 2); this.messageWin.y = ((_local2.stageHeight - this.messageWin.height) / 2); this.messageWin.visible = true; this.messageWin.msgtxt.text = _arg1; } private function showSreenMsg():void{ var _local1:Stage = this.content.stage; _local1.addChild(this.selectScreen); this.selectScreen.x = ((_local1.stageWidth - this.selectScreen.width) / 2); this.selectScreen.y = ((_local1.stageHeight - this.selectScreen.height) / 2); this.selectScreen.visible = true; } private function blockMouse(_arg1:MouseEvent):void{ _arg1.stopPropagation(); _arg1.stopImmediatePropagation(); } private function showSignupMessage():void{ var _local1:Stage = this.content.stage; _local1.addChild(this.signupMessage); this.signupMessage.x = ((_local1.stageWidth - this.signupMessage.width) / 2); this.signupMessage.y = ((_local1.stageHeight - this.signupMessage.height) / 2); this.signupMessage.visible = true; } private function showSelectionWindow():void{ this.selectScreen.visible = false; var _local1:Stage = this.content.stage; _local1.addChild(this.selectSreenWin); this.selectSreenWin.visible = true; this.content.visible = false; } private function onStageMouseDown(_arg1:MouseEvent):void{ if (this.selectSreenWin.visible){ return; }; if (this.messageWin.visible){ this.messageWin.visible = false; }; if (this.signupMessage.visible){ this.signupMessage.visible = false; }; if (this.selectScreen){ this.selectScreen.visible = false; }; this.selectSreenWin.visible = false; } private function onUIAdedToStage(_arg1:Event):void{ this.content.removeEventListener(Event.ADDED_TO_STAGE, this.onUIAdedToStage); } private function onSignUP(_arg1:MouseEvent):void{ this.stateSaver.navigateSignUp(); } private function onSave1(_arg1:Event):void{ this.showSreenMsg(); } private function onScreenYes(_arg1:MouseEvent):void{ this.showSelectionWindow(); } } }//package com.girlgames.dressup.api
Section 10
//EventSender (com.girlgames.dressup.api.EventSender) package com.girlgames.dressup.api { public class EventSender { private var _listeners:Array; private var _type:Class; public function EventSender(_arg1:Class=null){ this._listeners = []; super(); this._type = _arg1; } public function sendEvent(_arg1:Object=null):void{ var _local3:Function; if ((((this._type == null)) || ((_arg1 is this._type)))){ if (arguments.length == 0){ for each (_local3 in this._listeners) { _local3(); }; } else { for each (_local3 in this._listeners) { _local3(_arg1); }; }; } else { throw (new TypeError("The eventObject has incorrect event type!")); }; } public function addListener(_arg1:Function):void{ if (!this.hasListener(_arg1)){ this._listeners.push(_arg1); } else { throw (new Error("List already contain such listener")); }; } public function setListener(_arg1:Function):void{ this._listeners = [_arg1]; } public function removeListener(_arg1:Function):void{ if (this.hasListener(_arg1)){ this._listeners.splice(this._listeners.indexOf(_arg1), 1); } else { throw (new Error("List doesn't contain such listener")); }; } public function removeListeners():void{ this._listeners = []; } public function hasListeners():Boolean{ return ((this._listeners.length > 0)); } public function hasListener(_arg1:Function):Boolean{ return ((this._listeners.indexOf(_arg1) >= 0)); } } }//package com.girlgames.dressup.api
Section 11
//JPEGEncoder (com.girlgames.dressup.api.JPEGEncoder) package com.girlgames.dressup.api { import flash.display.*; import flash.utils.*; public class JPEGEncoder { private var fdtbl_UV:Array; private var std_ac_chrominance_values:Array; private var std_dc_chrominance_values:Array; private var ZigZag:Array; private var YDC_HT:Array; private var YAC_HT:Array; private var bytenew:int;// = 0 private var fdtbl_Y:Array; private var std_ac_chrominance_nrcodes:Array; private var DU:Array; private var std_ac_luminance_values:Array; private var std_dc_chrominance_nrcodes:Array; private var UVTable:Array; private var YDU:Array; private var UDU:Array; private var byteout:ByteArray; private var UVAC_HT:Array; private var UVDC_HT:Array; private var bytepos:int;// = 7 private var VDU:Array; private var std_ac_luminance_nrcodes:Array; private var std_dc_luminance_values:Array; private var YTable:Array; private var std_dc_luminance_nrcodes:Array; private var bitcode:Array; private var category:Array; public function JPEGEncoder(_arg1:Number=50):void{ this.ZigZag = [0, 1, 5, 6, 14, 15, 27, 28, 2, 4, 7, 13, 16, 26, 29, 42, 3, 8, 12, 17, 25, 30, 41, 43, 9, 11, 18, 24, 31, 40, 44, 53, 10, 19, 23, 32, 39, 45, 52, 54, 20, 22, 33, 38, 46, 51, 55, 60, 21, 34, 37, 47, 50, 56, 59, 61, 35, 36, 48, 49, 57, 58, 62, 63]; this.YTable = new Array(64); this.UVTable = new Array(64); this.fdtbl_Y = new Array(64); this.fdtbl_UV = new Array(64); this.std_dc_luminance_nrcodes = [0, 0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0]; this.std_dc_luminance_values = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; this.std_ac_luminance_nrcodes = [0, 0, 2, 1, 3, 3, 2, 4, 3, 5, 5, 4, 4, 0, 0, 1, 125]; this.std_ac_luminance_values = [1, 2, 3, 0, 4, 17, 5, 18, 33, 49, 65, 6, 19, 81, 97, 7, 34, 113, 20, 50, 129, 145, 161, 8, 35, 66, 177, 193, 21, 82, 209, 240, 36, 51, 98, 114, 130, 9, 10, 22, 23, 24, 25, 26, 37, 38, 39, 40, 41, 42, 52, 53, 54, 55, 56, 57, 58, 67, 68, 69, 70, 71, 72, 73, 74, 83, 84, 85, 86, 87, 88, 89, 90, 99, 100, 101, 102, 103, 104, 105, 106, 115, 116, 117, 118, 119, 120, 121, 122, 131, 132, 133, 134, 135, 136, 137, 138, 146, 147, 148, 149, 150, 151, 152, 153, 154, 162, 163, 164, 165, 166, 167, 168, 169, 170, 178, 179, 180, 181, 182, 183, 184, 185, 186, 194, 195, 196, 197, 198, 199, 200, 201, 202, 210, 211, 212, 213, 214, 215, 216, 217, 218, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250]; this.std_dc_chrominance_nrcodes = [0, 0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0]; this.std_dc_chrominance_values = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; this.std_ac_chrominance_nrcodes = [0, 0, 2, 1, 2, 4, 4, 3, 4, 7, 5, 4, 4, 0, 1, 2, 119]; this.std_ac_chrominance_values = [0, 1, 2, 3, 17, 4, 5, 33, 49, 6, 18, 65, 81, 7, 97, 113, 19, 34, 50, 129, 8, 20, 66, 145, 161, 177, 193, 9, 35, 51, 82, 240, 21, 98, 114, 209, 10, 22, 36, 52, 225, 37, 241, 23, 24, 25, 26, 38, 39, 40, 41, 42, 53, 54, 55, 56, 57, 58, 67, 68, 69, 70, 71, 72, 73, 74, 83, 84, 85, 86, 87, 88, 89, 90, 99, 100, 101, 102, 103, 104, 105, 106, 115, 116, 117, 118, 119, 120, 121, 122, 130, 131, 132, 133, 134, 135, 136, 137, 138, 146, 147, 148, 149, 150, 151, 152, 153, 154, 162, 163, 164, 165, 166, 167, 168, 169, 170, 178, 179, 180, 181, 182, 183, 184, 185, 186, 194, 195, 196, 197, 198, 199, 200, 201, 202, 210, 211, 212, 213, 214, 215, 216, 217, 218, 226, 227, 228, 229, 230, 231, 232, 233, 234, 242, 243, 244, 245, 246, 247, 248, 249, 250]; this.bitcode = new Array(0xFFFF); this.category = new Array(0xFFFF); this.DU = new Array(64); this.YDU = new Array(64); this.UDU = new Array(64); this.VDU = new Array(64); super(); if (_arg1 <= 0){ _arg1 = 1; }; if (_arg1 > 100){ _arg1 = 100; }; var _local2:int; if (_arg1 < 50){ _local2 = int((5000 / _arg1)); } else { _local2 = int((200 - (_arg1 * 2))); }; this.initHuffmanTbl(); this.initCategoryNumber(); this.initQuantTables(_local2); } private function initHuffmanTbl():void{ this.YDC_HT = this.computeHuffmanTbl(this.std_dc_luminance_nrcodes, this.std_dc_luminance_values); this.UVDC_HT = this.computeHuffmanTbl(this.std_dc_chrominance_nrcodes, this.std_dc_chrominance_values); this.YAC_HT = this.computeHuffmanTbl(this.std_ac_luminance_nrcodes, this.std_ac_luminance_values); this.UVAC_HT = this.computeHuffmanTbl(this.std_ac_chrominance_nrcodes, this.std_ac_chrominance_values); } private function RGB2YUV(_arg1:BitmapData, _arg2:int, _arg3:int):void{ var _local6:int; var _local7:uint; var _local8:Number; var _local9:Number; var _local10:Number; var _local4:int; var _local5:int; while (_local5 < 8) { _local6 = 0; while (_local6 < 8) { _local7 = _arg1.getPixel32((_arg2 + _local6), (_arg3 + _local5)); _local8 = Number(((_local7 >> 16) & 0xFF)); _local9 = Number(((_local7 >> 8) & 0xFF)); _local10 = Number((_local7 & 0xFF)); this.YDU[_local4] = ((((0.299 * _local8) + (0.587 * _local9)) + (0.114 * _local10)) - 128); this.UDU[_local4] = (((-0.16874 * _local8) + (-0.33126 * _local9)) + (0.5 * _local10)); this.VDU[_local4] = (((0.5 * _local8) + (-0.41869 * _local9)) + (-0.08131 * _local10)); _local4++; _local6++; }; _local5++; }; } private function writeBits(_arg1:BitString):void{ var _local2:int = _arg1.val; var _local3:int = (_arg1.len - 1); while (_local3 >= 0) { if ((_local2 & uint((1 << _local3)))){ this.bytenew = (this.bytenew | uint((1 << this.bytepos))); }; _local3--; this.bytepos--; if (this.bytepos < 0){ if (this.bytenew == 0xFF){ this.writeByte(0xFF); this.writeByte(0); } else { this.writeByte(this.bytenew); }; this.bytepos = 7; this.bytenew = 0; }; }; } private function writeWord(_arg1:int):void{ this.writeByte(((_arg1 >> 8) & 0xFF)); this.writeByte((_arg1 & 0xFF)); } private function writeByte(_arg1:int):void{ this.byteout.writeByte(_arg1); } private function writeDHT():void{ var _local1:int; this.writeWord(65476); this.writeWord(418); this.writeByte(0); _local1 = 0; while (_local1 < 16) { this.writeByte(this.std_dc_luminance_nrcodes[(_local1 + 1)]); _local1++; }; _local1 = 0; while (_local1 <= 11) { this.writeByte(this.std_dc_luminance_values[_local1]); _local1++; }; this.writeByte(16); _local1 = 0; while (_local1 < 16) { this.writeByte(this.std_ac_luminance_nrcodes[(_local1 + 1)]); _local1++; }; _local1 = 0; while (_local1 <= 161) { this.writeByte(this.std_ac_luminance_values[_local1]); _local1++; }; this.writeByte(1); _local1 = 0; while (_local1 < 16) { this.writeByte(this.std_dc_chrominance_nrcodes[(_local1 + 1)]); _local1++; }; _local1 = 0; while (_local1 <= 11) { this.writeByte(this.std_dc_chrominance_values[_local1]); _local1++; }; this.writeByte(17); _local1 = 0; while (_local1 < 16) { this.writeByte(this.std_ac_chrominance_nrcodes[(_local1 + 1)]); _local1++; }; _local1 = 0; while (_local1 <= 161) { this.writeByte(this.std_ac_chrominance_values[_local1]); _local1++; }; } public function encode(_arg1:BitmapData):ByteArray{ var _local6:int; var _local7:BitString; this.byteout = new ByteArray(); this.bytenew = 0; this.bytepos = 7; this.writeWord(65496); this.writeAPP0(); this.writeDQT(); this.writeSOF0(_arg1.width, _arg1.height); this.writeDHT(); this.writeSOS(); var _local2:Number = 0; var _local3:Number = 0; var _local4:Number = 0; this.bytenew = 0; this.bytepos = 7; var _local5:int; while (_local5 < _arg1.height) { _local6 = 0; while (_local6 < _arg1.width) { this.RGB2YUV(_arg1, _local6, _local5); _local2 = this.processDU(this.YDU, this.fdtbl_Y, _local2, this.YDC_HT, this.YAC_HT); _local3 = this.processDU(this.UDU, this.fdtbl_UV, _local3, this.UVDC_HT, this.UVAC_HT); _local4 = this.processDU(this.VDU, this.fdtbl_UV, _local4, this.UVDC_HT, this.UVAC_HT); _local6 = (_local6 + 8); }; _local5 = (_local5 + 8); }; if (this.bytepos >= 0){ _local7 = new BitString(); _local7.len = (this.bytepos + 1); _local7.val = ((1 << (this.bytepos + 1)) - 1); this.writeBits(_local7); }; this.writeWord(65497); return (this.byteout); } private function initCategoryNumber():void{ var _local3:int; var _local1 = 1; var _local2 = 2; var _local4 = 1; while (_local4 <= 15) { _local3 = _local1; while (_local3 < _local2) { this.category[(32767 + _local3)] = _local4; this.bitcode[(32767 + _local3)] = new BitString(); this.bitcode[(32767 + _local3)].len = _local4; this.bitcode[(32767 + _local3)].val = _local3; _local3++; }; _local3 = -((_local2 - 1)); while (_local3 <= -(_local1)) { this.category[(32767 + _local3)] = _local4; this.bitcode[(32767 + _local3)] = new BitString(); this.bitcode[(32767 + _local3)].len = _local4; this.bitcode[(32767 + _local3)].val = ((_local2 - 1) + _local3); _local3++; }; _local1 = (_local1 << 1); _local2 = (_local2 << 1); _local4++; }; } private function writeDQT():void{ var _local1:int; this.writeWord(65499); this.writeWord(132); this.writeByte(0); _local1 = 0; while (_local1 < 64) { this.writeByte(this.YTable[_local1]); _local1++; }; this.writeByte(1); _local1 = 0; while (_local1 < 64) { this.writeByte(this.UVTable[_local1]); _local1++; }; } private function writeAPP0():void{ this.writeWord(65504); this.writeWord(16); this.writeByte(74); this.writeByte(70); this.writeByte(73); this.writeByte(70); this.writeByte(0); this.writeByte(1); this.writeByte(1); this.writeByte(0); this.writeWord(1); this.writeWord(1); this.writeByte(0); this.writeByte(0); } private function writeSOS():void{ this.writeWord(65498); this.writeWord(12); this.writeByte(3); this.writeByte(1); this.writeByte(0); this.writeByte(2); this.writeByte(17); this.writeByte(3); this.writeByte(17); this.writeByte(0); this.writeByte(63); this.writeByte(0); } private function processDU(_arg1:Array, _arg2:Array, _arg3:Number, _arg4:Array, _arg5:Array):Number{ var _local8:int; var _local12:int; var _local13:int; var _local14:int; var _local6:BitString = _arg5[0]; var _local7:BitString = _arg5[240]; var _local9:Array = this.fDCTQuant(_arg1, _arg2); _local8 = 0; while (_local8 < 64) { this.DU[this.ZigZag[_local8]] = _local9[_local8]; _local8++; }; var _local10:int = (this.DU[0] - _arg3); _arg3 = this.DU[0]; if (_local10 == 0){ this.writeBits(_arg4[0]); } else { this.writeBits(_arg4[this.category[(32767 + _local10)]]); this.writeBits(this.bitcode[(32767 + _local10)]); }; var _local11 = 63; while ((((_local11 > 0)) && ((this.DU[_local11] == 0)))) { _local11--; }; if (_local11 == 0){ this.writeBits(_local6); return (_arg3); }; _local8 = 1; while (_local8 <= _local11) { _local12 = _local8; while ((((this.DU[_local8] == 0)) && ((_local8 <= _local11)))) { _local8++; }; _local13 = (_local8 - _local12); if (_local13 >= 16){ _local14 = 1; while (_local14 <= (_local13 / 16)) { this.writeBits(_local7); _local14++; }; _local13 = int((_local13 & 15)); }; this.writeBits(_arg5[((_local13 * 16) + this.category[(32767 + this.DU[_local8])])]); this.writeBits(this.bitcode[(32767 + this.DU[_local8])]); _local8++; }; if (_local11 != 63){ this.writeBits(_local6); }; return (_arg3); } private function initQuantTables(_arg1:int):void{ var _local2:int; var _local3:Number; var _local8:int; var _local4:Array = [16, 11, 10, 16, 24, 40, 51, 61, 12, 12, 14, 19, 26, 58, 60, 55, 14, 13, 16, 24, 40, 57, 69, 56, 14, 17, 22, 29, 51, 87, 80, 62, 18, 22, 37, 56, 68, 109, 103, 77, 24, 35, 55, 64, 81, 104, 113, 92, 49, 64, 78, 87, 103, 121, 120, 101, 72, 92, 95, 98, 112, 100, 103, 99]; _local2 = 0; while (_local2 < 64) { _local3 = Math.floor((((_local4[_local2] * _arg1) + 50) / 100)); if (_local3 < 1){ _local3 = 1; } else { if (_local3 > 0xFF){ _local3 = 0xFF; }; }; this.YTable[this.ZigZag[_local2]] = _local3; _local2++; }; var _local5:Array = [17, 18, 24, 47, 99, 99, 99, 99, 18, 21, 26, 66, 99, 99, 99, 99, 24, 26, 56, 99, 99, 99, 99, 99, 47, 66, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99]; _local2 = 0; while (_local2 < 64) { _local3 = Math.floor((((_local5[_local2] * _arg1) + 50) / 100)); if (_local3 < 1){ _local3 = 1; } else { if (_local3 > 0xFF){ _local3 = 0xFF; }; }; this.UVTable[this.ZigZag[_local2]] = _local3; _local2++; }; var _local6:Array = [1, 1.387039845, 1.306562965, 1.175875602, 1, 0.785694958, 0.5411961, 0.275899379]; _local2 = 0; var _local7:int; while (_local7 < 8) { _local8 = 0; while (_local8 < 8) { this.fdtbl_Y[_local2] = (1 / (((this.YTable[this.ZigZag[_local2]] * _local6[_local7]) * _local6[_local8]) * 8)); this.fdtbl_UV[_local2] = (1 / (((this.UVTable[this.ZigZag[_local2]] * _local6[_local7]) * _local6[_local8]) * 8)); _local2++; _local8++; }; _local7++; }; } private function writeSOF0(_arg1:int, _arg2:int):void{ this.writeWord(65472); this.writeWord(17); this.writeByte(8); this.writeWord(_arg2); this.writeWord(_arg1); this.writeByte(3); this.writeByte(1); this.writeByte(17); this.writeByte(0); this.writeByte(2); this.writeByte(17); this.writeByte(1); this.writeByte(3); this.writeByte(17); this.writeByte(1); } private function computeHuffmanTbl(_arg1:Array, _arg2:Array):Array{ var _local7:int; var _local3:int; var _local4:int; var _local5:Array = new Array(); var _local6 = 1; while (_local6 <= 16) { _local7 = 1; while (_local7 <= _arg1[_local6]) { _local5[_arg2[_local4]] = new BitString(); _local5[_arg2[_local4]].val = _local3; _local5[_arg2[_local4]].len = _local6; _local4++; _local3++; _local7++; }; _local3 = (_local3 * 2); _local6++; }; return (_local5); } private function fDCTQuant(_arg1:Array, _arg2:Array):Array{ var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Number; var _local9:Number; var _local10:Number; var _local11:Number; var _local12:Number; var _local13:Number; var _local14:Number; var _local15:Number; var _local16:Number; var _local17:Number; var _local18:Number; var _local19:Number; var _local20:Number; var _local21:Number; var _local22:int; var _local23:int; _local22 = 0; while (_local22 < 8) { _local3 = (_arg1[(_local23 + 0)] + _arg1[(_local23 + 7)]); _local10 = (_arg1[(_local23 + 0)] - _arg1[(_local23 + 7)]); _local4 = (_arg1[(_local23 + 1)] + _arg1[(_local23 + 6)]); _local9 = (_arg1[(_local23 + 1)] - _arg1[(_local23 + 6)]); _local5 = (_arg1[(_local23 + 2)] + _arg1[(_local23 + 5)]); _local8 = (_arg1[(_local23 + 2)] - _arg1[(_local23 + 5)]); _local6 = (_arg1[(_local23 + 3)] + _arg1[(_local23 + 4)]); _local7 = (_arg1[(_local23 + 3)] - _arg1[(_local23 + 4)]); _local11 = (_local3 + _local6); _local14 = (_local3 - _local6); _local12 = (_local4 + _local5); _local13 = (_local4 - _local5); _arg1[(_local23 + 0)] = (_local11 + _local12); _arg1[(_local23 + 4)] = (_local11 - _local12); _local15 = ((_local13 + _local14) * 0.707106781); _arg1[(_local23 + 2)] = (_local14 + _local15); _arg1[(_local23 + 6)] = (_local14 - _local15); _local11 = (_local7 + _local8); _local12 = (_local8 + _local9); _local13 = (_local9 + _local10); _local19 = ((_local11 - _local13) * 0.382683433); _local16 = ((0.5411961 * _local11) + _local19); _local18 = ((1.306562965 * _local13) + _local19); _local17 = (_local12 * 0.707106781); _local20 = (_local10 + _local17); _local21 = (_local10 - _local17); _arg1[(_local23 + 5)] = (_local21 + _local16); _arg1[(_local23 + 3)] = (_local21 - _local16); _arg1[(_local23 + 1)] = (_local20 + _local18); _arg1[(_local23 + 7)] = (_local20 - _local18); _local23 = (_local23 + 8); _local22++; }; _local23 = 0; _local22 = 0; while (_local22 < 8) { _local3 = (_arg1[(_local23 + 0)] + _arg1[(_local23 + 56)]); _local10 = (_arg1[(_local23 + 0)] - _arg1[(_local23 + 56)]); _local4 = (_arg1[(_local23 + 8)] + _arg1[(_local23 + 48)]); _local9 = (_arg1[(_local23 + 8)] - _arg1[(_local23 + 48)]); _local5 = (_arg1[(_local23 + 16)] + _arg1[(_local23 + 40)]); _local8 = (_arg1[(_local23 + 16)] - _arg1[(_local23 + 40)]); _local6 = (_arg1[(_local23 + 24)] + _arg1[(_local23 + 32)]); _local7 = (_arg1[(_local23 + 24)] - _arg1[(_local23 + 32)]); _local11 = (_local3 + _local6); _local14 = (_local3 - _local6); _local12 = (_local4 + _local5); _local13 = (_local4 - _local5); _arg1[(_local23 + 0)] = (_local11 + _local12); _arg1[(_local23 + 32)] = (_local11 - _local12); _local15 = ((_local13 + _local14) * 0.707106781); _arg1[(_local23 + 16)] = (_local14 + _local15); _arg1[(_local23 + 48)] = (_local14 - _local15); _local11 = (_local7 + _local8); _local12 = (_local8 + _local9); _local13 = (_local9 + _local10); _local19 = ((_local11 - _local13) * 0.382683433); _local16 = ((0.5411961 * _local11) + _local19); _local18 = ((1.306562965 * _local13) + _local19); _local17 = (_local12 * 0.707106781); _local20 = (_local10 + _local17); _local21 = (_local10 - _local17); _arg1[(_local23 + 40)] = (_local21 + _local16); _arg1[(_local23 + 24)] = (_local21 - _local16); _arg1[(_local23 + 8)] = (_local20 + _local18); _arg1[(_local23 + 56)] = (_local20 - _local18); _local23++; _local22++; }; _local22 = 0; while (_local22 < 64) { _arg1[_local22] = Math.round((_arg1[_local22] * _arg2[_local22])); _local22++; }; return (_arg1); } } }//package com.girlgames.dressup.api class BitString { public var val:int;// = 0 public var len:int;// = 0 private function BitString(){ } }
Section 12
//MButton (com.girlgames.dressup.api.MButton) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import flash.text.*; public class MButton extends Sprite { public var textF:TextField; private var _enabled:Boolean;// = true public var hint:String; private var actionFunc:Function;// = null public var textFormat:TextFormat; private var pressed:Boolean;// = false public var content:MovieClip; public static const ACTION:String = "action"; public function MButton(_arg1:MovieClip){ this.content = _arg1; this.content.parent.addChild(this); addChild(this.content); this.x = this.content.x; this.y = this.content.y; this.content.x = 0; this.content.y = 0; this.content.gotoAndStop(1); addEventListener(MouseEvent.MOUSE_DOWN, this.onMouseDown); addEventListener(MouseEvent.ROLL_OVER, this.onMouseOver); addEventListener(MouseEvent.ROLL_OUT, this.onMouseOut); addEventListener(MouseEvent.MOUSE_UP, this.onMouseUp); } public function get enabled():Boolean{ return (this._enabled); } public function set enabled(_arg1:Boolean):void{ this._enabled = _arg1; if (_arg1){ this.content.gotoAndStop(1); } else { this.content.gotoAndStop(4); }; } public function addActionListener(_arg1:Function):void{ addEventListener(MButton.ACTION, _arg1); } private function onMouseDown(_arg1:MouseEvent):void{ if (!this._enabled){ return; }; this.content.gotoAndStop(3); this.pressed = true; } private function onMouseUp(_arg1:MouseEvent):void{ if (!this._enabled){ return; }; if (hitTestPoint(stage.mouseX, stage.mouseY)){ this.content.gotoAndStop(2); if (this.pressed){ this.onMouseClick(); }; } else { this.content.gotoAndStop(1); }; this.pressed = false; } private function onMouseOut(_arg1:MouseEvent):void{ if (!this._enabled){ return; }; this.content.gotoAndStop(1); } private function onMouseClick(_arg1:MouseEvent=null):void{ if (!this._enabled){ return; }; dispatchEvent(new Event(MButton.ACTION)); } public function removeActionListener(_arg1:Function):void{ removeEventListener(MButton.ACTION, _arg1); } private function onMouseOver(_arg1:MouseEvent):void{ if (!this._enabled){ return; }; this.content.gotoAndStop(2); } public function setEnabled(_arg1:Boolean):void{ this._enabled = _arg1; if (_arg1){ this.content.gotoAndStop(1); } else { this.content.gotoAndStop(4); }; } } }//package com.girlgames.dressup.api
Section 13
//MultipartFormDataEncoder (com.girlgames.dressup.api.MultipartFormDataEncoder) package com.girlgames.dressup.api { import flash.utils.*; public class MultipartFormDataEncoder { private var finished:Boolean; private var _boundary:String; private var _postData:ByteArray; public function MultipartFormDataEncoder(){ this._postData = new ByteArray(); this._postData.endian = Endian.BIG_ENDIAN; this._boundary = ""; var _local1:int; while (_local1 < 32) { this._boundary = (this._boundary + String.fromCharCode(int((97 + (Math.random() * 25))))); _local1++; }; } private function writeDoubleDash():void{ this._postData.writeShort(0x2D2D); } public function addParameter(_arg1:String, _arg2:Object):void{ if (_arg2 == null){ _arg2 = ""; }; this.writeBoundary(); this.writeLinebreak(); this.writeString((("Content-Disposition: form-data; name=\"" + _arg1) + "\"")); this.writeLinebreak(); this.writeLinebreak(); this._postData.writeUTFBytes(_arg2.toString()); this.writeLinebreak(); } public function get data():ByteArray{ if (!this.finished){ this.finish(); }; return (this._postData); } public function addParameters(_arg1:Object):void{ var _local2:String; for (_local2 in _arg1) { this.addParameter(_local2, _arg1[_local2]); }; } private function writeLinebreak():void{ this._postData.writeShort(3338); } private function writeString(_arg1:String):void{ var _local2:int; while (_local2 < _arg1.length) { this._postData.writeByte(_arg1.charCodeAt(_local2)); _local2++; }; } public function get boundary():String{ return (this._boundary); } private function writeBoundary():void{ var _local1:int = this._boundary.length; this.writeDoubleDash(); var _local2:int; while (_local2 < _local1) { this._postData.writeByte(this._boundary.charCodeAt(_local2)); _local2++; }; } private function finish():void{ this.writeBoundary(); this.writeDoubleDash(); } public function addFile(_arg1:String, _arg2:String, _arg3:ByteArray, _arg4:String="application/octet-stream"):void{ this.writeBoundary(); this.writeLinebreak(); this.writeString((("Content-Disposition: form-data; name=\"" + _arg1) + "\"; filename=\"")); this._postData.writeUTFBytes(_arg2); this.writeString("\""); this.writeLinebreak(); this.writeString(("Content-Type: " + _arg4)); this.writeLinebreak(); this.writeLinebreak(); this._postData.writeBytes(_arg3); this.writeLinebreak(); } } }//package com.girlgames.dressup.api
Section 14
//SelectionBox (com.girlgames.dressup.api.SelectionBox) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; import flash.geom.*; public class SelectionBox { private var _content:McSelection; private var maxWidth:Number; private var minW:Number;// = 4 private var pointerLocked:Boolean;// = false private var _moveEvent:EventSender; public var ratio:Number; private var _bounds:Rectangle; private var isMove:Boolean;// = false private var _startMoveEvent:EventSender; private var maxHeight:Number; private var boxBg:Sprite; public var movePointer:McMovePointer; private var minH:Number;// = 4 private var _finishMoveEvent:EventSender; private var _markers:Array; public var screenRect:Rectangle; public static const MARGIN:int = 4; public static const MIN_SIZE:int = 2; public function SelectionBox(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number){ this._content = new McSelection(); this._markers = []; this._bounds = new Rectangle(0, 0, 0, 0); this._moveEvent = new EventSender(); this._startMoveEvent = new EventSender(); this._finishMoveEvent = new EventSender(); super(); this.maxWidth = _arg1; this.maxHeight = _arg2; this.minW = _arg3; this.minH = _arg4; this.movePointer = new McMovePointer(); this.createResizeMarker(this._content.mcBottomLeft, 1, 0, 1, 1, -45); this.createResizeMarker(this._content.mcBottomRight, 0, 0, 1, 1, 45); this.createResizeMarker(this._content.mcTopLeft, 1, 1, 1, 1, 45); this.createResizeMarker(this._content.mcTopRight, 0, 1, 1, 1, -45); this.boxBg = new Sprite(); this._content.addChild(this.boxBg); this.boxBg.x = MARGIN; this.boxBg.y = MARGIN; this.boxBg.addEventListener(MouseEvent.MOUSE_DOWN, this.onBgMouseDown); this.boxBg.addEventListener(MouseEvent.MOUSE_UP, this.onBgMouseUP); this.boxBg.addEventListener(MouseEvent.ROLL_OVER, this.onMouseRollOver); this.boxBg.addEventListener(MouseEvent.ROLL_OUT, this.onMouseRollOut); this.ratio = (_arg3 / _arg4); this.screenRect = new Rectangle(0, 0, _arg3, _arg4); } public function get content():McSelection{ return (this._content); } private function onBgMouseDown(_arg1:MouseEvent):void{ this.isMove = true; this._content.stage.addEventListener(MouseEvent.MOUSE_MOVE, this.onBgMouseMove); this._content.stage.addEventListener(MouseEvent.MOUSE_UP, this.onBgMouseUP); this._content.startDrag(); } public function stopMove():void{ var _local1:ResizeMarker; var _local2:Rectangle; for each (_local1 in this._markers) { _local1.stopMove(); }; if (this.isMove){ this._content.stage.removeEventListener(MouseEvent.MOUSE_MOVE, this.onBgMouseMove); this._content.stage.removeEventListener(MouseEvent.MOUSE_UP, this.onBgMouseUP); this._content.stopDrag(); _local2 = new Rectangle((this._content.x + MARGIN), (this._content.y + MARGIN), this._bounds.width, this._bounds.height); this.bounds = _local2; }; this.isMove = false; } public function get moveEvent():EventSender{ return (this._moveEvent); } private function onMouseRollOver(_arg1:MouseEvent):void{ if (!this.pointerLocked){ MousePointer.setIcon(this.movePointer); this.onLockPointer(true); }; } private function onBgMouseUP(_arg1:MouseEvent):void{ this.stopMove(); } public function get startMoveEvent():EventSender{ return (this._startMoveEvent); } private function createRotaionMarker(_arg1:Sprite):void{ } public function set visible(_arg1:Boolean):void{ this._content.visible = _arg1; } private function createResizeMarker(_arg1:Sprite, _arg2:int, _arg3:int, _arg4:int, _arg5:int, _arg6:int):void{ var _local7:ResizeMarker = new ResizeMarker(_arg1); _local7.pointer.rotation = _arg6; _local7.moveHandler = this.onMarkerMove; _local7.startMoveHandler = this._startMoveEvent.sendEvent; _local7.finishMoveHandler = this._finishMoveEvent.sendEvent; _local7.lockPointerHandler = this.onLockPointer; _local7.canMoveX = _arg2; _local7.canMoveY = _arg3; _local7.canSizeX = _arg4; _local7.canSizeY = _arg5; this._markers.push(_local7); } private function onLockPointer(_arg1:Boolean):void{ var _local2:ResizeMarker; for each (_local2 in this._markers) { _local2.pointerLocked = _arg1; }; this.pointerLocked = _arg1; } private function onMarkerMove(_arg1:ResizeMarker):void{ var _local2:Rectangle = this._bounds.clone(); _local2.x = (_local2.x + _arg1.moveX); _local2.y = (_local2.y + _arg1.moveY); _local2.width = (_local2.width + _arg1.sizeX); _local2.height = (_local2.height + _arg1.sizeY); _local2.width = Math.max(_local2.width, this.minW); _local2.height = Math.max(_local2.height, this.minH); this._moveEvent.sendEvent(_local2); } private function onMouseRollOut(_arg1:MouseEvent):void{ if (!this.isMove){ this.onLockPointer(false); MousePointer.resetIcon(); }; } public function get bounds():Rectangle{ return (this._bounds); } private function onBgMouseMove(_arg1:MouseEvent):void{ var _local2:Rectangle; if (this.isMove){ _local2 = new Rectangle((this._content.x + MARGIN), (this._content.y + MARGIN), this._bounds.width, this._bounds.height); this.moveEvent.sendEvent(_local2); }; } public function get finishMoveEvent():EventSender{ return (this._finishMoveEvent); } public function set bounds(_arg1:Rectangle):void{ this._bounds = _arg1; var _local2:Rectangle = this._bounds.clone(); _local2.left = (_local2.left - MARGIN); _local2.top = (_local2.top - MARGIN); _local2.right = (_local2.right + MARGIN); _local2.bottom = (_local2.bottom + MARGIN); this._content.x = _local2.x; this._content.y = _local2.y; this._content.mcRect.width = _local2.width; this._content.mcRect.height = _local2.height; this._content.mcBottomLeft.y = _local2.height; this._content.mcBottomRight.x = _local2.width; this._content.mcBottomRight.y = _local2.height; this._content.mcTopRight.x = _local2.width; this.boxBg.x = MARGIN; this.boxBg.y = MARGIN; this.boxBg.graphics.clear(); this.boxBg.graphics.beginFill(0xFFFFFF, 0); this.boxBg.graphics.drawRect(0, 0, this._bounds.width, this._bounds.height); this.boxBg.graphics.endFill(); } } }//package com.girlgames.dressup.api import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; class ResizeMarker { private var _content:Sprite; public var pointer:McResizePointer; public var canMoveX:int; public var canSizeX:int; public var canSizeY:int; private var _mouseX:int; private var _isMoving:Boolean;// = false public var lockPointerHandler:Function; public var sizeY:int; public var finishMoveHandler:Function; public var moveX:int; public var moveY:int; public var pointerLocked:Boolean;// = false private var _mouseY:int; public var sizeX:int; public var canMoveY:int; public var moveHandler:Function; public var startMoveHandler:Function; private function ResizeMarker(_arg1:Sprite){ this.pointer = new McResizePointer(); super(); this._content = _arg1; this._content.cacheAsBitmap = true; this._content.addEventListener(MouseEvent.MOUSE_DOWN, this.onMouseDown); this._content.addEventListener(MouseEvent.MOUSE_OVER, this.onMouseOver); this._content.addEventListener(MouseEvent.MOUSE_OUT, this.onMouseOut); this.pointer.cacheAsBitmap = true; } private function onMouseOver(_arg1:MouseEvent):void{ if (!this.pointerLocked){ MousePointer.setIcon(this.pointer); }; } private function onMouseMove(_arg1:MouseEvent):void{ if (!this._isMoving){ this._isMoving = true; this.startMoveHandler(); }; var _local2:int = (this._content.mouseX - this._mouseX); var _local3:int = (this._content.mouseY - this._mouseY); this.moveX = (this.canMoveX * _local2); this.moveY = (this.canMoveY * _local3); this.sizeX = ((this.canSizeX * _local2) * (this.canMoveX) ? -1 : 1); this.sizeY = ((this.canSizeY * _local3) * (this.canMoveY) ? -1 : 1); this.moveHandler(this); this._mouseX = this._content.mouseX; this._mouseY = this._content.mouseY; } public function stopMove():void{ if (this._isMoving){ this._isMoving = false; this.finishMoveHandler(); this._content.stage.removeEventListener(MouseEvent.MOUSE_MOVE, this.onMouseMove); this._content.stage.removeEventListener(MouseEvent.MOUSE_UP, this.onMouseUP); this.lockPointerHandler(false); if (!this._content.hitTestPoint(this._content.stage.mouseX, this._content.stage.mouseY)){ MousePointer.resetIcon(); }; }; } private function onMouseUP(_arg1:MouseEvent):void{ if (this._isMoving){ this._isMoving = false; this.finishMoveHandler(); }; this._content.stage.removeEventListener(MouseEvent.MOUSE_MOVE, this.onMouseMove); this._content.stage.removeEventListener(MouseEvent.MOUSE_UP, this.onMouseUP); this.lockPointerHandler(false); if (!this._content.hitTestPoint(this._content.stage.mouseX, this._content.stage.mouseY)){ MousePointer.resetIcon(); }; } private function onMouseDown(_arg1:MouseEvent):void{ this._mouseX = this._content.mouseX; this._mouseY = this._content.mouseY; this._content.stage.addEventListener(MouseEvent.MOUSE_MOVE, this.onMouseMove); this._content.stage.addEventListener(MouseEvent.MOUSE_UP, this.onMouseUP); this.lockPointerHandler(true); } private function onMouseOut(_arg1:MouseEvent):void{ if (!this.pointerLocked){ MousePointer.resetIcon(); }; } }
Section 15
//SelectScreenWin (com.girlgames.dressup.api.SelectScreenWin) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; import flash.geom.*; public class SelectScreenWin extends Sprite { private var a:Number;// = 0.3 private var color:uint;// = 16764159 public var saveBtn:MButton; private var game:DressupGame; private var bw:Number;// = 250 private var selectionBox:SelectionBox; public function SelectScreenWin(_arg1:DressupGame){ this.game = _arg1; this.selectionBox = new SelectionBox(this.game.WIDTH, this.game.HEIGHT, StateSaver.instance.screenwidth, StateSaver.instance.screenheight); addChild(this.selectionBox.content); var _local2:Rectangle = new Rectangle(((this.game.WIDTH - this.bw) / 2), 100, this.bw, 600); this.selectionBox.moveEvent.setListener(this.onSelectionMove); this.selectionBox.finishMoveEvent.setListener(this.onBoxFinishMove); StateSaver.instance.stage.addEventListener(Event.MOUSE_LEAVE, this.onMouseLeave); this.onSelectionMove(_local2); var _local3:SaveBtnWinMc = new SaveBtnWinMc(); addChild(_local3); this.saveBtn = new MButton(_local3); this.saveBtn.x = ((this.game.WIDTH - this.saveBtn.width) / 2); this.saveBtn.y = ((this.game.HEIGHT - this.saveBtn.height) - 10); this.saveBtn.addActionListener(this.onSaveBtn); } private function onSaveBtn(_arg1:Event):void{ StateSaver.instance.createScreenShot(this.selectionBox.bounds); } private function onBoxFinishMove():void{ this.onSelectionMove(this.selectionBox.bounds); } private function onMouseLeave(_arg1:Event):void{ this.selectionBox.stopMove(); } private function onSelectionMove(_arg1:Rectangle):void{ if ((((((((this.game.stage.mouseX < 0)) || ((this.game.stage.mouseY < 0)))) || ((this.game.stage.mouseX > this.game.WIDTH)))) || ((this.game.stage.mouseY > this.game.HEIGHT)))){ this.selectionBox.stopMove(); }; graphics.clear(); if (_arg1.height > this.game.HEIGHT){ _arg1.height = this.game.HEIGHT; }; if (_arg1.y < 0){ _arg1.y = 0; }; var _local2:Rectangle = _arg1; var _local3:Rectangle = this.selectionBox.screenRect; var _local4:Number = (_arg1.width / _arg1.height); if (_local4 > 1){ _local3.height = _arg1.height; _local3.width = (_arg1.height * this.selectionBox.ratio); } else { _local3.width = _arg1.width; _local3.height = (_arg1.width / this.selectionBox.ratio); if (_local3.height > this.game.HEIGHT){ _local3.height = (this.game.HEIGHT - SelectionBox.MARGIN); _local3.width = (_local3.height * this.selectionBox.ratio); }; }; _local3.x = _arg1.x; _local3.y = _arg1.y; this.selectionBox.bounds = _local3; this.checkBounds(); } private function checkBounds():void{ var _local1:Rectangle = this.selectionBox.bounds.clone(); var _local2:int = SelectionBox.MARGIN; _local1.x = Math.max(_local1.x, _local2); _local1.y = Math.max(_local1.y, _local2); _local1.x = Math.min(_local1.x, Math.max((this.game.WIDTH - _local1.width), _local2)); _local1.y = Math.min(_local1.y, Math.max((this.game.HEIGHT - _local1.height), _local2)); _local1.width = Math.min(_local1.width, this.game.WIDTH); _local1.height = Math.min(_local1.height, this.game.HEIGHT); this.selectionBox.bounds = _local1; } } }//package com.girlgames.dressup.api
Section 16
//StateSaver (com.girlgames.dressup.api.StateSaver) package com.girlgames.dressup.api { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; import flash.system.*; import flash.geom.*; import flash.utils.*; import flash.net.*; import gemslibe.debug.utils.*; import com.adobe.serialization.json.*; import flash.external.*; public class StateSaver extends EventDispatcher { private var actionRequest:URLLoader; public var serviceUrl:String;// = "" public var stage:Stage; public var screenShot:ByteArray; public var game:DressupGame; public var dataobj:Object; private var clipToSave:MovieClip; public var state:String;// = "default" public var screenheight:Number;// = 151 public var error:String;// = "" public var mode:String;// = "guest" public var data:String;// = "" private var qualityValue:Number;// = 80 public var owner:String;// = "no" private var requestObject; private var playerVersion:Number; private var timeOutId:int; public var action:String;// = "loaddata" public var dafaultErrorMessage:String;// = "Sorry, the service is unvailable at the moment, please try again later." public var domain:String;// = "" public var console:Console; public var screenwidth:Number;// = 196 public var regurl:String; public var timeout:Number;// = 20000 public var errorDescription:String;// = "" public var dataUrl:String;// = "" private var defaultSnapShotName:String;// = "snapshot.jpg" public var doload:String;// = "no" public var successDescription:String;// = "" private var playerVersionStr:String; public var serviceData:String; public static const LOAD_DATA:String = "loaddata"; public static const ACTION_COMPLTE:String = "action_complete"; public static const MODE_USER:String = "user"; public static const STORE_DATA:String = "storedata"; public static const INIT_EVENT:String = "saver_init_event"; public static const MODE_EXTRNAL:String = "external"; public static const OWNER_NO:String = "no"; public static const REG_DATA:String = "regdata"; public static const OWNER_YES:String = "yes"; public static const MODE_GUEST:String = "guest"; public static const version:String = "rev. 6"; public static var instance:StateSaver = new (StateSaver); ; public function StateSaver(){ this.dataobj = {}; super(); if (instance != null){ throw (new Error("An instance of StateSaver already exists.")); }; } public function navigateSignUp():void{ this.sendCommand(REG_DATA); } private function onActionTimeOut():void{ if (this.timeOutId){ clearTimeout(this.timeOutId); this.timeOutId = 0; }; this.actionRequest.close(); this.errorDescription = this.dafaultErrorMessage; this.error = "1"; dispatchEvent(new APIEvent(StateSaver.ACTION_COMPLTE, this.action)); } public function createScreenShot(_arg1:Rectangle):ByteArray{ var _local2:BitmapData = new BitmapData(this.game.WIDTH, this.game.HEIGHT); _local2.draw(this.game.character, null, null, null, null, true); var _local3:BitmapData = new BitmapData(_arg1.width, _arg1.height); _local3.copyPixels(_local2, _arg1, new Point()); var _local4:Bitmap = new Bitmap(_local3, "auto", true); var _local5:Number = (this.screenwidth / _arg1.width); var _local6:BitmapData = new BitmapData(this.screenwidth, this.screenheight, false); var _local7:Matrix = new Matrix(); _local7.scale(_local5, _local5); _local6.draw(_local4, _local7, null, null, null, true); var _local8:JPEGEncoder = new JPEGEncoder(90); var _local9:ByteArray = _local8.encode(_local6); _local2.dispose(); _local3.dispose(); _local6.dispose(); this.screenShot = _local9; return (_local9); } private function onLoaderComplete(_arg1:URLLoader, _arg2:String):void{ var obj:Object; var loader = _arg1; var $action = _arg2; this.console.print("loader complete"); if (this.timeOutId){ clearTimeout(this.timeOutId); this.timeOutId = 0; }; this.console.print(loader.data); try { obj = JSON.decode(loader.data); } catch(e:Error) { error = "1"; errorDescription = ("Error: " + e); dispatchEvent(new APIEvent(StateSaver.ACTION_COMPLTE, $action)); return; }; this.error = obj.error.toString(); if (obj.errordescription){ this.errorDescription = obj.errordescription; }; if (obj.successdescription){ this.successDescription = obj.successdescription; }; if (obj.dataobj){ this.dataobj = obj.dataobj; }; if (obj.servicedata){ this.serviceData = obj.servicedata; }; this.data = obj.data; this.dataUrl = obj.dataurl; if (this.data){ this.setState(this.data); }; dispatchEvent(new APIEvent(StateSaver.ACTION_COMPLTE, $action)); } public function sendCommand(_arg1:String):void{ var loader:URLLoader; var $action = _arg1; if (!this.serviceUrl){ return; }; this.error = ""; this.errorDescription = ""; this.successDescription = ""; this.dataUrl = ""; this.requestObject = new MultipartFormDataEncoder(); this.data = StateSaver.instance.getDataToStore(); this.console.print(("data=" + this.data)); switch ($action){ case LOAD_DATA: this.action = LOAD_DATA; this.addVariableToRequest("action", $action); if (this.serviceData){ this.addVariableToRequest("servicedata", this.serviceData); }; break; case STORE_DATA: this.action = STORE_DATA; this.addVariableToRequest("action", $action); if (this.serviceData){ this.addVariableToRequest("servicedata", this.serviceData); }; if (this.screenShot){ this.addVariableToRequest("screenshot", this.screenShot); }; this.addVariableToRequest("data", this.data); break; case REG_DATA: this.action = REG_DATA; this.addVariableToRequest("action", $action); if (this.serviceData){ this.addVariableToRequest("servicedata", this.serviceData); }; if (this.screenShot){ this.addVariableToRequest("screenshot", this.screenShot); }; this.addVariableToRequest("data", this.data); break; }; this.console.print(("SEND_ACTION=" + $action), this.serviceData); if (this.timeOutId){ clearTimeout(this.timeOutId); }; if (this.timeout){ this.timeOutId = setTimeout(this.onActionTimeOut, this.timeout); }; this.console.print(("timeOutId=" + this.timeOutId)); var req:URLRequest = new URLRequest(this.serviceUrl); req.method = URLRequestMethod.POST; if ((this.requestObject is URLVariables)){ req.data = this.requestObject; } else { if ((this.requestObject is MultipartFormDataEncoder)){ req.data = MultipartFormDataEncoder(this.requestObject).data; req.contentType = ("multipart/form-data; boundary=" + MultipartFormDataEncoder(this.requestObject).boundary); }; }; if ($action != REG_DATA){ loader = new URLLoader(req); this.actionRequest = loader; loader.addEventListener(Event.COMPLETE, function (_arg1:Event):void{ onLoaderComplete((_arg1.target as URLLoader), $action); }); loader.addEventListener(IOErrorEvent.IO_ERROR, function (_arg1:IOErrorEvent):void{ onLoaderError(_arg1, $action); }); this.actionRequest = loader; loader.load(req); } else { if (this.timeOutId){ clearTimeout(this.timeOutId); this.timeOutId = 0; }; req.url = this.regurl; navigateToURL(req, "_blank"); }; } public function getDomain():String{ var url:String; var str:String; var ind:int; try { url = String(ExternalInterface.call("function(){ var afk = document.location.href; return afk; }")); this.console.print(("domainExternal=" + url)); if (url.toString() == "null"){ return (this.stage.loaderInfo.loaderURL); }; return (url); } catch(e:Error) { str = e.toString(); console.print(str); ind = str.lastIndexOf("://"); if (ind >= 0){ console.print("domain found"); return (str.substring(ind)); }; }; return (this.stage.loaderInfo.loaderURL); } public function initialize(_arg1:Stage, _arg2:MovieClip, _arg3:DressupGame):void{ this.stage = _arg1; this.game = _arg3; this.console = new Console(this.stage, true); this.clipToSave = _arg2; this.playerVersionStr = Capabilities.version; this.playerVersion = Number(this.playerVersionStr.substring((this.playerVersionStr.indexOf(",") - 2), this.playerVersionStr.indexOf(","))); var _local4:String = this.getDomain(); var _local5:int = (_local4.indexOf("://") + 3); var _local6:int = _local4.indexOf("/", _local5); _local4 = _local4.substring(0, _local6); this.regurl = (_local4 + "/register.html"); this.parseFlashVars(); this.console.print(this.serviceData); this.action = StateSaver.LOAD_DATA; dispatchEvent(new Event(StateSaver.INIT_EVENT)); if (this.doload == "yes"){ if (this.data != ""){ this.setState(this.data); } else { this.sendCommand(StateSaver.LOAD_DATA); }; }; } private function setDomain(_arg1:String):void{ var _local2:int = (_arg1.indexOf("://") + 3); var _local3:int = _arg1.indexOf("/", _local2); this.domain = _arg1.substring(_local2, _local3); var _local4:Array = this.domain.split("."); if (_local4.length == 4){ this.domain = ((((_local4[1] + ".") + _local4[2]) + ".") + _local4[3]); } else { if (_local4.length == 3){ this.domain = ((_local4[1] + ".") + _local4[2]); } else { if (_local4.length == 2){ this.domain = ((_local4[0] + ".") + _local4[1]); }; }; }; this.domain = ((((this.domain.length > 0)) && ((this.domain.indexOf("file://") < 0)))) ? this.domain : "local"; } public function setState(_arg1:String):void{ var s:String; var ta2:Array; var clo:Clothes; var str = _arg1; if (!this.stage){ throw (new Error("StateSaver does not initialized")); }; this.game.editEventLocked = true; this.console.print(("SetState=" + str)); var ta:Array = str.split(";"); var clips:Array = new Array(); var i:int; while (i < ta.length) { ta2 = ta[i].split("="); clips[ta2[0]] = ta2[1]; i = (i + 1); }; for (s in clips) { if (!s){ } else { try { clo = this.game.getClothesByName(s); clo.setVisibleByName(clips[s]); } catch(e:Error) { }; }; }; this.game.editEventLocked = false; } private function parseFlashVars():void{ var keyStr:String; var valueStr:String; var paramObj:Object; try { paramObj = this.stage.loaderInfo.parameters; for (keyStr in paramObj) { valueStr = String(paramObj[keyStr]); if (keyStr == "serviceurl"){ this.serviceUrl = valueStr; } else { if (keyStr == "servicedata"){ this.serviceData = valueStr; } else { if (keyStr == "timeout"){ this.timeout = parseFloat(valueStr); } else { if (keyStr == "owner"){ this.owner = valueStr; } else { if (keyStr == "mode"){ this.mode = valueStr; } else { if (keyStr == "doload"){ this.doload = valueStr; } else { if (keyStr == "loaddata"){ this.data = valueStr; } else { if (keyStr == "regurl"){ this.regurl = valueStr; } else { if (keyStr == "screenheight"){ this.screenheight = parseFloat(valueStr); } else { if (keyStr == "screenwidth"){ this.screenwidth = parseFloat(valueStr); continue; }; }; }; }; }; }; }; }; }; }; }; } catch(error:Error) { trace(("error=" + error)); throw (new Error(("Problem with parsing vars: " + error))); }; } private function onLoaderError(_arg1:IOErrorEvent, _arg2:String):void{ this.console.print(_arg1); this.error = "1"; dispatchEvent(new APIEvent(StateSaver.ACTION_COMPLTE, _arg2)); } private function addVariableToRequest(_arg1:String, _arg2:Object):void{ var _local3:MultipartFormDataEncoder; if ((this.requestObject is URLVariables)){ this.requestObject[_arg1] = _arg2; } else { if ((this.requestObject is MultipartFormDataEncoder)){ _local3 = MultipartFormDataEncoder(this.requestObject); if (_arg1 == "screenshot"){ this.console.print("screeenAdedd"); _local3.addFile("screenshot", "screenshot.jpg", (_arg2 as ByteArray)); } else { _local3.addParameter(_arg1, _arg2); }; }; }; } public function getDataToStore():String{ var _local2:Clothes; if (!this.stage){ throw (new Error("StateSaver does not initialized")); }; var _local1 = ""; for each (_local2 in this.game.clothes) { trace(("current=" + _local2.currentVisible)); if (_local2.currentVisible){ _local1 = (_local1 + (((_local2.name + "=") + _local2.currentVisible.name) + ";")); }; }; this.console.print(("getDtataToStore=" + _local1)); return (_local1); } } }//package com.girlgames.dressup.api
Section 17
//Clothes (com.girlgames.dressup.Clothes) package com.girlgames.dressup { import flash.events.*; import flash.display.*; public class Clothes extends EventDispatcher { private var game:DressupGame; public var eventsLocked:Boolean;// = false private var clothes:Array; public var name:String; private var _useHandCursor:Boolean;// = true private var _defaultVisible:MovieClip; private var _buttonMode:Boolean;// = true private var _currentVisible:MovieClip; private var _currentVisibleIndex:int;// = -1 private var _canDisapear:Boolean;// = true public var content:MovieClip; public function Clothes(_arg1:MovieClip, _arg2:DressupGame, _arg3:Boolean=true, _arg4:Boolean=true, _arg5:Boolean=true){ var _local7:DisplayObject; this.clothes = new Array(); super(); this.content = _arg1; this.game = _arg2; this.name = _arg1.name; this._canDisapear = _arg3; this._useHandCursor = _arg4; this._buttonMode = _arg5; var _local6:int; while (_local6 < _arg1.numChildren) { _local7 = _arg1.getChildAt(_local6); if ((_local7 is MovieClip)){ MovieClip(_local7).useHandCursor = this._useHandCursor; MovieClip(_local7).buttonMode = this._buttonMode; _local7.visible = false; MovieClip(_local7).stop(); this.clothes.push(_local7); }; _local6++; }; if (this._canDisapear){ _local6 = 0; while (_local6 < this.clothes.length) { this.clothes[_local6].addEventListener(MouseEvent.CLICK, this.onChildClick); _local6++; }; }; } public function get currentVisible():MovieClip{ return (this._currentVisible); } public function set buttonMode(_arg1:Boolean):void{ var _local3:MovieClip; this._buttonMode = _arg1; this.content.useHandCursor = this._useHandCursor; var _local2:int; while (_local2 < this.clothes.length) { _local3 = this.clothes[_local2]; _local3.buttonMode = this._buttonMode; _local2++; }; } public function setPrevVisible(_arg1:Boolean=true):MovieClip{ if (this._currentVisibleIndex == -1){ this.setVisibleByIndex((this.clothes.length - 1), _arg1); return (this._currentVisible); }; if (!this._currentVisible){ this.setVisibleByIndex(this._currentVisibleIndex, _arg1); } else { if ((((this._currentVisibleIndex == 0)) && (this._canDisapear))){ this.turnOffCurrentVisible(); this._currentVisibleIndex = (this.clothes.length - 1); return (this._currentVisible); }; if ((((this._currentVisibleIndex == 0)) && (!(this._canDisapear)))){ this.setVisibleByIndex((this.clothes.length - 1), _arg1); return (this._currentVisible); }; this.setVisibleByIndex((this._currentVisibleIndex - 1), _arg1); }; return (this._currentVisible); } public function set currentVisibleIndex(_arg1:int):void{ this._currentVisibleIndex = _arg1; } public function get useHandCursor():Boolean{ return (this._useHandCursor); } private function onChildClick(_arg1:MouseEvent):void{ _arg1.currentTarget.visible = false; this._currentVisible = null; if (!this.eventsLocked){ this.game.dispatchEvent(new Event(DressupGame.EDIT_EVENT)); }; } public function setDefaultVisibleByName(_arg1:String):void{ this._defaultVisible = this.setVisibleByName(_arg1); } public function setVisibleByName(_arg1:String, _arg2:Boolean=true):MovieClip{ var _local3:MovieClip = this.content[_arg1]; if (!_local3){ throw (new Error("element not found")); }; this.setVisibleByInstance(_local3, _arg2); return (this._currentVisible); } public function setVisibleByInstance(_arg1:MovieClip, _arg2:Boolean=true):MovieClip{ if (this.clothes.indexOf(_arg1) < 0){ throw (new Error(((((_arg1.toString() + " ") + _arg1.name) + " not found in ") + this.name))); }; _arg1.visible = true; if (((_arg2) && (this._currentVisible))){ this._currentVisible.visible = false; }; this._currentVisible = _arg1; this._currentVisible.play(); this._currentVisible.visible = true; this._currentVisibleIndex = this.clothes.indexOf(_arg1); this.game.dispatchEvent(new Event(DressupGame.EDIT_EVENT)); return (this._currentVisible); } public function setDefaultVisibleByInstance(_arg1:MovieClip):void{ this._defaultVisible = this.setVisibleByInstance(_arg1); } public function turnOffCurrentVisible():void{ if (!this._canDisapear){ return; }; if (this._currentVisible){ this._currentVisible.visible = false; this._currentVisible.stop(); this._currentVisible = null; if (!this.eventsLocked){ this.game.dispatchEvent(new Event(DressupGame.EDIT_EVENT)); }; }; } public function set canDisapear(_arg1:Boolean):void{ var _local2:int; this._canDisapear = _arg1; if (this._canDisapear){ _local2 = 0; while (_local2 < this.clothes.length) { this.clothes[_local2].addEventListener(MouseEvent.CLICK, this.onChildClick); _local2++; }; } else { _local2 = 0; while (_local2 < this.clothes.length) { this.clothes[_local2].removeEventListener(MouseEvent.CLICK, this.onChildClick); _local2++; }; }; } public function turnOnLastVisible():MovieClip{ if (this._currentVisibleIndex >= 0){ this.setVisibleByIndex(this._currentVisibleIndex); }; return (this._currentVisible); } public function get canDisapear():Boolean{ return (this._canDisapear); } public function setVisibleByIndex(_arg1:int, _arg2:Boolean=true):MovieClip{ trace("setVisibleByIndex", _arg1); var _local3:MovieClip = this.clothes[_arg1]; if (((_arg2) && (this.currentVisible))){ this.currentVisible.visible = false; }; this._currentVisibleIndex = _arg1; _local3.visible = true; this._currentVisible = _local3; this._currentVisible.play(); if (!this.eventsLocked){ this.game.dispatchEvent(new Event(DressupGame.EDIT_EVENT)); }; return (this._currentVisible); } public function get currentVisibleIndex():int{ return (this._currentVisibleIndex); } public function get buttonMode():Boolean{ return (this._buttonMode); } public function get defaultVisible():MovieClip{ return (this._defaultVisible); } public function set useHandCursor(_arg1:Boolean):void{ var _local3:MovieClip; this._useHandCursor = _arg1; this.content.useHandCursor = this._useHandCursor; var _local2:int; while (_local2 < this.clothes.length) { _local3 = this.clothes[_local2]; _local3.useHandCursor = this._useHandCursor; _local2++; }; } public function setNextVisible(_arg1:Boolean=true):MovieClip{ trace(this._currentVisibleIndex); if (this._currentVisibleIndex == -1){ this.setVisibleByIndex(0, _arg1); return (this._currentVisible); }; if (!this._currentVisible){ this.setVisibleByIndex(this._currentVisibleIndex, _arg1); } else { if ((((this._currentVisibleIndex == (this.clothes.length - 1))) && (this._canDisapear))){ this.turnOffCurrentVisible(); this._currentVisibleIndex = 0; return (this._currentVisible); }; if ((((this._currentVisibleIndex == (this.clothes.length - 1))) && (!(this._canDisapear)))){ this.setVisibleByIndex(0, _arg1); return (this._currentVisible); }; this.setVisibleByIndex((this._currentVisibleIndex + 1), _arg1); }; return (this._currentVisible); } public function setDefaultVisibleFirstElement():void{ var _local1:DisplayObject = this.clothes[0]; this.setDefaultVisibleByInstance((_local1 as MovieClip)); } } }//package com.girlgames.dressup
Section 18
//DressupGame (com.girlgames.dressup.DressupGame) package com.girlgames.dressup { import flash.display.*; import com.girlgames.dressup.api.*; public class DressupGame extends Sprite { public var skipClips:Array; public var WIDTH:Number; public var HEIGHT:Number; public var clothes:Array; public var character:MovieClip; public var edited:Boolean;// = false private var _editEventLocked:Boolean;// = false public static const EDIT_EVENT:String = "dressup_edit_event"; public function DressupGame(_arg1:Number, _arg2:Number){ this.clothes = new Array(); this.skipClips = new Array(); super(); this.WIDTH = _arg1; this.HEIGHT = _arg2; } private function checkChildren(_arg1:MovieClip):void{ var _local3:DisplayObject; var _local2:int; while (_local2 < _arg1.numChildren) { _local3 = _arg1.getChildAt(_local2); if ((((_local3.name.indexOf("instance") >= 0)) && ((_local3 is MovieClip)))){ throw (new Error((("MovieClip: \"" + _arg1.name) + "\" , children have dynamic names"))); }; _local2++; }; } private function checkCharacter(_arg1:MovieClip):void{ var _local3:DisplayObject; var _local2:int; while (_local2 < _arg1.numChildren) { _local3 = _arg1.getChildAt(_local2); if (((((((_local3.name) && ((_local3.name.indexOf("instance") < 0)))) && ((_local3 is MovieClip)))) && ((this.skipClips.indexOf(_local3) < 0)))){ this.checkChildren((_local3 as MovieClip)); }; _local2++; }; } public function getClothesByName(_arg1:String):Clothes{ var _local2:Clothes = this.clothes[_arg1]; if (!_local2){ throw (new Error((("Clothes \"" + _arg1) + "\" not found"))); }; return (_local2); } public function initApi(_arg1:Stage, _arg2:Object=null, _arg3:MovieClip=null):void{ StateSaver.instance.initialize(_arg1, this.character, this); var _local4:ApiUI = new ApiUI(_arg1, this, StateSaver.instance, _arg2); } public function set editEventLocked(_arg1:Boolean):void{ var _local2:Clothes; this._editEventLocked = _arg1; for each (_local2 in this.clothes) { _local2.eventsLocked = this._editEventLocked; }; } public function addClothes(_arg1:Clothes):void{ this.clothes[_arg1.name] = _arg1; trace("clothe addd=", _arg1.name); } public function get editEventLocked():Boolean{ return (this._editEventLocked); } public function skipClip(... _args):void{ var _local2:MovieClip; for each (_local2 in _args) { this.skipClips.push(_local2); }; } public function init(_arg1:MovieClip):void{ this.character = _arg1; this.checkCharacter(this.character); } } }//package com.girlgames.dressup
Section 19
//MousePointer (com.girlgames.dressup.MousePointer) package com.girlgames.dressup { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.ui.*; public class MousePointer { private static var _list:Dictionary = new Dictionary(true); private static var _icon:MovieClip; private static var _stage:Stage; private static function update():void{ _icon.x = _stage.mouseX; _icon.y = _stage.mouseY; } private static function onSpriteDown(_arg1:MouseEvent):void{ var _local2:DisplayObject = DisplayObject(_arg1.currentTarget); if (_icon){ _icon.gotoAndStop(2); }; } private static function onSpriteOver(_arg1:MouseEvent):void{ var _local2:SpriteInfo = _list[_arg1.currentTarget]; setIconClass(_local2.iconClass, _local2.hideMouse); } public static function resetIcon():void{ if (_icon){ _stage.removeChild(_icon); _stage.removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove); _icon = null; }; Mouse.show(); } public static function registerObject(_arg1:DisplayObject, _arg2:Class, _arg3:Boolean=true):void{ var _local4:SpriteInfo = new SpriteInfo(); _local4.iconClass = _arg2; _local4.hideMouse = _arg3; _arg1.addEventListener(MouseEvent.MOUSE_OVER, onSpriteOver); _arg1.addEventListener(MouseEvent.MOUSE_OUT, onSpriteOut); _arg1.addEventListener(MouseEvent.MOUSE_DOWN, onSpriteDown); _arg1.addEventListener(MouseEvent.MOUSE_UP, onSpriteUp); if (_arg1.hitTestPoint(_stage.mouseX, _stage.mouseY, true)){ setIconClass(_local4.iconClass, _local4.hideMouse); }; _list[_arg1] = _local4; } public static function setIcon(_arg1:MovieClip, _arg2:Boolean=true):void{ resetIcon(); _icon = _arg1; _icon.mouseEnabled = false; _icon.mouseChildren = false; _icon.stop(); _stage.addChild(_icon); _stage.addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove); if (_arg2){ Mouse.hide(); }; update(); } private static function onSpriteUp(_arg1:MouseEvent):void{ var _local2:DisplayObject = DisplayObject(_arg1.currentTarget); if (_icon){ _icon.gotoAndStop(1); }; } private static function onMouseMove(_arg1:MouseEvent):void{ update(); _arg1.updateAfterEvent(); } private static function onSpriteOut(_arg1:MouseEvent):void{ resetIcon(); } public static function init(_arg1:Stage):void{ _stage = _arg1; } public static function unRegisterObject(_arg1:DisplayObject):void{ _arg1.removeEventListener(MouseEvent.MOUSE_OVER, onSpriteOver); _arg1.removeEventListener(MouseEvent.MOUSE_OUT, onSpriteOut); delete _list[_arg1]; } public static function set stage(_arg1:Stage):void{ _stage = _arg1; } public static function setIconClass(_arg1:Class, _arg2:Boolean=true):void{ var _local3:MovieClip = new (_arg1); setIcon(_local3, _arg2); } } }//package com.girlgames.dressup class SpriteInfo { public var hideMouse:Boolean; public var iconClass:Class; private function SpriteInfo(){ } }
Section 20
//ToolBar (gemslibe.debug.utils.console.ToolBar) package gemslibe.debug.utils.console { import flash.events.*; import flash.display.*; import flash.geom.*; import gemslibe.debug.utils.*; public class ToolBar extends Sprite { private var drag:Boolean;// = false private var bg:Sprite; private var console:Console; private var marker:Sprite; public function ToolBar(_arg1:Console){ this.bg = new Sprite(); this.marker = new Sprite(); super(); this.console = _arg1; addChild(this.bg); this.bg.graphics.beginFill(0, 0.9); this.bg.graphics.drawRect(0, 0, _arg1.stage.stageWidth, 10); this.bg.graphics.endFill(); this.marker.graphics.beginFill(0, 0.9); this.marker.graphics.drawRect(0, 0, _arg1.stage.stageWidth, 10); this.marker.graphics.endFill(); this.bg.addEventListener(MouseEvent.MOUSE_DOWN, this.onMouseDown); _arg1.stage.addEventListener(MouseEvent.MOUSE_UP, this.onMouseUp); } private function onMouseUp(_arg1:MouseEvent):void{ if (this.drag){ this.marker.stopDrag(); this.console.setHeight(this.marker.y); this.console.stage.removeChild(this.marker); }; this.drag = false; } private function onMouseDown(_arg1:MouseEvent):void{ this.marker.startDrag(false, new Rectangle(0, 0, 0, (this.console.stage.stageHeight - this.height))); this.console.stage.addChild(this.marker); this.marker.y = (this.console.stage.mouseY - this.mouseY); this.drag = true; } } }//package gemslibe.debug.utils.console
Section 21
//Console (gemslibe.debug.utils.Console) package gemslibe.debug.utils { import flash.events.*; import flash.display.*; import flash.system.*; import flash.geom.*; import flash.utils.*; import flash.text.*; import gemslibe.debug.utils.console.*; import flash.ui.*; import flash.profiler.*; public class Console extends Sprite { private var msk:Sprite; private var masked:Sprite; private var f2:TextFormat; private var f3:TextFormat; private var f1:TextFormat; private var bar:ToolBar; private var history:ArrayedQueue; private var functions:HashMap; private var linecount:int;// = 0 private var f_print:TextFormat; private var background:Sprite; private var fpsWin:FpsWin; private var historyID:int;// = 0 private var enabled:Boolean; private var input:TextField; private var console:TextField; private var shoeRedrawRegions:Boolean;// = false private var flashTraces:Boolean; private var fps:Boolean;// = false private var cHeight:Number;// = 120 private var numbering:TextField; public function Console(_arg1:Stage, _arg2:Boolean=false){ this.background = new Sprite(); this.msk = new Sprite(); this.masked = new Sprite(); this.console = new TextField(); this.input = new TextField(); this.numbering = new TextField(); this.f1 = new TextFormat(); this.f2 = new TextFormat(); this.f3 = new TextFormat(); this.f_print = new TextFormat(); this.functions = new HashMap(); this.history = new ArrayedQueue(2); super(); var _local3:Stage = _arg1; _local3.addEventListener(KeyboardEvent.KEY_DOWN, this.onKeyDown); _local3.addEventListener(Event.RESIZE, this.onResize); _local3.addChild(this); this.flashTraces = _arg2; this.disable(); this.addChild(this.background); this.addChild(this.input); this.addChild(this.masked); this.masked.addChild(this.console); this.masked.addChild(this.numbering); this.bar = new ToolBar(this); this.addChild(this.bar); this.setHeight(120); this.setUpTextfields(); this.redraw(); this.addEventListener(MouseEvent.MOUSE_WHEEL, this.onMouseWheel); this.print("Type \"-help\" for a list of available commands"); } public function enable():void{ this.visible = true; this.enabled = true; } private function scrollDown():void{ if ((this.console.y + this.console.height) > this.background.height){ this.console.y = (this.console.y - 56); this.numbering.y = (this.numbering.y - 56); }; } private function exec():void{ var _local1:Array = this.input.text.substr(2, this.input.text.length).split(" "); var _local2:String = _local1[0]; var _local3:String = _local1[1]; var _local4:String = _local1[2]; var _local5:String = _local1[3]; switch (_local2){ case "-c": case "-clear": this.console.text = ""; this.numbering.text = ""; this.linecount = 0; this.print("Type \"-help\" for a list of available commands"); break; case "-h": case "-help": this.write(); this.print(""); this.print(" Available Commands "); this.print("------------------------------------------------------------------------------------------------------------------------"); this.print(" -fps show fps and used memory"); this.print(" -sysmon enables system monitor for watching fps and used memory"); this.print(" -srr show redraw regions"); this.print(" -framerate [value] set frame rate"); this.print(" -help -h displays this information"); this.print(" -clear -c clears the list"); this.print(" -copy copyright"); this.print(" -sys gets system information"); this.print(""); this.print(" Use \"PageUp\" & \"PageDown\" on the keyboard to scroll the list"); this.print(""); break; case "-srr": this.shoeRedrawRegions = !(this.shoeRedrawRegions); showRedrawRegions(this.shoeRedrawRegions); break; case "-copy": this.write(); this.print("Copyright (c) 2009 GemsLibe inc. http://gemslibe.com"); break; case "-sys": this.write(); this.print(""); this.print(" System Information "); this.print("------------------------------------------------------------------------------------------------------------------------"); this.print((" Language: " + Capabilities.language)); this.print((" OS: " + Capabilities.os)); this.print((" Pixel aspect ratio: " + Capabilities.pixelAspectRatio)); this.print((" Player type: " + Capabilities.playerType)); this.print((" Screen DPI: " + Capabilities.screenDPI)); this.print((((" Screen resolution: " + Capabilities.screenResolutionX) + " x ") + Capabilities.screenResolutionY)); this.print((" Version: " + Capabilities.version)); this.print((" Debugger: " + Capabilities.isDebugger)); this.print(""); this.print(((" Memory usage: " + (System.totalMemory / 0x0400)) + " Kb")); this.print(""); break; case "-fps": this.showFps(); break; case "-sysmon": SystemMonitor.init(this); SystemMonitor.show(); break; case "-framerate": if (_local3){ this.stage.frameRate = parseFloat(_local3); }; break; default: this.write(); if (_local2 != ""){ if (this.functions.containsKey(_local2)){ if (!_local3){ var _local6 = this.functions; _local6[_local2](); } else { _local6 = this.functions; _local6[_local2](_local3.split(",")); }; } else { this.print((_local2 + ": command not recognized")); }; }; break; }; this.historyAdd(this.input.text); this.historyID = -1; this.input.text = "] "; this.update(); } public function setHeight(_arg1:Number):void{ this.cHeight = _arg1; this.bar.y = _arg1; this.scrollRect = new Rectangle(0, 0, stage.stageWidth, (_arg1 + this.bar.height)); this.redraw(); } public function register(_arg1:Function, _arg2:String):void{ this.functions.put(_arg2, _arg1); } public function print(... _args):void{ var _local3:String; var _local4:*; var _local5:int; var _local6:int; this.linecount++; this.numbering.appendText((this.linecount + "\n")); var _local2 = "] "; for each (_local4 in _args) { if (_local4 == null){ _local3 = "null"; } else { if (_local4 == undefined){ _local3 = "undefined"; } else { _local3 = _local4.toString(); }; }; _local2 = (_local2 + (_local3 + ", ")); }; _local2 = _local2.substring(0, (_local2.length - 2)); _local2 = (_local2 + "\n"); _local5 = this.console.length; _local6 = (_local5 + _local2.length); this.console.appendText(_local2); this.console.setTextFormat(this.f_print, _local5, _local6); this.update(); if (this.flashTraces){ trace(_args); }; } private function setUpTextfields():void{ this.f1.font = "_sans"; this.f1.color = 0xFCC000; this.f1.bold = true; this.f1.size = 11; this.input.type = "dynamic"; this.input.multiline = false; this.input.defaultTextFormat = this.f1; this.input.text = "] "; this.f2.font = "_sans"; this.f2.color = 8439036; this.f2.bold = false; this.f2.size = 11; this.console.type = "dynamic"; this.console.multiline = true; this.console.autoSize = TextFieldAutoSize.LEFT; this.console.defaultTextFormat = this.f2; this.console.setTextFormat(this.f2); this.f3.font = "_sans"; this.f3.color = 0x555555; this.f3.size = 11; this.f3.bold = false; this.f3.align = "right"; this.numbering.type = "dynamic"; this.numbering.selectable = false; this.numbering.multiline = true; this.numbering.autoSize = TextFieldAutoSize.RIGHT; this.numbering.defaultTextFormat = this.f3; this.numbering.x = 36; this.f_print.font = "_sans"; this.f_print.color = 0xCCCCCC; this.f_print.size = 11; this.f_print.bold = false; } private function showFps():void{ if (!this.fps){ this.fpsWin = new FpsWin(); stage.addChild(this.fpsWin); } else { this.fpsWin.destroy(); }; this.fps = !(this.fps); } public function unregister(_arg1):void{ if (getQualifiedSuperclassName(_arg1) == "Function"){ this.functions.remove(this.functions.getKey(_arg1)); } else { this.functions.remove(_arg1); }; } private function onKeyDown(_arg1:KeyboardEvent):void{ var _local2 = ""; if (_arg1.charCode != 0){ if (_arg1.ctrlKey){ _local2 = (_local2 + "CTRL + "); }; if (_arg1.altKey){ _local2 = (_local2 + "ALT + "); }; if (_arg1.shiftKey){ _local2 = (_local2 + "SHIFT + "); }; _local2 = (_local2 + _arg1.charCode.toString()); }; if (_arg1.keyCode == Keyboard.F2){ if (this.enabled){ this.disable(); } else { this.enable(); }; return; }; switch (_local2){ case "CTRL + SHIFT + 126": if (this.enabled){ this.disable(); } else { this.enable(); }; break; case "13": if (this.enabled){ this.exec(); }; break; case "8": if (((this.enabled) && ((this.input.text.length > 2)))){ this.input.text = this.input.text.substr(0, (this.input.text.length - 1)); }; break; case "27": if (this.enabled){ this.disable(); }; break; default: if (this.enabled){ if (_arg1.keyCode == 33){ this.scrollUp(); } else { if (_arg1.keyCode == 34){ this.scrollDown(); }; }; if (_arg1.keyCode == 38){ this.historyUp(); } else { if (_arg1.keyCode == 40){ this.historyDown(); }; }; this.input.appendText(String.fromCharCode(_arg1.charCode)); }; break; }; } private function scrollUp():void{ if ((this.console.y + 56) <= this.background.height){ this.console.y = (this.console.y + 56); this.numbering.y = (this.numbering.y + 56); }; } private function historyUp():void{ if (this.historyID < (this.history.size - 1)){ this.historyID++; this.input.text = this.history.getAt(((this.history.size - 1) - this.historyID)); }; } private function update():void{ var _local1:RegExp; var _local2:RegExp; if (this.console.numLines >= 1000){ _local1 = /(^]\s.*\s*)/g; this.console.text = this.console.text.replace(_local1, ""); _local2 = /(^.*\s*)/g; this.numbering.text = this.numbering.text.replace(_local2, ""); }; this.console.y = ((this.background.height - this.console.textHeight) - 22); this.numbering.y = ((this.background.height - this.numbering.textHeight) - 22); } private function historyDown():void{ if (this.historyID > 0){ this.historyID--; this.input.text = this.history.getAt(((this.history.size - 1) - this.historyID)); }; } private function write():void{ this.linecount++; this.numbering.appendText((this.linecount + "\n")); var _local1 = (this.input.text + "\n"); var _local2:int = this.console.length; var _local3:int = (_local2 + _local1.length); this.console.appendText(_local1); this.console.setTextFormat(this.f2, _local2, _local3); } public function disable():void{ this.visible = false; this.enabled = false; } private function historyAdd(_arg1:String):void{ if (this.history.size == (this.history.maxSize - 1)){ this.history.dequeue(); this.history.dispose(); this.history.enqueue(_arg1); } else { this.history.enqueue(_arg1); }; } private function onResize(_arg1:Event):void{ this.redraw(); } private function onMouseWheel(_arg1:MouseEvent):void{ if (_arg1.delta > 0){ this.scrollUp(); } else { this.scrollDown(); }; } private function redraw():void{ var w:Number = stage.stageWidth; var h:Number = stage.stageHeight; var _local2 = this.background.graphics; with (_local2) { clear(); beginFill(0, 0.8); drawRect(0, 0, w, cHeight); endFill(); beginFill(0, 1); drawRect(0, 0, 40, cHeight); endFill(); }; _local2 = this.msk.graphics; with (_local2) { clear(); beginFill(0, 0.9); drawRect(0, 4, w, cHeight); endFill(); }; this.input.width = (w - 52); this.input.height = 18; this.input.x = 46; this.input.y = (this.background.height - 20); this.console.width = (w - 52); this.console.x = 46; this.console.y = 0; this.console.cacheAsBitmap = false; this.numbering.y = 0; this.numbering.cacheAsBitmap = false; this.msk.cacheAsBitmap = false; this.masked.mask = this.msk; this.update(); } } }//package gemslibe.debug.utils class ArrayedQueue { private var _size:int; private var _que:Array; private var _front:int; private var _count:int; private var _divisor:int; private function ArrayedQueue(_arg1:int){ if (_arg1 < 3){ _arg1 = 3; }; this._size = (1 << _arg1); this._divisor = (this._size - 1); this.clear(); } public function get size():int{ return (this._count); } public function isEmpty():Boolean{ return ((this._count == 0)); } public function get maxSize():int{ return (this._size); } public function dispose():void{ if (!this._front){ this._que[int((this._size - 1))] = null; } else { this._que[int((this._front - 1))] = null; }; } public function enqueue(_arg1):Boolean{ if (this._size != this._count){ this._que[int(((this._count++ + this._front) & this._divisor))] = _arg1; return (true); }; return (false); } public function getAt(_arg1:int){ if (_arg1 >= this._count){ return (null); }; return (this._que[int(((_arg1 + this._front) & this._divisor))]); } public function toString():String{ return ((("[ArrayedQueue, size=" + this.size) + "]")); } public function clear():void{ this._que = new Array(this._size); this._front = (this._count = 0); } public function contains(_arg1):Boolean{ var _local2:int; while (_local2 < this._count) { if (this._que[int(((_local2 + this._front) & this._divisor))] === _arg1){ return (true); }; _local2++; }; return (false); } public function setAt(_arg1:int, _arg2):void{ if (_arg1 >= this._count){ return; }; this._que[int(((_arg1 + this._front) & this._divisor))] = _arg2; } public function dequeue(){ var _local1:*; if (this._count > 0){ _local1 = this._que[this._front++]; if (this._front == this._size){ this._front = 0; }; this._count--; return (_local1); }; return (null); } public function peek(){ return (this._que[this._front]); } }
Section 22
//FpsWin (gemslibe.debug.utils.FpsWin) package gemslibe.debug.utils { import flash.events.*; import flash.display.*; import flash.system.*; import flash.utils.*; import flash.text.*; public dynamic class FpsWin extends Sprite { private var s:int; private var timer:Timer; private var f1:TextFormat; private var f2:TextFormat; private var startTime:Number; private var fpsField:TextField; private var numFrames:Number;// = 0 private var memField:TextField; private var cnt:int;// = 0 private var t:int; public function FpsWin(){ this.f1 = new TextFormat(); this.f2 = new TextFormat(); this.timer = new Timer(500); this.startTime = getTimer(); super(); var _local2 = this.graphics; with (_local2) { beginFill(0, 0.7); drawRect(0, 0, 60, 40); endFill(); }; this.fpsField = new TextField(); this.memField = new TextField(); this.f1.font = "_sans"; this.f1.color = 0xCC00; this.f1.bold = true; this.f1.size = 11; this.f2.font = "_sans"; this.f2.color = 1035264; this.f2.bold = true; this.f2.size = 11; this.fpsField.type = "dynamic"; this.fpsField.multiline = false; this.fpsField.defaultTextFormat = this.f1; this.fpsField.text = ""; this.fpsField.selectable = false; this.memField.type = "dynamic"; this.memField.multiline = false; this.memField.defaultTextFormat = this.f2; this.memField.text = ""; this.memField.selectable = false; this.memField.y = 20; this.memField.x = 5; this.fpsField.x = 5; this.fpsField.y = 2; this.addChild(this.memField); this.addChild(this.fpsField); this.timer.addEventListener(TimerEvent.TIMER, this.onTick); this.addEventListener(Event.ENTER_FRAME, this.onEnterFrame); this.timer.start(); this.addEventListener(MouseEvent.MOUSE_DOWN, this.onDown); this.addEventListener(MouseEvent.MOUSE_UP, this.onUp); this.t = getTimer(); } private function onUp(_arg1:Event):void{ this.stopDrag(); } private function onTick(_arg1:Event):void{ this.memField.text = ((System.totalMemory / 0x0400) + " Kb"); } private function onDown(_arg1:Event):void{ this.startDrag(); } private function onEnterFrame(_arg1:Event):void{ this.s++; if (!(this.s = (this.s % stage.frameRate))){ this.fpsField.text = ((("fps: " + Math.round(((stage.frameRate * 1000) / (getTimer() - this.t)))) + "/") + stage.frameRate); this.t = getTimer(); }; } public function destroy():void{ this.timer.stop(); this.timer.removeEventListener(TimerEvent.TIMER, this.onTick); this.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); this.removeEventListener(MouseEvent.MOUSE_DOWN, this.onDown); this.removeEventListener(MouseEvent.MOUSE_UP, this.onUp); this.parent.removeChild(this); } } }//package gemslibe.debug.utils
Section 23
//HashMap (gemslibe.debug.utils.HashMap) package gemslibe.debug.utils { import flash.utils.*; public dynamic class HashMap extends Dictionary implements IMap { public function HashMap(_arg1:Boolean=true){ super(_arg1); } public function containsKey(_arg1:String):Boolean{ return (!((this[_arg1] == null))); } public function size():int{ var _local2:String; var _local1:int; for (_local2 in this) { if (this[_local2] != null){ _local1++; }; }; return (_local1); } public function isEmpty():Boolean{ var _local2:String; var _local1:int; for (_local2 in this) { if (this[_local2] != null){ _local1++; }; }; return ((_local1 <= 0)); } public function remove(_arg1:String):void{ this[_arg1] = null; } public function clear():void{ var _local1:String; for (_local1 in this) { this[_local1] = null; }; } public function put(_arg1:String, _arg2):void{ this[_arg1] = _arg2; } public function getKey(_arg1):String{ var _local2:String; for (_local2 in this) { if (this[_local2] == _arg1){ return (_local2); }; }; return (null); } public function containsValue(_arg1):Boolean{ var _local2:String; for (_local2 in this) { if (this[_local2] == _arg1){ return (true); }; }; return (false); } public function getValue(_arg1:String){ if (this[_arg1] != null){ return (this[_arg1]); }; } } }//package gemslibe.debug.utils
Section 24
//IMap (gemslibe.debug.utils.IMap) package gemslibe.debug.utils { public interface IMap { function containsKey(_arg1:String):Boolean; function size():int; function containsValue(_arg1):Boolean; function isEmpty():Boolean; function remove(_arg1:String):void; function getKey(_arg1):String; function getValue(_arg1:String); function clear():void; function put(_arg1:String, _arg2):void; } }//package gemslibe.debug.utils
Section 25
//SystemMonitor (gemslibe.debug.utils.SystemMonitor) package gemslibe.debug.utils { import flash.events.*; import flash.display.*; import flash.system.*; import flash.utils.*; import flash.net.*; public class SystemMonitor { public static var started:Boolean = false; private static var initTime:int; public static var memList:Array = []; public static var history:int = 60; private static var itvTime:int; public static var minMem:Number; public static var fpsList:Array = []; private static var frameCount:int; private static var totalCount:int; public static var inited:Boolean = false; public static var minFps:Number; public static var maxMem:Number; public static var refreshRate:Number = 1; public static var displayed:Boolean = false; public static var maxFps:Number; private static var currentTime:int; private static var frame:Sprite; private static var content:MonContent; private static var stage:Stage; private static function addEvent(_arg1:EventDispatcher, _arg2:String, _arg3:Function):void{ _arg1.addEventListener(_arg2, _arg3, false, 0, true); } public static function stop():void{ if (!started){ return; }; started = false; removeEvent(frame, Event.ENTER_FRAME, draw); } public static function get averageFps():Number{ return ((totalCount / runningTime)); } public static function init(_arg1:InteractiveObject):void{ if (inited){ return; }; inited = true; stage = _arg1.stage; content = new MonContent(); frame = new Sprite(); minFps = Number.MAX_VALUE; maxFps = Number.MIN_VALUE; minMem = Number.MAX_VALUE; maxMem = Number.MIN_VALUE; start(); } public static function get currentMem():Number{ return (((System.totalMemory / 0x0400) / 1000)); } private static function get runningTime():Number{ return (((currentTime - initTime) / 1000)); } private static function get intervalTime():Number{ return (((currentTime - itvTime) / 1000)); } private static function updateDisplay():void{ updateMinMax(); content.update(runningTime, minFps, maxFps, minMem, maxMem, currentFps, currentMem, averageFps, fpsList, memList, history); } public static function get currentFps():Number{ return ((frameCount / intervalTime)); } public static function hide():void{ displayed = false; stage.removeChild(content); } private static function draw(_arg1:Event=null):void{ currentTime = getTimer(); frameCount++; totalCount++; if (intervalTime >= refreshRate){ if (displayed){ updateDisplay(); } else { updateMinMax(); }; fpsList.unshift(currentFps); memList.unshift(currentMem); if (fpsList.length > history){ fpsList.pop(); }; if (memList.length > history){ memList.pop(); }; itvTime = currentTime; frameCount = 0; }; } public static function gc():void{ try { System.gc(); new LocalConnection().connect("foo"); new LocalConnection().connect("foo"); } catch(e:Error) { }; } public static function start():void{ if (started){ return; }; started = true; initTime = (itvTime = getTimer()); totalCount = (frameCount = 0); addEvent(frame, Event.ENTER_FRAME, draw); } private static function updateMinMax():void{ if (!(currentFps > 0)){ return; }; minFps = Math.min(currentFps, minFps); maxFps = Math.max(currentFps, maxFps); minMem = Math.min(currentMem, minMem); maxMem = Math.max(currentMem, maxMem); } private static function removeEvent(_arg1:EventDispatcher, _arg2:String, _arg3:Function):void{ _arg1.removeEventListener(_arg2, _arg3); } public static function show():void{ displayed = true; stage.addChild(content); updateDisplay(); } } }//package gemslibe.debug.utils import flash.events.*; import flash.display.*; import flash.text.*; class MonContent extends Sprite { private var maxFpsTxtBx:TextField; private var minMemTxtBx:TextField; private var fps:Shape; private var box:Shape; private var minFpsTxtBx:TextField; private var maxMemTxtBx:TextField; private var infoTxtBx:TextField; private var mb:Shape; private function MonContent():void{ this.fps = new Shape(); this.mb = new Shape(); this.box = new Shape(); this.mouseChildren = false; this.mouseEnabled = false; this.fps.x = 65; this.fps.y = 45; this.mb.x = 65; this.mb.y = 90; var _local1:TextFormat = new TextFormat("_sans", 9, 0xAAAAAA); this.infoTxtBx = new TextField(); this.infoTxtBx.autoSize = TextFieldAutoSize.LEFT; this.infoTxtBx.defaultTextFormat = new TextFormat("_sans", 11, 0xCCCCCC); this.infoTxtBx.y = 98; this.minFpsTxtBx = new TextField(); this.minFpsTxtBx.autoSize = TextFieldAutoSize.LEFT; this.minFpsTxtBx.defaultTextFormat = _local1; this.minFpsTxtBx.x = 7; this.minFpsTxtBx.y = 37; this.maxFpsTxtBx = new TextField(); this.maxFpsTxtBx.autoSize = TextFieldAutoSize.LEFT; this.maxFpsTxtBx.defaultTextFormat = _local1; this.maxFpsTxtBx.x = 7; this.maxFpsTxtBx.y = 5; this.minMemTxtBx = new TextField(); this.minMemTxtBx.autoSize = TextFieldAutoSize.LEFT; this.minMemTxtBx.defaultTextFormat = _local1; this.minMemTxtBx.x = 7; this.minMemTxtBx.y = 83; this.maxMemTxtBx = new TextField(); this.maxMemTxtBx.autoSize = TextFieldAutoSize.LEFT; this.maxMemTxtBx.defaultTextFormat = _local1; this.maxMemTxtBx.x = 7; this.maxMemTxtBx.y = 50; addChild(this.box); addChild(this.infoTxtBx); addChild(this.minFpsTxtBx); addChild(this.maxFpsTxtBx); addChild(this.minMemTxtBx); addChild(this.maxMemTxtBx); addChild(this.fps); addChild(this.mb); this.addEventListener(Event.ADDED_TO_STAGE, this.added, false, 0, true); this.addEventListener(Event.REMOVED_FROM_STAGE, this.removed, false, 0, true); } private function added(_arg1:Event):void{ this.resize(); stage.addEventListener(Event.RESIZE, this.resize, false, 0, true); } private function removed(_arg1:Event):void{ stage.removeEventListener(Event.RESIZE, this.resize); } private function resize(_arg1:Event=null):void{ var _local2:Graphics = this.box.graphics; _local2.clear(); _local2.beginFill(0, 0.5); _local2.drawRect(0, 0, stage.stageWidth, 120); _local2.lineStyle(1, 0xFFFFFF, 0.2); _local2.moveTo(65, 45); _local2.lineTo(65, 10); _local2.moveTo(65, 45); _local2.lineTo((stage.stageWidth - 15), 45); _local2.moveTo(65, 90); _local2.lineTo(65, 55); _local2.moveTo(65, 90); _local2.lineTo((stage.stageWidth - 15), 90); _local2.endFill(); this.infoTxtBx.x = ((stage.stageWidth - this.infoTxtBx.width) - 20); } public function update(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number, _arg8:Number, _arg9:Array, _arg10:Array, _arg11:int):void{ var _local19:Number; if (_arg1 >= 1){ this.minFpsTxtBx.text = (_arg2.toFixed(3) + " Fps"); this.maxFpsTxtBx.text = (_arg3.toFixed(3) + " Fps"); this.minMemTxtBx.text = (_arg4.toFixed(3) + " Mb"); this.maxMemTxtBx.text = (_arg5.toFixed(3) + " Mb"); }; this.infoTxtBx.text = (((((("Current Fps " + _arg6.toFixed(3)) + " | Average Fps ") + _arg8.toFixed(3)) + " | Memory Used ") + _arg7.toFixed(3)) + " Mb"); this.infoTxtBx.x = ((stage.stageWidth - this.infoTxtBx.width) - 20); var _local12:Graphics = this.fps.graphics; _local12.clear(); _local12.lineStyle(1, 0x33FF00, 0.7); var _local13:int; var _local14:int = _arg9.length; var _local15 = 35; var _local16:int = (stage.stageWidth - 80); var _local17:Number = (_local16 / (_arg11 - 1)); var _local18:Number = (_arg3 - _arg2); _local13 = 0; while (_local13 < _local14) { _local19 = ((_arg9[_local13] - _arg2) / _local18); if (_local13 == 0){ _local12.moveTo(0, (-(_local19) * _local15)); } else { _local12.lineTo((_local13 * _local17), (-(_local19) * _local15)); }; _local13++; }; _local12 = this.mb.graphics; _local12.clear(); _local12.lineStyle(1, 26367, 0.7); _local13 = 0; _local14 = _arg10.length; _local18 = (_arg5 - _arg4); _local13 = 0; while (_local13 < _local14) { _local19 = ((_arg10[_local13] - _arg4) / _local18); if (_local13 == 0){ _local12.moveTo(0, (-(_local19) * _local15)); } else { _local12.lineTo((_local13 * _local17), (-(_local19) * _local15)); }; _local13++; }; } }
Section 26
//EdgeMetrics (mx.core.EdgeMetrics) package mx.core { public class EdgeMetrics { public var top:Number; public var left:Number; public var bottom:Number; public var right:Number; mx_internal static const VERSION:String = "3.3.0.4852"; public static const EMPTY:EdgeMetrics = new EdgeMetrics(0, 0, 0, 0); ; public function EdgeMetrics(_arg1:Number=0, _arg2:Number=0, _arg3:Number=0, _arg4:Number=0){ this.left = _arg1; this.top = _arg2; this.right = _arg3; this.bottom = _arg4; } public function clone():EdgeMetrics{ return (new EdgeMetrics(left, top, right, bottom)); } } }//package mx.core
Section 27
//FlexLoader (mx.core.FlexLoader) package mx.core { import flash.display.*; import mx.utils.*; public class FlexLoader extends Loader { mx_internal static const VERSION:String = "3.3.0.4852"; public function FlexLoader(){ super(); try { name = NameUtil.createUniqueName(this); } catch(e:Error) { }; } override public function toString():String{ return (NameUtil.displayObjectToString(this)); } } }//package mx.core
Section 28
//FlexShape (mx.core.FlexShape) package mx.core { import flash.display.*; import mx.utils.*; public class FlexShape extends Shape { mx_internal static const VERSION:String = "3.3.0.4852"; public function FlexShape(){ super(); try { name = NameUtil.createUniqueName(this); } catch(e:Error) { }; } override public function toString():String{ return (NameUtil.displayObjectToString(this)); } } }//package mx.core
Section 29
//FlexVersion (mx.core.FlexVersion) package mx.core { import mx.resources.*; public class FlexVersion { public static const VERSION_2_0_1:uint = 33554433; public static const CURRENT_VERSION:uint = 50331648; public static const VERSION_3_0:uint = 50331648; public static const VERSION_2_0:uint = 33554432; public static const VERSION_ALREADY_READ:String = "versionAlreadyRead"; public static const VERSION_ALREADY_SET:String = "versionAlreadySet"; mx_internal static const VERSION:String = "3.3.0.4852"; private static var compatibilityVersionChanged:Boolean = false; private static var _compatibilityErrorFunction:Function; private static var _compatibilityVersion:uint = 50331648; private static var compatibilityVersionRead:Boolean = false; mx_internal static function changeCompatibilityVersionString(_arg1:String):void{ var _local2:Array = _arg1.split("."); var _local3:uint = parseInt(_local2[0]); var _local4:uint = parseInt(_local2[1]); var _local5:uint = parseInt(_local2[2]); _compatibilityVersion = (((_local3 << 24) + (_local4 << 16)) + _local5); } public static function set compatibilityVersion(_arg1:uint):void{ var _local2:String; if (_arg1 == _compatibilityVersion){ return; }; if (compatibilityVersionChanged){ if (compatibilityErrorFunction == null){ _local2 = ResourceManager.getInstance().getString("core", VERSION_ALREADY_SET); throw (new Error(_local2)); }; compatibilityErrorFunction(_arg1, VERSION_ALREADY_SET); }; if (compatibilityVersionRead){ if (compatibilityErrorFunction == null){ _local2 = ResourceManager.getInstance().getString("core", VERSION_ALREADY_READ); throw (new Error(_local2)); }; compatibilityErrorFunction(_arg1, VERSION_ALREADY_READ); }; _compatibilityVersion = _arg1; compatibilityVersionChanged = true; } public static function get compatibilityVersion():uint{ compatibilityVersionRead = true; return (_compatibilityVersion); } public static function set compatibilityErrorFunction(_arg1:Function):void{ _compatibilityErrorFunction = _arg1; } public static function set compatibilityVersionString(_arg1:String):void{ var _local2:Array = _arg1.split("."); var _local3:uint = parseInt(_local2[0]); var _local4:uint = parseInt(_local2[1]); var _local5:uint = parseInt(_local2[2]); compatibilityVersion = (((_local3 << 24) + (_local4 << 16)) + _local5); } public static function get compatibilityErrorFunction():Function{ return (_compatibilityErrorFunction); } public static function get compatibilityVersionString():String{ var _local1:uint = ((compatibilityVersion >> 24) & 0xFF); var _local2:uint = ((compatibilityVersion >> 16) & 0xFF); var _local3:uint = (compatibilityVersion & 0xFFFF); return (((((_local1.toString() + ".") + _local2.toString()) + ".") + _local3.toString())); } } }//package mx.core
Section 30
//IBorder (mx.core.IBorder) package mx.core { public interface IBorder { function get borderMetrics():EdgeMetrics; } }//package mx.core
Section 31
//IButton (mx.core.IButton) package mx.core { public interface IButton extends IUIComponent { function get emphasized():Boolean; function set emphasized(_arg1:Boolean):void; function callLater(_arg1:Function, _arg2:Array=null):void; } }//package mx.core
Section 32
//IChildList (mx.core.IChildList) package mx.core { import flash.display.*; import flash.geom.*; public interface IChildList { function get numChildren():int; function removeChild(_arg1:DisplayObject):DisplayObject; function getChildByName(_arg1:String):DisplayObject; function removeChildAt(_arg1:int):DisplayObject; function getChildIndex(_arg1:DisplayObject):int; function addChildAt(_arg1:DisplayObject, _arg2:int):DisplayObject; function getObjectsUnderPoint(_arg1:Point):Array; function setChildIndex(_arg1:DisplayObject, _arg2:int):void; function getChildAt(_arg1:int):DisplayObject; function addChild(_arg1:DisplayObject):DisplayObject; function contains(_arg1:DisplayObject):Boolean; } }//package mx.core
Section 33
//IContainer (mx.core.IContainer) package mx.core { import flash.display.*; import flash.geom.*; import mx.managers.*; import flash.media.*; import flash.text.*; public interface IContainer extends IUIComponent { function set hitArea(_arg1:Sprite):void; function swapChildrenAt(_arg1:int, _arg2:int):void; function getChildByName(_arg1:String):DisplayObject; function get doubleClickEnabled():Boolean; function get graphics():Graphics; function get useHandCursor():Boolean; function addChildAt(_arg1:DisplayObject, _arg2:int):DisplayObject; function set mouseChildren(_arg1:Boolean):void; function set creatingContentPane(_arg1:Boolean):void; function get textSnapshot():TextSnapshot; function getChildIndex(_arg1:DisplayObject):int; function set doubleClickEnabled(_arg1:Boolean):void; function getObjectsUnderPoint(_arg1:Point):Array; function get creatingContentPane():Boolean; function setChildIndex(_arg1:DisplayObject, _arg2:int):void; function get soundTransform():SoundTransform; function set useHandCursor(_arg1:Boolean):void; function get numChildren():int; function contains(_arg1:DisplayObject):Boolean; function get verticalScrollPosition():Number; function set defaultButton(_arg1:IFlexDisplayObject):void; function swapChildren(_arg1:DisplayObject, _arg2:DisplayObject):void; function set horizontalScrollPosition(_arg1:Number):void; function get focusManager():IFocusManager; function startDrag(_arg1:Boolean=false, _arg2:Rectangle=null):void; function set mouseEnabled(_arg1:Boolean):void; function getChildAt(_arg1:int):DisplayObject; function set soundTransform(_arg1:SoundTransform):void; function get tabChildren():Boolean; function get tabIndex():int; function set focusRect(_arg1:Object):void; function get hitArea():Sprite; function get mouseChildren():Boolean; function removeChildAt(_arg1:int):DisplayObject; function get defaultButton():IFlexDisplayObject; function stopDrag():void; function set tabEnabled(_arg1:Boolean):void; function get horizontalScrollPosition():Number; function get focusRect():Object; function get viewMetrics():EdgeMetrics; function set verticalScrollPosition(_arg1:Number):void; function get dropTarget():DisplayObject; function get mouseEnabled():Boolean; function set tabChildren(_arg1:Boolean):void; function set buttonMode(_arg1:Boolean):void; function get tabEnabled():Boolean; function get buttonMode():Boolean; function removeChild(_arg1:DisplayObject):DisplayObject; function set tabIndex(_arg1:int):void; function addChild(_arg1:DisplayObject):DisplayObject; function areInaccessibleObjectsUnderPoint(_arg1:Point):Boolean; } }//package mx.core
Section 34
//IFlexDisplayObject (mx.core.IFlexDisplayObject) package mx.core { import flash.events.*; import flash.display.*; import flash.geom.*; import flash.accessibility.*; public interface IFlexDisplayObject extends IBitmapDrawable, IEventDispatcher { function get visible():Boolean; function get rotation():Number; function localToGlobal(_arg1:Point):Point; function get name():String; function set width(_arg1:Number):void; function get measuredHeight():Number; function get blendMode():String; function get scale9Grid():Rectangle; function set name(_arg1:String):void; function set scaleX(_arg1:Number):void; function set scaleY(_arg1:Number):void; function get measuredWidth():Number; function get accessibilityProperties():AccessibilityProperties; function set scrollRect(_arg1:Rectangle):void; function get cacheAsBitmap():Boolean; function globalToLocal(_arg1:Point):Point; function get height():Number; function set blendMode(_arg1:String):void; function get parent():DisplayObjectContainer; function getBounds(_arg1:DisplayObject):Rectangle; function get opaqueBackground():Object; function set scale9Grid(_arg1:Rectangle):void; function setActualSize(_arg1:Number, _arg2:Number):void; function set alpha(_arg1:Number):void; function set accessibilityProperties(_arg1:AccessibilityProperties):void; function get width():Number; function hitTestPoint(_arg1:Number, _arg2:Number, _arg3:Boolean=false):Boolean; function set cacheAsBitmap(_arg1:Boolean):void; function get scaleX():Number; function get scaleY():Number; function get scrollRect():Rectangle; function get mouseX():Number; function get mouseY():Number; function set height(_arg1:Number):void; function set mask(_arg1:DisplayObject):void; function getRect(_arg1:DisplayObject):Rectangle; function get alpha():Number; function set transform(_arg1:Transform):void; function move(_arg1:Number, _arg2:Number):void; function get loaderInfo():LoaderInfo; function get root():DisplayObject; function hitTestObject(_arg1:DisplayObject):Boolean; function set opaqueBackground(_arg1:Object):void; function set visible(_arg1:Boolean):void; function get mask():DisplayObject; function set x(_arg1:Number):void; function set y(_arg1:Number):void; function get transform():Transform; function set filters(_arg1:Array):void; function get x():Number; function get y():Number; function get filters():Array; function set rotation(_arg1:Number):void; function get stage():Stage; } }//package mx.core
Section 35
//IFlexModuleFactory (mx.core.IFlexModuleFactory) package mx.core { public interface IFlexModuleFactory { function create(... _args):Object; function info():Object; } }//package mx.core
Section 36
//IInvalidating (mx.core.IInvalidating) package mx.core { public interface IInvalidating { function validateNow():void; function invalidateSize():void; function invalidateDisplayList():void; function invalidateProperties():void; } }//package mx.core
Section 37
//IProgrammaticSkin (mx.core.IProgrammaticSkin) package mx.core { public interface IProgrammaticSkin { function validateNow():void; function validateDisplayList():void; } }//package mx.core
Section 38
//IRawChildrenContainer (mx.core.IRawChildrenContainer) package mx.core { public interface IRawChildrenContainer { function get rawChildren():IChildList; } }//package mx.core
Section 39
//IRectangularBorder (mx.core.IRectangularBorder) package mx.core { import flash.geom.*; public interface IRectangularBorder extends IBorder { function get backgroundImageBounds():Rectangle; function get hasBackgroundImage():Boolean; function set backgroundImageBounds(_arg1:Rectangle):void; function layoutBackgroundImage():void; } }//package mx.core
Section 40
//IRepeaterClient (mx.core.IRepeaterClient) package mx.core { public interface IRepeaterClient { function get instanceIndices():Array; function set instanceIndices(_arg1:Array):void; function get isDocument():Boolean; function set repeaters(_arg1:Array):void; function initializeRepeaterArrays(_arg1:IRepeaterClient):void; function get repeaters():Array; function set repeaterIndices(_arg1:Array):void; function get repeaterIndices():Array; } }//package mx.core
Section 41
//ISWFBridgeGroup (mx.core.ISWFBridgeGroup) package mx.core { import flash.events.*; public interface ISWFBridgeGroup { function getChildBridgeProvider(_arg1:IEventDispatcher):ISWFBridgeProvider; function removeChildBridge(_arg1:IEventDispatcher):void; function get parentBridge():IEventDispatcher; function addChildBridge(_arg1:IEventDispatcher, _arg2:ISWFBridgeProvider):void; function set parentBridge(_arg1:IEventDispatcher):void; function containsBridge(_arg1:IEventDispatcher):Boolean; function getChildBridges():Array; } }//package mx.core
Section 42
//ISWFBridgeProvider (mx.core.ISWFBridgeProvider) package mx.core { import flash.events.*; public interface ISWFBridgeProvider { function get childAllowsParent():Boolean; function get swfBridge():IEventDispatcher; function get parentAllowsChild():Boolean; } }//package mx.core
Section 43
//IUIComponent (mx.core.IUIComponent) package mx.core { import flash.display.*; import mx.managers.*; public interface IUIComponent extends IFlexDisplayObject { function set focusPane(_arg1:Sprite):void; function get enabled():Boolean; function set enabled(_arg1:Boolean):void; function set isPopUp(_arg1:Boolean):void; function get explicitMinHeight():Number; function get percentWidth():Number; function get isPopUp():Boolean; function get owner():DisplayObjectContainer; function get percentHeight():Number; function get baselinePosition():Number; function owns(_arg1:DisplayObject):Boolean; function initialize():void; function get maxWidth():Number; function get minWidth():Number; function getExplicitOrMeasuredWidth():Number; function get explicitMaxWidth():Number; function get explicitMaxHeight():Number; function set percentHeight(_arg1:Number):void; function get minHeight():Number; function set percentWidth(_arg1:Number):void; function get document():Object; function get focusPane():Sprite; function getExplicitOrMeasuredHeight():Number; function set tweeningProperties(_arg1:Array):void; function set explicitWidth(_arg1:Number):void; function set measuredMinHeight(_arg1:Number):void; function get explicitMinWidth():Number; function get tweeningProperties():Array; function get maxHeight():Number; function set owner(_arg1:DisplayObjectContainer):void; function set includeInLayout(_arg1:Boolean):void; function setVisible(_arg1:Boolean, _arg2:Boolean=false):void; function parentChanged(_arg1:DisplayObjectContainer):void; function get explicitWidth():Number; function get measuredMinHeight():Number; function set measuredMinWidth(_arg1:Number):void; function set explicitHeight(_arg1:Number):void; function get includeInLayout():Boolean; function get measuredMinWidth():Number; function get explicitHeight():Number; function set systemManager(_arg1:ISystemManager):void; function set document(_arg1:Object):void; function get systemManager():ISystemManager; } }//package mx.core
Section 44
//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 45
//Singleton (mx.core.Singleton) package mx.core { public class Singleton { mx_internal static const VERSION:String = "3.3.0.4852"; private static var classMap:Object = {}; public static function registerClass(_arg1:String, _arg2:Class):void{ var _local3:Class = classMap[_arg1]; if (!_local3){ classMap[_arg1] = _arg2; }; } public static function getClass(_arg1:String):Class{ return (classMap[_arg1]); } public static function getInstance(_arg1:String):Object{ var _local2:Class = classMap[_arg1]; if (!_local2){ throw (new Error((("No class registered for interface '" + _arg1) + "'."))); }; return (_local2["getInstance"]()); } } }//package mx.core
Section 46
//UIComponentGlobals (mx.core.UIComponentGlobals) package mx.core { import flash.display.*; import flash.geom.*; import mx.managers.*; public class UIComponentGlobals { mx_internal static var callLaterSuspendCount:int = 0; mx_internal static var layoutManager:ILayoutManager; mx_internal static var nextFocusObject:InteractiveObject; mx_internal static var designTime:Boolean = false; mx_internal static var tempMatrix:Matrix = new Matrix(); mx_internal static var callLaterDispatcherCount:int = 0; private static var _catchCallLaterExceptions:Boolean = false; public static function set catchCallLaterExceptions(_arg1:Boolean):void{ _catchCallLaterExceptions = _arg1; } public static function get designMode():Boolean{ return (designTime); } public static function set designMode(_arg1:Boolean):void{ designTime = _arg1; } public static function get catchCallLaterExceptions():Boolean{ return (_catchCallLaterExceptions); } } }//package mx.core
Section 47
//ModuleEvent (mx.events.ModuleEvent) package mx.events { import flash.events.*; import mx.core.*; import mx.modules.*; public class ModuleEvent extends ProgressEvent { public var errorText:String; private var _module:IModuleInfo; public static const READY:String = "ready"; public static const ERROR:String = "error"; public static const PROGRESS:String = "progress"; mx_internal static const VERSION:String = "3.3.0.4852"; public static const SETUP:String = "setup"; public static const UNLOAD:String = "unload"; public function ModuleEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false, _arg4:uint=0, _arg5:uint=0, _arg6:String=null, _arg7:IModuleInfo=null){ super(_arg1, _arg2, _arg3, _arg4, _arg5); this.errorText = _arg6; this._module = _arg7; } public function get module():IModuleInfo{ if (_module){ return (_module); }; return ((target as IModuleInfo)); } override public function clone():Event{ return (new ModuleEvent(type, bubbles, cancelable, bytesLoaded, bytesTotal, errorText, module)); } } }//package mx.events
Section 48
//ResourceEvent (mx.events.ResourceEvent) package mx.events { import flash.events.*; import mx.core.*; public class ResourceEvent extends ProgressEvent { public var errorText:String; mx_internal static const VERSION:String = "3.3.0.4852"; public static const COMPLETE:String = "complete"; public static const PROGRESS:String = "progress"; public static const ERROR:String = "error"; public function ResourceEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false, _arg4:uint=0, _arg5:uint=0, _arg6:String=null){ super(_arg1, _arg2, _arg3, _arg4, _arg5); this.errorText = _arg6; } override public function clone():Event{ return (new ResourceEvent(type, bubbles, cancelable, bytesLoaded, bytesTotal, errorText)); } } }//package mx.events
Section 49
//StyleEvent (mx.events.StyleEvent) package mx.events { import flash.events.*; import mx.core.*; public class StyleEvent extends ProgressEvent { public var errorText:String; mx_internal static const VERSION:String = "3.3.0.4852"; public static const COMPLETE:String = "complete"; public static const PROGRESS:String = "progress"; public static const ERROR:String = "error"; public function StyleEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false, _arg4:uint=0, _arg5:uint=0, _arg6:String=null){ super(_arg1, _arg2, _arg3, _arg4, _arg5); this.errorText = _arg6; } override public function clone():Event{ return (new StyleEvent(type, bubbles, cancelable, bytesLoaded, bytesTotal, errorText)); } } }//package mx.events
Section 50
//RectangularDropShadow (mx.graphics.RectangularDropShadow) package mx.graphics { import mx.core.*; import flash.display.*; import flash.geom.*; import mx.utils.*; import flash.filters.*; public class RectangularDropShadow { private var leftShadow:BitmapData; private var _tlRadius:Number;// = 0 private var _trRadius:Number;// = 0 private var _angle:Number;// = 45 private var topShadow:BitmapData; private var _distance:Number;// = 4 private var rightShadow:BitmapData; private var _alpha:Number;// = 0.4 private var shadow:BitmapData; private var _brRadius:Number;// = 0 private var _blRadius:Number;// = 0 private var _color:int;// = 0 private var bottomShadow:BitmapData; private var changed:Boolean;// = true mx_internal static const VERSION:String = "3.3.0.4852"; public function get blRadius():Number{ return (_blRadius); } public function set brRadius(_arg1:Number):void{ if (_brRadius != _arg1){ _brRadius = _arg1; changed = true; }; } public function set color(_arg1:int):void{ if (_color != _arg1){ _color = _arg1; changed = true; }; } public function drawShadow(_arg1:Graphics, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number):void{ var _local15:Number; var _local16:Number; var _local17:Number; var _local18:Number; var _local19:Number; var _local20:Number; var _local21:Number; var _local22:Number; if (changed){ createShadowBitmaps(); changed = false; }; _arg4 = Math.ceil(_arg4); _arg5 = Math.ceil(_arg5); var _local6:int = (leftShadow) ? leftShadow.width : 0; var _local7:int = (rightShadow) ? rightShadow.width : 0; var _local8:int = (topShadow) ? topShadow.height : 0; var _local9:int = (bottomShadow) ? bottomShadow.height : 0; var _local10:int = (_local6 + _local7); var _local11:int = (_local8 + _local9); var _local12:Number = ((_arg5 + _local11) / 2); var _local13:Number = ((_arg4 + _local10) / 2); var _local14:Matrix = new Matrix(); if (((leftShadow) || (topShadow))){ _local15 = Math.min((tlRadius + _local10), _local13); _local16 = Math.min((tlRadius + _local11), _local12); _local14.tx = (_arg2 - _local6); _local14.ty = (_arg3 - _local8); _arg1.beginBitmapFill(shadow, _local14); _arg1.drawRect((_arg2 - _local6), (_arg3 - _local8), _local15, _local16); _arg1.endFill(); }; if (((rightShadow) || (topShadow))){ _local17 = Math.min((trRadius + _local10), _local13); _local18 = Math.min((trRadius + _local11), _local12); _local14.tx = (((_arg2 + _arg4) + _local7) - shadow.width); _local14.ty = (_arg3 - _local8); _arg1.beginBitmapFill(shadow, _local14); _arg1.drawRect((((_arg2 + _arg4) + _local7) - _local17), (_arg3 - _local8), _local17, _local18); _arg1.endFill(); }; if (((leftShadow) || (bottomShadow))){ _local19 = Math.min((blRadius + _local10), _local13); _local20 = Math.min((blRadius + _local11), _local12); _local14.tx = (_arg2 - _local6); _local14.ty = (((_arg3 + _arg5) + _local9) - shadow.height); _arg1.beginBitmapFill(shadow, _local14); _arg1.drawRect((_arg2 - _local6), (((_arg3 + _arg5) + _local9) - _local20), _local19, _local20); _arg1.endFill(); }; if (((rightShadow) || (bottomShadow))){ _local21 = Math.min((brRadius + _local10), _local13); _local22 = Math.min((brRadius + _local11), _local12); _local14.tx = (((_arg2 + _arg4) + _local7) - shadow.width); _local14.ty = (((_arg3 + _arg5) + _local9) - shadow.height); _arg1.beginBitmapFill(shadow, _local14); _arg1.drawRect((((_arg2 + _arg4) + _local7) - _local21), (((_arg3 + _arg5) + _local9) - _local22), _local21, _local22); _arg1.endFill(); }; if (leftShadow){ _local14.tx = (_arg2 - _local6); _local14.ty = 0; _arg1.beginBitmapFill(leftShadow, _local14); _arg1.drawRect((_arg2 - _local6), ((_arg3 - _local8) + _local16), _local6, ((((_arg5 + _local8) + _local9) - _local16) - _local20)); _arg1.endFill(); }; if (rightShadow){ _local14.tx = (_arg2 + _arg4); _local14.ty = 0; _arg1.beginBitmapFill(rightShadow, _local14); _arg1.drawRect((_arg2 + _arg4), ((_arg3 - _local8) + _local18), _local7, ((((_arg5 + _local8) + _local9) - _local18) - _local22)); _arg1.endFill(); }; if (topShadow){ _local14.tx = 0; _local14.ty = (_arg3 - _local8); _arg1.beginBitmapFill(topShadow, _local14); _arg1.drawRect(((_arg2 - _local6) + _local15), (_arg3 - _local8), ((((_arg4 + _local6) + _local7) - _local15) - _local17), _local8); _arg1.endFill(); }; if (bottomShadow){ _local14.tx = 0; _local14.ty = (_arg3 + _arg5); _arg1.beginBitmapFill(bottomShadow, _local14); _arg1.drawRect(((_arg2 - _local6) + _local19), (_arg3 + _arg5), ((((_arg4 + _local6) + _local7) - _local19) - _local21), _local9); _arg1.endFill(); }; } public function get brRadius():Number{ return (_brRadius); } public function get angle():Number{ return (_angle); } private function createShadowBitmaps():void{ var _local1:Number = ((Math.max(tlRadius, blRadius) + (2 * distance)) + Math.max(trRadius, brRadius)); var _local2:Number = ((Math.max(tlRadius, trRadius) + (2 * distance)) + Math.max(blRadius, brRadius)); if ((((_local1 < 0)) || ((_local2 < 0)))){ return; }; var _local3:Shape = new FlexShape(); var _local4:Graphics = _local3.graphics; _local4.beginFill(0xFFFFFF); GraphicsUtil.drawRoundRectComplex(_local4, 0, 0, _local1, _local2, tlRadius, trRadius, blRadius, brRadius); _local4.endFill(); var _local5:BitmapData = new BitmapData(_local1, _local2, true, 0); _local5.draw(_local3, new Matrix()); var _local6:DropShadowFilter = new DropShadowFilter(distance, angle, color, alpha); _local6.knockout = true; var _local7:Rectangle = new Rectangle(0, 0, _local1, _local2); var _local8:Rectangle = _local5.generateFilterRect(_local7, _local6); var _local9:Number = (_local7.left - _local8.left); var _local10:Number = (_local8.right - _local7.right); var _local11:Number = (_local7.top - _local8.top); var _local12:Number = (_local8.bottom - _local7.bottom); shadow = new BitmapData(_local8.width, _local8.height); shadow.applyFilter(_local5, _local7, new Point(_local9, _local11), _local6); var _local13:Point = new Point(0, 0); var _local14:Rectangle = new Rectangle(); if (_local9 > 0){ _local14.x = 0; _local14.y = ((tlRadius + _local11) + _local12); _local14.width = _local9; _local14.height = 1; leftShadow = new BitmapData(_local9, 1); leftShadow.copyPixels(shadow, _local14, _local13); } else { leftShadow = null; }; if (_local10 > 0){ _local14.x = (shadow.width - _local10); _local14.y = ((trRadius + _local11) + _local12); _local14.width = _local10; _local14.height = 1; rightShadow = new BitmapData(_local10, 1); rightShadow.copyPixels(shadow, _local14, _local13); } else { rightShadow = null; }; if (_local11 > 0){ _local14.x = ((tlRadius + _local9) + _local10); _local14.y = 0; _local14.width = 1; _local14.height = _local11; topShadow = new BitmapData(1, _local11); topShadow.copyPixels(shadow, _local14, _local13); } else { topShadow = null; }; if (_local12 > 0){ _local14.x = ((blRadius + _local9) + _local10); _local14.y = (shadow.height - _local12); _local14.width = 1; _local14.height = _local12; bottomShadow = new BitmapData(1, _local12); bottomShadow.copyPixels(shadow, _local14, _local13); } else { bottomShadow = null; }; } public function get alpha():Number{ return (_alpha); } public function get color():int{ return (_color); } public function set angle(_arg1:Number):void{ if (_angle != _arg1){ _angle = _arg1; changed = true; }; } public function set trRadius(_arg1:Number):void{ if (_trRadius != _arg1){ _trRadius = _arg1; changed = true; }; } public function set tlRadius(_arg1:Number):void{ if (_tlRadius != _arg1){ _tlRadius = _arg1; changed = true; }; } public function get trRadius():Number{ return (_trRadius); } public function set distance(_arg1:Number):void{ if (_distance != _arg1){ _distance = _arg1; changed = true; }; } public function get distance():Number{ return (_distance); } public function get tlRadius():Number{ return (_tlRadius); } public function set alpha(_arg1:Number):void{ if (_alpha != _arg1){ _alpha = _arg1; changed = true; }; } public function set blRadius(_arg1:Number):void{ if (_blRadius != _arg1){ _blRadius = _arg1; changed = true; }; } } }//package mx.graphics
Section 51
//IFocusManager (mx.managers.IFocusManager) package mx.managers { import flash.events.*; import mx.core.*; import flash.display.*; public interface IFocusManager { function get focusPane():Sprite; function getFocus():IFocusManagerComponent; function deactivate():void; function set defaultButton(_arg1:IButton):void; function set focusPane(_arg1:Sprite):void; function set showFocusIndicator(_arg1:Boolean):void; function moveFocus(_arg1:String, _arg2:DisplayObject=null):void; function addSWFBridge(_arg1:IEventDispatcher, _arg2:DisplayObject):void; function removeSWFBridge(_arg1:IEventDispatcher):void; function get defaultButtonEnabled():Boolean; function findFocusManagerComponent(_arg1:InteractiveObject):IFocusManagerComponent; function get nextTabIndex():int; function get defaultButton():IButton; function get showFocusIndicator():Boolean; function setFocus(_arg1:IFocusManagerComponent):void; function activate():void; function showFocus():void; function set defaultButtonEnabled(_arg1:Boolean):void; function hideFocus():void; function getNextFocusManagerComponent(_arg1:Boolean=false):IFocusManagerComponent; } }//package mx.managers
Section 52
//IFocusManagerComponent (mx.managers.IFocusManagerComponent) package mx.managers { public interface IFocusManagerComponent { function set focusEnabled(_arg1:Boolean):void; function drawFocus(_arg1:Boolean):void; function setFocus():void; function get focusEnabled():Boolean; function get tabEnabled():Boolean; function get tabIndex():int; function get mouseFocusEnabled():Boolean; } }//package mx.managers
Section 53
//IFocusManagerContainer (mx.managers.IFocusManagerContainer) package mx.managers { import flash.events.*; import flash.display.*; public interface IFocusManagerContainer extends IEventDispatcher { function set focusManager(_arg1:IFocusManager):void; function get focusManager():IFocusManager; function get systemManager():ISystemManager; function contains(_arg1:DisplayObject):Boolean; } }//package mx.managers
Section 54
//ILayoutManager (mx.managers.ILayoutManager) package mx.managers { import flash.events.*; public interface ILayoutManager extends IEventDispatcher { function validateNow():void; function validateClient(_arg1:ILayoutManagerClient, _arg2:Boolean=false):void; function isInvalid():Boolean; function invalidateDisplayList(_arg1:ILayoutManagerClient):void; function set usePhasedInstantiation(_arg1:Boolean):void; function invalidateSize(_arg1:ILayoutManagerClient):void; function get usePhasedInstantiation():Boolean; function invalidateProperties(_arg1:ILayoutManagerClient):void; } }//package mx.managers
Section 55
//ILayoutManagerClient (mx.managers.ILayoutManagerClient) package mx.managers { import flash.events.*; public interface ILayoutManagerClient extends IEventDispatcher { function get updateCompletePendingFlag():Boolean; function set updateCompletePendingFlag(_arg1:Boolean):void; function set initialized(_arg1:Boolean):void; function validateProperties():void; function validateDisplayList():void; function get nestLevel():int; function get initialized():Boolean; function get processedDescriptors():Boolean; function validateSize(_arg1:Boolean=false):void; function set nestLevel(_arg1:int):void; function set processedDescriptors(_arg1:Boolean):void; } }//package mx.managers
Section 56
//ISystemManager (mx.managers.ISystemManager) package mx.managers { import flash.events.*; import mx.core.*; import flash.display.*; import flash.geom.*; import flash.text.*; public interface ISystemManager extends IEventDispatcher, IChildList, IFlexModuleFactory { function set focusPane(_arg1:Sprite):void; function get toolTipChildren():IChildList; function useSWFBridge():Boolean; function isFontFaceEmbedded(_arg1:TextFormat):Boolean; function deployMouseShields(_arg1:Boolean):void; function get rawChildren():IChildList; function get topLevelSystemManager():ISystemManager; function dispatchEventFromSWFBridges(_arg1:Event, _arg2:IEventDispatcher=null, _arg3:Boolean=false, _arg4:Boolean=false):void; function getSandboxRoot():DisplayObject; function get swfBridgeGroup():ISWFBridgeGroup; function removeFocusManager(_arg1:IFocusManagerContainer):void; function addChildToSandboxRoot(_arg1:String, _arg2:DisplayObject):void; function get document():Object; function get focusPane():Sprite; function get loaderInfo():LoaderInfo; function addChildBridge(_arg1:IEventDispatcher, _arg2:DisplayObject):void; function getTopLevelRoot():DisplayObject; function removeChildBridge(_arg1:IEventDispatcher):void; function isDisplayObjectInABridgedApplication(_arg1:DisplayObject):Boolean; function get popUpChildren():IChildList; function get screen():Rectangle; function removeChildFromSandboxRoot(_arg1:String, _arg2:DisplayObject):void; function getDefinitionByName(_arg1:String):Object; function activate(_arg1:IFocusManagerContainer):void; function deactivate(_arg1:IFocusManagerContainer):void; function get cursorChildren():IChildList; function set document(_arg1:Object):void; function get embeddedFontList():Object; function set numModalWindows(_arg1:int):void; function isTopLevel():Boolean; function isTopLevelRoot():Boolean; function get numModalWindows():int; function addFocusManager(_arg1:IFocusManagerContainer):void; function get stage():Stage; function getVisibleApplicationRect(_arg1:Rectangle=null):Rectangle; } }//package mx.managers
Section 57
//SystemManagerGlobals (mx.managers.SystemManagerGlobals) package mx.managers { public class SystemManagerGlobals { public static var topLevelSystemManagers:Array = []; public static var changingListenersInOtherSystemManagers:Boolean; public static var bootstrapLoaderInfoURL:String; public static var showMouseCursor:Boolean; } }//package mx.managers
Section 58
//IModuleInfo (mx.modules.IModuleInfo) package mx.modules { import flash.events.*; import mx.core.*; import flash.system.*; import flash.utils.*; public interface IModuleInfo extends IEventDispatcher { function get ready():Boolean; function get loaded():Boolean; function load(_arg1:ApplicationDomain=null, _arg2:SecurityDomain=null, _arg3:ByteArray=null):void; function release():void; function get error():Boolean; function get data():Object; function publish(_arg1:IFlexModuleFactory):void; function get factory():IFlexModuleFactory; function set data(_arg1:Object):void; function get url():String; function get setup():Boolean; function unload():void; } }//package mx.modules
Section 59
//ModuleManager (mx.modules.ModuleManager) package mx.modules { import mx.core.*; public class ModuleManager { mx_internal static const VERSION:String = "3.3.0.4852"; public static function getModule(_arg1:String):IModuleInfo{ return (getSingleton().getModule(_arg1)); } private static function getSingleton():Object{ if (!ModuleManagerGlobals.managerSingleton){ ModuleManagerGlobals.managerSingleton = new ModuleManagerImpl(); }; return (ModuleManagerGlobals.managerSingleton); } public static function getAssociatedFactory(_arg1:Object):IFlexModuleFactory{ return (getSingleton().getAssociatedFactory(_arg1)); } } }//package mx.modules import flash.events.*; import mx.core.*; import flash.display.*; import flash.system.*; import flash.utils.*; import flash.net.*; import mx.events.*; class ModuleInfoProxy extends EventDispatcher implements IModuleInfo { private var _data:Object; private var info:ModuleInfo; private var referenced:Boolean;// = false private function ModuleInfoProxy(_arg1:ModuleInfo){ this.info = _arg1; _arg1.addEventListener(ModuleEvent.SETUP, moduleEventHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.PROGRESS, moduleEventHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.READY, moduleEventHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.ERROR, moduleEventHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.UNLOAD, moduleEventHandler, false, 0, true); } public function get loaded():Boolean{ return (info.loaded); } public function release():void{ if (referenced){ info.removeReference(); referenced = false; }; } public function get error():Boolean{ return (info.error); } public function get factory():IFlexModuleFactory{ return (info.factory); } public function publish(_arg1:IFlexModuleFactory):void{ info.publish(_arg1); } public function set data(_arg1:Object):void{ _data = _arg1; } public function get ready():Boolean{ return (info.ready); } public function load(_arg1:ApplicationDomain=null, _arg2:SecurityDomain=null, _arg3:ByteArray=null):void{ var _local4:ModuleEvent; info.resurrect(); if (!referenced){ info.addReference(); referenced = true; }; if (info.error){ dispatchEvent(new ModuleEvent(ModuleEvent.ERROR)); } else { if (info.loaded){ if (info.setup){ dispatchEvent(new ModuleEvent(ModuleEvent.SETUP)); if (info.ready){ _local4 = new ModuleEvent(ModuleEvent.PROGRESS); _local4.bytesLoaded = info.size; _local4.bytesTotal = info.size; dispatchEvent(_local4); dispatchEvent(new ModuleEvent(ModuleEvent.READY)); }; }; } else { info.load(_arg1, _arg2, _arg3); }; }; } private function moduleEventHandler(_arg1:ModuleEvent):void{ dispatchEvent(_arg1); } public function get url():String{ return (info.url); } public function get data():Object{ return (_data); } public function get setup():Boolean{ return (info.setup); } public function unload():void{ info.unload(); info.removeEventListener(ModuleEvent.SETUP, moduleEventHandler); info.removeEventListener(ModuleEvent.PROGRESS, moduleEventHandler); info.removeEventListener(ModuleEvent.READY, moduleEventHandler); info.removeEventListener(ModuleEvent.ERROR, moduleEventHandler); info.removeEventListener(ModuleEvent.UNLOAD, moduleEventHandler); } } class ModuleManagerImpl extends EventDispatcher { private var moduleList:Object; private function ModuleManagerImpl(){ moduleList = {}; super(); } public function getModule(_arg1:String):IModuleInfo{ var _local2:ModuleInfo = (moduleList[_arg1] as ModuleInfo); if (!_local2){ _local2 = new ModuleInfo(_arg1); moduleList[_arg1] = _local2; }; return (new ModuleInfoProxy(_local2)); } public function getAssociatedFactory(_arg1:Object):IFlexModuleFactory{ var m:Object; var info:ModuleInfo; var domain:ApplicationDomain; var cls:Class; var object = _arg1; var className:String = getQualifiedClassName(object); for each (m in moduleList) { info = (m as ModuleInfo); if (!info.ready){ } else { domain = info.applicationDomain; try { cls = Class(domain.getDefinition(className)); if ((object is cls)){ return (info.factory); }; } catch(error:Error) { }; }; }; return (null); } } class ModuleInfo extends EventDispatcher { private var _error:Boolean;// = false private var loader:Loader; private var factoryInfo:FactoryInfo; private var limbo:Dictionary; private var _loaded:Boolean;// = false private var _ready:Boolean;// = false private var numReferences:int;// = 0 private var _url:String; private var _setup:Boolean;// = false private function ModuleInfo(_arg1:String){ _url = _arg1; } private function clearLoader():void{ if (loader){ if (loader.contentLoaderInfo){ loader.contentLoaderInfo.removeEventListener(Event.INIT, initHandler); loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, completeHandler); loader.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS, progressHandler); loader.contentLoaderInfo.removeEventListener(IOErrorEvent.IO_ERROR, errorHandler); loader.contentLoaderInfo.removeEventListener(SecurityErrorEvent.SECURITY_ERROR, errorHandler); }; try { if (loader.content){ loader.content.removeEventListener("ready", readyHandler); loader.content.removeEventListener("error", moduleErrorHandler); }; } catch(error:Error) { }; if (_loaded){ try { loader.close(); } catch(error:Error) { }; }; try { loader.unload(); } catch(error:Error) { }; loader = null; }; } public function get size():int{ return ((((!(limbo)) && (factoryInfo))) ? factoryInfo.bytesTotal : 0); } public function get loaded():Boolean{ return ((limbo) ? false : _loaded); } public function release():void{ if (((_ready) && (!(limbo)))){ limbo = new Dictionary(true); limbo[factoryInfo] = 1; factoryInfo = null; } else { unload(); }; } public function get error():Boolean{ return ((limbo) ? false : _error); } public function get factory():IFlexModuleFactory{ return ((((!(limbo)) && (factoryInfo))) ? factoryInfo.factory : null); } public function completeHandler(_arg1:Event):void{ var _local2:ModuleEvent = new ModuleEvent(ModuleEvent.PROGRESS, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = loader.contentLoaderInfo.bytesLoaded; _local2.bytesTotal = loader.contentLoaderInfo.bytesTotal; dispatchEvent(_local2); } public function publish(_arg1:IFlexModuleFactory):void{ if (factoryInfo){ return; }; if (_url.indexOf("published://") != 0){ return; }; factoryInfo = new FactoryInfo(); factoryInfo.factory = _arg1; _loaded = true; _setup = true; _ready = true; _error = false; dispatchEvent(new ModuleEvent(ModuleEvent.SETUP)); dispatchEvent(new ModuleEvent(ModuleEvent.PROGRESS)); dispatchEvent(new ModuleEvent(ModuleEvent.READY)); } public function initHandler(_arg1:Event):void{ var moduleEvent:ModuleEvent; var event = _arg1; factoryInfo = new FactoryInfo(); try { factoryInfo.factory = (loader.content as IFlexModuleFactory); } catch(error:Error) { }; if (!factoryInfo.factory){ moduleEvent = new ModuleEvent(ModuleEvent.ERROR, event.bubbles, event.cancelable); moduleEvent.bytesLoaded = 0; moduleEvent.bytesTotal = 0; moduleEvent.errorText = "SWF is not a loadable module"; dispatchEvent(moduleEvent); return; }; loader.content.addEventListener("ready", readyHandler); loader.content.addEventListener("error", moduleErrorHandler); try { factoryInfo.applicationDomain = loader.contentLoaderInfo.applicationDomain; } catch(error:Error) { }; _setup = true; dispatchEvent(new ModuleEvent(ModuleEvent.SETUP)); } public function resurrect():void{ var _local1:Object; if (((!(factoryInfo)) && (limbo))){ for (_local1 in limbo) { factoryInfo = (_local1 as FactoryInfo); break; }; limbo = null; }; if (!factoryInfo){ if (_loaded){ dispatchEvent(new ModuleEvent(ModuleEvent.UNLOAD)); }; loader = null; _loaded = false; _setup = false; _ready = false; _error = false; }; } public function errorHandler(_arg1:ErrorEvent):void{ _error = true; var _local2:ModuleEvent = new ModuleEvent(ModuleEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = 0; _local2.bytesTotal = 0; _local2.errorText = _arg1.text; dispatchEvent(_local2); } public function get ready():Boolean{ return ((limbo) ? false : _ready); } private function loadBytes(_arg1:ApplicationDomain, _arg2:ByteArray):void{ var _local3:LoaderContext = new LoaderContext(); _local3.applicationDomain = (_arg1) ? _arg1 : new ApplicationDomain(ApplicationDomain.currentDomain); if (("allowLoadBytesCodeExecution" in _local3)){ _local3["allowLoadBytesCodeExecution"] = true; }; loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.INIT, initHandler); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler); loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorHandler); loader.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, errorHandler); loader.loadBytes(_arg2, _local3); } public function removeReference():void{ numReferences--; if (numReferences == 0){ release(); }; } public function addReference():void{ numReferences++; } public function progressHandler(_arg1:ProgressEvent):void{ var _local2:ModuleEvent = new ModuleEvent(ModuleEvent.PROGRESS, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; dispatchEvent(_local2); } public function load(_arg1:ApplicationDomain=null, _arg2:SecurityDomain=null, _arg3:ByteArray=null):void{ if (_loaded){ return; }; _loaded = true; limbo = null; if (_arg3){ loadBytes(_arg1, _arg3); return; }; if (_url.indexOf("published://") == 0){ return; }; var _local4:URLRequest = new URLRequest(_url); var _local5:LoaderContext = new LoaderContext(); _local5.applicationDomain = (_arg1) ? _arg1 : new ApplicationDomain(ApplicationDomain.currentDomain); _local5.securityDomain = _arg2; if ((((_arg2 == null)) && ((Security.sandboxType == Security.REMOTE)))){ _local5.securityDomain = SecurityDomain.currentDomain; }; loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.INIT, initHandler); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler); loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, progressHandler); loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorHandler); loader.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, errorHandler); loader.load(_local4, _local5); } public function get url():String{ return (_url); } public function get applicationDomain():ApplicationDomain{ return ((((!(limbo)) && (factoryInfo))) ? factoryInfo.applicationDomain : null); } public function moduleErrorHandler(_arg1:Event):void{ var _local2:ModuleEvent; _ready = true; factoryInfo.bytesTotal = loader.contentLoaderInfo.bytesTotal; clearLoader(); if ((_arg1 is ModuleEvent)){ _local2 = ModuleEvent(_arg1); } else { _local2 = new ModuleEvent(ModuleEvent.ERROR); }; dispatchEvent(_local2); } public function readyHandler(_arg1:Event):void{ _ready = true; factoryInfo.bytesTotal = loader.contentLoaderInfo.bytesTotal; clearLoader(); dispatchEvent(new ModuleEvent(ModuleEvent.READY)); } public function get setup():Boolean{ return ((limbo) ? false : _setup); } public function unload():void{ clearLoader(); if (_loaded){ dispatchEvent(new ModuleEvent(ModuleEvent.UNLOAD)); }; limbo = null; factoryInfo = null; _loaded = false; _setup = false; _ready = false; _error = false; } } class FactoryInfo { public var bytesTotal:int;// = 0 public var factory:IFlexModuleFactory; public var applicationDomain:ApplicationDomain; private function FactoryInfo(){ } }
Section 60
//ModuleManagerGlobals (mx.modules.ModuleManagerGlobals) package mx.modules { public class ModuleManagerGlobals { public static var managerSingleton:Object = null; } }//package mx.modules
Section 61
//IResourceBundle (mx.resources.IResourceBundle) package mx.resources { public interface IResourceBundle { function get content():Object; function get locale():String; function get bundleName():String; } }//package mx.resources
Section 62
//IResourceManager (mx.resources.IResourceManager) package mx.resources { import flash.events.*; import flash.system.*; public interface IResourceManager extends IEventDispatcher { function loadResourceModule(_arg1:String, _arg2:Boolean=true, _arg3:ApplicationDomain=null, _arg4:SecurityDomain=null):IEventDispatcher; function getBoolean(_arg1:String, _arg2:String, _arg3:String=null):Boolean; function getClass(_arg1:String, _arg2:String, _arg3:String=null):Class; function getLocales():Array; function removeResourceBundlesForLocale(_arg1:String):void; function getResourceBundle(_arg1:String, _arg2:String):IResourceBundle; function get localeChain():Array; function getInt(_arg1:String, _arg2:String, _arg3:String=null):int; function update():void; function set localeChain(_arg1:Array):void; function getUint(_arg1:String, _arg2:String, _arg3:String=null):uint; function addResourceBundle(_arg1:IResourceBundle):void; function getStringArray(_arg1:String, _arg2:String, _arg3:String=null):Array; function getBundleNamesForLocale(_arg1:String):Array; function removeResourceBundle(_arg1:String, _arg2:String):void; function getObject(_arg1:String, _arg2:String, _arg3:String=null); function getString(_arg1:String, _arg2:String, _arg3:Array=null, _arg4:String=null):String; function installCompiledResourceBundles(_arg1:ApplicationDomain, _arg2:Array, _arg3:Array):void; function unloadResourceModule(_arg1:String, _arg2:Boolean=true):void; function getPreferredLocaleChain():Array; function findResourceBundleWithResource(_arg1:String, _arg2:String):IResourceBundle; function initializeLocaleChain(_arg1:Array):void; function getNumber(_arg1:String, _arg2:String, _arg3:String=null):Number; } }//package mx.resources
Section 63
//IResourceModule (mx.resources.IResourceModule) package mx.resources { public interface IResourceModule { function get resourceBundles():Array; } }//package mx.resources
Section 64
//LocaleSorter (mx.resources.LocaleSorter) package mx.resources { import mx.core.*; public class LocaleSorter { mx_internal static const VERSION:String = "3.3.0.4852"; private static function normalizeLocale(_arg1:String):String{ return (_arg1.toLowerCase().replace(/-/g, "_")); } public static function sortLocalesByPreference(_arg1:Array, _arg2:Array, _arg3:String=null, _arg4:Boolean=false):Array{ var result:Array; var hasLocale:Object; var i:int; var j:int; var k:int; var l:int; var locale:String; var plocale:LocaleID; var appLocales = _arg1; var systemPreferences = _arg2; var ultimateFallbackLocale = _arg3; var addAll = _arg4; var promote:Function = function (_arg1:String):void{ if (typeof(hasLocale[_arg1]) != "undefined"){ result.push(appLocales[hasLocale[_arg1]]); delete hasLocale[_arg1]; }; }; result = []; hasLocale = {}; var locales:Array = trimAndNormalize(appLocales); var preferenceLocales:Array = trimAndNormalize(systemPreferences); addUltimateFallbackLocale(preferenceLocales, ultimateFallbackLocale); j = 0; while (j < locales.length) { hasLocale[locales[j]] = j; j = (j + 1); }; i = 0; l = preferenceLocales.length; while (i < l) { plocale = LocaleID.fromString(preferenceLocales[i]); promote(preferenceLocales[i]); promote(plocale.toString()); while (plocale.transformToParent()) { promote(plocale.toString()); }; plocale = LocaleID.fromString(preferenceLocales[i]); j = 0; while (j < l) { locale = preferenceLocales[j]; if (plocale.isSiblingOf(LocaleID.fromString(locale))){ promote(locale); }; j = (j + 1); }; j = 0; k = locales.length; while (j < k) { locale = locales[j]; if (plocale.isSiblingOf(LocaleID.fromString(locale))){ promote(locale); }; j = (j + 1); }; i = (i + 1); }; if (addAll){ j = 0; k = locales.length; while (j < k) { promote(locales[j]); j = (j + 1); }; }; return (result); } private static function addUltimateFallbackLocale(_arg1:Array, _arg2:String):void{ var _local3:String; if (((!((_arg2 == null))) && (!((_arg2 == ""))))){ _local3 = normalizeLocale(_arg2); if (_arg1.indexOf(_local3) == -1){ _arg1.push(_local3); }; }; } private static function trimAndNormalize(_arg1:Array):Array{ var _local2:Array = []; var _local3:int; while (_local3 < _arg1.length) { _local2.push(normalizeLocale(_arg1[_local3])); _local3++; }; return (_local2); } } }//package mx.resources class LocaleID { private var privateLangs:Boolean;// = false private var script:String;// = "" private var variants:Array; private var privates:Array; private var extensions:Object; private var lang:String;// = "" private var region:String;// = "" private var extended_langs:Array; public static const STATE_PRIMARY_LANGUAGE:int = 0; public static const STATE_REGION:int = 3; public static const STATE_EXTENDED_LANGUAGES:int = 1; public static const STATE_EXTENSIONS:int = 5; public static const STATE_SCRIPT:int = 2; public static const STATE_VARIANTS:int = 4; public static const STATE_PRIVATES:int = 6; private function LocaleID(){ extended_langs = []; variants = []; extensions = {}; privates = []; super(); } public function equals(_arg1:LocaleID):Boolean{ return ((toString() == _arg1.toString())); } public function canonicalize():void{ var _local1:String; for (_local1 in extensions) { if (extensions.hasOwnProperty(_local1)){ if (extensions[_local1].length == 0){ delete extensions[_local1]; } else { extensions[_local1] = extensions[_local1].sort(); }; }; }; extended_langs = extended_langs.sort(); variants = variants.sort(); privates = privates.sort(); if (script == ""){ script = LocaleRegistry.getScriptByLang(lang); }; if ((((script == "")) && (!((region == ""))))){ script = LocaleRegistry.getScriptByLangAndRegion(lang, region); }; if ((((region == "")) && (!((script == ""))))){ region = LocaleRegistry.getDefaultRegionForLangAndScript(lang, script); }; } public function toString():String{ var _local2:String; var _local1:Array = [lang]; Array.prototype.push.apply(_local1, extended_langs); if (script != ""){ _local1.push(script); }; if (region != ""){ _local1.push(region); }; Array.prototype.push.apply(_local1, variants); for (_local2 in extensions) { if (extensions.hasOwnProperty(_local2)){ _local1.push(_local2); Array.prototype.push.apply(_local1, extensions[_local2]); }; }; if (privates.length > 0){ _local1.push("x"); Array.prototype.push.apply(_local1, privates); }; return (_local1.join("_")); } public function isSiblingOf(_arg1:LocaleID):Boolean{ return ((((lang == _arg1.lang)) && ((script == _arg1.script)))); } public function transformToParent():Boolean{ var _local2:String; var _local3:Array; var _local4:String; if (privates.length > 0){ privates.splice((privates.length - 1), 1); return (true); }; var _local1:String; for (_local2 in extensions) { if (extensions.hasOwnProperty(_local2)){ _local1 = _local2; }; }; if (_local1){ _local3 = extensions[_local1]; if (_local3.length == 1){ delete extensions[_local1]; return (true); }; _local3.splice((_local3.length - 1), 1); return (true); }; if (variants.length > 0){ variants.splice((variants.length - 1), 1); return (true); }; if (script != ""){ if (LocaleRegistry.getScriptByLang(lang) != ""){ script = ""; return (true); }; if (region == ""){ _local4 = LocaleRegistry.getDefaultRegionForLangAndScript(lang, script); if (_local4 != ""){ region = _local4; script = ""; return (true); }; }; }; if (region != ""){ if (!(((script == "")) && ((LocaleRegistry.getScriptByLang(lang) == "")))){ region = ""; return (true); }; }; if (extended_langs.length > 0){ extended_langs.splice((extended_langs.length - 1), 1); return (true); }; return (false); } public static function fromString(_arg1:String):LocaleID{ var _local5:Array; var _local8:String; var _local9:int; var _local10:String; var _local2:LocaleID = new (LocaleID); var _local3:int = STATE_PRIMARY_LANGUAGE; var _local4:Array = _arg1.replace(/-/g, "_").split("_"); var _local6:int; var _local7:int = _local4.length; while (_local6 < _local7) { _local8 = _local4[_local6].toLowerCase(); if (_local3 == STATE_PRIMARY_LANGUAGE){ if (_local8 == "x"){ _local2.privateLangs = true; } else { if (_local8 == "i"){ _local2.lang = (_local2.lang + "i-"); } else { _local2.lang = (_local2.lang + _local8); _local3 = STATE_EXTENDED_LANGUAGES; }; }; } else { _local9 = _local8.length; if (_local9 == 0){ } else { _local10 = _local8.charAt(0).toLowerCase(); if ((((_local3 <= STATE_EXTENDED_LANGUAGES)) && ((_local9 == 3)))){ _local2.extended_langs.push(_local8); if (_local2.extended_langs.length == 3){ _local3 = STATE_SCRIPT; }; } else { if ((((_local3 <= STATE_SCRIPT)) && ((_local9 == 4)))){ _local2.script = _local8; _local3 = STATE_REGION; } else { if ((((_local3 <= STATE_REGION)) && ((((_local9 == 2)) || ((_local9 == 3)))))){ _local2.region = _local8; _local3 = STATE_VARIANTS; } else { if ((((_local3 <= STATE_VARIANTS)) && ((((((((_local10 >= "a")) && ((_local10 <= "z")))) && ((_local9 >= 5)))) || ((((((_local10 >= "0")) && ((_local10 <= "9")))) && ((_local9 >= 4)))))))){ _local2.variants.push(_local8); _local3 = STATE_VARIANTS; } else { if ((((_local3 < STATE_PRIVATES)) && ((_local9 == 1)))){ if (_local8 == "x"){ _local3 = STATE_PRIVATES; _local5 = _local2.privates; } else { _local3 = STATE_EXTENSIONS; _local5 = ((_local2.extensions[_local8]) || ([])); _local2.extensions[_local8] = _local5; }; } else { if (_local3 >= STATE_EXTENSIONS){ _local5.push(_local8); }; }; }; }; }; }; }; }; _local6++; }; _local2.canonicalize(); return (_local2); } } class LocaleRegistry { private static const SCRIPT_ID_BY_LANG:Object = {ab:5, af:1, am:2, ar:3, as:4, ay:1, be:5, bg:5, bn:4, bs:1, ca:1, ch:1, cs:1, cy:1, da:1, de:1, dv:6, dz:7, el:8, en:1, eo:1, es:1, et:1, eu:1, fa:3, fi:1, fj:1, fo:1, fr:1, frr:1, fy:1, ga:1, gl:1, gn:1, gu:9, gv:1, he:10, hi:11, hr:1, ht:1, hu:1, hy:12, id:1, in:1, is:1, it:1, iw:10, ja:13, ka:14, kk:5, kl:1, km:15, kn:16, ko:17, la:1, lb:1, ln:1, lo:18, lt:1, lv:1, mg:1, mh:1, mk:5, ml:19, mo:1, mr:11, ms:1, mt:1, my:20, na:1, nb:1, nd:1, ne:11, nl:1, nn:1, no:1, nr:1, ny:1, om:1, or:21, pa:22, pl:1, ps:3, pt:1, qu:1, rn:1, ro:1, ru:5, rw:1, sg:1, si:23, sk:1, sl:1, sm:1, so:1, sq:1, ss:1, st:1, sv:1, sw:1, ta:24, te:25, th:26, ti:2, tl:1, tn:1, to:1, tr:1, ts:1, uk:5, ur:3, ve:1, vi:1, wo:1, xh:1, yi:10, zu:1, cpe:1, dsb:1, frs:1, gsw:1, hsb:1, kok:11, mai:11, men:1, nds:1, niu:1, nqo:27, nso:1, son:1, tem:1, tkl:1, tmh:1, tpi:1, tvl:1, zbl:28}; private static const SCRIPTS:Array = ["", "latn", "ethi", "arab", "beng", "cyrl", "thaa", "tibt", "grek", "gujr", "hebr", "deva", "armn", "jpan", "geor", "khmr", "knda", "kore", "laoo", "mlym", "mymr", "orya", "guru", "sinh", "taml", "telu", "thai", "nkoo", "blis", "hans", "hant", "mong", "syrc"]; private static const DEFAULT_REGION_BY_LANG_AND_SCRIPT:Object = {bg:{5:"bg"}, ca:{1:"es"}, zh:{30:"tw", 29:"cn"}, cs:{1:"cz"}, da:{1:"dk"}, de:{1:"de"}, el:{8:"gr"}, en:{1:"us"}, es:{1:"es"}, fi:{1:"fi"}, fr:{1:"fr"}, he:{10:"il"}, hu:{1:"hu"}, is:{1:"is"}, it:{1:"it"}, ja:{13:"jp"}, ko:{17:"kr"}, nl:{1:"nl"}, nb:{1:"no"}, pl:{1:"pl"}, pt:{1:"br"}, ro:{1:"ro"}, ru:{5:"ru"}, hr:{1:"hr"}, sk:{1:"sk"}, sq:{1:"al"}, sv:{1:"se"}, th:{26:"th"}, tr:{1:"tr"}, ur:{3:"pk"}, id:{1:"id"}, uk:{5:"ua"}, be:{5:"by"}, sl:{1:"si"}, et:{1:"ee"}, lv:{1:"lv"}, lt:{1:"lt"}, fa:{3:"ir"}, vi:{1:"vn"}, hy:{12:"am"}, az:{1:"az", 5:"az"}, eu:{1:"es"}, mk:{5:"mk"}, af:{1:"za"}, ka:{14:"ge"}, fo:{1:"fo"}, hi:{11:"in"}, ms:{1:"my"}, kk:{5:"kz"}, ky:{5:"kg"}, sw:{1:"ke"}, uz:{1:"uz", 5:"uz"}, tt:{5:"ru"}, pa:{22:"in"}, gu:{9:"in"}, ta:{24:"in"}, te:{25:"in"}, kn:{16:"in"}, mr:{11:"in"}, sa:{11:"in"}, mn:{5:"mn"}, gl:{1:"es"}, kok:{11:"in"}, syr:{32:"sy"}, dv:{6:"mv"}, nn:{1:"no"}, sr:{1:"cs", 5:"cs"}, cy:{1:"gb"}, mi:{1:"nz"}, mt:{1:"mt"}, quz:{1:"bo"}, tn:{1:"za"}, xh:{1:"za"}, zu:{1:"za"}, nso:{1:"za"}, se:{1:"no"}, smj:{1:"no"}, sma:{1:"no"}, sms:{1:"fi"}, smn:{1:"fi"}, bs:{1:"ba"}}; private static const SCRIPT_BY_ID:Object = {latn:1, ethi:2, arab:3, beng:4, cyrl:5, thaa:6, tibt:7, grek:8, gujr:9, hebr:10, deva:11, armn:12, jpan:13, geor:14, khmr:15, knda:16, kore:17, laoo:18, mlym:19, mymr:20, orya:21, guru:22, sinh:23, taml:24, telu:25, thai:26, nkoo:27, blis:28, hans:29, hant:30, mong:31, syrc:32}; private static const SCRIPT_ID_BY_LANG_AND_REGION:Object = {zh:{cn:29, sg:29, tw:30, hk:30, mo:30}, mn:{cn:31, sg:5}, pa:{pk:3, in:22}, ha:{gh:1, ne:1}}; private function LocaleRegistry(){ } public static function getScriptByLangAndRegion(_arg1:String, _arg2:String):String{ var _local3:Object = SCRIPT_ID_BY_LANG_AND_REGION[_arg1]; if (_local3 == null){ return (""); }; var _local4:Object = _local3[_arg2]; if (_local4 == null){ return (""); }; return (SCRIPTS[int(_local4)].toLowerCase()); } public static function getScriptByLang(_arg1:String):String{ var _local2:Object = SCRIPT_ID_BY_LANG[_arg1]; if (_local2 == null){ return (""); }; return (SCRIPTS[int(_local2)].toLowerCase()); } public static function getDefaultRegionForLangAndScript(_arg1:String, _arg2:String):String{ var _local3:Object = DEFAULT_REGION_BY_LANG_AND_SCRIPT[_arg1]; var _local4:Object = SCRIPT_BY_ID[_arg2]; if ((((_local3 == null)) || ((_local4 == null)))){ return (""); }; return (((_local3[int(_local4)]) || (""))); } }
Section 65
//ResourceBundle (mx.resources.ResourceBundle) package mx.resources { import mx.core.*; import flash.system.*; import mx.utils.*; public class ResourceBundle implements IResourceBundle { mx_internal var _locale:String; private var _content:Object; mx_internal var _bundleName:String; mx_internal static const VERSION:String = "3.3.0.4852"; mx_internal static var backupApplicationDomain:ApplicationDomain; mx_internal static var locale:String; public function ResourceBundle(_arg1:String=null, _arg2:String=null){ _content = {}; super(); mx_internal::_locale = _arg1; mx_internal::_bundleName = _arg2; _content = getContent(); } protected function getContent():Object{ return ({}); } public function getString(_arg1:String):String{ return (String(_getObject(_arg1))); } public function get content():Object{ return (_content); } public function getBoolean(_arg1:String, _arg2:Boolean=true):Boolean{ var _local3:String = _getObject(_arg1).toLowerCase(); if (_local3 == "false"){ return (false); }; if (_local3 == "true"){ return (true); }; return (_arg2); } public function getStringArray(_arg1:String):Array{ var _local2:Array = _getObject(_arg1).split(","); var _local3:int = _local2.length; var _local4:int; while (_local4 < _local3) { _local2[_local4] = StringUtil.trim(_local2[_local4]); _local4++; }; return (_local2); } public function getObject(_arg1:String):Object{ return (_getObject(_arg1)); } private function _getObject(_arg1:String):Object{ var _local2:Object = content[_arg1]; if (!_local2){ throw (new Error(((("Key " + _arg1) + " was not found in resource bundle ") + bundleName))); }; return (_local2); } public function get locale():String{ return (mx_internal::_locale); } public function get bundleName():String{ return (mx_internal::_bundleName); } public function getNumber(_arg1:String):Number{ return (Number(_getObject(_arg1))); } private static function getClassByName(_arg1:String, _arg2:ApplicationDomain):Class{ var _local3:Class; if (_arg2.hasDefinition(_arg1)){ _local3 = (_arg2.getDefinition(_arg1) as Class); }; return (_local3); } public static function getResourceBundle(_arg1:String, _arg2:ApplicationDomain=null):ResourceBundle{ var _local3:String; var _local4:Class; var _local5:Object; var _local6:ResourceBundle; if (!_arg2){ _arg2 = ApplicationDomain.currentDomain; }; _local3 = (((mx_internal::locale + "$") + _arg1) + "_properties"); _local4 = getClassByName(_local3, _arg2); if (!_local4){ _local3 = (_arg1 + "_properties"); _local4 = getClassByName(_local3, _arg2); }; if (!_local4){ _local3 = _arg1; _local4 = getClassByName(_local3, _arg2); }; if (((!(_local4)) && (mx_internal::backupApplicationDomain))){ _local3 = (_arg1 + "_properties"); _local4 = getClassByName(_local3, mx_internal::backupApplicationDomain); if (!_local4){ _local3 = _arg1; _local4 = getClassByName(_local3, mx_internal::backupApplicationDomain); }; }; if (_local4){ _local5 = new (_local4); if ((_local5 is ResourceBundle)){ _local6 = ResourceBundle(_local5); return (_local6); }; }; throw (new Error(("Could not find resource bundle " + _arg1))); } } }//package mx.resources
Section 66
//ResourceManager (mx.resources.ResourceManager) package mx.resources { import mx.core.*; public class ResourceManager { mx_internal static const VERSION:String = "3.3.0.4852"; private static var implClassDependency:ResourceManagerImpl; private static var instance:IResourceManager; public static function getInstance():IResourceManager{ if (!instance){ try { instance = IResourceManager(Singleton.getInstance("mx.resources::IResourceManager")); } catch(e:Error) { instance = new ResourceManagerImpl(); }; }; return (instance); } } }//package mx.resources
Section 67
//ResourceManagerImpl (mx.resources.ResourceManagerImpl) package mx.resources { import flash.events.*; import mx.core.*; import flash.system.*; import flash.utils.*; import mx.modules.*; import mx.events.*; import mx.utils.*; public class ResourceManagerImpl extends EventDispatcher implements IResourceManager { private var resourceModules:Object; private var initializedForNonFrameworkApp:Boolean;// = false private var localeMap:Object; private var _localeChain:Array; mx_internal static const VERSION:String = "3.3.0.4852"; private static var instance:IResourceManager; public function ResourceManagerImpl(){ localeMap = {}; resourceModules = {}; super(); } public function get localeChain():Array{ return (_localeChain); } public function set localeChain(_arg1:Array):void{ _localeChain = _arg1; update(); } public function getStringArray(_arg1:String, _arg2:String, _arg3:String=null):Array{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (null); }; var _local5:* = _local4.content[_arg2]; var _local6:Array = String(_local5).split(","); var _local7:int = _local6.length; var _local8:int; while (_local8 < _local7) { _local6[_local8] = StringUtil.trim(_local6[_local8]); _local8++; }; return (_local6); } mx_internal function installCompiledResourceBundle(_arg1:ApplicationDomain, _arg2:String, _arg3:String):void{ var _local4:String; var _local5:String = _arg3; var _local6:int = _arg3.indexOf(":"); if (_local6 != -1){ _local4 = _arg3.substring(0, _local6); _local5 = _arg3.substring((_local6 + 1)); }; if (getResourceBundle(_arg2, _arg3)){ return; }; var _local7 = (((_arg2 + "$") + _local5) + "_properties"); if (_local4 != null){ _local7 = ((_local4 + ".") + _local7); }; var _local8:Class; if (_arg1.hasDefinition(_local7)){ _local8 = Class(_arg1.getDefinition(_local7)); }; if (!_local8){ _local7 = _arg3; if (_arg1.hasDefinition(_local7)){ _local8 = Class(_arg1.getDefinition(_local7)); }; }; if (!_local8){ _local7 = (_arg3 + "_properties"); if (_arg1.hasDefinition(_local7)){ _local8 = Class(_arg1.getDefinition(_local7)); }; }; if (!_local8){ throw (new Error((((("Could not find compiled resource bundle '" + _arg3) + "' for locale '") + _arg2) + "'."))); }; var _local9:ResourceBundle = ResourceBundle(new (_local8)); _local9.mx_internal::_locale = _arg2; _local9.mx_internal::_bundleName = _arg3; addResourceBundle(_local9); } public function getString(_arg1:String, _arg2:String, _arg3:Array=null, _arg4:String=null):String{ var _local5:IResourceBundle = findBundle(_arg1, _arg2, _arg4); if (!_local5){ return (null); }; var _local6:String = String(_local5.content[_arg2]); if (_arg3){ _local6 = StringUtil.substitute(_local6, _arg3); }; return (_local6); } public function loadResourceModule(_arg1:String, _arg2:Boolean=true, _arg3:ApplicationDomain=null, _arg4:SecurityDomain=null):IEventDispatcher{ var moduleInfo:IModuleInfo; var resourceEventDispatcher:ResourceEventDispatcher; var timer:Timer; var timerHandler:Function; var url = _arg1; var updateFlag = _arg2; var applicationDomain = _arg3; var securityDomain = _arg4; moduleInfo = ModuleManager.getModule(url); resourceEventDispatcher = new ResourceEventDispatcher(moduleInfo); var readyHandler:Function = function (_arg1:ModuleEvent):void{ var _local2:* = _arg1.module.factory.create(); resourceModules[_arg1.module.url].resourceModule = _local2; if (updateFlag){ update(); }; }; moduleInfo.addEventListener(ModuleEvent.READY, readyHandler, false, 0, true); var errorHandler:Function = function (_arg1:ModuleEvent):void{ var _local3:ResourceEvent; var _local2:String = ("Unable to load resource module from " + url); if (resourceEventDispatcher.willTrigger(ResourceEvent.ERROR)){ _local3 = new ResourceEvent(ResourceEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local3.bytesLoaded = 0; _local3.bytesTotal = 0; _local3.errorText = _local2; resourceEventDispatcher.dispatchEvent(_local3); } else { throw (new Error(_local2)); }; }; moduleInfo.addEventListener(ModuleEvent.ERROR, errorHandler, false, 0, true); resourceModules[url] = new ResourceModuleInfo(moduleInfo, readyHandler, errorHandler); timer = new Timer(0); timerHandler = function (_arg1:TimerEvent):void{ timer.removeEventListener(TimerEvent.TIMER, timerHandler); timer.stop(); moduleInfo.load(applicationDomain, securityDomain); }; timer.addEventListener(TimerEvent.TIMER, timerHandler, false, 0, true); timer.start(); return (resourceEventDispatcher); } public function getLocales():Array{ var _local2:String; var _local1:Array = []; for (_local2 in localeMap) { _local1.push(_local2); }; return (_local1); } public function removeResourceBundlesForLocale(_arg1:String):void{ delete localeMap[_arg1]; } public function getResourceBundle(_arg1:String, _arg2:String):IResourceBundle{ var _local3:Object = localeMap[_arg1]; if (!_local3){ return (null); }; return (_local3[_arg2]); } private function dumpResourceModule(_arg1):void{ var _local2:ResourceBundle; var _local3:String; for each (_local2 in _arg1.resourceBundles) { trace(_local2.locale, _local2.bundleName); for (_local3 in _local2.content) { }; }; } public function addResourceBundle(_arg1:IResourceBundle):void{ var _local2:String = _arg1.locale; var _local3:String = _arg1.bundleName; if (!localeMap[_local2]){ localeMap[_local2] = {}; }; localeMap[_local2][_local3] = _arg1; } public function getObject(_arg1:String, _arg2:String, _arg3:String=null){ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (undefined); }; return (_local4.content[_arg2]); } public function getInt(_arg1:String, _arg2:String, _arg3:String=null):int{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (0); }; var _local5:* = _local4.content[_arg2]; return (int(_local5)); } private function findBundle(_arg1:String, _arg2:String, _arg3:String):IResourceBundle{ supportNonFrameworkApps(); return (((_arg3)!=null) ? getResourceBundle(_arg3, _arg1) : findResourceBundleWithResource(_arg1, _arg2)); } private function supportNonFrameworkApps():void{ if (initializedForNonFrameworkApp){ return; }; initializedForNonFrameworkApp = true; if (getLocales().length > 0){ return; }; var _local1:ApplicationDomain = ApplicationDomain.currentDomain; if (!_local1.hasDefinition("_CompiledResourceBundleInfo")){ return; }; var _local2:Class = Class(_local1.getDefinition("_CompiledResourceBundleInfo")); var _local3:Array = _local2.compiledLocales; var _local4:Array = _local2.compiledResourceBundleNames; installCompiledResourceBundles(_local1, _local3, _local4); localeChain = _local3; } public function getBundleNamesForLocale(_arg1:String):Array{ var _local3:String; var _local2:Array = []; for (_local3 in localeMap[_arg1]) { _local2.push(_local3); }; return (_local2); } public function getPreferredLocaleChain():Array{ return (LocaleSorter.sortLocalesByPreference(getLocales(), getSystemPreferredLocales(), null, true)); } public function getNumber(_arg1:String, _arg2:String, _arg3:String=null):Number{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (NaN); }; var _local5:* = _local4.content[_arg2]; return (Number(_local5)); } public function update():void{ dispatchEvent(new Event(Event.CHANGE)); } public function getClass(_arg1:String, _arg2:String, _arg3:String=null):Class{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (null); }; var _local5:* = _local4.content[_arg2]; return ((_local5 as Class)); } public function removeResourceBundle(_arg1:String, _arg2:String):void{ delete localeMap[_arg1][_arg2]; if (getBundleNamesForLocale(_arg1).length == 0){ delete localeMap[_arg1]; }; } public function initializeLocaleChain(_arg1:Array):void{ localeChain = LocaleSorter.sortLocalesByPreference(_arg1, getSystemPreferredLocales(), null, true); } public function findResourceBundleWithResource(_arg1:String, _arg2:String):IResourceBundle{ var _local5:String; var _local6:Object; var _local7:ResourceBundle; if (!_localeChain){ return (null); }; var _local3:int = _localeChain.length; var _local4:int; while (_local4 < _local3) { _local5 = localeChain[_local4]; _local6 = localeMap[_local5]; if (!_local6){ } else { _local7 = _local6[_arg1]; if (!_local7){ } else { if ((_arg2 in _local7.content)){ return (_local7); }; }; }; _local4++; }; return (null); } public function getUint(_arg1:String, _arg2:String, _arg3:String=null):uint{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (0); }; var _local5:* = _local4.content[_arg2]; return (uint(_local5)); } private function getSystemPreferredLocales():Array{ var _local1:Array; if (Capabilities["languages"]){ _local1 = Capabilities["languages"]; } else { _local1 = [Capabilities.language]; }; return (_local1); } public function installCompiledResourceBundles(_arg1:ApplicationDomain, _arg2:Array, _arg3:Array):void{ var _local7:String; var _local8:int; var _local9:String; var _local4:int = (_arg2) ? _arg2.length : 0; var _local5:int = (_arg3) ? _arg3.length : 0; var _local6:int; while (_local6 < _local4) { _local7 = _arg2[_local6]; _local8 = 0; while (_local8 < _local5) { _local9 = _arg3[_local8]; mx_internal::installCompiledResourceBundle(_arg1, _local7, _local9); _local8++; }; _local6++; }; } public function getBoolean(_arg1:String, _arg2:String, _arg3:String=null):Boolean{ var _local4:IResourceBundle = findBundle(_arg1, _arg2, _arg3); if (!_local4){ return (false); }; var _local5:* = _local4.content[_arg2]; return ((String(_local5).toLowerCase() == "true")); } public function unloadResourceModule(_arg1:String, _arg2:Boolean=true):void{ throw (new Error("unloadResourceModule() is not yet implemented.")); } public static function getInstance():IResourceManager{ if (!instance){ instance = new (ResourceManagerImpl); }; return (instance); } } }//package mx.resources import flash.events.*; import mx.modules.*; import mx.events.*; class ResourceModuleInfo { public var resourceModule:IResourceModule; public var errorHandler:Function; public var readyHandler:Function; public var moduleInfo:IModuleInfo; private function ResourceModuleInfo(_arg1:IModuleInfo, _arg2:Function, _arg3:Function){ this.moduleInfo = _arg1; this.readyHandler = _arg2; this.errorHandler = _arg3; } } class ResourceEventDispatcher extends EventDispatcher { private function ResourceEventDispatcher(_arg1:IModuleInfo){ _arg1.addEventListener(ModuleEvent.ERROR, moduleInfo_errorHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.PROGRESS, moduleInfo_progressHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.READY, moduleInfo_readyHandler, false, 0, true); } private function moduleInfo_progressHandler(_arg1:ModuleEvent):void{ var _local2:ResourceEvent = new ResourceEvent(ResourceEvent.PROGRESS, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; dispatchEvent(_local2); } private function moduleInfo_readyHandler(_arg1:ModuleEvent):void{ var _local2:ResourceEvent = new ResourceEvent(ResourceEvent.COMPLETE); dispatchEvent(_local2); } private function moduleInfo_errorHandler(_arg1:ModuleEvent):void{ var _local2:ResourceEvent = new ResourceEvent(ResourceEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; _local2.errorText = _arg1.errorText; dispatchEvent(_local2); } }
Section 68
//HaloBorder (mx.skins.halo.HaloBorder) package mx.skins.halo { import mx.core.*; import flash.display.*; import mx.styles.*; import mx.skins.*; import mx.graphics.*; import mx.utils.*; public class HaloBorder extends RectangularBorder { mx_internal var radiusObj:Object; mx_internal var backgroundHole:Object; mx_internal var radius:Number; mx_internal var bRoundedCorners:Boolean; mx_internal var backgroundColor:Object; private var dropShadow:RectangularDropShadow; protected var _borderMetrics:EdgeMetrics; mx_internal var backgroundAlphaName:String; mx_internal static const VERSION:String = "3.3.0.4852"; private static var BORDER_WIDTHS:Object = {none:0, solid:1, inset:2, outset:2, alert:3, dropdown:2, menuBorder:1, comboNonEdit:2}; public function HaloBorder(){ BORDER_WIDTHS["default"] = 3; } override public function styleChanged(_arg1:String):void{ if ((((((((((_arg1 == null)) || ((_arg1 == "styleName")))) || ((_arg1 == "borderStyle")))) || ((_arg1 == "borderThickness")))) || ((_arg1 == "borderSides")))){ _borderMetrics = null; }; invalidateDisplayList(); } override protected function updateDisplayList(_arg1:Number, _arg2:Number):void{ if (((isNaN(_arg1)) || (isNaN(_arg2)))){ return; }; super.updateDisplayList(_arg1, _arg2); backgroundColor = getBackgroundColor(); bRoundedCorners = false; backgroundAlphaName = "backgroundAlpha"; backgroundHole = null; radius = 0; radiusObj = null; drawBorder(_arg1, _arg2); drawBackground(_arg1, _arg2); } mx_internal function drawBorder(_arg1:Number, _arg2:Number):void{ var _local5:Number; var _local6:uint; var _local7:uint; var _local8:String; var _local9:Number; var _local10:uint; var _local11:Boolean; var _local12:uint; var _local13:Array; var _local14:Array; var _local15:uint; var _local16:uint; var _local17:uint; var _local18:uint; var _local19:Boolean; var _local20:Object; var _local22:Number; var _local23:Number; var _local24:Number; var _local25:Object; var _local27:Number; var _local28:Number; var _local29:IContainer; var _local30:EdgeMetrics; var _local31:Boolean; var _local32:Number; var _local33:Array; var _local34:uint; var _local35:Boolean; var _local36:Number; var _local3:String = getStyle("borderStyle"); var _local4:Array = getStyle("highlightAlphas"); var _local21:Boolean; var _local26:Graphics = graphics; _local26.clear(); if (_local3){ switch (_local3){ case "none": break; case "inset": _local7 = getStyle("borderColor"); _local22 = ColorUtil.adjustBrightness2(_local7, -40); _local23 = ColorUtil.adjustBrightness2(_local7, 25); _local24 = ColorUtil.adjustBrightness2(_local7, 40); _local25 = backgroundColor; if ((((_local25 === null)) || ((_local25 === "")))){ _local25 = _local7; }; draw3dBorder(_local23, _local22, _local24, Number(_local25), Number(_local25), Number(_local25)); break; case "outset": _local7 = getStyle("borderColor"); _local22 = ColorUtil.adjustBrightness2(_local7, -40); _local23 = ColorUtil.adjustBrightness2(_local7, -25); _local24 = ColorUtil.adjustBrightness2(_local7, 40); _local25 = backgroundColor; if ((((_local25 === null)) || ((_local25 === "")))){ _local25 = _local7; }; draw3dBorder(_local23, _local24, _local22, Number(_local25), Number(_local25), Number(_local25)); break; case "alert": case "default": if (FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0){ _local27 = getStyle("backgroundAlpha"); _local5 = getStyle("borderAlpha"); backgroundAlphaName = "borderAlpha"; radius = getStyle("cornerRadius"); bRoundedCorners = (getStyle("roundedBottomCorners").toString().toLowerCase() == "true"); _local28 = (bRoundedCorners) ? radius : 0; drawDropShadow(0, 0, _arg1, _arg2, radius, radius, _local28, _local28); if (!bRoundedCorners){ radiusObj = {}; }; _local29 = (parent as IContainer); if (_local29){ _local30 = _local29.viewMetrics; backgroundHole = {x:_local30.left, y:_local30.top, w:Math.max(0, ((_arg1 - _local30.left) - _local30.right)), h:Math.max(0, ((_arg2 - _local30.top) - _local30.bottom)), r:0}; if ((((backgroundHole.w > 0)) && ((backgroundHole.h > 0)))){ if (_local27 != _local5){ drawDropShadow(backgroundHole.x, backgroundHole.y, backgroundHole.w, backgroundHole.h, 0, 0, 0, 0); }; _local26.beginFill(Number(backgroundColor), _local27); _local26.drawRect(backgroundHole.x, backgroundHole.y, backgroundHole.w, backgroundHole.h); _local26.endFill(); }; }; backgroundColor = getStyle("borderColor"); }; break; case "dropdown": _local12 = getStyle("dropdownBorderColor"); drawDropShadow(0, 0, _arg1, _arg2, 4, 0, 0, 4); drawRoundRect(0, 0, _arg1, _arg2, {tl:4, tr:0, br:0, bl:4}, 5068126, 1); drawRoundRect(0, 0, _arg1, _arg2, {tl:4, tr:0, br:0, bl:4}, [0xFFFFFF, 0xFFFFFF], [0.7, 0], verticalGradientMatrix(0, 0, _arg1, _arg2)); drawRoundRect(1, 1, (_arg1 - 1), (_arg2 - 2), {tl:3, tr:0, br:0, bl:3}, 0xFFFFFF, 1); drawRoundRect(1, 2, (_arg1 - 1), (_arg2 - 3), {tl:3, tr:0, br:0, bl:3}, [0xEEEEEE, 0xFFFFFF], 1, verticalGradientMatrix(0, 0, (_arg1 - 1), (_arg2 - 3))); if (!isNaN(_local12)){ drawRoundRect(0, 0, (_arg1 + 1), _arg2, {tl:4, tr:0, br:0, bl:4}, _local12, 0.5); drawRoundRect(1, 1, (_arg1 - 1), (_arg2 - 2), {tl:3, tr:0, br:0, bl:3}, 0xFFFFFF, 1); drawRoundRect(1, 2, (_arg1 - 1), (_arg2 - 3), {tl:3, tr:0, br:0, bl:3}, [0xEEEEEE, 0xFFFFFF], 1, verticalGradientMatrix(0, 0, (_arg1 - 1), (_arg2 - 3))); }; backgroundColor = null; break; case "menuBorder": _local7 = getStyle("borderColor"); drawRoundRect(0, 0, _arg1, _arg2, 0, _local7, 1); drawDropShadow(1, 1, (_arg1 - 2), (_arg2 - 2), 0, 0, 0, 0); break; case "comboNonEdit": break; case "controlBar": if ((((_arg1 == 0)) || ((_arg2 == 0)))){ backgroundColor = null; break; }; _local14 = getStyle("footerColors"); _local31 = !((_local14 == null)); _local32 = getStyle("borderAlpha"); if (_local31){ _local26.lineStyle(0, ((_local14.length > 0)) ? _local14[1] : _local14[0], _local32); _local26.moveTo(0, 0); _local26.lineTo(_arg1, 0); _local26.lineStyle(0, 0, 0); if (((((parent) && (parent.parent))) && ((parent.parent is IStyleClient)))){ radius = IStyleClient(parent.parent).getStyle("cornerRadius"); _local32 = IStyleClient(parent.parent).getStyle("borderAlpha"); }; if (isNaN(radius)){ radius = 0; }; if (IStyleClient(parent.parent).getStyle("roundedBottomCorners").toString().toLowerCase() != "true"){ radius = 0; }; drawRoundRect(0, 1, _arg1, (_arg2 - 1), {tl:0, tr:0, bl:radius, br:radius}, _local14, _local32, verticalGradientMatrix(0, 0, _arg1, _arg2)); if ((((_local14.length > 1)) && (!((_local14[0] == _local14[1]))))){ drawRoundRect(0, 1, _arg1, (_arg2 - 1), {tl:0, tr:0, bl:radius, br:radius}, [0xFFFFFF, 0xFFFFFF], _local4, verticalGradientMatrix(0, 0, _arg1, _arg2)); drawRoundRect(1, 2, (_arg1 - 2), (_arg2 - 3), {tl:0, tr:0, bl:(radius - 1), br:(radius - 1)}, _local14, _local32, verticalGradientMatrix(0, 0, _arg1, _arg2)); }; }; backgroundColor = null; break; case "applicationControlBar": _local13 = getStyle("fillColors"); _local5 = getStyle("backgroundAlpha"); _local4 = getStyle("highlightAlphas"); _local33 = getStyle("fillAlphas"); _local11 = getStyle("docked"); _local34 = uint(backgroundColor); radius = getStyle("cornerRadius"); if (!radius){ radius = 0; }; drawDropShadow(0, 1, _arg1, (_arg2 - 1), radius, radius, radius, radius); if (((!((backgroundColor === null))) && (StyleManager.isValidStyleValue(backgroundColor)))){ drawRoundRect(0, 1, _arg1, (_arg2 - 1), radius, _local34, _local5, verticalGradientMatrix(0, 0, _arg1, _arg2)); }; drawRoundRect(0, 1, _arg1, (_arg2 - 1), radius, _local13, _local33, verticalGradientMatrix(0, 0, _arg1, _arg2)); drawRoundRect(0, 1, _arg1, ((_arg2 / 2) - 1), {tl:radius, tr:radius, bl:0, br:0}, [0xFFFFFF, 0xFFFFFF], _local4, verticalGradientMatrix(0, 0, _arg1, ((_arg2 / 2) - 1))); drawRoundRect(0, 1, _arg1, (_arg2 - 1), {tl:radius, tr:radius, bl:0, br:0}, 0xFFFFFF, 0.3, null, GradientType.LINEAR, null, {x:0, y:2, w:_arg1, h:(_arg2 - 2), r:{tl:radius, tr:radius, bl:0, br:0}}); backgroundColor = null; break; default: _local7 = getStyle("borderColor"); _local9 = getStyle("borderThickness"); _local8 = getStyle("borderSides"); _local35 = true; radius = getStyle("cornerRadius"); bRoundedCorners = (getStyle("roundedBottomCorners").toString().toLowerCase() == "true"); _local36 = Math.max((radius - _local9), 0); _local20 = {x:_local9, y:_local9, w:(_arg1 - (_local9 * 2)), h:(_arg2 - (_local9 * 2)), r:_local36}; if (!bRoundedCorners){ radiusObj = {tl:radius, tr:radius, bl:0, br:0}; _local20.r = {tl:_local36, tr:_local36, bl:0, br:0}; }; if (_local8 != "left top right bottom"){ _local20.r = {tl:_local36, tr:_local36, bl:(bRoundedCorners) ? _local36 : 0, br:(bRoundedCorners) ? _local36 : 0}; radiusObj = {tl:radius, tr:radius, bl:(bRoundedCorners) ? radius : 0, br:(bRoundedCorners) ? radius : 0}; _local8 = _local8.toLowerCase(); if (_local8.indexOf("left") == -1){ _local20.x = 0; _local20.w = (_local20.w + _local9); _local20.r.tl = 0; _local20.r.bl = 0; radiusObj.tl = 0; radiusObj.bl = 0; _local35 = false; }; if (_local8.indexOf("top") == -1){ _local20.y = 0; _local20.h = (_local20.h + _local9); _local20.r.tl = 0; _local20.r.tr = 0; radiusObj.tl = 0; radiusObj.tr = 0; _local35 = false; }; if (_local8.indexOf("right") == -1){ _local20.w = (_local20.w + _local9); _local20.r.tr = 0; _local20.r.br = 0; radiusObj.tr = 0; radiusObj.br = 0; _local35 = false; }; if (_local8.indexOf("bottom") == -1){ _local20.h = (_local20.h + _local9); _local20.r.bl = 0; _local20.r.br = 0; radiusObj.bl = 0; radiusObj.br = 0; _local35 = false; }; }; if ((((radius == 0)) && (_local35))){ drawDropShadow(0, 0, _arg1, _arg2, 0, 0, 0, 0); _local26.beginFill(_local7); _local26.drawRect(0, 0, _arg1, _arg2); _local26.drawRect(_local9, _local9, (_arg1 - (2 * _local9)), (_arg2 - (2 * _local9))); _local26.endFill(); } else { if (radiusObj){ drawDropShadow(0, 0, _arg1, _arg2, radiusObj.tl, radiusObj.tr, radiusObj.br, radiusObj.bl); drawRoundRect(0, 0, _arg1, _arg2, radiusObj, _local7, 1, null, null, null, _local20); radiusObj.tl = Math.max((radius - _local9), 0); radiusObj.tr = Math.max((radius - _local9), 0); radiusObj.bl = (bRoundedCorners) ? Math.max((radius - _local9), 0) : 0; radiusObj.br = (bRoundedCorners) ? Math.max((radius - _local9), 0) : 0; } else { drawDropShadow(0, 0, _arg1, _arg2, radius, radius, radius, radius); drawRoundRect(0, 0, _arg1, _arg2, radius, _local7, 1, null, null, null, _local20); radius = Math.max((getStyle("cornerRadius") - _local9), 0); }; }; }; }; } mx_internal function drawBackground(_arg1:Number, _arg2:Number):void{ var _local4:Number; var _local5:Number; var _local6:EdgeMetrics; var _local7:Graphics; var _local8:Number; var _local9:Number; var _local10:Array; var _local11:Number; if (((((((!((backgroundColor === null))) && (!((backgroundColor === ""))))) || (getStyle("mouseShield")))) || (getStyle("mouseShieldChildren")))){ _local4 = Number(backgroundColor); _local5 = 1; _local6 = getBackgroundColorMetrics(); _local7 = graphics; if (((((isNaN(_local4)) || ((backgroundColor === "")))) || ((backgroundColor === null)))){ _local5 = 0; _local4 = 0xFFFFFF; } else { _local5 = getStyle(backgroundAlphaName); }; if (((!((radius == 0))) || (backgroundHole))){ _local8 = _local6.bottom; if (radiusObj){ _local9 = (bRoundedCorners) ? radius : 0; radiusObj = {tl:radius, tr:radius, bl:_local9, br:_local9}; drawRoundRect(_local6.left, _local6.top, (width - (_local6.left + _local6.right)), (height - (_local6.top + _local8)), radiusObj, _local4, _local5, null, GradientType.LINEAR, null, backgroundHole); } else { drawRoundRect(_local6.left, _local6.top, (width - (_local6.left + _local6.right)), (height - (_local6.top + _local8)), radius, _local4, _local5, null, GradientType.LINEAR, null, backgroundHole); }; } else { _local7.beginFill(_local4, _local5); _local7.drawRect(_local6.left, _local6.top, ((_arg1 - _local6.right) - _local6.left), ((_arg2 - _local6.bottom) - _local6.top)); _local7.endFill(); }; }; var _local3:String = getStyle("borderStyle"); if ((((((FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0)) && ((((_local3 == "alert")) || ((_local3 == "default")))))) && ((getStyle("headerColors") == null)))){ _local10 = getStyle("highlightAlphas"); _local11 = (_local10) ? _local10[0] : 0.3; drawRoundRect(0, 0, _arg1, _arg2, {tl:radius, tr:radius, bl:0, br:0}, 0xFFFFFF, _local11, null, GradientType.LINEAR, null, {x:0, y:1, w:_arg1, h:(_arg2 - 1), r:{tl:radius, tr:radius, bl:0, br:0}}); }; } mx_internal function drawDropShadow(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number, _arg8:Number):void{ var _local11:Number; var _local12:Boolean; if ((((((((getStyle("dropShadowEnabled") == false)) || ((getStyle("dropShadowEnabled") == "false")))) || ((_arg3 == 0)))) || ((_arg4 == 0)))){ return; }; var _local9:Number = getStyle("shadowDistance"); var _local10:String = getStyle("shadowDirection"); if (getStyle("borderStyle") == "applicationControlBar"){ _local12 = getStyle("docked"); _local11 = (_local12) ? 90 : getDropShadowAngle(_local9, _local10); _local9 = Math.abs(_local9); } else { _local11 = getDropShadowAngle(_local9, _local10); _local9 = (Math.abs(_local9) + 2); }; if (!dropShadow){ dropShadow = new RectangularDropShadow(); }; dropShadow.distance = _local9; dropShadow.angle = _local11; dropShadow.color = getStyle("dropShadowColor"); dropShadow.alpha = 0.4; dropShadow.tlRadius = _arg5; dropShadow.trRadius = _arg6; dropShadow.blRadius = _arg8; dropShadow.brRadius = _arg7; dropShadow.drawShadow(graphics, _arg1, _arg2, _arg3, _arg4); } mx_internal function getBackgroundColor():Object{ var _local2:Object; var _local1:IUIComponent = (parent as IUIComponent); if (((_local1) && (!(_local1.enabled)))){ _local2 = getStyle("backgroundDisabledColor"); if (((!((_local2 === null))) && (StyleManager.isValidStyleValue(_local2)))){ return (_local2); }; }; return (getStyle("backgroundColor")); } mx_internal function draw3dBorder(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number):void{ var _local7:Number = width; var _local8:Number = height; drawDropShadow(0, 0, width, height, 0, 0, 0, 0); var _local9:Graphics = graphics; _local9.beginFill(_arg1); _local9.drawRect(0, 0, _local7, _local8); _local9.drawRect(1, 0, (_local7 - 2), _local8); _local9.endFill(); _local9.beginFill(_arg2); _local9.drawRect(1, 0, (_local7 - 2), 1); _local9.endFill(); _local9.beginFill(_arg3); _local9.drawRect(1, (_local8 - 1), (_local7 - 2), 1); _local9.endFill(); _local9.beginFill(_arg4); _local9.drawRect(1, 1, (_local7 - 2), 1); _local9.endFill(); _local9.beginFill(_arg5); _local9.drawRect(1, (_local8 - 2), (_local7 - 2), 1); _local9.endFill(); _local9.beginFill(_arg6); _local9.drawRect(1, 2, (_local7 - 2), (_local8 - 4)); _local9.drawRect(2, 2, (_local7 - 4), (_local8 - 4)); _local9.endFill(); } mx_internal function getBackgroundColorMetrics():EdgeMetrics{ return (borderMetrics); } mx_internal function getDropShadowAngle(_arg1:Number, _arg2:String):Number{ if (_arg2 == "left"){ return (((_arg1 >= 0)) ? 135 : 225); //unresolved jump }; if (_arg2 == "right"){ return (((_arg1 >= 0)) ? 45 : 315); //unresolved jump }; return (((_arg1 >= 0)) ? 90 : 270); } override public function get borderMetrics():EdgeMetrics{ var _local1:Number; var _local3:String; if (_borderMetrics){ return (_borderMetrics); }; var _local2:String = getStyle("borderStyle"); if ((((_local2 == "default")) || ((_local2 == "alert")))){ if (FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0){ _borderMetrics = new EdgeMetrics(0, 0, 0, 0); } else { return (EdgeMetrics.EMPTY); }; } else { if ((((_local2 == "controlBar")) || ((_local2 == "applicationControlBar")))){ _borderMetrics = new EdgeMetrics(1, 1, 1, 1); } else { if (_local2 == "solid"){ _local1 = getStyle("borderThickness"); if (isNaN(_local1)){ _local1 = 0; }; _borderMetrics = new EdgeMetrics(_local1, _local1, _local1, _local1); _local3 = getStyle("borderSides"); if (_local3 != "left top right bottom"){ if (_local3.indexOf("left") == -1){ _borderMetrics.left = 0; }; if (_local3.indexOf("top") == -1){ _borderMetrics.top = 0; }; if (_local3.indexOf("right") == -1){ _borderMetrics.right = 0; }; if (_local3.indexOf("bottom") == -1){ _borderMetrics.bottom = 0; }; }; } else { _local1 = BORDER_WIDTHS[_local2]; if (isNaN(_local1)){ _local1 = 0; }; _borderMetrics = new EdgeMetrics(_local1, _local1, _local1, _local1); }; }; }; return (_borderMetrics); } } }//package mx.skins.halo
Section 69
//HaloFocusRect (mx.skins.halo.HaloFocusRect) package mx.skins.halo { import mx.core.*; import flash.display.*; import mx.styles.*; import mx.skins.*; import mx.utils.*; public class HaloFocusRect extends ProgrammaticSkin implements IStyleClient { private var _focusColor:Number; mx_internal static const VERSION:String = "3.3.0.4852"; public function get inheritingStyles():Object{ return (styleName.inheritingStyles); } public function set inheritingStyles(_arg1:Object):void{ } public function notifyStyleChangeInChildren(_arg1:String, _arg2:Boolean):void{ } public function registerEffects(_arg1:Array):void{ } public function regenerateStyleCache(_arg1:Boolean):void{ } public function get styleDeclaration():CSSStyleDeclaration{ return (CSSStyleDeclaration(styleName)); } public function getClassStyleDeclarations():Array{ return ([]); } public function get className():String{ return ("HaloFocusRect"); } public function clearStyle(_arg1:String):void{ if (_arg1 == "focusColor"){ _focusColor = NaN; }; } public function setStyle(_arg1:String, _arg2):void{ if (_arg1 == "focusColor"){ _focusColor = _arg2; }; } public function set nonInheritingStyles(_arg1:Object):void{ } public function get nonInheritingStyles():Object{ return (styleName.nonInheritingStyles); } override protected function updateDisplayList(_arg1:Number, _arg2:Number):void{ var _local12:Number; var _local13:Number; var _local14:Number; var _local15:Number; var _local16:Number; var _local17:Number; super.updateDisplayList(_arg1, _arg2); var _local3:String = getStyle("focusBlendMode"); var _local4:Number = getStyle("focusAlpha"); var _local5:Number = getStyle("focusColor"); var _local6:Number = getStyle("cornerRadius"); var _local7:Number = getStyle("focusThickness"); var _local8:String = getStyle("focusRoundedCorners"); var _local9:Number = getStyle("themeColor"); var _local10:Number = _local5; if (isNaN(_local10)){ _local10 = _local9; }; var _local11:Graphics = graphics; _local11.clear(); if (_local3){ blendMode = _local3; }; if (((!((_local8 == "tl tr bl br"))) && ((_local6 > 0)))){ _local12 = 0; _local13 = 0; _local14 = 0; _local15 = 0; _local16 = (_local6 + _local7); if (_local8.indexOf("tl") >= 0){ _local12 = _local16; }; if (_local8.indexOf("tr") >= 0){ _local14 = _local16; }; if (_local8.indexOf("bl") >= 0){ _local13 = _local16; }; if (_local8.indexOf("br") >= 0){ _local15 = _local16; }; _local11.beginFill(_local10, _local4); GraphicsUtil.drawRoundRectComplex(_local11, 0, 0, _arg1, _arg2, _local12, _local14, _local13, _local15); _local12 = (_local12) ? _local6 : 0; _local14 = (_local14) ? _local6 : 0; _local13 = (_local13) ? _local6 : 0; _local15 = (_local15) ? _local6 : 0; GraphicsUtil.drawRoundRectComplex(_local11, _local7, _local7, (_arg1 - (2 * _local7)), (_arg2 - (2 * _local7)), _local12, _local14, _local13, _local15); _local11.endFill(); _local16 = (_local6 + (_local7 / 2)); _local12 = (_local12) ? _local16 : 0; _local14 = (_local14) ? _local16 : 0; _local13 = (_local13) ? _local16 : 0; _local15 = (_local15) ? _local16 : 0; _local11.beginFill(_local10, _local4); GraphicsUtil.drawRoundRectComplex(_local11, (_local7 / 2), (_local7 / 2), (_arg1 - _local7), (_arg2 - _local7), _local12, _local14, _local13, _local15); _local12 = (_local12) ? _local6 : 0; _local14 = (_local14) ? _local6 : 0; _local13 = (_local13) ? _local6 : 0; _local15 = (_local15) ? _local6 : 0; GraphicsUtil.drawRoundRectComplex(_local11, _local7, _local7, (_arg1 - (2 * _local7)), (_arg2 - (2 * _local7)), _local12, _local14, _local13, _local15); _local11.endFill(); } else { _local11.beginFill(_local10, _local4); _local17 = (((_local6 > 0)) ? (_local6 + _local7) : 0 * 2); _local11.drawRoundRect(0, 0, _arg1, _arg2, _local17, _local17); _local17 = (_local6 * 2); _local11.drawRoundRect(_local7, _local7, (_arg1 - (2 * _local7)), (_arg2 - (2 * _local7)), _local17, _local17); _local11.endFill(); _local11.beginFill(_local10, _local4); _local17 = (((_local6 > 0)) ? (_local6 + (_local7 / 2)) : 0 * 2); _local11.drawRoundRect((_local7 / 2), (_local7 / 2), (_arg1 - _local7), (_arg2 - _local7), _local17, _local17); _local17 = (_local6 * 2); _local11.drawRoundRect(_local7, _local7, (_arg1 - (2 * _local7)), (_arg2 - (2 * _local7)), _local17, _local17); _local11.endFill(); }; } override public function getStyle(_arg1:String){ return (((_arg1 == "focusColor")) ? _focusColor : super.getStyle(_arg1)); } public function set styleDeclaration(_arg1:CSSStyleDeclaration):void{ } } }//package mx.skins.halo
Section 70
//Border (mx.skins.Border) package mx.skins { import mx.core.*; public class Border extends ProgrammaticSkin implements IBorder { mx_internal static const VERSION:String = "3.3.0.4852"; public function get borderMetrics():EdgeMetrics{ return (EdgeMetrics.EMPTY); } } }//package mx.skins
Section 71
//ProgrammaticSkin (mx.skins.ProgrammaticSkin) package mx.skins { import mx.core.*; import flash.display.*; import mx.styles.*; import flash.geom.*; import mx.managers.*; import mx.utils.*; public class ProgrammaticSkin extends FlexShape implements IFlexDisplayObject, IInvalidating, ILayoutManagerClient, ISimpleStyleClient, IProgrammaticSkin { private var _initialized:Boolean;// = false private var _height:Number; private var invalidateDisplayListFlag:Boolean;// = false private var _styleName:IStyleClient; private var _nestLevel:int;// = 0 private var _processedDescriptors:Boolean;// = false private var _updateCompletePendingFlag:Boolean;// = true private var _width:Number; mx_internal static const VERSION:String = "3.3.0.4852"; private static var tempMatrix:Matrix = new Matrix(); public function ProgrammaticSkin(){ _width = measuredWidth; _height = measuredHeight; } public function getStyle(_arg1:String){ return ((_styleName) ? _styleName.getStyle(_arg1) : null); } protected function updateDisplayList(_arg1:Number, _arg2:Number):void{ } public function get nestLevel():int{ return (_nestLevel); } public function set nestLevel(_arg1:int):void{ _nestLevel = _arg1; invalidateDisplayList(); } override public function get height():Number{ return (_height); } public function get updateCompletePendingFlag():Boolean{ return (_updateCompletePendingFlag); } protected function verticalGradientMatrix(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Matrix{ return (rotatedGradientMatrix(_arg1, _arg2, _arg3, _arg4, 90)); } public function validateSize(_arg1:Boolean=false):void{ } public function invalidateDisplayList():void{ if (((!(invalidateDisplayListFlag)) && ((nestLevel > 0)))){ invalidateDisplayListFlag = true; UIComponentGlobals.layoutManager.invalidateDisplayList(this); }; } public function set updateCompletePendingFlag(_arg1:Boolean):void{ _updateCompletePendingFlag = _arg1; } protected function horizontalGradientMatrix(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Matrix{ return (rotatedGradientMatrix(_arg1, _arg2, _arg3, _arg4, 0)); } override public function set height(_arg1:Number):void{ _height = _arg1; invalidateDisplayList(); } public function set processedDescriptors(_arg1:Boolean):void{ _processedDescriptors = _arg1; } public function validateDisplayList():void{ invalidateDisplayListFlag = false; updateDisplayList(width, height); } public function get measuredWidth():Number{ return (0); } override public function set width(_arg1:Number):void{ _width = _arg1; invalidateDisplayList(); } public function get measuredHeight():Number{ return (0); } public function set initialized(_arg1:Boolean):void{ _initialized = _arg1; } protected function drawRoundRect(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Object=null, _arg6:Object=null, _arg7:Object=null, _arg8:Matrix=null, _arg9:String="linear", _arg10:Array=null, _arg11:Object=null):void{ var _local13:Number; var _local14:Array; var _local15:Object; var _local12:Graphics = graphics; if ((((_arg3 == 0)) || ((_arg4 == 0)))){ return; }; if (_arg6 !== null){ if ((_arg6 is uint)){ _local12.beginFill(uint(_arg6), Number(_arg7)); } else { if ((_arg6 is Array)){ _local14 = ((_arg7 is Array)) ? (_arg7 as Array) : [_arg7, _arg7]; if (!_arg10){ _arg10 = [0, 0xFF]; }; _local12.beginGradientFill(_arg9, (_arg6 as Array), _local14, _arg10, _arg8); }; }; }; if (!_arg5){ _local12.drawRect(_arg1, _arg2, _arg3, _arg4); } else { if ((_arg5 is Number)){ _local13 = (Number(_arg5) * 2); _local12.drawRoundRect(_arg1, _arg2, _arg3, _arg4, _local13, _local13); } else { GraphicsUtil.drawRoundRectComplex(_local12, _arg1, _arg2, _arg3, _arg4, _arg5.tl, _arg5.tr, _arg5.bl, _arg5.br); }; }; if (_arg11){ _local15 = _arg11.r; if ((_local15 is Number)){ _local13 = (Number(_local15) * 2); _local12.drawRoundRect(_arg11.x, _arg11.y, _arg11.w, _arg11.h, _local13, _local13); } else { GraphicsUtil.drawRoundRectComplex(_local12, _arg11.x, _arg11.y, _arg11.w, _arg11.h, _local15.tl, _local15.tr, _local15.bl, _local15.br); }; }; if (_arg6 !== null){ _local12.endFill(); }; } public function get processedDescriptors():Boolean{ return (_processedDescriptors); } public function set styleName(_arg1:Object):void{ if (_styleName != _arg1){ _styleName = (_arg1 as IStyleClient); invalidateDisplayList(); }; } public function setActualSize(_arg1:Number, _arg2:Number):void{ var _local3:Boolean; if (_width != _arg1){ _width = _arg1; _local3 = true; }; if (_height != _arg2){ _height = _arg2; _local3 = true; }; if (_local3){ invalidateDisplayList(); }; } public function styleChanged(_arg1:String):void{ invalidateDisplayList(); } override public function get width():Number{ return (_width); } public function invalidateProperties():void{ } public function get initialized():Boolean{ return (_initialized); } protected function rotatedGradientMatrix(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number):Matrix{ tempMatrix.createGradientBox(_arg3, _arg4, ((_arg5 * Math.PI) / 180), _arg1, _arg2); return (tempMatrix); } public function move(_arg1:Number, _arg2:Number):void{ this.x = _arg1; this.y = _arg2; } public function get styleName():Object{ return (_styleName); } public function validateNow():void{ if (invalidateDisplayListFlag){ validateDisplayList(); }; } public function invalidateSize():void{ } public function validateProperties():void{ } } }//package mx.skins
Section 72
//RectangularBorder (mx.skins.RectangularBorder) package mx.skins { import flash.events.*; import mx.core.*; import flash.display.*; import mx.styles.*; import flash.system.*; import flash.geom.*; import flash.utils.*; import flash.net.*; import mx.resources.*; public class RectangularBorder extends Border implements IRectangularBorder { private var backgroundImage:DisplayObject; private var backgroundImageHeight:Number; private var _backgroundImageBounds:Rectangle; private var backgroundImageStyle:Object; private var backgroundImageWidth:Number; private var resourceManager:IResourceManager; mx_internal static const VERSION:String = "3.3.0.4852"; public function RectangularBorder(){ resourceManager = ResourceManager.getInstance(); super(); addEventListener(Event.REMOVED, removedHandler); } public function layoutBackgroundImage():void{ var _local4:Number; var _local5:Number; var _local7:Number; var _local8:Number; var _local14:Number; var _local15:Graphics; var _local1:DisplayObject = parent; var _local2:EdgeMetrics = ((_local1 is IContainer)) ? IContainer(_local1).viewMetrics : borderMetrics; var _local3 = !((getStyle("backgroundAttachment") == "fixed")); if (_backgroundImageBounds){ _local4 = _backgroundImageBounds.width; _local5 = _backgroundImageBounds.height; } else { _local4 = ((width - _local2.left) - _local2.right); _local5 = ((height - _local2.top) - _local2.bottom); }; var _local6:Number = getBackgroundSize(); if (isNaN(_local6)){ _local7 = 1; _local8 = 1; } else { _local14 = (_local6 * 0.01); _local7 = ((_local14 * _local4) / backgroundImageWidth); _local8 = ((_local14 * _local5) / backgroundImageHeight); }; backgroundImage.scaleX = _local7; backgroundImage.scaleY = _local8; var _local9:Number = Math.round((0.5 * (_local4 - (backgroundImageWidth * _local7)))); var _local10:Number = Math.round((0.5 * (_local5 - (backgroundImageHeight * _local8)))); backgroundImage.x = _local2.left; backgroundImage.y = _local2.top; var _local11:Shape = Shape(backgroundImage.mask); _local11.x = _local2.left; _local11.y = _local2.top; if (((_local3) && ((_local1 is IContainer)))){ _local9 = (_local9 - IContainer(_local1).horizontalScrollPosition); _local10 = (_local10 - IContainer(_local1).verticalScrollPosition); }; backgroundImage.alpha = getStyle("backgroundAlpha"); backgroundImage.x = (backgroundImage.x + _local9); backgroundImage.y = (backgroundImage.y + _local10); var _local12:Number = ((width - _local2.left) - _local2.right); var _local13:Number = ((height - _local2.top) - _local2.bottom); if (((!((_local11.width == _local12))) || (!((_local11.height == _local13))))){ _local15 = _local11.graphics; _local15.clear(); _local15.beginFill(0xFFFFFF); _local15.drawRect(0, 0, _local12, _local13); _local15.endFill(); }; } public function set backgroundImageBounds(_arg1:Rectangle):void{ _backgroundImageBounds = _arg1; invalidateDisplayList(); } private function getBackgroundSize():Number{ var _local3:int; var _local1:Number = NaN; var _local2:Object = getStyle("backgroundSize"); if (((_local2) && ((_local2 is String)))){ _local3 = _local2.indexOf("%"); if (_local3 != -1){ _local1 = Number(_local2.substr(0, _local3)); }; }; return (_local1); } private function removedHandler(_arg1:Event):void{ var _local2:IChildList; if (backgroundImage){ _local2 = ((parent is IRawChildrenContainer)) ? IRawChildrenContainer(parent).rawChildren : IChildList(parent); _local2.removeChild(backgroundImage.mask); _local2.removeChild(backgroundImage); backgroundImage = null; }; } private function initBackgroundImage(_arg1:DisplayObject):void{ backgroundImage = _arg1; if ((_arg1 is Loader)){ backgroundImageWidth = Loader(_arg1).contentLoaderInfo.width; backgroundImageHeight = Loader(_arg1).contentLoaderInfo.height; } else { backgroundImageWidth = backgroundImage.width; backgroundImageHeight = backgroundImage.height; if ((_arg1 is ISimpleStyleClient)){ ISimpleStyleClient(_arg1).styleName = styleName; }; }; var _local2:IChildList = ((parent is IRawChildrenContainer)) ? IRawChildrenContainer(parent).rawChildren : IChildList(parent); var _local3:Shape = new FlexShape(); _local3.name = "backgroundMask"; _local3.x = 0; _local3.y = 0; _local2.addChild(_local3); var _local4:int = _local2.getChildIndex(this); _local2.addChildAt(backgroundImage, (_local4 + 1)); backgroundImage.mask = _local3; } public function get backgroundImageBounds():Rectangle{ return (_backgroundImageBounds); } public function get hasBackgroundImage():Boolean{ return (!((backgroundImage == null))); } private function completeEventHandler(_arg1:Event):void{ if (!parent){ return; }; var _local2:DisplayObject = DisplayObject(LoaderInfo(_arg1.target).loader); initBackgroundImage(_local2); layoutBackgroundImage(); dispatchEvent(_arg1.clone()); } override protected function updateDisplayList(_arg1:Number, _arg2:Number):void{ var cls:Class; var newStyleObj:DisplayObject; var loader:Loader; var loaderContext:LoaderContext; var message:String; var unscaledWidth = _arg1; var unscaledHeight = _arg2; if (!parent){ return; }; var newStyle:Object = getStyle("backgroundImage"); if (newStyle != backgroundImageStyle){ removedHandler(null); backgroundImageStyle = newStyle; if (((newStyle) && ((newStyle as Class)))){ cls = Class(newStyle); initBackgroundImage(new (cls)); } else { if (((newStyle) && ((newStyle is String)))){ try { cls = Class(getDefinitionByName(String(newStyle))); } catch(e:Error) { }; if (cls){ newStyleObj = new (cls); initBackgroundImage(newStyleObj); } else { loader = new FlexLoader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeEventHandler); loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorEventHandler); loader.contentLoaderInfo.addEventListener(ErrorEvent.ERROR, errorEventHandler); loaderContext = new LoaderContext(); loaderContext.applicationDomain = new ApplicationDomain(ApplicationDomain.currentDomain); loader.load(new URLRequest(String(newStyle)), loaderContext); }; } else { if (newStyle){ message = resourceManager.getString("skins", "notLoaded", [newStyle]); throw (new Error(message)); }; }; }; }; if (backgroundImage){ layoutBackgroundImage(); }; } private function errorEventHandler(_arg1:Event):void{ } } }//package mx.skins
Section 73
//CSSStyleDeclaration (mx.styles.CSSStyleDeclaration) package mx.styles { import flash.events.*; import mx.core.*; import flash.display.*; import flash.utils.*; import mx.managers.*; public class CSSStyleDeclaration extends EventDispatcher { mx_internal var effects:Array; protected var overrides:Object; public var defaultFactory:Function; public var factory:Function; mx_internal var selectorRefCount:int;// = 0 private var styleManager:IStyleManager2; private var clones:Dictionary; mx_internal static const VERSION:String = "3.3.0.4852"; private static const NOT_A_COLOR:uint = 4294967295; private static const FILTERMAP_PROP:String = "__reserved__filterMap"; public function CSSStyleDeclaration(_arg1:String=null){ clones = new Dictionary(true); super(); if (_arg1){ styleManager = (Singleton.getInstance("mx.styles::IStyleManager2") as IStyleManager2); styleManager.setStyleDeclaration(_arg1, this, false); }; } mx_internal function addStyleToProtoChain(_arg1:Object, _arg2:DisplayObject, _arg3:Object=null):Object{ var p:String; var emptyObjectFactory:Function; var filteredChain:Object; var filterObjectFactory:Function; var i:String; var chain = _arg1; var target = _arg2; var filterMap = _arg3; var nodeAddedToChain:Boolean; var originalChain:Object = chain; if (filterMap){ chain = {}; }; if (defaultFactory != null){ defaultFactory.prototype = chain; chain = new defaultFactory(); nodeAddedToChain = true; }; if (factory != null){ factory.prototype = chain; chain = new factory(); nodeAddedToChain = true; }; if (overrides){ if ((((defaultFactory == null)) && ((factory == null)))){ emptyObjectFactory = function ():void{ }; emptyObjectFactory.prototype = chain; chain = new (emptyObjectFactory); nodeAddedToChain = true; }; for (p in overrides) { if (overrides[p] === undefined){ delete chain[p]; } else { chain[p] = overrides[p]; }; }; }; if (filterMap){ if (nodeAddedToChain){ filteredChain = {}; filterObjectFactory = function ():void{ }; filterObjectFactory.prototype = originalChain; filteredChain = new (filterObjectFactory); for (i in chain) { if (filterMap[i] != null){ filteredChain[filterMap[i]] = chain[i]; }; }; chain = filteredChain; chain[FILTERMAP_PROP] = filterMap; } else { chain = originalChain; }; }; if (nodeAddedToChain){ clones[chain] = 1; }; return (chain); } public function getStyle(_arg1:String){ var _local2:*; var _local3:*; if (overrides){ if ((((_arg1 in overrides)) && ((overrides[_arg1] === undefined)))){ return (undefined); }; _local3 = overrides[_arg1]; if (_local3 !== undefined){ return (_local3); }; }; if (factory != null){ factory.prototype = {}; _local2 = new factory(); _local3 = _local2[_arg1]; if (_local3 !== undefined){ return (_local3); }; }; if (defaultFactory != null){ defaultFactory.prototype = {}; _local2 = new defaultFactory(); _local3 = _local2[_arg1]; if (_local3 !== undefined){ return (_local3); }; }; return (undefined); } public function clearStyle(_arg1:String):void{ setStyle(_arg1, undefined); } public function setStyle(_arg1:String, _arg2):void{ var _local7:int; var _local8:Object; var _local3:Object = getStyle(_arg1); var _local4:Boolean; if ((((((((((selectorRefCount > 0)) && ((factory == null)))) && ((defaultFactory == null)))) && (!(overrides)))) && (!((_local3 === _arg2))))){ _local4 = true; }; if (_arg2 !== undefined){ setStyle(_arg1, _arg2); } else { if (_arg2 == _local3){ return; }; setStyle(_arg1, _arg2); }; var _local5:Array = SystemManagerGlobals.topLevelSystemManagers; var _local6:int = _local5.length; if (_local4){ _local7 = 0; while (_local7 < _local6) { _local8 = _local5[_local7]; _local8.regenerateStyleCache(true); _local7++; }; }; _local7 = 0; while (_local7 < _local6) { _local8 = _local5[_local7]; _local8.notifyStyleChangeInChildren(_arg1, true); _local7++; }; } private function clearStyleAttr(_arg1:String):void{ var _local2:*; if (!overrides){ overrides = {}; }; overrides[_arg1] = undefined; for (_local2 in clones) { delete _local2[_arg1]; }; } mx_internal function createProtoChainRoot():Object{ var _local1:Object = {}; if (defaultFactory != null){ defaultFactory.prototype = _local1; _local1 = new defaultFactory(); }; if (factory != null){ factory.prototype = _local1; _local1 = new factory(); }; clones[_local1] = 1; return (_local1); } mx_internal function clearOverride(_arg1:String):void{ if (((overrides) && (overrides[_arg1]))){ delete overrides[_arg1]; }; } mx_internal function setStyle(_arg1:String, _arg2):void{ var _local3:Object; var _local4:*; var _local5:Number; var _local6:Object; if (_arg2 === undefined){ clearStyleAttr(_arg1); return; }; if ((_arg2 is String)){ if (!styleManager){ styleManager = (Singleton.getInstance("mx.styles::IStyleManager2") as IStyleManager2); }; _local5 = styleManager.getColorName(_arg2); if (_local5 != NOT_A_COLOR){ _arg2 = _local5; }; }; if (defaultFactory != null){ _local3 = new defaultFactory(); if (_local3[_arg1] !== _arg2){ if (!overrides){ overrides = {}; }; overrides[_arg1] = _arg2; } else { if (overrides){ delete overrides[_arg1]; }; }; }; if (factory != null){ _local3 = new factory(); if (_local3[_arg1] !== _arg2){ if (!overrides){ overrides = {}; }; overrides[_arg1] = _arg2; } else { if (overrides){ delete overrides[_arg1]; }; }; }; if ((((defaultFactory == null)) && ((factory == null)))){ if (!overrides){ overrides = {}; }; overrides[_arg1] = _arg2; }; for (_local4 in clones) { _local6 = _local4[FILTERMAP_PROP]; if (_local6){ if (_local6[_arg1] != null){ _local4[_local6[_arg1]] = _arg2; }; } else { _local4[_arg1] = _arg2; }; }; } } }//package mx.styles
Section 74
//ISimpleStyleClient (mx.styles.ISimpleStyleClient) package mx.styles { public interface ISimpleStyleClient { function set styleName(_arg1:Object):void; function styleChanged(_arg1:String):void; function get styleName():Object; } }//package mx.styles
Section 75
//IStyleClient (mx.styles.IStyleClient) package mx.styles { public interface IStyleClient extends ISimpleStyleClient { function regenerateStyleCache(_arg1:Boolean):void; function get className():String; function clearStyle(_arg1:String):void; function getClassStyleDeclarations():Array; function get inheritingStyles():Object; function set nonInheritingStyles(_arg1:Object):void; function setStyle(_arg1:String, _arg2):void; function get styleDeclaration():CSSStyleDeclaration; function set styleDeclaration(_arg1:CSSStyleDeclaration):void; function get nonInheritingStyles():Object; function set inheritingStyles(_arg1:Object):void; function getStyle(_arg1:String); function notifyStyleChangeInChildren(_arg1:String, _arg2:Boolean):void; function registerEffects(_arg1:Array):void; } }//package mx.styles
Section 76
//IStyleManager (mx.styles.IStyleManager) package mx.styles { import flash.events.*; public interface IStyleManager { function isColorName(_arg1:String):Boolean; function registerParentDisplayListInvalidatingStyle(_arg1:String):void; function registerInheritingStyle(_arg1:String):void; function set stylesRoot(_arg1:Object):void; function get typeSelectorCache():Object; function styleDeclarationsChanged():void; function setStyleDeclaration(_arg1:String, _arg2:CSSStyleDeclaration, _arg3:Boolean):void; function isParentDisplayListInvalidatingStyle(_arg1:String):Boolean; function isSizeInvalidatingStyle(_arg1:String):Boolean; function get inheritingStyles():Object; function isValidStyleValue(_arg1):Boolean; function isParentSizeInvalidatingStyle(_arg1:String):Boolean; function getColorName(_arg1:Object):uint; function set typeSelectorCache(_arg1:Object):void; function unloadStyleDeclarations(_arg1:String, _arg2:Boolean=true):void; function getColorNames(_arg1:Array):void; function loadStyleDeclarations(_arg1:String, _arg2:Boolean=true, _arg3:Boolean=false):IEventDispatcher; function isInheritingStyle(_arg1:String):Boolean; function set inheritingStyles(_arg1:Object):void; function get stylesRoot():Object; function initProtoChainRoots():void; function registerColorName(_arg1:String, _arg2:uint):void; function registerParentSizeInvalidatingStyle(_arg1:String):void; function registerSizeInvalidatingStyle(_arg1:String):void; function clearStyleDeclaration(_arg1:String, _arg2:Boolean):void; function isInheritingTextFormatStyle(_arg1:String):Boolean; function getStyleDeclaration(_arg1:String):CSSStyleDeclaration; } }//package mx.styles
Section 77
//IStyleManager2 (mx.styles.IStyleManager2) package mx.styles { import flash.events.*; import flash.system.*; public interface IStyleManager2 extends IStyleManager { function get selectors():Array; function loadStyleDeclarations2(_arg1:String, _arg2:Boolean=true, _arg3:ApplicationDomain=null, _arg4:SecurityDomain=null):IEventDispatcher; } }//package mx.styles
Section 78
//IStyleModule (mx.styles.IStyleModule) package mx.styles { public interface IStyleModule { function unload():void; } }//package mx.styles
Section 79
//StyleManager (mx.styles.StyleManager) package mx.styles { import flash.events.*; import mx.core.*; import flash.system.*; public class StyleManager { mx_internal static const VERSION:String = "3.3.0.4852"; public static const NOT_A_COLOR:uint = 4294967295; private static var _impl:IStyleManager2; private static var implClassDependency:StyleManagerImpl; public static function isParentSizeInvalidatingStyle(_arg1:String):Boolean{ return (impl.isParentSizeInvalidatingStyle(_arg1)); } public static function registerInheritingStyle(_arg1:String):void{ impl.registerInheritingStyle(_arg1); } mx_internal static function set stylesRoot(_arg1:Object):void{ impl.stylesRoot = _arg1; } mx_internal static function get inheritingStyles():Object{ return (impl.inheritingStyles); } mx_internal static function styleDeclarationsChanged():void{ impl.styleDeclarationsChanged(); } public static function setStyleDeclaration(_arg1:String, _arg2:CSSStyleDeclaration, _arg3:Boolean):void{ impl.setStyleDeclaration(_arg1, _arg2, _arg3); } public static function registerParentDisplayListInvalidatingStyle(_arg1:String):void{ impl.registerParentDisplayListInvalidatingStyle(_arg1); } mx_internal static function get typeSelectorCache():Object{ return (impl.typeSelectorCache); } mx_internal static function set inheritingStyles(_arg1:Object):void{ impl.inheritingStyles = _arg1; } public static function isColorName(_arg1:String):Boolean{ return (impl.isColorName(_arg1)); } public static function isParentDisplayListInvalidatingStyle(_arg1:String):Boolean{ return (impl.isParentDisplayListInvalidatingStyle(_arg1)); } public static function isSizeInvalidatingStyle(_arg1:String):Boolean{ return (impl.isSizeInvalidatingStyle(_arg1)); } public static function getColorName(_arg1:Object):uint{ return (impl.getColorName(_arg1)); } mx_internal static function set typeSelectorCache(_arg1:Object):void{ impl.typeSelectorCache = _arg1; } public static function unloadStyleDeclarations(_arg1:String, _arg2:Boolean=true):void{ impl.unloadStyleDeclarations(_arg1, _arg2); } public static function getColorNames(_arg1:Array):void{ impl.getColorNames(_arg1); } public static function loadStyleDeclarations(_arg1:String, _arg2:Boolean=true, _arg3:Boolean=false, _arg4:ApplicationDomain=null, _arg5:SecurityDomain=null):IEventDispatcher{ return (impl.loadStyleDeclarations2(_arg1, _arg2, _arg4, _arg5)); } private static function get impl():IStyleManager2{ if (!_impl){ _impl = IStyleManager2(Singleton.getInstance("mx.styles::IStyleManager2")); }; return (_impl); } public static function isValidStyleValue(_arg1):Boolean{ return (impl.isValidStyleValue(_arg1)); } mx_internal static function get stylesRoot():Object{ return (impl.stylesRoot); } public static function isInheritingStyle(_arg1:String):Boolean{ return (impl.isInheritingStyle(_arg1)); } mx_internal static function initProtoChainRoots():void{ impl.initProtoChainRoots(); } public static function registerParentSizeInvalidatingStyle(_arg1:String):void{ impl.registerParentSizeInvalidatingStyle(_arg1); } public static function get selectors():Array{ return (impl.selectors); } public static function registerSizeInvalidatingStyle(_arg1:String):void{ impl.registerSizeInvalidatingStyle(_arg1); } public static function clearStyleDeclaration(_arg1:String, _arg2:Boolean):void{ impl.clearStyleDeclaration(_arg1, _arg2); } public static function registerColorName(_arg1:String, _arg2:uint):void{ impl.registerColorName(_arg1, _arg2); } public static function isInheritingTextFormatStyle(_arg1:String):Boolean{ return (impl.isInheritingTextFormatStyle(_arg1)); } public static function getStyleDeclaration(_arg1:String):CSSStyleDeclaration{ return (impl.getStyleDeclaration(_arg1)); } } }//package mx.styles
Section 80
//StyleManagerImpl (mx.styles.StyleManagerImpl) package mx.styles { import flash.events.*; import mx.core.*; import flash.system.*; import flash.utils.*; import mx.modules.*; import mx.events.*; import mx.resources.*; import mx.managers.*; public class StyleManagerImpl implements IStyleManager2 { private var _stylesRoot:Object; private var _selectors:Object; private var styleModules:Object; private var _inheritingStyles:Object; private var resourceManager:IResourceManager; private var _typeSelectorCache:Object; mx_internal static const VERSION:String = "3.3.0.4852"; private static var parentSizeInvalidatingStyles:Object = {bottom:true, horizontalCenter:true, left:true, right:true, top:true, verticalCenter:true, baseline:true}; private static var colorNames:Object = {transparent:"transparent", black:0, blue:0xFF, green:0x8000, gray:0x808080, silver:0xC0C0C0, lime:0xFF00, olive:0x808000, white:0xFFFFFF, yellow:0xFFFF00, maroon:0x800000, navy:128, red:0xFF0000, purple:0x800080, teal:0x8080, fuchsia:0xFF00FF, aqua:0xFFFF, magenta:0xFF00FF, cyan:0xFFFF, halogreen:8453965, haloblue:40447, haloorange:0xFFB600, halosilver:11455193}; private static var inheritingTextFormatStyles:Object = {align:true, bold:true, color:true, font:true, indent:true, italic:true, size:true}; private static var instance:IStyleManager2; private static var parentDisplayListInvalidatingStyles:Object = {bottom:true, horizontalCenter:true, left:true, right:true, top:true, verticalCenter:true, baseline:true}; private static var sizeInvalidatingStyles:Object = {borderStyle:true, borderThickness:true, fontAntiAliasType:true, fontFamily:true, fontGridFitType:true, fontSharpness:true, fontSize:true, fontStyle:true, fontThickness:true, fontWeight:true, headerHeight:true, horizontalAlign:true, horizontalGap:true, kerning:true, leading:true, letterSpacing:true, paddingBottom:true, paddingLeft:true, paddingRight:true, paddingTop:true, strokeWidth:true, tabHeight:true, tabWidth:true, verticalAlign:true, verticalGap:true}; public function StyleManagerImpl(){ _selectors = {}; styleModules = {}; resourceManager = ResourceManager.getInstance(); _inheritingStyles = {}; _typeSelectorCache = {}; super(); } public function setStyleDeclaration(_arg1:String, _arg2:CSSStyleDeclaration, _arg3:Boolean):void{ _arg2.selectorRefCount++; _selectors[_arg1] = _arg2; typeSelectorCache = {}; if (_arg3){ styleDeclarationsChanged(); }; } public function registerParentDisplayListInvalidatingStyle(_arg1:String):void{ parentDisplayListInvalidatingStyles[_arg1] = true; } public function getStyleDeclaration(_arg1:String):CSSStyleDeclaration{ var _local2:int; if (_arg1.charAt(0) != "."){ _local2 = _arg1.lastIndexOf("."); if (_local2 != -1){ _arg1 = _arg1.substr((_local2 + 1)); }; }; return (_selectors[_arg1]); } public function set typeSelectorCache(_arg1:Object):void{ _typeSelectorCache = _arg1; } public function isColorName(_arg1:String):Boolean{ return (!((colorNames[_arg1.toLowerCase()] === undefined))); } public function set inheritingStyles(_arg1:Object):void{ _inheritingStyles = _arg1; } public function getColorNames(_arg1:Array):void{ var _local4:uint; if (!_arg1){ return; }; var _local2:int = _arg1.length; var _local3:int; while (_local3 < _local2) { if (((!((_arg1[_local3] == null))) && (isNaN(_arg1[_local3])))){ _local4 = getColorName(_arg1[_local3]); if (_local4 != StyleManager.NOT_A_COLOR){ _arg1[_local3] = _local4; }; }; _local3++; }; } public function isInheritingTextFormatStyle(_arg1:String):Boolean{ return ((inheritingTextFormatStyles[_arg1] == true)); } public function registerParentSizeInvalidatingStyle(_arg1:String):void{ parentSizeInvalidatingStyles[_arg1] = true; } public function registerColorName(_arg1:String, _arg2:uint):void{ colorNames[_arg1.toLowerCase()] = _arg2; } public function isParentSizeInvalidatingStyle(_arg1:String):Boolean{ return ((parentSizeInvalidatingStyles[_arg1] == true)); } public function registerInheritingStyle(_arg1:String):void{ inheritingStyles[_arg1] = true; } public function set stylesRoot(_arg1:Object):void{ _stylesRoot = _arg1; } public function get typeSelectorCache():Object{ return (_typeSelectorCache); } public function isParentDisplayListInvalidatingStyle(_arg1:String):Boolean{ return ((parentDisplayListInvalidatingStyles[_arg1] == true)); } public function isSizeInvalidatingStyle(_arg1:String):Boolean{ return ((sizeInvalidatingStyles[_arg1] == true)); } public function styleDeclarationsChanged():void{ var _local4:Object; var _local1:Array = SystemManagerGlobals.topLevelSystemManagers; var _local2:int = _local1.length; var _local3:int; while (_local3 < _local2) { _local4 = _local1[_local3]; _local4.regenerateStyleCache(true); _local4.notifyStyleChangeInChildren(null, true); _local3++; }; } public function isValidStyleValue(_arg1):Boolean{ return (!((_arg1 === undefined))); } public function loadStyleDeclarations(_arg1:String, _arg2:Boolean=true, _arg3:Boolean=false):IEventDispatcher{ return (loadStyleDeclarations2(_arg1, _arg2)); } public function get inheritingStyles():Object{ return (_inheritingStyles); } public function unloadStyleDeclarations(_arg1:String, _arg2:Boolean=true):void{ var _local4:IModuleInfo; var _local3:StyleModuleInfo = styleModules[_arg1]; if (_local3){ _local3.styleModule.unload(); _local4 = _local3.module; _local4.unload(); _local4.removeEventListener(ModuleEvent.READY, _local3.readyHandler); _local4.removeEventListener(ModuleEvent.ERROR, _local3.errorHandler); styleModules[_arg1] = null; }; if (_arg2){ styleDeclarationsChanged(); }; } public function getColorName(_arg1:Object):uint{ var _local2:Number; var _local3:*; if ((_arg1 is String)){ if (_arg1.charAt(0) == "#"){ _local2 = Number(("0x" + _arg1.slice(1))); return ((isNaN(_local2)) ? StyleManager.NOT_A_COLOR : uint(_local2)); }; if ((((_arg1.charAt(1) == "x")) && ((_arg1.charAt(0) == "0")))){ _local2 = Number(_arg1); return ((isNaN(_local2)) ? StyleManager.NOT_A_COLOR : uint(_local2)); }; _local3 = colorNames[_arg1.toLowerCase()]; if (_local3 === undefined){ return (StyleManager.NOT_A_COLOR); }; return (uint(_local3)); }; return (uint(_arg1)); } public function isInheritingStyle(_arg1:String):Boolean{ return ((inheritingStyles[_arg1] == true)); } public function get stylesRoot():Object{ return (_stylesRoot); } public function initProtoChainRoots():void{ if (FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0){ delete _inheritingStyles["textDecoration"]; delete _inheritingStyles["leading"]; }; if (!stylesRoot){ stylesRoot = _selectors["global"].addStyleToProtoChain({}, null); }; } public function loadStyleDeclarations2(_arg1:String, _arg2:Boolean=true, _arg3:ApplicationDomain=null, _arg4:SecurityDomain=null):IEventDispatcher{ var module:IModuleInfo; var styleEventDispatcher:StyleEventDispatcher; var timer:Timer; var timerHandler:Function; var url = _arg1; var update = _arg2; var applicationDomain = _arg3; var securityDomain = _arg4; module = ModuleManager.getModule(url); var readyHandler:Function = function (_arg1:ModuleEvent):void{ var _local2:IStyleModule = IStyleModule(_arg1.module.factory.create()); styleModules[_arg1.module.url].styleModule = _local2; if (update){ styleDeclarationsChanged(); }; }; module.addEventListener(ModuleEvent.READY, readyHandler, false, 0, true); styleEventDispatcher = new StyleEventDispatcher(module); var errorHandler:Function = function (_arg1:ModuleEvent):void{ var _local3:StyleEvent; var _local2:String = resourceManager.getString("styles", "unableToLoad", [_arg1.errorText, url]); if (styleEventDispatcher.willTrigger(StyleEvent.ERROR)){ _local3 = new StyleEvent(StyleEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local3.bytesLoaded = 0; _local3.bytesTotal = 0; _local3.errorText = _local2; styleEventDispatcher.dispatchEvent(_local3); } else { throw (new Error(_local2)); }; }; module.addEventListener(ModuleEvent.ERROR, errorHandler, false, 0, true); styleModules[url] = new StyleModuleInfo(module, readyHandler, errorHandler); timer = new Timer(0); timerHandler = function (_arg1:TimerEvent):void{ timer.removeEventListener(TimerEvent.TIMER, timerHandler); timer.stop(); module.load(applicationDomain, securityDomain); }; timer.addEventListener(TimerEvent.TIMER, timerHandler, false, 0, true); timer.start(); return (styleEventDispatcher); } public function registerSizeInvalidatingStyle(_arg1:String):void{ sizeInvalidatingStyles[_arg1] = true; } public function clearStyleDeclaration(_arg1:String, _arg2:Boolean):void{ var _local3:CSSStyleDeclaration = getStyleDeclaration(_arg1); if (((_local3) && ((_local3.selectorRefCount > 0)))){ _local3.selectorRefCount--; }; delete _selectors[_arg1]; if (_arg2){ styleDeclarationsChanged(); }; } public function get selectors():Array{ var _local2:String; var _local1:Array = []; for (_local2 in _selectors) { _local1.push(_local2); }; return (_local1); } public static function getInstance():IStyleManager2{ if (!instance){ instance = new (StyleManagerImpl); }; return (instance); } } }//package mx.styles import flash.events.*; import mx.modules.*; import mx.events.*; class StyleEventDispatcher extends EventDispatcher { private function StyleEventDispatcher(_arg1:IModuleInfo){ _arg1.addEventListener(ModuleEvent.ERROR, moduleInfo_errorHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.PROGRESS, moduleInfo_progressHandler, false, 0, true); _arg1.addEventListener(ModuleEvent.READY, moduleInfo_readyHandler, false, 0, true); } private function moduleInfo_progressHandler(_arg1:ModuleEvent):void{ var _local2:StyleEvent = new StyleEvent(StyleEvent.PROGRESS, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; dispatchEvent(_local2); } private function moduleInfo_readyHandler(_arg1:ModuleEvent):void{ var _local2:StyleEvent = new StyleEvent(StyleEvent.COMPLETE); dispatchEvent(_local2); } private function moduleInfo_errorHandler(_arg1:ModuleEvent):void{ var _local2:StyleEvent = new StyleEvent(StyleEvent.ERROR, _arg1.bubbles, _arg1.cancelable); _local2.bytesLoaded = _arg1.bytesLoaded; _local2.bytesTotal = _arg1.bytesTotal; _local2.errorText = _arg1.errorText; dispatchEvent(_local2); } } class StyleModuleInfo { public var errorHandler:Function; public var readyHandler:Function; public var module:IModuleInfo; public var styleModule:IStyleModule; private function StyleModuleInfo(_arg1:IModuleInfo, _arg2:Function, _arg3:Function){ this.module = _arg1; this.readyHandler = _arg2; this.errorHandler = _arg3; } }
Section 81
//ColorUtil (mx.utils.ColorUtil) package mx.utils { import mx.core.*; public class ColorUtil { mx_internal static const VERSION:String = "3.3.0.4852"; public static function adjustBrightness2(_arg1:uint, _arg2:Number):uint{ var _local3:Number; var _local4:Number; var _local5:Number; if (_arg2 == 0){ return (_arg1); }; if (_arg2 < 0){ _arg2 = ((100 + _arg2) / 100); _local3 = (((_arg1 >> 16) & 0xFF) * _arg2); _local4 = (((_arg1 >> 8) & 0xFF) * _arg2); _local5 = ((_arg1 & 0xFF) * _arg2); } else { _arg2 = (_arg2 / 100); _local3 = ((_arg1 >> 16) & 0xFF); _local4 = ((_arg1 >> 8) & 0xFF); _local5 = (_arg1 & 0xFF); _local3 = (_local3 + ((0xFF - _local3) * _arg2)); _local4 = (_local4 + ((0xFF - _local4) * _arg2)); _local5 = (_local5 + ((0xFF - _local5) * _arg2)); _local3 = Math.min(_local3, 0xFF); _local4 = Math.min(_local4, 0xFF); _local5 = Math.min(_local5, 0xFF); }; return ((((_local3 << 16) | (_local4 << 8)) | _local5)); } public static function rgbMultiply(_arg1:uint, _arg2:uint):uint{ var _local3:Number = ((_arg1 >> 16) & 0xFF); var _local4:Number = ((_arg1 >> 8) & 0xFF); var _local5:Number = (_arg1 & 0xFF); var _local6:Number = ((_arg2 >> 16) & 0xFF); var _local7:Number = ((_arg2 >> 8) & 0xFF); var _local8:Number = (_arg2 & 0xFF); return ((((((_local3 * _local6) / 0xFF) << 16) | (((_local4 * _local7) / 0xFF) << 8)) | ((_local5 * _local8) / 0xFF))); } public static function adjustBrightness(_arg1:uint, _arg2:Number):uint{ var _local3:Number = Math.max(Math.min((((_arg1 >> 16) & 0xFF) + _arg2), 0xFF), 0); var _local4:Number = Math.max(Math.min((((_arg1 >> 8) & 0xFF) + _arg2), 0xFF), 0); var _local5:Number = Math.max(Math.min(((_arg1 & 0xFF) + _arg2), 0xFF), 0); return ((((_local3 << 16) | (_local4 << 8)) | _local5)); } } }//package mx.utils
Section 82
//GraphicsUtil (mx.utils.GraphicsUtil) package mx.utils { import mx.core.*; import flash.display.*; public class GraphicsUtil { mx_internal static const VERSION:String = "3.3.0.4852"; public static function drawRoundRectComplex(_arg1:Graphics, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Number, _arg8:Number, _arg9:Number):void{ var _local10:Number = (_arg2 + _arg4); var _local11:Number = (_arg3 + _arg5); var _local12:Number = ((_arg4 < _arg5)) ? (_arg4 * 2) : (_arg5 * 2); _arg6 = ((_arg6 < _local12)) ? _arg6 : _local12; _arg7 = ((_arg7 < _local12)) ? _arg7 : _local12; _arg8 = ((_arg8 < _local12)) ? _arg8 : _local12; _arg9 = ((_arg9 < _local12)) ? _arg9 : _local12; var _local13:Number = (_arg9 * 0.292893218813453); var _local14:Number = (_arg9 * 0.585786437626905); _arg1.moveTo(_local10, (_local11 - _arg9)); _arg1.curveTo(_local10, (_local11 - _local14), (_local10 - _local13), (_local11 - _local13)); _arg1.curveTo((_local10 - _local14), _local11, (_local10 - _arg9), _local11); _local13 = (_arg8 * 0.292893218813453); _local14 = (_arg8 * 0.585786437626905); _arg1.lineTo((_arg2 + _arg8), _local11); _arg1.curveTo((_arg2 + _local14), _local11, (_arg2 + _local13), (_local11 - _local13)); _arg1.curveTo(_arg2, (_local11 - _local14), _arg2, (_local11 - _arg8)); _local13 = (_arg6 * 0.292893218813453); _local14 = (_arg6 * 0.585786437626905); _arg1.lineTo(_arg2, (_arg3 + _arg6)); _arg1.curveTo(_arg2, (_arg3 + _local14), (_arg2 + _local13), (_arg3 + _local13)); _arg1.curveTo((_arg2 + _local14), _arg3, (_arg2 + _arg6), _arg3); _local13 = (_arg7 * 0.292893218813453); _local14 = (_arg7 * 0.585786437626905); _arg1.lineTo((_local10 - _arg7), _arg3); _arg1.curveTo((_local10 - _local14), _arg3, (_local10 - _local13), (_arg3 + _local13)); _arg1.curveTo(_local10, (_arg3 + _local14), _local10, (_arg3 + _arg7)); _arg1.lineTo(_local10, (_local11 - _arg9)); } } }//package mx.utils
Section 83
//NameUtil (mx.utils.NameUtil) package mx.utils { import mx.core.*; import flash.display.*; import flash.utils.*; public class NameUtil { mx_internal static const VERSION:String = "3.3.0.4852"; private static var counter:int = 0; public static function displayObjectToString(_arg1:DisplayObject):String{ var result:String; var o:DisplayObject; var s:String; var indices:Array; var displayObject = _arg1; try { o = displayObject; while (o != null) { if (((((o.parent) && (o.stage))) && ((o.parent == o.stage)))){ break; }; s = o.name; if ((o is IRepeaterClient)){ indices = IRepeaterClient(o).instanceIndices; if (indices){ s = (s + (("[" + indices.join("][")) + "]")); }; }; result = ((result == null)) ? s : ((s + ".") + result); o = o.parent; }; } catch(e:SecurityError) { }; return (result); } public static function createUniqueName(_arg1:Object):String{ if (!_arg1){ return (null); }; var _local2:String = getQualifiedClassName(_arg1); var _local3:int = _local2.indexOf("::"); if (_local3 != -1){ _local2 = _local2.substr((_local3 + 2)); }; var _local4:int = _local2.charCodeAt((_local2.length - 1)); if ((((_local4 >= 48)) && ((_local4 <= 57)))){ _local2 = (_local2 + "_"); }; return ((_local2 + counter++)); } } }//package mx.utils
Section 84
//StringUtil (mx.utils.StringUtil) package mx.utils { import mx.core.*; public class StringUtil { mx_internal static const VERSION:String = "3.3.0.4852"; public static function trim(_arg1:String):String{ if (_arg1 == null){ return (""); }; var _local2:int; while (isWhitespace(_arg1.charAt(_local2))) { _local2++; }; var _local3:int = (_arg1.length - 1); while (isWhitespace(_arg1.charAt(_local3))) { _local3--; }; if (_local3 >= _local2){ return (_arg1.slice(_local2, (_local3 + 1))); }; return (""); } public static function isWhitespace(_arg1:String):Boolean{ switch (_arg1){ case " ": case "\t": case "\r": case "\n": case "\f": return (true); default: return (false); }; } public static function substitute(_arg1:String, ... _args):String{ var _local4:Array; if (_arg1 == null){ return (""); }; var _local3:uint = _args.length; if ((((_local3 == 1)) && ((_args[0] is Array)))){ _local4 = (_args[0] as Array); _local3 = _local4.length; } else { _local4 = _args; }; var _local5:int; while (_local5 < _local3) { _arg1 = _arg1.replace(new RegExp((("\\{" + _local5) + "\\}"), "g"), _local4[_local5]); _local5++; }; return (_arg1); } public static function trimArrayElements(_arg1:String, _arg2:String):String{ var _local3:Array; var _local4:int; var _local5:int; if (((!((_arg1 == ""))) && (!((_arg1 == null))))){ _local3 = _arg1.split(_arg2); _local4 = _local3.length; _local5 = 0; while (_local5 < _local4) { _local3[_local5] = StringUtil.trim(_local3[_local5]); _local5++; }; if (_local4 > 0){ _arg1 = _local3.join(_arg2); }; }; return (_arg1); } } }//package mx.utils
Section 85
//_activeButtonStyleStyle (_activeButtonStyleStyle) package { import mx.core.*; import mx.styles.*; public class _activeButtonStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".activeButtonStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".activeButtonStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ }; }; } } }//package
Section 86
//_activeTabStyleStyle (_activeTabStyleStyle) package { import mx.core.*; import mx.styles.*; public class _activeTabStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".activeTabStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".activeTabStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; }; }; } } }//package
Section 87
//_alertButtonStyleStyle (_alertButtonStyleStyle) package { import mx.core.*; import mx.styles.*; public class _alertButtonStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".alertButtonStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".alertButtonStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.color = 734012; }; }; } } }//package
Section 88
//_comboDropdownStyle (_comboDropdownStyle) package { import mx.core.*; import mx.styles.*; public class _comboDropdownStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".comboDropdown"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".comboDropdown", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.shadowDirection = "center"; this.fontWeight = "normal"; this.dropShadowEnabled = true; this.leading = 0; this.backgroundColor = 0xFFFFFF; this.shadowDistance = 1; this.cornerRadius = 0; this.borderThickness = 0; this.paddingLeft = 5; this.paddingRight = 5; }; }; } } }//package
Section 89
//_dataGridStylesStyle (_dataGridStylesStyle) package { import mx.core.*; import mx.styles.*; public class _dataGridStylesStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".dataGridStyles"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".dataGridStyles", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; }; }; } } }//package
Section 90
//_dateFieldPopupStyle (_dateFieldPopupStyle) package { import mx.core.*; import mx.styles.*; public class _dateFieldPopupStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".dateFieldPopup"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".dateFieldPopup", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.dropShadowEnabled = true; this.backgroundColor = 0xFFFFFF; this.borderThickness = 0; }; }; } } }//package
Section 91
//_errorTipStyle (_errorTipStyle) package { import mx.core.*; import mx.styles.*; public class _errorTipStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".errorTip"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".errorTip", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; this.borderStyle = "errorTipRight"; this.paddingTop = 4; this.borderColor = 13510953; this.color = 0xFFFFFF; this.fontSize = 9; this.shadowColor = 0; this.paddingLeft = 4; this.paddingBottom = 4; this.paddingRight = 4; }; }; } } }//package
Section 92
//_globalStyle (_globalStyle) package { import mx.core.*; import mx.styles.*; import mx.skins.halo.*; public class _globalStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration("global"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration("global", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fillColor = 0xFFFFFF; this.kerning = false; this.iconColor = 0x111111; this.textRollOverColor = 2831164; this.horizontalAlign = "left"; this.shadowCapColor = 14015965; this.backgroundAlpha = 1; this.filled = true; this.textDecoration = "none"; this.roundedBottomCorners = true; this.fontThickness = 0; this.focusBlendMode = "normal"; this.fillColors = [0xFFFFFF, 0xCCCCCC, 0xFFFFFF, 0xEEEEEE]; this.horizontalGap = 8; this.borderCapColor = 9542041; this.buttonColor = 7305079; this.indentation = 17; this.selectionDisabledColor = 0xDDDDDD; this.closeDuration = 250; this.embedFonts = false; this.paddingTop = 0; this.letterSpacing = 0; this.focusAlpha = 0.4; this.bevel = true; this.fontSize = 10; this.shadowColor = 0xEEEEEE; this.borderAlpha = 1; this.paddingLeft = 0; this.fontWeight = "normal"; this.indicatorGap = 14; this.focusSkin = HaloFocusRect; this.dropShadowEnabled = false; this.leading = 2; this.borderSkin = HaloBorder; this.fontSharpness = 0; this.modalTransparencyDuration = 100; this.borderThickness = 1; this.backgroundSize = "auto"; this.borderStyle = "inset"; this.borderColor = 12040892; this.fontAntiAliasType = "advanced"; this.errorColor = 0xFF0000; this.shadowDistance = 2; this.horizontalGridLineColor = 0xF7F7F7; this.stroked = false; this.modalTransparencyColor = 0xDDDDDD; this.cornerRadius = 0; this.verticalAlign = "top"; this.textIndent = 0; this.fillAlphas = [0.6, 0.4, 0.75, 0.65]; this.verticalGridLineColor = 14015965; this.themeColor = 40447; this.version = "3.0.0"; this.shadowDirection = "center"; this.modalTransparency = 0.5; this.repeatInterval = 35; this.openDuration = 250; this.textAlign = "left"; this.fontFamily = "Verdana"; this.textSelectedColor = 2831164; this.paddingBottom = 0; this.strokeWidth = 1; this.fontGridFitType = "pixel"; this.horizontalGridLines = false; this.useRollOver = true; this.verticalGridLines = true; this.repeatDelay = 500; this.fontStyle = "normal"; this.dropShadowColor = 0; this.focusThickness = 2; this.verticalGap = 6; this.disabledColor = 11187123; this.paddingRight = 0; this.focusRoundedCorners = "tl tr bl br"; this.borderSides = "left top right bottom"; this.disabledIconColor = 0x999999; this.modalTransparencyBlur = 3; this.color = 734012; this.selectionDuration = 250; this.highlightAlphas = [0.3, 0]; }; }; } } }//package
Section 93
//_headerDateTextStyle (_headerDateTextStyle) package { import mx.core.*; import mx.styles.*; public class _headerDateTextStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".headerDateText"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".headerDateText", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; this.textAlign = "center"; }; }; } } }//package
Section 94
//_headerDragProxyStyleStyle (_headerDragProxyStyleStyle) package { import mx.core.*; import mx.styles.*; public class _headerDragProxyStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".headerDragProxyStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".headerDragProxyStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; }; }; } } }//package
Section 95
//_linkButtonStyleStyle (_linkButtonStyleStyle) package { import mx.core.*; import mx.styles.*; public class _linkButtonStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".linkButtonStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".linkButtonStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.paddingTop = 2; this.paddingLeft = 2; this.paddingBottom = 2; this.paddingRight = 2; }; }; } } }//package
Section 96
//_opaquePanelStyle (_opaquePanelStyle) package { import mx.core.*; import mx.styles.*; public class _opaquePanelStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".opaquePanel"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".opaquePanel", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.borderColor = 0xFFFFFF; this.backgroundColor = 0xFFFFFF; this.headerColors = [0xE7E7E7, 0xD9D9D9]; this.footerColors = [0xE7E7E7, 0xC7C7C7]; this.borderAlpha = 1; }; }; } } }//package
Section 97
//_plainStyle (_plainStyle) package { import mx.core.*; import mx.styles.*; public class _plainStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".plain"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".plain", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.paddingTop = 0; this.backgroundColor = 0xFFFFFF; this.backgroundImage = ""; this.horizontalAlign = "left"; this.paddingLeft = 0; this.paddingBottom = 0; this.paddingRight = 0; }; }; } } }//package
Section 98
//_popUpMenuStyle (_popUpMenuStyle) package { import mx.core.*; import mx.styles.*; public class _popUpMenuStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".popUpMenu"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".popUpMenu", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "normal"; this.textAlign = "left"; }; }; } } }//package
Section 99
//_richTextEditorTextAreaStyleStyle (_richTextEditorTextAreaStyleStyle) package { import mx.core.*; import mx.styles.*; public class _richTextEditorTextAreaStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".richTextEditorTextAreaStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".richTextEditorTextAreaStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ }; }; } } }//package
Section 100
//_swatchPanelTextFieldStyle (_swatchPanelTextFieldStyle) package { import mx.core.*; import mx.styles.*; public class _swatchPanelTextFieldStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".swatchPanelTextField"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".swatchPanelTextField", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.borderStyle = "inset"; this.borderColor = 14015965; this.highlightColor = 12897484; this.backgroundColor = 0xFFFFFF; this.shadowCapColor = 14015965; this.shadowColor = 14015965; this.paddingLeft = 5; this.buttonColor = 7305079; this.borderCapColor = 9542041; this.paddingRight = 5; }; }; } } }//package
Section 101
//_textAreaHScrollBarStyleStyle (_textAreaHScrollBarStyleStyle) package { import mx.core.*; import mx.styles.*; public class _textAreaHScrollBarStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".textAreaHScrollBarStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".textAreaHScrollBarStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ }; }; } } }//package
Section 102
//_textAreaVScrollBarStyleStyle (_textAreaVScrollBarStyleStyle) package { import mx.core.*; import mx.styles.*; public class _textAreaVScrollBarStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".textAreaVScrollBarStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".textAreaVScrollBarStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ }; }; } } }//package
Section 103
//_todayStyleStyle (_todayStyleStyle) package { import mx.core.*; import mx.styles.*; public class _todayStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".todayStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".todayStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.color = 0xFFFFFF; this.textAlign = "center"; }; }; } } }//package
Section 104
//_weekDayStyleStyle (_weekDayStyleStyle) package { import mx.core.*; import mx.styles.*; public class _weekDayStyleStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".weekDayStyle"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".weekDayStyle", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; this.textAlign = "center"; }; }; } } }//package
Section 105
//_windowStatusStyle (_windowStatusStyle) package { import mx.core.*; import mx.styles.*; public class _windowStatusStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".windowStatus"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".windowStatus", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.color = 0x666666; }; }; } } }//package
Section 106
//_windowStylesStyle (_windowStylesStyle) package { import mx.core.*; import mx.styles.*; public class _windowStylesStyle { public static function init(_arg1:IFlexModuleFactory):void{ var fbs = _arg1; var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".windowStyles"); if (!style){ style = new CSSStyleDeclaration(); StyleManager.setStyleDeclaration(".windowStyles", style, false); }; if (style.defaultFactory == null){ style.defaultFactory = function ():void{ this.fontWeight = "bold"; }; }; } } }//package
Section 107
//ApiMovieClip (ApiMovieClip) package { import flash.display.*; public dynamic class ApiMovieClip extends MovieClip { public var saveBtn:SaveBtnMc; } }//package
Section 108
//baner_logo_mc (baner_logo_mc) package { import flash.display.*; public dynamic class baner_logo_mc extends MovieClip { public var btn1:SimpleButton; public var btn2:SimpleButton; public var btn3:SimpleButton; } }//package
Section 109
//ControlPanel (ControlPanel) package { import flash.events.*; import flash.display.*; import flash.net.*; public class ControlPanel extends Sprite { public const _x:int = 380; public const _y:int = 25; public var _content:ControlPanelMC; public function ControlPanel(){ _content = new ControlPanelMC(); super(); addChild(_content); _content.btnFoto.addEventListener(MouseEvent.CLICK, onFoto); _content.btnReset.addEventListener(MouseEvent.CLICK, onReset); _content.btnLogo.addEventListener(MouseEvent.CLICK, onLogo); _content.btnBack.addEventListener(MouseEvent.CLICK, onBack); _content.btnBack.visible = false; _content.btnLogo.visible = false; } private function onReset(_arg1:MouseEvent):void{ Main.d.resetAll(); _content.btnReset.visible = false; _content.btnLogo.visible = true; _content.btnLogo.x = (_content.btnReset.x - 5); _content.btnLogo.y = (_content.btnReset.y - 15); } private function onFoto(_arg1:MouseEvent):void{ Main.d.mainMc.buttons.visible = false; _content.btnBack.visible = true; _content.btnBack.x = (_content.btnReset.x + 10); _content.btnBack.y = (_content.btnReset.y - 20); _content.btnFoto.visible = false; _content.btnLogo.visible = true; _content.btnLogo.x = (_content.btnFoto.x - 40); _content.btnLogo.y = (_content.btnFoto.y - 10); _content.btnReset.visible = false; } private function onBack(_arg1:MouseEvent):void{ Main.d.mainMc.buttons.visible = true; _content.btnFoto.visible = true; _content.btnLogo.visible = false; _content.btnLogo.x = _x; _content.btnLogo.y = _y; _content.btnBack.visible = false; _content.btnReset.visible = true; } private function onLogo(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.girlgames.com/"), "_blank"); } public function hideLogoBtn():void{ if (_content.btnLogo.visible){ _content.btnLogo.visible = false; _content.btnReset.visible = true; }; } } }//package
Section 110
//ControlPanelMC (ControlPanelMC) package { import flash.display.*; public dynamic class ControlPanelMC extends MovieClip { public var btnFoto:SimpleButton; public var btnReset:SimpleButton; public var btnBack:SimpleButton; public var btnLogo:SimpleButton; } }//package
Section 111
//Dressup (Dressup) package { import flash.events.*; import flash.display.*; import com.girlgames.dressup.*; import flash.geom.*; public class Dressup extends DressupGame { private var cp:ControlPanel; public var mainMc:MainMovie; public function Dressup(){ var _local6:DisplayObject; var _local7:Clothes; mainMc = new MainMovie(); cp = new ControlPanel(); super(760, 550); mainMc.scrollRect = new Rectangle(0, 0, 760, 550); addChild(mainMc); addEventListener(Event.ADDED_TO_STAGE, onAddedToStage); addChild(cp); skipClip(mainMc.mc.girl); skipClip(mainMc.mc.boy); var _local1:MovieClip = mainMc.mc; var _local2:int; while (_local2 < _local1.numChildren) { _local6 = _local1.getChildAt(_local2); if (((((((_local6.name) && ((_local6.name.indexOf("instance") < 0)))) && ((_local6 is MovieClip)))) && ((skipClips.indexOf(_local6) < 0)))){ _local7 = new Clothes((_local6 as MovieClip), this); addClothes(_local7); }; _local2++; }; var _local3:Clothes = getClothesByName("bg"); _local3.setDefaultVisibleFirstElement(); _local3.buttonMode = false; _local3.useHandCursor = false; _local3.canDisapear = false; var _local4:Clothes = getClothesByName("hair"); _local4.setDefaultVisibleFirstElement(); _local4.canDisapear = false; _local4.useHandCursor = false; _local4.buttonMode = false; var _local5:Clothes = getClothesByName("hair_b"); _local5.setDefaultVisibleFirstElement(); _local5.canDisapear = false; _local5.useHandCursor = false; _local5.buttonMode = false; _local2 = 0; while (_local2 < mainMc.buttons.numChildren) { _local6 = mainMc.buttons.getChildAt(_local2); if ((((_local6 is SimpleButton)) && ((_local6.name.indexOf("instance") < 0)))){ _local6.addEventListener(MouseEvent.CLICK, onButtonClick); }; _local2++; }; } public function resetAll():void{ var _local1:Clothes; for each (_local1 in clothes) { trace(_local1.name); if (((!((_local1.name == "hair"))) && (!((_local1.name == "bg"))))){ _local1.turnOffCurrentVisible(); }; }; } private function onButtonClick(_arg1:MouseEvent):void{ var _local4:Clothes; cp.hideLogoBtn(); var _local2:String = _arg1.target.name; if (_local2 == "dress"){ _local4 = getClothesByName("top"); _local4.turnOffCurrentVisible(); _local4 = getClothesByName("bottom"); _local4.turnOffCurrentVisible(); }; if ((((_local2 == "top")) || ((_local2 == "bottom")))){ _local4 = getClothesByName("dress"); _local4.turnOffCurrentVisible(); }; var _local3:Clothes = getClothesByName(_arg1.target.name); _local3.setNextVisible(); } private function onAddedToStage(_arg1:Event):void{ removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage); init(mainMc.mc); } } }//package
Section 112
//en_US$core_properties (en_US$core_properties) package { import mx.resources.*; public class en_US$core_properties extends ResourceBundle { public function en_US$core_properties(){ super("en_US", "core"); } override protected function getContent():Object{ var _local1:Object = {multipleChildSets_ClassAndInstance:"Multiple sets of visual children have been specified for this component (component definition and component instance).", truncationIndicator:"...", notExecuting:"Repeater is not executing.", versionAlreadyRead:"Compatibility version has already been read.", multipleChildSets_ClassAndSubclass:"Multiple sets of visual children have been specified for this component (base component definition and derived component definition).", viewSource:"View Source", badFile:"File does not exist.", stateUndefined:"Undefined state '{0}'.", versionAlreadySet:"Compatibility version has already been set."}; return (_local1); } } }//package
Section 113
//en_US$skins_properties (en_US$skins_properties) package { import mx.resources.*; public class en_US$skins_properties extends ResourceBundle { public function en_US$skins_properties(){ super("en_US", "skins"); } override protected function getContent():Object{ var _local1:Object = {notLoaded:"Unable to load '{0}'."}; return (_local1); } } }//package
Section 114
//en_US$styles_properties (en_US$styles_properties) package { import mx.resources.*; public class en_US$styles_properties extends ResourceBundle { public function en_US$styles_properties(){ super("en_US", "styles"); } override protected function getContent():Object{ var _local1:Object = {unableToLoad:"Unable to load style({0}): {1}."}; return (_local1); } } }//package
Section 115
//ErrorMessageMc (ErrorMessageMc) package { import flash.display.*; import flash.text.*; public dynamic class ErrorMessageMc extends MovieClip { public var yesBtn:SimpleButton; public var msgtxt:TextField; } }//package
Section 116
//intro (intro) package { import flash.display.*; public dynamic class intro extends MovieClip { } }//package
Section 117
//LinkBaner (LinkBaner) package { import flash.events.*; import flash.display.*; import flash.net.*; public class LinkBaner extends Sprite { private var _content:baner_logo_mc; public function LinkBaner(){ _content = new baner_logo_mc(); super(); addChild(_content); _content.x = 0; _content.y = 0; init(); } private function init():void{ _content.btn1.addEventListener(MouseEvent.CLICK, gotoGirlGames); _content.btn2.addEventListener(MouseEvent.CLICK, gotoGirlGames); _content.btn3.addEventListener(MouseEvent.CLICK, gotoGirlGamesFree); } private function gotoGirlGames(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.girlgames.com/"), "_blank"); } private function gotoGirlGamesFree(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.girlgames.com/free-girl-games/"), "_blank"); } } }//package
Section 118
//Main (Main) package { import flash.events.*; import flash.display.*; import flash.geom.*; public class Main extends Sprite { public var intr:intro; public static var d:Dressup; public function Main():void{ intr = new intro(); super(); if (stage){ init(); } else { addEventListener(Event.ADDED_TO_STAGE, init); }; } private function init(_arg1:Event=null):void{ removeEventListener(Event.ADDED_TO_STAGE, init); var _local2:LinkBaner = new LinkBaner(); addChild(_local2); _local2.y = 550; addChild(intr); intr.scrollRect = new Rectangle(0, 0, 760, 550); intr.play(); addEventListener(Event.ENTER_FRAME, onIntroCompile); } private function onIntroCompile(_arg1:Event):void{ if (intr.currentFrame == intr.totalFrames){ intr.stop(); removeChild(intr); d = new Dressup(); addChild(d); removeEventListener(Event.ENTER_FRAME, onIntroCompile); }; } } }//package
Section 119
//MainMovie (MainMovie) package { import flash.display.*; public dynamic class MainMovie extends MovieClip { public var buttons:MovieClip; public var mc:MovieClip; } }//package
Section 120
//McMovePointer (McMovePointer) package { import flash.display.*; public dynamic class McMovePointer extends MovieClip { } }//package
Section 121
//McResizePointer (McResizePointer) package { import flash.display.*; public dynamic class McResizePointer extends MovieClip { } }//package
Section 122
//McSelection (McSelection) package { import flash.display.*; public dynamic class McSelection extends MovieClip { public var mcBottomLeft:MovieClip; public var mcBottomRight:MovieClip; public var mcTopRight:MovieClip; public var mcTopLeft:MovieClip; public var mcRect:MovieClip; } }//package
Section 123
//Preloader (Preloader) package { import flash.events.*; import flash.display.*; import flash.net.*; import flash.utils.*; public class Preloader extends Sprite { private var mainClassFound:Boolean;// = false private var startInterval:int; private var preloader:PreloaderMC; private var tp:int;// = 0 public function Preloader(){ preloader = new PreloaderMC(); super(); if (stage){ init(); } else { addEventListener(Event.ADDED_TO_STAGE, init); }; } private function gotoGirlGames(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.girlgames.com/"), "_blank"); } private function onEnd(_arg1:Event):void{ if (preloader.anim.currentFrame == preloader.anim.totalFrames){ preloader.anim.stop(); preloader.anim.removeEventListener(Event.ENTER_FRAME, onEnd); startUp(); preloader.visible = false; removeChild(preloader); }; } private function updatePreloader(_arg1:Event):void{ var mainClass:Class; var e = _arg1; var perc:Number = Math.floor(((this.loaderInfo.bytesLoaded / this.loaderInfo.bytesTotal) * 100)); if (((((isNaN(perc)) || ((perc == Number.POSITIVE_INFINITY)))) || ((perc == Number.NEGATIVE_INFINITY)))){ perc = Math.floor(((this.stage.loaderInfo.bytesLoaded / this.stage.loaderInfo.bytesTotal) * 100)); }; if (((((isNaN(perc)) || ((perc == Number.POSITIVE_INFINITY)))) || ((perc == Number.NEGATIVE_INFINITY)))){ try { mainClass = (getDefinitionByName("Main") as Class); mainClassFound = true; } catch(e:Error) { }; } else { if (preloader.loader){ preloader.loader.barMask.scaleX = (perc / 100); }; }; if ((((perc == 100)) || (mainClassFound))){ preloader.removeEventListener(Event.ENTER_FRAME, updatePreloader); preloader.anim.visible = true; preloader.anim.play(); preloader.anim.addEventListener(Event.ENTER_FRAME, onEnd); }; } private function init(_arg1:Event=null):void{ removeEventListener(Event.ADDED_TO_STAGE, init); addChild(preloader); preloader.addEventListener(MouseEvent.MOUSE_DOWN, gotoGirlGames, false); preloader.useHandCursor = true; preloader.buttonMode = true; preloader.anim.visible = false; preloader.anim.gotoAndStop(1); preloader.addEventListener(Event.ENTER_FRAME, updatePreloader, false, 0, true); preloader.anim.addEventListener(MouseEvent.MOUSE_DOWN, gotoGirlGames, false); preloader.anim2.addEventListener(MouseEvent.MOUSE_DOWN, gotoGirlGames, false); preloader.anim.useHandCursor = true; preloader.anim2.useHandCursor = true; preloader.anim.buttonMode = true; preloader.anim2.buttonMode = true; } private function startUp():void{ var mainClass:Class; try { mainClass = (getDefinitionByName("Main") as Class); } catch(e:Error) { startInterval = setTimeout(startUp, 200); return; }; addChild((new (mainClass) as DisplayObject)); } } }//package
Section 124
//PreloaderMC (PreloaderMC) package { import flash.display.*; public dynamic class PreloaderMC extends MovieClip { public var anim2:MovieClip; public var loader:MovieClip; public var anim:MovieClip; } }//package
Section 125
//SaveBtnMc (SaveBtnMc) package { import flash.display.*; public dynamic class SaveBtnMc extends MovieClip { } }//package
Section 126
//SaveBtnWinMc (SaveBtnWinMc) package { import flash.display.*; public dynamic class SaveBtnWinMc extends MovieClip { } }//package
Section 127
//SelectScreenShotMc (SelectScreenShotMc) package { import flash.display.*; public dynamic class SelectScreenShotMc extends MovieClip { public var yesBtn:SimpleButton; public var noBtn:SimpleButton; } }//package
Section 128
//SignUpMessageMc (SignUpMessageMc) package { import flash.display.*; public dynamic class SignUpMessageMc extends MovieClip { public var yesBtn:SimpleButton; public var noBtn:SimpleButton; } }//package

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:51
Symbol 3 BitmapUsed by:4
Symbol 4 GraphicUses:3Used by:51
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:51
Symbol 7 BitmapUsed by:8
Symbol 8 GraphicUses:7Used by:51
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:51
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:51
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:51
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:51
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:51
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:51
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:51
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:51
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:51
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:51
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:51
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:51
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:51
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:51
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:51
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:51
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:51
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:51
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:51
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:51
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:51
Symbol 51 MovieClipUses:2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50Used by:143
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:143
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:143 145
Symbol 56 GraphicUsed by:143
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:143
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:143 144
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:101
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:101
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:101
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:101
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:101
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:101
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:101
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:101
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:101
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:101
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:101
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:101
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:101
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:101
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:101
Symbol 91 BitmapUsed by:92
Symbol 92 GraphicUses:91Used by:101
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:101
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:101
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:101
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:101
Symbol 101 MovieClipUses:62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100Used by:105
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:104
Symbol 104 MovieClipUses:103Used by:105
Symbol 105 MovieClipUses:101 104Used by:143 150
Symbol 106 GraphicUsed by:143
Symbol 107 GraphicUsed by:143
Symbol 108 GraphicUsed by:143
Symbol 109 GraphicUsed by:143
Symbol 110 GraphicUsed by:143
Symbol 111 GraphicUsed by:143
Symbol 112 GraphicUsed by:143
Symbol 113 GraphicUsed by:143
Symbol 114 GraphicUsed by:143
Symbol 115 GraphicUsed by:143
Symbol 116 GraphicUsed by:143
Symbol 117 GraphicUsed by:143
Symbol 118 GraphicUsed by:143
Symbol 119 GraphicUsed by:143
Symbol 120 GraphicUsed by:143
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:143 149
Symbol 123 GraphicUsed by:143
Symbol 124 GraphicUsed by:143
Symbol 125 GraphicUsed by:143
Symbol 126 GraphicUsed by:143
Symbol 127 GraphicUsed by:143
Symbol 128 GraphicUsed by:143
Symbol 129 GraphicUsed by:143
Symbol 130 GraphicUsed by:143
Symbol 131 GraphicUsed by:134
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:134
Symbol 134 MovieClipUses:131 133Used by:143 149
Symbol 135 GraphicUsed by:138
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:136Used by:138
Symbol 138 MovieClipUses:135 137Used by:143 149
Symbol 139 GraphicUsed by:142
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:140Used by:142
Symbol 142 MovieClipUses:139 141Used by:143 149
Symbol 143 MovieClipUses:51 53 55 56 58 60 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 122 123 124 125 126 127 128 129 130 134 138 142Used by:150
Symbol 144 MovieClipUses:60Used by:150
Symbol 145 MovieClipUses:55Used by:150
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:148
Symbol 148 MovieClipUses:147Used by:150
Symbol 149 MovieClipUses:122 134 138 142Used by:150
Symbol 150 MovieClip {PreloaderMC} [PreloaderMC]Uses:143 105 144 145 148 149
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:158
Symbol 153 BitmapUsed by:154
Symbol 154 GraphicUses:153Used by:155
Symbol 155 MovieClipUses:154Used by:158
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:158
Symbol 158 MovieClip {intro} [intro]Uses:152 155 157
Symbol 159 GraphicUsed by:201
Symbol 160 FontUsed by:161 164
Symbol 161 TextUses:160Used by:163
Symbol 162 GraphicUsed by:163 165 200
Symbol 163 ButtonUses:161 162Used by:201
Symbol 164 TextUses:160Used by:165
Symbol 165 ButtonUses:164 162Used by:201
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:180 198
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:172
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:172
Symbol 172 MovieClipUses:169 171Used by:180 198
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:179
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175Used by:179
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:177Used by:179
Symbol 179 MovieClipUses:174 176 178Used by:180 198
Symbol 180 MovieClipUses:167 172 179Used by:196
Symbol 181 GraphicUsed by:196
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:180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195Used by:197
Symbol 197 MovieClipUses:196Used by:200
Symbol 198 MovieClipUses:167 172 179Used by:199
Symbol 199 MovieClipUses:198Used by:200
Symbol 200 ButtonUses:197 199 162Used by:201
Symbol 201 MovieClip {baner_logo_mc} [baner_logo_mc]Uses:159 163 165 200
Symbol 202 GraphicUsed by:1562
Symbol 203 BitmapUsed by:204
Symbol 204 GraphicUses:203Used by:205
Symbol 205 MovieClipUses:204Used by:1562
Symbol 206 GraphicUsed by:207
Symbol 207 MovieClipUses:206Used by:1562
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:1562
Symbol 210 GraphicUsed by:1562
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClipUses:211Used by:1562
Symbol 213 GraphicUsed by:1562
Symbol 214 GraphicUsed by:1562
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215Used by:1562
Symbol 217 GraphicUsed by:221
Symbol 218 GraphicUsed by:220
Symbol 219 GraphicUsed by:220
Symbol 220 MovieClipUses:218 219Used by:221
Symbol 221 MovieClipUses:217 220Used by:223
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:221 222Used by:1562
Symbol 224 GraphicUsed by:1562
Symbol 225 MovieClipUsed by:334 336 337
Symbol 226 GraphicUsed by:337
Symbol 227 GraphicUsed by:231
Symbol 228 GraphicUsed by:230 235 237 241 244 252 257 264 268 272 276 278 281 287 290 294 297 302 304 308 317 320 328 330 342 345 348 351 354 359 362 365 368 371 377 380 385 388 393 396 401 404 409 412 417 420 425 428 433 436 441 444 449 452 455 458 461 464 468 471 472 477 480 486 489 494 497 501 504 507 510 513 514 519 524 527 528 533 536 539 542 545 548 551 554 557 560 563 566 570 573 577 580 583 587 590 593 597 600 603 607 610 613 617 620 623 627 630 633 637 640 643 647 650 653 658 661 664 668 671 674 677 680 684 687 690 693 698 701 704 707 711 714 717 720 724 727 730 733 737 740 743 746 750 753 756 759 763 766 769 772 776 779 782 785 789 791 794 797 801 804 807 810 814 817 820 823 827 830 833 836 840 843 846 849 853 856 859 862 866 869 872 875 879 882 885 888 893 896 900 903 907 910 914 917 921 924 928 931 935 938 942 945 949 952 956 959 963 966 970 973 977 980 984 987 991 994 999 1002 1005 1008 1011 1014 1017 1020 1023 1026 1029 1032 1036 1039 1043 1046 1050 1053 1056 1060 1063 1067 1070 1073 1077 1080 1083 1087 1090 1093 1097 1100 1103 1107 1110 1112 1115 1118 1120 1124 1127 1130 1133 1136 1139 1142 1145 1149 1152 1156 1159 1162 1165 1169 1172 1175 1178 1182 1185 1188 1191 1195 1198 1202 1205 1208 1211 1215 1218 1222 1225 1228 1232 1235 1238 1241 1245 1248 1251 1254 1258 1260 1263 1265 1268 1271 1274 1277 1280 1282 1285 1288 1292 1295 1298 1301 1304 1306 1309 1312 1316 1318 1322 1325 1329 1332 1336 1338 1342 1345 1349 1352 1356 1359 1363 1366 1370 1373 1377 1380 1384 1387 1390 1393 1397 1400 1404 1407 1411 1417 1420 1423 1426 1429 1432 1438 1441 1444 1447 1450 1456 1459 1462 1467 1473 1476 1482 1485 1491 1494 1499 1502 1508 1511 1517 1520 1525 1528 1534 1537 1543 1546 1551 1554
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClipUses:228 229Used by:231
Symbol 231 MovieClipUses:227 230Used by:337
Symbol 232 GraphicUsed by:337
Symbol 233 GraphicUsed by:236 277
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:228 234Used by:236
Symbol 236 MovieClipUses:233 235Used by:237
Symbol 237 MovieClipUses:228 236Used by:238
Symbol 238 MovieClipUses:237Used by:337
Symbol 239 GraphicUsed by:242 249 282 285 574 584 594 604 614 624 634 644 654 665 681 694 721 747 773 798 824 850 876 897 904 911 918 925 932 939 946 953 960 967 974 981 988 995 1040 1047 1057 1064 1074 1084 1094 1104 1113 1121 1134 1146 1166 1192 1212 1229 1255 1278 1302 1319 1326 1333 1339 1346 1353 1360 1367 1374 1381 1388 1394 1401 1408 1412
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:228 240Used by:242
Symbol 242 MovieClipUses:239 241Used by:337
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:228 243Used by:245
Symbol 245 MovieClipUses:244Used by:337
Symbol 246 GraphicUsed by:248 284
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:246 247Used by:249
Symbol 249 MovieClipUses:239 248Used by:337
Symbol 250 GraphicUsed by:337
Symbol 251 GraphicUsed by:252 287
Symbol 252 MovieClipUses:228 251Used by:253
Symbol 253 MovieClipUses:252Used by:337
Symbol 254 GraphicUsed by:337
Symbol 255 GraphicUsed by:258
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:228 256Used by:258
Symbol 258 MovieClipUses:255 257Used by:337
Symbol 259 GraphicUsed by:263
Symbol 260 GraphicUsed by:262
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClipUses:260 261Used by:263
Symbol 263 MovieClipUses:259 262Used by:264
Symbol 264 MovieClipUses:228 263Used by:265
Symbol 265 MovieClipUses:264Used by:337
Symbol 266 GraphicUsed by:337
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:228 267Used by:269
Symbol 269 MovieClipUses:268Used by:337
Symbol 270 GraphicUsed by:337
Symbol 271 GraphicUsed by:272
Symbol 272 MovieClipUses:228 271Used by:273
Symbol 273 MovieClipUses:272Used by:337
Symbol 274 GraphicUsed by:337
Symbol 275 GraphicUsed by:276
Symbol 276 MovieClipUses:228 275Used by:277
Symbol 277 MovieClipUses:233 276Used by:278
Symbol 278 MovieClipUses:228 277Used by:279
Symbol 279 MovieClipUses:278Used by:337
Symbol 280 GraphicUsed by:281
Symbol 281 MovieClipUses:228 280Used by:282
Symbol 282 MovieClipUses:239 281Used by:337
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:246 283Used by:285
Symbol 285 MovieClipUses:239 284Used by:337
Symbol 286 GraphicUsed by:337
Symbol 287 MovieClipUses:228 251Used by:288
Symbol 288 MovieClipUses:287Used by:337
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClipUses:228 289Used by:291
Symbol 291 MovieClipUses:290Used by:337
Symbol 292 GraphicUsed by:337
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:228 293Used by:295
Symbol 295 MovieClipUses:294Used by:337
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:228 296Used by:298
Symbol 298 MovieClipUses:297Used by:337
Symbol 299 GraphicUsed by:337
Symbol 300 GraphicUsed by:303
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:228 301Used by:303
Symbol 303 MovieClipUses:300 302Used by:304
Symbol 304 MovieClipUses:228 303Used by:305
Symbol 305 MovieClipUses:304Used by:337
Symbol 306 GraphicUsed by:337
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:228 307Used by:309
Symbol 309 MovieClipUses:308Used by:337
Symbol 310 GraphicUsed by:337
Symbol 311 GraphicUsed by:315
Symbol 312 GraphicUsed by:314
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClipUses:312 313Used by:315
Symbol 315 MovieClipUses:311 314Used by:337
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:228 316Used by:318
Symbol 318 MovieClipUses:317Used by:337
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:228 319Used by:321
Symbol 321 MovieClipUses:320Used by:337
Symbol 322 GraphicUsed by:326
Symbol 323 GraphicUsed by:325
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:323 324Used by:326
Symbol 326 MovieClipUses:322 325Used by:337
Symbol 327 GraphicUsed by:337
Symbol 328 MovieClipUses:228Used by:329
Symbol 329 MovieClipUses:328Used by:337
Symbol 330 MovieClipUses:228Used by:331
Symbol 331 MovieClipUses:330Used by:337
Symbol 332 GraphicUsed by:337
Symbol 333 GraphicUsed by:334
Symbol 334 MovieClipUses:333 225Used by:335
Symbol 335 MovieClipUses:334Used by:337
Symbol 336 MovieClipUses:225Used by:337
Symbol 337 MovieClipUses:225 226 231 232 238 242 245 249 250 253 254 258 265 266 269 270 273 274 279 282 285 286 288 291 292 295 298 299 305 306 309 310 315 318 321 326 327 329 331 332 335 336Used by:1562
Symbol 338 GraphicUsed by:1562
Symbol 339 GraphicUsed by:355
Symbol 340 BitmapUsed by:341
Symbol 341 GraphicUses:340Used by:342
Symbol 342 MovieClipUses:228 341Used by:355
Symbol 343 BitmapUsed by:344
Symbol 344 GraphicUses:343Used by:345
Symbol 345 MovieClipUses:228 344Used by:355
Symbol 346 BitmapUsed by:347
Symbol 347 GraphicUses:346Used by:348
Symbol 348 MovieClipUses:228 347Used by:355
Symbol 349 BitmapUsed by:350
Symbol 350 GraphicUses:349Used by:351
Symbol 351 MovieClipUses:228 350Used by:355
Symbol 352 BitmapUsed by:353
Symbol 353 GraphicUses:352Used by:354
Symbol 354 MovieClipUses:228 353Used by:355
Symbol 355 MovieClipUses:339 342 345 348 351 354Used by:1562
Symbol 356 GraphicUsed by:372
Symbol 357 BitmapUsed by:358
Symbol 358 GraphicUses:357Used by:359
Symbol 359 MovieClipUses:228 358Used by:372
Symbol 360 BitmapUsed by:361
Symbol 361 GraphicUses:360Used by:362
Symbol 362 MovieClipUses:228 361Used by:372
Symbol 363 BitmapUsed by:364
Symbol 364 GraphicUses:363Used by:365
Symbol 365 MovieClipUses:228 364Used by:372
Symbol 366 BitmapUsed by:367
Symbol 367 GraphicUses:366Used by:368
Symbol 368 MovieClipUses:228 367Used by:372
Symbol 369 BitmapUsed by:370
Symbol 370 GraphicUses:369Used by:371
Symbol 371 MovieClipUses:228 370Used by:372
Symbol 372 MovieClipUses:356 359 362 365 368 371Used by:1562
Symbol 373 GraphicUsed by:1562
Symbol 374 GraphicUsed by:381
Symbol 375 BitmapUsed by:376
Symbol 376 GraphicUses:375Used by:377
Symbol 377 MovieClipUses:228 376Used by:381
Symbol 378 BitmapUsed by:379
Symbol 379 GraphicUses:378Used by:380
Symbol 380 MovieClipUses:228 379Used by:381
Symbol 381 MovieClipUses:374 377 380Used by:1562
Symbol 382 GraphicUsed by:389
Symbol 383 BitmapUsed by:384
Symbol 384 GraphicUses:383Used by:385
Symbol 385 MovieClipUses:228 384Used by:389
Symbol 386 BitmapUsed by:387
Symbol 387 GraphicUses:386Used by:388
Symbol 388 MovieClipUses:228 387Used by:389
Symbol 389 MovieClipUses:382 385 388Used by:1562
Symbol 390 GraphicUsed by:397
Symbol 391 BitmapUsed by:392
Symbol 392 GraphicUses:391Used by:393
Symbol 393 MovieClipUses:228 392Used by:397
Symbol 394 BitmapUsed by:395
Symbol 395 GraphicUses:394Used by:396
Symbol 396 MovieClipUses:228 395Used by:397
Symbol 397 MovieClipUses:390 393 396Used by:1562
Symbol 398 GraphicUsed by:405
Symbol 399 BitmapUsed by:400
Symbol 400 GraphicUses:399Used by:401
Symbol 401 MovieClipUses:228 400Used by:405
Symbol 402 BitmapUsed by:403
Symbol 403 GraphicUses:402Used by:404
Symbol 404 MovieClipUses:228 403Used by:405
Symbol 405 MovieClipUses:398 401 404Used by:1562
Symbol 406 GraphicUsed by:413
Symbol 407 BitmapUsed by:408
Symbol 408 GraphicUses:407Used by:409
Symbol 409 MovieClipUses:228 408Used by:413
Symbol 410 BitmapUsed by:411
Symbol 411 GraphicUses:410Used by:412
Symbol 412 MovieClipUses:228 411Used by:413
Symbol 413 MovieClipUses:406 409 412Used by:1562
Symbol 414 GraphicUsed by:421
Symbol 415 BitmapUsed by:416
Symbol 416 GraphicUses:415Used by:417
Symbol 417 MovieClipUses:228 416Used by:421
Symbol 418 BitmapUsed by:419
Symbol 419 GraphicUses:418Used by:420
Symbol 420 MovieClipUses:228 419Used by:421
Symbol 421 MovieClipUses:414 417 420Used by:1562
Symbol 422 GraphicUsed by:429
Symbol 423 BitmapUsed by:424
Symbol 424 GraphicUses:423Used by:425
Symbol 425 MovieClipUses:228 424Used by:429
Symbol 426 BitmapUsed by:427
Symbol 427 GraphicUses:426Used by:428
Symbol 428 MovieClipUses:228 427Used by:429
Symbol 429 MovieClipUses:422 425 428Used by:1562
Symbol 430 GraphicUsed by:437
Symbol 431 BitmapUsed by:432
Symbol 432 GraphicUses:431Used by:433
Symbol 433 MovieClipUses:228 432Used by:437
Symbol 434 BitmapUsed by:435
Symbol 435 GraphicUses:434Used by:436
Symbol 436 MovieClipUses:228 435Used by:437
Symbol 437 MovieClipUses:430 433 436Used by:1562
Symbol 438 GraphicUsed by:445
Symbol 439 BitmapUsed by:440
Symbol 440 GraphicUses:439Used by:441
Symbol 441 MovieClipUses:228 440Used by:445
Symbol 442 BitmapUsed by:443
Symbol 443 GraphicUses:442Used by:444
Symbol 444 MovieClipUses:228 443Used by:445
Symbol 445 MovieClipUses:438 441 444Used by:1562
Symbol 446 GraphicUsed by:465
Symbol 447 BitmapUsed by:448
Symbol 448 GraphicUses:447Used by:449
Symbol 449 MovieClipUses:228 448Used by:465
Symbol 450 BitmapUsed by:451
Symbol 451 GraphicUses:450Used by:452
Symbol 452 MovieClipUses:228 451Used by:465
Symbol 453 BitmapUsed by:454
Symbol 454 GraphicUses:453Used by:455
Symbol 455 MovieClipUses:228 454Used by:465
Symbol 456 BitmapUsed by:457
Symbol 457 GraphicUses:456Used by:458
Symbol 458 MovieClipUses:228 457Used by:465
Symbol 459 BitmapUsed by:460
Symbol 460 GraphicUses:459Used by:461
Symbol 461 MovieClipUses:228 460Used by:465
Symbol 462 BitmapUsed by:463
Symbol 463 GraphicUses:462Used by:464
Symbol 464 MovieClipUses:228 463Used by:465
Symbol 465 MovieClipUses:446 449 452 455 458 461 464Used by:1562
Symbol 466 BitmapUsed by:467
Symbol 467 GraphicUses:466Used by:468
Symbol 468 MovieClipUses:228 467Used by:472
Symbol 469 BitmapUsed by:470
Symbol 470 GraphicUses:469Used by:471
Symbol 471 MovieClipUses:228 470Used by:472
Symbol 472 MovieClipUses:228 468 471Used by:1562
Symbol 473 GraphicUsed by:1562
Symbol 474 GraphicUsed by:481
Symbol 475 BitmapUsed by:476
Symbol 476 GraphicUses:475Used by:477
Symbol 477 MovieClipUses:228 476Used by:481
Symbol 478 BitmapUsed by:479
Symbol 479 GraphicUses:478Used by:480
Symbol 480 MovieClipUses:228 479Used by:481
Symbol 481 MovieClipUses:474 477 480Used by:1562
Symbol 482 GraphicUsed by:1562
Symbol 483 GraphicUsed by:490
Symbol 484 BitmapUsed by:485
Symbol 485 GraphicUses:484Used by:486
Symbol 486 MovieClipUses:228 485Used by:490
Symbol 487 BitmapUsed by:488
Symbol 488 GraphicUses:487Used by:489
Symbol 489 MovieClipUses:228 488Used by:490
Symbol 490 MovieClipUses:483 486 489Used by:1562
Symbol 491 GraphicUsed by:498
Symbol 492 BitmapUsed by:493
Symbol 493 GraphicUses:492Used by:494
Symbol 494 MovieClipUses:228 493Used by:498
Symbol 495 BitmapUsed by:496
Symbol 496 GraphicUses:495Used by:497
Symbol 497 MovieClipUses:228 496Used by:498
Symbol 498 MovieClipUses:491 494 497Used by:1562
Symbol 499 BitmapUsed by:500
Symbol 500 GraphicUses:499Used by:501
Symbol 501 MovieClipUses:228 500Used by:514
Symbol 502 BitmapUsed by:503
Symbol 503 GraphicUses:502Used by:504
Symbol 504 MovieClipUses:228 503Used by:514
Symbol 505 BitmapUsed by:506
Symbol 506 GraphicUses:505Used by:507
Symbol 507 MovieClipUses:228 506Used by:514
Symbol 508 BitmapUsed by:509
Symbol 509 GraphicUses:508Used by:510
Symbol 510 MovieClipUses:228 509Used by:514
Symbol 511 BitmapUsed by:512
Symbol 512 GraphicUses:511Used by:513
Symbol 513 MovieClipUses:228 512Used by:514
Symbol 514 MovieClipUses:228 501 504 507 510 513Used by:1562
Symbol 515 GraphicUsed by:1562
Symbol 516 GraphicUsed by:520
Symbol 517 BitmapUsed by:518
Symbol 518 GraphicUses:517Used by:519
Symbol 519 MovieClipUses:228 518Used by:520
Symbol 520 MovieClipUses:516 519Used by:1562
Symbol 521 GraphicUsed by:1562
Symbol 522 BitmapUsed by:523
Symbol 523 GraphicUses:522Used by:524
Symbol 524 MovieClipUses:228 523Used by:528
Symbol 525 BitmapUsed by:526
Symbol 526 GraphicUses:525Used by:527
Symbol 527 MovieClipUses:228 526Used by:528
Symbol 528 MovieClipUses:228 524 527Used by:1562
Symbol 529 GraphicUsed by:1562
Symbol 530 GraphicUsed by:567 1033
Symbol 531 BitmapUsed by:532
Symbol 532 GraphicUses:531Used by:533
Symbol 533 MovieClipUses:228 532Used by:567
Symbol 534 BitmapUsed by:535
Symbol 535 GraphicUses:534Used by:536
Symbol 536 MovieClipUses:228 535Used by:567
Symbol 537 BitmapUsed by:538
Symbol 538 GraphicUses:537Used by:539
Symbol 539 MovieClipUses:228 538Used by:567
Symbol 540 BitmapUsed by:541
Symbol 541 GraphicUses:540Used by:542
Symbol 542 MovieClipUses:228 541Used by:567
Symbol 543 BitmapUsed by:544
Symbol 544 GraphicUses:543Used by:545
Symbol 545 MovieClipUses:228 544Used by:567
Symbol 546 BitmapUsed by:547
Symbol 547 GraphicUses:546Used by:548
Symbol 548 MovieClipUses:228 547Used by:567
Symbol 549 BitmapUsed by:550
Symbol 550 GraphicUses:549Used by:551
Symbol 551 MovieClipUses:228 550Used by:567
Symbol 552 BitmapUsed by:553
Symbol 553 GraphicUses:552Used by:554
Symbol 554 MovieClipUses:228 553Used by:567
Symbol 555 BitmapUsed by:556
Symbol 556 GraphicUses:555Used by:557
Symbol 557 MovieClipUses:228 556Used by:567
Symbol 558 BitmapUsed by:559
Symbol 559 GraphicUses:558Used by:560
Symbol 560 MovieClipUses:228 559Used by:567
Symbol 561 BitmapUsed by:562
Symbol 562 GraphicUses:561Used by:563
Symbol 563 MovieClipUses:228 562Used by:567
Symbol 564 BitmapUsed by:565
Symbol 565 GraphicUses:564Used by:566
Symbol 566 MovieClipUses:228 565Used by:567
Symbol 567 MovieClipUses:530 533 536 539 542 545 548 551 554 557 560 563 566Used by:1562
Symbol 568 BitmapUsed by:569
Symbol 569 GraphicUses:568Used by:570
Symbol 570 MovieClipUses:228 569Used by:574
Symbol 571 BitmapUsed by:572
Symbol 572 GraphicUses:571Used by:573
Symbol 573 MovieClipUses:228 572Used by:574
Symbol 574 MovieClipUses:239 570 573Used by:1562
Symbol 575 BitmapUsed by:576
Symbol 576 GraphicUses:575Used by:577
Symbol 577 MovieClipUses:228 576Used by:584
Symbol 578 BitmapUsed by:579
Symbol 579 GraphicUses:578Used by:580
Symbol 580 MovieClipUses:228 579Used by:584
Symbol 581 BitmapUsed by:582
Symbol 582 GraphicUses:581Used by:583
Symbol 583 MovieClipUses:228 582Used by:584 1047
Symbol 584 MovieClipUses:239 577 580 583Used by:1562
Symbol 585 BitmapUsed by:586
Symbol 586 GraphicUses:585Used by:587
Symbol 587 MovieClipUses:228 586Used by:594
Symbol 588 BitmapUsed by:589
Symbol 589 GraphicUses:588Used by:590
Symbol 590 MovieClipUses:228 589Used by:594
Symbol 591 BitmapUsed by:592
Symbol 592 GraphicUses:591Used by:593
Symbol 593 MovieClipUses:228 592Used by:594
Symbol 594 MovieClipUses:239 587 590 593Used by:1562
Symbol 595 BitmapUsed by:596
Symbol 596 GraphicUses:595Used by:597
Symbol 597 MovieClipUses:228 596Used by:604
Symbol 598 BitmapUsed by:599
Symbol 599 GraphicUses:598Used by:600
Symbol 600 MovieClipUses:228 599Used by:604
Symbol 601 BitmapUsed by:602
Symbol 602 GraphicUses:601Used by:603
Symbol 603 MovieClipUses:228 602Used by:604 1064
Symbol 604 MovieClipUses:239 597 600 603Used by:1562
Symbol 605 BitmapUsed by:606
Symbol 606 GraphicUses:605Used by:607
Symbol 607 MovieClipUses:228 606Used by:614
Symbol 608 BitmapUsed by:609
Symbol 609 GraphicUses:608Used by:610
Symbol 610 MovieClipUses:228 609Used by:614
Symbol 611 BitmapUsed by:612
Symbol 612 GraphicUses:611Used by:613
Symbol 613 MovieClipUses:228 612Used by:614
Symbol 614 MovieClipUses:239 607 610 613Used by:1562
Symbol 615 BitmapUsed by:616
Symbol 616 GraphicUses:615Used by:617
Symbol 617 MovieClipUses:228 616Used by:624
Symbol 618 BitmapUsed by:619
Symbol 619 GraphicUses:618Used by:620
Symbol 620 MovieClipUses:228 619Used by:624
Symbol 621 BitmapUsed by:622
Symbol 622 GraphicUses:621Used by:623
Symbol 623 MovieClipUses:228 622Used by:624
Symbol 624 MovieClipUses:239 617 620 623Used by:1562
Symbol 625 BitmapUsed by:626
Symbol 626 GraphicUses:625Used by:627
Symbol 627 MovieClipUses:228 626Used by:634
Symbol 628 BitmapUsed by:629
Symbol 629 GraphicUses:628Used by:630
Symbol 630 MovieClipUses:228 629Used by:634
Symbol 631 BitmapUsed by:632
Symbol 632 GraphicUses:631Used by:633
Symbol 633 MovieClipUses:228 632Used by:634
Symbol 634 MovieClipUses:239 627 630 633Used by:1562
Symbol 635 BitmapUsed by:636
Symbol 636 GraphicUses:635Used by:637
Symbol 637 MovieClipUses:228 636Used by:644
Symbol 638 BitmapUsed by:639
Symbol 639 GraphicUses:638Used by:640
Symbol 640 MovieClipUses:228 639Used by:644
Symbol 641 BitmapUsed by:642
Symbol 642 GraphicUses:641Used by:643
Symbol 643 MovieClipUses:228 642Used by:644
Symbol 644 MovieClipUses:239 637 640 643Used by:1562
Symbol 645 BitmapUsed by:646
Symbol 646 GraphicUses:645Used by:647
Symbol 647 MovieClipUses:228 646Used by:654
Symbol 648 BitmapUsed by:649
Symbol 649 GraphicUses:648Used by:650
Symbol 650 MovieClipUses:228 649Used by:654
Symbol 651 BitmapUsed by:652 1111
Symbol 652 GraphicUses:651Used by:653
Symbol 653 MovieClipUses:228 652Used by:654
Symbol 654 MovieClipUses:239 647 650 653Used by:1562
Symbol 655 GraphicUsed by:1562
Symbol 656 BitmapUsed by:657 1114
Symbol 657 GraphicUses:656Used by:658
Symbol 658 MovieClipUses:228 657Used by:665
Symbol 659 BitmapUsed by:660
Symbol 660 GraphicUses:659Used by:661
Symbol 661 MovieClipUses:228 660Used by:665
Symbol 662 BitmapUsed by:663 1119
Symbol 663 GraphicUses:662Used by:664
Symbol 664 MovieClipUses:228 663Used by:665
Symbol 665 MovieClipUses:239 658 661 664Used by:1562
Symbol 666 BitmapUsed by:667
Symbol 667 GraphicUses:666Used by:668
Symbol 668 MovieClipUses:228 667Used by:681
Symbol 669 BitmapUsed by:670
Symbol 670 GraphicUses:669Used by:671
Symbol 671 MovieClipUses:228 670Used by:681
Symbol 672 BitmapUsed by:673
Symbol 673 GraphicUses:672Used by:674
Symbol 674 MovieClipUses:228 673Used by:681
Symbol 675 BitmapUsed by:676
Symbol 676 GraphicUses:675Used by:677
Symbol 677 MovieClipUses:228 676Used by:681
Symbol 678 BitmapUsed by:679
Symbol 679 GraphicUses:678Used by:680
Symbol 680 MovieClipUses:228 679Used by:681 1134
Symbol 681 MovieClipUses:239 668 671 674 677 680Used by:1562
Symbol 682 BitmapUsed by:683 1135
Symbol 683 GraphicUses:682Used by:684
Symbol 684 MovieClipUses:228 683Used by:694
Symbol 685 BitmapUsed by:686 790
Symbol 686 GraphicUses:685Used by:687
Symbol 687 MovieClipUses:228 686Used by:694
Symbol 688 BitmapUsed by:689
Symbol 689 GraphicUses:688Used by:690
Symbol 690 MovieClipUses:228 689Used by:694
Symbol 691 BitmapUsed by:692
Symbol 692 GraphicUses:691Used by:693
Symbol 693 MovieClipUses:228 692Used by:694
Symbol 694 MovieClipUses:239 684 687 690 693Used by:1562
Symbol 695 GraphicUsed by:708 734 760 786 811 837 863 889 1153 1179 1199 1219 1242 1266 1289 1313
Symbol 696 BitmapUsed by:697
Symbol 697 GraphicUses:696Used by:698
Symbol 698 MovieClipUses:228 697Used by:708 1153
Symbol 699 BitmapUsed by:700
Symbol 700 GraphicUses:699Used by:701
Symbol 701 MovieClipUses:228 700Used by:708 1153
Symbol 702 BitmapUsed by:703
Symbol 703 GraphicUses:702Used by:704
Symbol 704 MovieClipUses:228 703Used by:708
Symbol 705 BitmapUsed by:706
Symbol 706 GraphicUses:705Used by:707
Symbol 707 MovieClipUses:228 706Used by:708
Symbol 708 MovieClipUses:695 698 701 704 707Used by:1562
Symbol 709 BitmapUsed by:710
Symbol 710 GraphicUses:709Used by:711
Symbol 711 MovieClipUses:228 710Used by:721
Symbol 712 BitmapUsed by:713
Symbol 713 GraphicUses:712Used by:714
Symbol 714 MovieClipUses:228 713Used by:721
Symbol 715 BitmapUsed by:716
Symbol 716 GraphicUses:715Used by:717
Symbol 717 MovieClipUses:228 716Used by:721
Symbol 718 BitmapUsed by:719
Symbol 719 GraphicUses:718Used by:720
Symbol 720 MovieClipUses:228 719Used by:721
Symbol 721 MovieClipUses:239 711 714 717 720Used by:1562
Symbol 722 BitmapUsed by:723
Symbol 723 GraphicUses:722Used by:724
Symbol 724 MovieClipUses:228 723Used by:734
Symbol 725 BitmapUsed by:726
Symbol 726 GraphicUses:725Used by:727
Symbol 727 MovieClipUses:228 726Used by:734
Symbol 728 BitmapUsed by:729
Symbol 729 GraphicUses:728Used by:730
Symbol 730 MovieClipUses:228 729Used by:734
Symbol 731 BitmapUsed by:732
Symbol 732 GraphicUses:731Used by:733
Symbol 733 MovieClipUses:228 732Used by:734
Symbol 734 MovieClipUses:695 724 727 730 733Used by:1562
Symbol 735 BitmapUsed by:736
Symbol 736 GraphicUses:735Used by:737
Symbol 737 MovieClipUses:228 736Used by:747
Symbol 738 BitmapUsed by:739
Symbol 739 GraphicUses:738Used by:740
Symbol 740 MovieClipUses:228 739Used by:747
Symbol 741 BitmapUsed by:742
Symbol 742 GraphicUses:741Used by:743
Symbol 743 MovieClipUses:228 742Used by:747
Symbol 744 BitmapUsed by:745
Symbol 745 GraphicUses:744Used by:746
Symbol 746 MovieClipUses:228 745Used by:747
Symbol 747 MovieClipUses:239 737 740 743 746Used by:1562
Symbol 748 BitmapUsed by:749
Symbol 749 GraphicUses:748Used by:750
Symbol 750 MovieClipUses:228 749Used by:760 1199
Symbol 751 BitmapUsed by:752
Symbol 752 GraphicUses:751Used by:753
Symbol 753 MovieClipUses:228 752Used by:760 1199
Symbol 754 BitmapUsed by:755
Symbol 755 GraphicUses:754Used by:756
Symbol 756 MovieClipUses:228 755Used by:760
Symbol 757 BitmapUsed by:758
Symbol 758 GraphicUses:757Used by:759
Symbol 759 MovieClipUses:228 758Used by:760
Symbol 760 MovieClipUses:695 750 753 756 759Used by:1562
Symbol 761 BitmapUsed by:762
Symbol 762 GraphicUses:761Used by:763
Symbol 763 MovieClipUses:228 762Used by:773
Symbol 764 BitmapUsed by:765
Symbol 765 GraphicUses:764Used by:766
Symbol 766 MovieClipUses:228 765Used by:773
Symbol 767 BitmapUsed by:768
Symbol 768 GraphicUses:767Used by:769
Symbol 769 MovieClipUses:228 768Used by:773
Symbol 770 BitmapUsed by:771
Symbol 771 GraphicUses:770Used by:772
Symbol 772 MovieClipUses:228 771Used by:773
Symbol 773 MovieClipUses:239 763 766 769 772Used by:1562
Symbol 774 BitmapUsed by:775
Symbol 775 GraphicUses:774Used by:776
Symbol 776 MovieClipUses:228 775Used by:786 1219
Symbol 777 BitmapUsed by:778
Symbol 778 GraphicUses:777Used by:779
Symbol 779 MovieClipUses:228 778Used by:786 1219
Symbol 780 BitmapUsed by:781
Symbol 781 GraphicUses:780Used by:782
Symbol 782 MovieClipUses:228 781Used by:786
Symbol 783 BitmapUsed by:784
Symbol 784 GraphicUses:783Used by:785
Symbol 785 MovieClipUses:228 784Used by:786
Symbol 786 MovieClipUses:695 776 779 782 785Used by:1562
Symbol 787 BitmapUsed by:788
Symbol 788 GraphicUses:787Used by:789
Symbol 789 MovieClipUses:228 788Used by:798 1229
Symbol 790 GraphicUses:685Used by:791
Symbol 791 MovieClipUses:228 790Used by:798
Symbol 792 BitmapUsed by:793
Symbol 793 GraphicUses:792Used by:794
Symbol 794 MovieClipUses:228 793Used by:798
Symbol 795 BitmapUsed by:796
Symbol 796 GraphicUses:795Used by:797
Symbol 797 MovieClipUses:228 796Used by:798
Symbol 798 MovieClipUses:239 789 791 794 797Used by:1562
Symbol 799 BitmapUsed by:800
Symbol 800 GraphicUses:799Used by:801
Symbol 801 MovieClipUses:228 800Used by:811
Symbol 802 BitmapUsed by:803
Symbol 803 GraphicUses:802Used by:804
Symbol 804 MovieClipUses:228 803Used by:811
Symbol 805 BitmapUsed by:806
Symbol 806 GraphicUses:805Used by:807
Symbol 807 MovieClipUses:228 806Used by:811
Symbol 808 BitmapUsed by:809
Symbol 809 GraphicUses:808Used by:810
Symbol 810 MovieClipUses:228 809Used by:811
Symbol 811 MovieClipUses:695 801 804 807 810Used by:1562
Symbol 812 BitmapUsed by:813
Symbol 813 GraphicUses:812Used by:814
Symbol 814 MovieClipUses:228 813Used by:824
Symbol 815 BitmapUsed by:816
Symbol 816 GraphicUses:815Used by:817
Symbol 817 MovieClipUses:228 816Used by:824
Symbol 818 BitmapUsed by:819
Symbol 819 GraphicUses:818Used by:820
Symbol 820 MovieClipUses:228 819Used by:824
Symbol 821 BitmapUsed by:822
Symbol 822 GraphicUses:821Used by:823
Symbol 823 MovieClipUses:228 822Used by:824
Symbol 824 MovieClipUses:239 814 817 820 823Used by:1562
Symbol 825 BitmapUsed by:826
Symbol 826 GraphicUses:825Used by:827
Symbol 827 MovieClipUses:228 826Used by:837
Symbol 828 BitmapUsed by:829 1259
Symbol 829 GraphicUses:828Used by:830
Symbol 830 MovieClipUses:228 829Used by:837
Symbol 831 BitmapUsed by:832
Symbol 832 GraphicUses:831Used by:833
Symbol 833 MovieClipUses:228 832Used by:837
Symbol 834 BitmapUsed by:835 1264
Symbol 835 GraphicUses:834Used by:836
Symbol 836 MovieClipUses:228 835Used by:837
Symbol 837 MovieClipUses:695 827 830 833 836Used by:1562
Symbol 838 BitmapUsed by:839 1267
Symbol 839 GraphicUses:838Used by:840
Symbol 840 MovieClipUses:228 839Used by:850
Symbol 841 BitmapUsed by:842
Symbol 842 GraphicUses:841Used by:843
Symbol 843 MovieClipUses:228 842Used by:850
Symbol 844 BitmapUsed by:845
Symbol 845 GraphicUses:844Used by:846
Symbol 846 MovieClipUses:228 845Used by:850
Symbol 847 BitmapUsed by:848
Symbol 848 GraphicUses:847Used by:849
Symbol 849 MovieClipUses:228 848Used by:850
Symbol 850 MovieClipUses:239 840 843 846 849Used by:1562
Symbol 851 BitmapUsed by:852 1279
Symbol 852 GraphicUses:851Used by:853
Symbol 853 MovieClipUses:228 852Used by:863
Symbol 854 BitmapUsed by:855 1281
Symbol 855 GraphicUses:854Used by:856
Symbol 856 MovieClipUses:228 855Used by:863
Symbol 857 BitmapUsed by:858
Symbol 858 GraphicUses:857Used by:859
Symbol 859 MovieClipUses:228 858Used by:863
Symbol 860 BitmapUsed by:861
Symbol 861 GraphicUses:860Used by:862
Symbol 862 MovieClipUses:228 861Used by:863
Symbol 863 MovieClipUses:695 853 856 859 862Used by:1562
Symbol 864 BitmapUsed by:865
Symbol 865 GraphicUses:864Used by:866
Symbol 866 MovieClipUses:228 865Used by:876
Symbol 867 BitmapUsed by:868
Symbol 868 GraphicUses:867Used by:869
Symbol 869 MovieClipUses:228 868Used by:876
Symbol 870 BitmapUsed by:871
Symbol 871 GraphicUses:870Used by:872
Symbol 872 MovieClipUses:228 871Used by:876
Symbol 873 BitmapUsed by:874
Symbol 874 GraphicUses:873Used by:875
Symbol 875 MovieClipUses:228 874Used by:876
Symbol 876 MovieClipUses:239 866 869 872 875Used by:1562
Symbol 877 BitmapUsed by:878 1303
Symbol 878 GraphicUses:877Used by:879
Symbol 879 MovieClipUses:228 878Used by:889
Symbol 880 BitmapUsed by:881 1305
Symbol 881 GraphicUses:880Used by:882
Symbol 882 MovieClipUses:228 881Used by:889
Symbol 883 BitmapUsed by:884
Symbol 884 GraphicUses:883Used by:885
Symbol 885 MovieClipUses:228 884Used by:889
Symbol 886 BitmapUsed by:887
Symbol 887 GraphicUses:886Used by:888
Symbol 888 MovieClipUses:228 887Used by:889
Symbol 889 MovieClipUses:695 879 882 885 888Used by:1562
Symbol 890 GraphicUsed by:1562
Symbol 891 BitmapUsed by:892 1315
Symbol 892 GraphicUses:891Used by:893
Symbol 893 MovieClipUses:228 892Used by:897
Symbol 894 BitmapUsed by:895 1317
Symbol 895 GraphicUses:894Used by:896
Symbol 896 MovieClipUses:228 895Used by:897
Symbol 897 MovieClipUses:239 893 896Used by:1562
Symbol 898 BitmapUsed by:899
Symbol 899 GraphicUses:898Used by:900
Symbol 900 MovieClipUses:228 899Used by:904
Symbol 901 BitmapUsed by:902
Symbol 902 GraphicUses:901Used by:903
Symbol 903 MovieClipUses:228 902Used by:904
Symbol 904 MovieClipUses:239 900 903Used by:1562
Symbol 905 BitmapUsed by:906
Symbol 906 GraphicUses:905Used by:907
Symbol 907 MovieClipUses:228 906Used by:911
Symbol 908 BitmapUsed by:909
Symbol 909 GraphicUses:908Used by:910
Symbol 910 MovieClipUses:228 909Used by:911
Symbol 911 MovieClipUses:239 907 910Used by:1562
Symbol 912 BitmapUsed by:913
Symbol 913 GraphicUses:912Used by:914
Symbol 914 MovieClipUses:228 913Used by:918
Symbol 915 BitmapUsed by:916 1337
Symbol 916 GraphicUses:915Used by:917
Symbol 917 MovieClipUses:228 916Used by:918
Symbol 918 MovieClipUses:239 914 917Used by:1562
Symbol 919 BitmapUsed by:920
Symbol 920 GraphicUses:919Used by:921
Symbol 921 MovieClipUses:228 920Used by:925
Symbol 922 BitmapUsed by:923
Symbol 923 GraphicUses:922Used by:924
Symbol 924 MovieClipUses:228 923Used by:925
Symbol 925 MovieClipUses:239 921 924Used by:1562
Symbol 926 BitmapUsed by:927
Symbol 927 GraphicUses:926Used by:928
Symbol 928 MovieClipUses:228 927Used by:932
Symbol 929 BitmapUsed by:930
Symbol 930 GraphicUses:929Used by:931
Symbol 931 MovieClipUses:228 930Used by:932
Symbol 932 MovieClipUses:239 928 931Used by:1562
Symbol 933 BitmapUsed by:934
Symbol 934 GraphicUses:933Used by:935
Symbol 935 MovieClipUses:228 934Used by:939
Symbol 936 BitmapUsed by:937
Symbol 937 GraphicUses:936Used by:938
Symbol 938 MovieClipUses:228 937Used by:939
Symbol 939 MovieClipUses:239 935 938Used by:1562
Symbol 940 BitmapUsed by:941
Symbol 941 GraphicUses:940Used by:942
Symbol 942 MovieClipUses:228 941Used by:946
Symbol 943 BitmapUsed by:944
Symbol 944 GraphicUses:943Used by:945
Symbol 945 MovieClipUses:228 944Used by:946
Symbol 946 MovieClipUses:239 942 945Used by:1562
Symbol 947 BitmapUsed by:948
Symbol 948 GraphicUses:947Used by:949
Symbol 949 MovieClipUses:228 948Used by:953
Symbol 950 BitmapUsed by:951
Symbol 951 GraphicUses:950Used by:952
Symbol 952 MovieClipUses:228 951Used by:953
Symbol 953 MovieClipUses:239 949 952Used by:1562
Symbol 954 BitmapUsed by:955
Symbol 955 GraphicUses:954Used by:956
Symbol 956 MovieClipUses:228 955Used by:960
Symbol 957 BitmapUsed by:958
Symbol 958 GraphicUses:957Used by:959
Symbol 959 MovieClipUses:228 958Used by:960
Symbol 960 MovieClipUses:239 956 959Used by:1562
Symbol 961 BitmapUsed by:962
Symbol 962 GraphicUses:961Used by:963
Symbol 963 MovieClipUses:228 962Used by:967
Symbol 964 BitmapUsed by:965
Symbol 965 GraphicUses:964Used by:966
Symbol 966 MovieClipUses:228 965Used by:967
Symbol 967 MovieClipUses:239 963 966Used by:1562
Symbol 968 BitmapUsed by:969 1389
Symbol 969 GraphicUses:968Used by:970
Symbol 970 MovieClipUses:228 969Used by:974
Symbol 971 BitmapUsed by:972
Symbol 972 GraphicUses:971Used by:973
Symbol 973 MovieClipUses:228 972Used by:974
Symbol 974 MovieClipUses:239 970 973Used by:1562
Symbol 975 BitmapUsed by:976
Symbol 976 GraphicUses:975Used by:977
Symbol 977 MovieClipUses:228 976Used by:981
Symbol 978 BitmapUsed by:979
Symbol 979 GraphicUses:978Used by:980
Symbol 980 MovieClipUses:228 979Used by:981
Symbol 981 MovieClipUses:239 977 980Used by:1562
Symbol 982 BitmapUsed by:983
Symbol 983 GraphicUses:982Used by:984
Symbol 984 MovieClipUses:228 983Used by:988
Symbol 985 BitmapUsed by:986
Symbol 986 GraphicUses:985Used by:987
Symbol 987 MovieClipUses:228 986Used by:988
Symbol 988 MovieClipUses:239 984 987Used by:1562
Symbol 989 BitmapUsed by:990
Symbol 990 GraphicUses:989Used by:991
Symbol 991 MovieClipUses:228 990Used by:995 1412
Symbol 992 BitmapUsed by:993
Symbol 993 GraphicUses:992Used by:994
Symbol 994 MovieClipUses:228 993Used by:995
Symbol 995 MovieClipUses:239 991 994Used by:1562
Symbol 996 GraphicUsed by:1562
Symbol 997 BitmapUsed by:998
Symbol 998 GraphicUses:997Used by:999
Symbol 999 MovieClipUses:228 998Used by:1033
Symbol 1000 BitmapUsed by:1001
Symbol 1001 GraphicUses:1000Used by:1002
Symbol 1002 MovieClipUses:228 1001Used by:1033
Symbol 1003 BitmapUsed by:1004
Symbol 1004 GraphicUses:1003Used by:1005
Symbol 1005 MovieClipUses:228 1004Used by:1033
Symbol 1006 BitmapUsed by:1007
Symbol 1007 GraphicUses:1006Used by:1008
Symbol 1008 MovieClipUses:228 1007Used by:1033
Symbol 1009 BitmapUsed by:1010
Symbol 1010 GraphicUses:1009Used by:1011
Symbol 1011 MovieClipUses:228 1010Used by:1033
Symbol 1012 BitmapUsed by:1013
Symbol 1013 GraphicUses:1012Used by:1014
Symbol 1014 MovieClipUses:228 1013Used by:1033
Symbol 1015 BitmapUsed by:1016
Symbol 1016 GraphicUses:1015Used by:1017
Symbol 1017 MovieClipUses:228 1016Used by:1033
Symbol 1018 BitmapUsed by:1019
Symbol 1019 GraphicUses:1018Used by:1020
Symbol 1020 MovieClipUses:228 1019Used by:1033
Symbol 1021 BitmapUsed by:1022
Symbol 1022 GraphicUses:1021Used by:1023
Symbol 1023 MovieClipUses:228 1022Used by:1033
Symbol 1024 BitmapUsed by:1025
Symbol 1025 GraphicUses:1024Used by:1026
Symbol 1026 MovieClipUses:228 1025Used by:1033
Symbol 1027 BitmapUsed by:1028
Symbol 1028 GraphicUses:1027Used by:1029
Symbol 1029 MovieClipUses:228 1028Used by:1033
Symbol 1030 BitmapUsed by:1031
Symbol 1031 GraphicUses:1030Used by:1032
Symbol 1032 MovieClipUses:228 1031Used by:1033
Symbol 1033 MovieClipUses:530 999 1002 1005 1008 1011 1014 1017 1020 1023 1026 1029 1032Used by:1562
Symbol 1034 BitmapUsed by:1035
Symbol 1035 GraphicUses:1034Used by:1036
Symbol 1036 MovieClipUses:228 1035Used by:1040
Symbol 1037 BitmapUsed by:1038
Symbol 1038 GraphicUses:1037Used by:1039
Symbol 1039 MovieClipUses:228 1038Used by:1040
Symbol 1040 MovieClipUses:239 1036 1039Used by:1562
Symbol 1041 BitmapUsed by:1042
Symbol 1042 GraphicUses:1041Used by:1043
Symbol 1043 MovieClipUses:228 1042Used by:1047
Symbol 1044 BitmapUsed by:1045
Symbol 1045 GraphicUses:1044Used by:1046
Symbol 1046 MovieClipUses:228 1045Used by:1047
Symbol 1047 MovieClipUses:239 1043 1046 583Used by:1562
Symbol 1048 BitmapUsed by:1049
Symbol 1049 GraphicUses:1048Used by:1050
Symbol 1050 MovieClipUses:228 1049Used by:1057
Symbol 1051 BitmapUsed by:1052
Symbol 1052 GraphicUses:1051Used by:1053
Symbol 1053 MovieClipUses:228 1052Used by:1057
Symbol 1054 BitmapUsed by:1055
Symbol 1055 GraphicUses:1054Used by:1056
Symbol 1056 MovieClipUses:228 1055Used by:1057
Symbol 1057 MovieClipUses:239 1050 1053 1056Used by:1562
Symbol 1058 BitmapUsed by:1059
Symbol 1059 GraphicUses:1058Used by:1060
Symbol 1060 MovieClipUses:228 1059Used by:1064
Symbol 1061 BitmapUsed by:1062
Symbol 1062 GraphicUses:1061Used by:1063
Symbol 1063 MovieClipUses:228 1062Used by:1064
Symbol 1064 MovieClipUses:239 1060 1063 603Used by:1562
Symbol 1065 BitmapUsed by:1066
Symbol 1066 GraphicUses:1065Used by:1067
Symbol 1067 MovieClipUses:228 1066Used by:1074
Symbol 1068 BitmapUsed by:1069
Symbol 1069 GraphicUses:1068Used by:1070
Symbol 1070 MovieClipUses:228 1069Used by:1074
Symbol 1071 BitmapUsed by:1072
Symbol 1072 GraphicUses:1071Used by:1073
Symbol 1073 MovieClipUses:228 1072Used by:1074
Symbol 1074 MovieClipUses:239 1067 1070 1073Used by:1562
Symbol 1075 BitmapUsed by:1076
Symbol 1076 GraphicUses:1075Used by:1077
Symbol 1077 MovieClipUses:228 1076Used by:1084
Symbol 1078 BitmapUsed by:1079
Symbol 1079 GraphicUses:1078Used by:1080
Symbol 1080 MovieClipUses:228 1079Used by:1084
Symbol 1081 BitmapUsed by:1082
Symbol 1082 GraphicUses:1081Used by:1083
Symbol 1083 MovieClipUses:228 1082Used by:1084
Symbol 1084 MovieClipUses:239 1077 1080 1083Used by:1562
Symbol 1085 BitmapUsed by:1086
Symbol 1086 GraphicUses:1085Used by:1087
Symbol 1087 MovieClipUses:228 1086Used by:1094
Symbol 1088 BitmapUsed by:1089
Symbol 1089 GraphicUses:1088Used by:1090
Symbol 1090 MovieClipUses:228 1089Used by:1094
Symbol 1091 BitmapUsed by:1092
Symbol 1092 GraphicUses:1091Used by:1093
Symbol 1093 MovieClipUses:228 1092Used by:1094
Symbol 1094 MovieClipUses:239 1087 1090 1093Used by:1562
Symbol 1095 BitmapUsed by:1096
Symbol 1096 GraphicUses:1095Used by:1097
Symbol 1097 MovieClipUses:228 1096Used by:1104
Symbol 1098 BitmapUsed by:1099
Symbol 1099 GraphicUses:1098Used by:1100
Symbol 1100 MovieClipUses:228 1099Used by:1104
Symbol 1101 BitmapUsed by:1102
Symbol 1102 GraphicUses:1101Used by:1103
Symbol 1103 MovieClipUses:228 1102Used by:1104
Symbol 1104 MovieClipUses:239 1097 1100 1103Used by:1562
Symbol 1105 BitmapUsed by:1106
Symbol 1106 GraphicUses:1105Used by:1107
Symbol 1107 MovieClipUses:228 1106Used by:1113
Symbol 1108 BitmapUsed by:1109
Symbol 1109 GraphicUses:1108Used by:1110
Symbol 1110 MovieClipUses:228 1109Used by:1113
Symbol 1111 GraphicUses:651Used by:1112
Symbol 1112 MovieClipUses:228 1111Used by:1113
Symbol 1113 MovieClipUses:239 1107 1110 1112Used by:1562
Symbol 1114 GraphicUses:656Used by:1115
Symbol 1115 MovieClipUses:228 1114Used by:1121
Symbol 1116 BitmapUsed by:1117
Symbol 1117 GraphicUses:1116Used by:1118
Symbol 1118 MovieClipUses:228 1117Used by:1121
Symbol 1119 GraphicUses:662Used by:1120
Symbol 1120 MovieClipUses:228 1119Used by:1121
Symbol 1121 MovieClipUses:239 1115 1118 1120Used by:1562
Symbol 1122 BitmapUsed by:1123
Symbol 1123 GraphicUses:1122Used by:1124
Symbol 1124 MovieClipUses:228 1123Used by:1134
Symbol 1125 BitmapUsed by:1126
Symbol 1126 GraphicUses:1125Used by:1127
Symbol 1127 MovieClipUses:228 1126Used by:1134
Symbol 1128 BitmapUsed by:1129
Symbol 1129 GraphicUses:1128Used by:1130
Symbol 1130 MovieClipUses:228 1129Used by:1134
Symbol 1131 BitmapUsed by:1132
Symbol 1132 GraphicUses:1131Used by:1133
Symbol 1133 MovieClipUses:228 1132Used by:1134
Symbol 1134 MovieClipUses:239 1124 1127 1130 1133 680Used by:1562
Symbol 1135 GraphicUses:682Used by:1136
Symbol 1136 MovieClipUses:228 1135Used by:1146
Symbol 1137 BitmapUsed by:1138
Symbol 1138 GraphicUses:1137Used by:1139
Symbol 1139 MovieClipUses:228 1138Used by:1146
Symbol 1140 BitmapUsed by:1141
Symbol 1141 GraphicUses:1140Used by:1142
Symbol 1142 MovieClipUses:228 1141Used by:1146
Symbol 1143 BitmapUsed by:1144
Symbol 1144 GraphicUses:1143Used by:1145
Symbol 1145 MovieClipUses:228 1144Used by:1146
Symbol 1146 MovieClipUses:239 1136 1139 1142 1145Used by:1562
Symbol 1147 BitmapUsed by:1148
Symbol 1148 GraphicUses:1147Used by:1149
Symbol 1149 MovieClipUses:228 1148Used by:1153
Symbol 1150 BitmapUsed by:1151
Symbol 1151 GraphicUses:1150Used by:1152
Symbol 1152 MovieClipUses:228 1151Used by:1153
Symbol 1153 MovieClipUses:695 698 701 1149 1152Used by:1562
Symbol 1154 BitmapUsed by:1155
Symbol 1155 GraphicUses:1154Used by:1156
Symbol 1156 MovieClipUses:228 1155Used by:1166
Symbol 1157 BitmapUsed by:1158
Symbol 1158 GraphicUses:1157Used by:1159
Symbol 1159 MovieClipUses:228 1158Used by:1166
Symbol 1160 BitmapUsed by:1161
Symbol 1161 GraphicUses:1160Used by:1162
Symbol 1162 MovieClipUses:228 1161Used by:1166
Symbol 1163 BitmapUsed by:1164
Symbol 1164 GraphicUses:1163Used by:1165
Symbol 1165 MovieClipUses:228 1164Used by:1166
Symbol 1166 MovieClipUses:239 1156 1159 1162 1165Used by:1562
Symbol 1167 BitmapUsed by:1168
Symbol 1168 GraphicUses:1167Used by:1169
Symbol 1169 MovieClipUses:228 1168Used by:1179
Symbol 1170 BitmapUsed by:1171
Symbol 1171 GraphicUses:1170Used by:1172
Symbol 1172 MovieClipUses:228 1171Used by:1179
Symbol 1173 BitmapUsed by:1174
Symbol 1174 GraphicUses:1173Used by:1175
Symbol 1175 MovieClipUses:228 1174Used by:1179
Symbol 1176 BitmapUsed by:1177
Symbol 1177 GraphicUses:1176Used by:1178
Symbol 1178 MovieClipUses:228 1177Used by:1179
Symbol 1179 MovieClipUses:695 1169 1172 1175 1178Used by:1562
Symbol 1180 BitmapUsed by:1181
Symbol 1181 GraphicUses:1180Used by:1182
Symbol 1182 MovieClipUses:228 1181Used by:1192
Symbol 1183 BitmapUsed by:1184
Symbol 1184 GraphicUses:1183Used by:1185
Symbol 1185 MovieClipUses:228 1184Used by:1192
Symbol 1186 BitmapUsed by:1187
Symbol 1187 GraphicUses:1186Used by:1188
Symbol 1188 MovieClipUses:228 1187Used by:1192
Symbol 1189 BitmapUsed by:1190
Symbol 1190 GraphicUses:1189Used by:1191
Symbol 1191 MovieClipUses:228 1190Used by:1192
Symbol 1192 MovieClipUses:239 1182 1185 1188 1191Used by:1562
Symbol 1193 BitmapUsed by:1194
Symbol 1194 GraphicUses:1193Used by:1195
Symbol 1195 MovieClipUses:228 1194Used by:1199
Symbol 1196 BitmapUsed by:1197
Symbol 1197 GraphicUses:1196Used by:1198
Symbol 1198 MovieClipUses:228 1197Used by:1199
Symbol 1199 MovieClipUses:695 750 753 1195 1198Used by:1562
Symbol 1200 BitmapUsed by:1201
Symbol 1201 GraphicUses:1200Used by:1202
Symbol 1202 MovieClipUses:228 1201Used by:1212
Symbol 1203 BitmapUsed by:1204
Symbol 1204 GraphicUses:1203Used by:1205
Symbol 1205 MovieClipUses:228 1204Used by:1212
Symbol 1206 BitmapUsed by:1207
Symbol 1207 GraphicUses:1206Used by:1208
Symbol 1208 MovieClipUses:228 1207Used by:1212
Symbol 1209 BitmapUsed by:1210
Symbol 1210 GraphicUses:1209Used by:1211
Symbol 1211 MovieClipUses:228 1210Used by:1212
Symbol 1212 MovieClipUses:239 1202 1205 1208 1211Used by:1562
Symbol 1213 BitmapUsed by:1214
Symbol 1214 GraphicUses:1213Used by:1215
Symbol 1215 MovieClipUses:228 1214Used by:1219
Symbol 1216 BitmapUsed by:1217
Symbol 1217 GraphicUses:1216Used by:1218
Symbol 1218 MovieClipUses:228 1217Used by:1219
Symbol 1219 MovieClipUses:695 776 779 1215 1218Used by:1562
Symbol 1220 BitmapUsed by:1221
Symbol 1221 GraphicUses:1220Used by:1222
Symbol 1222 MovieClipUses:228 1221Used by:1229
Symbol 1223 BitmapUsed by:1224
Symbol 1224 GraphicUses:1223Used by:1225
Symbol 1225 MovieClipUses:228 1224Used by:1229
Symbol 1226 BitmapUsed by:1227
Symbol 1227 GraphicUses:1226Used by:1228
Symbol 1228 MovieClipUses:228 1227Used by:1229
Symbol 1229 MovieClipUses:239 789 1222 1225 1228Used by:1562
Symbol 1230 BitmapUsed by:1231
Symbol 1231 GraphicUses:1230Used by:1232
Symbol 1232 MovieClipUses:228 1231Used by:1242
Symbol 1233 BitmapUsed by:1234
Symbol 1234 GraphicUses:1233Used by:1235
Symbol 1235 MovieClipUses:228 1234Used by:1242
Symbol 1236 BitmapUsed by:1237
Symbol 1237 GraphicUses:1236Used by:1238
Symbol 1238 MovieClipUses:228 1237Used by:1242
Symbol 1239 BitmapUsed by:1240
Symbol 1240 GraphicUses:1239Used by:1241
Symbol 1241 MovieClipUses:228 1240Used by:1242
Symbol 1242 MovieClipUses:695 1232 1235 1238 1241Used by:1562
Symbol 1243 BitmapUsed by:1244
Symbol 1244 GraphicUses:1243Used by:1245
Symbol 1245 MovieClipUses:228 1244Used by:1255
Symbol 1246 BitmapUsed by:1247
Symbol 1247 GraphicUses:1246Used by:1248
Symbol 1248 MovieClipUses:228 1247Used by:1255
Symbol 1249 BitmapUsed by:1250
Symbol 1250 GraphicUses:1249Used by:1251
Symbol 1251 MovieClipUses:228 1250Used by:1255
Symbol 1252 BitmapUsed by:1253
Symbol 1253 GraphicUses:1252Used by:1254
Symbol 1254 MovieClipUses:228 1253Used by:1255
Symbol 1255 MovieClipUses:239 1245 1248 1251 1254Used by:1562
Symbol 1256 BitmapUsed by:1257
Symbol 1257 GraphicUses:1256Used by:1258
Symbol 1258 MovieClipUses:228 1257Used by:1266
Symbol 1259 GraphicUses:828Used by:1260
Symbol 1260 MovieClipUses:228 1259Used by:1266
Symbol 1261 BitmapUsed by:1262
Symbol 1262 GraphicUses:1261Used by:1263
Symbol 1263 MovieClipUses:228 1262Used by:1266
Symbol 1264 GraphicUses:834Used by:1265
Symbol 1265 MovieClipUses:228 1264Used by:1266
Symbol 1266 MovieClipUses:695 1258 1260 1263 1265Used by:1562
Symbol 1267 GraphicUses:838Used by:1268
Symbol 1268 MovieClipUses:228 1267Used by:1278
Symbol 1269 BitmapUsed by:1270
Symbol 1270 GraphicUses:1269Used by:1271
Symbol 1271 MovieClipUses:228 1270Used by:1278
Symbol 1272 BitmapUsed by:1273
Symbol 1273 GraphicUses:1272Used by:1274
Symbol 1274 MovieClipUses:228 1273Used by:1278
Symbol 1275 BitmapUsed by:1276
Symbol 1276 GraphicUses:1275Used by:1277
Symbol 1277 MovieClipUses:228 1276Used by:1278
Symbol 1278 MovieClipUses:239 1268 1271 1274 1277Used by:1562
Symbol 1279 GraphicUses:851Used by:1280
Symbol 1280 MovieClipUses:228 1279Used by:1289
Symbol 1281 GraphicUses:854Used by:1282
Symbol 1282 MovieClipUses:228 1281Used by:1289
Symbol 1283 BitmapUsed by:1284
Symbol 1284 GraphicUses:1283Used by:1285
Symbol 1285 MovieClipUses:228 1284Used by:1289
Symbol 1286 BitmapUsed by:1287
Symbol 1287 GraphicUses:1286Used by:1288
Symbol 1288 MovieClipUses:228 1287Used by:1289
Symbol 1289 MovieClipUses:695 1280 1282 1285 1288Used by:1562
Symbol 1290 BitmapUsed by:1291
Symbol 1291 GraphicUses:1290Used by:1292
Symbol 1292 MovieClipUses:228 1291Used by:1302
Symbol 1293 BitmapUsed by:1294
Symbol 1294 GraphicUses:1293Used by:1295
Symbol 1295 MovieClipUses:228 1294Used by:1302
Symbol 1296 BitmapUsed by:1297
Symbol 1297 GraphicUses:1296Used by:1298
Symbol 1298 MovieClipUses:228 1297Used by:1302
Symbol 1299 BitmapUsed by:1300
Symbol 1300 GraphicUses:1299Used by:1301
Symbol 1301 MovieClipUses:228 1300Used by:1302
Symbol 1302 MovieClipUses:239 1292 1295 1298 1301Used by:1562
Symbol 1303 GraphicUses:877Used by:1304
Symbol 1304 MovieClipUses:228 1303Used by:1313
Symbol 1305 GraphicUses:880Used by:1306
Symbol 1306 MovieClipUses:228 1305Used by:1313
Symbol 1307 BitmapUsed by:1308
Symbol 1308 GraphicUses:1307Used by:1309
Symbol 1309 MovieClipUses:228 1308Used by:1313
Symbol 1310 BitmapUsed by:1311
Symbol 1311 GraphicUses:1310Used by:1312
Symbol 1312 MovieClipUses:228 1311Used by:1313
Symbol 1313 MovieClipUses:695 1304 1306 1309 1312Used by:1562
Symbol 1314 GraphicUsed by:1562
Symbol 1315 GraphicUses:891Used by:1316
Symbol 1316 MovieClipUses:228 1315Used by:1319
Symbol 1317 GraphicUses:894Used by:1318
Symbol 1318 MovieClipUses:228 1317Used by:1319
Symbol 1319 MovieClipUses:239 1316 1318Used by:1562
Symbol 1320 BitmapUsed by:1321
Symbol 1321 GraphicUses:1320Used by:1322
Symbol 1322 MovieClipUses:228 1321Used by:1326
Symbol 1323 BitmapUsed by:1324
Symbol 1324 GraphicUses:1323Used by:1325
Symbol 1325 MovieClipUses:228 1324Used by:1326
Symbol 1326 MovieClipUses:239 1322 1325Used by:1562
Symbol 1327 BitmapUsed by:1328
Symbol 1328 GraphicUses:1327Used by:1329
Symbol 1329 MovieClipUses:228 1328Used by:1333
Symbol 1330 BitmapUsed by:1331
Symbol 1331 GraphicUses:1330Used by:1332
Symbol 1332 MovieClipUses:228 1331Used by:1333
Symbol 1333 MovieClipUses:239 1329 1332Used by:1562
Symbol 1334 BitmapUsed by:1335
Symbol 1335 GraphicUses:1334Used by:1336
Symbol 1336 MovieClipUses:228 1335Used by:1339
Symbol 1337 GraphicUses:915Used by:1338
Symbol 1338 MovieClipUses:228 1337Used by:1339
Symbol 1339 MovieClipUses:239 1336 1338Used by:1562
Symbol 1340 BitmapUsed by:1341
Symbol 1341 GraphicUses:1340Used by:1342
Symbol 1342 MovieClipUses:228 1341Used by:1346
Symbol 1343 BitmapUsed by:1344
Symbol 1344 GraphicUses:1343Used by:1345
Symbol 1345 MovieClipUses:228 1344Used by:1346
Symbol 1346 MovieClipUses:239 1342 1345Used by:1562
Symbol 1347 BitmapUsed by:1348
Symbol 1348 GraphicUses:1347Used by:1349
Symbol 1349 MovieClipUses:228 1348Used by:1353
Symbol 1350 BitmapUsed by:1351
Symbol 1351 GraphicUses:1350Used by:1352
Symbol 1352 MovieClipUses:228 1351Used by:1353
Symbol 1353 MovieClipUses:239 1349 1352Used by:1562
Symbol 1354 BitmapUsed by:1355
Symbol 1355 GraphicUses:1354Used by:1356
Symbol 1356 MovieClipUses:228 1355Used by:1360
Symbol 1357 BitmapUsed by:1358
Symbol 1358 GraphicUses:1357Used by:1359
Symbol 1359 MovieClipUses:228 1358Used by:1360
Symbol 1360 MovieClipUses:239 1356 1359Used by:1562
Symbol 1361 BitmapUsed by:1362
Symbol 1362 GraphicUses:1361Used by:1363
Symbol 1363 MovieClipUses:228 1362Used by:1367
Symbol 1364 BitmapUsed by:1365
Symbol 1365 GraphicUses:1364Used by:1366
Symbol 1366 MovieClipUses:228 1365Used by:1367
Symbol 1367 MovieClipUses:239 1363 1366Used by:1562
Symbol 1368 BitmapUsed by:1369
Symbol 1369 GraphicUses:1368Used by:1370
Symbol 1370 MovieClipUses:228 1369Used by:1374
Symbol 1371 BitmapUsed by:1372
Symbol 1372 GraphicUses:1371Used by:1373
Symbol 1373 MovieClipUses:228 1372Used by:1374
Symbol 1374 MovieClipUses:239 1370 1373Used by:1562
Symbol 1375 BitmapUsed by:1376
Symbol 1376 GraphicUses:1375Used by:1377
Symbol 1377 MovieClipUses:228 1376Used by:1381
Symbol 1378 BitmapUsed by:1379
Symbol 1379 GraphicUses:1378Used by:1380
Symbol 1380 MovieClipUses:228 1379Used by:1381
Symbol 1381 MovieClipUses:239 1377 1380Used by:1562
Symbol 1382 BitmapUsed by:1383
Symbol 1383 GraphicUses:1382Used by:1384
Symbol 1384 MovieClipUses:228 1383Used by:1388
Symbol 1385 BitmapUsed by:1386
Symbol 1386 GraphicUses:1385Used by:1387
Symbol 1387 MovieClipUses:228 1386Used by:1388
Symbol 1388 MovieClipUses:239 1384 1387Used by:1562
Symbol 1389 GraphicUses:968Used by:1390
Symbol 1390 MovieClipUses:228 1389Used by:1394
Symbol 1391 BitmapUsed by:1392
Symbol 1392 GraphicUses:1391Used by:1393
Symbol 1393 MovieClipUses:228 1392Used by:1394
Symbol 1394 MovieClipUses:239 1390 1393Used by:1562
Symbol 1395 BitmapUsed by:1396
Symbol 1396 GraphicUses:1395Used by:1397
Symbol 1397 MovieClipUses:228 1396Used by:1401
Symbol 1398 BitmapUsed by:1399
Symbol 1399 GraphicUses:1398Used by:1400
Symbol 1400 MovieClipUses:228 1399Used by:1401
Symbol 1401 MovieClipUses:239 1397 1400Used by:1562
Symbol 1402 BitmapUsed by:1403
Symbol 1403 GraphicUses:1402Used by:1404
Symbol 1404 MovieClipUses:228 1403Used by:1408
Symbol 1405 BitmapUsed by:1406
Symbol 1406 GraphicUses:1405Used by:1407
Symbol 1407 MovieClipUses:228 1406Used by:1408
Symbol 1408 MovieClipUses:239 1404 1407Used by:1562
Symbol 1409 BitmapUsed by:1410
Symbol 1410 GraphicUses:1409Used by:1411
Symbol 1411 MovieClipUses:228 1410Used by:1412
Symbol 1412 MovieClipUses:239 991 1411Used by:1562
Symbol 1413 GraphicUsed by:1562
Symbol 1414 GraphicUsed by:1433
Symbol 1415 BitmapUsed by:1416
Symbol 1416 GraphicUses:1415Used by:1417
Symbol 1417 MovieClipUses:228 1416Used by:1433
Symbol 1418 BitmapUsed by:1419
Symbol 1419 GraphicUses:1418Used by:1420
Symbol 1420 MovieClipUses:228 1419Used by:1433
Symbol 1421 BitmapUsed by:1422
Symbol 1422 GraphicUses:1421Used by:1423
Symbol 1423 MovieClipUses:228 1422Used by:1433
Symbol 1424 BitmapUsed by:1425
Symbol 1425 GraphicUses:1424Used by:1426
Symbol 1426 MovieClipUses:228 1425Used by:1433
Symbol 1427 BitmapUsed by:1428
Symbol 1428 GraphicUses:1427Used by:1429
Symbol 1429 MovieClipUses:228 1428Used by:1433
Symbol 1430 BitmapUsed by:1431
Symbol 1431 GraphicUses:1430Used by:1432
Symbol 1432 MovieClipUses:228 1431Used by:1433
Symbol 1433 MovieClipUses:1414 1417 1420 1423 1426 1429 1432Used by:1562
Symbol 1434 GraphicUsed by:1562
Symbol 1435 GraphicUsed by:1451
Symbol 1436 BitmapUsed by:1437
Symbol 1437 GraphicUses:1436Used by:1438
Symbol 1438 MovieClipUses:228 1437Used by:1451
Symbol 1439 BitmapUsed by:1440
Symbol 1440 GraphicUses:1439Used by:1441
Symbol 1441 MovieClipUses:228 1440Used by:1451
Symbol 1442 BitmapUsed by:1443
Symbol 1443 GraphicUses:1442Used by:1444
Symbol 1444 MovieClipUses:228 1443Used by:1451
Symbol 1445 BitmapUsed by:1446
Symbol 1446 GraphicUses:1445Used by:1447
Symbol 1447 MovieClipUses:228 1446Used by:1451
Symbol 1448 BitmapUsed by:1449
Symbol 1449 GraphicUses:1448Used by:1450
Symbol 1450 MovieClipUses:228 1449Used by:1451
Symbol 1451 MovieClipUses:1435 1438 1441 1444 1447 1450Used by:1562
Symbol 1452 GraphicUsed by:1562
Symbol 1453 GraphicUsed by:1463
Symbol 1454 BitmapUsed by:1455
Symbol 1455 GraphicUses:1454Used by:1456
Symbol 1456 MovieClipUses:228 1455Used by:1463
Symbol 1457 BitmapUsed by:1458
Symbol 1458 GraphicUses:1457Used by:1459
Symbol 1459 MovieClipUses:228 1458Used by:1463
Symbol 1460 BitmapUsed by:1461
Symbol 1461 GraphicUses:1460Used by:1462
Symbol 1462 MovieClipUses:228 1461Used by:1463
Symbol 1463 MovieClipUses:1453 1456 1459 1462Used by:1562
Symbol 1464 GraphicUsed by:1468
Symbol 1465 BitmapUsed by:1466
Symbol 1466 GraphicUses:1465Used by:1467
Symbol 1467 MovieClipUses:228 1466Used by:1468
Symbol 1468 MovieClipUses:1464 1467Used by:1562
Symbol 1469 GraphicUsed by:1562
Symbol 1470 GraphicUsed by:1477
Symbol 1471 BitmapUsed by:1472
Symbol 1472 GraphicUses:1471Used by:1473
Symbol 1473 MovieClipUses:228 1472Used by:1477
Symbol 1474 BitmapUsed by:1475
Symbol 1475 GraphicUses:1474Used by:1476
Symbol 1476 MovieClipUses:228 1475Used by:1477
Symbol 1477 MovieClipUses:1470 1473 1476Used by:1562
Symbol 1478 GraphicUsed by:1562
Symbol 1479 GraphicUsed by:1486
Symbol 1480 BitmapUsed by:1481
Symbol 1481 GraphicUses:1480Used by:1482
Symbol 1482 MovieClipUses:228 1481Used by:1486
Symbol 1483 BitmapUsed by:1484
Symbol 1484 GraphicUses:1483Used by:1485
Symbol 1485 MovieClipUses:228 1484Used by:1486
Symbol 1486 MovieClipUses:1479 1482 1485Used by:1562
Symbol 1487 GraphicUsed by:1562
Symbol 1488 GraphicUsed by:1495
Symbol 1489 BitmapUsed by:1490
Symbol 1490 GraphicUses:1489Used by:1491
Symbol 1491 MovieClipUses:228 1490Used by:1495
Symbol 1492 BitmapUsed by:1493
Symbol 1493 GraphicUses:1492Used by:1494
Symbol 1494 MovieClipUses:228 1493Used by:1495
Symbol 1495 MovieClipUses:1488 1491 1494Used by:1562
Symbol 1496 GraphicUsed by:1503
Symbol 1497 BitmapUsed by:1498
Symbol 1498 GraphicUses:1497Used by:1499
Symbol 1499 MovieClipUses:228 1498Used by:1503
Symbol 1500 BitmapUsed by:1501
Symbol 1501 GraphicUses:1500Used by:1502
Symbol 1502 MovieClipUses:228 1501Used by:1503
Symbol 1503 MovieClipUses:1496 1499 1502Used by:1562
Symbol 1504 GraphicUsed by:1562
Symbol 1505 GraphicUsed by:1512
Symbol 1506 BitmapUsed by:1507 1550
Symbol 1507 GraphicUses:1506Used by:1508
Symbol 1508 MovieClipUses:228 1507Used by:1512
Symbol 1509 BitmapUsed by:1510
Symbol 1510 GraphicUses:1509Used by:1511
Symbol 1511 MovieClipUses:228 1510Used by:1512
Symbol 1512 MovieClipUses:1505 1508 1511Used by:1562
Symbol 1513 GraphicUsed by:1562
Symbol 1514 GraphicUsed by:1521
Symbol 1515 BitmapUsed by:1516
Symbol 1516 GraphicUses:1515Used by:1517
Symbol 1517 MovieClipUses:228 1516Used by:1521
Symbol 1518 BitmapUsed by:1519
Symbol 1519 GraphicUses:1518Used by:1520
Symbol 1520 MovieClipUses:228 1519Used by:1521
Symbol 1521 MovieClipUses:1514 1517 1520Used by:1562
Symbol 1522 GraphicUsed by:1529
Symbol 1523 BitmapUsed by:1524
Symbol 1524 GraphicUses:1523Used by:1525
Symbol 1525 MovieClipUses:228 1524Used by:1529
Symbol 1526 BitmapUsed by:1527
Symbol 1527 GraphicUses:1526Used by:1528
Symbol 1528 MovieClipUses:228 1527Used by:1529
Symbol 1529 MovieClipUses:1522 1525 1528Used by:1562
Symbol 1530 GraphicUsed by:1562
Symbol 1531 GraphicUsed by:1538
Symbol 1532 BitmapUsed by:1533
Symbol 1533 GraphicUses:1532Used by:1534
Symbol 1534 MovieClipUses:228 1533Used by:1538
Symbol 1535 BitmapUsed by:1536
Symbol 1536 GraphicUses:1535Used by:1537
Symbol 1537 MovieClipUses:228 1536Used by:1538
Symbol 1538 MovieClipUses:1531 1534 1537Used by:1562
Symbol 1539 GraphicUsed by:1562
Symbol 1540 GraphicUsed by:1547
Symbol 1541 BitmapUsed by:1542
Symbol 1542 GraphicUses:1541Used by:1543
Symbol 1543 MovieClipUses:228 1542Used by:1547
Symbol 1544 BitmapUsed by:1545
Symbol 1545 GraphicUses:1544Used by:1546
Symbol 1546 MovieClipUses:228 1545Used by:1547
Symbol 1547 MovieClipUses:1540 1543 1546Used by:1562
Symbol 1548 GraphicUsed by:1562
Symbol 1549 GraphicUsed by:1555
Symbol 1550 GraphicUses:1506Used by:1551
Symbol 1551 MovieClipUses:228 1550Used by:1555
Symbol 1552 BitmapUsed by:1553
Symbol 1553 GraphicUses:1552Used by:1554
Symbol 1554 MovieClipUses:228 1553Used by:1555
Symbol 1555 MovieClipUses:1549 1551 1554Used by:1562
Symbol 1556 GraphicUsed by:1562
Symbol 1557 GraphicUsed by:1561
Symbol 1558 GraphicUsed by:1561
Symbol 1559 GraphicUsed by:1561
Symbol 1560 GraphicUsed by:1561
Symbol 1561 MovieClipUses:1557 1558 1559 1560Used by:1562
Symbol 1562 MovieClipUses:202 205 207 209 210 212 213 214 216 223 224 337 338 355 372 373 381 389 397 405 413 421 429 437 445 465 472 473 481 482 490 498 514 515 520 521 528 529 567 574 584 594 604 614 624 634 644 654 655 665 681 694 708 721 734 747 760 773 786 798 811 824 837 850 863 876 889 890 897 904 911 918 925 932 939 946 953 960 967 974 981 988 995 996 1033 1040 1047 1057 1064 1074 1084 1094 1104 1113 1121 1134 1146 1153 1166 1179 1192 1199 1212 1219 1229 1242 1255 1266 1278 1289 1302 1313 1314 1319 1326 1333 1339 1346 1353 1360 1367 1374 1381 1388 1394 1401 1408 1412 1413 1433 1434 1451 1452 1463 1468 1469 1477 1478 1486 1487 1495 1503 1504 1512 1513 1521 1529 1530 1538 1539 1547 1548 1555 1556 1561Used by:1564
Symbol 1563 GraphicUsed by:1564
Symbol 1564 MovieClipUses:1562 1563Used by:1578
Symbol 1565 BitmapUsed by:1566
Symbol 1566 GraphicUses:1565Used by:1577
Symbol 1567 GraphicUsed by:1568
Symbol 1568 MovieClipUses:1567Used by:1577
Symbol 1569 GraphicUsed by:1577
Symbol 1570 GraphicUsed by:1571
Symbol 1571 MovieClipUses:1570Used by:1573
Symbol 1572 GraphicUsed by:1573
Symbol 1573 MovieClipUses:1571 1572Used by:1577
Symbol 1574 GraphicUsed by:1577
Symbol 1575 GraphicUsed by:1576
Symbol 1576 MovieClipUses:1575Used by:1577
Symbol 1577 MovieClipUses:1566 1568 1569 1573 1574 1576Used by:1578
Symbol 1578 MovieClipUses:1564 1577Used by:1795
Symbol 1579 GraphicUsed by:1591
Symbol 1580 GraphicUsed by:1589
Symbol 1581 GraphicUsed by:1588
Symbol 1582 GraphicUsed by:1588
Symbol 1583 GraphicUsed by:1588
Symbol 1584 GraphicUsed by:1588
Symbol 1585 GraphicUsed by:1588
Symbol 1586 GraphicUsed by:1588
Symbol 1587 GraphicUsed by:1588
Symbol 1588 MovieClipUses:1581 1582 1583 1584 1585 1586 1587Used by:1589
Symbol 1589 MovieClipUses:1580 1588Used by:1591
Symbol 1590 GraphicUsed by:1591
Symbol 1591 MovieClipUses:1579 1589 1590Used by:1795
Symbol 1592 GraphicUsed by:1593
Symbol 1593 MovieClipUses:1592Used by:1604
Symbol 1594 GraphicUsed by:1595
Symbol 1595 MovieClipUses:1594Used by:1604
Symbol 1596 GraphicUsed by:1597
Symbol 1597 MovieClipUses:1596Used by:1604
Symbol 1598 GraphicUsed by:1599
Symbol 1599 MovieClipUses:1598Used by:1604
Symbol 1600 GraphicUsed by:1601
Symbol 1601 MovieClipUses:1600Used by:1604
Symbol 1602 GraphicUsed by:1603
Symbol 1603 MovieClipUses:1602Used by:1604
Symbol 1604 MovieClipUses:1593 1595 1597 1599 1601 1603Used by:1795
Symbol 1605 GraphicUsed by:1614
Symbol 1606 GraphicUsed by:1607
Symbol 1607 MovieClipUses:1606Used by:1614
Symbol 1608 GraphicUsed by:1611
Symbol 1609 GraphicUsed by:1611
Symbol 1610 GraphicUsed by:1611
Symbol 1611 MovieClipUses:1608 1609 1610Used by:1614
Symbol 1612 GraphicUsed by:1613
Symbol 1613 MovieClipUses:1612Used by:1614 1617 1623 1625 1628 1630 1632 1636 1652 1654 1656 1658 1660 1662
Symbol 1614 MovieClipUses:1605 1607 1611 1613Used by:1795
Symbol 1615 GraphicUsed by:1617
Symbol 1616 GraphicUsed by:1617
Symbol 1617 MovieClipUses:1615 1613 1616Used by:1637
Symbol 1618 GraphicUsed by:1623
Symbol 1619 GraphicUsed by:1620
Symbol 1620 MovieClipUses:1619Used by:1623
Symbol 1621 GraphicUsed by:1623
Symbol 1622 GraphicUsed by:1623
Symbol 1623 MovieClipUses:1618 1620 1621 1613 1622Used by:1637
Symbol 1624 GraphicUsed by:1625
Symbol 1625 MovieClipUses:1624 1613Used by:1637
Symbol 1626 GraphicUsed by:1628
Symbol 1627 GraphicUsed by:1628
Symbol 1628 MovieClipUses:1626 1613 1627Used by:1637
Symbol 1629 GraphicUsed by:1630
Symbol 1630 MovieClipUses:1629 1613Used by:1637
Symbol 1631 GraphicUsed by:1632
Symbol 1632 MovieClipUses:1631 1613Used by:1637
Symbol 1633 GraphicUsed by:1634
Symbol 1634 MovieClipUses:1633Used by:1636
Symbol 1635 GraphicUsed by:1636
Symbol 1636 MovieClipUses:1634 1613 1635Used by:1637
Symbol 1637 MovieClipUses:1617 1623 1625 1628 1630 1632 1636Used by:1795
Symbol 1638 GraphicUsed by:1639
Symbol 1639 MovieClipUses:1638Used by:1650
Symbol 1640 GraphicUsed by:1641
Symbol 1641 MovieClipUses:1640Used by:1650
Symbol 1642 GraphicUsed by:1643
Symbol 1643 MovieClipUses:1642Used by:1650
Symbol 1644 GraphicUsed by:1645
Symbol 1645 MovieClipUses:1644Used by:1650
Symbol 1646 GraphicUsed by:1647
Symbol 1647 MovieClipUses:1646Used by:1650
Symbol 1648 GraphicUsed by:1649
Symbol 1649 MovieClipUses:1648Used by:1650
Symbol 1650 MovieClipUses:1639 1641 1643 1645 1647 1649Used by:1795
Symbol 1651 GraphicUsed by:1652
Symbol 1652 MovieClipUses:1651 1613Used by:1663
Symbol 1653 GraphicUsed by:1654
Symbol 1654 MovieClipUses:1653 1613Used by:1663
Symbol 1655 GraphicUsed by:1656
Symbol 1656 MovieClipUses:1655 1613Used by:1663
Symbol 1657 GraphicUsed by:1658
Symbol 1658 MovieClipUses:1657 1613Used by:1663
Symbol 1659 GraphicUsed by:1660
Symbol 1660 MovieClipUses:1659 1613Used by:1663
Symbol 1661 GraphicUsed by:1662
Symbol 1662 MovieClipUses:1661 1613Used by:1663
Symbol 1663 MovieClipUses:1652 1654 1656 1658 1660 1662Used by:1795
Symbol 1664 GraphicUsed by:1669
Symbol 1665 GraphicUsed by:1666
Symbol 1666 MovieClipUses:1665Used by:1669 1680
Symbol 1667 GraphicUsed by:1669 1676 1680 1683 1685 1765
Symbol 1668 GraphicUsed by:1669 1680 1685 1765
Symbol 1669 MovieClipUses:1664 1666 1667 1668Used by:1686
Symbol 1670 GraphicUsed by:1673
Symbol 1671 GraphicUsed by:1672
Symbol 1672 MovieClipUses:1671Used by:1673
Symbol 1673 MovieClipUses:1670 1672Used by:1686
Symbol 1674 GraphicUsed by:1676
Symbol 1675 GraphicUsed by:1676
Symbol 1676 MovieClipUses:1674 1667 1675Used by:1686
Symbol 1677 GraphicUsed by:1678
Symbol 1678 MovieClipUses:1677Used by:1686
Symbol 1679 GraphicUsed by:1680
Symbol 1680 MovieClipUses:1679 1666 1667 1668Used by:1686
Symbol 1681 GraphicUsed by:1683
Symbol 1682 GraphicUsed by:1683
Symbol 1683 MovieClipUses:1681 1667 1682Used by:1686
Symbol 1684 GraphicUsed by:1685
Symbol 1685 MovieClipUses:1684 1667 1668Used by:1686
Symbol 1686 MovieClipUses:1669 1673 1676 1678 1680 1683 1685Used by:1795
Symbol 1687 GraphicUsed by:1688
Symbol 1688 MovieClipUses:1687Used by:1701
Symbol 1689 GraphicUsed by:1690
Symbol 1690 MovieClipUses:1689Used by:1701
Symbol 1691 GraphicUsed by:1692
Symbol 1692 MovieClipUses:1691Used by:1701
Symbol 1693 GraphicUsed by:1694
Symbol 1694 MovieClipUses:1693Used by:1701
Symbol 1695 GraphicUsed by:1696
Symbol 1696 MovieClipUses:1695Used by:1701
Symbol 1697 GraphicUsed by:1698
Symbol 1698 MovieClipUses:1697Used by:1701
Symbol 1699 GraphicUsed by:1700
Symbol 1700 MovieClipUses:1699Used by:1701
Symbol 1701 MovieClipUses:1688 1690 1692 1694 1696 1698 1700Used by:1795
Symbol 1702 GraphicUsed by:1703
Symbol 1703 MovieClipUses:1702Used by:1714
Symbol 1704 GraphicUsed by:1705
Symbol 1705 MovieClipUses:1704Used by:1714
Symbol 1706 GraphicUsed by:1707
Symbol 1707 MovieClipUses:1706Used by:1714
Symbol 1708 GraphicUsed by:1709
Symbol 1709 MovieClipUses:1708Used by:1714
Symbol 1710 GraphicUsed by:1711
Symbol 1711 MovieClipUses:1710Used by:1714
Symbol 1712 GraphicUsed by:1713
Symbol 1713 MovieClipUses:1712Used by:1714
Symbol 1714 MovieClipUses:1703 1705 1707 1709 1711 1713Used by:1795
Symbol 1715 GraphicUsed by:1716
Symbol 1716 MovieClipUses:1715Used by:1729
Symbol 1717 GraphicUsed by:1718
Symbol 1718 MovieClipUses:1717Used by:1729
Symbol 1719 GraphicUsed by:1720
Symbol 1720 MovieClipUses:1719Used by:1729
Symbol 1721 GraphicUsed by:1722
Symbol 1722 MovieClipUses:1721Used by:1729
Symbol 1723 GraphicUsed by:1724
Symbol 1724 MovieClipUses:1723Used by:1729
Symbol 1725 GraphicUsed by:1726
Symbol 1726 MovieClipUses:1725Used by:1729
Symbol 1727 GraphicUsed by:1728
Symbol 1728 MovieClipUses:1727Used by:1729
Symbol 1729 MovieClipUses:1716 1718 1720 1722 1724 1726 1728Used by:1795
Symbol 1730 GraphicUsed by:1731
Symbol 1731 MovieClipUses:1730Used by:1744
Symbol 1732 GraphicUsed by:1733
Symbol 1733 MovieClipUses:1732Used by:1744
Symbol 1734 GraphicUsed by:1735
Symbol 1735 MovieClipUses:1734Used by:1744
Symbol 1736 GraphicUsed by:1737
Symbol 1737 MovieClipUses:1736Used by:1744
Symbol 1738 GraphicUsed by:1739
Symbol 1739 MovieClipUses:1738Used by:1744
Symbol 1740 GraphicUsed by:1741
Symbol 1741 MovieClipUses:1740Used by:1744
Symbol 1742 GraphicUsed by:1743
Symbol 1743 MovieClipUses:1742Used by:1744
Symbol 1744 MovieClipUses:1731 1733 1735 1737 1739 1741 1743Used by:1795
Symbol 1745 GraphicUsed by:1746
Symbol 1746 MovieClipUses:1745Used by:1759
Symbol 1747 GraphicUsed by:1748
Symbol 1748 MovieClipUses:1747Used by:1759
Symbol 1749 GraphicUsed by:1750
Symbol 1750 MovieClipUses:1749Used by:1759
Symbol 1751 GraphicUsed by:1752
Symbol 1752 MovieClipUses:1751Used by:1759
Symbol 1753 GraphicUsed by:1754
Symbol 1754 MovieClipUses:1753Used by:1759
Symbol 1755 GraphicUsed by:1756
Symbol 1756 MovieClipUses:1755Used by:1759
Symbol 1757 GraphicUsed by:1758
Symbol 1758 MovieClipUses:1757Used by:1759
Symbol 1759 MovieClipUses:1746 1748 1750 1752 1754 1756 1758Used by:1795
Symbol 1760 GraphicUsed by:1761
Symbol 1761 MovieClipUses:1760Used by:1774
Symbol 1762 GraphicUsed by:1763
Symbol 1763 MovieClipUses:1762Used by:1774
Symbol 1764 GraphicUsed by:1765
Symbol 1765 MovieClipUses:1764 1667 1668Used by:1774
Symbol 1766 GraphicUsed by:1767
Symbol 1767 MovieClipUses:1766Used by:1774
Symbol 1768 GraphicUsed by:1769
Symbol 1769 MovieClipUses:1768Used by:1774
Symbol 1770 GraphicUsed by:1771
Symbol 1771 MovieClipUses:1770Used by:1774
Symbol 1772 GraphicUsed by:1773
Symbol 1773 MovieClipUses:1772Used by:1774
Symbol 1774 MovieClipUses:1761 1763 1765 1767 1769 1771 1773Used by:1795
Symbol 1775 GraphicUsed by:1776
Symbol 1776 MovieClipUses:1775Used by:1778
Symbol 1777 GraphicUsed by:1778
Symbol 1778 MovieClipUses:1776 1777Used by:1794
Symbol 1779 GraphicUsed by:1780
Symbol 1780 MovieClipUses:1779Used by:1794
Symbol 1781 GraphicUsed by:1782
Symbol 1782 MovieClipUses:1781Used by:1794
Symbol 1783 GraphicUsed by:1784
Symbol 1784 MovieClipUses:1783Used by:1794
Symbol 1785 GraphicUsed by:1786
Symbol 1786 MovieClipUses:1785Used by:1794
Symbol 1787 GraphicUsed by:1793
Symbol 1788 GraphicUsed by:1793
Symbol 1789 GraphicUsed by:1790
Symbol 1790 MovieClipUses:1789Used by:1793
Symbol 1791 GraphicUsed by:1793
Symbol 1792 GraphicUsed by:1793
Symbol 1793 MovieClipUses:1787 1788 1790 1791 1792Used by:1794
Symbol 1794 MovieClipUses:1778 1780 1782 1784 1786 1793Used by:1795
Symbol 1795 MovieClipUses:1578 1591 1604 1614 1637 1650 1663 1686 1701 1714 1729 1744 1759 1774 1794Used by:1843
Symbol 1796 GraphicUsed by:1798 1802 1804 1808 1811 1812 1820
Symbol 1797 GraphicUsed by:1798
Symbol 1798 ButtonUses:1796 1797Used by:1842
Symbol 1799 GraphicUsed by:1802
Symbol 1800 GraphicUsed by:1802
Symbol 1801 GraphicUsed by:1802
Symbol 1802 ButtonUses:1796 1799 1800 1801Used by:1842
Symbol 1803 GraphicUsed by:1804
Symbol 1804 ButtonUses:1796 1803Used by:1842
Symbol 1805 GraphicUsed by:1808
Symbol 1806 GraphicUsed by:1808
Symbol 1807 GraphicUsed by:1808
Symbol 1808 ButtonUses:1796 1805 1806 1807Used by:1842
Symbol 1809 GraphicUsed by:1811
Symbol 1810 GraphicUsed by:1811 1812
Symbol 1811 ButtonUses:1796 1809 1810Used by:1842
Symbol 1812 ButtonUses:1796 1810Used by:1842
Symbol 1813 GraphicUsed by:1818
Symbol 1814 GraphicUsed by:1818
Symbol 1815 GraphicUsed by:1818
Symbol 1816 GraphicUsed by:1818
Symbol 1817 GraphicUsed by:1818 1825 1829 1833 1837 1841
Symbol 1818 ButtonUses:1813 1814 1815 1816 1817Used by:1842
Symbol 1819 GraphicUsed by:1820
Symbol 1820 ButtonUses:1796 1819Used by:1842
Symbol 1821 GraphicUsed by:1825
Symbol 1822 GraphicUsed by:1825
Symbol 1823 GraphicUsed by:1825 1829 1833 1837 1841
Symbol 1824 GraphicUsed by:1825
Symbol 1825 ButtonUses:1821 1822 1823 1824 1817Used by:1842
Symbol 1826 GraphicUsed by:1829
Symbol 1827 GraphicUsed by:1829
Symbol 1828 GraphicUsed by:1829
Symbol 1829 ButtonUses:1826 1827 1823 1828 1817Used by:1842
Symbol 1830 GraphicUsed by:1833
Symbol 1831 GraphicUsed by:1833
Symbol 1832 GraphicUsed by:1833
Symbol 1833 ButtonUses:1830 1831 1823 1832 1817Used by:1842
Symbol 1834 GraphicUsed by:1837
Symbol 1835 GraphicUsed by:1837
Symbol 1836 GraphicUsed by:1837
Symbol 1837 ButtonUses:1834 1835 1823 1836 1817Used by:1842
Symbol 1838 GraphicUsed by:1841
Symbol 1839 GraphicUsed by:1841
Symbol 1840 GraphicUsed by:1841
Symbol 1841 ButtonUses:1838 1839 1823 1840 1817Used by:1842
Symbol 1842 MovieClipUses:1798 1802 1804 1808 1811 1812 1818 1820 1825 1829 1833 1837 1841Used by:1843
Symbol 1843 MovieClip {MainMovie} [MainMovie]Uses:1795 1842
Symbol 1844 GraphicUsed by:1854
Symbol 1845 GraphicUsed by:1849
Symbol 1846 GraphicUsed by:1849
Symbol 1847 GraphicUsed by:1849
Symbol 1848 GraphicUsed by:1849
Symbol 1849 ButtonUses:1845 1846 1847 1848Used by:1854 1858
Symbol 1850 GraphicUsed by:1853
Symbol 1851 GraphicUsed by:1853
Symbol 1852 GraphicUsed by:1853
Symbol 1853 ButtonUses:1850 1851 1852Used by:1854 1858
Symbol 1854 MovieClip {SignUpMessageMc} [SignUpMessageMc]Uses:1844 1849 1853
Symbol 1855 GraphicUsed by:1858 1865
Symbol 1856 FontUsed by:1857
Symbol 1857 TextUses:1856Used by:1858
Symbol 1858 MovieClip {SelectScreenShotMc} [SelectScreenShotMc]Uses:1855 1857 1849 1853
Symbol 1859 GraphicUsed by:1864
Symbol 1860 GraphicUsed by:1864
Symbol 1861 GraphicUsed by:1864
Symbol 1862 GraphicUsed by:1864
Symbol 1863 GraphicUsed by:1864
Symbol 1864 MovieClip {SaveBtnMc} [SaveBtnMc]Uses:1859 1860 1861 1862 1863Used by:1865
Symbol 1865 MovieClip {ApiMovieClip} [ApiMovieClip]Uses:1855 1864
Symbol 1866 GraphicUsed by:1874
Symbol 1867 FontUsed by:1868
Symbol 1868 EditableTextUses:1867Used by:1874
Symbol 1869 GraphicUsed by:1873
Symbol 1870 GraphicUsed by:1873
Symbol 1871 GraphicUsed by:1873
Symbol 1872 GraphicUsed by:1873
Symbol 1873 ButtonUses:1869 1870 1871 1872Used by:1874
Symbol 1874 MovieClip {ErrorMessageMc} [ErrorMessageMc]Uses:1866 1868 1873
Symbol 1875 GraphicUsed by:1879 1887
Symbol 1876 GraphicUsed by:1879
Symbol 1877 GraphicUsed by:1879
Symbol 1878 GraphicUsed by:1879
Symbol 1879 ButtonUses:1875 1876 1877 1878Used by:1913
Symbol 1880 GraphicUsed by:1883
Symbol 1881 GraphicUsed by:1883
Symbol 1882 GraphicUsed by:1883
Symbol 1883 ButtonUses:1880 1881 1882Used by:1913
Symbol 1884 GraphicUsed by:1887
Symbol 1885 GraphicUsed by:1887
Symbol 1886 GraphicUsed by:1887
Symbol 1887 ButtonUses:1875 1884 1885 1886Used by:1913
Symbol 1888 GraphicUsed by:1889
Symbol 1889 MovieClipUses:1888Used by:1893
Symbol 1890 GraphicUsed by:1891
Symbol 1891 MovieClipUses:1890Used by:1893
Symbol 1892 GraphicUsed by:1893
Symbol 1893 MovieClipUses:1889 1891 1892Used by:1909 1912
Symbol 1894 GraphicUsed by:1899
Symbol 1895 GraphicUsed by:1896
Symbol 1896 MovieClipUses:1895Used by:1899
Symbol 1897 GraphicUsed by:1898
Symbol 1898 MovieClipUses:1897Used by:1899
Symbol 1899 MovieClipUses:1894 1896 1898Used by:1909 1912
Symbol 1900 GraphicUsed by:1907
Symbol 1901 GraphicUsed by:1902
Symbol 1902 MovieClipUses:1901Used by:1907
Symbol 1903 GraphicUsed by:1904
Symbol 1904 MovieClipUses:1903Used by:1907
Symbol 1905 GraphicUsed by:1906
Symbol 1906 MovieClipUses:1905Used by:1907
Symbol 1907 MovieClipUses:1900 1902 1904 1906Used by:1909 1912
Symbol 1908 GraphicUsed by:1910 1912
Symbol 1909 MovieClipUses:1893 1899 1907Used by:1912
Symbol 1910 MovieClipUses:1908Used by:1912
Symbol 1911 GraphicUsed by:1912
Symbol 1912 ButtonUses:1893 1899 1907 1908 1909 1910 1911Used by:1913
Symbol 1913 MovieClip {ControlPanelMC} [ControlPanelMC]Uses:1879 1883 1887 1912
Symbol 1914 GraphicUsed by:1919
Symbol 1915 GraphicUsed by:1919
Symbol 1916 GraphicUsed by:1919
Symbol 1917 GraphicUsed by:1919
Symbol 1918 GraphicUsed by:1919
Symbol 1919 MovieClip {SaveBtnWinMc} [SaveBtnWinMc]Uses:1914 1915 1916 1917 1918
Symbol 1920 GraphicUsed by:1921
Symbol 1921 MovieClipUses:1920Used by:1924
Symbol 1922 GraphicUsed by:1923
Symbol 1923 MovieClipUses:1922Used by:1924
Symbol 1924 MovieClip {McSelection} [McSelection]Uses:1921 1923
Symbol 1925 GraphicUsed by:1926
Symbol 1926 MovieClip {McResizePointer} [McResizePointer]Uses:1925Used by:1927
Symbol 1927 MovieClip {McMovePointer} [McMovePointer]Uses:1926

Instance Names

"barMask"Symbol 105 MovieClip Frame 1Symbol 104 MovieClip
"loader"Symbol 143 MovieClip Frame 1Symbol 105 MovieClip
"anim"Symbol 150 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 143 MovieClip
"loader"Symbol 150 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 105 MovieClip
"anim2"Symbol 150 MovieClip {PreloaderMC} [PreloaderMC] Frame 1Symbol 149 MovieClip
"btn1"Symbol 201 MovieClip {baner_logo_mc} [baner_logo_mc] Frame 1Symbol 163 Button
"btn3"Symbol 201 MovieClip {baner_logo_mc} [baner_logo_mc] Frame 1Symbol 165 Button
"btn2"Symbol 201 MovieClip {baner_logo_mc} [baner_logo_mc] Frame 1Symbol 200 Button
"bg1"Symbol 1578 MovieClip Frame 1Symbol 1564 MovieClip
"bg0"Symbol 1578 MovieClip Frame 1Symbol 1577 MovieClip
"socks5"Symbol 1604 MovieClip Frame 1Symbol 1593 MovieClip
"socks4"Symbol 1604 MovieClip Frame 1Symbol 1595 MovieClip
"socks3"Symbol 1604 MovieClip Frame 1Symbol 1597 MovieClip
"socks2"Symbol 1604 MovieClip Frame 1Symbol 1599 MovieClip
"socks1"Symbol 1604 MovieClip Frame 1Symbol 1601 MovieClip
"socks0"Symbol 1604 MovieClip Frame 1Symbol 1603 MovieClip
"dress7"Symbol 1637 MovieClip Frame 1Symbol 1617 MovieClip
"dress5"Symbol 1637 MovieClip Frame 1Symbol 1623 MovieClip
"dress4"Symbol 1637 MovieClip Frame 1Symbol 1625 MovieClip
"dress3"Symbol 1637 MovieClip Frame 1Symbol 1628 MovieClip
"dress2"Symbol 1637 MovieClip Frame 1Symbol 1630 MovieClip
"dress1"Symbol 1637 MovieClip Frame 1Symbol 1632 MovieClip
"dress0"Symbol 1637 MovieClip Frame 1Symbol 1636 MovieClip
"top5"Symbol 1650 MovieClip Frame 1Symbol 1639 MovieClip
"top4"Symbol 1650 MovieClip Frame 1Symbol 1641 MovieClip
"top3"Symbol 1650 MovieClip Frame 1Symbol 1643 MovieClip
"top2"Symbol 1650 MovieClip Frame 1Symbol 1645 MovieClip
"top1"Symbol 1650 MovieClip Frame 1Symbol 1647 MovieClip
"top0"Symbol 1650 MovieClip Frame 1Symbol 1649 MovieClip
"top5"Symbol 1663 MovieClip Frame 1Symbol 1652 MovieClip
"top4"Symbol 1663 MovieClip Frame 1Symbol 1654 MovieClip
"top3"Symbol 1663 MovieClip Frame 1Symbol 1656 MovieClip
"top2"Symbol 1663 MovieClip Frame 1Symbol 1658 MovieClip
"top1"Symbol 1663 MovieClip Frame 1Symbol 1660 MovieClip
"top0"Symbol 1663 MovieClip Frame 1Symbol 1662 MovieClip
"jew6"Symbol 1686 MovieClip Frame 1Symbol 1669 MovieClip
"jew5"Symbol 1686 MovieClip Frame 1Symbol 1673 MovieClip
"jew4"Symbol 1686 MovieClip Frame 1Symbol 1676 MovieClip
"jew3"Symbol 1686 MovieClip Frame 1Symbol 1678 MovieClip
"jew2"Symbol 1686 MovieClip Frame 1Symbol 1680 MovieClip
"jew1"Symbol 1686 MovieClip Frame 1Symbol 1683 MovieClip
"jew0"Symbol 1686 MovieClip Frame 1Symbol 1685 MovieClip
"shoes_b_6"Symbol 1701 MovieClip Frame 1Symbol 1688 MovieClip
"shoes_b_5"Symbol 1701 MovieClip Frame 1Symbol 1690 MovieClip
"shoes_b_4"Symbol 1701 MovieClip Frame 1Symbol 1692 MovieClip
"shoes_b_3"Symbol 1701 MovieClip Frame 1Symbol 1694 MovieClip
"shoes_b_2"Symbol 1701 MovieClip Frame 1Symbol 1696 MovieClip
"shoes_b_1"Symbol 1701 MovieClip Frame 1Symbol 1698 MovieClip
"shoes_b_0"Symbol 1701 MovieClip Frame 1Symbol 1700 MovieClip
"bottom_b_6"Symbol 1714 MovieClip Frame 1Symbol 1703 MovieClip
"bottom_b_5"Symbol 1714 MovieClip Frame 1Symbol 1705 MovieClip
"bottom_b_4"Symbol 1714 MovieClip Frame 1Symbol 1707 MovieClip
"bottom_b_3"Symbol 1714 MovieClip Frame 1Symbol 1709 MovieClip
"bottom_b_2"Symbol 1714 MovieClip Frame 1Symbol 1711 MovieClip
"bottom_b_1"Symbol 1714 MovieClip Frame 1Symbol 1713 MovieClip
"bottom_b_0"Symbol 1714 MovieClip Frame 1Symbol 1705 MovieClip
"top_b_6"Symbol 1729 MovieClip Frame 1Symbol 1716 MovieClip
"top_b_5"Symbol 1729 MovieClip Frame 1Symbol 1718 MovieClip
"top_b_4"Symbol 1729 MovieClip Frame 1Symbol 1720 MovieClip
"top_b_3"Symbol 1729 MovieClip Frame 1Symbol 1722 MovieClip
"top_b_2"Symbol 1729 MovieClip Frame 1Symbol 1724 MovieClip
"top_b_1"Symbol 1729 MovieClip Frame 1Symbol 1726 MovieClip
"top_b_0"Symbol 1729 MovieClip Frame 1Symbol 1728 MovieClip
"hair6"Symbol 1744 MovieClip Frame 1Symbol 1731 MovieClip
"hair5"Symbol 1744 MovieClip Frame 1Symbol 1733 MovieClip
"hair4"Symbol 1744 MovieClip Frame 1Symbol 1735 MovieClip
"hair3"Symbol 1744 MovieClip Frame 1Symbol 1737 MovieClip
"hair2"Symbol 1744 MovieClip Frame 1Symbol 1739 MovieClip
"hair1"Symbol 1744 MovieClip Frame 1Symbol 1741 MovieClip
"hair0"Symbol 1744 MovieClip Frame 1Symbol 1743 MovieClip
"hair_b6"Symbol 1759 MovieClip Frame 1Symbol 1746 MovieClip
"hair_b5"Symbol 1759 MovieClip Frame 1Symbol 1748 MovieClip
"hair_b4"Symbol 1759 MovieClip Frame 1Symbol 1750 MovieClip
"hair_b3"Symbol 1759 MovieClip Frame 1Symbol 1752 MovieClip
"hair_b2"Symbol 1759 MovieClip Frame 1Symbol 1754 MovieClip
"hair_b1"Symbol 1759 MovieClip Frame 1Symbol 1756 MovieClip
"hair_b0"Symbol 1759 MovieClip Frame 1Symbol 1758 MovieClip
"shoes7"Symbol 1774 MovieClip Frame 1Symbol 1761 MovieClip
"shoes6"Symbol 1774 MovieClip Frame 1Symbol 1761 MovieClip
"shoes5"Symbol 1774 MovieClip Frame 1Symbol 1763 MovieClip
"shoes4"Symbol 1774 MovieClip Frame 1Symbol 1765 MovieClip
"shoes3"Symbol 1774 MovieClip Frame 1Symbol 1767 MovieClip
"shoes2"Symbol 1774 MovieClip Frame 1Symbol 1769 MovieClip
"shoes1"Symbol 1774 MovieClip Frame 1Symbol 1771 MovieClip
"shoes0"Symbol 1774 MovieClip Frame 1Symbol 1773 MovieClip
"access5"Symbol 1794 MovieClip Frame 1Symbol 1778 MovieClip
"access4"Symbol 1794 MovieClip Frame 1Symbol 1780 MovieClip
"access3"Symbol 1794 MovieClip Frame 1Symbol 1782 MovieClip
"access2"Symbol 1794 MovieClip Frame 1Symbol 1784 MovieClip
"access1"Symbol 1794 MovieClip Frame 1Symbol 1786 MovieClip
"access0"Symbol 1794 MovieClip Frame 1Symbol 1793 MovieClip
"bg"Symbol 1795 MovieClip Frame 1Symbol 1578 MovieClip
"boy"Symbol 1795 MovieClip Frame 1Symbol 1591 MovieClip
"socks"Symbol 1795 MovieClip Frame 1Symbol 1604 MovieClip
"girl"Symbol 1795 MovieClip Frame 1Symbol 1614 MovieClip
"dress"Symbol 1795 MovieClip Frame 1Symbol 1637 MovieClip
"bottom"Symbol 1795 MovieClip Frame 1Symbol 1650 MovieClip
"top"Symbol 1795 MovieClip Frame 1Symbol 1663 MovieClip
"jew"Symbol 1795 MovieClip Frame 1Symbol 1686 MovieClip
"shoes_b"Symbol 1795 MovieClip Frame 1Symbol 1701 MovieClip
"bottom_b"Symbol 1795 MovieClip Frame 1Symbol 1714 MovieClip
"top_b"Symbol 1795 MovieClip Frame 1Symbol 1729 MovieClip
"hair"Symbol 1795 MovieClip Frame 1Symbol 1744 MovieClip
"hair_b"Symbol 1795 MovieClip Frame 1Symbol 1759 MovieClip
"shoes"Symbol 1795 MovieClip Frame 1Symbol 1774 MovieClip
"access"Symbol 1795 MovieClip Frame 1Symbol 1794 MovieClip
"dress"Symbol 1842 MovieClip Frame 1Symbol 1798 Button
"top"Symbol 1842 MovieClip Frame 1Symbol 1802 Button
"bottom"Symbol 1842 MovieClip Frame 1Symbol 1804 Button
"shoes"Symbol 1842 MovieClip Frame 1Symbol 1808 Button
"jew"Symbol 1842 MovieClip Frame 1Symbol 1811 Button
"hair"Symbol 1842 MovieClip Frame 1Symbol 1812 Button
"bottom_b"Symbol 1842 MovieClip Frame 1Symbol 1818 Button
"bg"Symbol 1842 MovieClip Frame 1Symbol 1820 Button
"access"Symbol 1842 MovieClip Frame 1Symbol 1825 Button
"socks"Symbol 1842 MovieClip Frame 1Symbol 1829 Button
"shoes_b"Symbol 1842 MovieClip Frame 1Symbol 1833 Button
"top_b"Symbol 1842 MovieClip Frame 1Symbol 1837 Button
"hair_b"Symbol 1842 MovieClip Frame 1Symbol 1841 Button
"mc"Symbol 1843 MovieClip {MainMovie} [MainMovie] Frame 1Symbol 1795 MovieClip
"buttons"Symbol 1843 MovieClip {MainMovie} [MainMovie] Frame 1Symbol 1842 MovieClip
"yesBtn"Symbol 1854 MovieClip {SignUpMessageMc} [SignUpMessageMc] Frame 1Symbol 1849 Button
"noBtn"Symbol 1854 MovieClip {SignUpMessageMc} [SignUpMessageMc] Frame 1Symbol 1853 Button
"yesBtn"Symbol 1858 MovieClip {SelectScreenShotMc} [SelectScreenShotMc] Frame 1Symbol 1849 Button
"noBtn"Symbol 1858 MovieClip {SelectScreenShotMc} [SelectScreenShotMc] Frame 1Symbol 1853 Button
"saveBtn"Symbol 1865 MovieClip {ApiMovieClip} [ApiMovieClip] Frame 1Symbol 1864 MovieClip {SaveBtnMc} [SaveBtnMc]
"msgtxt"Symbol 1874 MovieClip {ErrorMessageMc} [ErrorMessageMc] Frame 1Symbol 1868 EditableText
"yesBtn"Symbol 1874 MovieClip {ErrorMessageMc} [ErrorMessageMc] Frame 1Symbol 1873 Button
"btnBack"Symbol 1913 MovieClip {ControlPanelMC} [ControlPanelMC] Frame 1Symbol 1879 Button
"btnFoto"Symbol 1913 MovieClip {ControlPanelMC} [ControlPanelMC] Frame 1Symbol 1883 Button
"btnReset"Symbol 1913 MovieClip {ControlPanelMC} [ControlPanelMC] Frame 1Symbol 1887 Button
"btnLogo"Symbol 1913 MovieClip {ControlPanelMC} [ControlPanelMC] Frame 1Symbol 1912 Button
"mcRect"Symbol 1924 MovieClip {McSelection} [McSelection] Frame 1Symbol 1921 MovieClip
"mcBottomLeft"Symbol 1924 MovieClip {McSelection} [McSelection] Frame 1Symbol 1923 MovieClip
"mcTopLeft"Symbol 1924 MovieClip {McSelection} [McSelection] Frame 1Symbol 1923 MovieClip
"mcBottomRight"Symbol 1924 MovieClip {McSelection} [McSelection] Frame 1Symbol 1923 MovieClip
"mcTopRight"Symbol 1924 MovieClip {McSelection} [McSelection] Frame 1Symbol 1923 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 1459 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 150 as "PreloaderMC"
ExportAssets (56)Timeline Frame 2Symbol 158 as "intro"
ExportAssets (56)Timeline Frame 2Symbol 201 as "baner_logo_mc"
ExportAssets (56)Timeline Frame 2Symbol 1843 as "MainMovie"
ExportAssets (56)Timeline Frame 2Symbol 1854 as "SignUpMessageMc"
ExportAssets (56)Timeline Frame 2Symbol 1858 as "SelectScreenShotMc"
ExportAssets (56)Timeline Frame 2Symbol 1865 as "ApiMovieClip"
ExportAssets (56)Timeline Frame 2Symbol 1874 as "ErrorMessageMc"
ExportAssets (56)Timeline Frame 2Symbol 1913 as "ControlPanelMC"
ExportAssets (56)Timeline Frame 2Symbol 1919 as "SaveBtnWinMc"
ExportAssets (56)Timeline Frame 2Symbol 1864 as "SaveBtnMc"
ExportAssets (56)Timeline Frame 2Symbol 1924 as "McSelection"
ExportAssets (56)Timeline Frame 2Symbol 1927 as "McMovePointer"
ExportAssets (56)Timeline Frame 2Symbol 1926 as "McResizePointer"
SerialNumber (41)Timeline Frame 1

Labels

"Preloader"Frame 1
"Main"Frame 2




http://swfchan.com/24/119524/info.shtml
Created: 5/3 -2019 20:00:38 Last modified: 5/3 -2019 20:00:38 Server time: 26/04 -2024 15:34:02