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

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

chat2009.swf

This is the info page for
Flash #87194

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


Text
<p align="left"><font face="_sans" size="12" color="#000000" letterSpacing="0.000000" kerning="0"> </font></p>

<p align="left"><font face="_sans" size="12" color="#746868" letterSpacing="0.000000" kerning="0"> </font></p>

<p align="left"><font face="_sans" size="12" color="#000000" letterSpacing="0.000000" kerning="0"> </font></p>

<p align="left"><font face="_sans" size="12" color="#000000" letterSpacing="0.000000" kerning="0"> </font></p>

<p align="left"></p><p align="left"></p>

OK

<p align="left"><font face="_sans" size="12" color="#000000" letterSpacing="0.000000" kerning="0"> </font></p>

Change Nick

Options

Please choose a Nickname

Nickname

Cancel

Change Nickname

Enter a Nickname

Nickname

Send

ICQ Chat

ICQ Chat

ICQ Chat

Chat Rooms

People Chatting

Preferences

...

Send

ActionScript [AS1/AS2]

Frame 2
function Tokenizer(str, delimiter) { this.tokens = new Array(); var _local5 = new String(str); var _local7 = length(delimiter); var _local6 = length(str); var _local3 = 0; var _local2 = 0; if (_local5.indexOf(delimiter) == _local3) { _local3 = _local3 + _local7; } if ((_local3 + 1) < _local6) { _local2 = _local5.indexOf(delimiter, _local3 + 1); } if (_local2 == -1) { _local2 = _local6; } this.tokens.push(_local5.substring(_local3, _local2)); while (_local2 < _local6) { _local3 = _local2 + _local7; _local2 = _local5.indexOf(delimiter, _local3 + 1); if (_local2 == -1) { _local2 = _local6; } var _local4 = _local5.substring(_local3, _local2); if (_local4 != "") { this.tokens.push(_local4); } } } function printTokens(t) { trace("num of elements " + t.tokens.length); var _local1 = 0; while (_local1 < t.tokens.length) { trace("token:" + t.tokens[_local1]); _local1++; } } function Parser(message, argsArray) { messages = new Tokenizer(message, "\r\n"); var _local1 = 0; while (_local1 < messages.tokens.length) { if ((substring(messages.tokens[_local1], 0, 4)) == "PING") { argsArray.push(new Array("", "PING", substring(messages.tokens[_local1], 7, -1))); } else { elems = new Tokenizer(messages.tokens[_local1], ":"); userInfo = new Tokenizer(elems.tokens[0], " "); userName = new String(userInfo.tokens[0]); userNameIdx = userName.indexOf("!"); if (userNameIdx > -1) { userInfo.tokens.push(userName.substring(0, userNameIdx)); } elems.tokens.splice(0, 1); argsArray.push(userInfo.tokens.concat(elems.tokens.join(":"))); delete elems; delete userInfo; } _local1++; } delete messages; } function UserStruct() { } function UserGetNick() { return(UserData.nick); } function UserSetNick(nick) { UserData.nick = nick; } function UserGetLocalHostAddr() { return(UserData.localHostAddr); } function UserSetLocalHostAddr(local_addr) { UserData.localHostAddr = local_addr; } function UserGetCurrentChannel() { return(UserData.currentChannel); } function UserSetCurrentChannel(channel_name) { UserData.currentChannel = channel_name; } function getCommand(cmd) { for (idx in commands) { if (cmd == idx) { return(commands[idx]); } } return("NOTICE"); } function Tokenizer(str, delimiter) { this.tokens = new Array(); var _local5 = new String(str); var _local7 = length(delimiter); var _local6 = length(str); var _local3 = 0; var _local2 = 0; if (_local5.indexOf(delimiter) == _local3) { _local3 = _local3 + _local7; } if ((_local3 + 1) < _local6) { _local2 = _local5.indexOf(delimiter, _local3 + 1); } if (_local2 == -1) { _local2 = _local6; } this.tokens.push(_local5.substring(_local3, _local2)); while (_local2 < _local6) { _local3 = _local2 + _local7; _local2 = _local5.indexOf(delimiter, _local3 + 1); if (_local2 == -1) { _local2 = _local6; } var _local4 = _local5.substring(_local3, _local2); if (_local4 != "") { this.tokens.push(_local4); } } } function printTokens(t) { trace("num of elements " + t.tokens.length); var _local1 = 0; while (_local1 < t.tokens.length) { trace("token:" + t.tokens[_local1]); _local1++; } } function Parser(message, argsArray) { messages = new Tokenizer(message, "\r\n"); var _local1 = 0; while (_local1 < messages.tokens.length) { if ((substring(messages.tokens[_local1], 0, 4)) == "PING") { argsArray.push(new Array("", "PING", substring(messages.tokens[_local1], 7, -1))); } else { elems = new Tokenizer(messages.tokens[_local1], ":"); userInfo = new Tokenizer(elems.tokens[0], " "); userName = new String(userInfo.tokens[0]); userNameIdx = userName.indexOf("!"); if (userNameIdx > -1) { userInfo.tokens.push(userName.substring(0, userNameIdx)); } elems.tokens.splice(0, 1); argsArray.push(userInfo.tokens.concat(elems.tokens.join(":"))); delete elems; delete userInfo; } _local1++; } delete messages; } function cUser(user_name, match_country) { if (match_country == undefined) { match_country = 0; } this.user_name = user_name; this.match_country = match_country; } function Channel(channel_name) { this.name = channel_name; this.users = new Array(); this.users_sorted = true; this.history = new Array(); this.hisIdx = 0; } function NewChannel(channel_name) { ch = new Channel(channel_name); Channels.push(ch); } function RemoveChannel(channel_name) { channel_idx = GetChannelIdxByName(channel_name); if (channel_idx == -1) { return(undefined); } Channels.splice(channel_idx, 1); } function IsChannelExists(channel_name) { var _local1 = 0; while (_local1 < Channels.length) { if (Channels[_local1].name == channel_name) { return(true); } _local1++; } return(false); } function GetPrevChannel(channel_name) { var _local1 = 1; while (_local1 < Channels.length) { if (Channels[_local1].name.toLowerCase() == channel_name.toLowerCase()) { return(Channels[_local1 - 1].name); } _local1++; } return(""); } function GetNextChannel(channel_name) { var _local1 = 0; while (_local1 < (Channels.length - 1)) { if (Channels[_local1].name == channel_name) { return(Channels[_local1 + 1].name); } _local1++; } return(""); } function GetChannelsCount() { return(Channels.length); } function GetChannelNameByIdx(channel_idx) { if ((channel_idx >= 0) && (channel_idx < Channels.length)) { return(Channels[channel_idx].name); } return(""); } function GetChannelIdxByName(channel_name) { var _local1 = 0; while (_local1 < Channels.length) { if (Channels[_local1].name == channel_name) { return(_local1); } _local1++; } return(-1); } function GetUserIdx(channel_idx, user_name) { var _local1 = 0; while (_local1 < Channels[channel_idx].users.length) { if (GetRealNick(Channels[channel_idx].users[_local1].user_name) == user_name) { return(_local1); } _local1++; } return(-1); } function SortChannelUsers(channel_name) { var _local4 = GetChannelIdxByName(channel_name); if (_local4 == -1) { return(undefined); } var _local8 = new Array(); var _local10 = new Array(); var _local11 = new Array(); var _local9 = new Array(); var _local3 = 0; while (_local3 < Channels[_local4].users.length) { var _local1 = new String(Channels[_local4].users[_local3].user_name); _local1 = (((_local1.toLowerCase() + ":") + _local1) + ":") + Channels[_local4].users[_local3].match_country; var _local2 = _local1.charAt(0); if (_local2 == "@") { _local8.push(_local1); } else if (_local2 == "%") { _local10.push(_local1); } else if (_local2 == "+") { _local11.push(_local1); } else { _local9.push(_local1); } _local3++; } _local8.sort(); _local10.sort(); _local11.sort(); _local9.sort(); var _local7 = new Array(); _local7 = _local7.concat(_local8, _local10, _local11, _local9); Channels[_local4].users.splice(0); _local3 = 0; while (_local3 < _local7.length) { var _local5 = _local7[_local3].split(":"); var _local6 = new cUser(_local5[1], _local5[2]); Channels[_local4].users.push(_local6); _local3++; } } function AddUserToChannel(channel_name, user_name) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(undefined); } user = new cUser(user_name); Channels[_local1].users.push(user); } function AddUsersToChannel(channel_name, names_list) { var _local4 = GetChannelIdxByName(channel_name); if (_local4 == -1) { return(undefined); } var _local3 = new Tokenizer(names_list, " "); var _local1 = 0; while (_local1 < _local3.tokens.length) { var _local2 = new cUser(_local3.tokens[_local1]); Channels[_local4].users.push(_local2); _local1++; } return(Channels[_local4].users); } function RemoveUserFromChannel(channel_name, user_name) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(-1); } var _local2 = GetUserIdx(_local1, user_name); if (_local2 > -1) { Channels[_local1].users.splice(_local2, 1); return(1); } return(-1); } function RemoveUserFromChannels(user_name, channels_ary) { var _local1 = 0; while (_local1 < Channels.length) { if ((RemoveUserFromChannel(Channels[_local1].name, user_name) > -1) || (Channels[_local1].name == user_name)) { channels_ary.push(Channels[_local1].name); } _local1++; } } function ChangeUserNick(old_nick, new_nick, channels_ary) { var _local2 = 0; while (_local2 < Channels.length) { var _local1 = 0; while (_local1 < Channels[_local2].users.length) { var _local3 = GetRealNick(Channels[_local2].users[_local1].user_name); if (_local3 == old_nick) { channels_ary.push(Channels[_local2].name); if (IsOperator(Channels[_local2].users[_local1].user_name)) { Channels[_local2].users[_local1].user_name = "@" + new_nick; } else { Channels[_local2].users[_local1].user_name = new_nick; } } _local1++; } _local2++; } } function IsSemiOp(nick) { if ((substring(nick, 0, 1)) == "%") { return(true); } } function IsVoice(nick) { if ((substring(nick, 0, 1)) == "+") { return(true); } return(false); } function IsOperator(nick) { if ((substring(nick, 0, 1)) == "@") { return(true); } return(false); } function IsUserOperator(channel_name, nick) { var _local2 = GetChannelIdxByName(channel_name); if (_local2 == -1) { return(false); } var _local1 = 0; while (_local1 < Channels[_local2].users.length) { if (GetRealNick(Channels[_local2].users[_local1].user_name) == nick) { return(IsOperator(Channels[_local2].users[_local1].user_name)); } _local1++; } return(false); } function IsUserExistsInChannel(channel_name, user_name) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(false); } var _local2 = GetUserIdx(_local1, user_name); if (_local2 > -1) { return(true); } return(false); } function GetRealNick(nick) { if ((IsOperator(nick) || (IsVoice(nick))) || (IsSemiOp(nick))) { return(substring(nick, 2, -1)); } return(nick); } function GetUsers(channel_name) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(undefined); } return(Channels[_local1].users); } function ChangeUser(channel_name, user_name, prefix) { var _local2 = GetChannelIdxByName(channel_name); if (_local2 == -1) { return(undefined); } var _local1 = 0; while (_local1 < Channels[_local2].users.length) { if (GetRealNick(Channels[_local2].users[_local1].user_name) == user_name) { Channels[_local2].users[_local1].user_name = prefix + user_name; } _local1++; } } function AddChannelHistory(channel_name, txt) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(undefined); } Channels[_local1].history.push(txt); Channels[_local1].his_idx = Channels[_local1].history.length; } function GetPrevHistory(channel_name) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(""); } if (Channels[_local1].his_idx > 0) { Channels[_local1].his_idx--; return(Channels[_local1].history[Channels[_local1].his_idx]); } return(Channels[_local1].history[0]); } function GetNextHistory(channel_name) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(""); } if (Channels[_local1].his_idx < Channels[_local1].history.length) { Channels[_local1].his_idx++; return(Channels[_local1].history[Channels[_local1].his_idx]); } return(""); } function SetUsersSorted(channel_name, sorted) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(undefined); } Channels[_local1].users_sorted = sorted; } function IsUsersSorted(channel_name) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(false); } return(Channels[_local1].users_sorted); } function UpdateUserCountryMatch(channel_name, user_name, match_country) { var _local1 = GetChannelIdxByName(channel_name); if (_local1 == -1) { return(undefined); } var _local2 = GetUserIdx(_local1, user_name); if (_local2 == -1) { return(undefined); } Channels[_local1].users[_local2].match_country = match_country; } function getColor(i) { if ((i > 0) && (i < 16)) { return(Colors[i]); } return(0); } function isDigit(s) { return(!isNaN(s)); } function Format() { this.tf = new TextFormat(); this.color_idx = 0; } function ParseText(the_text) { var _local7 = 0; var _local8 = false; var _local10 = false; var _local5 = false; var _local6 = false; var _local3 = new String(the_text); this.realText = ""; this.realLen = 0; this.tfArray = new Array(); var _local9 = new Format(); _local9.tf.color = Colors[1]; _local9.tf.bold = _local5; _local9.tf.underline = _local6; _local9.color_idx = _local7; this.tfArray.push(_local9); var _local2 = 0; while (_local2 < _local3.length) { switch (_local3.charCodeAt(_local2)) { case 1 : break; case 2 : _local5 = !_local5; var _local4 = new Format(); _local4.tf.color = tfArray[tfArray.length - 1].tf.color; _local4.tf.bold = _local5; _local4.tf.underline = _local6; _local4.color_idx = _local7 + this.realLen; this.tfArray.push(_local4); break; case 3 : if (isDigit(_local3.charAt(_local2 + 1))) { _local8 = true; } break; case 31 : _local6 = !_local6; _local4 = new Format(); _local4.tf.color = tfArray[tfArray.length - 1].tf.color; _local4.tf.bold = _local5; _local4.tf.underline = _local6; _local4.color_idx = _local7 + this.realLen; this.tfArray.push(_local4); break; default : if (_local8 && (isDigit(_local3.charAt(_local2)))) { _local4 = new Format(); if (isDigit(_local3.charAt(_local2 + 1))) { _local4.tf.color = getColor(parseInt(_local3.charAt(_local2) + _local3.charAt(_local2 + 1))); _local2++; } else { _local4.tf.color = getColor(parseInt(_local3.charAt(_local2))); } _local4.tf.bold = _local5; _local4.tf.underline = _local6; _local4.color_idx = _local7 + this.realLen; this.tfArray.push(_local4); _local8 = false; if (_local3.charAt(_local2 + 1) == ",") { _local2 = _local2 + 2; if (isDigit(_local3.charAt(_local2 + 1))) { _local2++; } } } else { this.realText = this.realText + _local3.charAt(_local2); this.realLen++; } } _local2++; } } function remove_lines(textbox_obj, lines) { var _local4 = 0; var _local2 = new String(textbox_obj.text); var _local3 = 0; var _local1 = 0; while (_local1 < _local2.length) { _local4++; if (_local2.charCodeAt(_local1) == 13) { _local3++; } if (_local3 == lines) { break; } _local1++; } var _local8 = Selection.getFocus(); var _local7 = Selection.getCaretIndex(); Selection.setFocus(textbox_obj); Selection.setSelection(0, _local4); textbox_obj.replaceSel(" "); Selection.setFocus(_local8); Selection.setSelection(_local7, _local7); textbox_obj.length = textbox_obj.length; } function AddColoredLine(textbox_obj, text_scroll, the_text, ignoreFormat) { var _local8 = textbox_obj.length; var _local11 = false; var _local19 = false; var _local6 = false; var _local7 = false; var _local2 = new String(the_text); var _local9 = ""; var _local5 = 0; var _local3 = new Array(); var _local13 = new Format(); _local13.tf.color = Colors[1]; _local13.tf.bold = _local6; _local13.tf.underline = _local7; _local13.color_idx = _local8; _local3.push(_local13); var _local1 = 0; while (_local1 < _local2.length) { switch (_local2.charCodeAt(_local1)) { case 1 : break; case 2 : _local6 = !_local6; var _local4 = new Format(); _local4.tf.color = _local3[_local3.length - 1].tf.color; _local4.tf.bold = _local6; _local4.tf.underline = _local7; _local4.color_idx = _local8 + _local5; _local3.push(_local4); break; case 3 : if (isDigit(_local2.charAt(_local1 + 1))) { _local11 = true; } break; case 31 : _local7 = !_local7; _local4 = new Format(); _local4.tf.color = _local3[_local3.length - 1].tf.color; _local4.tf.bold = _local6; _local4.tf.underline = _local7; _local4.color_idx = _local8 + _local5; _local3.push(_local4); break; case 38 : if ((_local2.substr(_local1, 5) == "&amp;") or (_local2.substr(_local1, 1) == "&")) { _local9 = _local9 + "&"; _local5++; _local1 = _local1 + 4; } else if (_local2.substr(_local1, 6) == "&apos;") { _local9 = _local9 + "'"; _local5++; _local1 = _local1 + 5; } else if (_local2.substr(_local1, 6) == "&quot;") { _local9 = _local9 + "\""; _local5++; _local1 = _local1 + 5; } break; default : if (_local11 && (isDigit(_local2.charAt(_local1)))) { _local4 = new Format(); if (isDigit(_local2.charAt(_local1 + 1))) { _local4.tf.color = getColor(parseInt(_local2.charAt(_local1) + _local2.charAt(_local1 + 1))); _local1++; } else { _local4.tf.color = getColor(parseInt(_local2.charAt(_local1))); } _local4.tf.bold = _local6; _local4.tf.underline = _local7; if (ignoreFormat) { _local4.tf.color = getColor(1); _local4.tf.bold = false; _local4.tf.underline = false; } _local4.color_idx = _local8 + _local5; _local3.push(_local4); _local11 = false; if (_local2.charAt(_local1 + 1) == ",") { _local1 = _local1 + 2; if (isDigit(_local2.charAt(_local1 + 1))) { _local1++; } } } else { _local9 = _local9 + _local2.charAt(_local1); _local5++; } } _local1++; } var _local16 = Selection.getFocus(); var _local14 = Selection.getCaretIndex(); Selection.setFocus(textbox_obj); Selection.setSelection(_local8 + _local5, _local8 + _local5); textbox_obj.replaceSel(_local9); Selection.setFocus(_local16); Selection.setSelection(_local14, _local14); _local1 = 0; while (_local1 < _local3.length) { var _local10 = _local8 + _local5; if (_local3[_local1 + 1] != null) { _local10 = _local3[_local1 + 1].color_idx; } textbox_obj.SetTextFormat(_local3[_local1].color_idx, _local10, _local3[_local1].tf); _local1++; } Selection.setFocus(textbox_obj); Selection.setSelection((_local8 + _local5) + 1, (_local8 + _local5) + 1); textbox_obj.replaceSel(newline); Selection.setFocus(_local16); Selection.setSelection(_local14, _local14); var _local17 = text_scroll.getScrollPosition(); textbox_obj.length = textbox_obj.length; text_scroll.setScrollPosition(_local17); } function dump(obj) { for (name in obj) { } } function SetVoiceChatParams(bot_name, title, image, country) { _root.g_sVCBotName = bot_name; _root.g_sVCTitle = title; _root.g_sVCImage = image; _root.g_sVCCountry = country; if ((g_sVCBotName != undefined) && (g_sVCBotName != "")) { evEngine.broadcastMessage("onMsg", generalChannelName, "Voice Chat Enabled :" + g_sVCCountry); UserList.cellRenderer = "ButtonCellRenderer"; } fscommand ("ChatParamsOk"); } function doHTMLCommand(prop, oldval, newval, userData) { var _local1 = newval.split("~"); var _local2 = _local1[0]; switch (_local2) { case "DisplayVoiceChatMsg" : DisplayVoiceChatMsg(_local1[1]); break; case "OpenVoiceChatRoom" : OpenVoiceChatRoom(_local1[1], _local1[2]); break; case "DisplayVoiceChatProgress" : DisplayVoiceChatProgress(_local1[1]); break; case "SetVoiceChatParams" : SetVoiceChatParams(_local1[1], _local1[2], _local1[3], _local1[4]); } } UserData = new UserStruct(); UserData.nick = "Guest"; UserData.localHostAddr = "icq.com"; UserData.currentChat = "#GeneralChatBox"; UserData.currentChannel = "General"; var commands = new Array(); commands["001"] = "RPL_WELCOME"; commands["321"] = "RPL_LISTSTART"; commands["322"] = "RPL_LIST"; commands["323"] = "RPL_LISTEND"; commands["332"] = "RPL_TOPIC"; commands["353"] = "RPL_NAMREPLY"; commands["366"] = "RPL_ENDOFNAMES"; commands["403"] = "ERR_CLOSECHANNEL"; commands["405"] = "ERR_CLOSECHANNEL"; commands["432"] = "ERR_ERRONEUSNICKNAME"; commands["433"] = "ERR_NICKNAMEINUSE"; commands["470"] = "ERR_CHANNELFULL"; commands["473"] = "ERR_CLOSECHANNEL"; commands["474"] = "ERR_CLOSECHANNEL"; commands["475"] = "ERR_BADCHANNELKEY"; commands["476"] = "ERR_CLOSECHANNEL"; commands["750"] = "ERR_TARGETCHANNEL"; commands["751"] = "RPL_STARTOFTARGETCHANNEL"; commands["752"] = "RPL_TARGETCHANNEL"; commands["753"] = "RPL_ENDOFTARGETCHANNEL"; commands["755"] = "ERR_TARGETUSER"; commands["756"] = "RPL_TARGETUSER"; Channels = new Array(); Colors = new Array(); Colors[0] = 16777215 /* 0xFFFFFF */; Colors[1] = 0; Colors[2] = 123; Colors[3] = 37376; Colors[4] = 16711680 /* 0xFF0000 */; Colors[5] = 8060928 /* 0x7B0000 */; Colors[6] = 10223772 /* 0x9C009C */; Colors[7] = 16743680 /* 0xFF7D00 */; Colors[8] = 16776960 /* 0xFFFF00 */; Colors[9] = 65280; Colors[10] = 37524; Colors[11] = 65535; Colors[12] = 255; Colors[13] = 16711935 /* 0xFF00FF */; Colors[14] = 8093051 /* 0x7B7D7B */; Colors[15] = 14078934 /* 0xD6D3D6 */; var knock_obj = new Sound(); knock_obj.attachSound("knock_sound"); var chatTitle = ""; stop(); system.useCodepage = true; System.security.allowDomain("irc.icq.com"); gl_user_pref = SharedObject.getLocal("chat_pref"); var g_sVCBotName = ""; var g_sVCTitle = ""; var g_sVCImage = ""; var g_sVCCountry = ""; var g_bSentRequest = false; htmlPlug = new Object(); htmlPlug.callFlashFunction = ""; htmlPlug.watch("callFlashFunction", doHTMLCommand); if ((user_nickname != undefined) && (user_nickname != "")) { UserSetNick(user_nickname); _root.gotoAndPlay(3); } NickWin.executeCallBack = function (nick) { UserSetNick(nick); _root.gotoAndPlay(3); };
Frame 3
function IsIgnored(nickname) { for (user_nick in aIgnoreList) { if (nickname == user_nick) { if (aIgnoreList[nickname] == 1) { return(true); } } } return(false); } function TrimChar(str, char) { var _local2 = new String(str); var _local3; var _local1 = 0; while (_local1 < _local2.length) { if (_local2.charAt(_local1) ne char) { _local3 = _local3 + _local2.charAt(_local1); } _local1++; } return(_local3); } function CChatArea() { super(); } function CChannelTab() { super(); this._blink = false; this._toolTipIntrevalId = undefined; this._toolTip = undefined; this._toolTipExists = false; } var depths = 0; var generalChannelName = "Status"; var roomsChannelName = "Rooms"; var aIgnoreList = new Array(); RoomMc.RoomList.setColumns(3); RoomMc.RoomList.setColumnsWidth(new Array(20, 10, 70)); RoomMc._visible = false; RoomMc.RoomList.removeBoundingBox(); moreTabs._visible = false; disableSend._visible = true; var defaultChannelKey = ""; var defaultChannelName = "#lobby"; var ICQRoomsStr = "#ICQ;#Chatroom;#20_something;#30_something;#40_something;#50_something;#Africa;#Age_groups;#Armenia;#Asia;#Central_America;#Computers;#Egypt;#Entertainment;#Family;#French;#Games;#German;#Health_And_Support;#ICQ_EuropeEast;#ICQ_EuropeWest;#ICQ_Gay;#ICQ_India;#ICQ_International;#ICQ_International;#ICQ_USA;#ICQ-Australia;#ICQChatMaster;#ICQGroupMaster;#ICQHelp;#ICQListMaster;#ICQ-Trivia;#Italian;#Just_friends;#Languages_and_countries;#Lesbians;#Lifestyles;#Local;#Middle_East;#Money_and_Business;#Music;#Newbies;#North_America;#personals;#Portuguese;#Romance;#Science_And_Technology;#Single_women;#Soccer;#South_America;#Spanish;#Sports;#Students;#Teens;#Travel;#Turkey;#Webmasters;#Wireless_And_Mobile;#Women;"; var serverAddr = "irc.icq.com"; var serverPort = 7012; var disableUserInput = false; var disableSystemMsgs = false; var g_oMsListener = new Object(); Mouse.addListener(g_oMsListener); MovieClip.prototype.addProperty("onDoubleClick", function () { return(this.$onDoubleClick); }, function (val) { this.$onDoubleClick = val; Mouse.addListener(this); }); g_oMsListener.isClickInBounds = function () { if (((_root._ymouse < (this._lastY + 2)) && (_root._ymouse >= (this._lastY - 2))) && ((_root._xmouse < (this._lastX + 2)) && (_root._xmouse >= (this._lastX - 2)))) { return(true); } return(false); }; g_oMsListener.onMouseDown = function () { if (this.last_click == undefined) { this.last_click = 300; } if (((this.last_click + 300) > getTimer()) && (this.isClickInBounds())) { var obj = eval (Selection.getFocus()); obj.onDoubleClick(); this.last_click = this.last_click - 300; this._lastY = undefined; this._lastX = undefined; } else { this._lastY = _root._ymouse; this._lastX = _root._xmouse; this.last_click = getTimer(); } }; CChatArea.prototype = new MovieClip(); CChatArea.prototype.disableTopic = function () { this.topicText._visible = false; this.canScroll = true; this.linesNum = 0; }; CChatArea.prototype.enableTopic = function (topic_len) { this.topicText._visible = true; this.topicText._height = 48; this.ChatAreaBox._y = this.ChatAreaBox._y + 26; }; CChatArea.prototype.AddLine = function (the_text) { this.linesNum++; if (this.linesNum > 200) { remove_lines(this.ChatAreaBox, 100); this.linesNum = 100; } AddColoredLine(this.ChatAreaBox, this.ChatScroller, the_text, gl_user_pref.data.ignoreTextFormat); if (this.canScroll) { if (this.ChatAreaBox.scroll < this.ChatAreaBox.maxscroll) { this.ChatAreaBox.scroll = this.ChatAreaBox.maxscroll; } } }; CChatArea.prototype.setTopic = function (topic) { this.enableTopic(new String(topic).length); AddColoredLine(this.topicText, null, topic, gl_user_pref.data.ignoreTextFormat); }; CChatArea.prototype.RPL_TOPIC = function (args) { var _local4 = new String(args[3]).toLowerCase(); var _local3 = args[4]; if (this == _root["Chat_" + _local4]) { this.setTopic(_local3); } }; CChatArea.prototype.TOPIC = function (args) { var _local6 = new String(args[2]).toLowerCase(); var _local4 = args[3]; var _local3 = args[4]; if (this == _root["Chat_" + _local6]) { if (!this.topicText._visible) { this.enableTopic(); } this.topicText.text = _local3; this.AddLine((("\x032" + _local4) + " has changed the topic to : ") + _local3); } }; CChatArea.prototype.NOTICE = function (args) { if (_root.lastCMD == "/whois") { trace("notic - whois!!"); tmp2 = args[5].split(" "); if (!isNaN(tmp2[0])) { onlineTime = tmp2[0] * 1000; tmp2.splice(0, 1); args[5] = tmp2.join(" "); tmp2 = ""; } if (args[6].substr(14, 6) == "signon") { tmp = args[6].split(" "); tmp[2] = "Signed on"; var _local4 = new Date(onlineTime); tmp[3] = _local4.toString(); args[6] = tmp.join(" "); tmp = ""; } if (args[4].substr(0, 5) == "Guest") { args[4] = "is " + args[4]; } else if (args[4].substr(0, 1) == "#") { args[4] = "on " + args[4]; } else if (args[4].substr(0, 4) == "irc-") { args[4] = "using " + args[4]; } fscommand ("statusMsg", (((args[2] + "(") + args[1]) + "):") + args.slice(3).join(" ")); this.AddLine(" "); this.AddLine(unescape(args.slice(3).join(" "))); } else { trace("notic - not whois!!" + lastCMD); if (this == _root["Chat_" + generalChannelName]) { fscommand ("statusMsg", (((args[2] + "(") + args[1]) + "):") + args.slice(3).join(" ")); this.AddLine(" "); this.AddLine(unescape(args.slice(3).join(" "))); } } }; CChatArea.prototype.PRIVMSG = function (args) { var _local5 = new String(args[2]).toLowerCase(); var _local3 = args[3]; var _local6 = args[4]; if (g_sVCBotName == _local3) { return(undefined); } if (IsIgnored(_local3)) { return(undefined); } if ((UserGetNick() == args[2]) && (!gl_user_pref.data.ignorePrivMsg)) { if (!IsChannelExists(_local3)) { OpenNewPrivateChannel(_local3); } if (UserGetCurrentChannel() != _local3) { evEngine.broadcastMessage("onTabStartBlink", _local3); } if (this == _root["Chat_" + _local3]) { evEngine.broadcastMessage("onUsrMsg", _local3, _local3, _local6); } } if (this == _root["Chat_" + _local5]) { evEngine.broadcastMessage("onUsrMsg", _local5, _local3, _local6); } }; CChatArea.prototype.RPL_NAMREPLY = function (args) { var _local3 = new String(args[4]).toLowerCase(); if (this == _root["Chat_" + _local3]) { var _local4 = args[5]; AddUsersToChannel(_local3, _local4); } }; CChatArea.prototype.RPL_TARGETCHANNEL = function (args) { var _local3 = new String(args[3]).toLowerCase(); var _local5 = args[4]; var _local4 = args[5]; if (this == _root["Chat_" + _local3]) { UpdateUserCountryMatch(_local3, _local5, _local4); } }; CChatArea.prototype.RPL_TARGETUSER = function (args) { var _local3 = new String(args[3]).toLowerCase(); var _local5 = args[4]; var _local4 = args[5]; if (this == _root["Chat_" + _local3]) { UpdateUserCountryMatch(_local3, _local5, _local4); } }; CChatArea.prototype.onUsrMsg = function (channel_name, user_name, msg) { if (this == _root["Chat_" + channel_name]) { if ((substring(msg, 0, 7)) == "\x01ACTION") { msg = ("\x036*" + user_name) + (substring(msg, 8, length(msg))); } else if ((substring(msg, 0, 6)) == "\x01SOUND") { msg = ""; } else if ((substring(msg, 0, 8)) == "\x01VERSION") { evEngine.broadcastMessage("OnCloseChannel", user_name); SendCommand(("NOTICE " + user_name) + " :\x01VERSION IrCQNet Flash Client v1.39\r\n"); } else { msg = (("<" + user_name) + "> ") + msg; } this.AddLine(msg); } }; CChatArea.prototype.onMsg = function (channel_name, msg) { if (channel_name == generalChannelName) { fscommand ("statusMsg", msg); } if (this == _root["Chat_" + channel_name]) { this.AddLine(msg); } }; CChatArea.prototype.onNewChannel = function (channel_name) { if (this == _root["Chat_" + channel_name]) { this._visible = false; } }; CChatArea.prototype.onCloseChannel = function (channel_name, prev_channel) { if (this == _root["Chat_" + channel_name]) { removeMovieClip(this); } }; CChatArea.prototype.onChangeChannel = function (last_channel, new_channel) { if (this == _root["Chat_" + new_channel]) { this._visible = true; } if (this == _root["Chat_" + last_channel]) { this._visible = false; } }; Object.registerClass("ChatArea", CChatArea); CChannelTab.prototype = new MovieClip(); CChannelTab.prototype.SetTabWidth = function (w) { this.pressedButton._width = w; this.nonpressedButton._width = w; this.Title._width = w / 0.55; }; CChannelTab.prototype.SetTitle = function (t) { _root.chatTitle = "- " + t; this.Title.text = t; this._toolTip = t; }; CChannelTab.prototype.SetImage = function (style) { this.GeneralImage._visible = false; this.SmilyImage._visible = false; this.PrivateImage._visible = false; this.RoomImage._visible = false; if (style == 0) { this.GeneralImage._visible = true; } else if (style == 1) { this.SmilyImage._visible = true; } else if (style == 2) { this.PrivateImage._visible = true; } else if (style == 3) { this.RoomImage._visible = true; } }; CChannelTab.prototype.SetPressStatus = function (pressed) { this.pressedButton._visible = pressed; this.nonpressedButton._visible = !pressed; this.pressedButton.enabled = pressed; this.nonpressedButton.enabled = !pressed; }; CChannelTab.prototype.GetPressStatus = function () { return(this.pressedButton._visible); }; CChannelTab.prototype.onNewChannel = function (channel_name) { if ((this == tabHandlerObj["Tab_" + channel_name]) && (channel_name != generalChannelName)) { this.SetPressStatus(false); } }; CChannelTab.prototype.onCloseChannel = function (channel_name) { if ((this == tabHandlerObj["Tab_" + channel_name]) && (channel_name != generalChannelName)) { removeMovieClip(this); } }; CChannelTab.prototype.onChangeChannel = function (last_channel, new_channel) { if (this == tabHandlerObj["Tab_" + new_channel]) { if (this._blink) { this.stopBlink(); } this.SetPressStatus(true); } if (this == tabHandlerObj["Tab_" + last_channel]) { this.SetPressStatus(false); } }; CChannelTab.prototype.startToolTip = function () { if (!this._toolTipExists) { this._toolTipExists = true; this.showToolTip(); } }; CChannelTab.prototype.showToolTip = function () { _root.attachMovie("ToolTip", "tip_" + this._toolTip, 10000); _root["tip_" + this._toolTip].setCoordinates(this._xsave, this._ysave); _root["tip_" + this._toolTip].setTip(this._toolTip); }; CChannelTab.prototype.clearToolTip = function () { if (this._toolTipExists) { this._toolTipExists = false; _root["tip_" + this._toolTip].removeMovieClip(); } }; CChannelTab.prototype.startBlink = function () { trace("blink!!!!"); if (!this._blink) { this._intrevalId = setInterval(this, "blink", 500); this._blink = true; } }; CChannelTab.prototype.blink = function () { this.SetPressStatus(!this.GetPressStatus()); }; CChannelTab.prototype.stopBlink = function () { if (this._blink) { clearInterval(this._intrevalId); this._blink = false; } }; Object.registerClass("ChannelTab", CChannelTab); CToolTip = function () { super(); }; CToolTip.prototype = new MovieClip(); Object.registerClass("ToolTip", CToolTip); CToolTip.prototype.setTip = function (tip_text) { this.tip = tip_text; }; CToolTip.prototype.setCoordinates = function (x, y) { this._x = x + 10; this._y = y + 20; }; CToolTip.prototype.setWidth = function (width) { this._width = width + 5; };
Instance of Symbol 728 MovieClip [List] "UserList" in Frame 3
//component parameters onClipEvent (initialize) { multipleSelection = false; rowHeight = 22; }
Instance of Symbol 728 MovieClip [List] "ICQRooms" in Frame 3
//component parameters onClipEvent (initialize) { multipleSelection = false; rowHeight = 20; }
Instance of Symbol 568 MovieClip [UserInput] "UserInput" in Frame 3
onClipEvent (keyDown) { if (Key.getCode() == 38) { _level0.InputKeyUp(); } if (Key.getCode() == 40) { _level0.InputKeyDown(); } if (Key.getCode() == 13) { _level0.ParseAndSend(this.GetText()); } }
Frame 4
function tabHandler() { super(); } function RearrangeTabs(first_tab) { if (GetChannelsCount() > num_of_tabs) { moreTabs._visible = true; } else { moreTabs._visible = false; } if (((GetChannelsCount() - first_tab) < num_of_tabs) && (first_tab > 0)) { first_tab--; } tabX = 0; var _local1 = 0; while (_local1 < GetChannelsCount()) { tabHandlerObj["Tab_" + GetChannelNameByIdx(_local1)]._visible = false; _local1++; } _local1 = first_tab; while (_local1 < (first_tab + num_of_tabs)) { if (_local1 > first_tab) { tabX = tabX + (tabHandlerObj["Tab_" + GetChannelNameByIdx(_local1 - 1)]._width + tabSpace); } tabHandlerObj["Tab_" + GetChannelNameByIdx(_local1)]._visible = true; tabHandlerObj["Tab_" + GetChannelNameByIdx(_local1)]._x = tabX; _local1++; } tabStartScope = first_tab; } tabHandler.prototype = new MovieClip(); var max_tabs = 9; var min_tabs = 4; var num_of_tabs = 4; var cur_num_tabs = 0; var tabStrtX = 153.8; var tabWidth = 91; var totalTabsWidth = 550; var tabSpace = 5; var tabStartScope = 0; var tabBlinking = ""; tabHandler.prototype.onNewChannel = function () { cur_num_tabs++; if ((cur_num_tabs > min_tabs) && (cur_num_tabs <= max_tabs)) { num_of_tabs++; tabWidth = (tabHandlerObj._width / num_of_tabs) - tabSpace; } var _local1 = 0; while (_local1 < GetChannelsCount()) { tabHandlerObj["Tab_" + GetChannelNameByIdx(_local1)]._width = tabWidth; _local1++; } RearrangeTabs(tabStartScope); }; tabHandler.prototype.onChangeChannel = function (last_channel, new_channel) { if (GetChannelIdxByName(last_channel) > GetChannelIdxByName(new_channel)) { if ((tabStartScope > 0) && (GetChannelIdxByName(last_channel) == tabStartScope)) { RearrangeTabs(tabStartScope - 1); } } else if (GetChannelIdxByName(new_channel) > ((tabStartScope + num_of_tabs) - 1)) { RearrangeTabs((GetChannelIdxByName(new_channel) - num_of_tabs) + 1); } }; tabHandler.prototype.onCloseChannel = function () { cur_num_tabs--; if ((cur_num_tabs < max_tabs) && (num_of_tabs > min_tabs)) { num_of_tabs--; tabWidth = (tabHandlerObj._width / num_of_tabs) - tabSpace; } if (tabWidth > 90.9) { tabWidth = 90.9; } var _local1 = 0; while (_local1 < GetChannelsCount()) { tabHandlerObj["Tab_" + GetChannelNameByIdx(_local1)]._width = tabWidth; _local1++; } RearrangeTabs(tabStartScope); }; tabHandler.prototype.onTabStartBlink = function (channel_name) { var _local1 = GetChannelIdxByName(channel_name); tabHandlerObj["Tab_" + channel_name].startBlink(); }; Object.registerClass("TabHandler", tabHandler); _root.attachMovie("TabHandler", "tabs", 0); tabHandlerObj = eval (_root.tabs); tabHandlerObj._x = 16; tabHandlerObj._y = 37;
Frame 5
function RegisterListeners() { evEngine.addListener(this); evEngine.addListener(tabHandlerObj); evEngine.addListener(RoomMc); watch("js_send_cmd", trig_send_js_cmd); } function LoadParameters() { if ((addr != undefined) && (addr != "")) { serverAddr = addr; } if ((port != undefined) && (port != "")) { serverPort = port; } if ((defaultRoom != undefined) && (defaultRoom != "")) { defaultChannelName = defaultRoom; } if (defaultKey != undefined) { defaultChannelKey = defaultKey; } if ((wait != undefined) && (wait != "")) { b_wait = wait; } if ((defaultRoomList != undefined) && (defaultRoomList != "")) { ICQRoomsStr = defaultRoomList; } if ((disableLineInput == "true") || (disableLineInput == "false")) { disableUserInput = disableLineInput; } if ((disableSystemMessages == "true") || (disableSystemMessages == "false")) { disableSystemMsgs = new Boolean(disableSystemMessages); } if ((enableJoinSound == "true") || (enableJoinSound == "false")) { enableJoinSnd = new Boolean(enableJoinSound); } if (gl_user_pref.data.hideMessages == undefined) { gl_user_pref.data.hideMessages = false; } if (gl_user_pref.data.ignoreTextFormat == undefined) { gl_user_pref.data.ignoreTextFormat = false; } if (gl_user_pref.data.ignorePrivMsg == undefined) { gl_user_pref.data.ignorePrivMsg = false; } if (gl_user_pref.data.playKnockSound == undefined) { gl_user_pref.data.playKnockSound = true; } if (gl_user_pref.data.roomsIgnoreFormat == undefined) { gl_user_pref.data.roomsIgnoreFormat = false; } if (gl_user_pref.data.roomsSortMethod == undefined) { gl_user_pref.data.roomsSortMethod = "users"; } if (gl_user_pref.data.roomsSortOrder == undefined) { gl_user_pref.data.roomsSortOrder = "DESC"; } if (gl_user_pref.data.roomsMinUsers == undefined) { gl_user_pref.data.roomsEnableMinMax = true; } if (gl_user_pref.data.roomsMinUsers == undefined) { gl_user_pref.data.roomsMinUsers = 10; } if (gl_user_pref.data.roomsMaxUsers == undefined) { gl_user_pref.data.roomsMaxUsers = ""; } } function ConnectToServer() { if (IRCSocket.connectIntervalId != null) { clearInterval(IRCSocket.connectIntervalId); } evEngine.broadcastMessage("onMsg", generalChannelName, "\x034Trying to Connect - " + serverAddr); IRCSocket.connect(serverAddr, serverPort); IRCsocket.onXML = function (str) { trace("IncomingMessage::: " + tmp); IncomingMessage(str); }; IRCSocket.onConnect = NewConnection; IRCSocket.onClose = CloseConnection; IRCSocket.onData = function (src) { trace("IncomingMessage22::: " + src); IncomingMessage(src); }; } function NewConnection(success) { if (success) { evEngine.broadcastMessage("onMsg", generalChannelName, "\x033Connected."); IRCSocket.isConnected = true; Mouse.addListener(Mouse); if (disableUserInput == "true") { UserInput._visible = false; SendButton._visible = false; disableSend._visible = true; } LoginUser(); } else { evEngine.broadcastMessage("onMsg", generalChannelName, "\x034Not Connected."); evEngine.broadcastMessage("onMsg", generalChannelName, "\x034Trying to reconnect in a few seconds..."); if (IRCSocket.connectIntervalId == null) { IRCSocket.connectIntervalId = setInterval(ConnectToServer, 10000); } } } function CloseConnection() { if (UserGetCurrentChannel() != generalChannelName) { evEngine.broadcastMessage("onChangeChannel", UserGetCurrentChannel(), generalChannelName); } evEngine.broadcastMessage("onMsg", generalChannelName, "\x034Disconnected."); evEngine.broadcastMessage("onMsg", generalChannelName, "\x034Trying to reconnect in a few seconds..."); var _local1 = 1; while (_local1 < GetChannelsCount()) { var _local2 = GetChannelNameByIdx(_local1); evEngine.broadcastMessage("onCloseChannel", _local2); _local1++; } IRCSocket.isConnected = false; if (IRCSocket.connectIntervalId == null) { IRCSocket.connectIntervalId = setInterval(ConnectToServer, 10000); } } function LoginUser(nick) { if ((nick == "") || (nick == undefined)) { nick = UserGetNick(); } SendCommand(("NICK " + nick) + "\r\n"); SendCommand(((((((("USER " + nick) + " ") + UserGetLocalHostAddr()) + " ") + serverAddr) + " : ") + nick) + "\r\n"); } function IncomingMessage(input) { var _local4 = new Array(); Parser(input, _local4); var _local2 = 0; while (_local2 < _local4.length) { var _local3 = _local4[_local2]; var _local1 = _local3[1]; var _local5; if (!isNaN(_local1)) { _local1 = getCommand(_local1); } trace("cmd:" + _local1); evEngine.broadcastMessage(_local1, _local3); _local2++; } } function SendCommand(cmd) { if (IRCSocket.isConnected) { var _local1 = new XML(); _local1 = cmd; IRCSocket.send(_local1); } } function fix_channel_name(channel_name) { var _local1 = new String(channel_name); if (((i = _local1.indexOf("&"))) > -1) { channel_name = (_local1.substring(0, i) + "And") + _local1.substring(i + 1, _local1.length); } if (length(channel_name) > 32) { return(substring(channel_name, 0, 31)); } return(channel_name); } function ParseCommand(cmd) { var _local1 = new Tokenizer(cmd, " "); var _local2 = new String(_local1.tokens[0]).toUpperCase(); if (_local2 == "MSG") { if (_local1.tokens.length < 3) { evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), "\x034/MSG - not enough parameters"); return(""); } if (_local1.tokens[1] != UserGetNick()) { var _local5 = _local1.tokens[1]; _local1.tokens.splice(0, 2); var _local4 = _local1.tokens.join(" "); evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), (("\x0310\x02->*" + _local5) + "* ") + _local4); return(((("PRIVMSG " + _local5) + " :") + _local4) + "\r\n"); } } if (_local2 == "ME") { if (UserGetCurrentChannel() == generalChannelName) { return(""); } if (_local1.tokens.length < 2) { evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), "\x034/ME - not enough parameters"); return(""); } _local1.tokens.splice(0, 1); var _local7 = _local1.tokens.join(" "); evEngine.broadcastMessage("onUsrMsg", UserGetCurrentChannel(), UserGetNick(), "\x01ACTION " + _local7); return(((("PRIVMSG " + UserGetCurrentChannel()) + " :\x01ACTION ") + _local7) + "\r\n"); } if (_local2 == "NICK") { if (_local1.tokens.length < 2) { evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), "\x034/NICK - not enough parameters"); return(""); } return(cmd + "\r\n"); } if ((_local2 == "J") || (_local2 == "JOIN")) { if (_local1.tokens.length < 2) { evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), "\x034/JOIN - not enough parameters"); return(""); } var _local3 = fix_channel_name(_local1.tokens[1]); join_channel(_local3); _local1.tokens.splice(0, 1); var _local7 = _local1.tokens.join(" "); return(((("JOIN " + _local3) + " ") + _local7) + "\r\n"); } if (_local2 == "IGNORE") { if (_local1.tokens.length < 2) { evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), "\x034/IGNORE - not enough parameters"); } else { if (_local1.tokens.length == 2) { aIgnoreList[_local1.tokens[1]] = 1; evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), ("\x032" + _local1.tokens[1]) + " is ignored"); } if (_local1.tokens.length == 3) { if (_local1.tokens[2] == "+") { aIgnoreList[_local1.tokens[1]] = 1; evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), ("\x032" + _local1.tokens[1]) + " is ignored"); } else if (_local1.tokens[2] == "-") { aIgnoreList[_local1.tokens[1]] = null; evEngine.broadcastMessage("onMsg", UserGetCurrentChannel(), ("\x032" + _local1.tokens[1]) + " is not ignored"); } } } return(""); } return(cmd + "\r\n"); } function ParseAndSend(txt) { if (txt == "") { return(undefined); } _root.lastCMD = substring(txt, 0, 6); AddChannelHistory(UserGetCurrentChannel(), txt); if ((substring(txt, 0, 5)) == "/help") { getURL ("http://www.icq.com/help/help_cat.php?cat_id=2186", "_blank"); } if (((substring(txt, 0, 1)) == "/") && ((substring(txt, 0, 5)) != "/help")) { txt = substring(txt, 2, length(txt)); txt = ParseCommand(txt); if (txt != "") { SendCommand(txt); } } else if (UserGetCurrentChannel() != generalChannelName) { evEngine.broadcastMessage("onUsrMsg", UserGetCurrentChannel(), UserGetNick(), txt); txt = ((("PRIVMSG " + UserGetCurrentChannel()) + " :") + txt) + "\r\n"; SendCommand(txt); } UserInput.SetText(""); } function InitICQRooms() { rooms = new Tokenizer(ICQRoomsStr, ";"); ICQRooms.removeAll(); var _local1 = 0; while (_local1 < rooms.tokens.length) { ICQRooms.addItem({label:rooms.tokens[_local1], data:rooms.tokens[_local1]}); _local1++; } delete rooms; } function ViewAllRooms() { if (!IsChannelExists(roomsChannelName)) { OpenNewChannel(roomsChannelName, 3); } if (UserGetCurrentChannel() != roomsChannelName) { evEngine.broadcastMessage("onChangeChannel", UserGetCurrentChannel(), roomsChannelName); } RoomMc._visible = true; RoomMc.RoomList.removeAll(); } function CreateNewChatArea(name) { trace("CreateNewChatArea2"); NewChannel(name); name = "Chat_" + name; _root.attachMovie("ChatArea", name, ++depths); _root[name].disableTopic(); _root[name]._y = 30; evEngine.addListener(_root[name]); } function CreateNewTab(name, style) { trace("CreateNewTab - " + name); tabHandlerObj.attachMovie("ChannelTab", "Tab_" + name, ++depths); tabHandlerObj["Tab_" + name]._y = 2; tabHandlerObj["Tab_" + name].SetTitle(name); tabHandlerObj["Tab_" + name].SetImage(style); evEngine.addListener(tabHandlerObj["Tab_" + name]); } function OpenNewChannel(name, style) { trace("OpenNewChannel function::" + name); if ((style == "") || (style == undefined)) { style = 1; } CreateNewTab(name, style); CreateNewChatArea(name); evEngine.broadcastMessage("onNewChannel", name); } function OpenNewPrivateChannel(name) { OpenNewChannel(name, 2); _root["Chat_" + name].setTopic("Private Chat with " + name); } function trig_send_js_cmd(id, oldval, newval) { if (newval == undefined) { return(undefined); } ParseAndSend(newval); } function join_channel(channel_name, channel_mode) { if (channel_mode == "private") { var _local1 = channel_name; OpenNewPrivateChannel(_local1); } else { var _local1 = new String(channel_name).toLowerCase(); if (!IsChannelExists(_local1)) { OpenNewChannel(_local1); } } evEngine.broadcastMessage("onChangeChannel", UserGetCurrentChannel(), _local1); if (channel_mode == "private") { evEngine.broadcastMessage("onMsg", _local1, "\x033You are now talking with " + channel_name); } else { evEngine.broadcastMessage("onMsg", _local1, "\x033You are now talking on " + channel_name); } } function close_channel(channel_name) { if (IsChannelExists(channel_name)) { if (UserGetCurrentChannel() == channel_name) { evEngine.broadcastMessage("onChangeChannel", channel_name, GetPrevChannel(channel_name)); } evEngine.broadcastMessage("onCloseChannel", channel_name); } } function RemoveUserFromUsersList(channel_name, user_name) { if (channel_name == UserGetCurrentChannel()) { var _local1 = 0; while (_local1 < UserList.getLength()) { if (user_name == UserList.getItemAt(_local1).data) { UserList.removeItemAt(_local1); } _local1++; } } } function RefreshUserList() { var _local1 = UserGetCurrentChannel(); RefreshUsers(_local1); } function RefreshUsers(channel_name) { if (channel_name == UserGetCurrentChannel()) { if (!IsUsersSorted(channel_name)) { SortChannelUsers(channel_name); var _local9 = UserList.getScrollPosition(); var _local10 = UserList.getSelectedIndex(); UserList.removeAll(); var _local3 = GetUsers(channel_name); var _local1 = 0; while (_local1 < _local3.length) { var _local2 = _local3[_local1].user_name; if (GetRealNick(_local2) == UserGetNick()) { UserList.addItem({label:_local2, data:_local2, paint:"0xCC3300", match:_local3[_local1].match_country}); } else { UserList.addItem({label:_local2, data:_local2, paint:"0x000000", match:_local3[_local1].match_country}); } _local1++; } UserList.setScrollPosition(_local9); UserList.setSelectedIndex(_local10); SetUsersSorted(channel_name, true); } } } function RPL_WELCOME(args) { var _local2 = args[2]; UserSetNick(_local2); evEngine.broadcastMessage("NOTICE", args); if (b_wait > 0) { JoinIntervalId = setInterval(joinFirstChannel, b_wait); } else { var _local1 = fix_channel_name(defaultChannelName); if (defaultChannelKey != "") { SendCommand(((("JOIN " + _local1) + " ") + defaultChannelKey) + "\r\n"); } else { SendCommand(("JOIN " + _local1) + "\r\n"); } join_channel(_local1); } } function joinFirstChannel() { clearInterval(JoinIntervalId); var _local1 = fix_channel_name(defaultChannelName); SendCommand(("JOIN " + _local1) + "\r\n"); join_channel(_local1); } function ERR_CHANNELFULL(args) { var _local1 = new String(args[4]).toLowerCase(); close_channel(_local1); } function ERR_BADCHANNELKEY(args) { var _local1 = new String(args[3]).toLowerCase(); var _local2 = args[4]; close_channel(_local1); evEngine.broadcastMessage("onMsg", generalChannelName, (("\x034" + _local1) + ": ") + _local2); } function ERR_CLOSECHANNEL(args) { var _local4 = args[2]; var _local1 = new String(args[3]).toLowerCase(); var _local3 = args[4]; if (_local4 != UserGetNick()) { return(undefined); } close_channel(_local1); evEngine.broadcastMessage("onMsg", generalChannelName, (("\x034" + _local1) + ": ") + _local3); } function ERR_NICKNAMEINUSE(args) { var _local1 = args[3]; var _local2 = args[4]; evEngine.broadcastMessage("onMsg", generalChannelName, (("\x034" + _local1) + ": ") + _local2); var _local3 = Math.floor(Math.random() * 1000); SendCommand(((("NICK " + _local1) + "_") + _local3) + "\r\n"); } function ERR_ERRONEUSNICKNAME(args) { var _local1 = args[2]; var _local2 = args[3]; if (new String(_local2).indexOf("Illegal characters") > -1) { UserSetNick("Guest"); } evEngine.broadcastMessage("onMsg", generalChannelName, (("\x034" + _local1) + ": ") + _local2); _local1 = UserGetNick(); var _local3 = Math.floor(Math.random() * 1000); SendCommand(((("NICK " + _local1) + "_") + _local3) + "\r\n"); } function PING(args) { SendCommand(("PONG " + args[2]) + "\r\n"); evEngine.broadcastMessage("onMsg", generalChannelName, "\x033Ping, Pong"); } function JOIN(args) { var _local1 = new String(args[3]).toLowerCase(); var _local2 = args[2]; if (_local2 != UserGetNick()) { if (IsChannelExists(_local1)) { AddUserToChannel(_local1, _local2); if ((g_sVCCountry != "") && (g_sVCCountry != undefined)) { SendCommand(((((("TARGETUSER " + _local1) + " ") + _local2) + " ") + g_sVCCountry) + "\r\n"); } if (_local1 == UserGetCurrentChannel()) { UserList.addItem({label:_local2, data:_local2, paint:"0x000000", match:0}); if (enableJoinSnd) { if (gl_user_pref.data.playKnockSound) { knock_obj.start(); } } } SetUsersSorted(_local1, false); if (!disableSystemMsgs) { if (!gl_user_pref.data.hideMessages) { evEngine.broadcastMessage("onMsg", _local1, (("\x033" + _local2) + " has joined channel ") + _local1); } } } } else { if (!IsChannelExists(_local1)) { join_channel(_local1); } if ((g_sVCCountry != "") && (g_sVCCountry != undefined)) { SendCommand(((("TARGETCHANNEL " + _local1) + " ") + g_sVCCountry) + "\r\n"); } } } function PART(args) { var _local1 = new String(args[2]).toLowerCase(); var _local2 = args[3]; var _local3 = args[4]; var _local4 = (("\x034" + _local2) + " has left channel ") + _local1; if (_local3 != null) { _local4 = _local4 + (" : " + _local3); } if (!disableSystemMsgs) { if (!gl_user_pref.data.hideMessages) { evEngine.broadcastMessage("onMsg", _local1, _local4); } } if (UserGetNick() != _local2) { RemoveUserFromChannel(_local1, _local2); RemoveUserFromUsersList(_local1, _local2); } else if (IsChannelExists(_local1)) { evEngine.broadcastMessage("onChangeChannel", _local1, GetPrevChannel(_local1)); evEngine.broadcastMessage("onCloseChannel", _local1); } } function NICK(args) { var _local5 = args[2]; var _local4 = args[3]; var _local3 = ""; if (UserGetNick() == _local5) { UserSetNick(_local4); _local3 = "\x032you are now known as " + _local4; } else { _local3 = (("\x032" + _local5) + " is now known as ") + _local4; } var _local2 = new Array(); ChangeUserNick(_local5, _local4, _local2); if (!disableSystemMsgs) { var _local1 = 0; while (_local1 < _local2.length) { evEngine.broadcastMessage("onMsg", _local2[_local1], _local3); _local1++; } } if (IsUserExistsInChannel(UserGetCurrentChannel(), _local4)) { SetUsersSorted(UserGetCurrentChannel(), false); } } function QUIT(args) { var _local4 = args[2]; var _local6 = args[3]; if (_local4 != UserGetNick()) { var _local5 = IsUserExistsInChannel(UserGetCurrentChannel(), _local4); var _local2 = new Array(); var _local3 = ((("\x034" + _local4) + " has quit (") + _local6) + ")"; RemoveUserFromChannels(_local4, _local2); if (!disableSystemMsgs) { if (!gl_user_pref.data.hideMessages) { var _local1 = 0; while (_local1 < _local2.length) { evEngine.broadcastMessage("onMsg", _local2[_local1], _local3); _local1++; } } } if (_local5) { SetUsersSorted(UserGetCurrentChannel(), false); } } } function KICK(args) { var _local1 = new String(args[2]).toLowerCase(); var _local2 = args[3]; var _local5 = args[4]; var _local4 = args[5]; if (_local2 == UserGetNick()) { var _local6 = ((((("\x034You were kicked from " + _local1) + " by ") + _local5) + " (") + _local4) + ")"; evEngine.broadcastMessage("onMsg", generalChannelName, _local6); if (_local1 == UserGetCurrentChannel()) { evEngine.broadcastMessage("onChangeChannel", _local1, generalChannelName); } evEngine.broadcastMessage("onCloseChannel", _local1); } else { var _local6 = ((((("\x034" + _local2) + " was kicked by ") + _local5) + " (") + _local4) + ")"; RemoveUserFromChannel(_local1, _local2); RemoveUserFromUsersList(_local1, _local2); if (!disableSystemMsgs) { if (!gl_user_pref.data.hideMessages) { evEngine.broadcastMessage("onMsg", _local1, _local6); } } } } function MODE(args) { var _local1 = new String(args[2]).toLowerCase(); var _local3 = new String(args[3]).toLowerCase(); var _local2 = args[4]; var _local7 = args[5]; var _local8 = (((("\x033" + _local7) + " sets mode: ") + _local3) + " ") + _local2; if (!disableSystemMsgs) { evEngine.broadcastMessage("onMsg", _local1, _local8); } if (_local3 == "+b") { var _local6 = new String(_local2); var _local4 = _local6.indexOf("!"); if (_local4 > -1) { var _local9 = _local6.substring(0, _local4); if (_local9 == UserGetNick()) { _local8 = (("\x034You were banned from " + _local1) + " by ") + _local7; evEngine.broadcastMessage("onMsg", generalChannelName, _local8); close_channel(_local1); } } } if (_local3 == "+o") { ChangeUser(_local1, _local2, "@"); } if (_local3 == "-o") { ChangeUser(_local1, _local2, ""); } if (!IsUserOperator(_local1, _local2)) { if (_local3 == "+v") { ChangeUser(_local1, _local2, "+"); } if (_local3 == "-v") { ChangeUser(_local1, _local2, ""); } } SetUsersSorted(_local1, false); } function RPL_LISTSTART(args) { ViewAllRooms(); } function RPL_LIST(args) { var _local2 = new String(args[3]).toLowerCase(); var _local3 = int(args[4]); var _local4 = args[5]; if (gl_user_pref.data.roomsEnableMinMax) { if (gl_user_pref.data.roomsMaxUsers > 0) { if (_local3 > gl_user_pref.data.roomsMaxUsers) { return(undefined); } } } _local2 = ("\x02" + _local2) + "\x02"; RoomMc.RoomList.addItem("undefined", display); tempTXT11 = " "; tempTXT1 = "Channel name: " + _local2; _root.Chat_Rooms.AddLine(tempTXT1); tempTXT2 = " Number of users: " + _local3; _root.Chat_Rooms.AddLine(tempTXT2); tempTXT3 = " Topic: " + _local4; _root.Chat_Rooms.AddLine(tempTXT3); _root.Chat_Rooms.AddLine(tempTXT11); } function RPL_LISTEND(args) { RoomMc.RoomList.sortByColumn(gl_user_pref.data.roomsSortMethod, gl_user_pref.data.roomsSortOrder); } function RPL_ENDOFNAMES(args) { var _local1 = new String(args[3]).toLowerCase(); SetUsersSorted(_local1, false); RefreshUsers(_local1); } function NOTICE(args) { var _local4 = args[3]; if (_local4 == g_sVCBotName) { var _local1 = new Tokenizer(args[4], "~"); var _local2 = _local1.tokens[0]; var _local6 = _local1.tokens[1]; var _local5 = _local1.tokens[2]; var _local3 = _local1.tokens[3]; if (_local2 == "failed") { fscommand ("GetVoiceFailMsg"); return(undefined); } fscommand ("GetVoiceMsg", (((((_local2 + "~") + _local6) + "~") + _local5) + "~") + _local3); } } function onClosePressed() { var _local2 = UserGetCurrentChannel(); if (tabHandlerObj["Tab_" + _local2].SmilyImage._visible == true) { SendCommand(((("PART " + UserGetCurrentChannel()) + " ") + UserGetNick()) + "\r\n"); } trace("onChangeChannel!!" + GetPrevChannel(_local2)); _root.chatTitle = "- " + GetPrevChannel(_local2); evEngine.broadcastMessage("onChangeChannel", _local2, GetPrevChannel(_local2)); evEngine.broadcastMessage("onCloseChannel", _local2); } function onTabPressed(new_channel) { trace("tab pressed!!" + new_channel); _root.chatTitle = "- " + new_channel; evEngine.broadcastMessage("onChangeChannel", UserGetCurrentChannel(), new_channel); } function onTabPrev() { var _local1 = GetPrevChannel(UserGetCurrentChannel()); if (_local1 != "") { evEngine.broadcastMessage("onChangeChannel", UserGetCurrentChannel(), _local1); } } function onTabNext() { var _local1 = GetNextChannel(UserGetCurrentChannel()); if (_local1 != "") { evEngine.broadcastMessage("onChangeChannel", UserGetCurrentChannel(), _local1); } } function onChangeChannel(last_channel, new_channel) { UserSetCurrentChannel(new_channel); SetUsersSorted(new_channel, false); RefreshUsers(new_channel); } function onCloseChannel(channel_name) { RemoveChannel(channel_name); evEngine.removeListener(tabHandlerObj["Tab_" + name]); evEngine.removeListener(_root["Chat_" + name]); } function onICQRoom(room) { room = new String(room).toLowerCase(); if (IsChannelExists(room)) { if (UserGetCurrentChannel() != room) { evEngine.broadcastMessage("onChangeChannel", UserGetCurrentChannel(), room); } } else { join_channel(room); var _local2 = fix_channel_name(room); SendCommand(("JOIN " + _local2) + "\r\n"); } } function onUserList(user_name) { user_name = GetRealNick(user_name); if (UserGetNick() == user_name) { return(undefined); } if (!IsChannelExists(user_name)) { join_channel(user_name, "private"); } else { evEngine.broadcastMessage("onChangeChannel", UserGetCurrentChannel(), user_name); } } function onPreferencesPressed() { _root.attachMovie("PrefSymbol", "PrefWin", 1000); this.PrefWin._x = 65; this.PrefWin._y = 107; this.PrefWin.executeCallBack = function (state) { if (state == "ok") { gl_user_pref.data.hideMessages = this.checkHideMessages.getValue(); gl_user_pref.data.ignoreTextFormat = this.checkIgnoreTextFormat.getValue(); gl_user_pref.data.ignorePrivMsg = this.checkIgnorePrivMsg.getValue(); gl_user_pref.data.playKnockSound = this.checkKnockSound.getValue(); this.SetUserNick(); } removeMovieClip(this); }; } function onChangeNickPressed() { _root.attachMovie("NickWindowSymbol", "NickWin", 1000); this.NickWin._x = 200; this.NickWin._y = 186; this.NickWin.executeCallBack = function (nick) { SendCommand(("NICK " + nick) + "\r\n"); removeMovieClip(this); }; } function InputKeyUp() { UserInput.SetText(GetPrevHistory(UserGetCurrentChannel())); } function InputKeyDown() { UserInput.SetText(GetNextHistory(UserGetCurrentChannel())); } function SendListCommand() { RoomMc.RoomList.disableTextFormat(gl_user_pref.data.roomsIgnoreFormat); var _local1 = "LIST "; if (gl_user_pref.data.roomsEnableMinMax) { if ((gl_user_pref.data.roomsMinUsers != "") && (!isNaN(gl_user_pref.data.roomsMinUsers))) { var _local2 = int(gl_user_pref.data.roomsMinUsers - 1); _local1 = _local1 + (">" + _local2); } } SendCommand(_local1 + "\r\n"); } function OpenVoiceChatDlg() { if (_root.call_win == undefined) { _root.attachMovie("mcCall", "call_win", 1000); call_win = eval (_root.call_win); call_win._x = 108; call_win._y = 133; } _root.call_win.swapDepths(1001); _root.call_win.SetTitle(g_sVCTitle); _root.call_win._visible = true; } function CreateCall() { if (g_bSentRequest) { return(undefined); } g_bSentRequest = true; OpenVoiceChatDlg(); fscommand ("GetVoiceConnectMsg"); if (g_sVCImage != "") { loadMovie (g_sVCImage, _root.call_win.VCImage); } _root.call_win.RestartProgress(); var _local2 = UserList.getSelectedItem().data; SendCommand(((((("PRIVMSG " + g_sVCBotName) + " : !voice ") + GetRealNick(_local2)) + " ") + TrimChar(UserGetCurrentChannel(), "#")) + "\r\n"); UserList.selectedIndex = undefined; } function CloseCallDlg() { _root.call_win._visible = false; _root.call_win.StopProgress(); g_bSentRequest = false; } function DisplayVoiceChatMsg(msg) { _root.call_win._visible = true; _root.call_win.DisplayMsg(msg); _root.call_win.ShowProgress(false); } function DisplayVoiceChatProgress(msg) { DisplayVoiceChatMsg(msg); _root.call_win.ShowProgress(true); } function OpenVoiceChatRoom(user_name, msg) { if (!IsChannelExists(g_sVCBotName)) { OpenNewPrivateChannel(g_sVCBotName); } if (g_sCurrentChannel != user_name) { evEngine.broadcastMessage("onTabStartBlink", g_sVCBotName); } evEngine.broadcastMessage("onUsrMsg", g_sVCBotName, user_name, msg); } stop(); var evEngine = new Object(); ASBroadcaster.initialize(evEngine); RegisterListeners(); OpenNewChannel(generalChannelName, 0); UserSetCurrentChannel(generalChannelName); JoinIntervalId = undefined; b_wait = 0; _root.lastCMD = ""; _root["Chat_" + generalChannelName]._visible = true; _root["Chat_" + generalChannelName].CloseChatButton._visible = false; _root["Chat_" + generalChannelName].CloseChatButton.enabled = false; var IRCSocket = new XMLSocket(); IRCSocket.isConnected = false; IRCSocket.connectIntervalId = null; LoadParameters(); InitICQRooms(); ConnectToServer(); if ((g_sVCBotName != undefined) && (g_sVCBotName != "")) { evEngine.broadcastMessage("onMsg", generalChannelName, "Voice Chat Enabled :" + g_sVCCountry); UserList.cellRenderer = "ButtonCellRenderer"; } else { UserList.cellRenderer = "ListCell"; } UserList.setStyle("rollOverColor", 15068913); UserList.setStyle("selectionColor", 11783638); UserList.setStyle("borderStyle", "none"); ICQRooms.cellRenderer = "ListCell"; ICQRooms.setStyle("rollOverColor", 15068913); ICQRooms.setStyle("selectionColor", 11783638); ICQRooms.setStyle("borderStyle", "none"); setInterval(RefreshUserList, 5000); RoomMc.onChangeChannel = function (last_channel, new_channel) { if (last_channel == roomsChannelName) { RoomMc._visible = false; } if (new_channel == roomsChannelName) { RoomMc._visible = true; } }; RoomMc.RoomList.onDoubleClick = function () { var _local2 = RoomMc.RoomList.getSelectedItem().data.name; if (RoomMc.openBar._visible) { if (_root._xmouse > 550) { return(undefined); } } else if (_root._xmouse > 350) { return(undefined); } _local2 = substring(_local2, 2, length(_local2) - 2); if (_local2 != undefined) { onICQRoom(_local2); } }; UserList.onDoubleClick = function () { var _local2 = UserList.getSelectedItem().data; if (_root._xmouse > 555) { return(undefined); } if (_local2 != undefined) { onUserList(_local2); } }; UserList.butClick = function () { _root.CreateCall(); }; ICQRooms.onDoubleClick = function () { trace("rooom pressed "); var _local2 = ICQRooms.getSelectedItem().label; if (_root._xmouse > 555) { return(undefined); } if (_local2 != undefined) { onICQRoom(_local2); } };
Symbol 12 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 15 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 18 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 20 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 23 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 26 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "check");
Symbol 27 MovieClip [fcb_states] Frame 1
stop();
Symbol 27 MovieClip [fcb_states] Frame 2
stop();
Symbol 27 MovieClip [fcb_states] Frame 3
stop();
Symbol 27 MovieClip [fcb_states] Frame 4
stop();
Symbol 27 MovieClip [fcb_states] Frame 5
stop();
Symbol 27 MovieClip [fcb_states] Frame 6
stop();
Symbol 30 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 30 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 33 MovieClip [FRadioButtonSymbol] Frame 1
#initclip 113 function FRadioButtonClass() { this.init(); } function FRadioButtonGroupClass() { this.radioInstances = new Array(); } FRadioButtonClass.prototype = new FUIComponentClass(); FRadioButtonGroupClass.prototype = new FUIComponentClass(); Object.registerClass("FRadioButtonSymbol", FRadioButtonClass); FRadioButtonClass.prototype.init = function () { if (this.initialState == undefined) { this.selected = false; } else { this.selected = this.initialState; } super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.boundingBox_mc._width = 0; this.boundingBox_mc._height = 0; this.attachMovie("frb_hitArea", "frb_hitArea_mc", 1); this.attachMovie("frb_states", "frb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); this.setChangeHandler(this.changeHandler); if (this.label != undefined) { this.setLabel(this.label); } if (this.initialState == undefined) { this.setValue(false); } else { this.setValue(this.initialState); } if (this.data == "") { this.data = undefined; } else { this.setData(this.data); } this.addToRadioGroup(); this.ROLE_SYSTEM_RADIOBUTTON = 45; this.STATE_SYSTEM_SELECTED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FRadioButtonClass.prototype.setHitArea = function (w, h) { var _local3 = this.frb_hitArea_mc; this.hitArea = _local3; if (this.frb_states_mc._width > w) { _local3._width = this.frb_states_mc._width; } else { _local3._width = w; } _local3._visible = false; if (arguments.length > 1) { _local3._height = h; } }; FRadioButtonClass.prototype.txtFormat = function (pos) { var _local3 = this.textStyle; var _local4 = this.styleTable; _local3.align = ((_local4.textAlign.value == undefined) ? ((_local3.align = pos)) : undefined); _local3.leftMargin = ((_local4.textLeftMargin.value == undefined) ? ((_local3.leftMargin = 0)) : undefined); _local3.rightMargin = ((_local4.textRightMargin.value == undefined) ? ((_local3.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.setEnabled(this.enable); }; FRadioButtonClass.prototype.setSize = function (w, h) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.frb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FRadioButtonClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var _local8 = this.fLabel_mc._height / 2; var _local7 = this.frb_states_mc._height / 2; var _local5 = _local7 - _local8; var _local6 = this.frb_states_mc._width; var _local2 = this.frb_states_mc; var _local9 = this.fLabel_mc; var _local3 = this.width - _local2._width; if (_local2._width > this.width) { _local3 = 0; } else { _local3 = this.width - _local2._width; } this.fLabel_mc.setSize(_local3); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.frb_states_mc._x = 0; this.fLabel_mc._x = _local6; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.frb_states_mc._x = this.width - _local6; this.txtFormat("right"); } this.fLabel_mc._y = _local5; this.frb_hitArea_mc._y = _local5; this.setLabel(this.getLabel()); }; FRadioButtonClass.prototype.setData = function (dataValue) { this.data = dataValue; }; FRadioButtonClass.prototype.getData = function () { return(this.data); }; FRadioButtonClass.prototype.getState = function () { return(this.selected); }; FRadioButtonClass.prototype.getSize = function () { return(this.width); }; FRadioButtonClass.prototype.getGroupName = function () { return(this.groupName); }; FRadioButtonClass.prototype.setGroupName = function (groupName) { var _local2 = 0; while (_local2 < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[_local2] == this) { delete this._parent[this.groupName].radioInstances[_local2]; } _local2++; } this.groupName = groupName; this.addToRadioGroup(); }; FRadioButtonClass.prototype.addToRadioGroup = function () { if (this._parent[this.groupName] == undefined) { this._parent[this.groupName] = new FRadioButtonGroupClass(); } this._parent[this.groupName].addRadioInstance(this); }; FRadioButtonClass.prototype.setValue = function (selected) { if (selected || (selected == undefined)) { this.setState(true); this.focusRect.removeMovieClip(); this.executeCallBack(); } else if (selected == false) { this.setState(false); } }; FRadioButtonClass.prototype.setTabState = function (selected) { Selection.setFocus(this); this.setState(selected); this.drawFocusRect(); this.executeCallBack(); }; FRadioButtonClass.prototype.setState = function (selected) { if (selected || (selected == undefined)) { this.tabEnabled = true; for (var _local3 in this._parent) { if ((this != this._parent[_local3]) && (this._parent[_local3].groupName == this.groupName)) { this._parent[_local3].setState(false); this._parent[_local3].tabEnabled = false; } } } if (this.enable) { this.flabel_mc.setEnabled(true); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedEnabled"); this.enabled = false; this.selected = true; this.tabEnabled = true; this.tabFocused = true; } else { this.frb_states_mc.gotoAndStop("unselectedEnabled"); this.enabled = true; this.selected = false; this.tabEnabled = false; var _local4 = this._parent[this.groupName].getEnabled(); var _local5 = this._parent[this.groupName].getValue() == undefined; if (_local4 && (_local5)) { this._parent[this.groupName].radioInstances[0].tabEnabled = true; } } } else { this.flabel_mc.setEnabled(false); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedDisabled"); this.enabled = false; this.selected = true; this.tabEnabled = false; } else { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.enabled = false; this.selected = false; this.tabEnabled = false; } } if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FRadioButtonClass.prototype.getValue = function () { if (this.selected) { if ((this.data == "") || (this.data == undefined)) { return(this.getLabel()); } return(this.data); } }; FRadioButtonClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setState(this.selected); var _local5 = this._parent[this.groupName].getEnabled() == undefined; var _local4 = this._parent[this.groupName].radioInstances[0].getEnabled() == false; if (_local5 && (_local4)) { var _local3 = 0; while (_local3 < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[_local3].getEnabled() == true) { this._parent[this.groupName].radioInstances[_local3].tabEnabled = true; return(undefined); } _local3++; } } }; FRadioButtonClass.prototype.getEnabled = function () { return(this.enable); }; FRadioButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FRadioButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.getLabel()); }; FRadioButtonClass.prototype.onPress = function () { this.pressFocus(); this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.onRelease = function () { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.setValue(!this.selected); }; FRadioButtonClass.prototype.onReleaseOutside = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOut = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOver = function () { this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this._parent[this.groupName]); }; FRadioButtonGroupClass.prototype.addRadioInstance = function (instance) { this.radioInstances.push(instance); this.radioInstances[0].tabEnabled = true; }; FRadioButtonGroupClass.prototype.setEnabled = function (enableFlag) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setEnabled(enableFlag); _local2++; } }; FRadioButtonGroupClass.prototype.getEnabled = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].getEnabled() != this.radioInstances[0].getEnabled()) { return(undefined); } _local2++; } return(this.radioInstances[0].getEnabled()); }; FRadioButtonGroupClass.prototype.setChangeHandler = function (changeHandler, obj) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setChangeHandler(changeHandler, obj); _local2++; } }; FRadioButtonGroupClass.prototype.getValue = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected == true) { if ((this.radioInstances[_local2].data == "") || (this.radioInstances[_local2].data == undefined)) { return(this.radioInstances[_local2].getLabel()); } return(this.radioInstances[_local2].data); } _local2++; } }; FRadioButtonGroupClass.prototype.getData = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected) { return(this.radioInstances[_local2].getData()); } _local2++; } }; FRadioButtonGroupClass.prototype.getInstance = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected == true) { return(_local2); } _local2++; } }; FRadioButtonGroupClass.prototype.setValue = function (dataValue) { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].data == dataValue) { this.radioInstances[_local2].setValue(true); return(undefined); } _local2++; } _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].getLabel() == dataValue) { this.radioInstances[_local2].setValue(true); } _local2++; } }; FRadioButtonGroupClass.prototype.setSize = function (w) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setSize(w); _local2++; } }; FRadioButtonGroupClass.prototype.getSize = function () { var _local3 = 0; var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].width >= _local3) { _local3 = this.radioInstances[_local2].width; } _local2++; } return(_local3); }; FRadioButtonGroupClass.prototype.setGroupName = function (groupName) { this.oldGroupName = this.radioInstances[0].groupName; var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].groupName = groupName; this.radioInstances[_local2].addToRadioGroup(); _local2++; } delete this._parent[this.oldGroupName]; }; FRadioButtonGroupClass.prototype.getGroupName = function () { return(this.radioInstances[0].groupName); }; FRadioButtonGroupClass.prototype.setLabelPlacement = function (pos) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setLabelPlacement(pos); _local2++; } }; FRadioButtonGroupClass.prototype.setStyleProperty = function (propName, value, isGlobal) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setStyleProperty(propName, value, isGlobal); _local2++; } }; FRadioButtonGroupClass.prototype.addListener = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].addListener(); _local2++; } }; FRadioButtonGroupClass.prototype.applyChanges = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].applyChanges(); _local2++; } }; FRadioButtonGroupClass.prototype.removeListener = function (component) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].removeListener(component); _local2++; } }; FRadioButtonClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 3); }; FRadioButtonClass.prototype.myOnKillFocus = function () { Key.removeListener(this.keyListener); this.focused = false; this.focusRect.removeMovieClip(); this._parent[this.groupName].foobar = 0; }; FRadioButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this._parent[this.groupName].getValue() == undefined)) { if (this._parent[this.groupName].radioInstances[0] == this) { this.setTabState(true); } } if ((Key.getCode() == 40) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var _local2 = this.foobar; while (_local2 < this._parent[this.groupName].radioInstances.length) { var _local3 = _local2 + 1; if (this._parent[this.groupName].radioInstances[_local3].getEnabled()) { this._parent[this.groupName].radioInstances[_local3].setTabState(true); return(undefined); } _local2++; } } if ((Key.getCode() == 38) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var _local2 = this.foobar; while (_local2 >= 0) { var _local3 = _local2 - 1; if (this._parent[this.groupName].radioInstances[_local3].getEnabled()) { this._parent[this.groupName].radioInstances[_local3].setTabState(true); return(undefined); } _local2--; } } }; FRadioButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_RADIOBUTTON); }; FRadioButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FRadioButtonClass.prototype.get_accState = function (childId) { if (this.master.getState()) { return(this.master.STATE_SYSTEM_SELECTED); } return(0); }; FRadioButtonClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getState()) { return("UnCheck"); } return("Check"); }; FRadioButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 43 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 46 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 49 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 51 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 54 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(disabled_mc, "foregroundDisabled");
Symbol 57 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(dot_mc, "radioDot");
Symbol 58 MovieClip [frb_states] Frame 1
stop();
Symbol 58 MovieClip [frb_states] Frame 2
stop();
Symbol 58 MovieClip [frb_states] Frame 3
stop();
Symbol 58 MovieClip [frb_states] Frame 4
stop();
Symbol 58 MovieClip [frb_states] Frame 5
stop();
Symbol 61 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 62 MovieClip [FScrollBarSymbol] Frame 1
#initclip 110 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var _local2 = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; _local2 = Math.min(_local2, this.maxPos); this.setScrollPosition(Math.max(_local2, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var _local3 = this.enable; if (enabledFlag && (!_local3)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (_local3)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var _local3 = this.smallScroll; if (inc != "one") { _local3 = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var _local2 = this.getScrollPosition() + (mode * _local3); if (_local2 > this.maxPos) { _local2 = this.maxPos; } else if (_local2 < this.minPos) { _local2 = this.minPos; } this.setScrollPosition(_local2); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var _local2 = this.controller; _local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (this._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("length"); this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } this.textField = tF; this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this; this.onTextChanged(); this.onChanged = function () { this.onTextChanged(); }; this.onScroller = function () { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } }; this.textField.addListener(this); this.textField.watch("length", this.callback); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); }; FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return(newVal); }; FScrollBarClass.prototype.onTextChanged = function () { if ((!this.enable) || (this.textField == undefined)) { return(undefined); } clearInterval(this.synchScroll); if (this.horizontal) { var _local2 = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxhscroll)); } else { var _local2 = this.textField.scroll; var _local3 = this.textField.bottomScroll - this.textField.scroll; this.setScrollProperties(_local3, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxscroll)); } }; FScrollBarClass.prototype.executeCallBack = function () { if (this.textField == undefined) { super.executeCallBack(); } else if (this.horizontal) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } }; Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip
Symbol 63 MovieClip [DataProviderSymbol] Frame 1
#initclip 79 _global.DataProviderClass = function () { this.init(); }; DataProviderClass.prototype.init = function () { this.items = new Array(); this.uniqueID = 0; this.views = new Array(); }; DataProviderClass.prototype.addView = function (viewRef) { this.views.push(viewRef); var _local2 = {event:"updateAll"}; viewRef.modelChanged(_local2); }; DataProviderClass.prototype.addItemAt = function (index, value) { if (index < this.getLength()) { this.items.splice(index, 0, "tmp"); } this.items[index] = new Object(); if (typeof(value) == "object") { this.items[index] = value; } else { this.items[index].label = value; } this.items[index].__ID__ = this.uniqueID++; var _local4 = {event:"addRows", firstRow:index, lastRow:index}; this.updateViews(_local4); }; DataProviderClass.prototype.addItem = function (value) { this.addItemAt(this.getLength(), value); }; DataProviderClass.prototype.removeItemAt = function (index) { var _local4 = this.items[index]; this.items.splice(index, 1); var _local3 = {event:"deleteRows", firstRow:index, lastRow:index}; this.updateViews(_local3); return(_local4); }; DataProviderClass.prototype.removeAll = function () { this.items = new Array(); this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1}); }; DataProviderClass.prototype.replaceItemAt = function (index, itemObj) { if ((index < 0) || (index >= this.getLength())) { return(undefined); } var _local3 = this.getItemID(index); if (typeof(itemObj) == "object") { this.items[index] = itemObj; } else { this.items[index].label = itemObj; } this.items[index].__ID__ = _local3; this.updateViews({event:"updateRows", firstRow:index, lastRow:index}); }; DataProviderClass.prototype.getLength = function () { return(this.items.length); }; DataProviderClass.prototype.getItemAt = function (index) { return(this.items[index]); }; DataProviderClass.prototype.getItemID = function (index) { return(this.items[index].__ID__); }; DataProviderClass.prototype.sortItemsBy = function (fieldName, order) { this.items.sortOn(fieldName); if (order == "DESC") { this.items.reverse(); } this.updateViews({event:"sort"}); }; DataProviderClass.prototype.sortByColumn = function (fieldName, order) { var _local3 = new Array(); var _local2 = 0; while (_local2 < this.items.length) { _local3.push({idx:this.items[_local2].data[fieldName], data:this.items[_local2].data, label:this.items[_local2].label}); _local2++; } if (isNaN(idx)) { _local3.sortOn("idx"); } else { _local3.sort(function (a, b) { if (a.idx > b.idx) { return(1); } if (b.idx > a.idx) { return(-1); } return(0); }); } if (order == "DESC") { _local3.reverse(); } this.removeAll(); _local2 = 0; while (_local2 < _local3.length) { this.addItem({label:_local3[_local2].label, data:_local3[_local2].data}); _local2++; } }; DataProviderClass.prototype.updateViews = function (eventObj) { var _local2 = 0; while (_local2 < this.views.length) { this.views[_local2].modelChanged(eventObj); _local2++; } }; #endinitclip
Symbol 64 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 124 function FSelectableItemClass() { this.init(); } FSelectableItemClass.prototype = new FUIComponentClass(); FSelectableItemClass.prototype.init = function () { if (this._name != "itemAsset") { this.highlighted = false; this.layoutContent(100); } }; FSelectableItemClass.prototype.drawItem = function (itmObj, selected) { this.displayContent(itmObj, selected); if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) { this.setHighlighted(selected); } this.oldFocus = this.controller.focused; }; FSelectableItemClass.prototype.setSize = function (width, height) { var _local2 = -16384; this.width = width; this.layoutContent(width); this.attachMovie("FHighlightSymbol", "highlight_mc", _local2); this.highlight_mc._x = 0.5; this.highlight_mc._width = width - 0.5; this.highlight_mc._height = height; this.highlight_mc.controller = this; this.highlight_mc._alpha = 0; this.highlight_mc.trackAsMenu = true; this.highlight_mc.onPress = function () { if (this.controller.enable) { this.controller.controller.clickHandler(this.controller.itemNum); } }; this.highlight_mc.onDragOver = function () { if (this.controller.controller.focused) { this.onPress(); } }; this.highlight_mc.useHandCursor = false; this.highlight_mc.trackAsMenu = true; }; FSelectableItemClass.prototype.setEnabled = function (enabledFlag) { this.enable = enabledFlag; this.fLabel_mc.setEnabled(enabledFlag); this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled")); }; FSelectableItemClass.prototype.layoutContent = function (width) { this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller}); this.fLabel_mc._x = 2; this.fLabel_mc._y = 0; this.fLabel_mc.setSize(width - 2); this.fLabel_mc.labelField.selectable = false; }; FSelectableItemClass.prototype.displayContent = function (itmObj, selected) { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } if (this.fLabel_mc.labelField.text != _local2) { this.fLabel_mc.setLabel(_local2); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } this.fLabel_mc.setColor(_local5); }; FSelectableItemClass.prototype.getItemIndex = function () { return(this.controller.getScrollPosition() + this.itemNum); }; FSelectableItemClass.prototype.getItemModel = function () { return(this.controller.getItemAt(this.getItemIndex())); }; FSelectableItemClass.prototype.getHostDataProvider = function () { return(this.controller.dataProvider); }; FSelectableItemClass.prototype.setHighlighted = function (flag) { fade = this.controller.styleTable.fadeRate.value; if (((fade == undefined) || (fade == 0)) || (!flag)) { this.highlight_mc._alpha = (flag ? 100 : 0); delete this.onEnterFrame; } else { this.fadeN = fade; this.fadeX = 1; this.highLight_mc._alpha = 20; this.onEnterFrame = function () { this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40; if (this.fadeX > this.fadeN) { delete this.onEnterFrame; } }; } this.highlighted = flag; }; #endinitclip
Symbol 65 MovieClip [FSelectableListSymbol] Frame 1
#initclip 108 function FSelectableListClass() { this.init(); } FSelectableListClass.prototype = new FUIComponentClass(); FSelectableListClass.prototype.init = function () { super.init(); this.enable = true; this.selected = new Array(); this.topDisplayed = (this.numDisplayed = 0); this.lastSelected = 0; this.tabChildren = false; if (this._name != undefined) { this.dataProvider = new DataProviderClass(); this.dataProvider.addView(this); } }; FSelectableListClass.prototype.addItemAt = function (index, label, data) { if ((index < 0) || (!this.enable)) { return(undefined); } this.dataProvider.addItemAt(index, {label:label, data:data}); }; FSelectableListClass.prototype.addItem = function (label, data) { if (!this.enable) { return(undefined); } this.dataProvider.addItem({label:label, data:data}); }; FSelectableListClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndex(); var _local2 = this.getItemAt(index); this.dataProvider.removeItemAt(index); return(_local2); }; FSelectableListClass.prototype.removeAll = function () { this.dataProvider.removeAll(); }; FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) { this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); }; FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) { this.lastSelID = this.dataProvider.getItemID(this.lastSelected); this.dataProvider.sortItemsBy(fieldName, order); }; FSelectableListClass.prototype.getLength = function () { return(this.dataProvider.getLength()); }; FSelectableListClass.prototype.getSelectedIndex = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (_local2 != undefined) { return(_local2); } } }; FSelectableListClass.prototype.getSelectedItem = function () { return(this.getItemAt(this.getSelectedIndex())); }; FSelectableListClass.prototype.getItemAt = function (index) { return(this.dataProvider.getItemAt(index)); }; FSelectableListClass.prototype.getEnabled = function () { return(this.enable); }; FSelectableListClass.prototype.getValue = function () { var _local2 = this.getSelectedItem(); return(((_local2.data == undefined) ? (_local2.label) : (_local2.data))); }; FSelectableListClass.prototype.setSelectedIndex = function (index, flag) { if (((index >= 0) && (index < this.getLength())) && (this.enable)) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.invalidate("updateControl"); if (flag != false) { this.executeCallBack(); } } }; FSelectableListClass.prototype.setDataProvider = function (obj) { this.setScrollPosition(0); this.clearSelected(); if (obj instanceof Array) { this.dataProvider = new DataProviderClass(); var _local2 = 0; while (_local2 < obj.length) { var _local4 = ((typeof(obj[_local2]) == "string") ? ({label:obj[_local2]}) : (obj[_local2])); this.dataProvider.addItem(_local4); _local2++; } } else { this.dataProvider = obj; } this.dataProvider.addView(this); }; FSelectableListClass.prototype.setItemSymbol = function (linkID) { this.tmpPos = this.getScrollPosition(); this.itemSymbol = linkID; this.invalidate("setSize"); this.setScrollPosition(this.tmpPos); }; FSelectableListClass.prototype.setEnabled = function (enabledFlag) { this.cleanUI(); super.setEnabled(enabledFlag); this.enable = enabledFlag; this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); var _local4 = Math.min(this.numDisplayed, this.getLength()); var _local3 = 0; while (_local3 < _local4) { this.container_mc[("fListItem" + _local3) + "_mc"].setEnabled(this.enable); _local3++; } if (this.enable) { this.invalidate("updateControl"); } }; FSelectableListClass.prototype.updateControl = function () { var _local2 = 0; while (_local2 < this.numDisplayed) { this.container_mc[("fListItem" + _local2) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + _local2), this.isSelected(this.topDisplayed + _local2)); _local2++; } }; FSelectableListClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100); this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width; this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height; var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + _local3) + "_mc", 10 + _local3, {controller:this, itemNum:_local3}); var _local4 = this.container_mc[("fListItem" + _local3) + "_mc"]; var _local5 = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset)); _local4.setSize(this.width - _local5, this.itmHgt); _local4._y = (this.itmHgt - 2) * _local3; _local3++; } this.updateControl(); }; FSelectableListClass.prototype.modelChanged = function (eventObj) { var _local4 = eventObj.firstRow; var _local6 = eventObj.lastRow; var _local8 = eventObj.event; if (_local8 == "addRows") { for (var _local2 in this.selected) { if ((this.selected[_local2].sIndex != undefined) && (this.selected[_local2].sIndex >= _local4)) { this.selected[_local2].sIndex = this.selected[_local2].sIndex + ((_local6 - _local4) + 1); this.setSelectedIndex(this.selected[_local2].sIndex, false); } } } else if (_local8 == "deleteRows") { if (_local4 == _local6) { var _local5 = _local4; if (this.selectHolder == _local5) { this.selectionDeleted = true; } if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) { this.topDisplayed--; if (this.selectionDeleted && ((_local5 - 1) >= 0)) { this.setSelectedIndex(_local5 - 1, false); } } else if (this.selectionDeleted) { var _local7 = this.getLength(); if (((_local5 == (_local7 - 1)) && (_local7 > 1)) || (_local5 > (_local7 / 2))) { this.setSelectedIndex(_local5 - 1, false); } else { this.setSelectedIndex(_local5, false); } } for (var _local2 in this.selected) { if (this.selected[_local2].sIndex > _local4) { this.selected[_local2].sIndex--; } } } else { this.clearSelected(); this.topDisplayed = 0; } } else if (_local8 == "sort") { var _local7 = this.getLength(); var _local2 = 0; while (_local2 < _local7) { if (this.isSelected(_local2)) { var _local3 = this.dataProvider.getItemID(_local2); if (_local3 == this.lastSelID) { this.lastSelected = _local2; } this.selected[String(_local3)].sIndex = _local2; } _local2++; } } this.invalidate("updateControl"); }; FSelectableListClass.prototype.measureItmHgt = function () { this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this}); this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false); this.itmHgt = this.tmpItem_mc._height; this.tmpItem_mc.removeMovieClip(); }; FSelectableListClass.prototype.selectItem = function (index, selectedFlag) { if (selectedFlag && (!this.isSelected(index))) { this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index}; } else if (!selectedFlag) { delete this.selected[String(this.dataProvider.getItemID(index))]; } }; FSelectableListClass.prototype.isSelected = function (index) { return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined); }; FSelectableListClass.prototype.clearSelected = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (((_local2 != undefined) && (this.topDisplayed <= _local2)) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), false); } } delete this.selected; this.selected = new Array(); }; FSelectableListClass.prototype.selectionHandler = function (itemNum) { var _local2 = this.topDisplayed + itemNum; if (this.getItemAt(_local2 == undefined)) { this.changeFlag = false; return(undefined); } this.changeFlag = true; this.clearSelected(); this.selectItem(_local2, true); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); }; FSelectableListClass.prototype.moveSelBy = function (incr) { var _local3 = this.getSelectedIndex(); var _local2 = _local3 + incr; _local2 = Math.max(0, _local2); _local2 = Math.min(this.getLength() - 1, _local2); if (_local2 == _local3) { return(undefined); } if ((_local3 < this.topDisplayed) || (_local3 >= (this.topDisplayed + this.numDisplayed))) { this.setScrollPosition(_local3); } if ((_local2 >= (this.topDisplayed + this.numDisplayed)) || (_local2 < this.topDisplayed)) { this.setScrollPosition(this.topDisplayed + incr); } this.selectionHandler(_local2 - this.topDisplayed); }; FSelectableListClass.prototype.clickHandler = function (itmNum) { this.focusRect.removeMovieClip(); if (!this.focused) { this.pressFocus(); } this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FSelectableListClass.prototype.releaseHandler = function () { if (this.changeFlag) { this.executeCallBack(); } this.changeFlag = false; this.onMouseUp = undefined; }; FSelectableListClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("enabled"); _local3++; } }; FSelectableListClass.prototype.myOnKillFocus = function () { super.myOnKillFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("unfocused"); _local3++; } }; #endinitclip
Instance of Symbol 63 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 65 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Instance of Symbol 64 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 65 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 66 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 123 function FScrollSelectListClass() { this.init(); } FScrollSelectListClass.prototype = new FSelectableListClass(); FScrollSelectListClass.prototype.getScrollPosition = function () { return(this.topDisplayed); }; FScrollSelectListClass.prototype.setScrollPosition = function (pos) { if (this.enable) { pos = Math.min(pos, this.getLength() - this.numDisplayed); pos = Math.max(pos, 0); this.scrollBar_mc.setScrollPosition(pos); } }; FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) { this.permaScrollBar = !flag; this.setSize(this.width, this.height); }; FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) { super.setEnabled(enabledFlag); this.scrollBar_mc.setEnabled(this.enable); }; FScrollSelectListClass.prototype.setSize = function (w, h) { var _local3 = this.getScrollPosition(); super.setSize(w, h); if (this.scrollBar_mc != undefined) { this.removed = true; } this.scrollBar_mc = undefined; this.initScrollBar(); this.setScrollPosition(_local3); }; FScrollSelectListClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); this.invalidate("initScrollBar"); }; FScrollSelectListClass.prototype.initScrollBar = function () { if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) { if (this.removed) { this.scrollBar_mc.removeMovieClip(); this.scrollBar_mc = undefined; this.scrollOffset = undefined; this.invalidate("setSize"); } } else { if (this.scrollBar_mc == undefined) { this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable}); this.scrollBar_mc = this.container_mc.scrollBar_mc; this.scrollBar_mc.setChangeHandler("scrollHandler", this); this.scrollBar_mc.setSize(this.height); this.scrollBar_mc._x = this.width - this.scrollBar_mc._width; this.scrollBar_mc._y = 0; this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1); this.scrollOffset = this.scrollBar_mc._width; this.invalidate("setSize"); } this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed); } }; FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) { var _local2 = scrollBar.getScrollPosition(); this.topDisplayed = _local2; if (this.lastPosition != _local2) { this.updateControl(); } this.lastPosition = _local2; }; FScrollSelectListClass.prototype.clickHandler = function (itmNum) { super.clickHandler(itmNum); if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.releaseHandler = function () { clearInterval(this.dragScrolling); this.dragScrolling = undefined; super.releaseHandler(); }; FScrollSelectListClass.prototype.dragScroll = function () { clearInterval(this.dragScrolling); if (this.container_mc._ymouse < 0) { this.setScrollPosition(this.getScrollPosition() - 1); this.selectionHandler(0); this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) { this.setScrollPosition(this.getScrollPosition() + 1); this.selectionHandler(this.numDisplayed - 1); this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.myOnKeyDown = function () { if (this.focused) { this.keyCodes = new Array(40, 38, 34, 33, 36, 35); this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength()); var _local2 = 0; while (_local2 < this.keyCodes.length) { if (Key.isDown(this.keyCodes[_local2])) { this.moveSelBy(this.keyIncrs[_local2]); return(undefined); } _local2++; } this.findInputText(); } }; FScrollSelectListClass.prototype.findInputText = function () { var _local2 = Key.getAscii(); if ((_local2 >= 33) && (_local2 <= 126)) { this.findString(String.fromCharCode(_local2)); } }; FScrollSelectListClass.prototype.findString = function (str) { if (this.getLength() == 0) { return(undefined); } var _local4 = this.getSelectedIndex(); var _local6 = 0; var _local2 = _local4 + 1; while (_local2 != _local4) { var _local3 = this.getItemAt(_local2).label.substring(0, str.length); if ((str == _local3) || (str.toUpperCase() == _local3.toUpperCase())) { _local6 = _local2 - _local4; break; } if (_local2 >= (this.getLength() - 1)) { _local2 = -1; } _local2++; } if (_local6 != 0) { this.moveSelBy(_local6); } }; #endinitclip
Instance of Symbol 62 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 66 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = ""; horizontal = false; } onClipEvent (load) { this._width = (this._height = 1); }
Instance of Symbol 65 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 66 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 67 MovieClip [FComboBoxItemSymbol] Frame 1
#initclip 137 function FComboBoxItemClass() { this.init(); } FComboBoxItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FComboBoxItemSymbol", FComboBoxItemClass); FComboBoxItemClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.highlight_mc.onRollOver = function () { this.controller.controller.selectionHandler(this.controller.itemNum); }; }; #endinitclip
Symbol 70 MovieClip [FComboBoxSymbol] Frame 1
#initclip 136 function FComboBoxClass() { _global._popUpLevel = ((_global._popUpLevel == undefined) ? 20000 : (_global._popUpLevel + 1)); this.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); var _local5 = this.superHolder.createEmptyMovieClip("testCont", 20000); var _local6 = _local5.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); if (_local6._name == undefined) { this.superHolder.removeMovieClip(); this.superHolder = this._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); } else { _local5.removeMovieClip(); } if (this.rowCount == undefined) { this.rowCount = 8; this.editable = false; } this.itemSymbol = "FComboBoxItemSymbol"; this.init(); this.permaScrollBar = false; this.proxyBox_mc.gotoAndStop(1); this.width = this._width; this.height = (this.proxyBox_mc._height * this._yscale) / 100; var _local4 = 0; while (_local4 < this.labels.length) { this.addItem(this.labels[_local4], this.data[_local4]); _local4++; } this.lastSelected = 0; this.selectItem(0); this._xscale = (this._yscale = 100); this.opened = false; this.setSize(this.width); this.highlightTop(false); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.onUnload = function () { this.superHolder.removeMovieClip(); }; this.setSelectedIndex(0, false); this.value = ""; this.focusEnabled = true; this.changeFlag = false; } FComboBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FComboBoxSymbol", FComboBoxClass); FComboBoxClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); var _local3 = eventObj.event; if ((_local3 == "addRows") || (_local3 == "deleteRows")) { var _local6 = (eventObj.lastRow - eventObj.firstRow) + 1; var _local7 = ((_local3 == "addRows") ? 1 : -1); var _local4 = this.getLength(); var _local8 = _local4 - (_local7 * _local6); if ((this.rowCount > _local8) || (this.rowCount > _local4)) { this.invalidate("setSize"); } if (this.getSelectedIndex() == undefined) { this.setSelectedIndex(0, false); } } else if (_local3 == "updateAll") { this.invalidate("setSize"); } }; FComboBoxClass.prototype.removeAll = function () { if (!this.enable) { return(undefined); } super.removeAll(); if (this.editable) { this.value = ""; } this.invalidate("setSize"); }; FComboBoxClass.prototype.setSize = function (w) { if ((((w == undefined) || (typeof(w) != "number")) || (w <= 0)) || (!this.enable)) { return(undefined); } this.proxyBox_mc._width = w; this.container_mc.removeMovieClip(); this.measureItmHgt(); this.container_mc = this.superHolder.createEmptyMovieClip("container", 3); this.container_mc.tabChildren = false; this.setPopUpLocation(this.container_mc); this.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); this.boundingBox_mc = this.container_mc.boundingBox_mc; this.boundingBox_mc.component = this; this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc._height = this.itmHgt; this.numDisplayed = Math.min(this.rowCount, this.getLength()); if (this.numDisplayed < 3) { this.numDisplayed = Math.min(3, this.getLength()); } this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); this.attachMovie("DownArrow", "downArrow", 10); this.downArrow._y = 0; this.downArrow._width = this.itmHgt; this.downArrow._height = this.itmHgt; this.downArrow._x = this.proxyBox_mc._width - this.downArrow._width; this.setEditable(this.editable); this.container_mc._visible = this.opened; this.highlightTop(false); this.fader = this.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4); this.registerSkinElement(this.fader.boundingBox, "background"); this.fader._width = this.width; this.fader._height = this.height; this.fader._visible = false; }; FComboBoxClass.prototype.setDataProvider = function (dp) { super.setDataProvider(dp); this.invalidate("setSize"); this.setSelectedIndex(0); }; FComboBoxClass.prototype.getValue = function () { if (this.editable) { return(this.fLabel_mc.getLabel()); } return(super.getValue()); }; FComboBoxClass.prototype.getRowCount = function () { return(this.rowCount); }; FComboBoxClass.prototype.setRowCount = function (count) { this.rowCount = ((this.getLength() > count) ? (Math.max(count, 3)) : (count)); this.setSize(this.width); var _local2 = this.getLength(); if ((_local2 - this.getScrollPosition()) < this.rowCount) { this.setScrollPosition(_local2 - Math.min(this.rowCount, _local2)); this.invalidate("updateControl"); } }; FComboBoxClass.prototype.setEditable = function (editableFlag) { if (!this.enable) { return(undefined); } this.editable = editableFlag; if (!this.editable) { this.onPress = this.pressHandler; this.useHandCursor = false; this.trackAsMenu = true; this.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:this, itemNum:-1}); this.fLabel_mc.onRollOver = undefined; this.fLabel_mc.setSize((this.width - this.itmHgt) + 1, this.itmHgt); this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); this.highlightTop(false); } else { this.attachMovie("FLabelSymbol", "fLabel_mc", 5); this.fLabel_txt = this.fLabel_mc.labelField; this.fLabel_txt.type = "input"; this.fLabel_txt._x = 4; this.fLabel_txt.onSetFocus = this.onLabelFocus; this.fLabel_mc.setSize((this.width - this.itmHgt) - 3); delete this.onPress; this.fLabel_txt.onKillFocus = function () { this._parent._parent.myOnKillFocus(); }; this.fLabel_mc.setLabel(this.value); this.fLabel_txt.onChanged = function () { this._parent._parent.findInputText(); }; this.downArrow.onPress = this.buttonPressHandler; this.downArrow.useHandCursor = false; this.downArrow.trackAsMenu = true; } }; FComboBoxClass.prototype.setEnabled = function (enabledFlag) { enabledFlag = (((enabledFlag == undefined) || (typeof(enabledFlag) != "boolean")) ? true : (enabledFlag)); super.setEnabled(enabledFlag); this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); this.downArrow.gotoAndStop((this.enable ? 1 : 3)); if (this.editable) { this.fLabel_txt.type = (enabledFlag ? "input" : "dynamic"); this.fLabel_txt.selectable = enabledFlag; } else if (enabledFlag) { this.fLabel_mc.drawItem(this.topLabel, false); this.setSelectedIndex(this.getSelectedIndex(), false); } this.fLabel_mc.setEnabled(this.enable); this.fLabel_txt.onSetFocus = (enabledFlag ? (this.onLabelFocus) : undefined); }; FComboBoxClass.prototype.setSelectedIndex = function (index, flag) { super.setSelectedIndex(index, flag); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); } else { this.value = ((flag != undefined) ? "" : (this.getSelectedItem().label)); this.fLabel_mc.setLabel(this.value); } this.invalidate("updateControl"); }; FComboBoxClass.prototype.setValue = function (value) { if (this.editable) { this.fLabel_mc.setLabel(value); this.value = value; } }; FComboBoxClass.prototype.pressHandler = function () { this.focusRect.removeMovieClip(); if (this.enable) { if (!this.opened) { this.onMouseUp = this.releaseHandler; } else { this.onMouseUp = undefined; } this.changeFlag = false; if (!this.focused) { this.pressFocus(); this.clickFilter = (this.editable ? false : true); } if (!this.clickFilter) { this.openOrClose(!this.opened); } else { this.clickFilter = false; } } }; FComboBoxClass.prototype.clickHandler = function (itmNum) { if (!this.focused) { if (this.editable) { this.fLabel_txt.onKillFocus = undefined; } this.pressFocus(); } super.clickHandler(itmNum); this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FComboBoxClass.prototype.highlightTop = function (flag) { if (!this.editable) { this.fLabel_mc.drawItem(this.topLabel, flag); } }; FComboBoxClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); this.fLabel_mc.highlight_mc.gotoAndStop("enabled"); this.highlightTop(true); }; FComboBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this._height + 4); }; FComboBoxClass.prototype.myOnKillFocus = function () { if (Selection.getFocus().indexOf("labelField") != -1) { return(undefined); } super.myOnKillFocus(); delete this.fLabel_txt.onKeyDown; this.openOrClose(false); this.highlightTop(false); }; FComboBoxClass.prototype.setPopUpLocation = function (mcRef) { mcRef._x = this._x; var _local2 = {x:this._x, y:this._y + this.proxyBox_mc._height}; this._parent.localToGlobal(_local2); mcRef._parent.globalToLocal(_local2); mcRef._x = _local2.x; mcRef._y = _local2.y; if ((this.height + mcRef._y) >= Stage.height) { this.upward = true; mcRef._y = (_local2.y - this.height) - this.proxyBox_mc._height; } else { this.upward = false; } }; FComboBoxClass.prototype.openOrClose = function (flag) { if (this.getLength() == 0) { return(undefined); } this.setPopUpLocation(this.container_mc); if ((this.lastSelected != -1) && ((this.lastSelected < this.topDisplayed) || (this.lastSelected > (this.topDisplayed + this.numDisplayed)))) { super.moveSelBy(this.lastSelected - this.getSelectedIndex()); } if (!flag) { (this.downArrow.gotoAndStop(1));// not popped } else { (this.downArrow.gotoAndStop(2));// not popped } if (flag == this.opened) { return(undefined); } this.highlightTop(!flag); this.fadeRate = this.styleTable.popUpFade.value; if (((!flag) || (this.fadeRate == undefined)) || (this.fadeRate == 0)) { this.opened = (this.container_mc._visible = flag); return(undefined); } this.setPopUpLocation(this.fader); this.time = 0; this.const = 85 / Math.sqrt(this.fadeRate); this.fader._alpha = 85; this.container_mc._visible = (this.fader._visible = true); this.onEnterFrame = function () { this.fader._alpha = 100 - ((this.const * Math.sqrt(++this.time)) + 15); if (this.time >= this.fadeRate) { this.fader._visible = false; delete this.onEnterFrame; this.opened = true; } }; }; FComboBoxClass.prototype.fireChange = function () { this.lastSelected = this.getSelectedIndex(); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, true); } else { this.value = this.getSelectedItem().label; this.fLabel_mc.setLabel(this.value); } this.executeCallback(); }; FComboBoxClass.prototype.releaseHandler = function () { var _local3 = this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse); if (this.changeFlag) { if (_local3) { this.fireChange(); } this.openOrClose(!this.opened); } else if (_local3) { this.openOrClose(false); } else { this.onMouseDown = function () { if ((!this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse)) && (!this.hitTest(_root._xmouse, _root._ymouse))) { this.onMouseDown = undefined; this.openOrClose(false); } }; } this.changeFlag = false; this.onMouseUp = undefined; clearInterval(this.dragScrolling); this.dragScrolling = undefined; }; FComboBoxClass.prototype.moveSelBy = function (itemNum) { if (itemNum != 0) { super.moveSelBy(itemNum); if (this.editable) { this.setValue(this.getSelectedItem().label); } if (!this.opened) { if (this.changeFlag && (!this.isSelected(this.lastSelected))) { this.fireChange(); } } } }; FComboBoxClass.prototype.myOnKeyDown = function () { if (!this.focused) { return(undefined); } if (this.editable && (Key.isDown(13))) { this.setValue(this.fLabel_mc.getLabel()); this.executeCallback(); this.openOrClose(false); } else if ((Key.isDown(13) || (Key.isDown(32) && (!this.editable))) && (this.opened)) { if (this.getSelectedIndex() != this.lastSelected) { this.fireChange(); } this.openOrClose(false); this.fLabel_txt.hscroll = 0; } super.myOnKeyDown(); }; FComboBoxClass.prototype.findInputText = function () { if (!this.editable) { super.findInputText(); } }; FComboBoxClass.prototype.onLabelFocus = function () { this._parent._parent.tabFocused = false; this._parent._parent.focused = true; this.onKeyDown = function () { this._parent._parent.myOnKeyDown(); }; Key.addListener(this); }; FComboBoxClass.prototype.buttonPressHandler = function () { this._parent.pressHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 66 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 70 MovieClip [FComboBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 71 MovieClip [FListItemSymbol] Frame 1
#initclip 135 function FListItemClass() { this.init(); } FListItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FListItemSymbol", FListItemClass); FListItemClass.prototype.init = function (columns) { super.init(); }; FListItemClass.prototype.createColumns = function (width) { var _local4 = 2; var _local3 = width / this.controller.columnsNum; var _local2 = 0; while (_local2 < this.controller.columnsNum) { if (this.controller.columnWidths != undefined) { _local3 = int((this.controller.columnWidths[_local2] / 100) * width); } this.attachMovie("FLabelSymbol", "fcolumn_mc" + _local2, 10 + _local2, {hostComponent:this.controller}); this["fcolumn_mc" + _local2]._x = _local4; this["fcolumn_mc" + _local2]._y = 0; this["fcolumn_mc" + _local2].setSize(_local3 - 2); this["fcolumn_mc" + _local2].labelField.selectable = false; _local4 = _local4 + _local3; _local2++; } }; FListItemClass.prototype.layoutContent = function (width) { if (this.controller.columnsNum > 0) { this.createColumns(width); } else { super.layoutContent(width); } }; FListItemClass.prototype.displayFormattedLabel = function (txt_obj, the_text, selected) { var _local2 = null; if (txt_obj.labelField.text != the_text) { _local2 = new ParseText(the_text); txt_obj.setLabel(_local2.realText); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } txt_obj.setColor(_local5); if (_local2 != null) { if (!this.controller.disableFormatting) { i = 0; while (i < _local2.tfArray.length) { var _local3 = _local2.realLen + 1; if (_local2.tfArray[i + 1] != null) { _local3 = _local2.tfArray[i + 1].color_idx; } txt_obj.labelField.SetTextFormat(_local2.tfArray[i].color_idx, _local3, _local2.tfArray[i].tf); i++; } } } }; FListItemClass.prototype.displayContent = function (itmObj, selected) { if (this.controller.columnsNum > 0) { this.displayColumns(itmObj, selected); } else { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } this.displayFormattedLabel(this.fLabel_mc, _local2, selected); } }; FListItemClass.prototype.displayColumns = function (itmObj, selected) { var _local2 = 0; for (c in itmObj.data) { this.displayFormattedLabel(this["fcolumn_mc" + _local2], itmObj.data[c]); _local2++; } }; #endinitclip
Symbol 74 MovieClip [FListBoxSymbol] Frame 1
#initclip 134 function FListBoxClass() { this.itemSymbol = "FListItemSymbol"; this.init(); this.permaScrollBar = true; var _local2 = 0; while (_local2 < this.labels.length) { this.addItem(this.labels[_local2], this.data[_local2]); _local2++; } this.boundingBox_mc.gotoAndStop(1); this.width = this._width; this.height = this._height; this._yscale = (this._xscale = 100); this.setSize(this.width, this.height); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.columnsNum = 0; this.columnWidths = undefined; this.disableFormatting = false; } FListBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FListBoxSymbol", FListBoxClass); FListBoxClass.prototype.getSelectedIndices = function () { var _local2 = new Array(); for (var _local3 in this.selected) { _local2.push(this.selected[_local3].sIndex); } return(((_local2.length > 0) ? (_local2) : undefined)); }; FListBoxClass.prototype.getSelectedItems = function () { var _local3 = this.getSelectedIndices(); var _local4 = new Array(); var _local2 = 0; while (_local2 < _local3.length) { _local4.push(this.getItemAt(_local3[_local2])); _local2++; } return(((_local4.length > 0) ? (_local4) : undefined)); }; FListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; FListBoxClass.prototype.getRowCount = function () { return(this.numDisplayed); }; FListBoxClass.prototype.setSelectedIndices = function (indexArray) { this.clearSelected(); var _local2 = 0; while (_local2 < indexArray.length) { this.selectItem(indexArray[_local2], true); _local2++; } this.updateControl(); }; FListBoxClass.prototype.setSelectMultiple = function (flag) { this.selectMultiple = flag; }; FListBoxClass.prototype.setRowCount = function (count) { var _local2 = (count * (this.itmHgt - 2)) + 2; this.setSize(this.width, _local2); }; FListBoxClass.prototype.setWidth = function (wdt) { this.setSize(wdt, this.height); }; FListBoxClass.prototype.setSize = function (w, h) { if (!this.enable) { return(undefined); } w = Math.max(w, 20); h = Math.max(h, 40); this.container_mc.removeMovieClip(); this.container_mc = this.createEmptyMovieClip("container", 3); this.measureItmHgt(); this.numDisplayed = Math.floor(h / (this.itmHgt - 2)); this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); }; FListBoxClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndices(); return(super.removeItemAt(index)); }; FListBoxClass.prototype.selectionHandler = function (itemNum) { if (this.clickFilter) { var _local3 = this.topDisplayed + itemNum; if (this.getItemAt(_local3) == undefined) { this.changeFlag = false; return(undefined); } this.changeFlag = true; if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { this.clearSelected(); this.selectItem(_local3, true); this.lastSelected = _local3; this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (Key.isDown(16) && (this.selectMultiple)) { if (this.lastSelected == -1) { this.lastSelected = _local3; } var _local4 = ((this.lastSelected < _local3) ? 1 : -1); this.clearSelected(); var _local2 = this.lastSelected; while (_local2 != _local3) { this.selectItem(_local2, true); if ((_local2 >= this.topDisplayed) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); } _local2 = _local2 + _local4; } this.selectItem(_local3, true); this.container_mc[("fListItem" + (_local3 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (key.isDown(17)) { var _local6 = this.isSelected(_local3); if (!this.selectMultiple) { this.clearSelected(); } if (!((!this.selectMultiple) && (_local6))) { this.selectItem(_local3, !_local6); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum)); } this.lastSelected = _local3; } } else { this.clickFilter = true; } }; FListBoxClass.prototype.moveSelBy = function (itemNum) { super.moveSelBy(itemNum); this.releaseHandler(); }; FListBoxClass.prototype.setColumns = function (columns_num) { this.columnsNum = columns_num; }; FListBoxClass.prototype.setColumnsWidth = function (args) { this.columnWidths = args; }; FListBoxClass.prototype.sortByColumn = function (column_name, order) { this.dataProvider.sortByColumn(column_name, order); }; FListBoxClass.prototype.removeBoundingBox = function () { this.boundingBox_mc._visible = false; }; FListBoxClass.prototype.disableTextFormat = function (disable) { this.disableFormatting = disable; }; FListBoxClass.prototype.Refresh = function () { this.dataProvider.updateViews({event:"sort"}); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 66 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 74 MovieClip [FListBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 75 MovieClip [FUIComponentSymbol] Frame 1
#initclip 87 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var _local3 in this.styleFormat_prm) { this.setStyleProperty(_local3, this.styleFormat_prm[_local3]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var _local2 in this.methodTable) { this[_local2](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var _local4 = this.styleTable.focusRectInner.value; var _local5 = this.styleTable.focusRectOuter.value; if (_local4 == undefined) { _local4 = 16777215 /* 0xFFFFFF */; } if (_local5 == undefined) { _local5 = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, _local5); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, _local4); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var _local17 = parseInt(value); if (!isNaN(_local17)) { value = _local17; } var _local16 = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!_local16)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var _local18 = propName.subString(4, propName.length); this.textStyle[_local18] = value; this.invalidate("setSize"); } else { for (var _local15 in this.styleTable[propName].coloredMCs) { var _local4 = new Color(this.styleTable[propName].coloredMCs[_local15]); if (this.styleTable[propName].value == undefined) { var _local5 = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; _local4.setTransform(_local5); } else { _local4.setRGB(value); } } } this.styleTable[propName].useGlobal = _local16; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var _local3 = new Color(skinMCRef); _local3.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var _local3 in arguments[0]) { this[_local3] = arguments[0][_local3]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var _local3 = 0; while (_local3 < arguments.length) { var _local4 = arguments[_local3]; this.listeners[arguments[_local3]] = _local4; for (var _local5 in this) { if (this.isAStyle(_local5)) { _local4.updateStyleProperty(this, _local5.toString()); } } _local3++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var _local4 in this) { if (this.isAStyle(_local4)) { if (component.styleTable[_local4].useGlobal == this.isGlobal) { component.styleTable[_local4].useGlobal = true; var _local3 = (this.isGlobal ? undefined : (globalStyleFormat[_local4])); component.setStyleProperty(_local4, _local3, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var _local6 = 0; for (var _local5 in this.listeners) { var _local3 = this.listeners[_local5]; if (arguments.length > 0) { var _local4 = 0; while (_local4 < arguments.length) { if (this.isAStyle(arguments[_local4])) { _local3.updateStyleProperty(this, arguments[_local4]); } _local4++; } } else { for (var _local4 in this) { if (this.isAStyle(_local4)) { _local3.updateStyleProperty(this, _local4.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 87 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 100 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 101 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 102 MovieClip [UpArrow] Frame 1
stop();
Symbol 102 MovieClip [UpArrow] Frame 2
stop();
Symbol 102 MovieClip [UpArrow] Frame 3
stop();
Symbol 110 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 118 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 123 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(highlight3D_mc, "highlight3D"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");
Symbol 124 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 132 MovieClip Frame 1
var component = _parent._parent;
Symbol 133 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 134 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 135 MovieClip [DownArrow] Frame 1
stop();
Symbol 135 MovieClip [DownArrow] Frame 2
stop();
Symbol 135 MovieClip [DownArrow] Frame 3
stop();
Symbol 138 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller; component.registerSkinElement(highlight_mc, "selection"); stop();
Symbol 138 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled"); stop();
Symbol 138 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused"); stop();
Symbol 141 MovieClip [FLabelSymbol] Frame 1
#initclip 88 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var _local2 = this.hostComponent.styleTable.embedFonts.value; if (_local2 != undefined) { this.labelField.embedFonts = _local2; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var _local2 = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } this.setColor(_local2); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 143 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 143 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 146 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 101 function FCheckBoxClass() { this.init(); } FCheckBoxClass.prototype = new FUIComponentClass(); Object.registerClass("FCheckBoxSymbol", FCheckBoxClass); FCheckBoxClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1); this.attachMovie("fcb_states", "fcb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this.setChangeHandler(this.changeHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.initialValue == undefined) { this.setCheckState(false); } else { this.setCheckState(this.initialValue); } if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_CHECKBUTTON = 44; this.STATE_SYSTEM_CHECKED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FCheckBoxClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var _local8 = this.fLabel_mc._height / 2; var _local7 = this.fcb_states_mc._height / 2; var _local5 = _local7 - _local8; var _local6 = this.fcb_states_mc._width; var _local4 = this.fcb_states_mc; var _local9 = this.fLabel_mc; var _local2 = 0; if (_local4._width > this.width) { _local2 = 0; } else { _local2 = this.width - _local4._width; } this.fLabel_mc.setSize(_local2); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.fcb_states_mc._x = 0; this.fLabel_mc._x = _local6; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.fcb_states_mc._x = this.width - _local6; this.txtFormat("right"); } this.fLabel_mc._y = _local5; this.fcb_hitArea_mc._y = _local5; }; FCheckBoxClass.prototype.txtFormat = function (pos) { var _local3 = this.textStyle; var _local4 = this.styleTable; _local3.align = ((_local4.textAlign.value == undefined) ? ((_local3.align = pos)) : undefined); _local3.leftMargin = ((_local4.textLeftMargin.value == undefined) ? ((_local3.leftMargin = 0)) : undefined); _local3.rightMargin = ((_local4.textRightMargin.value == undefined) ? ((_local3.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FCheckBoxClass.prototype.setHitArea = function (w, h) { var _local3 = this.fcb_hitArea_mc; this.hitArea = _local3; if (this.fcb_states_mc._width > w) { _local3._width = this.fcb_states_mc._width; } else { _local3._width = w; } _local3._visible = false; if (arguments.length > 1) { _local3._height = h; } }; FCheckBoxClass.prototype.setSize = function (w) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.fcb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FCheckBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 1); }; FCheckBoxClass.prototype.onPress = function () { this.pressFocus(); _root.focusRect.removeMovieClip(); var _local3 = this.fcb_states_mc; if (this.getValue()) { _local3.gotoAndStop("checkedPress"); } else { _local3.gotoAndStop("press"); } }; FCheckBoxClass.prototype.onRelease = function () { this.fcb_states_mc.gotoAndStop("up"); this.setValue(!this.checked); }; FCheckBoxClass.prototype.onReleaseOutside = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedEnabled"); } else { _local2.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOut = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedEnabled"); } else { _local2.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOver = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedPress"); } else { _local2.gotoAndStop("press"); } }; FCheckBoxClass.prototype.setValue = function (checkedValue) { if (checkedValue || (checkedValue == undefined)) { this.setCheckState(checkedValue); } else if (checkedValue == false) { this.setCheckState(checkedValue); } this.executeCallBack(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FCheckBoxClass.prototype.setCheckState = function (checkedValue) { var _local2 = this.fcb_states_mc; if (this.enable) { this.flabel_mc.setEnabled(true); if (checkedValue || (checkedValue == undefined)) { _local2.gotoAndStop("checkedEnabled"); this.enabled = true; this.checked = true; } else { _local2.gotoAndStop("up"); this.enabled = true; this.checked = false; } } else { this.flabel_mc.setEnabled(false); if (checkedValue || (checkedValue == undefined)) { _local2.gotoAndStop("checkedDisabled"); this.enabled = false; this.checked = true; } else { _local2.gotoAndStop("uncheckedDisabled"); this.enabled = false; this.checked = false; this.focusRect.removeMovieClip(); } } }; FCheckBoxClass.prototype.getValue = function () { return(this.checked); }; FCheckBoxClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setCheckState(this.checked); }; FCheckBoxClass.prototype.getEnabled = function () { return(this.enable); }; FCheckBoxClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FCheckBoxClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FCheckBoxClass.prototype.setTextColor = function (color) { this.fLabel_mc.labelField.textColor = color; }; FCheckBoxClass.prototype.myOnKeyDown = function () { if (((Key.getCode() == 32) && (this.pressOnce == undefined)) && (this.enabled == true)) { this.setValue(!this.getValue()); this.pressOnce = true; } }; FCheckBoxClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.pressOnce = undefined; } }; FCheckBoxClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_CHECKBUTTON); }; FCheckBoxClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FCheckBoxClass.prototype.get_accState = function (childId) { if (this.master.getValue()) { return(this.master.STATE_SYSTEM_CHECKED); } return(0); }; FCheckBoxClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getValue()) { return("UnCheck"); } return("Check"); }; FCheckBoxClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 152 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 154 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 156 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 159 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 161 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 163 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "check");
Symbol 164 MovieClip [fcb_states] Frame 1
stop();
Symbol 164 MovieClip [fcb_states] Frame 2
stop();
Symbol 164 MovieClip [fcb_states] Frame 3
stop();
Symbol 164 MovieClip [fcb_states] Frame 4
stop();
Symbol 164 MovieClip [fcb_states] Frame 5
stop();
Symbol 164 MovieClip [fcb_states] Frame 6
stop();
Symbol 167 MovieClip [FRadioButtonSymbol] Frame 1
#initclip 100 function FRadioButtonClass() { this.init(); } function FRadioButtonGroupClass() { this.radioInstances = new Array(); } FRadioButtonClass.prototype = new FUIComponentClass(); FRadioButtonGroupClass.prototype = new FUIComponentClass(); Object.registerClass("FRadioButtonSymbol", FRadioButtonClass); FRadioButtonClass.prototype.init = function () { if (this.initialState == undefined) { this.selected = false; } else { this.selected = this.initialState; } super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.boundingBox_mc._width = 0; this.boundingBox_mc._height = 0; this.attachMovie("frb_hitArea", "frb_hitArea_mc", 1); this.attachMovie("frb_states", "frb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); this.setChangeHandler(this.changeHandler); if (this.label != undefined) { this.setLabel(this.label); } if (this.initialState == undefined) { this.setValue(false); } else { this.setValue(this.initialState); } if (this.data == "") { this.data = undefined; } else { this.setData(this.data); } this.addToRadioGroup(); this.ROLE_SYSTEM_RADIOBUTTON = 45; this.STATE_SYSTEM_SELECTED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FRadioButtonClass.prototype.setHitArea = function (w, h) { var _local3 = this.frb_hitArea_mc; this.hitArea = _local3; if (this.frb_states_mc._width > w) { _local3._width = this.frb_states_mc._width; } else { _local3._width = w; } _local3._visible = false; if (arguments.length > 1) { _local3._height = h; } }; FRadioButtonClass.prototype.txtFormat = function (pos) { var _local3 = this.textStyle; var _local4 = this.styleTable; _local3.align = ((_local4.textAlign.value == undefined) ? ((_local3.align = pos)) : undefined); _local3.leftMargin = ((_local4.textLeftMargin.value == undefined) ? ((_local3.leftMargin = 0)) : undefined); _local3.rightMargin = ((_local4.textRightMargin.value == undefined) ? ((_local3.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.setEnabled(this.enable); }; FRadioButtonClass.prototype.setSize = function (w, h) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.frb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FRadioButtonClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var _local8 = this.fLabel_mc._height / 2; var _local7 = this.frb_states_mc._height / 2; var _local5 = _local7 - _local8; var _local6 = this.frb_states_mc._width; var _local2 = this.frb_states_mc; var _local9 = this.fLabel_mc; var _local3 = this.width - _local2._width; if (_local2._width > this.width) { _local3 = 0; } else { _local3 = this.width - _local2._width; } this.fLabel_mc.setSize(_local3); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.frb_states_mc._x = 0; this.fLabel_mc._x = _local6; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.frb_states_mc._x = this.width - _local6; this.txtFormat("right"); } this.fLabel_mc._y = _local5; this.frb_hitArea_mc._y = _local5; this.setLabel(this.getLabel()); }; FRadioButtonClass.prototype.setData = function (dataValue) { this.data = dataValue; }; FRadioButtonClass.prototype.getData = function () { return(this.data); }; FRadioButtonClass.prototype.getState = function () { return(this.selected); }; FRadioButtonClass.prototype.getSize = function () { return(this.width); }; FRadioButtonClass.prototype.getGroupName = function () { return(this.groupName); }; FRadioButtonClass.prototype.setGroupName = function (groupName) { var _local2 = 0; while (_local2 < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[_local2] == this) { delete this._parent[this.groupName].radioInstances[_local2]; } _local2++; } this.groupName = groupName; this.addToRadioGroup(); }; FRadioButtonClass.prototype.addToRadioGroup = function () { if (this._parent[this.groupName] == undefined) { this._parent[this.groupName] = new FRadioButtonGroupClass(); } this._parent[this.groupName].addRadioInstance(this); }; FRadioButtonClass.prototype.setValue = function (selected) { if (selected || (selected == undefined)) { this.setState(true); this.focusRect.removeMovieClip(); this.executeCallBack(); } else if (selected == false) { this.setState(false); } }; FRadioButtonClass.prototype.setTabState = function (selected) { Selection.setFocus(this); this.setState(selected); this.drawFocusRect(); this.executeCallBack(); }; FRadioButtonClass.prototype.setState = function (selected) { if (selected || (selected == undefined)) { this.tabEnabled = true; for (var _local3 in this._parent) { if ((this != this._parent[_local3]) && (this._parent[_local3].groupName == this.groupName)) { this._parent[_local3].setState(false); this._parent[_local3].tabEnabled = false; } } } if (this.enable) { this.flabel_mc.setEnabled(true); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedEnabled"); this.enabled = false; this.selected = true; this.tabEnabled = true; this.tabFocused = true; } else { this.frb_states_mc.gotoAndStop("unselectedEnabled"); this.enabled = true; this.selected = false; this.tabEnabled = false; var _local4 = this._parent[this.groupName].getEnabled(); var _local5 = this._parent[this.groupName].getValue() == undefined; if (_local4 && (_local5)) { this._parent[this.groupName].radioInstances[0].tabEnabled = true; } } } else { this.flabel_mc.setEnabled(false); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedDisabled"); this.enabled = false; this.selected = true; this.tabEnabled = false; } else { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.enabled = false; this.selected = false; this.tabEnabled = false; } } if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FRadioButtonClass.prototype.getValue = function () { if (this.selected) { if ((this.data == "") || (this.data == undefined)) { return(this.getLabel()); } return(this.data); } }; FRadioButtonClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setState(this.selected); var _local5 = this._parent[this.groupName].getEnabled() == undefined; var _local4 = this._parent[this.groupName].radioInstances[0].getEnabled() == false; if (_local5 && (_local4)) { var _local3 = 0; while (_local3 < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[_local3].getEnabled() == true) { this._parent[this.groupName].radioInstances[_local3].tabEnabled = true; return(undefined); } _local3++; } } }; FRadioButtonClass.prototype.getEnabled = function () { return(this.enable); }; FRadioButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FRadioButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.getLabel()); }; FRadioButtonClass.prototype.onPress = function () { this.pressFocus(); this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.onRelease = function () { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.setValue(!this.selected); }; FRadioButtonClass.prototype.onReleaseOutside = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOut = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOver = function () { this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this._parent[this.groupName]); }; FRadioButtonGroupClass.prototype.addRadioInstance = function (instance) { this.radioInstances.push(instance); this.radioInstances[0].tabEnabled = true; }; FRadioButtonGroupClass.prototype.setEnabled = function (enableFlag) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setEnabled(enableFlag); _local2++; } }; FRadioButtonGroupClass.prototype.getEnabled = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].getEnabled() != this.radioInstances[0].getEnabled()) { return(undefined); } _local2++; } return(this.radioInstances[0].getEnabled()); }; FRadioButtonGroupClass.prototype.setChangeHandler = function (changeHandler, obj) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setChangeHandler(changeHandler, obj); _local2++; } }; FRadioButtonGroupClass.prototype.getValue = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected == true) { if ((this.radioInstances[_local2].data == "") || (this.radioInstances[_local2].data == undefined)) { return(this.radioInstances[_local2].getLabel()); } return(this.radioInstances[_local2].data); } _local2++; } }; FRadioButtonGroupClass.prototype.getData = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected) { return(this.radioInstances[_local2].getData()); } _local2++; } }; FRadioButtonGroupClass.prototype.getInstance = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected == true) { return(_local2); } _local2++; } }; FRadioButtonGroupClass.prototype.setValue = function (dataValue) { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].data == dataValue) { this.radioInstances[_local2].setValue(true); return(undefined); } _local2++; } _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].getLabel() == dataValue) { this.radioInstances[_local2].setValue(true); } _local2++; } }; FRadioButtonGroupClass.prototype.setSize = function (w) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setSize(w); _local2++; } }; FRadioButtonGroupClass.prototype.getSize = function () { var _local3 = 0; var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].width >= _local3) { _local3 = this.radioInstances[_local2].width; } _local2++; } return(_local3); }; FRadioButtonGroupClass.prototype.setGroupName = function (groupName) { this.oldGroupName = this.radioInstances[0].groupName; var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].groupName = groupName; this.radioInstances[_local2].addToRadioGroup(); _local2++; } delete this._parent[this.oldGroupName]; }; FRadioButtonGroupClass.prototype.getGroupName = function () { return(this.radioInstances[0].groupName); }; FRadioButtonGroupClass.prototype.setLabelPlacement = function (pos) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setLabelPlacement(pos); _local2++; } }; FRadioButtonGroupClass.prototype.setStyleProperty = function (propName, value, isGlobal) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setStyleProperty(propName, value, isGlobal); _local2++; } }; FRadioButtonGroupClass.prototype.addListener = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].addListener(); _local2++; } }; FRadioButtonGroupClass.prototype.applyChanges = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].applyChanges(); _local2++; } }; FRadioButtonGroupClass.prototype.removeListener = function (component) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].removeListener(component); _local2++; } }; FRadioButtonClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 3); }; FRadioButtonClass.prototype.myOnKillFocus = function () { Key.removeListener(this.keyListener); this.focused = false; this.focusRect.removeMovieClip(); this._parent[this.groupName].foobar = 0; }; FRadioButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this._parent[this.groupName].getValue() == undefined)) { if (this._parent[this.groupName].radioInstances[0] == this) { this.setTabState(true); } } if ((Key.getCode() == 40) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var _local2 = this.foobar; while (_local2 < this._parent[this.groupName].radioInstances.length) { var _local3 = _local2 + 1; if (this._parent[this.groupName].radioInstances[_local3].getEnabled()) { this._parent[this.groupName].radioInstances[_local3].setTabState(true); return(undefined); } _local2++; } } if ((Key.getCode() == 38) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var _local2 = this.foobar; while (_local2 >= 0) { var _local3 = _local2 - 1; if (this._parent[this.groupName].radioInstances[_local3].getEnabled()) { this._parent[this.groupName].radioInstances[_local3].setTabState(true); return(undefined); } _local2--; } } }; FRadioButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_RADIOBUTTON); }; FRadioButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FRadioButtonClass.prototype.get_accState = function (childId) { if (this.master.getState()) { return(this.master.STATE_SYSTEM_SELECTED); } return(0); }; FRadioButtonClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getState()) { return("UnCheck"); } return("Check"); }; FRadioButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 173 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 175 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 177 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 179 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 181 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(disabled_mc, "foregroundDisabled");
Symbol 183 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(dot_mc, "radioDot");
Symbol 184 MovieClip [frb_states] Frame 1
stop();
Symbol 184 MovieClip [frb_states] Frame 2
stop();
Symbol 184 MovieClip [frb_states] Frame 3
stop();
Symbol 184 MovieClip [frb_states] Frame 4
stop();
Symbol 184 MovieClip [frb_states] Frame 5
stop();
Symbol 187 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 188 MovieClip [FScrollBarSymbol] Frame 1
#initclip 99 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var _local2 = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; _local2 = Math.min(_local2, this.maxPos); this.setScrollPosition(Math.max(_local2, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var _local3 = this.enable; if (enabledFlag && (!_local3)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (_local3)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var _local3 = this.smallScroll; if (inc != "one") { _local3 = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var _local2 = this.getScrollPosition() + (mode * _local3); if (_local2 > this.maxPos) { _local2 = this.maxPos; } else if (_local2 < this.minPos) { _local2 = this.minPos; } this.setScrollPosition(_local2); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var _local2 = this.controller; _local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (this._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("length"); this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } this.textField = tF; this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this; this.onTextChanged(); this.onChanged = function () { this.onTextChanged(); }; this.onScroller = function () { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } }; this.textField.addListener(this); this.textField.watch("length", this.callback); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); }; FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return(newVal); }; FScrollBarClass.prototype.onTextChanged = function () { if ((!this.enable) || (this.textField == undefined)) { return(undefined); } clearInterval(this.synchScroll); if (this.horizontal) { var _local2 = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxhscroll)); } else { var _local2 = this.textField.scroll; var _local3 = this.textField.bottomScroll - this.textField.scroll; this.setScrollProperties(_local3, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxscroll)); } }; FScrollBarClass.prototype.executeCallBack = function () { if (this.textField == undefined) { super.executeCallBack(); } else if (this.horizontal) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } }; Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip
Symbol 189 MovieClip [DataProviderSymbol] Frame 1
#initclip 92 _global.DataProviderClass = function () { this.init(); }; DataProviderClass.prototype.init = function () { this.items = new Array(); this.uniqueID = 0; this.views = new Array(); }; DataProviderClass.prototype.addView = function (viewRef) { this.views.push(viewRef); var _local2 = {event:"updateAll"}; viewRef.modelChanged(_local2); }; DataProviderClass.prototype.addItemAt = function (index, value) { if (index < this.getLength()) { this.items.splice(index, 0, "tmp"); } this.items[index] = new Object(); if (typeof(value) == "object") { this.items[index] = value; } else { this.items[index].label = value; } this.items[index].__ID__ = this.uniqueID++; var _local4 = {event:"addRows", firstRow:index, lastRow:index}; this.updateViews(_local4); }; DataProviderClass.prototype.addItem = function (value) { this.addItemAt(this.getLength(), value); }; DataProviderClass.prototype.removeItemAt = function (index) { var _local4 = this.items[index]; this.items.splice(index, 1); var _local3 = {event:"deleteRows", firstRow:index, lastRow:index}; this.updateViews(_local3); return(_local4); }; DataProviderClass.prototype.removeAll = function () { this.items = new Array(); this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1}); }; DataProviderClass.prototype.replaceItemAt = function (index, itemObj) { if ((index < 0) || (index >= this.getLength())) { return(undefined); } var _local3 = this.getItemID(index); if (typeof(itemObj) == "object") { this.items[index] = itemObj; } else { this.items[index].label = itemObj; } this.items[index].__ID__ = _local3; this.updateViews({event:"updateRows", firstRow:index, lastRow:index}); }; DataProviderClass.prototype.getLength = function () { return(this.items.length); }; DataProviderClass.prototype.getItemAt = function (index) { return(this.items[index]); }; DataProviderClass.prototype.getItemID = function (index) { return(this.items[index].__ID__); }; DataProviderClass.prototype.sortItemsBy = function (fieldName, order) { this.items.sortOn(fieldName); if (order == "DESC") { this.items.reverse(); } this.updateViews({event:"sort"}); }; DataProviderClass.prototype.sortByColumn = function (fieldName, order) { var _local3 = new Array(); var _local2 = 0; while (_local2 < this.items.length) { _local3.push({idx:this.items[_local2].data[fieldName], data:this.items[_local2].data, label:this.items[_local2].label}); _local2++; } if (isNaN(idx)) { _local3.sortOn("idx"); } else { _local3.sort(function (a, b) { if (a.idx > b.idx) { return(1); } if (b.idx > a.idx) { return(-1); } return(0); }); } if (order == "DESC") { _local3.reverse(); } this.removeAll(); _local2 = 0; while (_local2 < _local3.length) { this.addItem({label:_local3[_local2].label, data:_local3[_local2].data}); _local2++; } }; DataProviderClass.prototype.updateViews = function (eventObj) { var _local2 = 0; while (_local2 < this.views.length) { this.views[_local2].modelChanged(eventObj); _local2++; } }; #endinitclip
Symbol 190 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 114 function FSelectableItemClass() { this.init(); } FSelectableItemClass.prototype = new FUIComponentClass(); FSelectableItemClass.prototype.init = function () { if (this._name != "itemAsset") { this.highlighted = false; this.layoutContent(100); } }; FSelectableItemClass.prototype.drawItem = function (itmObj, selected) { this.displayContent(itmObj, selected); if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) { this.setHighlighted(selected); } this.oldFocus = this.controller.focused; }; FSelectableItemClass.prototype.setSize = function (width, height) { var _local2 = -16384; this.width = width; this.layoutContent(width); this.attachMovie("FHighlightSymbol", "highlight_mc", _local2); this.highlight_mc._x = 0.5; this.highlight_mc._width = width - 0.5; this.highlight_mc._height = height; this.highlight_mc.controller = this; this.highlight_mc._alpha = 0; this.highlight_mc.trackAsMenu = true; this.highlight_mc.onPress = function () { if (this.controller.enable) { this.controller.controller.clickHandler(this.controller.itemNum); } }; this.highlight_mc.onDragOver = function () { if (this.controller.controller.focused) { this.onPress(); } }; this.highlight_mc.useHandCursor = false; this.highlight_mc.trackAsMenu = true; }; FSelectableItemClass.prototype.setEnabled = function (enabledFlag) { this.enable = enabledFlag; this.fLabel_mc.setEnabled(enabledFlag); this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled")); }; FSelectableItemClass.prototype.layoutContent = function (width) { this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller}); this.fLabel_mc._x = 2; this.fLabel_mc._y = 0; this.fLabel_mc.setSize(width - 2); this.fLabel_mc.labelField.selectable = false; }; FSelectableItemClass.prototype.displayContent = function (itmObj, selected) { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } if (this.fLabel_mc.labelField.text != _local2) { this.fLabel_mc.setLabel(_local2); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } this.fLabel_mc.setColor(_local5); }; FSelectableItemClass.prototype.getItemIndex = function () { return(this.controller.getScrollPosition() + this.itemNum); }; FSelectableItemClass.prototype.getItemModel = function () { return(this.controller.getItemAt(this.getItemIndex())); }; FSelectableItemClass.prototype.getHostDataProvider = function () { return(this.controller.dataProvider); }; FSelectableItemClass.prototype.setHighlighted = function (flag) { fade = this.controller.styleTable.fadeRate.value; if (((fade == undefined) || (fade == 0)) || (!flag)) { this.highlight_mc._alpha = (flag ? 100 : 0); delete this.onEnterFrame; } else { this.fadeN = fade; this.fadeX = 1; this.highLight_mc._alpha = 20; this.onEnterFrame = function () { this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40; if (this.fadeX > this.fadeN) { delete this.onEnterFrame; } }; } this.highlighted = flag; }; #endinitclip
Symbol 191 MovieClip [FSelectableListSymbol] Frame 1
#initclip 97 function FSelectableListClass() { this.init(); } FSelectableListClass.prototype = new FUIComponentClass(); FSelectableListClass.prototype.init = function () { super.init(); this.enable = true; this.selected = new Array(); this.topDisplayed = (this.numDisplayed = 0); this.lastSelected = 0; this.tabChildren = false; if (this._name != undefined) { this.dataProvider = new DataProviderClass(); this.dataProvider.addView(this); } }; FSelectableListClass.prototype.addItemAt = function (index, label, data) { if ((index < 0) || (!this.enable)) { return(undefined); } this.dataProvider.addItemAt(index, {label:label, data:data}); }; FSelectableListClass.prototype.addItem = function (label, data) { if (!this.enable) { return(undefined); } this.dataProvider.addItem({label:label, data:data}); }; FSelectableListClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndex(); var _local2 = this.getItemAt(index); this.dataProvider.removeItemAt(index); return(_local2); }; FSelectableListClass.prototype.removeAll = function () { this.dataProvider.removeAll(); }; FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) { this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); }; FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) { this.lastSelID = this.dataProvider.getItemID(this.lastSelected); this.dataProvider.sortItemsBy(fieldName, order); }; FSelectableListClass.prototype.getLength = function () { return(this.dataProvider.getLength()); }; FSelectableListClass.prototype.getSelectedIndex = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (_local2 != undefined) { return(_local2); } } }; FSelectableListClass.prototype.getSelectedItem = function () { return(this.getItemAt(this.getSelectedIndex())); }; FSelectableListClass.prototype.getItemAt = function (index) { return(this.dataProvider.getItemAt(index)); }; FSelectableListClass.prototype.getEnabled = function () { return(this.enable); }; FSelectableListClass.prototype.getValue = function () { var _local2 = this.getSelectedItem(); return(((_local2.data == undefined) ? (_local2.label) : (_local2.data))); }; FSelectableListClass.prototype.setSelectedIndex = function (index, flag) { if (((index >= 0) && (index < this.getLength())) && (this.enable)) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.invalidate("updateControl"); if (flag != false) { this.executeCallBack(); } } }; FSelectableListClass.prototype.setDataProvider = function (obj) { this.setScrollPosition(0); this.clearSelected(); if (obj instanceof Array) { this.dataProvider = new DataProviderClass(); var _local2 = 0; while (_local2 < obj.length) { var _local4 = ((typeof(obj[_local2]) == "string") ? ({label:obj[_local2]}) : (obj[_local2])); this.dataProvider.addItem(_local4); _local2++; } } else { this.dataProvider = obj; } this.dataProvider.addView(this); }; FSelectableListClass.prototype.setItemSymbol = function (linkID) { this.tmpPos = this.getScrollPosition(); this.itemSymbol = linkID; this.invalidate("setSize"); this.setScrollPosition(this.tmpPos); }; FSelectableListClass.prototype.setEnabled = function (enabledFlag) { this.cleanUI(); super.setEnabled(enabledFlag); this.enable = enabledFlag; this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); var _local4 = Math.min(this.numDisplayed, this.getLength()); var _local3 = 0; while (_local3 < _local4) { this.container_mc[("fListItem" + _local3) + "_mc"].setEnabled(this.enable); _local3++; } if (this.enable) { this.invalidate("updateControl"); } }; FSelectableListClass.prototype.updateControl = function () { var _local2 = 0; while (_local2 < this.numDisplayed) { this.container_mc[("fListItem" + _local2) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + _local2), this.isSelected(this.topDisplayed + _local2)); _local2++; } }; FSelectableListClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100); this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width; this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height; var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + _local3) + "_mc", 10 + _local3, {controller:this, itemNum:_local3}); var _local4 = this.container_mc[("fListItem" + _local3) + "_mc"]; var _local5 = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset)); _local4.setSize(this.width - _local5, this.itmHgt); _local4._y = (this.itmHgt - 2) * _local3; _local3++; } this.updateControl(); }; FSelectableListClass.prototype.modelChanged = function (eventObj) { var _local4 = eventObj.firstRow; var _local6 = eventObj.lastRow; var _local8 = eventObj.event; if (_local8 == "addRows") { for (var _local2 in this.selected) { if ((this.selected[_local2].sIndex != undefined) && (this.selected[_local2].sIndex >= _local4)) { this.selected[_local2].sIndex = this.selected[_local2].sIndex + ((_local6 - _local4) + 1); this.setSelectedIndex(this.selected[_local2].sIndex, false); } } } else if (_local8 == "deleteRows") { if (_local4 == _local6) { var _local5 = _local4; if (this.selectHolder == _local5) { this.selectionDeleted = true; } if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) { this.topDisplayed--; if (this.selectionDeleted && ((_local5 - 1) >= 0)) { this.setSelectedIndex(_local5 - 1, false); } } else if (this.selectionDeleted) { var _local7 = this.getLength(); if (((_local5 == (_local7 - 1)) && (_local7 > 1)) || (_local5 > (_local7 / 2))) { this.setSelectedIndex(_local5 - 1, false); } else { this.setSelectedIndex(_local5, false); } } for (var _local2 in this.selected) { if (this.selected[_local2].sIndex > _local4) { this.selected[_local2].sIndex--; } } } else { this.clearSelected(); this.topDisplayed = 0; } } else if (_local8 == "sort") { var _local7 = this.getLength(); var _local2 = 0; while (_local2 < _local7) { if (this.isSelected(_local2)) { var _local3 = this.dataProvider.getItemID(_local2); if (_local3 == this.lastSelID) { this.lastSelected = _local2; } this.selected[String(_local3)].sIndex = _local2; } _local2++; } } this.invalidate("updateControl"); }; FSelectableListClass.prototype.measureItmHgt = function () { this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this}); this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false); this.itmHgt = this.tmpItem_mc._height; this.tmpItem_mc.removeMovieClip(); }; FSelectableListClass.prototype.selectItem = function (index, selectedFlag) { if (selectedFlag && (!this.isSelected(index))) { this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index}; } else if (!selectedFlag) { delete this.selected[String(this.dataProvider.getItemID(index))]; } }; FSelectableListClass.prototype.isSelected = function (index) { return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined); }; FSelectableListClass.prototype.clearSelected = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (((_local2 != undefined) && (this.topDisplayed <= _local2)) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), false); } } delete this.selected; this.selected = new Array(); }; FSelectableListClass.prototype.selectionHandler = function (itemNum) { var _local2 = this.topDisplayed + itemNum; if (this.getItemAt(_local2 == undefined)) { this.changeFlag = false; return(undefined); } this.changeFlag = true; this.clearSelected(); this.selectItem(_local2, true); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); }; FSelectableListClass.prototype.moveSelBy = function (incr) { var _local3 = this.getSelectedIndex(); var _local2 = _local3 + incr; _local2 = Math.max(0, _local2); _local2 = Math.min(this.getLength() - 1, _local2); if (_local2 == _local3) { return(undefined); } if ((_local3 < this.topDisplayed) || (_local3 >= (this.topDisplayed + this.numDisplayed))) { this.setScrollPosition(_local3); } if ((_local2 >= (this.topDisplayed + this.numDisplayed)) || (_local2 < this.topDisplayed)) { this.setScrollPosition(this.topDisplayed + incr); } this.selectionHandler(_local2 - this.topDisplayed); }; FSelectableListClass.prototype.clickHandler = function (itmNum) { this.focusRect.removeMovieClip(); if (!this.focused) { this.pressFocus(); } this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FSelectableListClass.prototype.releaseHandler = function () { if (this.changeFlag) { this.executeCallBack(); } this.changeFlag = false; this.onMouseUp = undefined; }; FSelectableListClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("enabled"); _local3++; } }; FSelectableListClass.prototype.myOnKillFocus = function () { super.myOnKillFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("unfocused"); _local3++; } }; #endinitclip
Instance of Symbol 189 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 191 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Instance of Symbol 190 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 191 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 192 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 116 function FScrollSelectListClass() { this.init(); } FScrollSelectListClass.prototype = new FSelectableListClass(); FScrollSelectListClass.prototype.getScrollPosition = function () { return(this.topDisplayed); }; FScrollSelectListClass.prototype.setScrollPosition = function (pos) { if (this.enable) { pos = Math.min(pos, this.getLength() - this.numDisplayed); pos = Math.max(pos, 0); this.scrollBar_mc.setScrollPosition(pos); } }; FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) { this.permaScrollBar = !flag; this.setSize(this.width, this.height); }; FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) { super.setEnabled(enabledFlag); this.scrollBar_mc.setEnabled(this.enable); }; FScrollSelectListClass.prototype.setSize = function (w, h) { var _local3 = this.getScrollPosition(); super.setSize(w, h); if (this.scrollBar_mc != undefined) { this.removed = true; } this.scrollBar_mc = undefined; this.initScrollBar(); this.setScrollPosition(_local3); }; FScrollSelectListClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); this.invalidate("initScrollBar"); }; FScrollSelectListClass.prototype.initScrollBar = function () { if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) { if (this.removed) { this.scrollBar_mc.removeMovieClip(); this.scrollBar_mc = undefined; this.scrollOffset = undefined; this.invalidate("setSize"); } } else { if (this.scrollBar_mc == undefined) { this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable}); this.scrollBar_mc = this.container_mc.scrollBar_mc; this.scrollBar_mc.setChangeHandler("scrollHandler", this); this.scrollBar_mc.setSize(this.height); this.scrollBar_mc._x = this.width - this.scrollBar_mc._width; this.scrollBar_mc._y = 0; this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1); this.scrollOffset = this.scrollBar_mc._width; this.invalidate("setSize"); } this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed); } }; FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) { var _local2 = scrollBar.getScrollPosition(); this.topDisplayed = _local2; if (this.lastPosition != _local2) { this.updateControl(); } this.lastPosition = _local2; }; FScrollSelectListClass.prototype.clickHandler = function (itmNum) { super.clickHandler(itmNum); if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.releaseHandler = function () { clearInterval(this.dragScrolling); this.dragScrolling = undefined; super.releaseHandler(); }; FScrollSelectListClass.prototype.dragScroll = function () { clearInterval(this.dragScrolling); if (this.container_mc._ymouse < 0) { this.setScrollPosition(this.getScrollPosition() - 1); this.selectionHandler(0); this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) { this.setScrollPosition(this.getScrollPosition() + 1); this.selectionHandler(this.numDisplayed - 1); this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.myOnKeyDown = function () { if (this.focused) { this.keyCodes = new Array(40, 38, 34, 33, 36, 35); this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength()); var _local2 = 0; while (_local2 < this.keyCodes.length) { if (Key.isDown(this.keyCodes[_local2])) { this.moveSelBy(this.keyIncrs[_local2]); return(undefined); } _local2++; } this.findInputText(); } }; FScrollSelectListClass.prototype.findInputText = function () { var _local2 = Key.getAscii(); if ((_local2 >= 33) && (_local2 <= 126)) { this.findString(String.fromCharCode(_local2)); } }; FScrollSelectListClass.prototype.findString = function (str) { if (this.getLength() == 0) { return(undefined); } var _local4 = this.getSelectedIndex(); var _local6 = 0; var _local2 = _local4 + 1; while (_local2 != _local4) { var _local3 = this.getItemAt(_local2).label.substring(0, str.length); if ((str == _local3) || (str.toUpperCase() == _local3.toUpperCase())) { _local6 = _local2 - _local4; break; } if (_local2 >= (this.getLength() - 1)) { _local2 = -1; } _local2++; } if (_local6 != 0) { this.moveSelBy(_local6); } }; #endinitclip
Instance of Symbol 188 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 192 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = ""; horizontal = false; } onClipEvent (load) { this._width = (this._height = 1); }
Instance of Symbol 191 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 192 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 193 MovieClip [FComboBoxItemSymbol] Frame 1
#initclip 128 function FComboBoxItemClass() { this.init(); } FComboBoxItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FComboBoxItemSymbol", FComboBoxItemClass); FComboBoxItemClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.highlight_mc.onRollOver = function () { this.controller.controller.selectionHandler(this.controller.itemNum); }; }; #endinitclip
Symbol 195 MovieClip [FComboBoxSymbol] Frame 1
#initclip 127 function FComboBoxClass() { _global._popUpLevel = ((_global._popUpLevel == undefined) ? 20000 : (_global._popUpLevel + 1)); this.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); var _local5 = this.superHolder.createEmptyMovieClip("testCont", 20000); var _local6 = _local5.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); if (_local6._name == undefined) { this.superHolder.removeMovieClip(); this.superHolder = this._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); } else { _local5.removeMovieClip(); } if (this.rowCount == undefined) { this.rowCount = 8; this.editable = false; } this.itemSymbol = "FComboBoxItemSymbol"; this.init(); this.permaScrollBar = false; this.proxyBox_mc.gotoAndStop(1); this.width = this._width; this.height = (this.proxyBox_mc._height * this._yscale) / 100; var _local4 = 0; while (_local4 < this.labels.length) { this.addItem(this.labels[_local4], this.data[_local4]); _local4++; } this.lastSelected = 0; this.selectItem(0); this._xscale = (this._yscale = 100); this.opened = false; this.setSize(this.width); this.highlightTop(false); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.onUnload = function () { this.superHolder.removeMovieClip(); }; this.setSelectedIndex(0, false); this.value = ""; this.focusEnabled = true; this.changeFlag = false; } FComboBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FComboBoxSymbol", FComboBoxClass); FComboBoxClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); var _local3 = eventObj.event; if ((_local3 == "addRows") || (_local3 == "deleteRows")) { var _local6 = (eventObj.lastRow - eventObj.firstRow) + 1; var _local7 = ((_local3 == "addRows") ? 1 : -1); var _local4 = this.getLength(); var _local8 = _local4 - (_local7 * _local6); if ((this.rowCount > _local8) || (this.rowCount > _local4)) { this.invalidate("setSize"); } if (this.getSelectedIndex() == undefined) { this.setSelectedIndex(0, false); } } else if (_local3 == "updateAll") { this.invalidate("setSize"); } }; FComboBoxClass.prototype.removeAll = function () { if (!this.enable) { return(undefined); } super.removeAll(); if (this.editable) { this.value = ""; } this.invalidate("setSize"); }; FComboBoxClass.prototype.setSize = function (w) { if ((((w == undefined) || (typeof(w) != "number")) || (w <= 0)) || (!this.enable)) { return(undefined); } this.proxyBox_mc._width = w; this.container_mc.removeMovieClip(); this.measureItmHgt(); this.container_mc = this.superHolder.createEmptyMovieClip("container", 3); this.container_mc.tabChildren = false; this.setPopUpLocation(this.container_mc); this.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); this.boundingBox_mc = this.container_mc.boundingBox_mc; this.boundingBox_mc.component = this; this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc._height = this.itmHgt; this.numDisplayed = Math.min(this.rowCount, this.getLength()); if (this.numDisplayed < 3) { this.numDisplayed = Math.min(3, this.getLength()); } this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); this.attachMovie("DownArrow", "downArrow", 10); this.downArrow._y = 0; this.downArrow._width = this.itmHgt; this.downArrow._height = this.itmHgt; this.downArrow._x = this.proxyBox_mc._width - this.downArrow._width; this.setEditable(this.editable); this.container_mc._visible = this.opened; this.highlightTop(false); this.fader = this.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4); this.registerSkinElement(this.fader.boundingBox, "background"); this.fader._width = this.width; this.fader._height = this.height; this.fader._visible = false; }; FComboBoxClass.prototype.setDataProvider = function (dp) { super.setDataProvider(dp); this.invalidate("setSize"); this.setSelectedIndex(0); }; FComboBoxClass.prototype.getValue = function () { if (this.editable) { return(this.fLabel_mc.getLabel()); } return(super.getValue()); }; FComboBoxClass.prototype.getRowCount = function () { return(this.rowCount); }; FComboBoxClass.prototype.setRowCount = function (count) { this.rowCount = ((this.getLength() > count) ? (Math.max(count, 3)) : (count)); this.setSize(this.width); var _local2 = this.getLength(); if ((_local2 - this.getScrollPosition()) < this.rowCount) { this.setScrollPosition(_local2 - Math.min(this.rowCount, _local2)); this.invalidate("updateControl"); } }; FComboBoxClass.prototype.setEditable = function (editableFlag) { if (!this.enable) { return(undefined); } this.editable = editableFlag; if (!this.editable) { this.onPress = this.pressHandler; this.useHandCursor = false; this.trackAsMenu = true; this.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:this, itemNum:-1}); this.fLabel_mc.onRollOver = undefined; this.fLabel_mc.setSize((this.width - this.itmHgt) + 1, this.itmHgt); this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); this.highlightTop(false); } else { this.attachMovie("FLabelSymbol", "fLabel_mc", 5); this.fLabel_txt = this.fLabel_mc.labelField; this.fLabel_txt.type = "input"; this.fLabel_txt._x = 4; this.fLabel_txt.onSetFocus = this.onLabelFocus; this.fLabel_mc.setSize((this.width - this.itmHgt) - 3); delete this.onPress; this.fLabel_txt.onKillFocus = function () { this._parent._parent.myOnKillFocus(); }; this.fLabel_mc.setLabel(this.value); this.fLabel_txt.onChanged = function () { this._parent._parent.findInputText(); }; this.downArrow.onPress = this.buttonPressHandler; this.downArrow.useHandCursor = false; this.downArrow.trackAsMenu = true; } }; FComboBoxClass.prototype.setEnabled = function (enabledFlag) { enabledFlag = (((enabledFlag == undefined) || (typeof(enabledFlag) != "boolean")) ? true : (enabledFlag)); super.setEnabled(enabledFlag); this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); this.downArrow.gotoAndStop((this.enable ? 1 : 3)); if (this.editable) { this.fLabel_txt.type = (enabledFlag ? "input" : "dynamic"); this.fLabel_txt.selectable = enabledFlag; } else if (enabledFlag) { this.fLabel_mc.drawItem(this.topLabel, false); this.setSelectedIndex(this.getSelectedIndex(), false); } this.fLabel_mc.setEnabled(this.enable); this.fLabel_txt.onSetFocus = (enabledFlag ? (this.onLabelFocus) : undefined); }; FComboBoxClass.prototype.setSelectedIndex = function (index, flag) { super.setSelectedIndex(index, flag); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); } else { this.value = ((flag != undefined) ? "" : (this.getSelectedItem().label)); this.fLabel_mc.setLabel(this.value); } this.invalidate("updateControl"); }; FComboBoxClass.prototype.setValue = function (value) { if (this.editable) { this.fLabel_mc.setLabel(value); this.value = value; } }; FComboBoxClass.prototype.pressHandler = function () { this.focusRect.removeMovieClip(); if (this.enable) { if (!this.opened) { this.onMouseUp = this.releaseHandler; } else { this.onMouseUp = undefined; } this.changeFlag = false; if (!this.focused) { this.pressFocus(); this.clickFilter = (this.editable ? false : true); } if (!this.clickFilter) { this.openOrClose(!this.opened); } else { this.clickFilter = false; } } }; FComboBoxClass.prototype.clickHandler = function (itmNum) { if (!this.focused) { if (this.editable) { this.fLabel_txt.onKillFocus = undefined; } this.pressFocus(); } super.clickHandler(itmNum); this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FComboBoxClass.prototype.highlightTop = function (flag) { if (!this.editable) { this.fLabel_mc.drawItem(this.topLabel, flag); } }; FComboBoxClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); this.fLabel_mc.highlight_mc.gotoAndStop("enabled"); this.highlightTop(true); }; FComboBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this._height + 4); }; FComboBoxClass.prototype.myOnKillFocus = function () { if (Selection.getFocus().indexOf("labelField") != -1) { return(undefined); } super.myOnKillFocus(); delete this.fLabel_txt.onKeyDown; this.openOrClose(false); this.highlightTop(false); }; FComboBoxClass.prototype.setPopUpLocation = function (mcRef) { mcRef._x = this._x; var _local2 = {x:this._x, y:this._y + this.proxyBox_mc._height}; this._parent.localToGlobal(_local2); mcRef._parent.globalToLocal(_local2); mcRef._x = _local2.x; mcRef._y = _local2.y; if ((this.height + mcRef._y) >= Stage.height) { this.upward = true; mcRef._y = (_local2.y - this.height) - this.proxyBox_mc._height; } else { this.upward = false; } }; FComboBoxClass.prototype.openOrClose = function (flag) { if (this.getLength() == 0) { return(undefined); } this.setPopUpLocation(this.container_mc); if ((this.lastSelected != -1) && ((this.lastSelected < this.topDisplayed) || (this.lastSelected > (this.topDisplayed + this.numDisplayed)))) { super.moveSelBy(this.lastSelected - this.getSelectedIndex()); } if (!flag) { (this.downArrow.gotoAndStop(1));// not popped } else { (this.downArrow.gotoAndStop(2));// not popped } if (flag == this.opened) { return(undefined); } this.highlightTop(!flag); this.fadeRate = this.styleTable.popUpFade.value; if (((!flag) || (this.fadeRate == undefined)) || (this.fadeRate == 0)) { this.opened = (this.container_mc._visible = flag); return(undefined); } this.setPopUpLocation(this.fader); this.time = 0; this.const = 85 / Math.sqrt(this.fadeRate); this.fader._alpha = 85; this.container_mc._visible = (this.fader._visible = true); this.onEnterFrame = function () { this.fader._alpha = 100 - ((this.const * Math.sqrt(++this.time)) + 15); if (this.time >= this.fadeRate) { this.fader._visible = false; delete this.onEnterFrame; this.opened = true; } }; }; FComboBoxClass.prototype.fireChange = function () { this.lastSelected = this.getSelectedIndex(); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, true); } else { this.value = this.getSelectedItem().label; this.fLabel_mc.setLabel(this.value); } this.executeCallback(); }; FComboBoxClass.prototype.releaseHandler = function () { var _local3 = this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse); if (this.changeFlag) { if (_local3) { this.fireChange(); } this.openOrClose(!this.opened); } else if (_local3) { this.openOrClose(false); } else { this.onMouseDown = function () { if ((!this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse)) && (!this.hitTest(_root._xmouse, _root._ymouse))) { this.onMouseDown = undefined; this.openOrClose(false); } }; } this.changeFlag = false; this.onMouseUp = undefined; clearInterval(this.dragScrolling); this.dragScrolling = undefined; }; FComboBoxClass.prototype.moveSelBy = function (itemNum) { if (itemNum != 0) { super.moveSelBy(itemNum); if (this.editable) { this.setValue(this.getSelectedItem().label); } if (!this.opened) { if (this.changeFlag && (!this.isSelected(this.lastSelected))) { this.fireChange(); } } } }; FComboBoxClass.prototype.myOnKeyDown = function () { if (!this.focused) { return(undefined); } if (this.editable && (Key.isDown(13))) { this.setValue(this.fLabel_mc.getLabel()); this.executeCallback(); this.openOrClose(false); } else if ((Key.isDown(13) || (Key.isDown(32) && (!this.editable))) && (this.opened)) { if (this.getSelectedIndex() != this.lastSelected) { this.fireChange(); } this.openOrClose(false); this.fLabel_txt.hscroll = 0; } super.myOnKeyDown(); }; FComboBoxClass.prototype.findInputText = function () { if (!this.editable) { super.findInputText(); } }; FComboBoxClass.prototype.onLabelFocus = function () { this._parent._parent.tabFocused = false; this._parent._parent.focused = true; this.onKeyDown = function () { this._parent._parent.myOnKeyDown(); }; Key.addListener(this); }; FComboBoxClass.prototype.buttonPressHandler = function () { this._parent.pressHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 192 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 195 MovieClip [FComboBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 196 MovieClip [FListItemSymbol] Frame 1
#initclip 125 function FListItemClass() { this.init(); } FListItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FListItemSymbol", FListItemClass); FListItemClass.prototype.init = function (columns) { super.init(); }; FListItemClass.prototype.createColumns = function (width) { var _local4 = 2; var _local3 = width / this.controller.columnsNum; var _local2 = 0; while (_local2 < this.controller.columnsNum) { if (this.controller.columnWidths != undefined) { _local3 = int((this.controller.columnWidths[_local2] / 100) * width); } this.attachMovie("FLabelSymbol", "fcolumn_mc" + _local2, 10 + _local2, {hostComponent:this.controller}); this["fcolumn_mc" + _local2]._x = _local4; this["fcolumn_mc" + _local2]._y = 0; this["fcolumn_mc" + _local2].setSize(_local3 - 2); this["fcolumn_mc" + _local2].labelField.selectable = false; _local4 = _local4 + _local3; _local2++; } }; FListItemClass.prototype.layoutContent = function (width) { if (this.controller.columnsNum > 0) { this.createColumns(width); } else { super.layoutContent(width); } }; FListItemClass.prototype.displayFormattedLabel = function (txt_obj, the_text, selected) { var _local2 = null; if (txt_obj.labelField.text != the_text) { _local2 = new ParseText(the_text); txt_obj.setLabel(_local2.realText); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } txt_obj.setColor(_local5); if (_local2 != null) { if (!this.controller.disableFormatting) { i = 0; while (i < _local2.tfArray.length) { var _local3 = _local2.realLen + 1; if (_local2.tfArray[i + 1] != null) { _local3 = _local2.tfArray[i + 1].color_idx; } txt_obj.labelField.SetTextFormat(_local2.tfArray[i].color_idx, _local3, _local2.tfArray[i].tf); i++; } } } }; FListItemClass.prototype.displayContent = function (itmObj, selected) { if (this.controller.columnsNum > 0) { this.displayColumns(itmObj, selected); } else { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } this.displayFormattedLabel(this.fLabel_mc, _local2, selected); } }; FListItemClass.prototype.displayColumns = function (itmObj, selected) { var _local2 = 0; for (c in itmObj.data) { this.displayFormattedLabel(this["fcolumn_mc" + _local2], itmObj.data[c]); _local2++; } }; #endinitclip
Symbol 198 MovieClip [FListBoxSymbol] Frame 1
#initclip 139 function FListBoxClass() { this.itemSymbol = "FListItemSymbol"; this.init(); this.permaScrollBar = true; var _local2 = 0; while (_local2 < this.labels.length) { this.addItem(this.labels[_local2], this.data[_local2]); _local2++; } this.boundingBox_mc.gotoAndStop(1); this.width = this._width; this.height = this._height; this._yscale = (this._xscale = 100); this.setSize(this.width, this.height); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.columnsNum = 0; this.columnWidths = undefined; this.disableFormatting = false; } FListBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FListBoxSymbol", FListBoxClass); FListBoxClass.prototype.getSelectedIndices = function () { var _local2 = new Array(); for (var _local3 in this.selected) { _local2.push(this.selected[_local3].sIndex); } return(((_local2.length > 0) ? (_local2) : undefined)); }; FListBoxClass.prototype.getSelectedItems = function () { var _local3 = this.getSelectedIndices(); var _local4 = new Array(); var _local2 = 0; while (_local2 < _local3.length) { _local4.push(this.getItemAt(_local3[_local2])); _local2++; } return(((_local4.length > 0) ? (_local4) : undefined)); }; FListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; FListBoxClass.prototype.getRowCount = function () { return(this.numDisplayed); }; FListBoxClass.prototype.setSelectedIndices = function (indexArray) { this.clearSelected(); var _local2 = 0; while (_local2 < indexArray.length) { this.selectItem(indexArray[_local2], true); _local2++; } this.updateControl(); }; FListBoxClass.prototype.setSelectMultiple = function (flag) { this.selectMultiple = flag; }; FListBoxClass.prototype.setRowCount = function (count) { var _local2 = (count * (this.itmHgt - 2)) + 2; this.setSize(this.width, _local2); }; FListBoxClass.prototype.setWidth = function (wdt) { this.setSize(wdt, this.height); }; FListBoxClass.prototype.setSize = function (w, h) { if (!this.enable) { return(undefined); } w = Math.max(w, 20); h = Math.max(h, 40); this.container_mc.removeMovieClip(); this.container_mc = this.createEmptyMovieClip("container", 3); this.measureItmHgt(); this.numDisplayed = Math.floor(h / (this.itmHgt - 2)); this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); }; FListBoxClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndices(); return(super.removeItemAt(index)); }; FListBoxClass.prototype.selectionHandler = function (itemNum) { if (this.clickFilter) { var _local3 = this.topDisplayed + itemNum; if (this.getItemAt(_local3) == undefined) { this.changeFlag = false; return(undefined); } this.changeFlag = true; if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { this.clearSelected(); this.selectItem(_local3, true); this.lastSelected = _local3; this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (Key.isDown(16) && (this.selectMultiple)) { if (this.lastSelected == -1) { this.lastSelected = _local3; } var _local4 = ((this.lastSelected < _local3) ? 1 : -1); this.clearSelected(); var _local2 = this.lastSelected; while (_local2 != _local3) { this.selectItem(_local2, true); if ((_local2 >= this.topDisplayed) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); } _local2 = _local2 + _local4; } this.selectItem(_local3, true); this.container_mc[("fListItem" + (_local3 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (key.isDown(17)) { var _local6 = this.isSelected(_local3); if (!this.selectMultiple) { this.clearSelected(); } if (!((!this.selectMultiple) && (_local6))) { this.selectItem(_local3, !_local6); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum)); } this.lastSelected = _local3; } } else { this.clickFilter = true; } }; FListBoxClass.prototype.moveSelBy = function (itemNum) { super.moveSelBy(itemNum); this.releaseHandler(); }; FListBoxClass.prototype.setColumns = function (columns_num) { this.columnsNum = columns_num; }; FListBoxClass.prototype.setColumnsWidth = function (args) { this.columnWidths = args; }; FListBoxClass.prototype.sortByColumn = function (column_name, order) { this.dataProvider.sortByColumn(column_name, order); }; FListBoxClass.prototype.removeBoundingBox = function () { this.boundingBox_mc._visible = false; }; FListBoxClass.prototype.disableTextFormat = function (disable) { this.disableFormatting = disable; }; FListBoxClass.prototype.Refresh = function () { this.dataProvider.updateViews({event:"sort"}); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 192 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 198 MovieClip [FListBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 199 MovieClip [FUIComponentSymbol] Frame 1
#initclip 89 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var _local3 in this.styleFormat_prm) { this.setStyleProperty(_local3, this.styleFormat_prm[_local3]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var _local2 in this.methodTable) { this[_local2](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var _local4 = this.styleTable.focusRectInner.value; var _local5 = this.styleTable.focusRectOuter.value; if (_local4 == undefined) { _local4 = 16777215 /* 0xFFFFFF */; } if (_local5 == undefined) { _local5 = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, _local5); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, _local4); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var _local17 = parseInt(value); if (!isNaN(_local17)) { value = _local17; } var _local16 = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!_local16)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var _local18 = propName.subString(4, propName.length); this.textStyle[_local18] = value; this.invalidate("setSize"); } else { for (var _local15 in this.styleTable[propName].coloredMCs) { var _local4 = new Color(this.styleTable[propName].coloredMCs[_local15]); if (this.styleTable[propName].value == undefined) { var _local5 = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; _local4.setTransform(_local5); } else { _local4.setRGB(value); } } } this.styleTable[propName].useGlobal = _local16; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var _local3 = new Color(skinMCRef); _local3.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var _local3 in arguments[0]) { this[_local3] = arguments[0][_local3]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var _local3 = 0; while (_local3 < arguments.length) { var _local4 = arguments[_local3]; this.listeners[arguments[_local3]] = _local4; for (var _local5 in this) { if (this.isAStyle(_local5)) { _local4.updateStyleProperty(this, _local5.toString()); } } _local3++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var _local4 in this) { if (this.isAStyle(_local4)) { if (component.styleTable[_local4].useGlobal == this.isGlobal) { component.styleTable[_local4].useGlobal = true; var _local3 = (this.isGlobal ? undefined : (globalStyleFormat[_local4])); component.setStyleProperty(_local4, _local3, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var _local6 = 0; for (var _local5 in this.listeners) { var _local3 = this.listeners[_local5]; if (arguments.length > 0) { var _local4 = 0; while (_local4 < arguments.length) { if (this.isAStyle(arguments[_local4])) { _local3.updateStyleProperty(this, arguments[_local4]); } _local4++; } } else { for (var _local4 in this) { if (this.isAStyle(_local4)) { _local3.updateStyleProperty(this, _local4.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 200 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 201 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 202 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 203 MovieClip [UpArrow] Frame 1
stop();
Symbol 203 MovieClip [UpArrow] Frame 2
stop();
Symbol 203 MovieClip [UpArrow] Frame 3
stop();
Symbol 204 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 210 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 214 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(highlight3D_mc, "highlight3D"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");
Symbol 215 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 216 MovieClip [DownArrow] Frame 1
stop();
Symbol 216 MovieClip [DownArrow] Frame 2
stop();
Symbol 216 MovieClip [DownArrow] Frame 3
stop();
Symbol 218 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller; component.registerSkinElement(highlight_mc, "selection"); stop();
Symbol 218 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled"); stop();
Symbol 218 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused"); stop();
Symbol 220 MovieClip [FLabelSymbol] Frame 1
#initclip 83 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var _local2 = this.hostComponent.styleTable.embedFonts.value; if (_local2 != undefined) { this.labelField.embedFonts = _local2; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var _local2 = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } this.setColor(_local2); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 222 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 222 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 224 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 102 function FCheckBoxClass() { this.init(); } FCheckBoxClass.prototype = new FUIComponentClass(); Object.registerClass("FCheckBoxSymbol", FCheckBoxClass); FCheckBoxClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1); this.attachMovie("fcb_states", "fcb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this.setChangeHandler(this.changeHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.initialValue == undefined) { this.setCheckState(false); } else { this.setCheckState(this.initialValue); } if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_CHECKBUTTON = 44; this.STATE_SYSTEM_CHECKED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FCheckBoxClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var _local8 = this.fLabel_mc._height / 2; var _local7 = this.fcb_states_mc._height / 2; var _local5 = _local7 - _local8; var _local6 = this.fcb_states_mc._width; var _local4 = this.fcb_states_mc; var _local9 = this.fLabel_mc; var _local2 = 0; if (_local4._width > this.width) { _local2 = 0; } else { _local2 = this.width - _local4._width; } this.fLabel_mc.setSize(_local2); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.fcb_states_mc._x = 0; this.fLabel_mc._x = _local6; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.fcb_states_mc._x = this.width - _local6; this.txtFormat("right"); } this.fLabel_mc._y = _local5; this.fcb_hitArea_mc._y = _local5; }; FCheckBoxClass.prototype.txtFormat = function (pos) { var _local3 = this.textStyle; var _local4 = this.styleTable; _local3.align = ((_local4.textAlign.value == undefined) ? ((_local3.align = pos)) : undefined); _local3.leftMargin = ((_local4.textLeftMargin.value == undefined) ? ((_local3.leftMargin = 0)) : undefined); _local3.rightMargin = ((_local4.textRightMargin.value == undefined) ? ((_local3.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FCheckBoxClass.prototype.setHitArea = function (w, h) { var _local3 = this.fcb_hitArea_mc; this.hitArea = _local3; if (this.fcb_states_mc._width > w) { _local3._width = this.fcb_states_mc._width; } else { _local3._width = w; } _local3._visible = false; if (arguments.length > 1) { _local3._height = h; } }; FCheckBoxClass.prototype.setSize = function (w) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.fcb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FCheckBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 1); }; FCheckBoxClass.prototype.onPress = function () { this.pressFocus(); _root.focusRect.removeMovieClip(); var _local3 = this.fcb_states_mc; if (this.getValue()) { _local3.gotoAndStop("checkedPress"); } else { _local3.gotoAndStop("press"); } }; FCheckBoxClass.prototype.onRelease = function () { this.fcb_states_mc.gotoAndStop("up"); this.setValue(!this.checked); }; FCheckBoxClass.prototype.onReleaseOutside = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedEnabled"); } else { _local2.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOut = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedEnabled"); } else { _local2.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOver = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedPress"); } else { _local2.gotoAndStop("press"); } }; FCheckBoxClass.prototype.setValue = function (checkedValue) { if (checkedValue || (checkedValue == undefined)) { this.setCheckState(checkedValue); } else if (checkedValue == false) { this.setCheckState(checkedValue); } this.executeCallBack(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FCheckBoxClass.prototype.setCheckState = function (checkedValue) { var _local2 = this.fcb_states_mc; if (this.enable) { this.flabel_mc.setEnabled(true); if (checkedValue || (checkedValue == undefined)) { _local2.gotoAndStop("checkedEnabled"); this.enabled = true; this.checked = true; } else { _local2.gotoAndStop("up"); this.enabled = true; this.checked = false; } } else { this.flabel_mc.setEnabled(false); if (checkedValue || (checkedValue == undefined)) { _local2.gotoAndStop("checkedDisabled"); this.enabled = false; this.checked = true; } else { _local2.gotoAndStop("uncheckedDisabled"); this.enabled = false; this.checked = false; this.focusRect.removeMovieClip(); } } }; FCheckBoxClass.prototype.getValue = function () { return(this.checked); }; FCheckBoxClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setCheckState(this.checked); }; FCheckBoxClass.prototype.getEnabled = function () { return(this.enable); }; FCheckBoxClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FCheckBoxClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FCheckBoxClass.prototype.setTextColor = function (color) { this.fLabel_mc.labelField.textColor = color; }; FCheckBoxClass.prototype.myOnKeyDown = function () { if (((Key.getCode() == 32) && (this.pressOnce == undefined)) && (this.enabled == true)) { this.setValue(!this.getValue()); this.pressOnce = true; } }; FCheckBoxClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.pressOnce = undefined; } }; FCheckBoxClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_CHECKBUTTON); }; FCheckBoxClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FCheckBoxClass.prototype.get_accState = function (childId) { if (this.master.getValue()) { return(this.master.STATE_SYSTEM_CHECKED); } return(0); }; FCheckBoxClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getValue()) { return("UnCheck"); } return("Check"); }; FCheckBoxClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 230 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 232 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 234 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 236 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 238 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 240 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "check");
Symbol 241 MovieClip [fcb_states] Frame 1
stop();
Symbol 241 MovieClip [fcb_states] Frame 2
stop();
Symbol 241 MovieClip [fcb_states] Frame 3
stop();
Symbol 241 MovieClip [fcb_states] Frame 4
stop();
Symbol 241 MovieClip [fcb_states] Frame 5
stop();
Symbol 241 MovieClip [fcb_states] Frame 6
stop();
Symbol 244 MovieClip [FRadioButtonSymbol] Frame 1
#initclip 103 function FRadioButtonClass() { this.init(); } function FRadioButtonGroupClass() { this.radioInstances = new Array(); } FRadioButtonClass.prototype = new FUIComponentClass(); FRadioButtonGroupClass.prototype = new FUIComponentClass(); Object.registerClass("FRadioButtonSymbol", FRadioButtonClass); FRadioButtonClass.prototype.init = function () { if (this.initialState == undefined) { this.selected = false; } else { this.selected = this.initialState; } super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.boundingBox_mc._width = 0; this.boundingBox_mc._height = 0; this.attachMovie("frb_hitArea", "frb_hitArea_mc", 1); this.attachMovie("frb_states", "frb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); this.setChangeHandler(this.changeHandler); if (this.label != undefined) { this.setLabel(this.label); } if (this.initialState == undefined) { this.setValue(false); } else { this.setValue(this.initialState); } if (this.data == "") { this.data = undefined; } else { this.setData(this.data); } this.addToRadioGroup(); this.ROLE_SYSTEM_RADIOBUTTON = 45; this.STATE_SYSTEM_SELECTED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FRadioButtonClass.prototype.setHitArea = function (w, h) { var _local3 = this.frb_hitArea_mc; this.hitArea = _local3; if (this.frb_states_mc._width > w) { _local3._width = this.frb_states_mc._width; } else { _local3._width = w; } _local3._visible = false; if (arguments.length > 1) { _local3._height = h; } }; FRadioButtonClass.prototype.txtFormat = function (pos) { var _local3 = this.textStyle; var _local4 = this.styleTable; _local3.align = ((_local4.textAlign.value == undefined) ? ((_local3.align = pos)) : undefined); _local3.leftMargin = ((_local4.textLeftMargin.value == undefined) ? ((_local3.leftMargin = 0)) : undefined); _local3.rightMargin = ((_local4.textRightMargin.value == undefined) ? ((_local3.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.setEnabled(this.enable); }; FRadioButtonClass.prototype.setSize = function (w, h) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.frb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FRadioButtonClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var _local8 = this.fLabel_mc._height / 2; var _local7 = this.frb_states_mc._height / 2; var _local5 = _local7 - _local8; var _local6 = this.frb_states_mc._width; var _local2 = this.frb_states_mc; var _local9 = this.fLabel_mc; var _local3 = this.width - _local2._width; if (_local2._width > this.width) { _local3 = 0; } else { _local3 = this.width - _local2._width; } this.fLabel_mc.setSize(_local3); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.frb_states_mc._x = 0; this.fLabel_mc._x = _local6; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.frb_states_mc._x = this.width - _local6; this.txtFormat("right"); } this.fLabel_mc._y = _local5; this.frb_hitArea_mc._y = _local5; this.setLabel(this.getLabel()); }; FRadioButtonClass.prototype.setData = function (dataValue) { this.data = dataValue; }; FRadioButtonClass.prototype.getData = function () { return(this.data); }; FRadioButtonClass.prototype.getState = function () { return(this.selected); }; FRadioButtonClass.prototype.getSize = function () { return(this.width); }; FRadioButtonClass.prototype.getGroupName = function () { return(this.groupName); }; FRadioButtonClass.prototype.setGroupName = function (groupName) { var _local2 = 0; while (_local2 < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[_local2] == this) { delete this._parent[this.groupName].radioInstances[_local2]; } _local2++; } this.groupName = groupName; this.addToRadioGroup(); }; FRadioButtonClass.prototype.addToRadioGroup = function () { if (this._parent[this.groupName] == undefined) { this._parent[this.groupName] = new FRadioButtonGroupClass(); } this._parent[this.groupName].addRadioInstance(this); }; FRadioButtonClass.prototype.setValue = function (selected) { if (selected || (selected == undefined)) { this.setState(true); this.focusRect.removeMovieClip(); this.executeCallBack(); } else if (selected == false) { this.setState(false); } }; FRadioButtonClass.prototype.setTabState = function (selected) { Selection.setFocus(this); this.setState(selected); this.drawFocusRect(); this.executeCallBack(); }; FRadioButtonClass.prototype.setState = function (selected) { if (selected || (selected == undefined)) { this.tabEnabled = true; for (var _local3 in this._parent) { if ((this != this._parent[_local3]) && (this._parent[_local3].groupName == this.groupName)) { this._parent[_local3].setState(false); this._parent[_local3].tabEnabled = false; } } } if (this.enable) { this.flabel_mc.setEnabled(true); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedEnabled"); this.enabled = false; this.selected = true; this.tabEnabled = true; this.tabFocused = true; } else { this.frb_states_mc.gotoAndStop("unselectedEnabled"); this.enabled = true; this.selected = false; this.tabEnabled = false; var _local4 = this._parent[this.groupName].getEnabled(); var _local5 = this._parent[this.groupName].getValue() == undefined; if (_local4 && (_local5)) { this._parent[this.groupName].radioInstances[0].tabEnabled = true; } } } else { this.flabel_mc.setEnabled(false); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedDisabled"); this.enabled = false; this.selected = true; this.tabEnabled = false; } else { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.enabled = false; this.selected = false; this.tabEnabled = false; } } if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FRadioButtonClass.prototype.getValue = function () { if (this.selected) { if ((this.data == "") || (this.data == undefined)) { return(this.getLabel()); } return(this.data); } }; FRadioButtonClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setState(this.selected); var _local5 = this._parent[this.groupName].getEnabled() == undefined; var _local4 = this._parent[this.groupName].radioInstances[0].getEnabled() == false; if (_local5 && (_local4)) { var _local3 = 0; while (_local3 < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[_local3].getEnabled() == true) { this._parent[this.groupName].radioInstances[_local3].tabEnabled = true; return(undefined); } _local3++; } } }; FRadioButtonClass.prototype.getEnabled = function () { return(this.enable); }; FRadioButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FRadioButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.getLabel()); }; FRadioButtonClass.prototype.onPress = function () { this.pressFocus(); this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.onRelease = function () { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.setValue(!this.selected); }; FRadioButtonClass.prototype.onReleaseOutside = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOut = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOver = function () { this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this._parent[this.groupName]); }; FRadioButtonGroupClass.prototype.addRadioInstance = function (instance) { this.radioInstances.push(instance); this.radioInstances[0].tabEnabled = true; }; FRadioButtonGroupClass.prototype.setEnabled = function (enableFlag) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setEnabled(enableFlag); _local2++; } }; FRadioButtonGroupClass.prototype.getEnabled = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].getEnabled() != this.radioInstances[0].getEnabled()) { return(undefined); } _local2++; } return(this.radioInstances[0].getEnabled()); }; FRadioButtonGroupClass.prototype.setChangeHandler = function (changeHandler, obj) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setChangeHandler(changeHandler, obj); _local2++; } }; FRadioButtonGroupClass.prototype.getValue = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected == true) { if ((this.radioInstances[_local2].data == "") || (this.radioInstances[_local2].data == undefined)) { return(this.radioInstances[_local2].getLabel()); } return(this.radioInstances[_local2].data); } _local2++; } }; FRadioButtonGroupClass.prototype.getData = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected) { return(this.radioInstances[_local2].getData()); } _local2++; } }; FRadioButtonGroupClass.prototype.getInstance = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected == true) { return(_local2); } _local2++; } }; FRadioButtonGroupClass.prototype.setValue = function (dataValue) { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].data == dataValue) { this.radioInstances[_local2].setValue(true); return(undefined); } _local2++; } _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].getLabel() == dataValue) { this.radioInstances[_local2].setValue(true); } _local2++; } }; FRadioButtonGroupClass.prototype.setSize = function (w) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setSize(w); _local2++; } }; FRadioButtonGroupClass.prototype.getSize = function () { var _local3 = 0; var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].width >= _local3) { _local3 = this.radioInstances[_local2].width; } _local2++; } return(_local3); }; FRadioButtonGroupClass.prototype.setGroupName = function (groupName) { this.oldGroupName = this.radioInstances[0].groupName; var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].groupName = groupName; this.radioInstances[_local2].addToRadioGroup(); _local2++; } delete this._parent[this.oldGroupName]; }; FRadioButtonGroupClass.prototype.getGroupName = function () { return(this.radioInstances[0].groupName); }; FRadioButtonGroupClass.prototype.setLabelPlacement = function (pos) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setLabelPlacement(pos); _local2++; } }; FRadioButtonGroupClass.prototype.setStyleProperty = function (propName, value, isGlobal) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setStyleProperty(propName, value, isGlobal); _local2++; } }; FRadioButtonGroupClass.prototype.addListener = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].addListener(); _local2++; } }; FRadioButtonGroupClass.prototype.applyChanges = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].applyChanges(); _local2++; } }; FRadioButtonGroupClass.prototype.removeListener = function (component) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].removeListener(component); _local2++; } }; FRadioButtonClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 3); }; FRadioButtonClass.prototype.myOnKillFocus = function () { Key.removeListener(this.keyListener); this.focused = false; this.focusRect.removeMovieClip(); this._parent[this.groupName].foobar = 0; }; FRadioButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this._parent[this.groupName].getValue() == undefined)) { if (this._parent[this.groupName].radioInstances[0] == this) { this.setTabState(true); } } if ((Key.getCode() == 40) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var _local2 = this.foobar; while (_local2 < this._parent[this.groupName].radioInstances.length) { var _local3 = _local2 + 1; if (this._parent[this.groupName].radioInstances[_local3].getEnabled()) { this._parent[this.groupName].radioInstances[_local3].setTabState(true); return(undefined); } _local2++; } } if ((Key.getCode() == 38) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var _local2 = this.foobar; while (_local2 >= 0) { var _local3 = _local2 - 1; if (this._parent[this.groupName].radioInstances[_local3].getEnabled()) { this._parent[this.groupName].radioInstances[_local3].setTabState(true); return(undefined); } _local2--; } } }; FRadioButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_RADIOBUTTON); }; FRadioButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FRadioButtonClass.prototype.get_accState = function (childId) { if (this.master.getState()) { return(this.master.STATE_SYSTEM_SELECTED); } return(0); }; FRadioButtonClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getState()) { return("UnCheck"); } return("Check"); }; FRadioButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 250 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 252 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 254 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 256 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 258 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(disabled_mc, "foregroundDisabled");
Symbol 260 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(dot_mc, "radioDot");
Symbol 261 MovieClip [frb_states] Frame 1
stop();
Symbol 261 MovieClip [frb_states] Frame 2
stop();
Symbol 261 MovieClip [frb_states] Frame 3
stop();
Symbol 261 MovieClip [frb_states] Frame 4
stop();
Symbol 261 MovieClip [frb_states] Frame 5
stop();
Symbol 264 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 265 MovieClip [FScrollBarSymbol] Frame 1
#initclip 104 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var _local2 = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; _local2 = Math.min(_local2, this.maxPos); this.setScrollPosition(Math.max(_local2, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var _local3 = this.enable; if (enabledFlag && (!_local3)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (_local3)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var _local3 = this.smallScroll; if (inc != "one") { _local3 = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var _local2 = this.getScrollPosition() + (mode * _local3); if (_local2 > this.maxPos) { _local2 = this.maxPos; } else if (_local2 < this.minPos) { _local2 = this.minPos; } this.setScrollPosition(_local2); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var _local2 = this.controller; _local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (this._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("length"); this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } this.textField = tF; this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this; this.onTextChanged(); this.onChanged = function () { this.onTextChanged(); }; this.onScroller = function () { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } }; this.textField.addListener(this); this.textField.watch("length", this.callback); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); }; FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return(newVal); }; FScrollBarClass.prototype.onTextChanged = function () { if ((!this.enable) || (this.textField == undefined)) { return(undefined); } clearInterval(this.synchScroll); if (this.horizontal) { var _local2 = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxhscroll)); } else { var _local2 = this.textField.scroll; var _local3 = this.textField.bottomScroll - this.textField.scroll; this.setScrollProperties(_local3, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxscroll)); } }; FScrollBarClass.prototype.executeCallBack = function () { if (this.textField == undefined) { super.executeCallBack(); } else if (this.horizontal) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } }; Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip
Symbol 266 MovieClip [DataProviderSymbol] Frame 1
#initclip 81 _global.DataProviderClass = function () { this.init(); }; DataProviderClass.prototype.init = function () { this.items = new Array(); this.uniqueID = 0; this.views = new Array(); }; DataProviderClass.prototype.addView = function (viewRef) { this.views.push(viewRef); var _local2 = {event:"updateAll"}; viewRef.modelChanged(_local2); }; DataProviderClass.prototype.addItemAt = function (index, value) { if (index < this.getLength()) { this.items.splice(index, 0, "tmp"); } this.items[index] = new Object(); if (typeof(value) == "object") { this.items[index] = value; } else { this.items[index].label = value; } this.items[index].__ID__ = this.uniqueID++; var _local4 = {event:"addRows", firstRow:index, lastRow:index}; this.updateViews(_local4); }; DataProviderClass.prototype.addItem = function (value) { this.addItemAt(this.getLength(), value); }; DataProviderClass.prototype.removeItemAt = function (index) { var _local4 = this.items[index]; this.items.splice(index, 1); var _local3 = {event:"deleteRows", firstRow:index, lastRow:index}; this.updateViews(_local3); return(_local4); }; DataProviderClass.prototype.removeAll = function () { this.items = new Array(); this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1}); }; DataProviderClass.prototype.replaceItemAt = function (index, itemObj) { if ((index < 0) || (index >= this.getLength())) { return(undefined); } var _local3 = this.getItemID(index); if (typeof(itemObj) == "object") { this.items[index] = itemObj; } else { this.items[index].label = itemObj; } this.items[index].__ID__ = _local3; this.updateViews({event:"updateRows", firstRow:index, lastRow:index}); }; DataProviderClass.prototype.getLength = function () { return(this.items.length); }; DataProviderClass.prototype.getItemAt = function (index) { return(this.items[index]); }; DataProviderClass.prototype.getItemID = function (index) { return(this.items[index].__ID__); }; DataProviderClass.prototype.sortItemsBy = function (fieldName, order) { this.items.sortOn(fieldName); if (order == "DESC") { this.items.reverse(); } this.updateViews({event:"sort"}); }; DataProviderClass.prototype.sortByColumn = function (fieldName, order) { var _local3 = new Array(); var _local2 = 0; while (_local2 < this.items.length) { _local3.push({idx:this.items[_local2].data[fieldName], data:this.items[_local2].data, label:this.items[_local2].label}); _local2++; } if (isNaN(idx)) { _local3.sortOn("idx"); } else { _local3.sort(function (a, b) { if (a.idx > b.idx) { return(1); } if (b.idx > a.idx) { return(-1); } return(0); }); } if (order == "DESC") { _local3.reverse(); } this.removeAll(); _local2 = 0; while (_local2 < _local3.length) { this.addItem({label:_local3[_local2].label, data:_local3[_local2].data}); _local2++; } }; DataProviderClass.prototype.updateViews = function (eventObj) { var _local2 = 0; while (_local2 < this.views.length) { this.views[_local2].modelChanged(eventObj); _local2++; } }; #endinitclip
Symbol 267 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 122 function FSelectableItemClass() { this.init(); } FSelectableItemClass.prototype = new FUIComponentClass(); FSelectableItemClass.prototype.init = function () { if (this._name != "itemAsset") { this.highlighted = false; this.layoutContent(100); } }; FSelectableItemClass.prototype.drawItem = function (itmObj, selected) { this.displayContent(itmObj, selected); if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) { this.setHighlighted(selected); } this.oldFocus = this.controller.focused; }; FSelectableItemClass.prototype.setSize = function (width, height) { var _local2 = -16384; this.width = width; this.layoutContent(width); this.attachMovie("FHighlightSymbol", "highlight_mc", _local2); this.highlight_mc._x = 0.5; this.highlight_mc._width = width - 0.5; this.highlight_mc._height = height; this.highlight_mc.controller = this; this.highlight_mc._alpha = 0; this.highlight_mc.trackAsMenu = true; this.highlight_mc.onPress = function () { if (this.controller.enable) { this.controller.controller.clickHandler(this.controller.itemNum); } }; this.highlight_mc.onDragOver = function () { if (this.controller.controller.focused) { this.onPress(); } }; this.highlight_mc.useHandCursor = false; this.highlight_mc.trackAsMenu = true; }; FSelectableItemClass.prototype.setEnabled = function (enabledFlag) { this.enable = enabledFlag; this.fLabel_mc.setEnabled(enabledFlag); this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled")); }; FSelectableItemClass.prototype.layoutContent = function (width) { this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller}); this.fLabel_mc._x = 2; this.fLabel_mc._y = 0; this.fLabel_mc.setSize(width - 2); this.fLabel_mc.labelField.selectable = false; }; FSelectableItemClass.prototype.displayContent = function (itmObj, selected) { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } if (this.fLabel_mc.labelField.text != _local2) { this.fLabel_mc.setLabel(_local2); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } this.fLabel_mc.setColor(_local5); }; FSelectableItemClass.prototype.getItemIndex = function () { return(this.controller.getScrollPosition() + this.itemNum); }; FSelectableItemClass.prototype.getItemModel = function () { return(this.controller.getItemAt(this.getItemIndex())); }; FSelectableItemClass.prototype.getHostDataProvider = function () { return(this.controller.dataProvider); }; FSelectableItemClass.prototype.setHighlighted = function (flag) { fade = this.controller.styleTable.fadeRate.value; if (((fade == undefined) || (fade == 0)) || (!flag)) { this.highlight_mc._alpha = (flag ? 100 : 0); delete this.onEnterFrame; } else { this.fadeN = fade; this.fadeX = 1; this.highLight_mc._alpha = 20; this.onEnterFrame = function () { this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40; if (this.fadeX > this.fadeN) { delete this.onEnterFrame; } }; } this.highlighted = flag; }; #endinitclip
Symbol 268 MovieClip [FSelectableListSymbol] Frame 1
#initclip 107 function FSelectableListClass() { this.init(); } FSelectableListClass.prototype = new FUIComponentClass(); FSelectableListClass.prototype.init = function () { super.init(); this.enable = true; this.selected = new Array(); this.topDisplayed = (this.numDisplayed = 0); this.lastSelected = 0; this.tabChildren = false; if (this._name != undefined) { this.dataProvider = new DataProviderClass(); this.dataProvider.addView(this); } }; FSelectableListClass.prototype.addItemAt = function (index, label, data) { if ((index < 0) || (!this.enable)) { return(undefined); } this.dataProvider.addItemAt(index, {label:label, data:data}); }; FSelectableListClass.prototype.addItem = function (label, data) { if (!this.enable) { return(undefined); } this.dataProvider.addItem({label:label, data:data}); }; FSelectableListClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndex(); var _local2 = this.getItemAt(index); this.dataProvider.removeItemAt(index); return(_local2); }; FSelectableListClass.prototype.removeAll = function () { this.dataProvider.removeAll(); }; FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) { this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); }; FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) { this.lastSelID = this.dataProvider.getItemID(this.lastSelected); this.dataProvider.sortItemsBy(fieldName, order); }; FSelectableListClass.prototype.getLength = function () { return(this.dataProvider.getLength()); }; FSelectableListClass.prototype.getSelectedIndex = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (_local2 != undefined) { return(_local2); } } }; FSelectableListClass.prototype.getSelectedItem = function () { return(this.getItemAt(this.getSelectedIndex())); }; FSelectableListClass.prototype.getItemAt = function (index) { return(this.dataProvider.getItemAt(index)); }; FSelectableListClass.prototype.getEnabled = function () { return(this.enable); }; FSelectableListClass.prototype.getValue = function () { var _local2 = this.getSelectedItem(); return(((_local2.data == undefined) ? (_local2.label) : (_local2.data))); }; FSelectableListClass.prototype.setSelectedIndex = function (index, flag) { if (((index >= 0) && (index < this.getLength())) && (this.enable)) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.invalidate("updateControl"); if (flag != false) { this.executeCallBack(); } } }; FSelectableListClass.prototype.setDataProvider = function (obj) { this.setScrollPosition(0); this.clearSelected(); if (obj instanceof Array) { this.dataProvider = new DataProviderClass(); var _local2 = 0; while (_local2 < obj.length) { var _local4 = ((typeof(obj[_local2]) == "string") ? ({label:obj[_local2]}) : (obj[_local2])); this.dataProvider.addItem(_local4); _local2++; } } else { this.dataProvider = obj; } this.dataProvider.addView(this); }; FSelectableListClass.prototype.setItemSymbol = function (linkID) { this.tmpPos = this.getScrollPosition(); this.itemSymbol = linkID; this.invalidate("setSize"); this.setScrollPosition(this.tmpPos); }; FSelectableListClass.prototype.setEnabled = function (enabledFlag) { this.cleanUI(); super.setEnabled(enabledFlag); this.enable = enabledFlag; this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); var _local4 = Math.min(this.numDisplayed, this.getLength()); var _local3 = 0; while (_local3 < _local4) { this.container_mc[("fListItem" + _local3) + "_mc"].setEnabled(this.enable); _local3++; } if (this.enable) { this.invalidate("updateControl"); } }; FSelectableListClass.prototype.updateControl = function () { var _local2 = 0; while (_local2 < this.numDisplayed) { this.container_mc[("fListItem" + _local2) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + _local2), this.isSelected(this.topDisplayed + _local2)); _local2++; } }; FSelectableListClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100); this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width; this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height; var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + _local3) + "_mc", 10 + _local3, {controller:this, itemNum:_local3}); var _local4 = this.container_mc[("fListItem" + _local3) + "_mc"]; var _local5 = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset)); _local4.setSize(this.width - _local5, this.itmHgt); _local4._y = (this.itmHgt - 2) * _local3; _local3++; } this.updateControl(); }; FSelectableListClass.prototype.modelChanged = function (eventObj) { var _local4 = eventObj.firstRow; var _local6 = eventObj.lastRow; var _local8 = eventObj.event; if (_local8 == "addRows") { for (var _local2 in this.selected) { if ((this.selected[_local2].sIndex != undefined) && (this.selected[_local2].sIndex >= _local4)) { this.selected[_local2].sIndex = this.selected[_local2].sIndex + ((_local6 - _local4) + 1); this.setSelectedIndex(this.selected[_local2].sIndex, false); } } } else if (_local8 == "deleteRows") { if (_local4 == _local6) { var _local5 = _local4; if (this.selectHolder == _local5) { this.selectionDeleted = true; } if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) { this.topDisplayed--; if (this.selectionDeleted && ((_local5 - 1) >= 0)) { this.setSelectedIndex(_local5 - 1, false); } } else if (this.selectionDeleted) { var _local7 = this.getLength(); if (((_local5 == (_local7 - 1)) && (_local7 > 1)) || (_local5 > (_local7 / 2))) { this.setSelectedIndex(_local5 - 1, false); } else { this.setSelectedIndex(_local5, false); } } for (var _local2 in this.selected) { if (this.selected[_local2].sIndex > _local4) { this.selected[_local2].sIndex--; } } } else { this.clearSelected(); this.topDisplayed = 0; } } else if (_local8 == "sort") { var _local7 = this.getLength(); var _local2 = 0; while (_local2 < _local7) { if (this.isSelected(_local2)) { var _local3 = this.dataProvider.getItemID(_local2); if (_local3 == this.lastSelID) { this.lastSelected = _local2; } this.selected[String(_local3)].sIndex = _local2; } _local2++; } } this.invalidate("updateControl"); }; FSelectableListClass.prototype.measureItmHgt = function () { this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this}); this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false); this.itmHgt = this.tmpItem_mc._height; this.tmpItem_mc.removeMovieClip(); }; FSelectableListClass.prototype.selectItem = function (index, selectedFlag) { if (selectedFlag && (!this.isSelected(index))) { this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index}; } else if (!selectedFlag) { delete this.selected[String(this.dataProvider.getItemID(index))]; } }; FSelectableListClass.prototype.isSelected = function (index) { return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined); }; FSelectableListClass.prototype.clearSelected = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (((_local2 != undefined) && (this.topDisplayed <= _local2)) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), false); } } delete this.selected; this.selected = new Array(); }; FSelectableListClass.prototype.selectionHandler = function (itemNum) { var _local2 = this.topDisplayed + itemNum; if (this.getItemAt(_local2 == undefined)) { this.changeFlag = false; return(undefined); } this.changeFlag = true; this.clearSelected(); this.selectItem(_local2, true); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); }; FSelectableListClass.prototype.moveSelBy = function (incr) { var _local3 = this.getSelectedIndex(); var _local2 = _local3 + incr; _local2 = Math.max(0, _local2); _local2 = Math.min(this.getLength() - 1, _local2); if (_local2 == _local3) { return(undefined); } if ((_local3 < this.topDisplayed) || (_local3 >= (this.topDisplayed + this.numDisplayed))) { this.setScrollPosition(_local3); } if ((_local2 >= (this.topDisplayed + this.numDisplayed)) || (_local2 < this.topDisplayed)) { this.setScrollPosition(this.topDisplayed + incr); } this.selectionHandler(_local2 - this.topDisplayed); }; FSelectableListClass.prototype.clickHandler = function (itmNum) { this.focusRect.removeMovieClip(); if (!this.focused) { this.pressFocus(); } this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FSelectableListClass.prototype.releaseHandler = function () { if (this.changeFlag) { this.executeCallBack(); } this.changeFlag = false; this.onMouseUp = undefined; }; FSelectableListClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("enabled"); _local3++; } }; FSelectableListClass.prototype.myOnKillFocus = function () { super.myOnKillFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("unfocused"); _local3++; } }; #endinitclip
Instance of Symbol 266 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 268 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Instance of Symbol 267 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 268 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 269 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 119 function FScrollSelectListClass() { this.init(); } FScrollSelectListClass.prototype = new FSelectableListClass(); FScrollSelectListClass.prototype.getScrollPosition = function () { return(this.topDisplayed); }; FScrollSelectListClass.prototype.setScrollPosition = function (pos) { if (this.enable) { pos = Math.min(pos, this.getLength() - this.numDisplayed); pos = Math.max(pos, 0); this.scrollBar_mc.setScrollPosition(pos); } }; FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) { this.permaScrollBar = !flag; this.setSize(this.width, this.height); }; FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) { super.setEnabled(enabledFlag); this.scrollBar_mc.setEnabled(this.enable); }; FScrollSelectListClass.prototype.setSize = function (w, h) { var _local3 = this.getScrollPosition(); super.setSize(w, h); if (this.scrollBar_mc != undefined) { this.removed = true; } this.scrollBar_mc = undefined; this.initScrollBar(); this.setScrollPosition(_local3); }; FScrollSelectListClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); this.invalidate("initScrollBar"); }; FScrollSelectListClass.prototype.initScrollBar = function () { if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) { if (this.removed) { this.scrollBar_mc.removeMovieClip(); this.scrollBar_mc = undefined; this.scrollOffset = undefined; this.invalidate("setSize"); } } else { if (this.scrollBar_mc == undefined) { this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable}); this.scrollBar_mc = this.container_mc.scrollBar_mc; this.scrollBar_mc.setChangeHandler("scrollHandler", this); this.scrollBar_mc.setSize(this.height); this.scrollBar_mc._x = this.width - this.scrollBar_mc._width; this.scrollBar_mc._y = 0; this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1); this.scrollOffset = this.scrollBar_mc._width; this.invalidate("setSize"); } this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed); } }; FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) { var _local2 = scrollBar.getScrollPosition(); this.topDisplayed = _local2; if (this.lastPosition != _local2) { this.updateControl(); } this.lastPosition = _local2; }; FScrollSelectListClass.prototype.clickHandler = function (itmNum) { super.clickHandler(itmNum); if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.releaseHandler = function () { clearInterval(this.dragScrolling); this.dragScrolling = undefined; super.releaseHandler(); }; FScrollSelectListClass.prototype.dragScroll = function () { clearInterval(this.dragScrolling); if (this.container_mc._ymouse < 0) { this.setScrollPosition(this.getScrollPosition() - 1); this.selectionHandler(0); this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) { this.setScrollPosition(this.getScrollPosition() + 1); this.selectionHandler(this.numDisplayed - 1); this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.myOnKeyDown = function () { if (this.focused) { this.keyCodes = new Array(40, 38, 34, 33, 36, 35); this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength()); var _local2 = 0; while (_local2 < this.keyCodes.length) { if (Key.isDown(this.keyCodes[_local2])) { this.moveSelBy(this.keyIncrs[_local2]); return(undefined); } _local2++; } this.findInputText(); } }; FScrollSelectListClass.prototype.findInputText = function () { var _local2 = Key.getAscii(); if ((_local2 >= 33) && (_local2 <= 126)) { this.findString(String.fromCharCode(_local2)); } }; FScrollSelectListClass.prototype.findString = function (str) { if (this.getLength() == 0) { return(undefined); } var _local4 = this.getSelectedIndex(); var _local6 = 0; var _local2 = _local4 + 1; while (_local2 != _local4) { var _local3 = this.getItemAt(_local2).label.substring(0, str.length); if ((str == _local3) || (str.toUpperCase() == _local3.toUpperCase())) { _local6 = _local2 - _local4; break; } if (_local2 >= (this.getLength() - 1)) { _local2 = -1; } _local2++; } if (_local6 != 0) { this.moveSelBy(_local6); } }; #endinitclip
Instance of Symbol 265 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 269 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = ""; horizontal = false; } onClipEvent (load) { this._width = (this._height = 1); }
Instance of Symbol 268 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 269 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 270 MovieClip [FComboBoxItemSymbol] Frame 1
#initclip 130 function FComboBoxItemClass() { this.init(); } FComboBoxItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FComboBoxItemSymbol", FComboBoxItemClass); FComboBoxItemClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.highlight_mc.onRollOver = function () { this.controller.controller.selectionHandler(this.controller.itemNum); }; }; #endinitclip
Symbol 272 MovieClip [FComboBoxSymbol] Frame 1
#initclip 131 function FComboBoxClass() { _global._popUpLevel = ((_global._popUpLevel == undefined) ? 20000 : (_global._popUpLevel + 1)); this.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); var _local5 = this.superHolder.createEmptyMovieClip("testCont", 20000); var _local6 = _local5.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); if (_local6._name == undefined) { this.superHolder.removeMovieClip(); this.superHolder = this._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); } else { _local5.removeMovieClip(); } if (this.rowCount == undefined) { this.rowCount = 8; this.editable = false; } this.itemSymbol = "FComboBoxItemSymbol"; this.init(); this.permaScrollBar = false; this.proxyBox_mc.gotoAndStop(1); this.width = this._width; this.height = (this.proxyBox_mc._height * this._yscale) / 100; var _local4 = 0; while (_local4 < this.labels.length) { this.addItem(this.labels[_local4], this.data[_local4]); _local4++; } this.lastSelected = 0; this.selectItem(0); this._xscale = (this._yscale = 100); this.opened = false; this.setSize(this.width); this.highlightTop(false); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.onUnload = function () { this.superHolder.removeMovieClip(); }; this.setSelectedIndex(0, false); this.value = ""; this.focusEnabled = true; this.changeFlag = false; } FComboBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FComboBoxSymbol", FComboBoxClass); FComboBoxClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); var _local3 = eventObj.event; if ((_local3 == "addRows") || (_local3 == "deleteRows")) { var _local6 = (eventObj.lastRow - eventObj.firstRow) + 1; var _local7 = ((_local3 == "addRows") ? 1 : -1); var _local4 = this.getLength(); var _local8 = _local4 - (_local7 * _local6); if ((this.rowCount > _local8) || (this.rowCount > _local4)) { this.invalidate("setSize"); } if (this.getSelectedIndex() == undefined) { this.setSelectedIndex(0, false); } } else if (_local3 == "updateAll") { this.invalidate("setSize"); } }; FComboBoxClass.prototype.removeAll = function () { if (!this.enable) { return(undefined); } super.removeAll(); if (this.editable) { this.value = ""; } this.invalidate("setSize"); }; FComboBoxClass.prototype.setSize = function (w) { if ((((w == undefined) || (typeof(w) != "number")) || (w <= 0)) || (!this.enable)) { return(undefined); } this.proxyBox_mc._width = w; this.container_mc.removeMovieClip(); this.measureItmHgt(); this.container_mc = this.superHolder.createEmptyMovieClip("container", 3); this.container_mc.tabChildren = false; this.setPopUpLocation(this.container_mc); this.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); this.boundingBox_mc = this.container_mc.boundingBox_mc; this.boundingBox_mc.component = this; this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc._height = this.itmHgt; this.numDisplayed = Math.min(this.rowCount, this.getLength()); if (this.numDisplayed < 3) { this.numDisplayed = Math.min(3, this.getLength()); } this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); this.attachMovie("DownArrow", "downArrow", 10); this.downArrow._y = 0; this.downArrow._width = this.itmHgt; this.downArrow._height = this.itmHgt; this.downArrow._x = this.proxyBox_mc._width - this.downArrow._width; this.setEditable(this.editable); this.container_mc._visible = this.opened; this.highlightTop(false); this.fader = this.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4); this.registerSkinElement(this.fader.boundingBox, "background"); this.fader._width = this.width; this.fader._height = this.height; this.fader._visible = false; }; FComboBoxClass.prototype.setDataProvider = function (dp) { super.setDataProvider(dp); this.invalidate("setSize"); this.setSelectedIndex(0); }; FComboBoxClass.prototype.getValue = function () { if (this.editable) { return(this.fLabel_mc.getLabel()); } return(super.getValue()); }; FComboBoxClass.prototype.getRowCount = function () { return(this.rowCount); }; FComboBoxClass.prototype.setRowCount = function (count) { this.rowCount = ((this.getLength() > count) ? (Math.max(count, 3)) : (count)); this.setSize(this.width); var _local2 = this.getLength(); if ((_local2 - this.getScrollPosition()) < this.rowCount) { this.setScrollPosition(_local2 - Math.min(this.rowCount, _local2)); this.invalidate("updateControl"); } }; FComboBoxClass.prototype.setEditable = function (editableFlag) { if (!this.enable) { return(undefined); } this.editable = editableFlag; if (!this.editable) { this.onPress = this.pressHandler; this.useHandCursor = false; this.trackAsMenu = true; this.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:this, itemNum:-1}); this.fLabel_mc.onRollOver = undefined; this.fLabel_mc.setSize((this.width - this.itmHgt) + 1, this.itmHgt); this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); this.highlightTop(false); } else { this.attachMovie("FLabelSymbol", "fLabel_mc", 5); this.fLabel_txt = this.fLabel_mc.labelField; this.fLabel_txt.type = "input"; this.fLabel_txt._x = 4; this.fLabel_txt.onSetFocus = this.onLabelFocus; this.fLabel_mc.setSize((this.width - this.itmHgt) - 3); delete this.onPress; this.fLabel_txt.onKillFocus = function () { this._parent._parent.myOnKillFocus(); }; this.fLabel_mc.setLabel(this.value); this.fLabel_txt.onChanged = function () { this._parent._parent.findInputText(); }; this.downArrow.onPress = this.buttonPressHandler; this.downArrow.useHandCursor = false; this.downArrow.trackAsMenu = true; } }; FComboBoxClass.prototype.setEnabled = function (enabledFlag) { enabledFlag = (((enabledFlag == undefined) || (typeof(enabledFlag) != "boolean")) ? true : (enabledFlag)); super.setEnabled(enabledFlag); this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); this.downArrow.gotoAndStop((this.enable ? 1 : 3)); if (this.editable) { this.fLabel_txt.type = (enabledFlag ? "input" : "dynamic"); this.fLabel_txt.selectable = enabledFlag; } else if (enabledFlag) { this.fLabel_mc.drawItem(this.topLabel, false); this.setSelectedIndex(this.getSelectedIndex(), false); } this.fLabel_mc.setEnabled(this.enable); this.fLabel_txt.onSetFocus = (enabledFlag ? (this.onLabelFocus) : undefined); }; FComboBoxClass.prototype.setSelectedIndex = function (index, flag) { super.setSelectedIndex(index, flag); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); } else { this.value = ((flag != undefined) ? "" : (this.getSelectedItem().label)); this.fLabel_mc.setLabel(this.value); } this.invalidate("updateControl"); }; FComboBoxClass.prototype.setValue = function (value) { if (this.editable) { this.fLabel_mc.setLabel(value); this.value = value; } }; FComboBoxClass.prototype.pressHandler = function () { this.focusRect.removeMovieClip(); if (this.enable) { if (!this.opened) { this.onMouseUp = this.releaseHandler; } else { this.onMouseUp = undefined; } this.changeFlag = false; if (!this.focused) { this.pressFocus(); this.clickFilter = (this.editable ? false : true); } if (!this.clickFilter) { this.openOrClose(!this.opened); } else { this.clickFilter = false; } } }; FComboBoxClass.prototype.clickHandler = function (itmNum) { if (!this.focused) { if (this.editable) { this.fLabel_txt.onKillFocus = undefined; } this.pressFocus(); } super.clickHandler(itmNum); this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FComboBoxClass.prototype.highlightTop = function (flag) { if (!this.editable) { this.fLabel_mc.drawItem(this.topLabel, flag); } }; FComboBoxClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); this.fLabel_mc.highlight_mc.gotoAndStop("enabled"); this.highlightTop(true); }; FComboBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this._height + 4); }; FComboBoxClass.prototype.myOnKillFocus = function () { if (Selection.getFocus().indexOf("labelField") != -1) { return(undefined); } super.myOnKillFocus(); delete this.fLabel_txt.onKeyDown; this.openOrClose(false); this.highlightTop(false); }; FComboBoxClass.prototype.setPopUpLocation = function (mcRef) { mcRef._x = this._x; var _local2 = {x:this._x, y:this._y + this.proxyBox_mc._height}; this._parent.localToGlobal(_local2); mcRef._parent.globalToLocal(_local2); mcRef._x = _local2.x; mcRef._y = _local2.y; if ((this.height + mcRef._y) >= Stage.height) { this.upward = true; mcRef._y = (_local2.y - this.height) - this.proxyBox_mc._height; } else { this.upward = false; } }; FComboBoxClass.prototype.openOrClose = function (flag) { if (this.getLength() == 0) { return(undefined); } this.setPopUpLocation(this.container_mc); if ((this.lastSelected != -1) && ((this.lastSelected < this.topDisplayed) || (this.lastSelected > (this.topDisplayed + this.numDisplayed)))) { super.moveSelBy(this.lastSelected - this.getSelectedIndex()); } if (!flag) { (this.downArrow.gotoAndStop(1));// not popped } else { (this.downArrow.gotoAndStop(2));// not popped } if (flag == this.opened) { return(undefined); } this.highlightTop(!flag); this.fadeRate = this.styleTable.popUpFade.value; if (((!flag) || (this.fadeRate == undefined)) || (this.fadeRate == 0)) { this.opened = (this.container_mc._visible = flag); return(undefined); } this.setPopUpLocation(this.fader); this.time = 0; this.const = 85 / Math.sqrt(this.fadeRate); this.fader._alpha = 85; this.container_mc._visible = (this.fader._visible = true); this.onEnterFrame = function () { this.fader._alpha = 100 - ((this.const * Math.sqrt(++this.time)) + 15); if (this.time >= this.fadeRate) { this.fader._visible = false; delete this.onEnterFrame; this.opened = true; } }; }; FComboBoxClass.prototype.fireChange = function () { this.lastSelected = this.getSelectedIndex(); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, true); } else { this.value = this.getSelectedItem().label; this.fLabel_mc.setLabel(this.value); } this.executeCallback(); }; FComboBoxClass.prototype.releaseHandler = function () { var _local3 = this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse); if (this.changeFlag) { if (_local3) { this.fireChange(); } this.openOrClose(!this.opened); } else if (_local3) { this.openOrClose(false); } else { this.onMouseDown = function () { if ((!this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse)) && (!this.hitTest(_root._xmouse, _root._ymouse))) { this.onMouseDown = undefined; this.openOrClose(false); } }; } this.changeFlag = false; this.onMouseUp = undefined; clearInterval(this.dragScrolling); this.dragScrolling = undefined; }; FComboBoxClass.prototype.moveSelBy = function (itemNum) { if (itemNum != 0) { super.moveSelBy(itemNum); if (this.editable) { this.setValue(this.getSelectedItem().label); } if (!this.opened) { if (this.changeFlag && (!this.isSelected(this.lastSelected))) { this.fireChange(); } } } }; FComboBoxClass.prototype.myOnKeyDown = function () { if (!this.focused) { return(undefined); } if (this.editable && (Key.isDown(13))) { this.setValue(this.fLabel_mc.getLabel()); this.executeCallback(); this.openOrClose(false); } else if ((Key.isDown(13) || (Key.isDown(32) && (!this.editable))) && (this.opened)) { if (this.getSelectedIndex() != this.lastSelected) { this.fireChange(); } this.openOrClose(false); this.fLabel_txt.hscroll = 0; } super.myOnKeyDown(); }; FComboBoxClass.prototype.findInputText = function () { if (!this.editable) { super.findInputText(); } }; FComboBoxClass.prototype.onLabelFocus = function () { this._parent._parent.tabFocused = false; this._parent._parent.focused = true; this.onKeyDown = function () { this._parent._parent.myOnKeyDown(); }; Key.addListener(this); }; FComboBoxClass.prototype.buttonPressHandler = function () { this._parent.pressHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 269 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 272 MovieClip [FComboBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 273 MovieClip [FListItemSymbol] Frame 1
#initclip 138 function FListItemClass() { this.init(); } FListItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FListItemSymbol", FListItemClass); FListItemClass.prototype.init = function (columns) { super.init(); }; FListItemClass.prototype.createColumns = function (width) { var _local4 = 2; var _local3 = width / this.controller.columnsNum; var _local2 = 0; while (_local2 < this.controller.columnsNum) { if (this.controller.columnWidths != undefined) { _local3 = int((this.controller.columnWidths[_local2] / 100) * width); } this.attachMovie("FLabelSymbol", "fcolumn_mc" + _local2, 10 + _local2, {hostComponent:this.controller}); this["fcolumn_mc" + _local2]._x = _local4; this["fcolumn_mc" + _local2]._y = 0; this["fcolumn_mc" + _local2].setSize(_local3 - 2); this["fcolumn_mc" + _local2].labelField.selectable = false; _local4 = _local4 + _local3; _local2++; } }; FListItemClass.prototype.layoutContent = function (width) { if (this.controller.columnsNum > 0) { this.createColumns(width); } else { super.layoutContent(width); } }; FListItemClass.prototype.displayFormattedLabel = function (txt_obj, the_text, selected) { var _local2 = null; if (txt_obj.labelField.text != the_text) { _local2 = new ParseText(the_text); txt_obj.setLabel(_local2.realText); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } txt_obj.setColor(_local5); if (_local2 != null) { if (!this.controller.disableFormatting) { i = 0; while (i < _local2.tfArray.length) { var _local3 = _local2.realLen + 1; if (_local2.tfArray[i + 1] != null) { _local3 = _local2.tfArray[i + 1].color_idx; } txt_obj.labelField.SetTextFormat(_local2.tfArray[i].color_idx, _local3, _local2.tfArray[i].tf); i++; } } } }; FListItemClass.prototype.displayContent = function (itmObj, selected) { if (this.controller.columnsNum > 0) { this.displayColumns(itmObj, selected); } else { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } this.displayFormattedLabel(this.fLabel_mc, _local2, selected); } }; FListItemClass.prototype.displayColumns = function (itmObj, selected) { var _local2 = 0; for (c in itmObj.data) { this.displayFormattedLabel(this["fcolumn_mc" + _local2], itmObj.data[c]); _local2++; } }; #endinitclip
Symbol 275 MovieClip [FListBoxSymbol] Frame 1
#initclip 140 function FListBoxClass() { this.itemSymbol = "FListItemSymbol"; this.init(); this.permaScrollBar = true; var _local2 = 0; while (_local2 < this.labels.length) { this.addItem(this.labels[_local2], this.data[_local2]); _local2++; } this.boundingBox_mc.gotoAndStop(1); this.width = this._width; this.height = this._height; this._yscale = (this._xscale = 100); this.setSize(this.width, this.height); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.columnsNum = 0; this.columnWidths = undefined; this.disableFormatting = false; } FListBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FListBoxSymbol", FListBoxClass); FListBoxClass.prototype.getSelectedIndices = function () { var _local2 = new Array(); for (var _local3 in this.selected) { _local2.push(this.selected[_local3].sIndex); } return(((_local2.length > 0) ? (_local2) : undefined)); }; FListBoxClass.prototype.getSelectedItems = function () { var _local3 = this.getSelectedIndices(); var _local4 = new Array(); var _local2 = 0; while (_local2 < _local3.length) { _local4.push(this.getItemAt(_local3[_local2])); _local2++; } return(((_local4.length > 0) ? (_local4) : undefined)); }; FListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; FListBoxClass.prototype.getRowCount = function () { return(this.numDisplayed); }; FListBoxClass.prototype.setSelectedIndices = function (indexArray) { this.clearSelected(); var _local2 = 0; while (_local2 < indexArray.length) { this.selectItem(indexArray[_local2], true); _local2++; } this.updateControl(); }; FListBoxClass.prototype.setSelectMultiple = function (flag) { this.selectMultiple = flag; }; FListBoxClass.prototype.setRowCount = function (count) { var _local2 = (count * (this.itmHgt - 2)) + 2; this.setSize(this.width, _local2); }; FListBoxClass.prototype.setWidth = function (wdt) { this.setSize(wdt, this.height); }; FListBoxClass.prototype.setSize = function (w, h) { if (!this.enable) { return(undefined); } w = Math.max(w, 20); h = Math.max(h, 40); this.container_mc.removeMovieClip(); this.container_mc = this.createEmptyMovieClip("container", 3); this.measureItmHgt(); this.numDisplayed = Math.floor(h / (this.itmHgt - 2)); this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); }; FListBoxClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndices(); return(super.removeItemAt(index)); }; FListBoxClass.prototype.selectionHandler = function (itemNum) { if (this.clickFilter) { var _local3 = this.topDisplayed + itemNum; if (this.getItemAt(_local3) == undefined) { this.changeFlag = false; return(undefined); } this.changeFlag = true; if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { this.clearSelected(); this.selectItem(_local3, true); this.lastSelected = _local3; this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (Key.isDown(16) && (this.selectMultiple)) { if (this.lastSelected == -1) { this.lastSelected = _local3; } var _local4 = ((this.lastSelected < _local3) ? 1 : -1); this.clearSelected(); var _local2 = this.lastSelected; while (_local2 != _local3) { this.selectItem(_local2, true); if ((_local2 >= this.topDisplayed) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); } _local2 = _local2 + _local4; } this.selectItem(_local3, true); this.container_mc[("fListItem" + (_local3 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (key.isDown(17)) { var _local6 = this.isSelected(_local3); if (!this.selectMultiple) { this.clearSelected(); } if (!((!this.selectMultiple) && (_local6))) { this.selectItem(_local3, !_local6); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum)); } this.lastSelected = _local3; } } else { this.clickFilter = true; } }; FListBoxClass.prototype.moveSelBy = function (itemNum) { super.moveSelBy(itemNum); this.releaseHandler(); }; FListBoxClass.prototype.setColumns = function (columns_num) { this.columnsNum = columns_num; }; FListBoxClass.prototype.setColumnsWidth = function (args) { this.columnWidths = args; }; FListBoxClass.prototype.sortByColumn = function (column_name, order) { this.dataProvider.sortByColumn(column_name, order); }; FListBoxClass.prototype.removeBoundingBox = function () { this.boundingBox_mc._visible = false; }; FListBoxClass.prototype.disableTextFormat = function (disable) { this.disableFormatting = disable; }; FListBoxClass.prototype.Refresh = function () { this.dataProvider.updateViews({event:"sort"}); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 269 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 275 MovieClip [FListBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 276 MovieClip [FUIComponentSymbol] Frame 1
#initclip 96 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var _local3 in this.styleFormat_prm) { this.setStyleProperty(_local3, this.styleFormat_prm[_local3]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var _local2 in this.methodTable) { this[_local2](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var _local4 = this.styleTable.focusRectInner.value; var _local5 = this.styleTable.focusRectOuter.value; if (_local4 == undefined) { _local4 = 16777215 /* 0xFFFFFF */; } if (_local5 == undefined) { _local5 = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, _local5); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, _local4); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var _local17 = parseInt(value); if (!isNaN(_local17)) { value = _local17; } var _local16 = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!_local16)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var _local18 = propName.subString(4, propName.length); this.textStyle[_local18] = value; this.invalidate("setSize"); } else { for (var _local15 in this.styleTable[propName].coloredMCs) { var _local4 = new Color(this.styleTable[propName].coloredMCs[_local15]); if (this.styleTable[propName].value == undefined) { var _local5 = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; _local4.setTransform(_local5); } else { _local4.setRGB(value); } } } this.styleTable[propName].useGlobal = _local16; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var _local3 = new Color(skinMCRef); _local3.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var _local3 in arguments[0]) { this[_local3] = arguments[0][_local3]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var _local3 = 0; while (_local3 < arguments.length) { var _local4 = arguments[_local3]; this.listeners[arguments[_local3]] = _local4; for (var _local5 in this) { if (this.isAStyle(_local5)) { _local4.updateStyleProperty(this, _local5.toString()); } } _local3++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var _local4 in this) { if (this.isAStyle(_local4)) { if (component.styleTable[_local4].useGlobal == this.isGlobal) { component.styleTable[_local4].useGlobal = true; var _local3 = (this.isGlobal ? undefined : (globalStyleFormat[_local4])); component.setStyleProperty(_local4, _local3, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var _local6 = 0; for (var _local5 in this.listeners) { var _local3 = this.listeners[_local5]; if (arguments.length > 0) { var _local4 = 0; while (_local4 < arguments.length) { if (this.isAStyle(arguments[_local4])) { _local3.updateStyleProperty(this, arguments[_local4]); } _local4++; } } else { for (var _local4 in this) { if (this.isAStyle(_local4)) { _local3.updateStyleProperty(this, _local4.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 287 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 297 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 309 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 310 MovieClip [UpArrow] Frame 1
stop();
Symbol 310 MovieClip [UpArrow] Frame 2
stop();
Symbol 310 MovieClip [UpArrow] Frame 3
stop();
Symbol 317 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 323 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 328 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(highlight3D_mc, "highlight3D"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");
Symbol 329 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 337 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 345 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 353 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 354 MovieClip [DownArrow] Frame 1
stop();
Symbol 354 MovieClip [DownArrow] Frame 2
stop();
Symbol 354 MovieClip [DownArrow] Frame 3
stop();
Symbol 356 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller; component.registerSkinElement(highlight_mc, "selection"); stop();
Symbol 356 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled"); stop();
Symbol 356 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused"); stop();
Symbol 358 MovieClip [FLabelSymbol] Frame 1
#initclip 95 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var _local2 = this.hostComponent.styleTable.embedFonts.value; if (_local2 != undefined) { this.labelField.embedFonts = _local2; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var _local2 = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } this.setColor(_local2); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 359 MovieClip [FListItemSymbol] Frame 1
#initclip 133 function FListItemClass() { this.init(); } FListItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FListItemSymbol", FListItemClass); FListItemClass.prototype.init = function (columns) { super.init(); }; FListItemClass.prototype.createColumns = function (width) { var _local4 = 2; var _local3 = width / this.controller.columnsNum; var _local2 = 0; while (_local2 < this.controller.columnsNum) { if (this.controller.columnWidths != undefined) { _local3 = int((this.controller.columnWidths[_local2] / 100) * width); } this.attachMovie("FLabelSymbol", "fcolumn_mc" + _local2, 10 + _local2, {hostComponent:this.controller}); this["fcolumn_mc" + _local2]._x = _local4; this["fcolumn_mc" + _local2]._y = 0; this["fcolumn_mc" + _local2].setSize(_local3 - 2); this["fcolumn_mc" + _local2].labelField.selectable = false; _local4 = _local4 + _local3; _local2++; } }; FListItemClass.prototype.layoutContent = function (width) { if (this.controller.columnsNum > 0) { this.createColumns(width); } else { super.layoutContent(width); } }; FListItemClass.prototype.displayFormattedLabel = function (txt_obj, the_text, selected) { var _local2 = null; if (txt_obj.labelField.text != the_text) { _local2 = new ParseText(the_text); txt_obj.setLabel(_local2.realText); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } txt_obj.setColor(_local5); if (_local2 != null) { if (!this.controller.disableFormatting) { i = 0; while (i < _local2.tfArray.length) { var _local3 = _local2.realLen + 1; if (_local2.tfArray[i + 1] != null) { _local3 = _local2.tfArray[i + 1].color_idx; } txt_obj.labelField.SetTextFormat(_local2.tfArray[i].color_idx, _local3, _local2.tfArray[i].tf); i++; } } } }; FListItemClass.prototype.displayContent = function (itmObj, selected) { if (this.controller.columnsNum > 0) { this.displayColumns(itmObj, selected); } else { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } this.displayFormattedLabel(this.fLabel_mc, _local2, selected); } }; FListItemClass.prototype.displayColumns = function (itmObj, selected) { var _local2 = 0; for (c in itmObj.data) { this.displayFormattedLabel(this["fcolumn_mc" + _local2], itmObj.data[c]); _local2++; } }; #endinitclip
Symbol 361 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 362 MovieClip [FScrollBarSymbol] Frame 1
#initclip 109 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var _local2 = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; _local2 = Math.min(_local2, this.maxPos); this.setScrollPosition(Math.max(_local2, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var _local3 = this.enable; if (enabledFlag && (!_local3)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (_local3)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var _local3 = this.smallScroll; if (inc != "one") { _local3 = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var _local2 = this.getScrollPosition() + (mode * _local3); if (_local2 > this.maxPos) { _local2 = this.maxPos; } else if (_local2 < this.minPos) { _local2 = this.minPos; } this.setScrollPosition(_local2); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var _local2 = this.controller; _local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (this._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("length"); this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } this.textField = tF; this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this; this.onTextChanged(); this.onChanged = function () { this.onTextChanged(); }; this.onScroller = function () { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } }; this.textField.addListener(this); this.textField.watch("length", this.callback); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); }; FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return(newVal); }; FScrollBarClass.prototype.onTextChanged = function () { if ((!this.enable) || (this.textField == undefined)) { return(undefined); } clearInterval(this.synchScroll); if (this.horizontal) { var _local2 = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxhscroll)); } else { var _local2 = this.textField.scroll; var _local3 = this.textField.bottomScroll - this.textField.scroll; this.setScrollProperties(_local3, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxscroll)); } }; FScrollBarClass.prototype.executeCallBack = function () { if (this.textField == undefined) { super.executeCallBack(); } else if (this.horizontal) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } }; Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip
Symbol 363 MovieClip [DataProviderSymbol] Frame 1
#initclip 78 _global.DataProviderClass = function () { this.init(); }; DataProviderClass.prototype.init = function () { this.items = new Array(); this.uniqueID = 0; this.views = new Array(); }; DataProviderClass.prototype.addView = function (viewRef) { this.views.push(viewRef); var _local2 = {event:"updateAll"}; viewRef.modelChanged(_local2); }; DataProviderClass.prototype.addItemAt = function (index, value) { if (index < this.getLength()) { this.items.splice(index, 0, "tmp"); } this.items[index] = new Object(); if (typeof(value) == "object") { this.items[index] = value; } else { this.items[index].label = value; } this.items[index].__ID__ = this.uniqueID++; var _local4 = {event:"addRows", firstRow:index, lastRow:index}; this.updateViews(_local4); }; DataProviderClass.prototype.addItem = function (value) { this.addItemAt(this.getLength(), value); }; DataProviderClass.prototype.removeItemAt = function (index) { var _local4 = this.items[index]; this.items.splice(index, 1); var _local3 = {event:"deleteRows", firstRow:index, lastRow:index}; this.updateViews(_local3); return(_local4); }; DataProviderClass.prototype.removeAll = function () { this.items = new Array(); this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1}); }; DataProviderClass.prototype.replaceItemAt = function (index, itemObj) { if ((index < 0) || (index >= this.getLength())) { return(undefined); } var _local3 = this.getItemID(index); if (typeof(itemObj) == "object") { this.items[index] = itemObj; } else { this.items[index].label = itemObj; } this.items[index].__ID__ = _local3; this.updateViews({event:"updateRows", firstRow:index, lastRow:index}); }; DataProviderClass.prototype.getLength = function () { return(this.items.length); }; DataProviderClass.prototype.getItemAt = function (index) { return(this.items[index]); }; DataProviderClass.prototype.getItemID = function (index) { return(this.items[index].__ID__); }; DataProviderClass.prototype.sortItemsBy = function (fieldName, order) { this.items.sortOn(fieldName); if (order == "DESC") { this.items.reverse(); } this.updateViews({event:"sort"}); }; DataProviderClass.prototype.sortByColumn = function (fieldName, order) { var _local3 = new Array(); var _local2 = 0; while (_local2 < this.items.length) { _local3.push({idx:this.items[_local2].data[fieldName], data:this.items[_local2].data, label:this.items[_local2].label}); _local2++; } if (isNaN(idx)) { _local3.sortOn("idx"); } else { _local3.sort(function (a, b) { if (a.idx > b.idx) { return(1); } if (b.idx > a.idx) { return(-1); } return(0); }); } if (order == "DESC") { _local3.reverse(); } this.removeAll(); _local2 = 0; while (_local2 < _local3.length) { this.addItem({label:_local3[_local2].label, data:_local3[_local2].data}); _local2++; } }; DataProviderClass.prototype.updateViews = function (eventObj) { var _local2 = 0; while (_local2 < this.views.length) { this.views[_local2].modelChanged(eventObj); _local2++; } }; #endinitclip
Symbol 364 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 118 function FSelectableItemClass() { this.init(); } FSelectableItemClass.prototype = new FUIComponentClass(); FSelectableItemClass.prototype.init = function () { if (this._name != "itemAsset") { this.highlighted = false; this.layoutContent(100); } }; FSelectableItemClass.prototype.drawItem = function (itmObj, selected) { this.displayContent(itmObj, selected); if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) { this.setHighlighted(selected); } this.oldFocus = this.controller.focused; }; FSelectableItemClass.prototype.setSize = function (width, height) { var _local2 = -16384; this.width = width; this.layoutContent(width); this.attachMovie("FHighlightSymbol", "highlight_mc", _local2); this.highlight_mc._x = 0.5; this.highlight_mc._width = width - 0.5; this.highlight_mc._height = height; this.highlight_mc.controller = this; this.highlight_mc._alpha = 0; this.highlight_mc.trackAsMenu = true; this.highlight_mc.onPress = function () { if (this.controller.enable) { this.controller.controller.clickHandler(this.controller.itemNum); } }; this.highlight_mc.onDragOver = function () { if (this.controller.controller.focused) { this.onPress(); } }; this.highlight_mc.useHandCursor = false; this.highlight_mc.trackAsMenu = true; }; FSelectableItemClass.prototype.setEnabled = function (enabledFlag) { this.enable = enabledFlag; this.fLabel_mc.setEnabled(enabledFlag); this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled")); }; FSelectableItemClass.prototype.layoutContent = function (width) { this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller}); this.fLabel_mc._x = 2; this.fLabel_mc._y = 0; this.fLabel_mc.setSize(width - 2); this.fLabel_mc.labelField.selectable = false; }; FSelectableItemClass.prototype.displayContent = function (itmObj, selected) { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } if (this.fLabel_mc.labelField.text != _local2) { this.fLabel_mc.setLabel(_local2); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } this.fLabel_mc.setColor(_local5); }; FSelectableItemClass.prototype.getItemIndex = function () { return(this.controller.getScrollPosition() + this.itemNum); }; FSelectableItemClass.prototype.getItemModel = function () { return(this.controller.getItemAt(this.getItemIndex())); }; FSelectableItemClass.prototype.getHostDataProvider = function () { return(this.controller.dataProvider); }; FSelectableItemClass.prototype.setHighlighted = function (flag) { fade = this.controller.styleTable.fadeRate.value; if (((fade == undefined) || (fade == 0)) || (!flag)) { this.highlight_mc._alpha = (flag ? 100 : 0); delete this.onEnterFrame; } else { this.fadeN = fade; this.fadeX = 1; this.highLight_mc._alpha = 20; this.onEnterFrame = function () { this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40; if (this.fadeX > this.fadeN) { delete this.onEnterFrame; } }; } this.highlighted = flag; }; #endinitclip
Symbol 365 MovieClip [FSelectableListSymbol] Frame 1
#initclip 106 function FSelectableListClass() { this.init(); } FSelectableListClass.prototype = new FUIComponentClass(); FSelectableListClass.prototype.init = function () { super.init(); this.enable = true; this.selected = new Array(); this.topDisplayed = (this.numDisplayed = 0); this.lastSelected = 0; this.tabChildren = false; if (this._name != undefined) { this.dataProvider = new DataProviderClass(); this.dataProvider.addView(this); } }; FSelectableListClass.prototype.addItemAt = function (index, label, data) { if ((index < 0) || (!this.enable)) { return(undefined); } this.dataProvider.addItemAt(index, {label:label, data:data}); }; FSelectableListClass.prototype.addItem = function (label, data) { if (!this.enable) { return(undefined); } this.dataProvider.addItem({label:label, data:data}); }; FSelectableListClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndex(); var _local2 = this.getItemAt(index); this.dataProvider.removeItemAt(index); return(_local2); }; FSelectableListClass.prototype.removeAll = function () { this.dataProvider.removeAll(); }; FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) { this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); }; FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) { this.lastSelID = this.dataProvider.getItemID(this.lastSelected); this.dataProvider.sortItemsBy(fieldName, order); }; FSelectableListClass.prototype.getLength = function () { return(this.dataProvider.getLength()); }; FSelectableListClass.prototype.getSelectedIndex = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (_local2 != undefined) { return(_local2); } } }; FSelectableListClass.prototype.getSelectedItem = function () { return(this.getItemAt(this.getSelectedIndex())); }; FSelectableListClass.prototype.getItemAt = function (index) { return(this.dataProvider.getItemAt(index)); }; FSelectableListClass.prototype.getEnabled = function () { return(this.enable); }; FSelectableListClass.prototype.getValue = function () { var _local2 = this.getSelectedItem(); return(((_local2.data == undefined) ? (_local2.label) : (_local2.data))); }; FSelectableListClass.prototype.setSelectedIndex = function (index, flag) { if (((index >= 0) && (index < this.getLength())) && (this.enable)) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.invalidate("updateControl"); if (flag != false) { this.executeCallBack(); } } }; FSelectableListClass.prototype.setDataProvider = function (obj) { this.setScrollPosition(0); this.clearSelected(); if (obj instanceof Array) { this.dataProvider = new DataProviderClass(); var _local2 = 0; while (_local2 < obj.length) { var _local4 = ((typeof(obj[_local2]) == "string") ? ({label:obj[_local2]}) : (obj[_local2])); this.dataProvider.addItem(_local4); _local2++; } } else { this.dataProvider = obj; } this.dataProvider.addView(this); }; FSelectableListClass.prototype.setItemSymbol = function (linkID) { this.tmpPos = this.getScrollPosition(); this.itemSymbol = linkID; this.invalidate("setSize"); this.setScrollPosition(this.tmpPos); }; FSelectableListClass.prototype.setEnabled = function (enabledFlag) { this.cleanUI(); super.setEnabled(enabledFlag); this.enable = enabledFlag; this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); var _local4 = Math.min(this.numDisplayed, this.getLength()); var _local3 = 0; while (_local3 < _local4) { this.container_mc[("fListItem" + _local3) + "_mc"].setEnabled(this.enable); _local3++; } if (this.enable) { this.invalidate("updateControl"); } }; FSelectableListClass.prototype.updateControl = function () { var _local2 = 0; while (_local2 < this.numDisplayed) { this.container_mc[("fListItem" + _local2) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + _local2), this.isSelected(this.topDisplayed + _local2)); _local2++; } }; FSelectableListClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100); this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width; this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height; var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + _local3) + "_mc", 10 + _local3, {controller:this, itemNum:_local3}); var _local4 = this.container_mc[("fListItem" + _local3) + "_mc"]; var _local5 = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset)); _local4.setSize(this.width - _local5, this.itmHgt); _local4._y = (this.itmHgt - 2) * _local3; _local3++; } this.updateControl(); }; FSelectableListClass.prototype.modelChanged = function (eventObj) { var _local4 = eventObj.firstRow; var _local6 = eventObj.lastRow; var _local8 = eventObj.event; if (_local8 == "addRows") { for (var _local2 in this.selected) { if ((this.selected[_local2].sIndex != undefined) && (this.selected[_local2].sIndex >= _local4)) { this.selected[_local2].sIndex = this.selected[_local2].sIndex + ((_local6 - _local4) + 1); this.setSelectedIndex(this.selected[_local2].sIndex, false); } } } else if (_local8 == "deleteRows") { if (_local4 == _local6) { var _local5 = _local4; if (this.selectHolder == _local5) { this.selectionDeleted = true; } if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) { this.topDisplayed--; if (this.selectionDeleted && ((_local5 - 1) >= 0)) { this.setSelectedIndex(_local5 - 1, false); } } else if (this.selectionDeleted) { var _local7 = this.getLength(); if (((_local5 == (_local7 - 1)) && (_local7 > 1)) || (_local5 > (_local7 / 2))) { this.setSelectedIndex(_local5 - 1, false); } else { this.setSelectedIndex(_local5, false); } } for (var _local2 in this.selected) { if (this.selected[_local2].sIndex > _local4) { this.selected[_local2].sIndex--; } } } else { this.clearSelected(); this.topDisplayed = 0; } } else if (_local8 == "sort") { var _local7 = this.getLength(); var _local2 = 0; while (_local2 < _local7) { if (this.isSelected(_local2)) { var _local3 = this.dataProvider.getItemID(_local2); if (_local3 == this.lastSelID) { this.lastSelected = _local2; } this.selected[String(_local3)].sIndex = _local2; } _local2++; } } this.invalidate("updateControl"); }; FSelectableListClass.prototype.measureItmHgt = function () { this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this}); this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false); this.itmHgt = this.tmpItem_mc._height; this.tmpItem_mc.removeMovieClip(); }; FSelectableListClass.prototype.selectItem = function (index, selectedFlag) { if (selectedFlag && (!this.isSelected(index))) { this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index}; } else if (!selectedFlag) { delete this.selected[String(this.dataProvider.getItemID(index))]; } }; FSelectableListClass.prototype.isSelected = function (index) { return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined); }; FSelectableListClass.prototype.clearSelected = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (((_local2 != undefined) && (this.topDisplayed <= _local2)) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), false); } } delete this.selected; this.selected = new Array(); }; FSelectableListClass.prototype.selectionHandler = function (itemNum) { var _local2 = this.topDisplayed + itemNum; if (this.getItemAt(_local2 == undefined)) { this.changeFlag = false; return(undefined); } this.changeFlag = true; this.clearSelected(); this.selectItem(_local2, true); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); }; FSelectableListClass.prototype.moveSelBy = function (incr) { var _local3 = this.getSelectedIndex(); var _local2 = _local3 + incr; _local2 = Math.max(0, _local2); _local2 = Math.min(this.getLength() - 1, _local2); if (_local2 == _local3) { return(undefined); } if ((_local3 < this.topDisplayed) || (_local3 >= (this.topDisplayed + this.numDisplayed))) { this.setScrollPosition(_local3); } if ((_local2 >= (this.topDisplayed + this.numDisplayed)) || (_local2 < this.topDisplayed)) { this.setScrollPosition(this.topDisplayed + incr); } this.selectionHandler(_local2 - this.topDisplayed); }; FSelectableListClass.prototype.clickHandler = function (itmNum) { this.focusRect.removeMovieClip(); if (!this.focused) { this.pressFocus(); } this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FSelectableListClass.prototype.releaseHandler = function () { if (this.changeFlag) { this.executeCallBack(); } this.changeFlag = false; this.onMouseUp = undefined; }; FSelectableListClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("enabled"); _local3++; } }; FSelectableListClass.prototype.myOnKillFocus = function () { super.myOnKillFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("unfocused"); _local3++; } }; #endinitclip
Instance of Symbol 363 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 365 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Instance of Symbol 364 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 365 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 366 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 120 function FScrollSelectListClass() { this.init(); } FScrollSelectListClass.prototype = new FSelectableListClass(); FScrollSelectListClass.prototype.getScrollPosition = function () { return(this.topDisplayed); }; FScrollSelectListClass.prototype.setScrollPosition = function (pos) { if (this.enable) { pos = Math.min(pos, this.getLength() - this.numDisplayed); pos = Math.max(pos, 0); this.scrollBar_mc.setScrollPosition(pos); } }; FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) { this.permaScrollBar = !flag; this.setSize(this.width, this.height); }; FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) { super.setEnabled(enabledFlag); this.scrollBar_mc.setEnabled(this.enable); }; FScrollSelectListClass.prototype.setSize = function (w, h) { var _local3 = this.getScrollPosition(); super.setSize(w, h); if (this.scrollBar_mc != undefined) { this.removed = true; } this.scrollBar_mc = undefined; this.initScrollBar(); this.setScrollPosition(_local3); }; FScrollSelectListClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); this.invalidate("initScrollBar"); }; FScrollSelectListClass.prototype.initScrollBar = function () { if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) { if (this.removed) { this.scrollBar_mc.removeMovieClip(); this.scrollBar_mc = undefined; this.scrollOffset = undefined; this.invalidate("setSize"); } } else { if (this.scrollBar_mc == undefined) { this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable}); this.scrollBar_mc = this.container_mc.scrollBar_mc; this.scrollBar_mc.setChangeHandler("scrollHandler", this); this.scrollBar_mc.setSize(this.height); this.scrollBar_mc._x = this.width - this.scrollBar_mc._width; this.scrollBar_mc._y = 0; this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1); this.scrollOffset = this.scrollBar_mc._width; this.invalidate("setSize"); } this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed); } }; FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) { var _local2 = scrollBar.getScrollPosition(); this.topDisplayed = _local2; if (this.lastPosition != _local2) { this.updateControl(); } this.lastPosition = _local2; }; FScrollSelectListClass.prototype.clickHandler = function (itmNum) { super.clickHandler(itmNum); if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.releaseHandler = function () { clearInterval(this.dragScrolling); this.dragScrolling = undefined; super.releaseHandler(); }; FScrollSelectListClass.prototype.dragScroll = function () { clearInterval(this.dragScrolling); if (this.container_mc._ymouse < 0) { this.setScrollPosition(this.getScrollPosition() - 1); this.selectionHandler(0); this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) { this.setScrollPosition(this.getScrollPosition() + 1); this.selectionHandler(this.numDisplayed - 1); this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.myOnKeyDown = function () { if (this.focused) { this.keyCodes = new Array(40, 38, 34, 33, 36, 35); this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength()); var _local2 = 0; while (_local2 < this.keyCodes.length) { if (Key.isDown(this.keyCodes[_local2])) { this.moveSelBy(this.keyIncrs[_local2]); return(undefined); } _local2++; } this.findInputText(); } }; FScrollSelectListClass.prototype.findInputText = function () { var _local2 = Key.getAscii(); if ((_local2 >= 33) && (_local2 <= 126)) { this.findString(String.fromCharCode(_local2)); } }; FScrollSelectListClass.prototype.findString = function (str) { if (this.getLength() == 0) { return(undefined); } var _local4 = this.getSelectedIndex(); var _local6 = 0; var _local2 = _local4 + 1; while (_local2 != _local4) { var _local3 = this.getItemAt(_local2).label.substring(0, str.length); if ((str == _local3) || (str.toUpperCase() == _local3.toUpperCase())) { _local6 = _local2 - _local4; break; } if (_local2 >= (this.getLength() - 1)) { _local2 = -1; } _local2++; } if (_local6 != 0) { this.moveSelBy(_local6); } }; #endinitclip
Instance of Symbol 362 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 366 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = ""; horizontal = false; } onClipEvent (load) { this._width = (this._height = 1); }
Instance of Symbol 365 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 366 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 368 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 368 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 370 MovieClip [FListBoxSymbol] Frame 1
#initclip 129 function FListBoxClass() { this.itemSymbol = "FListItemSymbol"; this.init(); this.permaScrollBar = true; var _local2 = 0; while (_local2 < this.labels.length) { this.addItem(this.labels[_local2], this.data[_local2]); _local2++; } this.boundingBox_mc.gotoAndStop(1); this.width = this._width; this.height = this._height; this._yscale = (this._xscale = 100); this.setSize(this.width, this.height); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.columnsNum = 0; this.columnWidths = undefined; this.disableFormatting = false; } FListBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FListBoxSymbol", FListBoxClass); FListBoxClass.prototype.getSelectedIndices = function () { var _local2 = new Array(); for (var _local3 in this.selected) { _local2.push(this.selected[_local3].sIndex); } return(((_local2.length > 0) ? (_local2) : undefined)); }; FListBoxClass.prototype.getSelectedItems = function () { var _local3 = this.getSelectedIndices(); var _local4 = new Array(); var _local2 = 0; while (_local2 < _local3.length) { _local4.push(this.getItemAt(_local3[_local2])); _local2++; } return(((_local4.length > 0) ? (_local4) : undefined)); }; FListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; FListBoxClass.prototype.getRowCount = function () { return(this.numDisplayed); }; FListBoxClass.prototype.setSelectedIndices = function (indexArray) { this.clearSelected(); var _local2 = 0; while (_local2 < indexArray.length) { this.selectItem(indexArray[_local2], true); _local2++; } this.updateControl(); }; FListBoxClass.prototype.setSelectMultiple = function (flag) { this.selectMultiple = flag; }; FListBoxClass.prototype.setRowCount = function (count) { var _local2 = (count * (this.itmHgt - 2)) + 2; this.setSize(this.width, _local2); }; FListBoxClass.prototype.setWidth = function (wdt) { this.setSize(wdt, this.height); }; FListBoxClass.prototype.setSize = function (w, h) { if (!this.enable) { return(undefined); } w = Math.max(w, 20); h = Math.max(h, 40); this.container_mc.removeMovieClip(); this.container_mc = this.createEmptyMovieClip("container", 3); this.measureItmHgt(); this.numDisplayed = Math.floor(h / (this.itmHgt - 2)); this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); }; FListBoxClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndices(); return(super.removeItemAt(index)); }; FListBoxClass.prototype.selectionHandler = function (itemNum) { if (this.clickFilter) { var _local3 = this.topDisplayed + itemNum; if (this.getItemAt(_local3) == undefined) { this.changeFlag = false; return(undefined); } this.changeFlag = true; if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { this.clearSelected(); this.selectItem(_local3, true); this.lastSelected = _local3; this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (Key.isDown(16) && (this.selectMultiple)) { if (this.lastSelected == -1) { this.lastSelected = _local3; } var _local4 = ((this.lastSelected < _local3) ? 1 : -1); this.clearSelected(); var _local2 = this.lastSelected; while (_local2 != _local3) { this.selectItem(_local2, true); if ((_local2 >= this.topDisplayed) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); } _local2 = _local2 + _local4; } this.selectItem(_local3, true); this.container_mc[("fListItem" + (_local3 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (key.isDown(17)) { var _local6 = this.isSelected(_local3); if (!this.selectMultiple) { this.clearSelected(); } if (!((!this.selectMultiple) && (_local6))) { this.selectItem(_local3, !_local6); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum)); } this.lastSelected = _local3; } } else { this.clickFilter = true; } }; FListBoxClass.prototype.moveSelBy = function (itemNum) { super.moveSelBy(itemNum); this.releaseHandler(); }; FListBoxClass.prototype.setColumns = function (columns_num) { this.columnsNum = columns_num; }; FListBoxClass.prototype.setColumnsWidth = function (args) { this.columnWidths = args; }; FListBoxClass.prototype.sortByColumn = function (column_name, order) { this.dataProvider.sortByColumn(column_name, order); }; FListBoxClass.prototype.removeBoundingBox = function () { this.boundingBox_mc._visible = false; }; FListBoxClass.prototype.disableTextFormat = function (disable) { this.disableFormatting = disable; }; FListBoxClass.prototype.Refresh = function () { this.dataProvider.updateViews({event:"sort"}); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 366 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 370 MovieClip [FListBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 371 MovieClip [FUIComponentSymbol] Frame 1
#initclip 90 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var _local3 in this.styleFormat_prm) { this.setStyleProperty(_local3, this.styleFormat_prm[_local3]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var _local2 in this.methodTable) { this[_local2](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var _local4 = this.styleTable.focusRectInner.value; var _local5 = this.styleTable.focusRectOuter.value; if (_local4 == undefined) { _local4 = 16777215 /* 0xFFFFFF */; } if (_local5 == undefined) { _local5 = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, _local5); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, _local4); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var _local17 = parseInt(value); if (!isNaN(_local17)) { value = _local17; } var _local16 = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!_local16)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var _local18 = propName.subString(4, propName.length); this.textStyle[_local18] = value; this.invalidate("setSize"); } else { for (var _local15 in this.styleTable[propName].coloredMCs) { var _local4 = new Color(this.styleTable[propName].coloredMCs[_local15]); if (this.styleTable[propName].value == undefined) { var _local5 = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; _local4.setTransform(_local5); } else { _local4.setRGB(value); } } } this.styleTable[propName].useGlobal = _local16; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var _local3 = new Color(skinMCRef); _local3.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var _local3 in arguments[0]) { this[_local3] = arguments[0][_local3]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var _local3 = 0; while (_local3 < arguments.length) { var _local4 = arguments[_local3]; this.listeners[arguments[_local3]] = _local4; for (var _local5 in this) { if (this.isAStyle(_local5)) { _local4.updateStyleProperty(this, _local5.toString()); } } _local3++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var _local4 in this) { if (this.isAStyle(_local4)) { if (component.styleTable[_local4].useGlobal == this.isGlobal) { component.styleTable[_local4].useGlobal = true; var _local3 = (this.isGlobal ? undefined : (globalStyleFormat[_local4])); component.setStyleProperty(_local4, _local3, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var _local6 = 0; for (var _local5 in this.listeners) { var _local3 = this.listeners[_local5]; if (arguments.length > 0) { var _local4 = 0; while (_local4 < arguments.length) { if (this.isAStyle(arguments[_local4])) { _local3.updateStyleProperty(this, arguments[_local4]); } _local4++; } } else { for (var _local4 in this) { if (this.isAStyle(_local4)) { _local3.updateStyleProperty(this, _local4.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 378 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 385 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 392 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 393 MovieClip [UpArrow] Frame 1
stop();
Symbol 393 MovieClip [UpArrow] Frame 2
stop();
Symbol 393 MovieClip [UpArrow] Frame 3
stop();
Symbol 398 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 404 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 408 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(highlight3D_mc, "highlight3D"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");
Symbol 409 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 416 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 423 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 430 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 431 MovieClip [DownArrow] Frame 1
stop();
Symbol 431 MovieClip [DownArrow] Frame 2
stop();
Symbol 431 MovieClip [DownArrow] Frame 3
stop();
Symbol 433 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller; component.registerSkinElement(highlight_mc, "selection"); stop();
Symbol 433 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled"); stop();
Symbol 433 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused"); stop();
Symbol 435 MovieClip [FLabelSymbol] Frame 1
#initclip 91 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var _local2 = this.hostComponent.styleTable.embedFonts.value; if (_local2 != undefined) { this.labelField.embedFonts = _local2; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var _local2 = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } this.setColor(_local2); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 437 MovieClip [mcVoiceImage] Frame 1
stop();
Symbol 444 MovieClip Frame 4
if (_parent.firstRun) { _parent.duplicateMC(this); }
Symbol 444 MovieClip Frame 21
stop(); _parent.duplicateMC(this);
Symbol 445 MovieClip [mcSquares] Frame 1
function duplicateMC(oObj) { oObj.stop(); duplicateMovieClip (oObj, "newsquare" + counter, counter + 100); eval ("newsquare" + counter)._x = 7 * counter; if ((counter % maxSquares) == 0) { _parent.SAMoveObj(this, (-7 * (counter - midSquares)) + 1, null, _parent.movingObjCounter, "ease"); clearSquaresInterval = setInterval(clearSquares, 1200, counter); firstRun = false; } counter++; } function clearSquares(counter) { clearInterval(clearSquaresInterval); x = ((counter - maxSquares) - midSquares) - 1; while (x < ((counter - midSquares) - 1)) { removeMovieClip(eval ("newsquare" + x)); square_mc._x = (counter * 7) + 150; square_mc._visible = false; x++; } } var counter = 1; var clearSquaresInterval; var midSquares = 1; var maxSquares = 12; var firstRun = true;
Symbol 446 MovieClip [mProgress] Frame 1
function SAMoveObj(oObj, xLoc, yLoc, objIndex, tweenType) { if (!inMovement[objIndex]) { if (oObj.inMovement) { clearInterval(movementInterval[oObj.objIndex]); } inMovement[objIndex] = true; oObj.inMovement = inMovement[objIndex]; oObj.objIndex = objIndex; movementInterval[objIndex] = setInterval(SAMoveObj, 40, oObj, xLoc, yLoc, objIndex, tweenType); movingObjCounter = movingObjCounter + 1; } if (eval (tweenType)(oObj, xLoc, yLoc, objIndex)) { inMovement[objIndex] = false; oObj.inMovement = inMovement[objIndex]; clearInterval(movementInterval[objIndex]); } } function ease(oObj, xLoc, yLoc, objIndex) { gotolocX[objIndex] = oObj._x - ((oObj._x - xLoc) / easingSpeed); gotolocY[objIndex] = oObj._y - ((oObj._y - yLoc) / easingSpeed); oObj._x = gotolocX[objIndex]; if (yLoc != null) { oObj._y = gotolocY[objIndex]; } if ((Math.round(oObj._x) < (xLoc + (easingSpeed / 6))) && (Math.round(oObj._x) > (xLoc - (easingSpeed / 6)))) { return(true); } } stop(); var easingSpeed = 6; var inMovement = new Array(); var movementInterval = new Array(); var movingObjCounter = 0; var gotolocX = new Array(); var gotolocY = new Array();
Symbol 451 Button
on (release, keyPress "<Enter>") { _root.CloseCallDlg(); }
Symbol 453 Button
on (press) { startDrag (this); } on (release) { stopDrag(); }
Symbol 460 Button
on (release) { _root.CloseCallDlg(); }
Symbol 461 MovieClip [mcCall] Frame 1
#initclip 121 function cVoiceChatDlg() { super(); } cVoiceChatDlg.prototype = new MovieClip(); Object.registerClass("mcCall", cVoiceChatDlg); cVoiceChatDlg.prototype.ShowProgress = function (b_show) { this.mcProgressBar._visible = b_show; }; cVoiceChatDlg.prototype.StopProgress = function () { this.mcProgressBar.stop(); }; cVoiceChatDlg.prototype.RestartProgress = function () { this.mcProgressBar.gotoAndPlay(1); }; cVoiceChatDlg.prototype.DisplayMsg = function (msg) { this.txtCallStatus.htmlText = msg; }; cVoiceChatDlg.prototype.SetTitle = function (title) { this.lblCall.text = title; }; #endinitclip stop(); this.swapDepths(20001); lblCall.text = _root.g_sVCTitle;
Symbol 464 MovieClip [callButtonSkin] Frame 1
stop();
Symbol 465 MovieClip [ListCell] Frame 1
#initclip 93 Object.registerClass("ListCell", ListCell); #endinitclip stop();
Symbol 466 MovieClip [FListItemSymbol] Frame 1
#initclip 126 function FListItemClass() { this.init(); } FListItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FListItemSymbol", FListItemClass); FListItemClass.prototype.init = function (columns) { super.init(); }; FListItemClass.prototype.createColumns = function (width) { var _local4 = 2; var _local3 = width / this.controller.columnsNum; var _local2 = 0; while (_local2 < this.controller.columnsNum) { if (this.controller.columnWidths != undefined) { _local3 = int((this.controller.columnWidths[_local2] / 100) * width); } this.attachMovie("FLabelSymbol", "fcolumn_mc" + _local2, 10 + _local2, {hostComponent:this.controller}); this["fcolumn_mc" + _local2]._x = _local4; this["fcolumn_mc" + _local2]._y = 0; this["fcolumn_mc" + _local2].setSize(_local3 - 2); this["fcolumn_mc" + _local2].labelField.selectable = false; _local4 = _local4 + _local3; _local2++; } }; FListItemClass.prototype.layoutContent = function (width) { if (this.controller.columnsNum > 0) { this.createColumns(width); } else { super.layoutContent(width); } }; FListItemClass.prototype.displayFormattedLabel = function (txt_obj, the_text, selected) { var _local2 = null; if (txt_obj.labelField.text != the_text) { _local2 = new ParseText(the_text); txt_obj.setLabel(_local2.realText); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } txt_obj.setColor(_local5); if (_local2 != null) { if (!this.controller.disableFormatting) { i = 0; while (i < _local2.tfArray.length) { var _local3 = _local2.realLen + 1; if (_local2.tfArray[i + 1] != null) { _local3 = _local2.tfArray[i + 1].color_idx; } txt_obj.labelField.SetTextFormat(_local2.tfArray[i].color_idx, _local3, _local2.tfArray[i].tf); i++; } } } }; FListItemClass.prototype.displayContent = function (itmObj, selected) { if (this.controller.columnsNum > 0) { this.displayColumns(itmObj, selected); } else { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } this.displayFormattedLabel(this.fLabel_mc, _local2, selected); } }; FListItemClass.prototype.displayColumns = function (itmObj, selected) { var _local2 = 0; for (c in itmObj.data) { this.displayFormattedLabel(this["fcolumn_mc" + _local2], itmObj.data[c]); _local2++; } }; #endinitclip
Symbol 468 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 469 MovieClip [FScrollBarSymbol] Frame 1
#initclip 111 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var _local2 = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; _local2 = Math.min(_local2, this.maxPos); this.setScrollPosition(Math.max(_local2, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var _local3 = this.enable; if (enabledFlag && (!_local3)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (_local3)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var _local3 = this.smallScroll; if (inc != "one") { _local3 = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var _local2 = this.getScrollPosition() + (mode * _local3); if (_local2 > this.maxPos) { _local2 = this.maxPos; } else if (_local2 < this.minPos) { _local2 = this.minPos; } this.setScrollPosition(_local2); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var _local2 = this.controller; _local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (this._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("length"); this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } this.textField = tF; this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this; this.onTextChanged(); this.onChanged = function () { this.onTextChanged(); }; this.onScroller = function () { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } }; this.textField.addListener(this); this.textField.watch("length", this.callback); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); }; FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return(newVal); }; FScrollBarClass.prototype.onTextChanged = function () { if ((!this.enable) || (this.textField == undefined)) { return(undefined); } clearInterval(this.synchScroll); if (this.horizontal) { var _local2 = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxhscroll)); } else { var _local2 = this.textField.scroll; var _local3 = this.textField.bottomScroll - this.textField.scroll; this.setScrollProperties(_local3, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(_local2, this.textField.maxscroll)); } }; FScrollBarClass.prototype.executeCallBack = function () { if (this.textField == undefined) { super.executeCallBack(); } else if (this.horizontal) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } }; Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip
Symbol 470 MovieClip [DataProviderSymbol] Frame 1
#initclip 94 _global.DataProviderClass = function () { this.init(); }; DataProviderClass.prototype.init = function () { this.items = new Array(); this.uniqueID = 0; this.views = new Array(); }; DataProviderClass.prototype.addView = function (viewRef) { this.views.push(viewRef); var _local2 = {event:"updateAll"}; viewRef.modelChanged(_local2); }; DataProviderClass.prototype.addItemAt = function (index, value) { if (index < this.getLength()) { this.items.splice(index, 0, "tmp"); } this.items[index] = new Object(); if (typeof(value) == "object") { this.items[index] = value; } else { this.items[index].label = value; } this.items[index].__ID__ = this.uniqueID++; var _local4 = {event:"addRows", firstRow:index, lastRow:index}; this.updateViews(_local4); }; DataProviderClass.prototype.addItem = function (value) { this.addItemAt(this.getLength(), value); }; DataProviderClass.prototype.removeItemAt = function (index) { var _local4 = this.items[index]; this.items.splice(index, 1); var _local3 = {event:"deleteRows", firstRow:index, lastRow:index}; this.updateViews(_local3); return(_local4); }; DataProviderClass.prototype.removeAll = function () { this.items = new Array(); this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1}); }; DataProviderClass.prototype.replaceItemAt = function (index, itemObj) { if ((index < 0) || (index >= this.getLength())) { return(undefined); } var _local3 = this.getItemID(index); if (typeof(itemObj) == "object") { this.items[index] = itemObj; } else { this.items[index].label = itemObj; } this.items[index].__ID__ = _local3; this.updateViews({event:"updateRows", firstRow:index, lastRow:index}); }; DataProviderClass.prototype.getLength = function () { return(this.items.length); }; DataProviderClass.prototype.getItemAt = function (index) { return(this.items[index]); }; DataProviderClass.prototype.getItemID = function (index) { return(this.items[index].__ID__); }; DataProviderClass.prototype.sortItemsBy = function (fieldName, order) { this.items.sortOn(fieldName); if (order == "DESC") { this.items.reverse(); } this.updateViews({event:"sort"}); }; DataProviderClass.prototype.sortByColumn = function (fieldName, order) { var _local3 = new Array(); var _local2 = 0; while (_local2 < this.items.length) { _local3.push({idx:this.items[_local2].data[fieldName], data:this.items[_local2].data, label:this.items[_local2].label}); _local2++; } if (isNaN(idx)) { _local3.sortOn("idx"); } else { _local3.sort(function (a, b) { if (a.idx > b.idx) { return(1); } if (b.idx > a.idx) { return(-1); } return(0); }); } if (order == "DESC") { _local3.reverse(); } this.removeAll(); _local2 = 0; while (_local2 < _local3.length) { this.addItem({label:_local3[_local2].label, data:_local3[_local2].data}); _local2++; } }; DataProviderClass.prototype.updateViews = function (eventObj) { var _local2 = 0; while (_local2 < this.views.length) { this.views[_local2].modelChanged(eventObj); _local2++; } }; #endinitclip
Symbol 471 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 117 function FSelectableItemClass() { this.init(); } FSelectableItemClass.prototype = new FUIComponentClass(); FSelectableItemClass.prototype.init = function () { if (this._name != "itemAsset") { this.highlighted = false; this.layoutContent(100); } }; FSelectableItemClass.prototype.drawItem = function (itmObj, selected) { this.displayContent(itmObj, selected); if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) { this.setHighlighted(selected); } this.oldFocus = this.controller.focused; }; FSelectableItemClass.prototype.setSize = function (width, height) { var _local2 = -16384; this.width = width; this.layoutContent(width); this.attachMovie("FHighlightSymbol", "highlight_mc", _local2); this.highlight_mc._x = 0.5; this.highlight_mc._width = width - 0.5; this.highlight_mc._height = height; this.highlight_mc.controller = this; this.highlight_mc._alpha = 0; this.highlight_mc.trackAsMenu = true; this.highlight_mc.onPress = function () { if (this.controller.enable) { this.controller.controller.clickHandler(this.controller.itemNum); } }; this.highlight_mc.onDragOver = function () { if (this.controller.controller.focused) { this.onPress(); } }; this.highlight_mc.useHandCursor = false; this.highlight_mc.trackAsMenu = true; }; FSelectableItemClass.prototype.setEnabled = function (enabledFlag) { this.enable = enabledFlag; this.fLabel_mc.setEnabled(enabledFlag); this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled")); }; FSelectableItemClass.prototype.layoutContent = function (width) { this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller}); this.fLabel_mc._x = 2; this.fLabel_mc._y = 0; this.fLabel_mc.setSize(width - 2); this.fLabel_mc.labelField.selectable = false; }; FSelectableItemClass.prototype.displayContent = function (itmObj, selected) { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } if (this.fLabel_mc.labelField.text != _local2) { this.fLabel_mc.setLabel(_local2); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } this.fLabel_mc.setColor(_local5); }; FSelectableItemClass.prototype.getItemIndex = function () { return(this.controller.getScrollPosition() + this.itemNum); }; FSelectableItemClass.prototype.getItemModel = function () { return(this.controller.getItemAt(this.getItemIndex())); }; FSelectableItemClass.prototype.getHostDataProvider = function () { return(this.controller.dataProvider); }; FSelectableItemClass.prototype.setHighlighted = function (flag) { fade = this.controller.styleTable.fadeRate.value; if (((fade == undefined) || (fade == 0)) || (!flag)) { this.highlight_mc._alpha = (flag ? 100 : 0); delete this.onEnterFrame; } else { this.fadeN = fade; this.fadeX = 1; this.highLight_mc._alpha = 20; this.onEnterFrame = function () { this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40; if (this.fadeX > this.fadeN) { delete this.onEnterFrame; } }; } this.highlighted = flag; }; #endinitclip
Symbol 472 MovieClip [FSelectableListSymbol] Frame 1
#initclip 98 function FSelectableListClass() { this.init(); } FSelectableListClass.prototype = new FUIComponentClass(); FSelectableListClass.prototype.init = function () { super.init(); this.enable = true; this.selected = new Array(); this.topDisplayed = 0; this.numDisplayed = 0; this.lastSelected = 0; this.tabChildren = false; if (this._name != undefined) { this.dataProvider = new DataProviderClass(); this.dataProvider.addView(this); } }; FSelectableListClass.prototype.addItemAt = function (index, label, data) { if ((index < 0) || (!this.enable)) { return(undefined); } this.dataProvider.addItemAt(index, {label:label, data:data}); }; FSelectableListClass.prototype.addItem = function (label, data) { if (!this.enable) { return(undefined); } this.dataProvider.addItem({label:label, data:data}); }; FSelectableListClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndex(); var _local2 = this.getItemAt(index); this.dataProvider.removeItemAt(index); return(_local2); }; FSelectableListClass.prototype.removeAll = function () { this.dataProvider.removeAll(); }; FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) { this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); }; FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) { this.lastSelID = this.dataProvider.getItemID(this.lastSelected); this.dataProvider.sortItemsBy(fieldName, order); }; FSelectableListClass.prototype.getLength = function () { return(this.dataProvider.getLength()); }; FSelectableListClass.prototype.getSelectedIndex = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (_local2 != undefined) { return(_local2); } } }; FSelectableListClass.prototype.getSelectedItem = function () { return(this.getItemAt(this.getSelectedIndex())); }; FSelectableListClass.prototype.getItemAt = function (index) { return(this.dataProvider.getItemAt(index)); }; FSelectableListClass.prototype.getEnabled = function () { return(this.enable); }; FSelectableListClass.prototype.getValue = function () { var _local2 = this.getSelectedItem(); return(((_local2.data == undefined) ? (_local2.label) : (_local2.data))); }; FSelectableListClass.prototype.setSelectedIndex = function (index, flag) { if (((index >= 0) && (index < this.getLength())) && (this.enable)) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.invalidate("updateControl"); if (flag != false) { this.executeCallBack(); } } }; FSelectableListClass.prototype.setDataProvider = function (obj) { this.setScrollPosition(0); this.clearSelected(); if (obj instanceof Array) { this.dataProvider = new DataProviderClass(); var _local2 = 0; while (_local2 < obj.length) { var _local4 = ((typeof(obj[_local2]) == "string") ? ({label:obj[_local2]}) : (obj[_local2])); this.dataProvider.addItem(_local4); _local2++; } } else { this.dataProvider = obj; } this.dataProvider.addView(this); }; FSelectableListClass.prototype.setItemSymbol = function (linkID) { this.tmpPos = this.getScrollPosition(); this.itemSymbol = linkID; this.invalidate("setSize"); this.setScrollPosition(this.tmpPos); }; FSelectableListClass.prototype.setEnabled = function (enabledFlag) { this.cleanUI(); super.setEnabled(enabledFlag); this.enable = enabledFlag; this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); var _local4 = Math.min(this.numDisplayed, this.getLength()); var _local3 = 0; while (_local3 < _local4) { this.container_mc[("fListItem" + _local3) + "_mc"].setEnabled(this.enable); _local3++; } if (this.enable) { this.invalidate("updateControl"); } }; FSelectableListClass.prototype.updateControl = function () { var _local2 = 0; while (_local2 < this.numDisplayed) { this.container_mc[("fListItem" + _local2) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + _local2), this.isSelected(this.topDisplayed + _local2)); _local2++; } }; FSelectableListClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100); this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width; this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height; var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + _local3) + "_mc", 10 + _local3, {controller:this, itemNum:_local3}); var _local4 = this.container_mc[("fListItem" + _local3) + "_mc"]; var _local5 = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset)); _local4.setSize(this.width - _local5, this.itmHgt); _local4._y = (this.itmHgt - 2) * _local3; _local3++; } this.updateControl(); }; FSelectableListClass.prototype.modelChanged = function (eventObj) { var _local4 = eventObj.firstRow; var _local6 = eventObj.lastRow; var _local8 = eventObj.event; if (_local8 == "addRows") { for (var _local2 in this.selected) { if ((this.selected[_local2].sIndex != undefined) && (this.selected[_local2].sIndex >= _local4)) { this.selected[_local2].sIndex = this.selected[_local2].sIndex + ((_local6 - _local4) + 1); this.setSelectedIndex(this.selected[_local2].sIndex, false); } } } else if (_local8 == "deleteRows") { if (_local4 == _local6) { var _local5 = _local4; if (this.selectHolder == _local5) { this.selectionDeleted = true; } if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) { this.topDisplayed--; if (this.selectionDeleted && ((_local5 - 1) >= 0)) { this.setSelectedIndex(_local5 - 1, false); } } else if (this.selectionDeleted) { var _local7 = this.getLength(); if (((_local5 == (_local7 - 1)) && (_local7 > 1)) || (_local5 > (_local7 / 2))) { this.setSelectedIndex(_local5 - 1, false); } else { this.setSelectedIndex(_local5, false); } } for (var _local2 in this.selected) { if (this.selected[_local2].sIndex > _local4) { this.selected[_local2].sIndex--; } } } else { this.clearSelected(); this.topDisplayed = 0; } } else if (_local8 == "sort") { var _local7 = this.getLength(); var _local2 = 0; while (_local2 < _local7) { if (this.isSelected(_local2)) { var _local3 = this.dataProvider.getItemID(_local2); if (_local3 == this.lastSelID) { this.lastSelected = _local2; } this.selected[String(_local3)].sIndex = _local2; } _local2++; } } this.invalidate("updateControl"); }; FSelectableListClass.prototype.measureItmHgt = function () { this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this}); this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false); this.itmHgt = this.tmpItem_mc._height; this.tmpItem_mc.removeMovieClip(); }; FSelectableListClass.prototype.selectItem = function (index, selectedFlag) { if (selectedFlag && (!this.isSelected(index))) { this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index}; } else if (!selectedFlag) { delete this.selected[String(this.dataProvider.getItemID(index))]; } }; FSelectableListClass.prototype.isSelected = function (index) { return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined); }; FSelectableListClass.prototype.clearSelected = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (((_local2 != undefined) && (this.topDisplayed <= _local2)) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), false); } } delete this.selected; this.selected = new Array(); }; FSelectableListClass.prototype.selectionHandler = function (itemNum) { var _local2 = this.topDisplayed + itemNum; if (this.getItemAt(_local2 == undefined)) { this.changeFlag = false; return(undefined); } this.changeFlag = true; this.clearSelected(); this.selectItem(_local2, true); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); }; FSelectableListClass.prototype.moveSelBy = function (incr) { var _local3 = this.getSelectedIndex(); var _local2 = _local3 + incr; _local2 = Math.max(0, _local2); _local2 = Math.min(this.getLength() - 1, _local2); if (_local2 == _local3) { return(undefined); } if ((_local3 < this.topDisplayed) || (_local3 >= (this.topDisplayed + this.numDisplayed))) { this.setScrollPosition(_local3); } if ((_local2 >= (this.topDisplayed + this.numDisplayed)) || (_local2 < this.topDisplayed)) { this.setScrollPosition(this.topDisplayed + incr); } this.selectionHandler(_local2 - this.topDisplayed); }; FSelectableListClass.prototype.clickHandler = function (itmNum) { this.focusRect.removeMovieClip(); if (!this.focused) { this.pressFocus(); } this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FSelectableListClass.prototype.releaseHandler = function () { if (this.changeFlag) { this.executeCallBack(); } this.changeFlag = false; this.onMouseUp = undefined; }; FSelectableListClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("enabled"); _local3++; } }; FSelectableListClass.prototype.myOnKillFocus = function () { super.myOnKillFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("unfocused"); _local3++; } }; #endinitclip
Instance of Symbol 470 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 472 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Instance of Symbol 471 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 472 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 473 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 115 function FScrollSelectListClass() { this.init(); } FScrollSelectListClass.prototype = new FSelectableListClass(); FScrollSelectListClass.prototype.getScrollPosition = function () { return(this.topDisplayed); }; FScrollSelectListClass.prototype.setScrollPosition = function (pos) { if (this.enable) { pos = Math.min(pos, this.getLength() - this.numDisplayed); pos = Math.max(pos, 0); this.scrollBar_mc.setScrollPosition(pos); } }; FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) { this.permaScrollBar = !flag; this.setSize(this.width, this.height); }; FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) { super.setEnabled(enabledFlag); this.scrollBar_mc.setEnabled(this.enable); }; FScrollSelectListClass.prototype.setSize = function (w, h) { var _local3 = this.getScrollPosition(); super.setSize(w, h); if (this.scrollBar_mc != undefined) { this.removed = true; } this.scrollBar_mc = undefined; this.initScrollBar(); this.setScrollPosition(_local3); }; FScrollSelectListClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); this.invalidate("initScrollBar"); }; FScrollSelectListClass.prototype.initScrollBar = function () { if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) { if (this.removed) { this.scrollBar_mc.removeMovieClip(); this.scrollBar_mc = undefined; this.scrollOffset = undefined; this.invalidate("setSize"); } } else { if (this.scrollBar_mc == undefined) { this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable}); this.scrollBar_mc = this.container_mc.scrollBar_mc; this.scrollBar_mc.setChangeHandler("scrollHandler", this); this.scrollBar_mc.setSize(this.height); this.scrollBar_mc._x = this.width - this.scrollBar_mc._width; this.scrollBar_mc._y = 0; this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1); this.scrollOffset = this.scrollBar_mc._width; this.invalidate("setSize"); } this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed); } }; FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) { var _local2 = scrollBar.getScrollPosition(); this.topDisplayed = _local2; if (this.lastPosition != _local2) { this.updateControl(); } this.lastPosition = _local2; }; FScrollSelectListClass.prototype.clickHandler = function (itmNum) { super.clickHandler(itmNum); if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.releaseHandler = function () { clearInterval(this.dragScrolling); this.dragScrolling = undefined; super.releaseHandler(); }; FScrollSelectListClass.prototype.dragScroll = function () { clearInterval(this.dragScrolling); if (this.container_mc._ymouse < 0) { this.setScrollPosition(this.getScrollPosition() - 1); this.selectionHandler(0); this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) { this.setScrollPosition(this.getScrollPosition() + 1); this.selectionHandler(this.numDisplayed - 1); this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.myOnKeyDown = function () { if (this.focused) { this.keyCodes = new Array(40, 38, 34, 33, 36, 35); this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength()); var _local2 = 0; while (_local2 < this.keyCodes.length) { if (Key.isDown(this.keyCodes[_local2])) { this.moveSelBy(this.keyIncrs[_local2]); return(undefined); } _local2++; } this.findInputText(); } }; FScrollSelectListClass.prototype.findInputText = function () { var _local2 = Key.getAscii(); if ((_local2 >= 33) && (_local2 <= 126)) { this.findString(String.fromCharCode(_local2)); } }; FScrollSelectListClass.prototype.findString = function (str) { if (this.getLength() == 0) { return(undefined); } var _local4 = this.getSelectedIndex(); var _local6 = 0; var _local2 = _local4 + 1; while (_local2 != _local4) { var _local3 = this.getItemAt(_local2).label.substring(0, str.length); if ((str == _local3) || (str.toUpperCase() == _local3.toUpperCase())) { _local6 = _local2 - _local4; break; } if (_local2 >= (this.getLength() - 1)) { _local2 = -1; } _local2++; } if (_local6 != 0) { this.moveSelBy(_local6); } }; #endinitclip
Instance of Symbol 469 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 473 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = ""; horizontal = false; } onClipEvent (load) { this._width = (this._height = 1); }
Instance of Symbol 472 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 473 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 475 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 475 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 477 MovieClip [FListBoxSymbol] Frame 1
#initclip 132 function FListBoxClass() { this.itemSymbol = "FListItemSymbol"; this.init(); this.permaScrollBar = true; var _local2 = 0; while (_local2 < this.labels.length) { this.addItem(this.labels[_local2], this.data[_local2]); _local2++; } this.boundingBox_mc.gotoAndStop(1); this.width = this._width; this.height = this._height; this._yscale = 100; this._xscale = 100; this.setSize(this.width, this.height); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.columnsNum = 0; this.columnWidths = undefined; this.disableFormatting = false; } FListBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FListBoxSymbol", FListBoxClass); FListBoxClass.prototype.getSelectedIndices = function () { var _local2 = new Array(); for (var _local3 in this.selected) { _local2.push(this.selected[_local3].sIndex); } return(((_local2.length > 0) ? (_local2) : undefined)); }; FListBoxClass.prototype.getSelectedItems = function () { var _local3 = this.getSelectedIndices(); var _local4 = new Array(); var _local2 = 0; while (_local2 < _local3.length) { _local4.push(this.getItemAt(_local3[_local2])); _local2++; } return(((_local4.length > 0) ? (_local4) : undefined)); }; FListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; FListBoxClass.prototype.getRowCount = function () { return(this.numDisplayed); }; FListBoxClass.prototype.setSelectedIndices = function (indexArray) { this.clearSelected(); var _local2 = 0; while (_local2 < indexArray.length) { this.selectItem(indexArray[_local2], true); _local2++; } this.updateControl(); }; FListBoxClass.prototype.setSelectMultiple = function (flag) { this.selectMultiple = flag; }; FListBoxClass.prototype.setRowCount = function (count) { var _local2 = (count * (this.itmHgt - 2)) + 2; this.setSize(this.width, _local2); }; FListBoxClass.prototype.setWidth = function (wdt) { this.setSize(wdt, this.height); }; FListBoxClass.prototype.setSize = function (w, h) { if (!this.enable) { return(undefined); } w = Math.max(w, 20); h = Math.max(h, 40); this.container_mc.removeMovieClip(); this.container_mc = this.createEmptyMovieClip("container", 3); this.measureItmHgt(); if (this.itmHgt > 2) { this.numDisplayed = Math.floor(h / (this.itmHgt - 2)); this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; } super.setSize(w, this.height); }; FListBoxClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndices(); return(super.removeItemAt(index)); }; FListBoxClass.prototype.selectionHandler = function (itemNum) { if (this.clickFilter) { var _local3 = this.topDisplayed + itemNum; if (this.getItemAt(_local3) == undefined) { this.changeFlag = false; return(undefined); } this.changeFlag = true; if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { this.clearSelected(); this.selectItem(_local3, true); this.lastSelected = _local3; this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (Key.isDown(16) && (this.selectMultiple)) { if (this.lastSelected == -1) { this.lastSelected = _local3; } var _local4 = ((this.lastSelected < _local3) ? 1 : -1); this.clearSelected(); var _local2 = this.lastSelected; while (_local2 != _local3) { this.selectItem(_local2, true); if ((_local2 >= this.topDisplayed) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); } _local2 = _local2 + _local4; } this.selectItem(_local3, true); this.container_mc[("fListItem" + (_local3 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (key.isDown(17)) { var _local6 = this.isSelected(_local3); if (!this.selectMultiple) { this.clearSelected(); } if (!((!this.selectMultiple) && (_local6))) { this.selectItem(_local3, !_local6); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum)); } this.lastSelected = _local3; } } else { this.clickFilter = true; } }; FListBoxClass.prototype.moveSelBy = function (itemNum) { super.moveSelBy(itemNum); this.releaseHandler(); }; FListBoxClass.prototype.setColumns = function (columns_num) { this.columnsNum = columns_num; }; FListBoxClass.prototype.setColumnsWidth = function (args) { this.columnWidths = args; }; FListBoxClass.prototype.sortByColumn = function (column_name, order) { this.dataProvider.sortByColumn(column_name, order); }; FListBoxClass.prototype.removeBoundingBox = function () { this.boundingBox_mc._visible = false; }; FListBoxClass.prototype.disableTextFormat = function (disable) { this.disableFormatting = disable; }; FListBoxClass.prototype.Refresh = function () { this.dataProvider.updateViews({event:"sort"}); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 473 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 477 MovieClip [FListBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 478 MovieClip [FUIComponentSymbol] Frame 1
#initclip 86 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var _local3 in this.styleFormat_prm) { this.setStyleProperty(_local3, this.styleFormat_prm[_local3]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var _local2 in this.methodTable) { this[_local2](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var _local4 = this.styleTable.focusRectInner.value; var _local5 = this.styleTable.focusRectOuter.value; if (_local4 == undefined) { _local4 = 16777215 /* 0xFFFFFF */; } if (_local5 == undefined) { _local5 = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, _local5); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, _local4); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var _local17 = parseInt(value); if (!isNaN(_local17)) { value = _local17; } var _local16 = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!_local16)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var _local18 = propName.subString(4, propName.length); this.textStyle[_local18] = value; this.invalidate("setSize"); } else { for (var _local15 in this.styleTable[propName].coloredMCs) { var _local4 = new Color(this.styleTable[propName].coloredMCs[_local15]); if (this.styleTable[propName].value == undefined) { var _local5 = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; _local4.setTransform(_local5); } else { _local4.setRGB(value); } } } this.styleTable[propName].useGlobal = _local16; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var _local3 = new Color(skinMCRef); _local3.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var _local3 in arguments[0]) { this[_local3] = arguments[0][_local3]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var _local3 = 0; while (_local3 < arguments.length) { var _local4 = arguments[_local3]; this.listeners[arguments[_local3]] = _local4; for (var _local5 in this) { if (this.isAStyle(_local5)) { _local4.updateStyleProperty(this, _local5.toString()); } } _local3++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var _local4 in this) { if (this.isAStyle(_local4)) { if (component.styleTable[_local4].useGlobal == this.isGlobal) { component.styleTable[_local4].useGlobal = true; var _local3 = (this.isGlobal ? undefined : (globalStyleFormat[_local4])); component.setStyleProperty(_local4, _local3, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var _local6 = 0; for (var _local5 in this.listeners) { var _local3 = this.listeners[_local5]; if (arguments.length > 0) { var _local4 = 0; while (_local4 < arguments.length) { if (this.isAStyle(arguments[_local4])) { _local3.updateStyleProperty(this, arguments[_local4]); } _local4++; } } else { for (var _local4 in this) { if (this.isAStyle(_local4)) { _local3.updateStyleProperty(this, _local4.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 479 MovieClip [UpArrow] Frame 1
stop();
Symbol 479 MovieClip [UpArrow] Frame 2
stop();
Symbol 479 MovieClip [UpArrow] Frame 3
stop();
Symbol 484 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 485 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 486 MovieClip [DownArrow] Frame 1
stop();
Symbol 486 MovieClip [DownArrow] Frame 2
stop();
Symbol 486 MovieClip [DownArrow] Frame 3
stop();
Symbol 488 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller; component.registerSkinElement(highlight_mc, "selection"); stop();
Symbol 488 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled"); stop();
Symbol 488 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused"); stop();
Symbol 490 MovieClip [FLabelSymbol] Frame 1
#initclip 85 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var _local2 = this.hostComponent.styleTable.embedFonts.value; if (_local2 != undefined) { this.labelField.embedFonts = _local2; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var _local2 = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } this.setColor(_local2); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 491 MovieClip [ButtonCellRenderer] Frame 1
#initclip 84 Object.registerClass("ButtonCellRenderer", ButtonCellRenderer); #endinitclip
Symbol 496 MovieClip [ChatAreaClp] Frame 1
stop();
Symbol 497 MovieClip Frame 1
stop();
Symbol 499 MovieClip Frame 1
stop();
Symbol 500 Button
on (rollOver) { _parent._parent.canClose = false; } on (rollOut) { _parent._parent.canClose = true; } on (release, keyPress "<Enter>") { _root.evEngine.broadcastMessage("onChangeNickPressed"); }
Symbol 503 MovieClip [MenuItem] Frame 1
stop();
Symbol 508 MovieClip Frame 1
stop();
Symbol 514 Button
on (rollOver) { RollDownMenu(); canClose = false; } on (rollOut) { canClose = true; }
Symbol 517 MovieClip [OptionsMc] Frame 1
function RollDownMenu() { if (!menuOpen) { menuOpen = true; gotoAndPlay (2); } } function RollUpMenu() { if (menuOpen && (canClose)) { menuOpen = false; gotoAndPlay (16); } } stop(); menuOpen = false; canClose = false;
Symbol 517 MovieClip [OptionsMc] Frame 15
stop();
Instance of Symbol 516 MovieClip in Symbol 517 MovieClip [OptionsMc] Frame 15
onClipEvent (load) { delay = getTimer() + 2000; } onClipEvent (enterFrame) { if (getTimer() > delay) { delay = getTimer() + 2000; if (_parent.menuOpen) { _parent.RollUpMenu(); } } }
Symbol 517 MovieClip [OptionsMc] Frame 29
stop();
Symbol 521 Button
on (release, keyPress "<Enter>") { SetUserNick(); }
Symbol 525 MovieClip [NickWindowSymbol] Frame 1
function trim(txt) { var _local2 = new String(txt); var _local3; var _local1; _local1 = 0; while (_local2.charAt(_local1) == " ") { _local1++; } return(_local2.substring(_local1, _local2.length)); } function SetUserNick() { nickname = trim(Nick.text); if ((nickname == "") || (nickname == undefined)) { return(undefined); } this.executeCallBack(nickname); } Nick.text = _root.UserGetNick(); Selection.setFocus(Nick); stop();
Symbol 528 Button
on (release) { _root.evEngine.broadcastMessage("onTabPressed", this.Title.text); } on (rollOver) { this._xsave = _root._xmouse; this._ysave = _root._ymouse; this.startToolTip(); } on (rollOut) { if ((_root._xmouse != this._xsave) && (_root._ymouse != this._ysave)) { this.clearToolTip(); } }
Symbol 530 Button
on (press) { if (this._blink) { _root.evEngine.broadcastMessage("onTabPressed", this.Title.text); } } on (rollOver) { this._xsave = _root._xmouse; this._ysave = _root._ymouse; this.startToolTip(); } on (rollOut) { if ((_root._xmouse != this._xsave) && (_root._ymouse != this._ysave)) { this.clearToolTip(); } }
Symbol 533 MovieClip Frame 1
stop();
Symbol 535 MovieClip Frame 1
stop();
Symbol 537 MovieClip Frame 1
stop();
Symbol 544 Button
on (release) { _root.evEngine.broadcastMessage("onClosePressed"); }
Symbol 545 MovieClip [ChatArea] Frame 1
ChatScroller.setScrollTarget(ChatAreaBox); topicText.backgroundColor = 14605278 /* 0xDEDBDE */; topicText.borderColor = 14605278 /* 0xDEDBDE */; stop(); ChatAreaBox.onScroller = function () { this._parent.canScroll = false; if (this.maxscroll == this.scroll) { this._parent.canScroll = true; } };
Instance of Symbol 62 MovieClip [FScrollBarSymbol] "ChatScroller" in Symbol 545 MovieClip [ChatArea] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = "ChatAreaBox"; horizontal = false; }
Symbol 549 MovieClip [ToolTip] Frame 5
stop(); var ts = tipTextBox.getNewTextFormat(); this.setWidth(ts.getTextExtent(this.tip).width);
Symbol 551 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 105 function FCheckBoxClass() { this.init(); } FCheckBoxClass.prototype = new FUIComponentClass(); Object.registerClass("FCheckBoxSymbol", FCheckBoxClass); FCheckBoxClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1); this.attachMovie("fcb_states", "fcb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this.setChangeHandler(this.changeHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.initialValue == undefined) { this.setCheckState(false); } else { this.setCheckState(this.initialValue); } if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_CHECKBUTTON = 44; this.STATE_SYSTEM_CHECKED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FCheckBoxClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var _local8 = this.fLabel_mc._height / 2; var _local7 = this.fcb_states_mc._height / 2; var _local5 = _local7 - _local8; var _local6 = this.fcb_states_mc._width; var _local4 = this.fcb_states_mc; var _local9 = this.fLabel_mc; var _local2 = 0; if (_local4._width > this.width) { _local2 = 0; } else { _local2 = this.width - _local4._width; } this.fLabel_mc.setSize(_local2); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.fcb_states_mc._x = 0; this.fLabel_mc._x = _local6; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.fcb_states_mc._x = this.width - _local6; this.txtFormat("right"); } this.fLabel_mc._y = _local5; this.fcb_hitArea_mc._y = _local5; }; FCheckBoxClass.prototype.txtFormat = function (pos) { var _local3 = this.textStyle; var _local4 = this.styleTable; _local3.align = ((_local4.textAlign.value == undefined) ? ((_local3.align = pos)) : undefined); _local3.leftMargin = ((_local4.textLeftMargin.value == undefined) ? ((_local3.leftMargin = 0)) : undefined); _local3.rightMargin = ((_local4.textRightMargin.value == undefined) ? ((_local3.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FCheckBoxClass.prototype.setHitArea = function (w, h) { var _local3 = this.fcb_hitArea_mc; this.hitArea = _local3; if (this.fcb_states_mc._width > w) { _local3._width = this.fcb_states_mc._width; } else { _local3._width = w; } _local3._visible = false; if (arguments.length > 1) { _local3._height = h; } }; FCheckBoxClass.prototype.setSize = function (w) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.fcb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FCheckBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 1); }; FCheckBoxClass.prototype.onPress = function () { this.pressFocus(); _root.focusRect.removeMovieClip(); var _local3 = this.fcb_states_mc; if (this.getValue()) { _local3.gotoAndStop("checkedPress"); } else { _local3.gotoAndStop("press"); } }; FCheckBoxClass.prototype.onRelease = function () { this.fcb_states_mc.gotoAndStop("up"); this.setValue(!this.checked); }; FCheckBoxClass.prototype.onReleaseOutside = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedEnabled"); } else { _local2.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOut = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedEnabled"); } else { _local2.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOver = function () { var _local2 = this.fcb_states_mc; if (this.getValue()) { _local2.gotoAndStop("checkedPress"); } else { _local2.gotoAndStop("press"); } }; FCheckBoxClass.prototype.setValue = function (checkedValue) { if (checkedValue || (checkedValue == undefined)) { this.setCheckState(checkedValue); } else if (checkedValue == false) { this.setCheckState(checkedValue); } this.executeCallBack(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FCheckBoxClass.prototype.setCheckState = function (checkedValue) { var _local2 = this.fcb_states_mc; if (this.enable) { this.flabel_mc.setEnabled(true); if (checkedValue || (checkedValue == undefined)) { _local2.gotoAndStop("checkedEnabled"); this.enabled = true; this.checked = true; } else { _local2.gotoAndStop("up"); this.enabled = true; this.checked = false; } } else { this.flabel_mc.setEnabled(false); if (checkedValue || (checkedValue == undefined)) { _local2.gotoAndStop("checkedDisabled"); this.enabled = false; this.checked = true; } else { _local2.gotoAndStop("uncheckedDisabled"); this.enabled = false; this.checked = false; this.focusRect.removeMovieClip(); } } }; FCheckBoxClass.prototype.getValue = function () { return(this.checked); }; FCheckBoxClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setCheckState(this.checked); }; FCheckBoxClass.prototype.getEnabled = function () { return(this.enable); }; FCheckBoxClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FCheckBoxClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FCheckBoxClass.prototype.setTextColor = function (color) { this.fLabel_mc.labelField.textColor = color; }; FCheckBoxClass.prototype.myOnKeyDown = function () { if (((Key.getCode() == 32) && (this.pressOnce == undefined)) && (this.enabled == true)) { this.setValue(!this.getValue()); this.pressOnce = true; } }; FCheckBoxClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.pressOnce = undefined; } }; FCheckBoxClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_CHECKBUTTON); }; FCheckBoxClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FCheckBoxClass.prototype.get_accState = function (childId) { if (this.master.getValue()) { return(this.master.STATE_SYSTEM_CHECKED); } return(0); }; FCheckBoxClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getValue()) { return("UnCheck"); } return("Check"); }; FCheckBoxClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 554 Button
on (release, keyPress "<Enter>") { executeCallBack("ok"); }
Symbol 559 Button
on (release) { executeCallBack("cancel"); }
Symbol 563 Button
on (release) { SetUserNick(); }
Symbol 566 MovieClip [PrefSymbol] Frame 1
function trim(txt) { var _local2 = new String(txt); var _local3; var _local1; _local1 = 0; while (_local2.charAt(_local1) == " ") { _local1++; } return(_local2.substring(_local1, _local2.length)); } function SetUserNick() { nickname = trim(Nick.text); if ((nickname == "") || (nickname == undefined)) { return(undefined); } _root.SendCommand(("NICK " + nickname) + "\r\n"); } checkKnockSound._visible = false; checkIgnoreTextFormat._y = 64; checkIgnorePrivMsg._y = 92; Nick.text = _root.UserGetNick(); checkHideMessages.setValue(_root.gl_user_pref.data.hideMessages); checkIgnoreTextFormat.setValue(_root.gl_user_pref.data.ignoreTextFormat); checkIgnorePrivMsg.setValue(_root.gl_user_pref.data.ignorePrivMsg); checkKnockSound.setValue(_root.gl_user_pref.data.playKnockSound); trace(checkKnockSound._visible); if (_level0.enableJoinSnd) { checkIgnoreTextFormat._y = 56; checkIgnorePrivMsg._y = 79; checkKnockSound._visible = true; } Selection.setFocus(Nick); stop(); lblPref.text = "Options";
Instance of Symbol 551 MovieClip [FCheckBoxSymbol] "checkHideMessages" in Symbol 566 MovieClip [PrefSymbol] Frame 1
//component parameters onClipEvent (initialize) { label = " Hide Join / Quit messages"; initialValue = false; labelPlacement = "right"; changeHandler = ""; }
Instance of Symbol 551 MovieClip [FCheckBoxSymbol] "checkIgnoreTextFormat" in Symbol 566 MovieClip [PrefSymbol] Frame 1
//component parameters onClipEvent (initialize) { label = " Override text format"; initialValue = false; labelPlacement = "right"; changeHandler = ""; }
Instance of Symbol 551 MovieClip [FCheckBoxSymbol] "checkIgnorePrivMsg" in Symbol 566 MovieClip [PrefSymbol] Frame 1
//component parameters onClipEvent (initialize) { label = " Ignore private messages"; initialValue = false; labelPlacement = "right"; changeHandler = ""; }
Instance of Symbol 551 MovieClip [FCheckBoxSymbol] "checkKnockSound" in Symbol 566 MovieClip [PrefSymbol] Frame 1
//component parameters onClipEvent (initialize) { label = " Play a sound when users join the chat"; initialValue = true; labelPlacement = "right"; changeHandler = ""; }
Symbol 568 MovieClip [UserInput] Frame 1
function SetText(txt) { input.text = txt; var _local1 = Selection.getFocus(); Selection.setFocus(input); Selection.setSelection(input.text.length, input.text.length); Selection.setFocus(_local1); } function GetText() { return(input.text); } function setFocus() { Selection.setFocus(input); Selection.setSelection(Selection.getCaretIndex(), Selection.getCaretIndex()); }
Symbol 575 MovieClip [NickWindowSymbol] Frame 1
function trim(txt) { var _local2 = new String(txt); var _local3; var _local1; _local1 = 0; while (_local2.charAt(_local1) == " ") { _local1++; } return(_local2.substring(_local1, _local2.length)); } function SetUserNick() { nickname = trim(Nick.text); if ((nickname == "") || (nickname == undefined)) { return(undefined); } this.executeCallBack(nickname); } Nick.text = _root.UserGetNick(); Selection.setFocus(Nick); stop();
Symbol 586 MovieClip [BrdrShdw] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "shadowColor");
Symbol 588 MovieClip [BrdrFace] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "buttonColor");
Symbol 591 MovieClip [BrdrBlk] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "borderColor");
Symbol 593 MovieClip [BrdrHilght] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "highlightColor");
Symbol 596 MovieClip [Defaults] Frame 1
#initclip 47 Object.registerClass("Defaults", mx.skins.halo.Defaults); #endinitclip
Symbol 597 MovieClip [UIObjectExtensions] Frame 1
#initclip 48 Object.registerClass("UIObjectExtensions", mx.core.ext.UIObjectExtensions); #endinitclip
Symbol 598 MovieClip [UIObject] Frame 1
#initclip 49 Object.registerClass("UIObject", mx.core.UIObject); #endinitclip stop();
Symbol 601 Button
on (keyPress "<Tab>") { this.tabHandler(); }
Symbol 602 MovieClip [FocusRect] Frame 1
#initclip 50 Object.registerClass("FocusRect", mx.skins.halo.FocusRect); #endinitclip
Symbol 603 MovieClip [FocusManager] Frame 1
#initclip 51 Object.registerClass("FocusManager", mx.managers.FocusManager); #endinitclip stop();
Symbol 604 MovieClip [UIComponentExtensions] Frame 1
#initclip 52 Object.registerClass("UIComponentExtensions", mx.core.ext.UIComponentExtensions); #endinitclip
Symbol 605 MovieClip [UIComponent] Frame 1
#initclip 53 Object.registerClass("UIComponent", mx.core.UIComponent); #endinitclip stop();
Symbol 606 MovieClip [SimpleButton] Frame 1
#initclip 54 Object.registerClass("SimpleButton", mx.controls.SimpleButton); #endinitclip stop();
Symbol 607 MovieClip [Border] Frame 1
#initclip 55 Object.registerClass("Border", mx.skins.Border); #endinitclip stop();
Symbol 608 MovieClip [RectBorder] Frame 1
#initclip 56 mx.skins.SkinElement.registerElement(mx.skins.RectBorder.symbolName, Object(mx.skins.RectBorder)); Object.registerClass("RectBorder", mx.skins.halo.RectBorder); #endinitclip stop();
Symbol 609 MovieClip [ButtonSkin] Frame 1
#initclip 57 Object.registerClass("ButtonSkin", mx.skins.halo.ButtonSkin); #endinitclip
Symbol 610 MovieClip [Button] Frame 1
#initclip 58 Object.registerClass("Button", mx.controls.Button); #endinitclip stop();
Instance of Symbol 606 MovieClip [SimpleButton] in Symbol 610 MovieClip [Button] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 611 MovieClip [CustomBorder] Frame 1
#initclip 59 Object.registerClass("CustomBorder", mx.skins.CustomBorder); mx.skins.SkinElement.registerElement("CustomBorder", mx.skins.CustomBorder); #endinitclip
Symbol 623 MovieClip [ScrollThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 625 MovieClip [ScrollThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 636 MovieClip [ThumbThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 638 MovieClip [ThumbThemeColor3] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 645 MovieClip [ThumbThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 666 MovieClip [BtnDownArrow] Frame 1
#initclip 60 Object.registerClass("BtnDownArrow", mx.controls.SimpleButton); #endinitclip
Symbol 667 MovieClip [BtnUpArrow] Frame 1
#initclip 61 Object.registerClass("BtnUpArrow", mx.controls.SimpleButton); #endinitclip
Symbol 669 MovieClip [HScrollBar] Frame 1
#initclip 62 Object.registerClass("HScrollBar", mx.controls.HScrollBar); #endinitclip stop();
Instance of Symbol 610 MovieClip [Button] in Symbol 669 MovieClip [HScrollBar] Frame 2
//component parameters onClipEvent (initialize) { icon = ""; label = "Button"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 606 MovieClip [SimpleButton] in Symbol 669 MovieClip [HScrollBar] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 670 MovieClip [VScrollBar] Frame 1
#initclip 63 Object.registerClass("VScrollBar", mx.controls.VScrollBar); #endinitclip stop();
Instance of Symbol 610 MovieClip [Button] in Symbol 670 MovieClip [VScrollBar] Frame 2
//component parameters onClipEvent (initialize) { icon = ""; label = "Button"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 606 MovieClip [SimpleButton] in Symbol 670 MovieClip [VScrollBar] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 671 MovieClip [View] Frame 1
#initclip 64 Object.registerClass("View", mx.core.View); #endinitclip stop();
Symbol 672 MovieClip [ScrollView] Frame 1
#initclip 65 Object.registerClass("ScrollView", mx.core.ScrollView); #endinitclip stop();
Instance of Symbol 669 MovieClip [HScrollBar] in Symbol 672 MovieClip [ScrollView] Frame 2
//component parameters onClipEvent (initialize) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 670 MovieClip [VScrollBar] in Symbol 672 MovieClip [ScrollView] Frame 2
//component parameters onClipEvent (initialize) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 673 MovieClip [TextArea] Frame 1
#initclip 66 Object.registerClass("TextArea", mx.controls.TextArea); #endinitclip stop();
Symbol 703 MovieClip [ScrollPane] Frame 1
#initclip 67 Object.registerClass("ScrollPane", mx.containers.ScrollPane); #endinitclip stop();
Symbol 721 MovieClip [DataGridAssets] Frame 1
#initclip 68 mx.controls.DataGrid.prototype.headerStyle = _global.styles.dataGridStyles; #endinitclip
Symbol 722 MovieClip [DataGridColumn] Frame 1
#initclip 69 Object.registerClass("DataGridColumn", mx.controls.gridclasses.DataGridColumn); #endinitclip stop();
Symbol 723 MovieClip [SelectableRow] Frame 1
#initclip 70 Object.registerClass("SelectableRow", mx.controls.listclasses.SelectableRow); #endinitclip stop();
Symbol 724 MovieClip [DataGridRow] Frame 1
#initclip 71 Object.registerClass("DataGridRow", mx.controls.gridclasses.DataGridRow); #endinitclip stop();
Symbol 725 MovieClip [DataProvider] Frame 1
#initclip 72 Object.registerClass("DataProvider", mx.controls.listclasses.DataProvider); #endinitclip stop();
Symbol 726 MovieClip [DataSelector] Frame 1
#initclip 73 Object.registerClass("DataSelector", mx.controls.listclasses.DataSelector); #endinitclip stop();
Symbol 727 MovieClip [ScrollSelectList] Frame 1
#initclip 74 Object.registerClass("ScrollSelectList", mx.controls.listclasses.ScrollSelectList); #endinitclip stop();
Symbol 728 MovieClip [List] Frame 1
#initclip 75 Object.registerClass("List", mx.controls.List); #endinitclip stop();
Symbol 730 MovieClip [TextInput] Frame 1
#initclip 76 Object.registerClass("TextInput", mx.controls.TextInput); #endinitclip stop();
Symbol 731 MovieClip [DataGrid] Frame 1
#initclip 77 Object.registerClass("DataGrid", mx.controls.DataGrid); #endinitclip stop();
Instance of Symbol 728 MovieClip [List] in Symbol 731 MovieClip [DataGrid] Frame 2
//component parameters onClipEvent (initialize) { multipleSelection = false; rowHeight = 20; }
Instance of Symbol 730 MovieClip [TextInput] in Symbol 731 MovieClip [DataGrid] Frame 2
//component parameters onClipEvent (initialize) { editable = true; password = false; text = ""; maxChars = null; restrict = ""; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 738 MovieClip [BrdrShdw] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "shadowColor");
Symbol 739 MovieClip [BrdrFace] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "highlightColor");
Symbol 741 MovieClip [SymDownArrowDisabled] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "symbolDisabledColor");
Symbol 743 MovieClip [SymDownArrow] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "symbolColor");
Symbol 745 MovieClip [ScrollTrack] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "scrollTrackColor");
Symbol 746 MovieClip [BtnDownArrow] Frame 1
#initclip 82 Object.registerClass("BtnDownArrow", mx.controls.SimpleButton); #endinitclip
Symbol 747 MovieClip [BrdrBlk] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "borderColor");
Symbol 748 MovieClip [BrdrHilght] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "highlightColor");
Symbol 751 MovieClip [ScrollTrackDisabled] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "scrollTrackColor");
Symbol 752 MovieClip [SymUpArrowDisabled] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "symbolDisabledColor");
Symbol 754 MovieClip [SymUpArrow] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "symbolColor");
Symbol 756 MovieClip [BtnUpArrow] Frame 1
#initclip 80 Object.registerClass("BtnUpArrow", mx.controls.SimpleButton); #endinitclip
Symbol 762 MovieClip [ScrollBarAssets] Frame 1
#initclip 112 mx.controls.scrollClasses.ScrollBar.prototype.upArrowOverName = ""; mx.controls.scrollClasses.ScrollBar.prototype.downArrowOverName = ""; mx.controls.scrollClasses.ScrollThumb.prototype.thumbTopOverName = ""; mx.controls.scrollClasses.ScrollThumb.prototype.thumbMiddleOverName = ""; mx.controls.scrollClasses.ScrollThumb.prototype.thumbBottomOverName = ""; mx.controls.scrollClasses.ScrollThumb.prototype.thumbGripName = ""; mx.controls.scrollClasses.ScrollThumb.prototype.thumbGripDownName = ""; mx.controls.scrollClasses.ScrollThumb.prototype.thumbGripOverName = ""; #endinitclip
Symbol 576 MovieClip [__Packages.mx.core.UIObject] Frame 0
class mx.core.UIObject extends MovieClip { var _width, _height, _x, _y, _parent, _minHeight, _minWidth, _visible, dispatchEvent, _xscale, _yscale, methodTable, onEnterFrame, tfList, __width, __height, moveTo, lineTo, createTextField, attachMovie, buildDepthTable, findNextAvailableDepth, idNames, childrenCreated, _name, createAccessibilityImplementation, _endInit, validateNow, hasOwnProperty, initProperties, stylecache, className, ignoreClassStyleDeclaration, _tf, fontFamily, fontSize, color, marginLeft, marginRight, fontStyle, fontWeight, textAlign, textIndent, textDecoration, embedFonts, styleName, enabled; function UIObject () { super(); constructObject(); } function get width() { return(_width); } function get height() { return(_height); } function get left() { return(_x); } function get x() { return(_x); } function get top() { return(_y); } function get y() { return(_y); } function get right() { return(_parent.width - (_x + width)); } function get bottom() { return(_parent.height - (_y + height)); } function getMinHeight(Void) { return(_minHeight); } function setMinHeight(h) { _minHeight = h; } function get minHeight() { return(getMinHeight()); } function set minHeight(h) { setMinHeight(h); //return(minHeight); } function getMinWidth(Void) { return(_minWidth); } function setMinWidth(w) { _minWidth = w; } function get minWidth() { return(getMinWidth()); } function set minWidth(w) { setMinWidth(w); //return(minWidth); } function setVisible(x, noEvent) { if (x != _visible) { _visible = x; if (noEvent != true) { dispatchEvent({type:(x ? "reveal" : "hide")}); } } } function get visible() { return(_visible); } function set visible(x) { setVisible(x, false); //return(visible); } function get scaleX() { return(_xscale); } function set scaleX(x) { _xscale = x; //return(scaleX); } function get scaleY() { return(_yscale); } function set scaleY(y) { _yscale = y; //return(scaleY); } function doLater(obj, fn) { if (methodTable == undefined) { methodTable = new Array(); } methodTable.push({obj:obj, fn:fn}); onEnterFrame = doLaterDispatcher; } function doLaterDispatcher(Void) { delete onEnterFrame; if (invalidateFlag) { redraw(); } var _local3 = methodTable; methodTable = new Array(); if (_local3.length > 0) { var _local2; while (_local2 = _local3.shift() , _local2 != undefined) { _local2.obj[_local2.fn](); } } } function cancelAllDoLaters(Void) { delete onEnterFrame; methodTable = new Array(); } function invalidate(Void) { invalidateFlag = true; onEnterFrame = doLaterDispatcher; } function invalidateStyle(Void) { invalidate(); } function redraw(bAlways) { if (invalidateFlag || (bAlways)) { invalidateFlag = false; var _local2; for (_local2 in tfList) { tfList[_local2].draw(); } draw(); dispatchEvent({type:"draw"}); } } function draw(Void) { } function move(x, y, noEvent) { var _local3 = _x; var _local2 = _y; _x = x; _y = y; if (noEvent != true) { dispatchEvent({type:"move", oldX:_local3, oldY:_local2}); } } function setSize(w, h, noEvent) { var _local2 = __width; var _local3 = __height; __width = w; __height = h; size(); if (noEvent != true) { dispatchEvent({type:"resize", oldWidth:_local2, oldHeight:_local3}); } } function size(Void) { _width = __width; _height = __height; } function drawRect(x1, y1, x2, y2) { moveTo(x1, y1); lineTo(x2, y1); lineTo(x2, y2); lineTo(x1, y2); lineTo(x1, y1); } function createLabel(name, depth, text) { createTextField(name, depth, 0, 0, 0, 0); var _local2 = this[name]; _local2._color = textColorList; _local2._visible = false; _local2.__text = text; if (tfList == undefined) { tfList = new Object(); } tfList[name] = _local2; _local2.invalidateStyle(); invalidate(); _local2.styleName = this; return(_local2); } function createObject(linkageName, id, depth, initobj) { return(attachMovie(linkageName, id, depth, initobj)); } function createClassObject(className, id, depth, initobj) { var _local3 = className.symbolName == undefined; if (_local3) { Object.registerClass(className.symbolOwner.symbolName, className); } var _local4 = createObject(className.symbolOwner.symbolName, id, depth, initobj); if (_local3) { Object.registerClass(className.symbolOwner.symbolName, className.symbolOwner); } return(_local4); } function createEmptyObject(id, depth) { return(createClassObject(mx.core.UIObject, id, depth)); } function destroyObject(id) { var _local2 = this[id]; if (_local2.getDepth() < 0) { var _local4 = buildDepthTable(); var _local5 = findNextAvailableDepth(0, _local4, "up"); var _local3 = _local5; _local2.swapDepths(_local3); } _local2.removeMovieClip(); delete this[id]; } function getSkinIDName(tag) { return(idNames[tag]); } function setSkin(tag, linkageName, initObj) { if (_global.skinRegistry[linkageName] == undefined) { mx.skins.SkinElement.registerElement(linkageName, mx.skins.SkinElement); } return(createObject(linkageName, getSkinIDName(tag), tag, initObj)); } function createSkin(tag) { var _local2 = getSkinIDName(tag); createEmptyObject(_local2, tag); return(this[_local2]); } function createChildren(Void) { } function _createChildren(Void) { createChildren(); childrenCreated = true; } function constructObject(Void) { if (_name == undefined) { return(undefined); } init(); _createChildren(); createAccessibilityImplementation(); _endInit(); if (validateNow) { redraw(true); } else { invalidate(); } } function initFromClipParameters(Void) { var _local4 = false; var _local2; for (_local2 in clipParameters) { if (hasOwnProperty(_local2)) { _local4 = true; this["def_" + _local2] = this[_local2]; delete this[_local2]; } } if (_local4) { for (_local2 in clipParameters) { var _local3 = this["def_" + _local2]; if (_local3 != undefined) { this[_local2] = _local3; } } } } function init(Void) { __width = _width; __height = _height; if (initProperties == undefined) { initFromClipParameters(); } else { initProperties(); } if (_global.cascadingStyles == true) { stylecache = new Object(); } } function getClassStyleDeclaration(Void) { var _local4 = this; var _local3 = className; while (_local3 != undefined) { if (ignoreClassStyleDeclaration[_local3] == undefined) { if (_global.styles[_local3] != undefined) { return(_global.styles[_local3]); } } _local4 = _local4.__proto__; _local3 = _local4.className; } } function setColor(color) { } function __getTextFormat(tf, bAll) { var _local8 = stylecache.tf; if (_local8 != undefined) { var _local3; for (_local3 in mx.styles.StyleManager.TextFormatStyleProps) { if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) { if (tf[_local3] == undefined) { tf[_local3] = _local8[_local3]; } } } return(false); } var _local6 = false; for (var _local3 in mx.styles.StyleManager.TextFormatStyleProps) { if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) { if (tf[_local3] == undefined) { var _local5 = _tf[_local3]; if (_local5 != undefined) { tf[_local3] = _local5; } else if ((_local3 == "font") && (fontFamily != undefined)) { tf[_local3] = fontFamily; } else if ((_local3 == "size") && (fontSize != undefined)) { tf[_local3] = fontSize; } else if ((_local3 == "color") && (color != undefined)) { tf[_local3] = color; } else if ((_local3 == "leftMargin") && (marginLeft != undefined)) { tf[_local3] = marginLeft; } else if ((_local3 == "rightMargin") && (marginRight != undefined)) { tf[_local3] = marginRight; } else if ((_local3 == "italic") && (fontStyle != undefined)) { tf[_local3] = fontStyle == _local3; } else if ((_local3 == "bold") && (fontWeight != undefined)) { tf[_local3] = fontWeight == _local3; } else if ((_local3 == "align") && (textAlign != undefined)) { tf[_local3] = textAlign; } else if ((_local3 == "indent") && (textIndent != undefined)) { tf[_local3] = textIndent; } else if ((_local3 == "underline") && (textDecoration != undefined)) { tf[_local3] = textDecoration == _local3; } else if ((_local3 == "embedFonts") && (embedFonts != undefined)) { tf[_local3] = embedFonts; } else { _local6 = true; } } } } if (_local6) { var _local9 = styleName; if (_local9 != undefined) { if (typeof(_local9) != "string") { _local6 = _local9.__getTextFormat(tf, true, this); } else if (_global.styles[_local9] != undefined) { _local6 = _global.styles[_local9].__getTextFormat(tf, true, this); } } } if (_local6) { var _local10 = getClassStyleDeclaration(); if (_local10 != undefined) { _local6 = _local10.__getTextFormat(tf, true, this); } } if (_local6) { if (_global.cascadingStyles) { if (_parent != undefined) { _local6 = _parent.__getTextFormat(tf, false); } } } if (_local6) { _local6 = _global.style.__getTextFormat(tf, true, this); } return(_local6); } function _getTextFormat(Void) { var _local2 = stylecache.tf; if (_local2 != undefined) { return(_local2); } _local2 = new TextFormat(); __getTextFormat(_local2, true); stylecache.tf = _local2; if (enabled == false) { var _local3 = getStyle("disabledColor"); _local2.color = _local3; } return(_local2); } function getStyleName(Void) { var _local2 = styleName; if (_local2 != undefined) { if (typeof(_local2) != "string") { return(_local2.getStyleName()); } return(_local2); } if (_parent != undefined) { return(_parent.getStyleName()); } return(undefined); } function getStyle(styleProp) { var _local3; _global.getStyleCounter++; if (this[styleProp] != undefined) { return(this[styleProp]); } var _local6 = styleName; if (_local6 != undefined) { if (typeof(_local6) != "string") { _local3 = _local6.getStyle(styleProp); } else { var _local7 = _global.styles[_local6]; _local3 = _local7.getStyle(styleProp); } } if (_local3 != undefined) { return(_local3); } var _local7 = getClassStyleDeclaration(); if (_local7 != undefined) { _local3 = _local7[styleProp]; } if (_local3 != undefined) { return(_local3); } if (_global.cascadingStyles) { if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (mx.styles.StyleManager.isColorStyle(styleProp))) { var _local5 = stylecache; if (_local5 != undefined) { if (_local5[styleProp] != undefined) { return(_local5[styleProp]); } } if (_parent != undefined) { _local3 = _parent.getStyle(styleProp); } else { _local3 = _global.style[styleProp]; } if (_local5 != undefined) { _local5[styleProp] = _local3; } return(_local3); } } if (_local3 == undefined) { _local3 = _global.style[styleProp]; } return(_local3); } static function mergeClipParameters(o, p) { for (var _local3 in p) { o[_local3] = p[_local3]; } return(true); } static var symbolName = "UIObject"; static var symbolOwner = mx.core.UIObject; static var version = "2.0.2.127"; static var textColorList = {color:1, disabledColor:1}; var invalidateFlag = false; var lineWidth = 1; var lineColor = 0; var tabEnabled = false; var clipParameters = {visible:1, minHeight:1, minWidth:1, maxHeight:1, maxWidth:1, preferredHeight:1, preferredWidth:1}; }
Symbol 674 MovieClip [__Packages.mx.skins.SkinElement] Frame 0
class mx.skins.SkinElement extends MovieClip { var _visible, _x, _y, _width, _height; function SkinElement () { super(); } static function registerElement(name, className) { Object.registerClass(name, ((className == undefined) ? (mx.skins.SkinElement) : (className))); _global.skinRegistry[name] = true; } function __set__visible(visible) { _visible = visible; } function move(x, y) { _x = x; _y = y; } function setSize(w, h) { _width = w; _height = h; } }
Symbol 675 MovieClip [__Packages.mx.styles.CSSTextStyles] Frame 0
class mx.styles.CSSTextStyles { function CSSTextStyles () { } static function addTextStyles(o, bColor) { o.addProperty("textAlign", function () { return(this._tf.align); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.align = x; }); o.addProperty("fontWeight", function () { return(((this._tf.bold != undefined) ? ((this._tf.bold ? "bold" : "none")) : undefined)); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.bold = x == "bold"; }); if (bColor) { o.addProperty("color", function () { return(this._tf.color); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.color = x; }); } o.addProperty("fontFamily", function () { return(this._tf.font); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.font = x; }); o.addProperty("textIndent", function () { return(this._tf.indent); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.indent = x; }); o.addProperty("fontStyle", function () { return(((this._tf.italic != undefined) ? ((this._tf.italic ? "italic" : "none")) : undefined)); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.italic = x == "italic"; }); o.addProperty("marginLeft", function () { return(this._tf.leftMargin); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.leftMargin = x; }); o.addProperty("marginRight", function () { return(this._tf.rightMargin); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.rightMargin = x; }); o.addProperty("fontSize", function () { return(this._tf.size); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.size = x; }); o.addProperty("textDecoration", function () { return(((this._tf.underline != undefined) ? ((this._tf.underline ? "underline" : "none")) : undefined)); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.underline = x == "underline"; }); o.addProperty("embedFonts", function () { return(this._tf.embedFonts); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.embedFonts = x; }); } }
Symbol 677 MovieClip [__Packages.mx.styles.CSSStyleDeclaration] Frame 0
class mx.styles.CSSStyleDeclaration { var _tf; function CSSStyleDeclaration () { } function __getTextFormat(tf, bAll) { var _local5 = false; if (_tf != undefined) { var _local2; for (_local2 in mx.styles.StyleManager.TextFormatStyleProps) { if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local2])) { if (tf[_local2] == undefined) { var _local3 = _tf[_local2]; if (_local3 != undefined) { tf[_local2] = _local3; } else { _local5 = true; } } } } } else { _local5 = true; } return(_local5); } function getStyle(styleProp) { var _local2 = this[styleProp]; var _local3 = mx.styles.StyleManager.getColorName(_local2); return(((_local3 == undefined) ? (_local2) : (_local3))); } static function classConstruct() { mx.styles.CSSTextStyles.addTextStyles(mx.styles.CSSStyleDeclaration.prototype, true); return(true); } static var classConstructed = classConstruct(); static var CSSTextStylesDependency = mx.styles.CSSTextStyles; }
Symbol 676 MovieClip [__Packages.mx.styles.StyleManager] Frame 0
class mx.styles.StyleManager { function StyleManager () { } static function registerInheritingStyle(styleName) { inheritingStyles[styleName] = true; } static function isInheritingStyle(styleName) { return(inheritingStyles[styleName] == true); } static function registerColorStyle(styleName) { colorStyles[styleName] = true; } static function isColorStyle(styleName) { return(colorStyles[styleName] == true); } static function registerColorName(colorName, colorValue) { colorNames[colorName] = colorValue; } static function isColorName(colorName) { return(colorNames[colorName] != undefined); } static function getColorName(colorName) { return(colorNames[colorName]); } static var inheritingStyles = {color:true, direction:true, fontFamily:true, fontSize:true, fontStyle:true, fontWeight:true, textAlign:true, textIndent:true}; static var colorStyles = {barColor:true, trackColor:true, borderColor:true, buttonColor:true, color:true, dateHeaderColor:true, dateRollOverColor:true, disabledColor:true, fillColor:true, highlightColor:true, scrollTrackColor:true, selectedDateColor:true, shadowColor:true, strokeColor:true, symbolBackgroundColor:true, symbolBackgroundDisabledColor:true, symbolBackgroundPressedColor:true, symbolColor:true, symbolDisabledColor:true, themeColor:true, todayIndicatorColor:true, shadowCapColor:true, borderCapColor:true, focusColor:true}; static var colorNames = {black:0, white:16777215, red:16711680, green:65280, blue:255, magenta:16711935, yellow:16776960, cyan:65535, haloGreen:8453965, haloBlue:2881013, haloOrange:16761344}; static var TextFormatStyleProps = {font:true, size:true, color:true, leftMargin:false, rightMargin:false, italic:true, bold:true, align:true, indent:true, underline:false, embedFonts:false}; static var TextStyleMap = {textAlign:true, fontWeight:true, color:true, fontFamily:true, textIndent:true, fontStyle:true, lineHeight:true, marginLeft:true, marginRight:true, fontSize:true, textDecoration:true, embedFonts:true}; }
Symbol 577 MovieClip [__Packages.mx.core.UIComponent] Frame 0
class mx.core.UIComponent extends mx.core.UIObject { var __width, __height, invalidate, stylecache, removeEventListener, dispatchEvent, drawFocus, addEventListener, _xscale, _yscale, _focusrect, watch, enabled; function UIComponent () { super(); } function get width() { return(__width); } function get height() { return(__height); } function setVisible(x, noEvent) { super.setVisible(x, noEvent); } function enabledChanged(id, oldValue, newValue) { setEnabled(newValue); invalidate(); delete stylecache.tf; return(newValue); } function setEnabled(enabled) { invalidate(); } function getFocus() { var selFocus = Selection.getFocus(); return(((selFocus === null) ? null : (eval (selFocus)))); } function setFocus() { Selection.setFocus(this); } function getFocusManager() { var _local2 = this; while (_local2 != undefined) { if (_local2.focusManager != undefined) { return(_local2.focusManager); } _local2 = _local2._parent; } return(undefined); } function onKillFocus(newFocus) { removeEventListener("keyDown", this); removeEventListener("keyUp", this); dispatchEvent({type:"focusOut"}); drawFocus(false); } function onSetFocus(oldFocus) { addEventListener("keyDown", this); addEventListener("keyUp", this); dispatchEvent({type:"focusIn"}); if (getFocusManager().bDrawFocus != false) { drawFocus(true); } } function findFocusInChildren(o) { if (o.focusTextField != undefined) { return(o.focusTextField); } if (o.tabEnabled == true) { return(o); } return(undefined); } function findFocusFromObject(o) { if (o.tabEnabled != true) { if (o._parent == undefined) { return(undefined); } if (o._parent.tabEnabled == true) { o = o._parent; } else if (o._parent.tabChildren) { o = findFocusInChildren(o._parent); } else { o = findFocusFromObject(o._parent); } } return(o); } function pressFocus() { var _local3 = findFocusFromObject(this); var _local2 = getFocus(); if (_local3 != _local2) { _local2.drawFocus(false); if (getFocusManager().bDrawFocus != false) { _local3.drawFocus(true); } } } function releaseFocus() { var _local2 = findFocusFromObject(this); if (_local2 != getFocus()) { _local2.setFocus(); } } function isParent(o) { while (o != undefined) { if (o == this) { return(true); } o = o._parent; } return(false); } function size() { } function init() { super.init(); _xscale = 100; _yscale = 100; _focusrect = _global.useFocusRect == false; watch("enabled", enabledChanged); if (enabled == false) { setEnabled(false); } } function dispatchValueChangedEvent(value) { dispatchEvent({type:"valueChanged", value:value}); } static var symbolName = "UIComponent"; static var symbolOwner = mx.core.UIComponent; static var version = "2.0.2.127"; static var kStretch = 5000; var focusEnabled = true; var tabEnabled = true; var origBorderStyles = {themeColor:16711680}; var clipParameters = {}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.core.UIComponent.prototype.clipParameters, mx.core.UIObject.prototype.clipParameters); }
Symbol 797 MovieClip [__Packages.ListCell] Frame 0
class ListCell extends mx.core.UIComponent { var createLabel, listOwner, myCell, __width, __height, setStyle; function ListCell () { super(); } function init() { } function createChildren(Void) { var _local2 = createLabel("myCell", 0); _local2.styleName = listOwner; _local2.selectable = false; } function size(Void) { myCell.setSize(__width, __height); } function setValue(suggested, item, sel) { if (item.paint != undefined) { setStyle("color", item.paint); } else { setStyle("color", 0); } myCell.setValue(suggested); } function getPreferredHeight() { return(myCell.getPreferredHeight()); } function getPreferredWidth() { return(myCell.getPreferredWidth()); } static var symbolName = "ListCell"; }
Symbol 690 MovieClip [__Packages.mx.skins.ColoredSkinElement] Frame 0
class mx.skins.ColoredSkinElement { var getStyle, _color, onEnterFrame; function ColoredSkinElement () { } function setColor(c) { if (c != undefined) { var _local2 = new Color(this); _local2.setRGB(c); } } function draw(Void) { setColor(getStyle(_color)); onEnterFrame = undefined; } function invalidateStyle(Void) { onEnterFrame = draw; } static function setColorStyle(p, colorStyle) { if (p._color == undefined) { p._color = colorStyle; } p.setColor = mixins.setColor; p.invalidateStyle = mixins.invalidateStyle; p.draw = mixins.draw; p.setColor(p.getStyle(colorStyle)); } static var mixins = new mx.skins.ColoredSkinElement(); }
Symbol 686 MovieClip [__Packages.mx.controls.SimpleButton] Frame 0
class mx.controls.SimpleButton extends mx.core.UIComponent { static var emphasizedStyleDeclaration; var preset, boundingBox_mc, useHandCursor, skinName, linkLength, iconName, destroyObject, __width, _width, __height, _height, __emphaticStyleName, styleName, enabled, invalidate, pressFocus, dispatchEvent, autoRepeat, interval, getStyle, releaseFocus, createLabel, invalidateStyle; function SimpleButton () { super(); } function init(Void) { super.init(); if (preset == undefined) { boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } useHandCursor = false; } function createChildren(Void) { if (preset != undefined) { var _local2 = this[idNames[preset]]; this[refNames[preset]] = _local2; skinName = _local2; if (falseOverSkin.length == 0) { rolloverSkin = fus; } if (falseOverIcon.length == 0) { rolloverIcon = fui; } initializing = false; } else if (__state == true) { setStateVar(true); } else { if (falseOverSkin.length == 0) { rolloverSkin = fus; } if (falseOverIcon.length == 0) { rolloverIcon = fui; } } } function setIcon(tag, linkageName) { return(setSkin(tag + 8, linkageName)); } function changeIcon(tag, linkageName) { linkLength = linkageName.length; var _local2 = stateNames[tag] + "Icon"; this[_local2] = linkageName; this[idNames[tag + 8]] = _local2; setStateVar(getState()); } function changeSkin(tag, linkageName) { var _local2 = stateNames[tag] + "Skin"; this[_local2] = linkageName; this[idNames[tag]] = _local2; setStateVar(getState()); } function viewIcon(varName) { var _local4 = varName + "Icon"; var _local3 = this[_local4]; if (typeof(_local3) == "string") { var _local5 = _local3; if (__emphasized) { if (this[_local3 + "Emphasized"].length > 0) { _local3 = _local3 + "Emphasized"; } } if (this[_local3].length == 0) { return(undefined); } _local3 = setIcon(tagMap[_local5], this[_local3]); if ((_local3 == undefined) && (_global.isLivePreview)) { _local3 = setIcon(0, "ButtonIcon"); } this[_local4] = _local3; } iconName._visible = false; iconName = _local3; iconName._visible = true; } function removeIcons() { var _local3 = 0; while (_local3 < 2) { var _local2 = 8; while (_local2 < 16) { destroyObject(idNames[_local2]); this[stateNames[_local2 - 8] + "Icon"] = ""; _local2++; } _local3++; } refresh(); } function setSkin(tag, linkageName, initobj) { var _local3 = super.setSkin(tag, linkageName, ((initobj != undefined) ? (initobj) : ({styleName:this}))); calcSize(tag, _local3); return(_local3); } function calcSize(Void) { __width = _width; __height = _height; } function viewSkin(varName, initObj) { var _local3 = varName + "Skin"; var _local2 = this[_local3]; if (typeof(_local2) == "string") { var _local4 = _local2; if (__emphasized) { if (this[_local2 + "Emphasized"].length > 0) { _local2 = _local2 + "Emphasized"; } } if (this[_local2].length == 0) { return(undefined); } _local2 = setSkin(tagMap[_local4], this[_local2], ((initObj != undefined) ? (initObj) : ({styleName:this}))); this[_local3] = _local2; } skinName._visible = false; skinName = _local2; skinName._visible = true; } function showEmphasized(e) { if (e && (!__emphatic)) { if (emphasizedStyleDeclaration != undefined) { __emphaticStyleName = styleName; styleName = emphasizedStyleDeclaration; } __emphatic = true; } else { if (__emphatic) { styleName = __emphaticStyleName; } __emphatic = false; } } function refresh(Void) { var _local2 = getState(); if (enabled == false) { viewIcon("disabled"); viewSkin("disabled"); } else { viewSkin(phase); viewIcon(phase); } setView(phase == "down"); iconName.enabled = enabled; } function setView(offset) { if (iconName == undefined) { return(undefined); } var _local2 = (offset ? (btnOffset) : 0); iconName._x = ((__width - iconName._width) / 2) + _local2; iconName._y = ((__height - iconName._height) / 2) + _local2; } function setStateVar(state) { if (state) { if (trueOverSkin.length == 0) { rolloverSkin = tus; } else { rolloverSkin = trs; } if (trueOverIcon.length == 0) { rolloverIcon = tui; } else { rolloverIcon = tri; } upSkin = tus; downSkin = tds; disabledSkin = dts; upIcon = tui; downIcon = tdi; disabledIcon = dti; } else { if (falseOverSkin.length == 0) { rolloverSkin = fus; } else { rolloverSkin = frs; } if (falseOverIcon.length == 0) { rolloverIcon = fui; } else { rolloverIcon = fri; } upSkin = fus; downSkin = fds; disabledSkin = dfs; upIcon = fui; downIcon = fdi; disabledIcon = dfi; } __state = state; } function setState(state) { if (state != __state) { setStateVar(state); invalidate(); } } function size(Void) { refresh(); } function draw(Void) { if (initializing) { initializing = false; skinName.visible = true; iconName.visible = true; } size(); } function getState(Void) { return(__state); } function setToggle(val) { __toggle = val; if (__toggle == false) { setState(false); } } function getToggle(Void) { return(__toggle); } function set toggle(val) { setToggle(val); //return(toggle); } function get toggle() { return(getToggle()); } function set value(val) { setSelected(val); //return(value); } function get value() { return(getSelected()); } function set selected(val) { setSelected(val); //return(selected); } function get selected() { return(getSelected()); } function setSelected(val) { if (__toggle) { setState(val); } else { setState((initializing ? (val) : (__state))); } } function getSelected() { return(__state); } function setEnabled(val) { if (enabled != val) { super.setEnabled(val); invalidate(); } } function onPress(Void) { pressFocus(); phase = "down"; refresh(); dispatchEvent({type:"buttonDown"}); if (autoRepeat) { interval = setInterval(this, "onPressDelay", getStyle("repeatDelay")); } } function onPressDelay(Void) { dispatchEvent({type:"buttonDown"}); if (autoRepeat) { clearInterval(interval); interval = setInterval(this, "onPressRepeat", getStyle("repeatInterval")); } } function onPressRepeat(Void) { dispatchEvent({type:"buttonDown"}); updateAfterEvent(); } function onRelease(Void) { releaseFocus(); phase = "rollover"; if (interval != undefined) { clearInterval(interval); delete interval; } if (getToggle()) { setState(!getState()); } else { refresh(); } dispatchEvent({type:"click"}); } function onDragOut(Void) { phase = "up"; refresh(); dispatchEvent({type:"buttonDragOut"}); } function onDragOver(Void) { if (phase != "up") { onPress(); return(undefined); } phase = "down"; refresh(); } function onReleaseOutside(Void) { releaseFocus(); phase = "up"; if (interval != undefined) { clearInterval(interval); delete interval; } } function onRollOver(Void) { phase = "rollover"; refresh(); } function onRollOut(Void) { phase = "up"; refresh(); } function getLabel(Void) { return(fui.text); } function setLabel(val) { if (typeof(fui) == "string") { createLabel("fui", 8, val); fui.styleName = this; } else { fui.text = val; } var _local4 = fui._getTextFormat(); var _local2 = _local4.getTextExtent2(val); fui._width = _local2.width + 5; fui._height = _local2.height + 5; iconName = fui; setView(__state); } function get emphasized() { return(__emphasized); } function set emphasized(val) { __emphasized = val; var _local2 = 0; while (_local2 < 8) { this[idNames[_local2]] = stateNames[_local2] + "Skin"; if (typeof(this[idNames[_local2 + 8]]) == "movieclip") { this[idNames[_local2 + 8]] = stateNames[_local2] + "Icon"; } _local2++; } showEmphasized(__emphasized); setStateVar(__state); invalidateStyle(); //return(emphasized); } function keyDown(e) { if (e.code == 32) { onPress(); } } function keyUp(e) { if (e.code == 32) { onRelease(); } } function onKillFocus(newFocus) { super.onKillFocus(); if (phase != "up") { phase = "up"; refresh(); } } static var symbolName = "SimpleButton"; static var symbolOwner = mx.controls.SimpleButton; static var version = "2.0.2.127"; var className = "SimpleButton"; var style3dInset = 4; var btnOffset = 1; var __toggle = false; var __state = false; var __emphasized = false; var __emphatic = false; static var falseUp = 0; static var falseDown = 1; static var falseOver = 2; static var falseDisabled = 3; static var trueUp = 4; static var trueDown = 5; static var trueOver = 6; static var trueDisabled = 7; var falseUpSkin = "SimpleButtonUp"; var falseDownSkin = "SimpleButtonIn"; var falseOverSkin = ""; var falseDisabledSkin = "SimpleButtonUp"; var trueUpSkin = "SimpleButtonIn"; var trueDownSkin = ""; var trueOverSkin = ""; var trueDisabledSkin = "SimpleButtonIn"; var falseUpIcon = ""; var falseDownIcon = ""; var falseOverIcon = ""; var falseDisabledIcon = ""; var trueUpIcon = ""; var trueDownIcon = ""; var trueOverIcon = ""; var trueDisabledIcon = ""; var phase = "up"; var fui = "falseUpIcon"; var fus = "falseUpSkin"; var fdi = "falseDownIcon"; var fds = "falseDownSkin"; var frs = "falseOverSkin"; var fri = "falseOverIcon"; var dfi = "falseDisabledIcon"; var dfs = "falseDisabledSkin"; var tui = "trueUpIcon"; var tus = "trueUpSkin"; var tdi = "trueDownIcon"; var tds = "trueDownSkin"; var trs = "trueOverSkin"; var tri = "trueOverIcon"; var dts = "trueDisabledSkin"; var dti = "trueDisabledIcon"; var rolloverSkin = mx.controls.SimpleButton.prototype.frs; var rolloverIcon = mx.controls.SimpleButton.prototype.fri; var upSkin = mx.controls.SimpleButton.prototype.fus; var downSkin = mx.controls.SimpleButton.prototype.fds; var disabledSkin = mx.controls.SimpleButton.prototype.dfs; var upIcon = mx.controls.SimpleButton.prototype.fui; var downIcon = mx.controls.SimpleButton.prototype.fdi; var disabledIcon = mx.controls.SimpleButton.prototype.dfi; var initializing = true; var idNames = ["fus", "fds", "frs", "dfs", "tus", "tds", "trs", "dts", "fui", "fdi", "fri", "dfi", "tui", "tdi", "tri", "dti"]; var stateNames = ["falseUp", "falseDown", "falseOver", "falseDisabled", "trueUp", "trueDown", "trueOver", "trueDisabled"]; var refNames = ["upSkin", "downSkin", "rolloverSkin", "disabledSkin"]; var tagMap = {falseUpSkin:0, falseDownSkin:1, falseOverSkin:2, falseDisabledSkin:3, trueUpSkin:4, trueDownSkin:5, trueOverSkin:6, trueDisabledSkin:7, falseUpIcon:0, falseDownIcon:1, falseOverIcon:2, falseDisabledIcon:3, trueUpIcon:4, trueDownIcon:5, trueOverIcon:6, trueDisabledIcon:7}; }
Symbol 798 MovieClip [__Packages.ButtonCellRenderer] Frame 0
class ButtonCellRenderer extends mx.core.UIComponent { var but, lab, createLabel, listOwner, __height, __width, createObject, destroyObject, setStyle; function ButtonCellRenderer () { super(); but = null; } function createChildren(Void) { lab = createLabel("lab", 0); lab.styleName = listOwner; lab.selectable = false; size(); } function size(Void) { if (but != null) { but.setSize(50, __height); but._x = (__width - but._width) - 3; but._y = __height - but._height; } lab.setSize(__width, __height); } function setValue(str, item, sel) { if ((sel == "selected") && ((item.paint == undefined) || (item.paint == 0))) { if ((((but == null) && (_root.g_bSentRequest == false)) && (item.data != _root.UserGetNick())) && (item.match == 1)) { var _local3 = new Object(); _local3.falseUpSkin = "callButtonSkin"; _local3.falseDownSkin = "callButtonSkin"; _local3.falseOverSkin = "callButtonSkin"; _local3.falseDisabledSkin = "callButtonSkin"; but = createObject("Button", "call_button", 1, _local3); but.addEventListener("click", this); but.setLabel("Call"); but._setIcon("grPhoneIcon"); size(); } } else if ((sel == "normal") && (but != null)) { destroyObject("call_button"); but = null; } if (item.paint != undefined) { setStyle("color", item.paint); } else { setStyle("color", 0); } lab.setValue(str); } function getPreferredHeight(Void) { return(lab.getPreferredHeight()); } function getPreferredWidth(Void) { return(lab.getPreferredWidth()); } function click() { listOwner.butClick(); } }
Symbol 678 MovieClip [__Packages.mx.skins.Border] Frame 0
class mx.skins.Border extends mx.core.UIObject { function Border () { super(); } function init(Void) { super.init(); } static var symbolName = "Border"; static var symbolOwner = mx.skins.Border; var className = "Border"; var tagBorder = 0; var idNames = new Array("border_mc"); }
Symbol 684 MovieClip [__Packages.mx.skins.CustomBorder] Frame 0
class mx.skins.CustomBorder extends mx.skins.Border { var __width, __height, l_mc, setSkin, minHeight, minWidth, m_mc, r_mc; function CustomBorder () { super(); } function get width() { return(__width); } function get height() { return(__height); } function init(Void) { super.init(); } function createChildren(Void) { } function draw(Void) { if (l_mc == undefined) { var _local2 = setSkin(tagL, leftSkin); if (horizontal) { minHeight = l_mc._height; minWidth = l_mc._width; } else { minHeight = l_mc._height; minWidth = l_mc._width; } } if (m_mc == undefined) { setSkin(tagM, middleSkin); if (horizontal) { minHeight = m_mc._height; minWidth = minWidth + m_mc._width; } else { minHeight = minHeight + m_mc._height; minWidth = m_mc._width; } } if (r_mc == undefined) { setSkin(tagR, rightSkin); if (horizontal) { minHeight = r_mc._height; minWidth = minWidth + r_mc._width; } else { minHeight = minHeight + r_mc._height; minWidth = r_mc._width; } } size(); } function size(Void) { l_mc.move(0, 0); if (horizontal) { r_mc.move(width - r_mc.width, 0); m_mc.move(l_mc.width, 0); m_mc.setSize(r_mc.x - m_mc.x, m_mc.height); } else { r_mc.move(0, height - r_mc.height, 0); m_mc.move(0, l_mc.height); m_mc.setSize(m_mc.width, r_mc.y - m_mc.y); } } static var symbolName = "CustomBorder"; static var symbolOwner = mx.skins.CustomBorder; static var version = "2.0.2.127"; var className = "CustomBorder"; static var tagL = 0; static var tagM = 1; static var tagR = 2; var idNames = new Array("l_mc", "m_mc", "r_mc"); var leftSkin = "F3PieceLeft"; var middleSkin = "F3PieceMiddle"; var rightSkin = "F3PieceRight"; var horizontal = true; }
Symbol 685 MovieClip [__Packages.mx.controls.scrollClasses.ScrollThumb] Frame 0
class mx.controls.scrollClasses.ScrollThumb extends mx.skins.CustomBorder { var useHandCursor, ymin, ymax, datamin, datamax, scrollMove, lastY, _ymouse, _y, _parent, onMouseMove, grip_mc, setSkin, gripSkin, __get__width, __get__height; function ScrollThumb () { super(); } function createChildren(Void) { super.createChildren(); useHandCursor = false; } function setRange(_ymin, _ymax, _datamin, _datamax) { ymin = _ymin; ymax = _ymax; datamin = _datamin; datamax = _datamax; } function dragThumb(Void) { scrollMove = _ymouse - lastY; scrollMove = scrollMove + _y; if (scrollMove < ymin) { scrollMove = ymin; } else if (scrollMove > ymax) { scrollMove = ymax; } _parent.isScrolling = true; _y = scrollMove; var _local2 = Math.round(((datamax - datamin) * (_y - ymin)) / (ymax - ymin)) + datamin; _parent.scrollPosition = _local2; _parent.dispatchScrollEvent("ThumbTrack"); updateAfterEvent(); } function stopDragThumb(Void) { _parent.isScrolling = false; _parent.dispatchScrollEvent("ThumbPosition"); _parent.dispatchScrollChangedEvent(); delete onMouseMove; } function onPress(Void) { _parent.pressFocus(); lastY = _ymouse; onMouseMove = dragThumb; super.onPress(); } function onRelease(Void) { _parent.releaseFocus(); stopDragThumb(); super.onRelease(); } function onReleaseOutside(Void) { _parent.releaseFocus(); stopDragThumb(); super.onReleaseOutside(); } function draw() { super.draw(); if (grip_mc == undefined) { setSkin(3, gripSkin); } } function size() { super.size(); grip_mc.move((__get__width() - grip_mc.width) / 2, (__get__height() - grip_mc.height) / 2); } static var symbolOwner = mx.skins.CustomBorder.symbolOwner; var className = "ScrollThumb"; var btnOffset = 0; var horizontal = false; var idNames = new Array("l_mc", "m_mc", "r_mc", "grip_mc"); }
Symbol 687 MovieClip [__Packages.mx.controls.scrollClasses.ScrollBar] Frame 0
class mx.controls.scrollClasses.ScrollBar extends mx.core.UIComponent { var isScrolling, scrollTrack_mc, scrollThumb_mc, __height, tabEnabled, focusEnabled, boundingBox_mc, setSkin, upArrow_mc, _minHeight, _minWidth, downArrow_mc, createObject, createClassObject, enabled, _height, dispatchEvent, minMode, maxMode, plusMode, minusMode, _parent, getStyle, scrolling, _ymouse; function ScrollBar () { super(); } function get scrollPosition() { return(_scrollPosition); } function set scrollPosition(pos) { _scrollPosition = pos; if (isScrolling != true) { pos = Math.min(pos, maxPos); pos = Math.max(pos, minPos); var _local3 = (((pos - minPos) * (scrollTrack_mc.height - scrollThumb_mc._height)) / (maxPos - minPos)) + scrollTrack_mc.top; scrollThumb_mc.move(0, _local3); } //return(scrollPosition); } function get pageScrollSize() { return(largeScroll); } function set pageScrollSize(lScroll) { largeScroll = lScroll; //return(pageScrollSize); } function set lineScrollSize(sScroll) { smallScroll = sScroll; //return(lineScrollSize); } function get lineScrollSize() { return(smallScroll); } function get virtualHeight() { return(__height); } function init(Void) { super.init(); _scrollPosition = 0; tabEnabled = false; focusEnabled = false; boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function createChildren(Void) { if (scrollTrack_mc == undefined) { setSkin(skinIDTrack, scrollTrackName); } scrollTrack_mc.visible = false; var _local3 = new Object(); _local3.enabled = false; _local3.preset = mx.controls.SimpleButton.falseDisabled; _local3.initProperties = 0; _local3.autoRepeat = true; _local3.tabEnabled = false; var _local2; if (upArrow_mc == undefined) { _local2 = createButton(upArrowName, "upArrow_mc", skinIDUpArrow, _local3); } _local2.buttonDownHandler = onUpArrow; _local2.clickHandler = onScrollChanged; _minHeight = _local2.height; _minWidth = _local2.width; if (downArrow_mc == undefined) { _local2 = createButton(downArrowName, "downArrow_mc", skinIDDownArrow, _local3); } _local2.buttonDownHandler = onDownArrow; _local2.clickHandler = onScrollChanged; _minHeight = _minHeight + _local2.height; } function createButton(linkageName, id, skinID, o) { if (skinID == skinIDUpArrow) { o.falseUpSkin = upArrowUpName; o.falseDownSkin = upArrowDownName; o.falseOverSkin = upArrowOverName; } else { o.falseUpSkin = downArrowUpName; o.falseDownSkin = downArrowDownName; o.falseOverSkin = downArrowOverName; } var _local3 = createObject(linkageName, id, skinID, o); this[id].visible = false; this[id].useHandCursor = false; return(_local3); } function createThumb(Void) { var _local2 = new Object(); _local2.validateNow = true; _local2.tabEnabled = false; _local2.leftSkin = thumbTopName; _local2.middleSkin = thumbMiddleName; _local2.rightSkin = thumbBottomName; _local2.gripSkin = thumbGripName; createClassObject(mx.controls.scrollClasses.ScrollThumb, "scrollThumb_mc", skinIDThumb, _local2); } function setScrollProperties(pSize, mnPos, mxPos, ls) { var _local4; var _local2 = scrollTrack_mc; pageSize = pSize; largeScroll = (((ls != undefined) && (ls > 0)) ? (ls) : (pSize)); minPos = Math.max(mnPos, 0); maxPos = Math.max(mxPos, 0); _scrollPosition = Math.max(minPos, _scrollPosition); _scrollPosition = Math.min(maxPos, _scrollPosition); if (((maxPos - minPos) > 0) && (enabled)) { var _local5 = _scrollPosition; if (!initializing) { upArrow_mc.enabled = true; downArrow_mc.enabled = true; } _local2.onPress = (_local2.onDragOver = startTrackScroller); _local2.onRelease = releaseScrolling; _local2.onDragOut = (_local2.stopScrolling = stopScrolling); _local2.onReleaseOutside = releaseScrolling; _local2.useHandCursor = false; if (scrollThumb_mc == undefined) { createThumb(); } var _local3 = scrollThumb_mc; if (scrollTrackOverName.length > 0) { _local2.onRollOver = trackOver; _local2.onRollOut = trackOut; } _local4 = (pageSize / ((maxPos - minPos) + pageSize)) * _local2.height; if (_local4 < _local3.minHeight) { if (_local2.height < _local3.minHeight) { _local3.__set__visible(false); } else { _local4 = _local3.minHeight; _local3.__set__visible(true); _local3.setSize(_minWidth, _local3.minHeight + 0); } } else { _local3.__set__visible(true); _local3.setSize(_minWidth, _local4); } _local3.setRange(upArrow_mc.__get__height() + 0, (virtualHeight - downArrow_mc.__get__height()) - _local3.__get__height(), minPos, maxPos); _local5 = Math.min(_local5, maxPos); scrollPosition = (Math.max(_local5, minPos)); } else { scrollThumb_mc.__set__visible(false); if (!initializing) { upArrow_mc.enabled = false; downArrow_mc.enabled = false; } delete _local2.onPress; delete _local2.onDragOver; delete _local2.onRelease; delete _local2.onDragOut; delete _local2.onRollOver; delete _local2.onRollOut; delete _local2.onReleaseOutside; } if (initializing) { scrollThumb_mc.__set__visible(false); } } function setEnabled(enabledFlag) { super.setEnabled(enabledFlag); setScrollProperties(pageSize, minPos, maxPos, largeScroll); } function draw(Void) { if (initializing) { initializing = false; scrollTrack_mc.visible = true; upArrow_mc.__set__visible(true); downArrow_mc.__set__visible(true); } size(); } function size(Void) { if (_height == 1) { return(undefined); } if (upArrow_mc == undefined) { return(undefined); } var _local3 = upArrow_mc.__get__height(); var _local2 = downArrow_mc.__get__height(); upArrow_mc.move(0, 0); var _local4 = scrollTrack_mc; _local4._y = _local3; _local4._height = (virtualHeight - _local3) - _local2; downArrow_mc.move(0, virtualHeight - _local2); setScrollProperties(pageSize, minPos, maxPos, largeScroll); } function dispatchScrollEvent(detail) { dispatchEvent({type:"scroll", detail:detail}); } function isScrollBarKey(k) { if (k == 36) { if (scrollPosition != 0) { scrollPosition = (0); dispatchScrollEvent(minMode); } return(true); } if (k == 35) { if (scrollPosition < maxPos) { scrollPosition = (maxPos); dispatchScrollEvent(maxMode); } return(true); } return(false); } function scrollIt(inc, mode) { var _local3 = smallScroll; if (inc != "Line") { _local3 = ((largeScroll == 0) ? (pageSize) : (largeScroll)); } var _local2 = _scrollPosition + (mode * _local3); if (_local2 > maxPos) { _local2 = maxPos; } else if (_local2 < minPos) { _local2 = minPos; } if (scrollPosition != _local2) { scrollPosition = (_local2); var _local4 = ((mode < 0) ? (minusMode) : (plusMode)); dispatchScrollEvent(inc + _local4); } } function startTrackScroller(Void) { _parent.pressFocus(); if (_parent.scrollTrackDownName.length > 0) { if (_parent.scrollTrackDown_mc == undefined) { _parent.setSkin(skinIDTrackDown, scrollTrackDownName); } else { _parent.scrollTrackDown_mc.visible = true; } } _parent.trackScroller(); _parent.scrolling = setInterval(_parent, "scrollInterval", getStyle("repeatDelay"), "Page", -1); } function scrollInterval(inc, mode) { clearInterval(scrolling); if (inc == "Page") { trackScroller(); } else { scrollIt(inc, mode); } scrolling = setInterval(this, "scrollInterval", getStyle("repeatInterval"), inc, mode); } function trackScroller(Void) { if ((scrollThumb_mc._y + scrollThumb_mc.__get__height()) < _ymouse) { scrollIt("Page", 1); } else if (scrollThumb_mc._y > _ymouse) { scrollIt("Page", -1); } } function dispatchScrollChangedEvent(Void) { dispatchEvent({type:"scrollChanged"}); } function stopScrolling(Void) { clearInterval(_parent.scrolling); _parent.scrollTrackDown_mc.visible = false; } function releaseScrolling(Void) { _parent.releaseFocus(); stopScrolling(); _parent.dispatchScrollChangedEvent(); } function trackOver(Void) { if (_parent.scrollTrackOverName.length > 0) { if (_parent.scrollTrackOver_mc == undefined) { _parent.setSkin(skinIDTrackOver, scrollTrackOverName); } else { _parent.scrollTrackOver_mc.visible = true; } } } function trackOut(Void) { _parent.scrollTrackOver_mc.visible = false; } function onUpArrow(Void) { _parent.scrollIt("Line", -1); } function onDownArrow(Void) { _parent.scrollIt("Line", 1); } function onScrollChanged(Void) { _parent.dispatchScrollChangedEvent(); } static var symbolOwner = mx.core.UIComponent; var className = "ScrollBar"; var minPos = 0; var maxPos = 0; var pageSize = 0; var largeScroll = 0; var smallScroll = 1; var _scrollPosition = 0; var scrollTrackName = "ScrollTrack"; var scrollTrackOverName = ""; var scrollTrackDownName = ""; var upArrowName = "BtnUpArrow"; var upArrowUpName = "ScrollUpArrowUp"; var upArrowOverName = "ScrollUpArrowOver"; var upArrowDownName = "ScrollUpArrowDown"; var downArrowName = "BtnDownArrow"; var downArrowUpName = "ScrollDownArrowUp"; var downArrowOverName = "ScrollDownArrowOver"; var downArrowDownName = "ScrollDownArrowDown"; var thumbTopName = "ScrollThumbTopUp"; var thumbMiddleName = "ScrollThumbMiddleUp"; var thumbBottomName = "ScrollThumbBottomUp"; var thumbGripName = "ScrollThumbGripUp"; static var skinIDTrack = 0; static var skinIDTrackOver = 1; static var skinIDTrackDown = 2; static var skinIDUpArrow = 3; static var skinIDDownArrow = 4; static var skinIDThumb = 5; var idNames = new Array("scrollTrack_mc", "scrollTrackOver_mc", "scrollTrackDown_mc", "upArrow_mc", "downArrow_mc"); var clipParameters = {minPos:1, maxPos:1, pageSize:1, scrollPosition:1, lineScrollSize:1, pageScrollSize:1, visible:1, enabled:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.scrollClasses.ScrollBar.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters); var initializing = true; }
Symbol 578 MovieClip [__Packages.mx.core.View] Frame 0
class mx.core.View extends mx.core.UIComponent { var tabChildren, tabEnabled, boundingBox_mc, border_mc, __get__width, __get__height, __tabIndex, depth, createObject, createClassObject, loadExternal, destroyObject, createClassChildAtDepth, doLater; function View () { super(); } function init() { super.init(); tabChildren = true; tabEnabled = false; boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function size() { border_mc.move(0, 0); border_mc.setSize(__get__width(), __get__height()); doLayout(); } function draw() { size(); } function get numChildren() { var _local3 = childNameBase; var _local2 = 0; while (true) { if (this[_local3 + _local2] == undefined) { return(_local2); } _local2++; } } function get tabIndex() { return((tabEnabled ? (__tabIndex) : undefined)); } function set tabIndex(n) { __tabIndex = n; //return(tabIndex); } function addLayoutObject(object) { } function createChild(className, instanceName, initProps) { if (depth == undefined) { depth = 1; } var _local2; if (typeof(className) == "string") { _local2 = createObject(className, instanceName, depth++, initProps); } else { _local2 = createClassObject(className, instanceName, depth++, initProps); } if (_local2 == undefined) { _local2 = loadExternal(className, _loadExternalClass, instanceName, depth++, initProps); } else { this[childNameBase + numChildren] = _local2; _local2._complete = true; childLoaded(_local2); } addLayoutObject(_local2); return(_local2); } function getChildAt(childIndex) { return(this[childNameBase + childIndex]); } function destroyChildAt(childIndex) { if (!((childIndex >= 0) && (childIndex < numChildren))) { return(undefined); } var _local4 = childNameBase + childIndex; var _local6 = numChildren; var _local3; for (_local3 in this) { if (_local3 == _local4) { _local4 = ""; destroyObject(_local3); break; } } var _local2 = Number(childIndex); while (_local2 < (_local6 - 1)) { this[childNameBase + _local2] = this[childNameBase + (_local2 + 1)]; _local2++; } delete this[childNameBase + (_local6 - 1)]; depth--; } function initLayout() { if (!hasBeenLayedOut) { doLayout(); } } function doLayout() { hasBeenLayedOut = true; } function createChildren() { if (border_mc == undefined) { border_mc = createClassChildAtDepth(_global.styles.rectBorderClass, mx.managers.DepthManager.kBottom, {styleName:this}); } doLater(this, "initLayout"); } function convertToUIObject(obj) { } function childLoaded(obj) { convertToUIObject(obj); } static function extension() { mx.core.ExternalContent.enableExternalContent(); } static var symbolName = "View"; static var symbolOwner = mx.core.View; static var version = "2.0.0.377"; var className = "View"; static var childNameBase = "_child"; var hasBeenLayedOut = false; var _loadExternalClass = "UIComponent"; }
Symbol 579 MovieClip [__Packages.mx.core.ScrollView] Frame 0
class mx.core.ScrollView extends mx.core.View { var __width, hScroller, vScroller, __maxHPosition, propsInited, scrollAreaChanged, specialHScrollCase, createObject, viewableColumns, __height, oldRndUp, viewableRows, __viewMetrics, owner, enabled, border_mc, __get__width, __get__height, invLayout, mask_mc, _parent, dispatchEvent; function ScrollView () { super(); } function getHScrollPolicy(Void) { return(__hScrollPolicy); } function setHScrollPolicy(policy) { __hScrollPolicy = policy.toLowerCase(); if (__width == undefined) { return(undefined); } setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding); } function get hScrollPolicy() { return(getHScrollPolicy()); } function set hScrollPolicy(policy) { setHScrollPolicy(policy); //return(hScrollPolicy); } function getVScrollPolicy(Void) { return(__vScrollPolicy); } function setVScrollPolicy(policy) { __vScrollPolicy = policy.toLowerCase(); if (__width == undefined) { return(undefined); } setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding); } function get vScrollPolicy() { return(getVScrollPolicy()); } function set vScrollPolicy(policy) { setVScrollPolicy(policy); //return(vScrollPolicy); } function get hPosition() { return(getHPosition()); } function set hPosition(pos) { setHPosition(pos); //return(hPosition); } function getHPosition(Void) { return(__hPosition); } function setHPosition(pos) { hScroller.__set__scrollPosition(pos); __hPosition = pos; } function get vPosition() { return(getVPosition()); } function set vPosition(pos) { setVPosition(pos); //return(vPosition); } function getVPosition(Void) { return(__vPosition); } function setVPosition(pos) { vScroller.__set__scrollPosition(pos); __vPosition = pos; } function get maxVPosition() { var _local2 = vScroller.maxPos; return(((_local2 == undefined) ? 0 : (_local2))); } function get maxHPosition() { return(getMaxHPosition()); } function set maxHPosition(pos) { setMaxHPosition(pos); //return(maxHPosition); } function getMaxHPosition(Void) { if (__maxHPosition != undefined) { return(__maxHPosition); } var _local2 = hScroller.maxPos; return(((_local2 == undefined) ? 0 : (_local2))); } function setMaxHPosition(pos) { __maxHPosition = pos; } function setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding) { var _local3 = getViewMetrics(); if (hPadding == undefined) { hPadding = 0; } if (wPadding == undefined) { wPadding = 0; } propsInited = true; delete scrollAreaChanged; heightPadding = hPadding; widthPadding = wPadding; if (colWidth == 0) { colWidth = 1; } if (rwHeight == 0) { rwHeight = 1; } var _local5 = Math.ceil((((__width - _local3.left) - _local3.right) - widthPadding) / colWidth); if ((__hScrollPolicy == "on") || ((_local5 < colCount) && (__hScrollPolicy == "auto"))) { if ((hScroller == undefined) || (specialHScrollCase)) { delete specialHScrollCase; hScroller = createObject("HScrollBar", "hSB", 1001); hScroller.__set__lineScrollSize(20); hScroller.scrollHandler = scrollProxy; hScroller.__set__scrollPosition(__hPosition); scrollAreaChanged = true; } if ((((numberOfCols != colCount) || (columnWidth != colWidth)) || (viewableColumns != _local5)) || (scrollAreaChanged)) { hScroller.setScrollProperties(_local5, 0, colCount - _local5); viewableColumns = _local5; numberOfCols = colCount; columnWidth = colWidth; } } else if (((__hScrollPolicy == "auto") || (__hScrollPolicy == "off")) && (hScroller != undefined)) { hScroller.removeMovieClip(); delete hScroller; scrollAreaChanged = true; } if (heightPadding == undefined) { heightPadding = 0; } var _local4 = Math.ceil((((__height - _local3.top) - _local3.bottom) - heightPadding) / rwHeight); var _local8 = (((__height - _local3.top) - _local3.bottom) % rwHeight) != 0; if ((__vScrollPolicy == "on") || ((_local4 < (rwCount + _local8)) && (__vScrollPolicy == "auto"))) { if (vScroller == undefined) { vScroller = createObject("VScrollBar", "vSB", 1002); vScroller.scrollHandler = scrollProxy; vScroller.__set__scrollPosition(__vPosition); scrollAreaChanged = true; rowH = 0; } if ((((rowC != rwCount) || (rowH != rwHeight)) || ((viewableRows + _local8) != (_local4 + oldRndUp))) || (scrollAreaChanged)) { vScroller.setScrollProperties(_local4, 0, (rwCount - _local4) + _local8); viewableRows = _local4; rowC = rwCount; rowH = rwHeight; oldRndUp = _local8; } } else if (((__vScrollPolicy == "auto") || (__vScrollPolicy == "off")) && (vScroller != undefined)) { vScroller.removeMovieClip(); delete vScroller; scrollAreaChanged = true; } numberOfCols = colCount; columnWidth = colWidth; if (scrollAreaChanged) { doLayout(); var _local2 = __viewMetrics; var _local12 = ((owner != undefined) ? (owner) : this); _local12.layoutContent(_local2.left, _local2.top, ((columnWidth * numberOfCols) - _local2.left) - _local2.right, rowC * rowH, (__width - _local2.left) - _local2.right, (__height - _local2.top) - _local2.bottom); } if (!enabled) { setEnabled(false); } } function getViewMetrics(Void) { var _local2 = __viewMetrics; var _local3 = border_mc.__get__borderMetrics(); _local2.left = _local3.left; _local2.right = _local3.right; if (vScroller != undefined) { _local2.right = _local2.right + vScroller.minWidth; } _local2.top = _local3.top; if ((hScroller == undefined) && ((__hScrollPolicy == "on") || (__hScrollPolicy == true))) { hScroller = createObject("FHScrollBar", "hSB", 1001); specialHScrollCase = true; } _local2.bottom = _local3.bottom; if (hScroller != undefined) { _local2.bottom = _local2.bottom + hScroller.minHeight; } return(_local2); } function doLayout(Void) { var _local10 = __get__width(); var _local8 = __get__height(); delete invLayout; var _local3 = (__viewMetrics = getViewMetrics()); var _local2 = _local3.left; var _local9 = _local3.right; var _local5 = _local3.top; var _local11 = _local3.bottom; var _local7 = hScroller; var _local6 = vScroller; _local7.setSize((_local10 - _local2) - _local9, _local7.minHeight + 0); _local7.move(_local2, _local8 - _local11); _local6.setSize(_local6.minWidth + 0, (_local8 - _local5) - _local11); _local6.move(_local10 - _local9, _local5); var _local4 = mask_mc; _local4._width = (_local10 - _local2) - _local9; _local4._height = (_local8 - _local5) - _local11; _local4._x = _local2; _local4._y = _local5; } function createChild(id, name, props) { var _local2 = super.createChild(id, name, props); return(_local2); } function init(Void) { super.init(); __viewMetrics = new Object(); if (_global.__SVMouseWheelManager == undefined) { var _local4 = (_global.__SVMouseWheelManager = new Object()); _local4.onMouseWheel = __onMouseWheel; Mouse.addListener(_local4); } } function __onMouseWheel(delta, scrollTarget) { var _local3 = scrollTarget; var _local1; while (_local3 != undefined) { if (_local3 instanceof mx.core.ScrollView) { _local1 = _local3; } _local3 = _local3._parent; } if (_local1 != undefined) { _local3 = ((delta <= 0) ? 1 : -1); var _local2 = _local1.vScroller.lineScrollSize; if (_local2 == undefined) { _local2 = 0; } _local2 = Math.max(Math.abs(delta), _local2); _local1.vPosition = _local1.vPosition + (_local2 * _local3); _local1.dispatchEvent({type:"scroll", direction:"vertical", position:_local1.vPosition}); } } function createChildren(Void) { super.createChildren(); if (mask_mc == undefined) { mask_mc = createObject("BoundingBox", "mask_mc", MASK_DEPTH); } mask_mc._visible = false; } function invalidate(Void) { super.invalidate(); } function draw(Void) { size(); } function size(Void) { super.size(); } function scrollProxy(docObj) { _parent.onScroll(docObj); } function onScroll(docObj) { var _local3 = docObj.target; var _local2 = _local3.scrollPosition; if (_local3 == vScroller) { var _local4 = "vertical"; var _local5 = "__vPosition"; } else { var _local4 = "horizontal"; var _local5 = "__hPosition"; } dispatchEvent({type:"scroll", direction:_local4, position:_local2}); this[_local5] = _local2; } function setEnabled(v) { vScroller.enabled = (hScroller.enabled = v); } function childLoaded(obj) { super.childLoaded(obj); obj.setMask(mask_mc); } static var symbolName = "ScrollView"; static var symbolOwner = mx.core.ScrollView; static var version = "2.0.0.377"; var className = "ScrollView"; var __vScrollPolicy = "auto"; var __hScrollPolicy = "off"; var __vPosition = 0; var __hPosition = 0; var numberOfCols = 0; var rowC = 0; var columnWidth = 1; var rowH = 0; var heightPadding = 0; var widthPadding = 0; var MASK_DEPTH = 10000; }
Symbol 580 MovieClip [__Packages.mx.controls.TextArea] Frame 0
class mx.controls.TextArea extends mx.core.ScrollView { var label, invalidate, initText, dispatchValueChangedEvent, getHPosition, setHPosition, getVPosition, setVPosition, _color, focusTextField, tfx, tfy, tfw, tfh, doLater, _vpos, _hpos, hookedV, vScroller, hookedH, hScroller, getViewMetrics, __get__width, __get__height, hScrollPolicy, vScrollPolicy, enabled, getStyle, getFocusManager, addEventListener, removeEventListener, _getTextFormat, setScrollProperties; function TextArea () { super(); } function get maxChars() { return(label.maxChars); } function set maxChars(x) { label.maxChars = x; //return(maxChars); } function get length() { return(label.length); } function get restrict() { return(label.restrict); } function set restrict(s) { label.restrict = ((s == "") ? null : (s)); //return(restrict); } function get wordWrap() { return(label.wordWrap); } function set wordWrap(s) { label.wordWrap = s; invalidate(); //return(wordWrap); } function get editable() { return(__editable); } function set editable(x) { __editable = x; label.type = (x ? "input" : "dynamic"); //return(editable); } function get password() { return(label.password); } function set password(s) { label.password = s; //return(password); } function get html() { return(getHtml()); } function set html(value) { setHtml(value); //return(html); } function getHtml() { return(label.html); } function setHtml(value) { if (value != label.html) { label.html = value; } } function get text() { return(getText()); } function set text(t) { setText(t); //return(text); } function getText() { if (initializing) { return(initText); } var _local2 = label; if (_local2.html == true) { return(_local2.htmlText); } return(_local2.text); } function setText(t) { if (initializing) { initText = t; } else { var _local2 = label; if (_local2.html == true) { _local2.htmlText = t; } else { _local2.text = t; } invalidate(); } dispatchValueChangedEvent(t); } function get hPosition() { return(getHPosition()); } function set hPosition(pos) { setHPosition(pos); label.hscroll = pos; label.background = false; //return(hPosition); } function get vPosition() { return(getVPosition()); } function set vPosition(pos) { setVPosition(pos); label.scroll = pos + 1; label.background = false; //return(vPosition); } function get maxVPosition() { var _local2 = label.maxscroll - 1; return(((_local2 == undefined) ? 0 : (_local2))); } function get maxHPosition() { var _local2 = label.maxhscroll; return(((_local2 == undefined) ? 0 : (_local2))); } function init(Void) { super.init(); label.styleName = this; _color = mx.core.UIObject.textColorList; focusTextField = label; label.owner = this; label.onSetFocus = function (x) { this._parent.onSetFocus(x); }; label.onKillFocus = function (x) { this._parent.onKillFocus(x); }; label.drawFocus = function (b) { this._parent.drawFocus(b); }; label.onChanged = function () { this.owner.adjustScrollBars(); this.owner.dispatchEvent({type:"change"}); this.owner.dispatchValueChangedEvent(this.owner.text); }; label.onScroller = function () { this.owner.hPosition = this.hscroll; this.owner.vPosition = this.scroll - 1; }; if (text == undefined) { text = (""); } } function createChildren(Void) { super.createChildren(); label.autoSize = "none"; } function layoutContent(x, y, totalW, totalH, displayW, displayH) { var _local2 = label; if ((((tfx != x) || (tfy != y)) || (tfw != displayW)) || (tfh != displayH)) { tfx = x; tfy = y; tfw = displayW; tfh = displayH; _local2.move(tfx, tfy); _local2.setSize(tfw, tfh); doLater(this, "adjustScrollBars"); } } function scrollChanged(Void) { var _local2 = Selection; if (_local2.lastBeginIndex != undefined) { restoreSelection(); } label.background = false; } function onScroll(docObj) { var _local3 = label; super.onScroll(docObj); _local3.hscroll = hPosition + 0; _local3.scroll = vPosition + 1; _vpos = _local3.scroll; _hpos = _local3.hscroll; _local3.background = false; if (hookedV != true) { vScroller.addEventListener("scrollChanged", this); hookedV = true; } if (hookedH != true) { hScroller.addEventListener("scrollChanged", this); hookedH = true; } } function size(Void) { var _local3 = getViewMetrics(); var _local7 = _local3.left + _local3.right; var _local4 = _local3.top + _local3.bottom; var _local6 = _local3.left; var _local5 = _local3.top; tfx = _local6; tfy = _local5; tfw = __get__width() - _local7; tfh = __get__height() - _local4; super.size(); label.move(tfx, tfy); label.setSize(tfw, tfh); if (__get__height() <= 40) { hScrollPolicy = "off"; vScrollPolicy = "off"; } doLater(this, "adjustScrollBars"); } function setEnabled(enable) { enabled = enable; vScroller.enabled = enable; hScroller.enabled = enable; label.type = (((editable == false) || (enabled == false)) ? "dynamic" : "input"); label.selectable = enabled; var _local2 = getStyle((enable ? "color" : "disabledColor")); if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } setColor(_local2); } function setColor(col) { label.textColor = col; } function setFocus(Void) { Selection.setFocus(label); } function onSetFocus(x) { var f = Selection.getFocus(); var o = eval (f); if (o != label) { Selection.setFocus(label); return(undefined); } getFocusManager().defaultPushButtonEnabled = false; addEventListener("keyDown", this); super.onSetFocus(x); } function onKillFocus(x) { getFocusManager().defaultPushButtonEnabled = true; removeEventListener("keyDown", this); super.onKillFocus(x); } function restoreSelection(x) { var _local2 = Selection; Selection.setSelection(_local2.lastBeginIndex, _local2.lastEndIndex); label.scroll = _vpos; label.hscroll = _hpos; } function getLineOffsets(Void) { var _local16 = _getTextFormat(); var _local18 = _local16.getTextExtent2(label.text); var _local5 = _root._getTextExtent; _local5.setNewTextFormat(_local16); var _local14 = label.wordWrap; var _local9 = 0; var _local7 = (label._width - 2) - 2; var _local12 = new Array(); var _local17 = new String(label.text); var _local15 = _local17.split("\r"); var _local11 = 0; while (_local11 < _local15.length) { _local12.push(_local9); var _local4 = _local15[_local11]; _local5.text = _local4; var _local13 = Math.ceil(_local5.textWidth / _local7); var _local10 = Math.floor(_local4.length / _local13); var _local3; while (_local14 && (_local5.textWidth > _local7)) { _local3 = _local4.indexOf(" ", _local10); var _local6; if (_local3 == -1) { _local3 = _local4.lastIndexOf(" "); if (_local3 == -1) { _local3 = _local10; } } _local6 = _local4.substr(0, _local3); _local5.text = _local6; if (_local5.textWidth > _local7) { while (_local5.textWidth > _local7) { var _local8 = _local3; _local3 = _local4.lastIndexOf(" ", _local3 - 1); if (_local3 == -1) { _local3 = _local8 - 1; } _local6 = _local4.substr(0, _local3); _local5.text = _local6; } } else if (_local5.textWidth < _local7) { var _local8 = _local3; while (_local5.textWidth < _local7) { _local8 = _local3; _local3 = _local4.indexOf(" ", _local3 + 1); if (_local3 == -1) { if (_local4.indexOf(" ", 0) != -1) { break; } _local3 = _local8 + 1; } _local6 = _local4.substr(0, _local3); _local5.text = _local6; } _local3 = _local8; } _local9 = _local9 + _local3; _local12.push(_local9 + 1); _local4 = _local4.substr(_local3); if (_local4.charAt(0) == " ") { _local4 = _local4.substr(1, _local4.length - 1); _local9 = _local9 + 1; } _local5.text = _local4; } _local9 = _local9 + (_local4.length + 1); _local11++; } return(_local12); } function keyDown(e) { var _local5 = e.code; if (_local5 == 34) { var _local6 = (label.bottomScroll - label.scroll) + 1; var _local3 = getLineOffsets(); var _local2 = Math.min(label.bottomScroll + 1, label.maxscroll); if (_local2 == label.maxscroll) { var _local4 = label.length; Selection.setSelection(_local4, _local4); } else { label.scroll = _local2; Selection.setSelection(_local3[_local2 - 1], _local3[_local2 - 1]); } } else if (_local5 == 33) { var _local6 = (label.bottomScroll - label.scroll) + 1; var _local3 = getLineOffsets(); var _local2 = label.scroll - 1; if (_local2 < 1) { Selection.setSelection(0, 0); } else { Selection.setSelection(_local3[_local2 - 1], _local3[_local2 - 1]); label.scroll = Math.max(_local2 - _local6, 1); } } } function draw(Void) { var _local2 = label; var _local4 = getText(); if (initializing) { initializing = false; delete initText; } var _local3 = _getTextFormat(); _local2.embedFonts = _local3.embedFonts == true; if (_local3 != undefined) { _local2.setTextFormat(_local3); _local2.setNewTextFormat(_local3); } _local2.multiline = true; _local2.wordWrap = wordWrap == true; if (_local2.wordWrap) { __hScrollPolicy = "off"; } if (_local2.html == true) { _local2.setTextFormat(_local3); _local2.htmlText = _local4; } else { _local2.text = _local4; } _local2.type = ((editable == true) ? "input" : "dynamic"); size(); _local2.background = false; } function adjustScrollBars() { var _local2 = label; var _local4 = (_local2.bottomScroll - _local2.scroll) + 1; var _local3 = (_local4 + _local2.maxscroll) - 1; if (_local3 < 1) { _local3 = 1; } var _local5 = 0; if ((_local2.textWidth + 5) > _local2._width) { if (!_local2.wordWrap) { _local5 = _local2._width + _local2.maxhscroll; } } else { _local2.hscroll = 0; _local2.background = false; } if ((_local2.height / _local4) != Math.round(_local2.height / _local4)) { _local3--; } setScrollProperties(_local5, 1, _local3, _local2.height / _local4); } function get tabIndex() { return(label.tabIndex); } function set tabIndex(w) { label.tabIndex = w; //return(tabIndex); } function set _accProps(val) { label._accProps = val; //return(_accProps); } function get _accProps() { return(label._accProps); } function get styleSheet() { return(label.styleSheet); } function set styleSheet(v) { label.styleSheet = v; //return(styleSheet); } static var symbolName = "TextArea"; static var symbolOwner = mx.controls.TextArea; static var version = "2.0.0.377"; var className = "TextArea"; var initializing = true; var clipParameters = {text:1, wordWrap:1, editable:1, maxChars:1, restrict:1, html:1, password:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.TextArea.prototype.clipParameters, mx.core.ScrollView.prototype.clipParameters); var __vScrollPolicy = "auto"; var __hScrollPolicy = "auto"; var __editable = true; }
Symbol 679 MovieClip [__Packages.mx.skins.RectBorder] Frame 0
class mx.skins.RectBorder extends mx.skins.Border { var __width, __height, offset, __borderMetrics; function RectBorder () { super(); } function get width() { return(__width); } function get height() { return(__height); } function init(Void) { super.init(); } function draw(Void) { size(); } function getBorderMetrics(Void) { var _local2 = offset; if (__borderMetrics == undefined) { __borderMetrics = {left:_local2, top:_local2, right:_local2, bottom:_local2}; } else { __borderMetrics.left = _local2; __borderMetrics.top = _local2; __borderMetrics.right = _local2; __borderMetrics.bottom = _local2; } return(__borderMetrics); } function get borderMetrics() { return(getBorderMetrics()); } function drawBorder(Void) { } function size(Void) { drawBorder(); } function setColor(Void) { drawBorder(); } static var symbolName = "RectBorder"; static var symbolOwner = mx.skins.RectBorder; static var version = "2.0.0.377"; var className = "RectBorder"; var borderStyleName = "borderStyle"; var borderColorName = "borderColor"; var shadowColorName = "shadowColor"; var highlightColorName = "highlightColor"; var buttonColorName = "buttonColor"; var backgroundColorName = "backgroundColor"; }
Symbol 680 MovieClip [__Packages.mx.managers.DepthManager] Frame 0
class mx.managers.DepthManager { var _childCounter, createClassObject, createObject, _parent, swapDepths, _topmost, getDepth; function DepthManager () { MovieClip.prototype.createClassChildAtDepth = createClassChildAtDepth; MovieClip.prototype.createChildAtDepth = createChildAtDepth; MovieClip.prototype.setDepthTo = setDepthTo; MovieClip.prototype.setDepthAbove = setDepthAbove; MovieClip.prototype.setDepthBelow = setDepthBelow; MovieClip.prototype.findNextAvailableDepth = findNextAvailableDepth; MovieClip.prototype.shuffleDepths = shuffleDepths; MovieClip.prototype.getDepthByFlag = getDepthByFlag; MovieClip.prototype.buildDepthTable = buildDepthTable; } static function sortFunction(a, b) { if (a.getDepth() > b.getDepth()) { return(1); } return(-1); } static function test(depth) { if (depth == reservedDepth) { return(false); } return(true); } static function createClassObjectAtDepth(className, depthSpace, initObj) { var _local1; switch (depthSpace) { case kCursor : _local1 = holder.createClassChildAtDepth(className, kTopmost, initObj); break; case kTooltip : _local1 = holder.createClassChildAtDepth(className, kTop, initObj); break; } return(_local1); } static function createObjectAtDepth(linkageName, depthSpace, initObj) { var _local1; switch (depthSpace) { case kCursor : _local1 = holder.createChildAtDepth(linkageName, kTopmost, initObj); break; case kTooltip : _local1 = holder.createChildAtDepth(linkageName, kTop, initObj); break; } return(_local1); } function createClassChildAtDepth(className, depthFlag, initObj) { if (_childCounter == undefined) { _childCounter = 0; } var _local3 = buildDepthTable(); var _local2 = getDepthByFlag(depthFlag, _local3); var _local6 = "down"; if (depthFlag == kBottom) { _local6 = "up"; } var _local5; if (_local3[_local2] != undefined) { _local5 = _local2; _local2 = findNextAvailableDepth(_local2, _local3, _local6); } var _local4 = createClassObject(className, "depthChild" + (_childCounter++), _local2, initObj); if (_local5 != undefined) { _local3[_local2] = _local4; shuffleDepths(_local4, _local5, _local3, _local6); } if (depthFlag == kTopmost) { _local4._topmost = true; } return(_local4); } function createChildAtDepth(linkageName, depthFlag, initObj) { if (_childCounter == undefined) { _childCounter = 0; } var _local3 = buildDepthTable(); var _local2 = getDepthByFlag(depthFlag, _local3); var _local6 = "down"; if (depthFlag == kBottom) { _local6 = "up"; } var _local5; if (_local3[_local2] != undefined) { _local5 = _local2; _local2 = findNextAvailableDepth(_local2, _local3, _local6); } var _local4 = createObject(linkageName, "depthChild" + (_childCounter++), _local2, initObj); if (_local5 != undefined) { _local3[_local2] = _local4; shuffleDepths(_local4, _local5, _local3, _local6); } if (depthFlag == kTopmost) { _local4._topmost = true; } return(_local4); } function setDepthTo(depthFlag) { var _local2 = _parent.buildDepthTable(); var _local3 = _parent.getDepthByFlag(depthFlag, _local2); if (_local2[_local3] != undefined) { shuffleDepths(this, _local3, _local2, undefined); } else { swapDepths(_local3); } if (depthFlag == kTopmost) { _topmost = true; } else { delete _topmost; } } function setDepthAbove(targetInstance) { if (targetInstance._parent != _parent) { return(undefined); } var _local2 = targetInstance.getDepth() + 1; var _local3 = _parent.buildDepthTable(); if ((_local3[_local2] != undefined) && (getDepth() < _local2)) { _local2 = _local2 - 1; } if (_local2 > highestDepth) { _local2 = highestDepth; } if (_local2 == highestDepth) { _parent.shuffleDepths(this, _local2, _local3, "down"); } else if (_local3[_local2] != undefined) { _parent.shuffleDepths(this, _local2, _local3, undefined); } else { swapDepths(_local2); } } function setDepthBelow(targetInstance) { if (targetInstance._parent != _parent) { return(undefined); } var _local6 = targetInstance.getDepth() - 1; var _local3 = _parent.buildDepthTable(); if ((_local3[_local6] != undefined) && (getDepth() > _local6)) { _local6 = _local6 + 1; } var _local4 = lowestDepth + numberOfAuthortimeLayers; var _local5; for (_local5 in _local3) { var _local2 = _local3[_local5]; if (_local2._parent != undefined) { _local4 = Math.min(_local4, _local2.getDepth()); } } if (_local6 < _local4) { _local6 = _local4; } if (_local6 == _local4) { _parent.shuffleDepths(this, _local6, _local3, "up"); } else if (_local3[_local6] != undefined) { _parent.shuffleDepths(this, _local6, _local3, undefined); } else { swapDepths(_local6); } } function findNextAvailableDepth(targetDepth, depthTable, direction) { var _local5 = lowestDepth + numberOfAuthortimeLayers; if (targetDepth < _local5) { targetDepth = _local5; } if (depthTable[targetDepth] == undefined) { return(targetDepth); } var _local2 = targetDepth; var _local1 = targetDepth; if (direction == "down") { while (depthTable[_local1] != undefined) { _local1--; } return(_local1); } while (depthTable[_local2] != undefined) { _local2++; } return(_local2); } function shuffleDepths(subject, targetDepth, depthTable, direction) { var _local9 = lowestDepth + numberOfAuthortimeLayers; var _local8 = _local9; var _local5; for (_local5 in depthTable) { var _local7 = depthTable[_local5]; if (_local7._parent != undefined) { _local9 = Math.min(_local9, _local7.getDepth()); } } if (direction == undefined) { if (subject.getDepth() > targetDepth) { direction = "up"; } else { direction = "down"; } } var _local1 = new Array(); for (_local5 in depthTable) { var _local7 = depthTable[_local5]; if (_local7._parent != undefined) { _local1.push(_local7); } } _local1.sort(sortFunction); if (direction == "up") { var _local3; var _local11; do { if (_local1.length <= 0) { break; } _local3 = _local1.pop(); } while (_local3 != subject); do { if (_local1.length <= 0) { break; } _local11 = subject.getDepth(); _local3 = _local1.pop(); var _local4 = _local3.getDepth(); if (_local11 > (_local4 + 1)) { if (_local4 >= 0) { subject.swapDepths(_local4 + 1); } else if ((_local11 > _local8) && (_local4 < _local8)) { subject.swapDepths(_local8); } } subject.swapDepths(_local3); } while (_local4 != targetDepth); } else if (direction == "down") { var _local3; do { if (_local1.length <= 0) { break; } _local3 = _local1.shift(); } while (_local3 != subject); do { if (_local1.length <= 0) { break; } var _local11 = _local3.getDepth(); _local3 = _local1.shift(); var _local4 = _local3.getDepth(); if ((_local11 < (_local4 - 1)) && (_local4 > 0)) { subject.swapDepths(_local4 - 1); } subject.swapDepths(_local3); } while (_local4 != targetDepth); } } function getDepthByFlag(depthFlag, depthTable) { var _local2 = 0; if ((depthFlag == kTop) || (depthFlag == kNotopmost)) { var _local5 = 0; var _local7 = false; var _local8; for (_local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { if (!_local9._topmost) { _local2 = Math.max(_local2, _local9.getDepth()); } else if (!_local7) { _local5 = _local9.getDepth(); _local7 = true; } else { _local5 = Math.min(_local5, _local9.getDepth()); } } } } _local2 = _local2 + 20; if (_local7) { if (_local2 >= _local5) { _local2 = _local5 - 1; } } } else if (depthFlag == kBottom) { for (var _local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { _local2 = Math.min(_local2, _local9.getDepth()); } } } _local2 = _local2 - 20; } else if (depthFlag == kTopmost) { for (var _local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { _local2 = Math.max(_local2, _local9.getDepth()); } } } _local2 = _local2 + 100; } if (_local2 >= highestDepth) { _local2 = highestDepth; } var _local6 = lowestDepth + numberOfAuthortimeLayers; for (var _local9 in depthTable) { var _local4 = depthTable[_local9]; if (_local4._parent != undefined) { _local6 = Math.min(_local6, _local4.getDepth()); } } if (_local2 <= _local6) { _local2 = _local6; } return(_local2); } function buildDepthTable(Void) { var _local5 = new Array(); var _local4; for (_local4 in this) { var _local2 = this[_local4]; var _local3 = typeof(_local2); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local2.__getTextFormat != undefined))) { if (_local2._parent == this) { _local5[_local2.getDepth()] = _local2; } } } return(_local5); } static var reservedDepth = 1048575; static var highestDepth = 1048574; static var lowestDepth = -16383; static var numberOfAuthortimeLayers = 383; static var kCursor = 101; static var kTooltip = 102; static var kTop = 201; static var kBottom = 202; static var kTopmost = 203; static var kNotopmost = 204; static var holder = _root.createEmptyMovieClip("reserved", reservedDepth); static var __depthManager = new mx.managers.DepthManager(); }
Symbol 681 MovieClip [__Packages.mx.events.EventDispatcher] Frame 0
class mx.events.EventDispatcher { function EventDispatcher () { } static function _removeEventListener(queue, event, handler) { if (queue != undefined) { var _local4 = queue.length; var _local1; _local1 = 0; while (_local1 < _local4) { var _local2 = queue[_local1]; if (_local2 == handler) { queue.splice(_local1, 1); return(undefined); } _local1++; } } } static function initialize(object) { if (_fEventDispatcher == undefined) { _fEventDispatcher = new mx.events.EventDispatcher(); } object.addEventListener = _fEventDispatcher.addEventListener; object.removeEventListener = _fEventDispatcher.removeEventListener; object.dispatchEvent = _fEventDispatcher.dispatchEvent; object.dispatchQueue = _fEventDispatcher.dispatchQueue; } function dispatchQueue(queueObj, eventObj) { var _local7 = "__q_" + eventObj.type; var _local4 = queueObj[_local7]; if (_local4 != undefined) { var _local5; for (_local5 in _local4) { var _local1 = _local4[_local5]; var _local3 = typeof(_local1); if ((_local3 == "object") || (_local3 == "movieclip")) { if (_local1.handleEvent == undefined) { _local1[eventObj.type](eventObj); } else { _local1.handleEvent(eventObj); } } else { _local1.apply(queueObj, [eventObj]); } } } } function dispatchEvent(eventObj) { if (eventObj.target == undefined) { eventObj.target = this; } this[eventObj.type + "Handler"](eventObj); dispatchQueue(this, eventObj); } function addEventListener(event, handler) { var _local3 = "__q_" + event; if (this[_local3] == undefined) { this[_local3] = new Array(); } _global.ASSetPropFlags(this, _local3, 1); _removeEventListener(this[_local3], event, handler); this[_local3].push(handler); } function removeEventListener(event, handler) { var _local2 = "__q_" + event; _removeEventListener(this[_local2], event, handler); } static var _fEventDispatcher = undefined; }
Symbol 682 MovieClip [__Packages.mx.events.UIEventDispatcher] Frame 0
class mx.events.UIEventDispatcher extends mx.events.EventDispatcher { var dispatchQueue, owner, __sentLoadEvent, __origAddEventListener; function UIEventDispatcher () { super(); } static function addKeyEvents(obj) { if (obj.keyHandler == undefined) { var _local1 = (obj.keyHandler = new Object()); _local1.owner = obj; _local1.onKeyDown = _fEventDispatcher.onKeyDown; _local1.onKeyUp = _fEventDispatcher.onKeyUp; } Key.addListener(obj.keyHandler); } static function removeKeyEvents(obj) { Key.removeListener(obj.keyHandler); } static function addLoadEvents(obj) { if (obj.onLoad == undefined) { obj.onLoad = _fEventDispatcher.onLoad; obj.onUnload = _fEventDispatcher.onUnload; if (obj.getBytesTotal() == obj.getBytesLoaded()) { obj.doLater(obj, "onLoad"); } } } static function removeLoadEvents(obj) { delete obj.onLoad; delete obj.onUnload; } static function initialize(obj) { if (_fEventDispatcher == undefined) { _fEventDispatcher = new mx.events.UIEventDispatcher(); } obj.addEventListener = _fEventDispatcher.__addEventListener; obj.__origAddEventListener = _fEventDispatcher.addEventListener; obj.removeEventListener = _fEventDispatcher.removeEventListener; obj.dispatchEvent = _fEventDispatcher.dispatchEvent; obj.dispatchQueue = _fEventDispatcher.dispatchQueue; } function dispatchEvent(eventObj) { if (eventObj.target == undefined) { eventObj.target = this; } this[eventObj.type + "Handler"](eventObj); dispatchQueue(mx.events.EventDispatcher, eventObj); dispatchQueue(this, eventObj); } function onKeyDown(Void) { owner.dispatchEvent({type:"keyDown", code:Key.getCode(), ascii:Key.getAscii(), shiftKey:Key.isDown(16), ctrlKey:Key.isDown(17)}); } function onKeyUp(Void) { owner.dispatchEvent({type:"keyUp", code:Key.getCode(), ascii:Key.getAscii(), shiftKey:Key.isDown(16), ctrlKey:Key.isDown(17)}); } function onLoad(Void) { if (__sentLoadEvent != true) { dispatchEvent({type:"load"}); } __sentLoadEvent = true; } function onUnload(Void) { dispatchEvent({type:"unload"}); } function __addEventListener(event, handler) { __origAddEventListener(event, handler); var _local3 = lowLevelEvents; for (var _local5 in _local3) { if (mx.events.UIEventDispatcher[_local5][event] != undefined) { var _local2 = _local3[_local5][0]; mx.events.UIEventDispatcher[_local2](this); } } } function removeEventListener(event, handler) { var _local6 = "__q_" + event; mx.events.EventDispatcher._removeEventListener(this[_local6], event, handler); if (this[_local6].length == 0) { var _local2 = lowLevelEvents; for (var _local5 in _local2) { if (mx.events.UIEventDispatcher[_local5][event] != undefined) { var _local3 = _local2[_local5][1]; mx.events.UIEventDispatcher[_local2[_local5][1]](this); } } } } static var keyEvents = {keyDown:1, keyUp:1}; static var loadEvents = {load:1, unload:1}; static var lowLevelEvents = {keyEvents:["addKeyEvents", "removeKeyEvents"], loadEvents:["addLoadEvents", "removeLoadEvents"]}; static var _fEventDispatcher = undefined; }
Symbol 683 MovieClip [__Packages.mx.core.ExternalContent] Frame 0
class mx.core.ExternalContent { var createObject, numChildren, prepList, doLater, loadList, dispatchEvent, loadedList, childLoaded; function ExternalContent () { } function loadExternal(url, placeholderClassName, instanceName, depth, initProps) { var _local2; _local2 = createObject(placeholderClassName, instanceName, depth, initProps); this[mx.core.View.childNameBase + numChildren] = _local2; if (prepList == undefined) { prepList = new Object(); } prepList[instanceName] = {obj:_local2, url:url, complete:false, initProps:initProps}; prepareToLoadMovie(_local2); return(_local2); } function prepareToLoadMovie(obj) { obj.unloadMovie(); doLater(this, "waitForUnload"); } function waitForUnload() { var _local3; for (_local3 in prepList) { var _local2 = prepList[_local3]; if (_local2.obj.getBytesTotal() == 0) { if (loadList == undefined) { loadList = new Object(); } loadList[_local3] = _local2; _local2.obj.loadMovie(_local2.url); delete prepList[_local3]; doLater(this, "checkLoadProgress"); } else { doLater(this, "waitForUnload"); } } } function checkLoadProgress() { var _local3; for (_local3 in loadList) { var _local2 = loadList[_local3]; _local2.loaded = _local2.obj.getBytesLoaded(); _local2.total = _local2.obj.getBytesTotal(); if (_local2.total > 0) { _local2.obj._visible = false; dispatchEvent({type:"progress", target:_local2.obj, current:_local2.loaded, total:_local2.total}); if (_local2.loaded == _local2.total) { if (loadedList == undefined) { loadedList = new Object(); } loadedList[_local3] = _local2; delete loadList[_local3]; doLater(this, "contentLoaded"); } } else if (_local2.total == -1) { if (_local2.failedOnce != undefined) { _local2.failedOnce++; if (_local2.failedOnce > 3) { dispatchEvent({type:"complete", target:_local2.obj, current:_local2.loaded, total:_local2.total}); delete loadList[_local3]; } } else { _local2.failedOnce = 0; } } doLater(this, "checkLoadProgress"); } } function contentLoaded() { var _local4; for (_local4 in loadedList) { var _local2 = loadedList[_local4]; _local2.obj._visible = true; _local2.obj._complete = true; var _local3; for (_local3 in _local2.initProps) { _local2.obj[_local3] = _local2.initProps[_local3]; } childLoaded(_local2.obj); dispatchEvent({type:"complete", target:_local2.obj, current:_local2.loaded, total:_local2.total}); delete loadedList[_local4]; } } function convertToUIObject(obj) { if (obj.setSize == undefined) { var _local2 = mx.core.UIObject.prototype; obj.addProperty("width", _local2.__get__width, null); obj.addProperty("height", _local2.__get__height, null); obj.addProperty("left", _local2.__get__left, null); obj.addProperty("x", _local2.__get__x, null); obj.addProperty("top", _local2.__get__top, null); obj.addProperty("y", _local2.__get__y, null); obj.addProperty("right", _local2.__get__right, null); obj.addProperty("bottom", _local2.__get__bottom, null); obj.addProperty("visible", _local2.__get__visible, _local2.__set__visible); obj.move = mx.core.UIObject.prototype.move; obj.setSize = mx.core.UIObject.prototype.setSize; obj.size = mx.core.UIObject.prototype.size; mx.events.UIEventDispatcher.initialize(obj); } } static function enableExternalContent() { } static function classConstruct() { var _local1 = mx.core.View.prototype; var _local2 = mx.core.ExternalContent.prototype; _local1.loadExternal = _local2.loadExternal; _local1.prepareToLoadMovie = _local2.prepareToLoadMovie; _local1.waitForUnload = _local2.waitForUnload; _local1.checkLoadProgress = _local2.checkLoadProgress; _local1.contentLoaded = _local2.contentLoaded; _local1.convertToUIObject = _local2.convertToUIObject; return(true); } static var classConstructed = classConstruct(); static var ViewDependency = mx.core.View; }
Symbol 688 MovieClip [__Packages.mx.controls.HScrollBar] Frame 0
class mx.controls.HScrollBar extends mx.controls.scrollClasses.ScrollBar { var _minHeight, _minWidth, _xscale, _rotation, __width, scrollIt; function HScrollBar () { super(); } function getMinWidth(Void) { return(_minHeight); } function getMinHeight(Void) { return(_minWidth); } function init(Void) { super.init(); _xscale = -100; _rotation = -90; } function get virtualHeight() { return(__width); } function isScrollBarKey(k) { if (k == 37) { scrollIt("Line", -1); return(true); } if (k == 39) { scrollIt("Line", 1); return(true); } return(super.isScrollBarKey(k)); } static var symbolName = "HScrollBar"; static var symbolOwner = mx.core.UIComponent; static var version = "2.0.0.377"; var className = "HScrollBar"; var minusMode = "Left"; var plusMode = "Right"; var minMode = "AtLeft"; var maxMode = "AtRight"; }
Symbol 689 MovieClip [__Packages.mx.controls.Button] Frame 0
class mx.controls.Button extends mx.controls.SimpleButton { var initIcon, getState, enabled, phase, labelPath, idNames, __width, __height, setState, invalidate, iconName, refresh, createLabel, _iconLinkageName, initializing, removeIcons, hitArea_mc, createEmptyObject; function Button () { super(); } function init(Void) { super.init(); } function draw() { super.draw(); if (initIcon != undefined) { _setIcon(initIcon); } delete initIcon; } function onRelease(Void) { super.onRelease(); } function createChildren(Void) { super.createChildren(); } function setSkin(tag, linkageName, initobj) { return(super.setSkin(tag, linkageName, initobj)); } function viewSkin(varName) { var _local3 = (getState() ? "true" : "false"); _local3 = _local3 + (enabled ? (phase) : "disabled"); super.viewSkin(varName, {styleName:this, borderStyle:_local3}); } function invalidateStyle(c) { labelPath.invalidateStyle(c); super.invalidateStyle(c); } function setColor(c) { var _local2 = 0; while (_local2 < 8) { this[idNames[_local2]].redraw(true); _local2++; } } function setEnabled(enable) { labelPath.enabled = enable; super.setEnabled(enable); } function calcSize(tag, ref) { if ((__width == undefined) || (__height == undefined)) { return(undefined); } if (tag < 7) { ref.setSize(__width, __height, true); } } function size(Void) { setState(getState()); setHitArea(__width, __height); var _local3 = 0; while (_local3 < 8) { var _local4 = idNames[_local3]; if (typeof(this[_local4]) == "movieclip") { this[_local4].setSize(__width, __height, true); } _local3++; } super.size(); } function set labelPlacement(val) { __labelPlacement = val; invalidate(); //return(labelPlacement); } function get labelPlacement() { return(__labelPlacement); } function getLabelPlacement(Void) { return(__labelPlacement); } function setLabelPlacement(val) { __labelPlacement = val; invalidate(); } function getBtnOffset(Void) { if (getState()) { var _local2 = btnOffset; } else if (phase == "down") { var _local2 = btnOffset; } else { var _local2 = 0; } return(_local2); } function setView(offset) { var _local16 = (offset ? (btnOffset) : 0); var _local12 = getLabelPlacement(); var _local7 = 0; var _local6 = 0; var _local9 = 0; var _local8 = 0; var _local5 = 0; var _local4 = 0; var _local3 = labelPath; var _local2 = iconName; var _local15 = _local3.textWidth; var _local14 = _local3.textHeight; var _local10 = (__width - borderW) - borderW; var _local11 = (__height - borderW) - borderW; _local3._visible = true; if (_local2 != undefined) { _local7 = _local2._width; _local6 = _local2._height; } if ((_local12 == "left") || (_local12 == "right")) { if (_local3 != undefined) { _local9 = Math.min(_local10 - _local7, _local15 + 5); _local3._width = _local9; _local8 = Math.min(_local11, _local14 + 5); _local3._height = _local8; } if (_local12 == "right") { _local5 = _local7; if (centerContent) { _local5 = _local5 + (((_local10 - _local9) - _local7) / 2); } _local2._x = _local5 - _local7; } else { _local5 = (_local10 - _local9) - _local7; if (centerContent) { _local5 = _local5 / 2; } _local2._x = _local5 + _local9; } _local4 = 0; _local2._y = _local4; if (centerContent) { _local2._y = (_local11 - _local6) / 2; _local4 = (_local11 - _local8) / 2; } if (!centerContent) { _local2._y = _local2._y + Math.max(0, (_local8 - _local6) / 2); } } else { if (_local3 != undefined) { _local9 = Math.min(_local10, _local15 + 5); _local3._width = _local9; _local8 = Math.min(_local11 - _local6, _local14 + 5); _local3._height = _local8; } _local5 = (_local10 - _local9) / 2; _local2._x = (_local10 - _local7) / 2; if (_local12 == "top") { _local4 = (_local11 - _local8) - _local6; if (centerContent) { _local4 = _local4 / 2; } _local2._y = _local4 + _local8; } else { _local4 = _local6; if (centerContent) { _local4 = _local4 + (((_local11 - _local8) - _local6) / 2); } _local2._y = _local4 - _local6; } } var _local13 = borderW + _local16; _local3._x = _local5 + _local13; _local3._y = _local4 + _local13; _local2._x = _local2._x + _local13; _local2._y = _local2._y + _local13; } function set label(lbl) { setLabel(lbl); //return(label); } function setLabel(label) { if (label == "") { labelPath.removeTextField(); refresh(); return(undefined); } if (labelPath == undefined) { var _local2 = createLabel("labelPath", 200, label); _local2._width = _local2.textWidth + 5; _local2._height = _local2.textHeight + 5; _local2.visible = false; } else { labelPath.text = label; refresh(); } } function getLabel(Void) { return(labelPath.text); } function get label() { return(labelPath.text); } function _getIcon(Void) { return(_iconLinkageName); } function get icon() { if (initializing) { return(initIcon); } return(_iconLinkageName); } function _setIcon(linkage) { if (initializing) { if (linkage == "") { return(undefined); } initIcon = linkage; } else { if (linkage == "") { removeIcons(); return(undefined); } super.changeIcon(0, linkage); super.changeIcon(1, linkage); super.changeIcon(4, linkage); super.changeIcon(5, linkage); _iconLinkageName = linkage; refresh(); } } function set icon(linkage) { _setIcon(linkage); //return(icon); } function setHitArea(w, h) { if (hitArea_mc == undefined) { createEmptyObject("hitArea_mc", 100); } var _local2 = hitArea_mc; _local2.clear(); _local2.beginFill(16711680); _local2.drawRect(0, 0, w, h); _local2.endFill(); _local2.setVisible(false); } static var symbolName = "Button"; static var symbolOwner = mx.controls.Button; var className = "Button"; static var version = "2.0.0.377"; var btnOffset = 0; var _color = "buttonColor"; var __label = "default value"; var __labelPlacement = "right"; var falseUpSkin = "ButtonSkin"; var falseDownSkin = "ButtonSkin"; var falseOverSkin = "ButtonSkin"; var falseDisabledSkin = "ButtonSkin"; var trueUpSkin = "ButtonSkin"; var trueDownSkin = "ButtonSkin"; var trueOverSkin = "ButtonSkin"; var trueDisabledSkin = "ButtonSkin"; var falseUpIcon = ""; var falseDownIcon = ""; var falseOverIcon = ""; var falseDisabledIcon = ""; var trueUpIcon = ""; var trueDownIcon = ""; var trueOverIcon = ""; var trueDisabledIcon = ""; var clipParameters = {labelPlacement:1, icon:1, toggle:1, selected:1, label:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.Button.prototype.clipParameters, mx.controls.SimpleButton.prototype.clipParameters); var centerContent = true; var borderW = 1; }
Symbol 691 MovieClip [__Packages.mx.core.ext.UIObjectExtensions] Frame 0
class mx.core.ext.UIObjectExtensions { function UIObjectExtensions () { } static function addGeometry(tf, ui) { tf.addProperty("width", ui.__get__width, null); tf.addProperty("height", ui.__get__height, null); tf.addProperty("left", ui.__get__left, null); tf.addProperty("x", ui.__get__x, null); tf.addProperty("top", ui.__get__top, null); tf.addProperty("y", ui.__get__y, null); tf.addProperty("right", ui.__get__right, null); tf.addProperty("bottom", ui.__get__bottom, null); tf.addProperty("visible", ui.__get__visible, ui.__set__visible); } static function Extensions() { if (bExtended == true) { return(true); } bExtended = true; var _local4 = mx.core.UIObject.prototype; var _local8 = mx.skins.SkinElement.prototype; addGeometry(_local8, _local4); mx.events.UIEventDispatcher.initialize(_local4); var _local12 = mx.skins.ColoredSkinElement; mx.styles.CSSTextStyles.addTextStyles(_local4); var _local5 = MovieClip.prototype; _local5.getTopLevel = _local4.getTopLevel; _local5.createLabel = _local4.createLabel; _local5.createObject = _local4.createObject; _local5.createClassObject = _local4.createClassObject; _local5.createEmptyObject = _local4.createEmptyObject; _local5.destroyObject = _local4.destroyObject; _local5.__getTextFormat = _local4.__getTextFormat; _local5._getTextFormat = _local4._getTextFormat; _local5.getStyleName = _local4.getStyleName; _local5.getStyle = _local4.getStyle; var _local6 = TextField.prototype; addGeometry(_local6, _local4); _local6.addProperty("enabled", function () { return(this.__enabled); }, function (x) { this.__enabled = x; this.invalidateStyle(); }); _local6.move = _local8.move; _local6.setSize = _local8.setSize; _local6.invalidateStyle = function () { this.invalidateFlag = true; }; _local6.draw = function () { if (this.invalidateFlag) { this.invalidateFlag = false; var _local2 = this._getTextFormat(); this.setTextFormat(_local2); this.setNewTextFormat(_local2); this.embedFonts = _local2.embedFonts == true; if (this.__text != undefined) { if (this.text == "") { this.text = this.__text; } delete this.__text; } this._visible = true; } }; _local6.setColor = function (color) { this.textColor = color; }; _local6.getStyle = _local5.getStyle; _local6.__getTextFormat = _local4.__getTextFormat; _local6.setValue = function (v) { this.text = v; }; _local6.getValue = function () { return(this.text); }; _local6.addProperty("value", function () { return(this.getValue()); }, function (v) { this.setValue(v); }); _local6._getTextFormat = function () { var _local2 = this.stylecache.tf; if (_local2 != undefined) { return(_local2); } _local2 = new TextFormat(); this.__getTextFormat(_local2); this.stylecache.tf = _local2; if (this.__enabled == false) { if (this.enabledColor == undefined) { var _local4 = this.getTextFormat(); this.enabledColor = _local4.color; } var _local3 = this.getStyle("disabledColor"); _local2.color = _local3; } else if (this.enabledColor != undefined) { if (_local2.color == undefined) { _local2.color = this.enabledColor; } } return(_local2); }; _local6.getPreferredWidth = function () { this.draw(); return(this.textWidth + 4); }; _local6.getPreferredHeight = function () { this.draw(); return(this.textHeight + 4); }; TextFormat.prototype.getTextExtent2 = function (s) { var _local3 = _root._getTextExtent; if (_local3 == undefined) { _root.createTextField("_getTextExtent", -2, 0, 0, 1000, 100); _local3 = _root._getTextExtent; _local3._visible = false; } _root._getTextExtent.text = s; var _local4 = this.align; this.align = "left"; _root._getTextExtent.setTextFormat(this); this.align = _local4; return({width:_local3.textWidth, height:_local3.textHeight}); }; if (_global.style == undefined) { _global.style = new mx.styles.CSSStyleDeclaration(); _global.cascadingStyles = true; _global.styles = new Object(); _global.skinRegistry = new Object(); _global.origWidth = Stage.width; _global.origHeight = Stage.height; } _root.addProperty("width", function () { return(Stage.width); }, null); _root.addProperty("height", function () { return(Stage.height); }, null); return(true); } static var bExtended = false; static var UIObjectExtended = Extensions(); static var UIObjectDependency = mx.core.UIObject; static var SkinElementDependency = mx.skins.SkinElement; static var CSSTextStylesDependency = mx.styles.CSSTextStyles; static var UIEventDispatcherDependency = mx.events.UIEventDispatcher; }
Symbol 692 MovieClip [__Packages.mx.skins.halo.Defaults] Frame 0
class mx.skins.halo.Defaults { var beginGradientFill, beginFill, moveTo, lineTo, curveTo, endFill; function Defaults () { } static function setThemeDefaults() { var _local2 = _global.style; _local2.themeColor = 8453965 /* 0x80FF4D */; _local2.disabledColor = 8684164 /* 0x848284 */; _local2.modalTransparency = 0; _local2.filled = true; _local2.stroked = true; _local2.strokeWidth = 1; _local2.strokeColor = 0; _local2.fillColor = 16777215 /* 0xFFFFFF */; _local2.repeatInterval = 35; _local2.repeatDelay = 500; _local2.fontFamily = "_sans"; _local2.fontSize = 12; _local2.selectionColor = 13500353 /* 0xCDFFC1 */; _local2.rollOverColor = 14942166 /* 0xE3FFD6 */; _local2.useRollOver = true; _local2.backgroundDisabledColor = 14540253 /* 0xDDDDDD */; _local2.selectionDisabledColor = 14540253 /* 0xDDDDDD */; _local2.selectionDuration = 200; _local2.openDuration = 250; _local2.borderStyle = "inset"; _local2.color = 734012 /* 0x0B333C */; _local2.textSelectedColor = 24371; _local2.textRollOverColor = 2831164 /* 0x2B333C */; _local2.textDisabledColor = 16777215 /* 0xFFFFFF */; _local2.vGridLines = true; _local2.hGridLines = false; _local2.vGridLineColor = 6710886 /* 0x666666 */; _local2.hGridLineColor = 6710886 /* 0x666666 */; _local2.headerColor = 15395562 /* 0xEAEAEA */; _local2.indentation = 17; _local2.folderOpenIcon = "TreeFolderOpen"; _local2.folderClosedIcon = "TreeFolderClosed"; _local2.defaultLeafIcon = "TreeNodeIcon"; _local2.disclosureOpenIcon = "TreeDisclosureOpen"; _local2.disclosureClosedIcon = "TreeDisclosureClosed"; _local2.popupDuration = 150; _local2.todayColor = 6710886 /* 0x666666 */; _local2 = (_global.styles.ScrollSelectList = new mx.styles.CSSStyleDeclaration()); _local2.backgroundColor = 16777215 /* 0xFFFFFF */; _local2.borderColor = 13290186 /* 0xCACACA */; _local2.borderStyle = "inset"; _local2 = (_global.styles.ComboBox = new mx.styles.CSSStyleDeclaration()); _local2.borderStyle = "inset"; _local2 = (_global.styles.NumericStepper = new mx.styles.CSSStyleDeclaration()); _local2.textAlign = "center"; _local2 = (_global.styles.RectBorder = new mx.styles.CSSStyleDeclaration()); _local2.borderColor = 14015965 /* 0xD5DDDD */; _local2.buttonColor = 7305079 /* 0x6F7777 */; _local2.shadowColor = 15658734 /* 0xEEEEEE */; _local2.highlightColor = 12897484 /* 0xC4CCCC */; _local2.shadowCapColor = 14015965 /* 0xD5DDDD */; _local2.borderCapColor = 9542041 /* 0x919999 */; var _local4 = new Object(); _local4.borderColor = 16711680 /* 0xFF0000 */; _local4.buttonColor = 16711680 /* 0xFF0000 */; _local4.shadowColor = 16711680 /* 0xFF0000 */; _local4.highlightColor = 16711680 /* 0xFF0000 */; _local4.shadowCapColor = 16711680 /* 0xFF0000 */; _local4.borderCapColor = 16711680 /* 0xFF0000 */; mx.core.UIComponent.prototype.origBorderStyles = _local4; var _local3; _local3 = (_global.styles.TextInput = new mx.styles.CSSStyleDeclaration()); _local3.backgroundColor = 16777215 /* 0xFFFFFF */; _local3.borderStyle = "inset"; _global.styles.TextArea = _global.styles.TextInput; _local3 = (_global.styles.Window = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "default"; _local3 = (_global.styles.windowStyles = new mx.styles.CSSStyleDeclaration()); _local3.fontWeight = "bold"; _local3 = (_global.styles.dataGridStyles = new mx.styles.CSSStyleDeclaration()); _local3.fontWeight = "bold"; _local3 = (_global.styles.Alert = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "alert"; _local3 = (_global.styles.ScrollView = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "inset"; _local3 = (_global.styles.View = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "none"; _local3 = (_global.styles.ProgressBar = new mx.styles.CSSStyleDeclaration()); _local3.color = 11187123 /* 0xAAB3B3 */; _local3.fontWeight = "bold"; _local3 = (_global.styles.AccordionHeader = new mx.styles.CSSStyleDeclaration()); _local3.fontWeight = "bold"; _local3.fontSize = "11"; _local3 = (_global.styles.Accordion = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "solid"; _local3.backgroundColor = 16777215 /* 0xFFFFFF */; _local3.borderColor = 9081738 /* 0x8A938A */; _local3.headerHeight = 22; _local3.marginLeft = (_local3.marginRight = (_local3.marginTop = (_local3.marginBottom = -1))); _local3.verticalGap = -1; _local3 = (_global.styles.DateChooser = new mx.styles.CSSStyleDeclaration()); _local3.borderColor = 9542041 /* 0x919999 */; _local3.headerColor = 16777215 /* 0xFFFFFF */; _local3 = (_global.styles.CalendarLayout = new mx.styles.CSSStyleDeclaration()); _local3.fontSize = 10; _local3.textAlign = "right"; _local3.color = 2831164 /* 0x2B333C */; _local3 = (_global.styles.WeekDayStyle = new mx.styles.CSSStyleDeclaration()); _local3.fontWeight = "bold"; _local3.fontSize = 11; _local3.textAlign = "center"; _local3.color = 2831164 /* 0x2B333C */; _local3 = (_global.styles.TodayStyle = new mx.styles.CSSStyleDeclaration()); _local3.color = 16777215 /* 0xFFFFFF */; _local3 = (_global.styles.HeaderDateText = new mx.styles.CSSStyleDeclaration()); _local3.fontSize = 12; _local3.fontWeight = "bold"; _local3.textAlign = "center"; } function drawRoundRect(x, y, w, h, r, c, alpha, rot, gradient, ratios) { if (typeof(r) == "object") { var _local18 = r.br; var _local16 = r.bl; var _local15 = r.tl; var _local10 = r.tr; } else { var _local10 = r; var _local15 = _local10; var _local16 = _local15; var _local18 = _local16; } if (typeof(c) == "object") { if (typeof(alpha) != "object") { var _local9 = [alpha, alpha]; } else { var _local9 = alpha; } if (ratios == undefined) { ratios = [0, 255]; } var _local14 = h * 0.7; if (typeof(rot) != "object") { var _local11 = {matrixType:"box", x:-_local14, y:_local14, w:w * 2, h:h * 4, r:rot * 0.0174532925199433 /* Math.PI/180 */}; } else { var _local11 = rot; } if (gradient == "radial") { beginGradientFill("radial", c, _local9, ratios, _local11); } else { beginGradientFill("linear", c, _local9, ratios, _local11); } } else if (c != undefined) { beginFill(c, alpha); } r = _local18; var _local13 = r - (r * 0.707106781186547); var _local12 = r - (r * 0.414213562373095); moveTo(x + w, (y + h) - r); lineTo(x + w, (y + h) - r); curveTo(x + w, (y + h) - _local12, (x + w) - _local13, (y + h) - _local13); curveTo((x + w) - _local12, y + h, (x + w) - r, y + h); r = _local16; _local13 = r - (r * 0.707106781186547); _local12 = r - (r * 0.414213562373095); lineTo(x + r, y + h); curveTo(x + _local12, y + h, x + _local13, (y + h) - _local13); curveTo(x, (y + h) - _local12, x, (y + h) - r); r = _local15; _local13 = r - (r * 0.707106781186547); _local12 = r - (r * 0.414213562373095); lineTo(x, y + r); curveTo(x, y + _local12, x + _local13, y + _local13); curveTo(x + _local12, y, x + r, y); r = _local10; _local13 = r - (r * 0.707106781186547); _local12 = r - (r * 0.414213562373095); lineTo((x + w) - r, y); curveTo((x + w) - _local12, y, (x + w) - _local13, y + _local13); curveTo(x + w, y + _local12, x + w, y + r); lineTo(x + w, (y + h) - r); if (c != undefined) { endFill(); } } static function classConstruct() { mx.core.ext.UIObjectExtensions.Extensions(); setThemeDefaults(); mx.core.UIObject.prototype.drawRoundRect = mx.skins.halo.Defaults.prototype.drawRoundRect; return(true); } static var classConstructed = classConstruct(); static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration; static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; static var UIObjectDependency = mx.core.UIObject; }
Symbol 693 MovieClip [__Packages.mx.managers.SystemManager] Frame 0
class mx.managers.SystemManager { static var _xAddEventListener, addEventListener, __addEventListener, _xRemoveEventListener, removeEventListener, __removeEventListener, form, __screen, dispatchEvent; function SystemManager () { } static function init(Void) { if (_initialized == false) { _initialized = true; mx.events.EventDispatcher.initialize(mx.managers.SystemManager); Mouse.addListener(mx.managers.SystemManager); Stage.addListener(mx.managers.SystemManager); _xAddEventListener = addEventListener; addEventListener = __addEventListener; _xRemoveEventListener = removeEventListener; removeEventListener = __removeEventListener; } } static function addFocusManager(f) { form = f; f.focusManager.activate(); } static function removeFocusManager(f) { } static function onMouseDown(Void) { var _local1 = form; _local1.focusManager._onMouseDown(); } static function onResize(Void) { var _local7 = Stage.width; var _local6 = Stage.height; var _local9 = _global.origWidth; var _local8 = _global.origHeight; var _local3 = Stage.align; var _local5 = (_local9 - _local7) / 2; var _local4 = (_local8 - _local6) / 2; if (_local3 == "T") { _local4 = 0; } else if (_local3 == "B") { _local4 = _local8 - _local6; } else if (_local3 == "L") { _local5 = 0; } else if (_local3 == "R") { _local5 = _local9 - _local7; } else if (_local3 == "LT") { _local4 = 0; _local5 = 0; } else if (_local3 == "TR") { _local4 = 0; _local5 = _local9 - _local7; } else if (_local3 == "LB") { _local4 = _local8 - _local6; _local5 = 0; } else if (_local3 == "RB") { _local4 = _local8 - _local6; _local5 = _local9 - _local7; } if (__screen == undefined) { __screen = new Object(); } __screen.x = _local5; __screen.y = _local4; __screen.width = _local7; __screen.height = _local6; _root.focusManager.relocate(); dispatchEvent({type:"resize"}); } static function get screen() { init(); if (__screen == undefined) { onResize(); } return(__screen); } static var _initialized = false; static var idleFrames = 0; static var isMouseDown = false; static var forms = new Array(); }
Symbol 694 MovieClip [__Packages.mx.managers.FocusManager] Frame 0
class mx.managers.FocusManager extends mx.core.UIComponent { var __defaultPushButton, defPushButton, form, move, tabEnabled, _width, _height, _x, _y, _alpha, _parent, tabCapture, watch, _visible, lastFocus, doLater, lastSelFocus, cancelAllDoLaters, _searchKey, _lastTarget, _firstNode, _nextIsNext, _nextNode, _lastx, _prevNode, _needPrev, _foundList, _prevObj, _nextObj, _firstObj, _lastObj, _lastNode, lastTabFocus, lastXMouse, lastYMouse, findFocusFromObject; function FocusManager () { super(); } function get defaultPushButton() { return(__defaultPushButton); } function set defaultPushButton(x) { if (x != __defaultPushButton) { __defaultPushButton.__set__emphasized(false); __defaultPushButton = x; defPushButton = x; x.__set__emphasized(true); } //return(defaultPushButton); } function getMaxTabIndex(o) { var _local3 = 0; var _local6; for (_local6 in o) { var _local2 = o[_local6]; if (_local2._parent == o) { if (_local2.tabIndex != undefined) { if (_local2.tabIndex > _local3) { _local3 = _local2.tabIndex; } } if (_local2.tabChildren == true) { var _local4 = getMaxTabIndex(_local2); if (_local4 > _local3) { _local3 = _local4; } } } } return(_local3); } function getNextTabIndex(Void) { return(getMaxTabIndex(form) + 1); } function get nextTabIndex() { return(getNextTabIndex()); } function relocate(Void) { var _local2 = mx.managers.SystemManager.__get__screen(); move(_local2.x - 1, _local2.y - 1); } function init(Void) { super.init(); tabEnabled = false; _width = (_height = 1); _x = (_y = -1); _alpha = 0; _parent.focusManager = this; _parent.tabChildren = true; _parent.tabEnabled = false; form = _parent; _parent.addEventListener("hide", this); _parent.addEventListener("reveal", this); mx.managers.SystemManager.init(); mx.managers.SystemManager.addFocusManager(form); tabCapture.tabIndex = 0; watch("enabled", enabledChanged); Selection.addListener(this); } function enabledChanged(id, oldValue, newValue) { _visible = newValue; return(newValue); } function activate(Void) { Key.addListener(this); activated = (_visible = true); if (lastFocus != undefined) { bNeedFocus = true; if (!mx.managers.SystemManager.isMouseDown) { doLater(this, "restoreFocus"); } } } function deactivate(Void) { Key.removeListener(this); activated = (_visible = false); var _local2 = getSelectionFocus(); var _local3 = getActualFocus(_local2); if (isOurFocus(_local3)) { lastSelFocus = _local2; lastFocus = _local3; } cancelAllDoLaters(); } function isOurFocus(o) { if (o.focusManager == this) { return(true); } while (o != undefined) { if (o.focusManager != undefined) { return(false); } if (o._parent == _parent) { return(true); } o = o._parent; } return(false); } function onSetFocus(o, n) { if (n == null) { if (activated) { bNeedFocus = true; } } else { var _local2 = getFocus(); if (isOurFocus(_local2)) { bNeedFocus = false; lastFocus = _local2; lastSelFocus = n; } } } function restoreFocus(Void) { var _local2 = lastSelFocus.hscroll; if (_local2 != undefined) { var _local5 = lastSelFocus.scroll; var _local4 = lastSelFocus.background; } lastFocus.setFocus(); var _local3 = Selection; Selection.setSelection(_local3.lastBeginIndex, _local3.lastEndIndex); if (_local2 != undefined) { lastSelFocus.scroll = _local5; lastSelFocus.hscroll = _local2; lastSelFocus.background = _local4; } } function onUnload(Void) { mx.managers.SystemManager.removeFocusManager(form); } function setFocus(o) { if (o == null) { Selection.setFocus(null); } else if (o.setFocus == undefined) { Selection.setFocus(o); } else { o.setFocus(); } } function getActualFocus(o) { var _local1 = o._parent; while (_local1 != undefined) { if (_local1.focusTextField != undefined) { while (_local1.focusTextField != undefined) { o = _local1; _local1 = _local1._parent; if (_local1 == undefined) { return(undefined); } if (_local1.focusTextField == undefined) { return(o); } } } if (_local1.tabEnabled != true) { return(o); } o = _local1; _local1 = o._parent; } return(undefined); } function getSelectionFocus() { var m = Selection.getFocus(); var o = eval (m); return(o); } function getFocus(Void) { var _local2 = getSelectionFocus(); return(getActualFocus(_local2)); } function walkTree(p, index, groupName, dir, lookup, firstChild) { var _local5 = true; var _local11; for (_local11 in p) { var _local2 = p[_local11]; if ((((_local2._parent == p) && (_local2.enabled != false)) && (_local2._visible != false)) && ((_local2.tabEnabled == true) || ((_local2.tabEnabled != false) && ((((((((_local2.onPress != undefined) || (_local2.onRelease != undefined)) || (_local2.onReleaseOutside != undefined)) || (_local2.onDragOut != undefined)) || (_local2.onDragOver != undefined)) || (_local2.onRollOver != undefined)) || (_local2.onRollOut != undefined)) || (_local2 instanceof TextField))))) { if (_local2._searchKey == _searchKey) { continue; } _local2._searchKey = _searchKey; if (_local2 != _lastTarget) { if (((_local2.groupName != undefined) || (groupName != undefined)) && (_local2.groupName == groupName)) { continue; } if ((_local2 instanceof TextField) && (_local2.selectable == false)) { continue; } if (_local5 || (((_local2.groupName != undefined) && (_local2.groupName == _firstNode.groupName)) && (_local2.selected == true))) { if (firstChild) { _firstNode = _local2; firstChild = false; } } if (_nextIsNext == true) { if ((((_local2.groupName != undefined) && (_local2.groupName == _nextNode.groupName)) && (_local2.selected == true)) || ((_nextNode == undefined) && ((_local2.groupName == undefined) || ((_local2.groupName != undefined) && (_local2.groupName != groupName))))) { _nextNode = _local2; } } if ((_local2.groupName == undefined) || (groupName != _local2.groupName)) { if (((_lastx.groupName != undefined) && (_local2.groupName == _lastx.groupName)) && (_lastx.selected == true)) { } else { _lastx = _local2; } } } else { _prevNode = _lastx; _needPrev = false; _nextIsNext = true; } if (_local2.tabIndex != undefined) { if (_local2.tabIndex == index) { if (_foundList[_local2._name] == undefined) { if (_needPrev) { _prevObj = _local2; _needPrev = false; } _nextObj = _local2; } } if (dir && (_local2.tabIndex > index)) { if (((_nextObj == undefined) || ((_nextObj.tabIndex > _local2.tabIndex) && (((_local2.groupName == undefined) || (_nextObj.groupName == undefined)) || (_local2.groupName != _nextObj.groupName)))) || ((((_nextObj.groupName != undefined) && (_nextObj.groupName == _local2.groupName)) && (_nextObj.selected != true)) && ((_local2.selected == true) || (_nextObj.tabIndex > _local2.tabIndex)))) { _nextObj = _local2; } } else if ((!dir) && (_local2.tabIndex < index)) { if (((_prevObj == undefined) || ((_prevObj.tabIndex < _local2.tabIndex) && (((_local2.groupName == undefined) || (_prevObj.groupName == undefined)) || (_local2.groupName != _prevObj.groupName)))) || ((((_prevObj.groupName != undefined) && (_prevObj.groupName == _local2.groupName)) && (_prevObj.selected != true)) && ((_local2.selected == true) || (_prevObj.tabIndex < _local2.tabIndex)))) { _prevObj = _local2; } } if (((_firstObj == undefined) || ((_local2.tabIndex < _firstObj.tabIndex) && (((_local2.groupName == undefined) || (_firstObj.groupName == undefined)) || (_local2.groupName != _firstObj.groupName)))) || ((((_firstObj.groupName != undefined) && (_firstObj.groupName == _local2.groupName)) && (_firstObj.selected != true)) && ((_local2.selected == true) || (_local2.tabIndex < _firstObj.tabIndex)))) { _firstObj = _local2; } if (((_lastObj == undefined) || ((_local2.tabIndex > _lastObj.tabIndex) && (((_local2.groupName == undefined) || (_lastObj.groupName == undefined)) || (_local2.groupName != _lastObj.groupName)))) || ((((_lastObj.groupName != undefined) && (_lastObj.groupName == _local2.groupName)) && (_lastObj.selected != true)) && ((_local2.selected == true) || (_local2.tabIndex > _lastObj.tabIndex)))) { _lastObj = _local2; } } if (_local2.tabChildren) { getTabCandidateFromChildren(_local2, index, groupName, dir, _local5 && (firstChild)); } _local5 = false; } else if (((_local2._parent == p) && (_local2.tabChildren == true)) && (_local2._visible != false)) { if (_local2 == _lastTarget) { if (_local2._searchKey == _searchKey) { continue; } _local2._searchKey = _searchKey; if (_prevNode == undefined) { var _local3 = _lastx; var _local7 = false; while (_local3 != undefined) { if (_local3 == _local2) { _local7 = true; break; } _local3 = _local3._parent; } if (_local7 == false) { _prevNode = _lastx; } } _needPrev = false; if (_nextNode == undefined) { _nextIsNext = true; } } else if (!((_local2.focusManager != undefined) && (_local2.focusManager._parent == _local2))) { if (_local2._searchKey == _searchKey) { continue; } _local2._searchKey = _searchKey; getTabCandidateFromChildren(_local2, index, groupName, dir, _local5 && (firstChild)); } _local5 = false; } } _lastNode = _lastx; if (lookup) { if (p._parent != undefined) { if (p != _parent) { if ((_prevNode == undefined) && (dir)) { _needPrev = true; } else if ((_nextNode == undefined) && (!dir)) { _nextIsNext = false; } _lastTarget = _lastTarget._parent; getTabCandidate(p._parent, index, groupName, dir, true); } } } } function getTabCandidate(o, index, groupName, dir, firstChild) { var _local2; var _local3 = true; if (o == _parent) { _local2 = o; _local3 = false; } else { _local2 = o._parent; if (_local2 == undefined) { _local2 = o; _local3 = false; } } walkTree(_local2, index, groupName, dir, _local3, firstChild); } function getTabCandidateFromChildren(o, index, groupName, dir, firstChild) { walkTree(o, index, groupName, dir, false, firstChild); } function getFocusManagerFromObject(o) { while (o != undefined) { if (o.focusManager != undefined) { return(o.focusManager); } o = o._parent; } return(undefined); } function tabHandler(Void) { bDrawFocus = true; var _local5 = getSelectionFocus(); var _local4 = getActualFocus(_local5); if (_local4 != _local5) { _local5 = _local4; } if (getFocusManagerFromObject(_local5) != this) { _local5 == undefined; } if (_local5 == undefined) { _local5 = form; } else if (_local5.tabIndex != undefined) { if ((_foundList != undefined) || (_foundList.tabIndex != _local5.tabIndex)) { _foundList = new Object(); _foundList.tabIndex = _local5.tabIndex; } _foundList[_local5._name] = _local5; } var _local3 = Key.isDown(16) != true; _searchKey = getTimer(); _needPrev = true; _nextIsNext = false; _lastx = undefined; _firstNode = undefined; _lastNode = undefined; _nextNode = undefined; _prevNode = undefined; _firstObj = undefined; _lastObj = undefined; _nextObj = undefined; _prevObj = undefined; _lastTarget = _local5; var _local6 = _local5; getTabCandidate(_local6, ((_local5.tabIndex == undefined) ? 0 : (_local5.tabIndex)), _local5.groupName, _local3, true); var _local2; if (_local3) { if (_nextObj != undefined) { _local2 = _nextObj; } else { _local2 = _firstObj; } } else if (_prevObj != undefined) { _local2 = _prevObj; } else { _local2 = _lastObj; } if (_local2.tabIndex != _local5.tabIndex) { _foundList = new Object(); _foundList.tabIndex = _local2.tabIndex; _foundList[_local2._name] = _local2; } else { if (_foundList == undefined) { _foundList = new Object(); _foundList.tabIndex = _local2.tabIndex; } _foundList[_local2._name] = _local2; } if (_local2 == undefined) { if (_local3 == false) { if (_nextNode != undefined) { _local2 = _nextNode; } else { _local2 = _firstNode; } } else if ((_prevNode == undefined) || (_local5 == form)) { _local2 = _lastNode; } else { _local2 = _prevNode; } } if (_local2 == undefined) { return(undefined); } lastTabFocus = _local2; setFocus(_local2); if (_local2.emphasized != undefined) { if (defPushButton != undefined) { _local5 = defPushButton; defPushButton = _local2; _local5.emphasized = false; _local2.emphasized = true; } } else if ((defPushButton != undefined) && (defPushButton != __defaultPushButton)) { _local5 = defPushButton; defPushButton = __defaultPushButton; _local5.emphasized = false; __defaultPushButton.__set__emphasized(true); } } function onKeyDown(Void) { mx.managers.SystemManager.idleFrames = 0; if (defaultPushButtonEnabled) { if (Key.getCode() == 13) { if (defaultPushButton != undefined) { doLater(this, "sendDefaultPushButtonEvent"); } } } } function sendDefaultPushButtonEvent(Void) { defPushButton.dispatchEvent({type:"click"}); } function getMousedComponentFromChildren(x, y, o) { for (var _local7 in o) { var _local2 = o[_local7]; if (((_local2._visible && (_local2.enabled)) && (_local2._parent == o)) && (_local2._searchKey != _searchKey)) { _local2._searchKey = _searchKey; if (_local2.hitTest(x, y, true)) { if ((_local2.onPress != undefined) || (_local2.onRelease != undefined)) { return(_local2); } var _local3 = getMousedComponentFromChildren(x, y, _local2); if (_local3 != undefined) { return(_local3); } return(_local2); } } } return(undefined); } function mouseActivate(Void) { if (!bNeedFocus) { return(undefined); } _searchKey = getTimer(); var _local2 = getMousedComponentFromChildren(lastXMouse, lastYMouse, form); if (_local2 instanceof mx.core.UIComponent) { return(undefined); } _local2 = findFocusFromObject(_local2); if (_local2 == lastFocus) { return(undefined); } if (_local2 == undefined) { doLater(this, "restoreFocus"); return(undefined); } var _local3 = _local2.hscroll; if (_local3 != undefined) { var _local6 = _local2.scroll; var _local5 = _local2.background; } setFocus(_local2); var _local4 = Selection; Selection.setSelection(_local4.lastBeginIndex, _local4.lastEndIndex); if (_local3 != undefined) { _local2.scroll = _local6; _local2.hscroll = _local3; _local2.background = _local5; } } function _onMouseDown(Void) { bDrawFocus = false; if (lastFocus != undefined) { lastFocus.drawFocus(false); } mx.managers.SystemManager.idleFrames = 0; var _local3 = Selection; _local3.lastBeginIndex = Selection.getBeginIndex(); _local3.lastEndIndex = Selection.getEndIndex(); lastXMouse = _root._xmouse; lastYMouse = _root._ymouse; } function onMouseUp(Void) { if (_visible) { doLater(this, "mouseActivate"); } } function handleEvent(e) { if (e.type == "reveal") { mx.managers.SystemManager.activate(form); } else { mx.managers.SystemManager.deactivate(form); } } static function enableFocusManagement() { if (!initialized) { initialized = true; Object.registerClass("FocusManager", mx.managers.FocusManager); if (_root.focusManager == undefined) { _root.createClassObject(mx.managers.FocusManager, "focusManager", mx.managers.DepthManager.highestDepth--); } } } static var symbolName = "FocusManager"; static var symbolOwner = mx.managers.FocusManager; static var version = "2.0.0.377"; var className = "FocusManager"; var bNeedFocus = false; var bDrawFocus = false; var defaultPushButtonEnabled = true; var activated = true; static var initialized = false; static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; }
Symbol 695 MovieClip [__Packages.mx.skins.halo.FocusRect] Frame 0
class mx.skins.halo.FocusRect extends mx.skins.SkinElement { var boundingBox_mc, _xscale, _yscale, clear, beginFill, drawRoundRect, endFill, _visible; function FocusRect () { super(); boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function draw(o) { o.adjustFocusRect(); } function setSize(w, h, r, a, rectCol) { _xscale = (_yscale = 100); clear(); if (typeof(r) == "object") { r.br = ((r.br > 2) ? (r.br - 2) : 0); r.bl = ((r.bl > 2) ? (r.bl - 2) : 0); r.tr = ((r.tr > 2) ? (r.tr - 2) : 0); r.tl = ((r.tl > 2) ? (r.tl - 2) : 0); beginFill(rectCol, a * 0.3); drawRoundRect(0, 0, w, h, r); drawRoundRect(2, 2, w - 4, h - 4, r); endFill(); r.br = ((r.br > 1) ? (r.br + 1) : 0); r.bl = ((r.bl > 1) ? (r.bl + 1) : 0); r.tr = ((r.tr > 1) ? (r.tr + 1) : 0); r.tl = ((r.tl > 1) ? (r.tl + 1) : 0); beginFill(rectCol, a * 0.3); drawRoundRect(1, 1, w - 2, h - 2, r); r.br = ((r.br > 1) ? (r.br - 1) : 0); r.bl = ((r.bl > 1) ? (r.bl - 1) : 0); r.tr = ((r.tr > 1) ? (r.tr - 1) : 0); r.tl = ((r.tl > 1) ? (r.tl - 1) : 0); drawRoundRect(2, 2, w - 4, h - 4, r); endFill(); } else { var _local5; if (r != 0) { _local5 = r - 2; } else { _local5 = 0; } beginFill(rectCol, a * 0.3); drawRoundRect(0, 0, w, h, r); drawRoundRect(2, 2, w - 4, h - 4, _local5); endFill(); beginFill(rectCol, a * 0.3); if (r != 0) { _local5 = r - 2; r = r - 1; } else { _local5 = 0; r = 0; } drawRoundRect(1, 1, w - 2, h - 2, r); drawRoundRect(2, 2, w - 4, h - 4, _local5); endFill(); } } function handleEvent(e) { if (e.type == "unload") { _visible = true; } else if (e.type == "resize") { e.target.adjustFocusRect(); } else if (e.type == "move") { e.target.adjustFocusRect(); } } static function classConstruct() { mx.core.UIComponent.prototype.drawFocus = function (focused) { var _local2 = this._parent.focus_mc; if (!focused) { _local2._visible = false; this.removeEventListener("unload", _local2); this.removeEventListener("move", _local2); this.removeEventListener("resize", _local2); } else { if (_local2 == undefined) { _local2 = this._parent.createChildAtDepth("FocusRect", mx.managers.DepthManager.kTop); _local2.tabEnabled = false; this._parent.focus_mc = _local2; } else { _local2._visible = true; } _local2.draw(this); if (_local2.getDepth() < this.getDepth()) { _local2.setDepthAbove(this); } this.addEventListener("unload", _local2); this.addEventListener("move", _local2); this.addEventListener("resize", _local2); } }; mx.core.UIComponent.prototype.adjustFocusRect = function () { var _local2 = this.getStyle("themeColor"); if (_local2 == undefined) { _local2 = 8453965 /* 0x80FF4D */; } var _local3 = this._parent.focus_mc; _local3.setSize(this.width + 4, this.height + 4, 0, 100, _local2); _local3.move(this.x - 2, this.y - 2); }; TextField.prototype.drawFocus = mx.core.UIComponent.prototype.drawFocus; TextField.prototype.adjustFocusRect = mx.core.UIComponent.prototype.adjustFocusRect; mx.skins.halo.FocusRect.prototype.drawRoundRect = mx.skins.halo.Defaults.prototype.drawRoundRect; return(true); } static var classConstructed = classConstruct(); static var DefaultsDependency = mx.skins.halo.Defaults; static var UIComponentDependency = mx.core.UIComponent; }
Symbol 696 MovieClip [__Packages.mx.managers.OverlappedWindows] Frame 0
class mx.managers.OverlappedWindows { function OverlappedWindows () { } static function checkIdle(Void) { if (mx.managers.SystemManager.idleFrames > 10) { mx.managers.SystemManager.dispatchEvent({type:"idle"}); } else { mx.managers.SystemManager.idleFrames++; } } static function __addEventListener(e, o, l) { if (e == "idle") { if (mx.managers.SystemManager.interval == undefined) { mx.managers.SystemManager.interval = setInterval(mx.managers.SystemManager.checkIdle, 100); } } mx.managers.SystemManager._xAddEventListener(e, o, l); } static function __removeEventListener(e, o, l) { if (e == "idle") { if (mx.managers.SystemManager._xRemoveEventListener(e, o, l) == 0) { clearInterval(mx.managers.SystemManager.interval); } } else { mx.managers.SystemManager._xRemoveEventListener(e, o, l); } } static function onMouseDown(Void) { mx.managers.SystemManager.idleFrames = 0; mx.managers.SystemManager.isMouseDown = true; var _local5 = _root; var _local3; var _local8 = _root._xmouse; var _local7 = _root._ymouse; if (mx.managers.SystemManager.form.modalWindow == undefined) { if (mx.managers.SystemManager.forms.length > 1) { var _local6 = mx.managers.SystemManager.forms.length; var _local4; _local4 = 0; while (_local4 < _local6) { var _local2 = mx.managers.SystemManager.forms[_local4]; if (_local2._visible) { if (_local2.hitTest(_local8, _local7)) { if (_local3 == undefined) { _local3 = _local2.getDepth(); _local5 = _local2; } else if (_local3 < _local2.getDepth()) { _local3 = _local2.getDepth(); _local5 = _local2; } } } _local4++; } if (_local5 != mx.managers.SystemManager.form) { mx.managers.SystemManager.activate(_local5); } } } var _local9 = mx.managers.SystemManager.form; _local9.focusManager._onMouseDown(); } static function onMouseMove(Void) { mx.managers.SystemManager.idleFrames = 0; } static function onMouseUp(Void) { mx.managers.SystemManager.isMouseDown = false; mx.managers.SystemManager.idleFrames = 0; } static function activate(f) { if (mx.managers.SystemManager.form != undefined) { if ((mx.managers.SystemManager.form != f) && (mx.managers.SystemManager.forms.length > 1)) { var _local1 = mx.managers.SystemManager.form; _local1.focusManager.deactivate(); } } mx.managers.SystemManager.form = f; f.focusManager.activate(); } static function deactivate(f) { if (mx.managers.SystemManager.form != undefined) { if ((mx.managers.SystemManager.form == f) && (mx.managers.SystemManager.forms.length > 1)) { var _local5 = mx.managers.SystemManager.form; _local5.focusManager.deactivate(); var _local3 = mx.managers.SystemManager.forms.length; var _local1; var _local2; _local1 = 0; while (_local1 < _local3) { if (mx.managers.SystemManager.forms[_local1] == f) { _local1 = _local1 + 1; while (_local1 < _local3) { if (mx.managers.SystemManager.forms[_local1]._visible == true) { _local2 = mx.managers.SystemManager.forms[_local1]; } _local1++; } mx.managers.SystemManager.form = _local2; break; } if (mx.managers.SystemManager.forms[_local1]._visible == true) { _local2 = mx.managers.SystemManager.forms[_local1]; } _local1++; } _local5 = mx.managers.SystemManager.form; _local5.focusManager.activate(); } } } static function addFocusManager(f) { mx.managers.SystemManager.forms.push(f); mx.managers.SystemManager.activate(f); } static function removeFocusManager(f) { var _local3 = mx.managers.SystemManager.forms.length; var _local1; _local1 = 0; while (_local1 < _local3) { if (mx.managers.SystemManager.forms[_local1] == f) { if (mx.managers.SystemManager.form == f) { mx.managers.SystemManager.deactivate(f); } mx.managers.SystemManager.forms.splice(_local1, 1); return(undefined); } _local1++; } } static function enableOverlappedWindows() { if (!initialized) { initialized = true; mx.managers.SystemManager.checkIdle = checkIdle; mx.managers.SystemManager.__addEventListener = __addEventListener; mx.managers.SystemManager.__removeEventListener = __removeEventListener; mx.managers.SystemManager.onMouseDown = onMouseDown; mx.managers.SystemManager.onMouseMove = onMouseMove; mx.managers.SystemManager.onMouseUp = onMouseUp; mx.managers.SystemManager.activate = activate; mx.managers.SystemManager.deactivate = deactivate; mx.managers.SystemManager.addFocusManager = addFocusManager; mx.managers.SystemManager.removeFocusManager = removeFocusManager; } } static var initialized = false; static var SystemManagerDependency = mx.managers.SystemManager; }
Symbol 697 MovieClip [__Packages.mx.styles.CSSSetStyle] Frame 0
class mx.styles.CSSSetStyle { var styleName, stylecache, _color, setColor, invalidateStyle; function CSSSetStyle () { } function _setStyle(styleProp, newValue) { this[styleProp] = newValue; if (mx.styles.StyleManager.TextStyleMap[styleProp] != undefined) { if (styleProp == "color") { if (isNaN(newValue)) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } } _level0.changeTextStyleInChildren(styleProp); return(undefined); } if (mx.styles.StyleManager.isColorStyle(styleProp)) { if (isNaN(newValue)) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } if (styleProp == "themeColor") { var _local7 = mx.styles.StyleManager.colorNames.haloBlue; var _local6 = mx.styles.StyleManager.colorNames.haloGreen; var _local8 = mx.styles.StyleManager.colorNames.haloOrange; var _local4 = {}; _local4[_local7] = 12188666 /* 0xB9FBFA */; _local4[_local6] = 13500353 /* 0xCDFFC1 */; _local4[_local8] = 16766319 /* 0xFFD56F */; var _local5 = {}; _local5[_local7] = 13958653 /* 0xD4FDFD */; _local5[_local6] = 14942166 /* 0xE3FFD6 */; _local5[_local8] = 16772787 /* 0xFFEEB3 */; var _local9 = _local4[newValue]; var _local10 = _local5[newValue]; if (_local9 == undefined) { _local9 = newValue; } if (_local10 == undefined) { _local10 = newValue; } setStyle("selectionColor", _local9); setStyle("rollOverColor", _local10); } _level0.changeColorStyleInChildren(styleName, styleProp, newValue); } else { if ((styleProp == "backgroundColor") && (isNaN(newValue))) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } _level0.notifyStyleChangeInChildren(styleName, styleProp, newValue); } } function changeTextStyleInChildren(styleProp) { var _local4 = getTimer(); var _local5; for (_local5 in this) { var _local2 = this[_local5]; if (_local2._parent == this) { if (_local2.searchKey != _local4) { if (_local2.stylecache != undefined) { delete _local2.stylecache.tf; delete _local2.stylecache[styleProp]; } _local2.invalidateStyle(styleProp); _local2.changeTextStyleInChildren(styleProp); _local2.searchKey = _local4; } } } } function changeColorStyleInChildren(sheetName, colorStyle, newValue) { var _local6 = getTimer(); var _local7; for (_local7 in this) { var _local2 = this[_local7]; if (_local2._parent == this) { if (_local2.searchKey != _local6) { if (((_local2.getStyleName() == sheetName) || (sheetName == undefined)) || (sheetName == "_global")) { if (_local2.stylecache != undefined) { delete _local2.stylecache[colorStyle]; } if (typeof(_local2._color) == "string") { if (_local2._color == colorStyle) { var _local4 = _local2.getStyle(colorStyle); if (colorStyle == "color") { if (stylecache.tf.color != undefined) { stylecache.tf.color = _local4; } } _local2.setColor(_local4); } } else if (_local2._color[colorStyle] != undefined) { if (typeof(_local2) != "movieclip") { _local2._parent.invalidateStyle(); } else { _local2.invalidateStyle(colorStyle); } } } _local2.changeColorStyleInChildren(sheetName, colorStyle, newValue); _local2.searchKey = _local6; } } } } function notifyStyleChangeInChildren(sheetName, styleProp, newValue) { var _local5 = getTimer(); var _local6; for (_local6 in this) { var _local2 = this[_local6]; if (_local2._parent == this) { if (_local2.searchKey != _local5) { if (((_local2.styleName == sheetName) || ((_local2.styleName != undefined) && (typeof(_local2.styleName) == "movieclip"))) || (sheetName == undefined)) { if (_local2.stylecache != undefined) { delete _local2.stylecache[styleProp]; delete _local2.stylecache.tf; } delete _local2.enabledColor; _local2.invalidateStyle(styleProp); } _local2.notifyStyleChangeInChildren(sheetName, styleProp, newValue); _local2.searchKey = _local5; } } } } function setStyle(styleProp, newValue) { if (stylecache != undefined) { delete stylecache[styleProp]; delete stylecache.tf; } this[styleProp] = newValue; if (mx.styles.StyleManager.isColorStyle(styleProp)) { if (isNaN(newValue)) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } if (styleProp == "themeColor") { var _local10 = mx.styles.StyleManager.colorNames.haloBlue; var _local9 = mx.styles.StyleManager.colorNames.haloGreen; var _local11 = mx.styles.StyleManager.colorNames.haloOrange; var _local6 = {}; _local6[_local10] = 12188666 /* 0xB9FBFA */; _local6[_local9] = 13500353 /* 0xCDFFC1 */; _local6[_local11] = 16766319 /* 0xFFD56F */; var _local7 = {}; _local7[_local10] = 13958653 /* 0xD4FDFD */; _local7[_local9] = 14942166 /* 0xE3FFD6 */; _local7[_local11] = 16772787 /* 0xFFEEB3 */; var _local12 = _local6[newValue]; var _local13 = _local7[newValue]; if (_local12 == undefined) { _local12 = newValue; } if (_local13 == undefined) { _local13 = newValue; } setStyle("selectionColor", _local12); setStyle("rollOverColor", _local13); } if (typeof(_color) == "string") { if (_color == styleProp) { if (styleProp == "color") { if (stylecache.tf.color != undefined) { stylecache.tf.color = newValue; } } setColor(newValue); } } else if (_color[styleProp] != undefined) { invalidateStyle(styleProp); } changeColorStyleInChildren(undefined, styleProp, newValue); } else { if ((styleProp == "backgroundColor") && (isNaN(newValue))) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } invalidateStyle(styleProp); } if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (styleProp == "styleName")) { var _local8; var _local5 = newValue; if (styleProp == "styleName") { _local8 = ((typeof(newValue) == "string") ? (_global.styles[newValue]) : (_local5)); _local5 = _local8.themeColor; if (_local5 != undefined) { _local8.rollOverColor = (_local8.selectionColor = _local5); } } notifyStyleChangeInChildren(undefined, styleProp, newValue); } } static function enableRunTimeCSS() { } static function classConstruct() { var _local2 = MovieClip.prototype; var _local1 = mx.styles.CSSSetStyle.prototype; mx.styles.CSSStyleDeclaration.prototype.setStyle = _local1._setStyle; _local2.changeTextStyleInChildren = _local1.changeTextStyleInChildren; _local2.changeColorStyleInChildren = _local1.changeColorStyleInChildren; _local2.notifyStyleChangeInChildren = _local1.notifyStyleChangeInChildren; _local2.setStyle = _local1.setStyle; var _local3 = TextField.prototype; _local3.setStyle = _local2.setStyle; _local3.changeTextStyleInChildren = _local1.changeTextStyleInChildren; return(true); } static var classConstructed = classConstruct(); static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration; }
Symbol 698 MovieClip [__Packages.mx.core.ext.UIComponentExtensions] Frame 0
class mx.core.ext.UIComponentExtensions { function UIComponentExtensions () { } static function Extensions() { if (bExtended == true) { return(true); } bExtended = true; TextField.prototype.setFocus = function () { Selection.setFocus(this); }; TextField.prototype.onSetFocus = function (oldFocus) { if (this.tabEnabled != false) { if (this.getFocusManager().bDrawFocus) { this.drawFocus(true); } } }; TextField.prototype.onKillFocus = function (oldFocus) { if (this.tabEnabled != false) { this.drawFocus(false); } }; TextField.prototype.drawFocus = mx.core.UIComponent.prototype.drawFocus; TextField.prototype.getFocusManager = mx.core.UIComponent.prototype.getFocusManager; mx.managers.OverlappedWindows.enableOverlappedWindows(); mx.styles.CSSSetStyle.enableRunTimeCSS(); mx.managers.FocusManager.enableFocusManagement(); } static var bExtended = false; static var UIComponentExtended = Extensions(); static var UIComponentDependency = mx.core.UIComponent; static var FocusManagerDependency = mx.managers.FocusManager; static var OverlappedWindowsDependency = mx.managers.OverlappedWindows; }
Symbol 699 MovieClip [__Packages.mx.skins.halo.RectBorder] Frame 0
class mx.skins.halo.RectBorder extends mx.skins.RectBorder { var offset, getStyle, borderStyleName, __borderMetrics, className, borderColorName, backgroundColorName, shadowColorName, highlightColorName, buttonColorName, __get__width, __get__height, clear, _color, drawRoundRect, beginFill, drawRect, endFill; function RectBorder () { super(); } function init(Void) { borderWidths.default = 3; super.init(); } function getBorderMetrics(Void) { if (offset == undefined) { var _local3 = getStyle(borderStyleName); offset = borderWidths[_local3]; } if ((getStyle(borderStyleName) == "default") || (getStyle(borderStyleName) == "alert")) { __borderMetrics = {left:3, top:1, right:3, bottom:3}; return(__borderMetrics); } return(super.getBorderMetrics()); } function drawBorder(Void) { var _local6 = _global.styles[className]; if (_local6 == undefined) { _local6 = _global.styles.RectBorder; } var _local5 = getStyle(borderStyleName); var _local7 = getStyle(borderColorName); if (_local7 == undefined) { _local7 = _local6[borderColorName]; } var _local8 = getStyle(backgroundColorName); if (_local8 == undefined) { _local8 = _local6[backgroundColorName]; } var _local16 = getStyle("backgroundImage"); if (_local5 != "none") { var _local14 = getStyle(shadowColorName); if (_local14 == undefined) { _local14 = _local6[shadowColorName]; } var _local13 = getStyle(highlightColorName); if (_local13 == undefined) { _local13 = _local6[highlightColorName]; } var _local12 = getStyle(buttonColorName); if (_local12 == undefined) { _local12 = _local6[buttonColorName]; } var _local11 = getStyle(borderCapColorName); if (_local11 == undefined) { _local11 = _local6[borderCapColorName]; } var _local10 = getStyle(shadowCapColorName); if (_local10 == undefined) { _local10 = _local6[shadowCapColorName]; } } offset = borderWidths[_local5]; var _local9 = offset; var _local3 = __get__width(); var _local4 = __get__height(); clear(); _color = undefined; if (_local5 == "none") { } else if (_local5 == "inset") { _color = colorList; draw3dBorder(_local11, _local12, _local7, _local13, _local14, _local10); } else if (_local5 == "outset") { _color = colorList; draw3dBorder(_local11, _local7, _local12, _local14, _local13, _local10); } else if (_local5 == "alert") { var _local15 = getStyle("themeColor"); drawRoundRect(0, 5, _local3, _local4 - 5, 5, 6184542, 10); drawRoundRect(1, 4, _local3 - 2, _local4 - 5, 4, [6184542, 6184542], 10, 0, "radial"); drawRoundRect(2, 0, _local3 - 4, _local4 - 2, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(2, 0, _local3 - 4, _local4 - 2, 3, _local15, 50); drawRoundRect(3, 1, _local3 - 6, _local4 - 4, 2, 16777215, 100); } else if (_local5 == "default") { drawRoundRect(0, 5, _local3, _local4 - 5, {tl:5, tr:5, br:0, bl:0}, 6184542, 10); drawRoundRect(1, 4, _local3 - 2, _local4 - 5, {tl:4, tr:4, br:0, bl:0}, [6184542, 6184542], 10, 0, "radial"); drawRoundRect(2, 0, _local3 - 4, _local4 - 2, {tl:3, tr:3, br:0, bl:0}, [12897484, 11844796], 100, 0, "radial"); drawRoundRect(3, 1, _local3 - 6, _local4 - 4, {tl:2, tr:2, br:0, bl:0}, 16777215, 100); } else if (_local5 == "dropDown") { drawRoundRect(0, 0, _local3 + 1, _local4, {tl:4, tr:0, br:0, bl:4}, [13290186, 7895160], 100, -10, "linear"); drawRoundRect(1, 1, _local3 - 1, _local4 - 2, {tl:3, tr:0, br:0, bl:3}, 16777215, 100); } else if (_local5 == "menuBorder") { var _local15 = getStyle("themeColor"); drawRoundRect(4, 4, _local3 - 2, _local4 - 3, 0, [6184542, 6184542], 10, 0, "radial"); drawRoundRect(4, 4, _local3 - 1, _local4 - 2, 0, 6184542, 10); drawRoundRect(0, 0, _local3 + 1, _local4, 0, [0, 14342874], 100, 250, "linear"); drawRoundRect(0, 0, _local3 + 1, _local4, 0, _local15, 50); drawRoundRect(2, 2, _local3 - 3, _local4 - 4, 0, 16777215, 100); } else if (_local5 == "comboNonEdit") { } else { beginFill(_local7); drawRect(0, 0, _local3, _local4); drawRect(1, 1, _local3 - 1, _local4 - 1); endFill(); _color = borderColorName; } if (_local8 != undefined) { beginFill(_local8); drawRect(_local9, _local9, __get__width() - _local9, __get__height() - _local9); endFill(); } } function draw3dBorder(c1, c2, c3, c4, c5, c6) { var _local3 = __get__width(); var _local2 = __get__height(); beginFill(c1); drawRect(0, 0, _local3, _local2); drawRect(1, 0, _local3 - 1, _local2); endFill(); beginFill(c2); drawRect(1, 0, _local3 - 1, 1); endFill(); beginFill(c3); drawRect(1, _local2 - 1, _local3 - 1, _local2); endFill(); beginFill(c4); drawRect(1, 1, _local3 - 1, 2); endFill(); beginFill(c5); drawRect(1, _local2 - 2, _local3 - 1, _local2 - 1); endFill(); beginFill(c6); drawRect(1, 2, _local3 - 1, _local2 - 2); drawRect(2, 2, _local3 - 2, _local2 - 2); endFill(); } static function classConstruct() { mx.core.ext.UIObjectExtensions.Extensions(); _global.styles.rectBorderClass = mx.skins.halo.RectBorder; _global.skinRegistry.RectBorder = true; return(true); } static var symbolName = "RectBorder"; static var symbolOwner = mx.skins.halo.RectBorder; static var version = "2.0.0.377"; var borderCapColorName = "borderCapColor"; var shadowCapColorName = "shadowCapColor"; var colorList = {highlightColor:0, borderColor:0, buttonColor:0, shadowColor:0, borderCapColor:0, shadowCapColor:0}; var borderWidths = {none:0, solid:1, inset:2, outset:2, alert:3, dropDown:2, menuBorder:2, comboNonEdit:2}; static var classConstructed = classConstruct(); static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; }
Symbol 700 MovieClip [__Packages.mx.skins.halo.ButtonSkin] Frame 0
class mx.skins.halo.ButtonSkin extends mx.skins.RectBorder { var __get__width, __get__height, getStyle, _parent, clear, drawRoundRect, __get__x, __get__y; function ButtonSkin () { super(); } function init() { super.init(); } function size() { drawHaloRect(__get__width(), __get__height()); } function drawHaloRect(w, h) { var _local6 = getStyle("borderStyle"); var _local4 = getStyle("themeColor"); var _local5 = _parent.emphasized; clear(); switch (_local6) { case "falseup" : if (_local5) { drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 75); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 85, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 75); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100); } else { drawRoundRect(0, 0, w, h, 5, 9542041, 100); drawRoundRect(1, 1, w - 2, h - 2, 4, [13291985, 16250871], 100, 0, "radial"); drawRoundRect(2, 2, w - 4, h - 4, 3, [9542041, 13818586], 100, 0, "radial"); drawRoundRect(3, 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(3, 4, w - 6, h - 7, 2, 16316664, 100); } break; case "falsedown" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, _local4, 20); break; case "falserollover" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 50); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 100, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 50); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100); break; case "falsedisabled" : drawRoundRect(0, 0, w, h, 5, 13159628, 100); drawRoundRect(1, 1, w - 2, h - 2, 4, 15921906, 100); drawRoundRect(2, 2, w - 4, h - 4, 3, 13949401, 100); drawRoundRect(3, 3, w - 6, h - 6, 2, 15921906, 100); break; case "trueup" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 10066329, 100); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16250871, 100); break; case "truedown" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 10066329, 100); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, _local4, 20); break; case "truerollover" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 50); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 100, 0, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 40); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 40); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100); break; case "truedisabled" : drawRoundRect(0, 0, w, h, 5, 13159628, 100); drawRoundRect(1, 1, w - 2, h - 2, 4, 15921906, 100); drawRoundRect(2, 2, w - 4, h - 4, 3, 13949401, 100); drawRoundRect(3, 3, w - 6, h - 6, 2, 15921906, 100); } } static function classConstruct() { mx.core.ext.UIObjectExtensions.Extensions(); _global.skinRegistry.ButtonSkin = true; return(true); } static var symbolName = "ButtonSkin"; static var symbolOwner = mx.skins.halo.ButtonSkin; var className = "ButtonSkin"; var backgroundColorName = "buttonColor"; static var classConstructed = classConstruct(); static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; }
Symbol 701 MovieClip [__Packages.mx.controls.VScrollBar] Frame 0
class mx.controls.VScrollBar extends mx.controls.scrollClasses.ScrollBar { var scrollIt; function VScrollBar () { super(); } function init(Void) { super.init(); } function isScrollBarKey(k) { if (k == 38) { scrollIt("Line", -1); return(true); } if (k == 40) { scrollIt("Line", 1); return(true); } if (k == 33) { scrollIt("Page", -1); return(true); } if (k == 34) { scrollIt("Page", 1); return(true); } return(super.isScrollBarKey(k)); } static var symbolName = "VScrollBar"; static var symbolOwner = mx.core.UIComponent; static var version = "2.0.0.377"; var className = "VScrollBar"; var minusMode = "Up"; var plusMode = "Down"; var minMode = "AtTop"; var maxMode = "AtBottom"; }
Symbol 702 MovieClip [__Packages.mx.containers.ScrollPane] Frame 0
class mx.containers.ScrollPane extends mx.core.ScrollView { var _total, _loaded, destroyChildAt, createChild, __scrollContent, spContentHolder, hScroller, vScroller, __get__hScrollPolicy, __vScrollPolicy, __get__vScrollPolicy, tabEnabled, keyDown, mask_mc, hPosition, __get__maxHPosition, vPosition, __get__maxVPosition, __hPosition, __vPosition, invalidate; function ScrollPane () { super(); } function getBytesTotal() { return(_total); } function getBytesLoaded() { return(_loaded); } function set contentPath(scrollableContent) { if (!initializing) { if (scrollableContent == undefined) { destroyChildAt(0); } else { if (this[mx.core.View.childNameBase + 0] != undefined) { destroyChildAt(0); } createChild(scrollableContent, "spContentHolder"); } } __scrollContent = scrollableContent; //return(contentPath); } function get contentPath() { return(__scrollContent); } function get content() { return(spContentHolder); } function setHPosition(position) { if ((position <= hScroller.maxPos) && (position >= hScroller.minPos)) { super.setHPosition(position); spContentHolder._x = -position; } } function setVPosition(position) { if ((position <= vScroller.maxPos) && (position >= vScroller.minPos)) { super.setVPosition(position); spContentHolder._y = -position; } } function get vLineScrollSize() { return(__vLineScrollSize); } function set vLineScrollSize(vLineSize) { __vLineScrollSize = vLineSize; vScroller.__set__lineScrollSize(vLineSize); //return(vLineScrollSize); } function get hLineScrollSize() { return(__hLineScrollSize); } function set hLineScrollSize(hLineSize) { __hLineScrollSize = hLineSize; hScroller.__set__lineScrollSize(hLineSize); //return(hLineScrollSize); } function get vPageScrollSize() { return(__vPageScrollSize); } function set vPageScrollSize(vPageSize) { __vPageScrollSize = vPageSize; vScroller.__set__pageScrollSize(vPageSize); //return(vPageScrollSize); } function get hPageScrollSize() { return(__hPageScrollSize); } function set hPageScrollSize(hPageSize) { __hPageScrollSize = hPageSize; hScroller.__set__pageScrollSize(hPageSize); //return(hPageScrollSize); } function set hScrollPolicy(policy) { __hScrollPolicy = policy.toLowerCase(); setScrollProperties(spContentHolder._width, 1, spContentHolder._height, 1); //return(__get__hScrollPolicy()); } function set vScrollPolicy(policy) { __vScrollPolicy = policy.toLowerCase(); setScrollProperties(spContentHolder._width, 1, spContentHolder._height, 1); //return(__get__vScrollPolicy()); } function get scrollDrag() { return(__scrollDrag); } function set scrollDrag(s) { __scrollDrag = s; if (__scrollDrag) { spContentHolder.useHandCursor = true; spContentHolder.onPress = function () { this._parent.startDragLoop(); }; spContentHolder.tabEnabled = false; spContentHolder.onRelease = (spContentHolder.onReleaseOutside = function () { delete this.onMouseMove; }); __scrollDrag = true; } else { delete spContentHolder.onPress; spContentHolder.tabEnabled = false; spContentHolder.tabChildren = true; spContentHolder.useHandCursor = false; __scrollDrag = false; } //return(scrollDrag); } function init(Void) { super.init(); tabEnabled = true; keyDown = _onKeyDown; } function createChildren(Void) { super.createChildren(); mask_mc._visible = false; initializing = false; if ((__scrollContent != undefined) && (__scrollContent != "")) { contentPath = (__scrollContent); } } function size(Void) { super.size(); setScrollProperties(spContentHolder._width, 1, spContentHolder._height, 1); hPosition = Math.min(hPosition, __get__maxHPosition()); vPosition = Math.min(vPosition, __get__maxVPosition()); } function setScrollProperties(columnCount, columnWidth, rowCount, rowHeight) { super.setScrollProperties(columnCount, columnWidth, rowCount, rowHeight); hScroller.__set__lineScrollSize(__hLineScrollSize); hScroller.__set__pageScrollSize(__hPageScrollSize); vScroller.__set__lineScrollSize(__vLineScrollSize); vScroller.__set__pageScrollSize(__vPageScrollSize); } function onScroll(scrollEvent) { super.onScroll(scrollEvent); spContentHolder._x = -__hPosition; spContentHolder._y = -__vPosition; } function childLoaded(obj) { super.childLoaded(obj); onComplete(); } function onComplete(Void) { setScrollProperties(spContentHolder._width, 1, spContentHolder._height, 1); hPosition = 0; vPosition = 0; scrollDrag = (__scrollDrag); invalidate(); } function startDragLoop(Void) { spContentHolder.lastX = spContentHolder._xmouse; spContentHolder.lastY = spContentHolder._ymouse; spContentHolder.onMouseMove = function () { var _local4 = this.lastX - this._xmouse; var _local3 = this.lastY - this._ymouse; _local4 = _local4 + this._parent.hPosition; _local3 = _local3 + this._parent.vPosition; this._parent.hPosition = _local4; this._parent.vPosition = _local3; if ((this._parent.hPosition < this._parent.hScroller.maxPos) && (this._parent.hPosition > this._parent.hScroller.minPos)) { this.lastX = this._xmouse; } else if (this._parent.hPosition > this._parent.hScroller.maxPos) { this._parent.hPosition = this._parent.hScroller.maxPos; } else if (this._parent.hPosition < this._parent.hScroller.minPos) { this._parent.hPosition = this._parent.hScroller.minPos; } if ((this._parent.vPosition < this._parent.vScroller.maxPos) && (this._parent.vPosition > this._parent.vScroller.minPos)) { this.lastY = this._ymouse; } else if (this._parent.vPosition > this._parent.vScroller.maxPos) { this._parent.vPosition = this._parent.vScroller.maxPos; } else if (this._parent.vPosition < this._parent.vScroller.minPos) { this._parent.vPosition = this._parent.vScroller.minPos; } super.dispatchEvent({type:"scroll"}); }; } function dispatchEvent(o) { o.target = this; _total = o.total; _loaded = o.current; super.dispatchEvent(o); } function refreshPane(Void) { contentPath = (__scrollContent); } function _onKeyDown(e) { if (e.code == 40) { vPosition = vPosition + vLineScrollSize; } else if (e.code == 38) { vPosition = vPosition - vLineScrollSize; } else if (e.code == 37) { hPosition = hPosition - hLineScrollSize; } else if (e.code == 39) { hPosition = hPosition + hLineScrollSize; } else if (e.code == 33) { vPosition = vPosition - vPageScrollSize; } else if (e.code == 34) { vPosition = vPosition + vPageScrollSize; } else if (e.code == 36) { vPosition = vScroller.minPos; } else if (e.code == 35) { vPosition = vScroller.maxPos; } } static var symbolName = "ScrollPane"; static var symbolOwner = mx.containers.ScrollPane; var className = "ScrollPane"; static var version = "2.0.0.377"; var __hScrollPolicy = "auto"; var __scrollDrag = false; var __vLineScrollSize = 5; var __hLineScrollSize = 5; var __vPageScrollSize = 20; var __hPageScrollSize = 20; var clipParameters = {contentPath:1, scrollDrag:1, hScrollPolicy:1, vScrollPolicy:1, vLineScrollSize:1, hLineScrollSize:1, vPageScrollSize:1, hPageScrollSize:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.containers.ScrollPane.prototype.clipParameters, mx.core.ScrollView.prototype.clipParameters); var initializing = true; }
Symbol 704 MovieClip [__Packages.mx.controls.listclasses.DataSelector] Frame 0
class mx.controls.listclasses.DataSelector extends Object { var __vPosition, setVPosition, __dataProvider, enabled, lastSelID, lastSelected, selected, invUpdateControl, invalidate, multipleSelection, updateControl, __rowCount, rows; function DataSelector () { super(); } static function Initialize(obj) { var _local3 = mixinProps; var _local4 = _local3.length; obj = obj.prototype; var _local1 = 0; while (_local1 < _local4) { obj[_local3[_local1]] = mixins[_local3[_local1]]; _local1++; } mixins.createProp(obj, "dataProvider", true); mixins.createProp(obj, "length", false); mixins.createProp(obj, "value", false); mixins.createProp(obj, "selectedIndex", true); mixins.createProp(obj, "selectedIndices", true); mixins.createProp(obj, "selectedItems", false); mixins.createProp(obj, "selectedItem", true); return(true); } function createProp(obj, propName, setter) { var p = (propName.charAt(0).toUpperCase() + propName.substr(1)); var _local2 = null; var _local4 = function (Void) { return(this["get" + p]()); }; if (setter) { _local2 = function (val) { this["set" + p](val); }; } obj.addProperty(propName, _local4, _local2); } function setDataProvider(dP) { if (__vPosition != 0) { setVPosition(0); } clearSelected(); __dataProvider.removeEventListener(this); __dataProvider = dP; dP.addEventListener("modelChanged", this); modelChanged({eventName:"updateAll"}); } function getDataProvider(Void) { return(__dataProvider); } function addItemAt(index, label, data) { if ((index < 0) || (!enabled)) { return(undefined); } var _local2 = __dataProvider; if (_local2 == undefined) { _local2 = (__dataProvider = new Array()); _local2.addEventListener("modelChanged", this); index = 0; } if ((typeof(label) == "object") || (typeof(_local2.getItemAt(0)) == "string")) { _local2.addItemAt(index, label); } else { _local2.addItemAt(index, {label:label, data:data}); } } function addItem(label, data) { addItemAt(__dataProvider.length, label, data); } function removeItemAt(index) { return(__dataProvider.removeItemAt(index)); } function removeAll(Void) { __dataProvider.removeAll(); } function replaceItemAt(index, newLabel, newData) { if (typeof(newLabel) == "object") { __dataProvider.replaceItemAt(index, newLabel); } else { __dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); } } function sortItemsBy(fieldName, order) { lastSelID = __dataProvider.getItemID(lastSelected); __dataProvider.sortItemsBy(fieldName, order); } function sortItems(compareFunc, order) { lastSelID = __dataProvider.getItemID(lastSelected); __dataProvider.sortItems(compareFunc, order); } function getLength(Void) { return(__dataProvider.length); } function getItemAt(index) { return(__dataProvider.getItemAt(index)); } function modelChanged(eventObj) { var _local3 = eventObj.firstItem; var _local6 = eventObj.lastItem; var _local7 = eventObj.eventName; if (_local7 == undefined) { _local7 = eventObj.event; _local3 = eventObj.firstRow; _local6 = eventObj.lastRow; if (_local7 == "addRows") { _local7 = (eventObj.eventName = "addItems"); } else if (_local7 == "deleteRows") { _local7 = (eventObj.eventName = "removeItems"); } else if (_local7 == "updateRows") { _local7 = (eventObj.eventName = "updateItems"); } } if (_local7 == "addItems") { for (var _local2 in selected) { var _local5 = selected[_local2]; if ((_local5 != undefined) && (_local5 >= _local3)) { selected[_local2] = selected[_local2] + ((_local6 - _local3) + 1); } } } else if (_local7 == "removeItems") { if (__dataProvider.length == 0) { delete selected; } else { var _local9 = eventObj.removedIDs; var _local10 = _local9.length; var _local2 = 0; while (_local2 < _local10) { var _local4 = _local9[_local2]; if (selected[_local4] != undefined) { delete selected[_local4]; } _local2++; } for (_local2 in selected) { if (selected[_local2] >= _local3) { selected[_local2] = selected[_local2] - ((_local6 - _local3) + 1); } } } } else if (_local7 == "sort") { if (typeof(__dataProvider.getItemAt(0)) != "object") { delete selected; } else { var _local10 = __dataProvider.length; var _local2 = 0; while (_local2 < _local10) { if (isSelected(_local2)) { var _local4 = __dataProvider.getItemID(_local2); if (_local4 == lastSelID) { lastSelected = _local2; } selected[_local4] = _local2; } _local2++; } } } else if (_local7 == "filterModel") { setVPosition(0); } invUpdateControl = true; invalidate(); } function getValue(Void) { var _local2 = getSelectedItem(); if (typeof(_local2) != "object") { return(_local2); } return(((_local2.data == undefined) ? (_local2.label) : (_local2.data))); } function getSelectedIndex(Void) { for (var _local3 in selected) { var _local2 = selected[_local3]; if (_local2 != undefined) { return(_local2); } } } function setSelectedIndex(index) { if (((index >= 0) && (index < __dataProvider.length)) && (enabled)) { delete selected; selectItem(index, true); lastSelected = index; invUpdateControl = true; invalidate(); } else if (index == undefined) { clearSelected(); } } function getSelectedIndices(Void) { var _local2 = new Array(); for (var _local3 in selected) { _local2.push(selected[_local3]); } _local2.reverse(); return(((_local2.length > 0) ? (_local2) : undefined)); } function setSelectedIndices(indexArray) { if (multipleSelection != true) { return(undefined); } delete selected; var _local3 = 0; while (_local3 < indexArray.length) { var _local2 = indexArray[_local3]; if ((_local2 >= 0) && (_local2 < __dataProvider.length)) { selectItem(_local2, true); } _local3++; } invUpdateControl = true; updateControl(); } function getSelectedItems(Void) { var _local3 = getSelectedIndices(); var _local4 = new Array(); var _local2 = 0; while (_local2 < _local3.length) { _local4.push(getItemAt(_local3[_local2])); _local2++; } return(((_local4.length > 0) ? (_local4) : undefined)); } function getSelectedItem(Void) { return(__dataProvider.getItemAt(getSelectedIndex())); } function selectItem(index, selectedFlag) { if (selected == undefined) { selected = new Object(); } var _local2 = __dataProvider.getItemID(index); if (_local2 == undefined) { return(undefined); } if (selectedFlag && (!isSelected(index))) { selected[_local2] = index; } else if (!selectedFlag) { delete selected[_local2]; } } function isSelected(index) { var _local2 = __dataProvider.getItemID(index); if (_local2 == undefined) { return(false); } return(selected[_local2] != undefined); } function clearSelected(transition) { var _local3 = 0; for (var _local4 in selected) { var _local2 = selected[_local4]; if (((_local2 != undefined) && (__vPosition <= _local2)) && (_local2 < (__vPosition + __rowCount))) { rows[_local2 - __vPosition].drawRow(rows[_local2 - __vPosition].item, "normal", transition && ((_local3 % 3) == 0)); } _local3++; } delete selected; } static var mixins = new mx.controls.listclasses.DataSelector(); static var mixinProps = ["setDataProvider", "getDataProvider", "addItem", "addItemAt", "removeAll", "removeItemAt", "replaceItemAt", "sortItemsBy", "sortItems", "getLength", "getItemAt", "modelChanged", "calcPreferredWidthFromData", "calcPreferredHeightFromData", "getValue", "getSelectedIndex", "getSelectedItem", "getSelectedIndices", "getSelectedItems", "selectItem", "isSelected", "clearSelected", "setSelectedIndex", "setSelectedIndices"]; }
Symbol 705 MovieClip [__Packages.mx.controls.listclasses.DataProvider] Frame 0
class mx.controls.listclasses.DataProvider extends Object { var length, splice, dispatchEvent, sortOn, reverse, sort; function DataProvider (obj) { super(); } static function Initialize(obj) { var _local4 = mixinProps; var _local6 = _local4.length; obj = obj.prototype; var _local3 = 0; while (_local3 < _local6) { obj[_local4[_local3]] = mixins[_local4[_local3]]; _global.ASSetPropFlags(obj, _local4[_local3], 1); _local3++; } mx.events.EventDispatcher.initialize(obj); _global.ASSetPropFlags(obj, "addEventListener", 1); _global.ASSetPropFlags(obj, "removeEventListener", 1); _global.ASSetPropFlags(obj, "dispatchEvent", 1); _global.ASSetPropFlags(obj, "dispatchQueue", 1); Object.prototype.LargestID = 0; Object.prototype.getID = function () { if (this.__ID__ == undefined) { this.__ID__ = Object.prototype.LargestID++; _global.ASSetPropFlags(this, "__ID__", 1); } return(this.__ID__); }; _global.ASSetPropFlags(Object.prototype, "LargestID", 1); _global.ASSetPropFlags(Object.prototype, "getID", 1); return(true); } function addItemAt(index, value) { if (index < length) { splice(index, 0, value); } else if (index > length) { trace("Cannot add an item past the end of the DataProvider"); return(undefined); } this[index] = value; updateViews("addItems", index, index); } function addItem(value) { addItemAt(length, value); } function addItemsAt(index, newItems) { index = Math.min(length, index); newItems.unshift(index, 0); splice.apply(this, newItems); newItems.splice(0, 2); updateViews("addItems", index, (index + newItems.length) - 1); } function removeItemsAt(index, len) { var _local3 = new Array(); var _local2 = 0; while (_local2 < len) { _local3.push(getItemID(index + _local2)); _local2++; } var _local6 = splice(index, len); dispatchEvent({type:"modelChanged", eventName:"removeItems", firstItem:index, lastItem:(index + len) - 1, removedItems:_local6, removedIDs:_local3}); } function removeItemAt(index) { var _local2 = this[index]; removeItemsAt(index, 1); return(_local2); } function removeAll(Void) { splice(0); updateViews("removeItems", 0, length - 1); } function replaceItemAt(index, itemObj) { if ((index < 0) || (index >= length)) { return(undefined); } var _local3 = getItemID(index); this[index] = itemObj; this[index].__ID__ = _local3; updateViews("updateItems", index, index); } function getItemAt(index) { return(this[index]); } function getItemID(index) { var _local2 = this[index]; if ((typeof(_local2) != "object") && (_local2 != undefined)) { return(index); } return(_local2.getID()); } function sortItemsBy(fieldName, order) { if (typeof(order) == "string") { sortOn(fieldName); if (order.toUpperCase() == "DESC") { reverse(); } } else { sortOn(fieldName, order); } updateViews("sort"); } function sortItems(compareFunc, optionFlags) { sort(compareFunc, optionFlags); updateViews("sort"); } function editField(index, fieldName, newData) { this[index][fieldName] = newData; dispatchEvent({type:"modelChanged", eventName:"updateField", firstItem:index, lastItem:index, fieldName:fieldName}); } function getEditingData(index, fieldName) { return(this[index][fieldName]); } function updateViews(event, first, last) { dispatchEvent({type:"modelChanged", eventName:event, firstItem:first, lastItem:last}); } static var mixinProps = ["addView", "addItem", "addItemAt", "removeAll", "removeItemAt", "replaceItemAt", "getItemAt", "getItemID", "sortItemsBy", "sortItems", "updateViews", "addItemsAt", "removeItemsAt", "getEditingData", "editField"]; static var evtDipatcher = mx.events.EventDispatcher; static var mixins = new mx.controls.listclasses.DataProvider(); }
Symbol 706 MovieClip [__Packages.mx.controls.listclasses.ScrollSelectList] Frame 0
class mx.controls.listclasses.ScrollSelectList extends mx.core.ScrollView { var invLayoutContent, rows, topRowZ, listContent, __dataProvider, __vPosition, tW, layoutX, layoutY, tH, invRowHeight, invalidate, __height, invUpdateControl, __cellRenderer, __labelFunction, __iconField, __iconFunction, getLength, baseRowZ, lastPosition, propertyTable, isSelected, changeFlag, clearSelected, selectItem, lastSelected, wasKeySelected, dispatchEvent, dragScrolling, _ymouse, scrollInterval, isPressed, onMouseUp, getSelectedIndex, enabled, tabEnabled, tabChildren, createEmptyMovieClip, border_mc; function ScrollSelectList () { super(); } function layoutContent(x, y, w, h) { delete invLayoutContent; var _local4 = Math.ceil(h / __rowHeight); roundUp = (h % __rowHeight) != 0; var _local12 = _local4 - __rowCount; if (_local12 < 0) { var _local3 = _local4; while (_local3 < __rowCount) { rows[_local3].removeMovieClip(); delete rows[_local3]; _local3++; } topRowZ = topRowZ + _local12; } else if (_local12 > 0) { if (rows == undefined) { rows = new Array(); } var _local3 = __rowCount; while (_local3 < _local4) { var _local2 = (rows[_local3] = listContent.createObject(__rowRenderer, "listRow" + (topRowZ++), topRowZ, {owner:this, styleName:this, rowIndex:_local3})); _local2._x = x; _local2._y = Math.round((_local3 * __rowHeight) + y); _local2.setSize(w, __rowHeight); _local2.drawRow(__dataProvider.getItemAt(__vPosition + _local3), getStateAt(__vPosition + _local3)); _local2.lastY = _local2._y; _local3++; } } if (w != tW) { var _local11 = ((_local12 > 0) ? (__rowCount) : (_local4)); var _local3 = 0; while (_local3 < _local11) { rows[_local3].setSize(w, __rowHeight); _local3++; } } if ((layoutX != x) || (layoutY != y)) { var _local3 = 0; while (_local3 < _local4) { rows[_local3]._x = x; rows[_local3]._y = Math.round((_local3 * __rowHeight) + y); _local3++; } } __rowCount = _local4; layoutX = x; layoutY = y; tW = w; tH = h; } function getRowHeight(Void) { return(__rowHeight); } function setRowHeight(v) { __rowHeight = v; invRowHeight = true; invalidate(); } function get rowHeight() { return(getRowHeight()); } function set rowHeight(w) { setRowHeight(w); //return(rowHeight); } function setRowCount(v) { __rowCount = v; } function getRowCount(Void) { var _local2 = ((__rowCount == 0) ? (Math.ceil(__height / __rowHeight)) : (__rowCount)); return(_local2); } function get rowCount() { return(getRowCount()); } function set rowCount(w) { setRowCount(w); //return(rowCount); } function setEnabled(v) { super.setEnabled(v); invUpdateControl = true; invalidate(); } function setCellRenderer(cR) { __cellRenderer = cR; var _local2 = 0; while (_local2 < rows.length) { rows[_local2].setCellRenderer(true); _local2++; } invUpdateControl = true; invalidate(); } function set cellRenderer(cR) { setCellRenderer(cR); //return(cellRenderer); } function get cellRenderer() { return(__cellRenderer); } function set labelField(field) { setLabelField(field); //return(labelField); } function setLabelField(field) { __labelField = field; invUpdateControl = true; invalidate(); } function get labelField() { return(__labelField); } function set labelFunction(func) { setLabelFunction(func); //return(labelFunction); } function setLabelFunction(func) { __labelFunction = func; invUpdateControl = true; invalidate(); } function get labelFunction() { return(__labelFunction); } function set iconField(field) { setIconField(field); //return(iconField); } function setIconField(field) { __iconField = field; invUpdateControl = true; invalidate(); } function get iconField() { return(__iconField); } function set iconFunction(func) { setIconFunction(func); //return(iconFunction); } function setIconFunction(func) { __iconFunction = func; invUpdateControl = true; invalidate(); } function get iconFunction() { return(__iconFunction); } function setVPosition(pos) { if (pos < 0) { return(undefined); } if ((pos > 0) && (pos > ((getLength() - __rowCount) + roundUp))) { return(undefined); } var _local8 = pos - __vPosition; if (_local8 == 0) { return(undefined); } __vPosition = pos; var _local10 = _local8 > 0; _local8 = Math.abs(_local8); if (_local8 >= __rowCount) { updateControl(); } else { var _local4 = new Array(); var _local9 = __rowCount - _local8; var _local12 = _local8 * __rowHeight; var _local11 = _local9 * __rowHeight; var _local6 = (_local10 ? 1 : -1); var _local3 = 0; while (_local3 < __rowCount) { if (((_local3 < _local8) && (_local10)) || ((_local3 >= _local9) && (!_local10))) { rows[_local3]._y = rows[_local3]._y + Math.round(_local6 * _local11); var _local5 = _local3 + (_local6 * _local9); var _local7 = __vPosition + _local5; _local4[_local5] = rows[_local3]; _local4[_local5].rowIndex = _local5; _local4[_local5].drawRow(__dataProvider.getItemAt(_local7), getStateAt(_local7), false); } else { rows[_local3]._y = rows[_local3]._y - Math.round(_local6 * _local12); var _local5 = _local3 - (_local6 * _local8); _local4[_local5] = rows[_local3]; _local4[_local5].rowIndex = _local5; } _local3++; } rows = _local4; _local3 = 0; while (_local3 < __rowCount) { rows[_local3].swapDepths(baseRowZ + _local3); _local3++; } } lastPosition = pos; super.setVPosition(pos); } function setPropertiesAt(index, obj) { var _local2 = __dataProvider.getItemID(index); if (_local2 == undefined) { return(undefined); } if (propertyTable == undefined) { propertyTable = new Object(); } propertyTable[_local2] = obj; rows[index - __vPosition].drawRow(__dataProvider.getItemAt(index), getStateAt(index)); } function getPropertiesAt(index) { var _local2 = __dataProvider.getItemID(index); if (_local2 == undefined) { return(undefined); } return(propertyTable[_local2]); } function getStyle(styleProp) { var _local2 = super.getStyle(styleProp); var _local3 = mx.styles.StyleManager.colorNames[_local2]; if (_local3 != undefined) { _local2 = _local3; } return(_local2); } function updateControl(Void) { var _local2 = 0; while (_local2 < __rowCount) { rows[_local2].drawRow(__dataProvider.getItemAt(_local2 + __vPosition), getStateAt(_local2 + __vPosition)); _local2++; } delete invUpdateControl; } function getStateAt(index) { return((isSelected(index) ? "selected" : "normal")); } function selectRow(rowIndex, transition) { if (!selectable) { return(undefined); } var _local3 = __vPosition + rowIndex; var _local8 = __dataProvider.getItemAt(_local3); var _local5 = rows[rowIndex]; if (_local8 == undefined) { return(undefined); } if (transition == undefined) { transition = true; } changeFlag = true; if (((!multipleSelection) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { clearSelected(transition); selectItem(_local3, true); lastSelected = _local3; _local5.drawRow(_local5.item, getStateAt(_local3), transition); } else if (Key.isDown(16) && (multipleSelection)) { if (lastSelected == undefined) { lastSelected = _local3; } var _local4 = ((lastSelected < _local3) ? 1 : -1); clearSelected(false); var _local2 = lastSelected; while (_local2 != _local3) { selectItem(_local2, true); if ((_local2 >= __vPosition) && (_local2 < (__vPosition + __rowCount))) { rows[_local2 - __vPosition].drawRow(rows[_local2 - __vPosition].item, "selected", false); } _local2 = _local2 + _local4; } selectItem(_local3, true); _local5.drawRow(_local5.item, "selected", transition); } else if (Key.isDown(17)) { var _local7 = isSelected(_local3); if ((!multipleSelection) || (wasKeySelected)) { clearSelected(transition); } if (!((!multipleSelection) && (_local7))) { selectItem(_local3, !_local7); var _local9 = ((!_local7) ? "selected" : "normal"); _local5.drawRow(_local5.item, _local9, transition); } lastSelected = _local3; } if (wasKeySelected) { dispatchEvent({type:"change"}); } delete wasKeySelected; } function dragScroll(Void) { clearInterval(dragScrolling); if (_ymouse < 0) { setVPosition(__vPosition - 1); selectRow(0, false); var _local2 = Math.min((-_ymouse) - 30, 0); scrollInterval = (((0.593 * _local2) * _local2) + 1) + minScrollInterval; dragScrolling = setInterval(this, "dragScroll", scrollInterval); dispatchEvent({type:"scroll", direction:"vertical", position:__vPosition}); } else if (_ymouse > __height) { var _local3 = __vPosition; setVPosition(__vPosition + 1); if (_local3 != __vPosition) { selectRow((__rowCount - 1) - roundUp, false); } var _local2 = Math.min((_ymouse - __height) - 30, 0); scrollInterval = (((0.593 * _local2) * _local2) + 1) + minScrollInterval; dragScrolling = setInterval(this, "dragScroll", scrollInterval); dispatchEvent({type:"scroll", direction:"vertical", position:__vPosition}); } else { dragScrolling = setInterval(this, "dragScroll", 15); } updateAfterEvent(); } function __onMouseUp(Void) { clearInterval(dragScrolling); delete dragScrolling; delete dragScrolling; delete isPressed; delete onMouseUp; if (!selectable) { return(undefined); } if (changeFlag) { dispatchEvent({type:"change"}); } delete changeFlag; } function moveSelBy(incr) { if (!selectable) { setVPosition(__vPosition + incr); return(undefined); } var _local3 = getSelectedIndex(); if (_local3 == undefined) { _local3 = -1; } var _local2 = _local3 + incr; _local2 = Math.max(0, _local2); _local2 = Math.min(getLength() - 1, _local2); if (_local2 == _local3) { return(undefined); } if ((_local3 < __vPosition) || (_local3 >= (__vPosition + __rowCount))) { setVPosition(_local3); } if ((_local2 >= ((__vPosition + __rowCount) - roundUp)) || (_local2 < __vPosition)) { setVPosition(__vPosition + incr); } wasKeySelected = true; selectRow(_local2 - __vPosition, false); } function keyDown(e) { if (selectable) { if (findInputText()) { return(undefined); } } if (e.code == 40) { moveSelBy(1); } else if (e.code == 38) { moveSelBy(-1); } else if (e.code == 34) { if (selectable) { var _local3 = getSelectedIndex(); if (_local3 == undefined) { _local3 = 0; } setVPosition(_local3); } moveSelBy((__rowCount - 1) - roundUp); } else if (e.code == 33) { if (selectable) { var _local3 = getSelectedIndex(); if (_local3 == undefined) { _local3 = 0; } setVPosition(_local3); } moveSelBy((1 - __rowCount) + roundUp); } else if (e.code == 36) { moveSelBy(-__dataProvider.length); } else if (e.code == 35) { moveSelBy(__dataProvider.length); } } function findInputText(Void) { var _local2 = Key.getAscii(); if ((_local2 >= 33) && (_local2 <= 126)) { findString(String.fromCharCode(_local2)); return(true); } } function findString(str) { if (__dataProvider.length == 0) { return(undefined); } var _local4 = getSelectedIndex(); if (_local4 == undefined) { _local4 = 0; } var _local6 = 0; var _local3 = _local4 + 1; while (_local3 != _local4) { var _local2 = __dataProvider.getItemAt(_local3); if (_local2 instanceof XMLNode) { _local2 = _local2.attributes[__labelField]; } else if (typeof(_local2) != "string") { _local2 = String(_local2[__labelField]); } _local2 = _local2.substring(0, str.length); if ((str == _local2) || (str.toUpperCase() == _local2.toUpperCase())) { _local6 = _local3 - _local4; break; } if (_local3 >= (getLength() - 1)) { _local3 = -1; } _local3++; } if (_local6 != 0) { moveSelBy(_local6); } } function onRowPress(rowIndex) { if (!enabled) { return(undefined); } isPressed = true; dragScrolling = setInterval(this, "dragScroll", 15); onMouseUp = __onMouseUp; if (!selectable) { return(undefined); } selectRow(rowIndex); } function onRowRelease(rowIndex) { } function onRowRollOver(rowIndex) { if (!enabled) { return(undefined); } var _local2 = rows[rowIndex].item; if (getStyle("useRollOver") && (_local2 != undefined)) { rows[rowIndex].drawRow(_local2, "highlighted", false); } dispatchEvent({type:"itemRollOver", index:rowIndex + __vPosition}); } function onRowRollOut(rowIndex) { if (!enabled) { return(undefined); } if (getStyle("useRollOver")) { rows[rowIndex].drawRow(rows[rowIndex].item, getStateAt(rowIndex + __vPosition), false); } dispatchEvent({type:"itemRollOut", index:rowIndex + __vPosition}); } function onRowDragOver(rowIndex) { if (((!enabled) || (isPressed != true)) || (!selectable)) { return(undefined); } if (dropEnabled) { } else if (dragScrolling) { selectRow(rowIndex, false); } else { onMouseUp = __onMouseUp; onRowPress(rowIndex); } } function onRowDragOut(rowIndex) { if (!enabled) { return(undefined); } if (dragEnabled) { } else { onRowRollOut(rowIndex); } } function init(Void) { super.init(); tabEnabled = true; tabChildren = false; if (__dataProvider == undefined) { __dataProvider = new Array(); __dataProvider.addEventListener("modelChanged", this); } baseRowZ = (topRowZ = 10); } function createChildren(Void) { super.createChildren(); listContent = createEmptyMovieClip("content_mc", CONTENTDEPTH); invLayoutContent = true; invalidate(); } function draw(Void) { if (invRowHeight) { delete invRowHeight; __rowCount = 0; listContent.removeMovieClip(); listContent = createEmptyMovieClip("content_mc", CONTENTDEPTH); } if (invUpdateControl) { updateControl(); } border_mc.draw(); } function invalidateStyle(propName) { if (isRowStyle[propName]) { invUpdateControl = true; invalidate(); } else { var _local3 = 0; while (_local3 < __rowCount) { rows[_local3].invalidateStyle(propName); _local3++; } } super.invalidateStyle(propName); } static var mixIt1 = mx.controls.listclasses.DataSelector.Initialize(mx.controls.listclasses.ScrollSelectList); static var mixIt2 = mx.controls.listclasses.DataProvider.Initialize(Array); var CONTENTDEPTH = 100; var __hPosition = 0; var __rowRenderer = "SelectableRow"; var __rowHeight = 22; var __rowCount = 0; var __labelField = "label"; var minScrollInterval = 30; var dropEnabled = false; var dragEnabled = false; var className = "ScrollSelectList"; var isRowStyle = {styleName:true, backgroundColor:true, selectionColor:true, rollOverColor:true, selectionDisabledColor:true, backgroundDisabledColor:true, textColor:true, textSelectedColor:true, textRollOverColor:true, textDisabledColor:true, alternatingRowColors:true, defaultIcon:true}; var roundUp = 0; var selectable = true; var multipleSelection = false; }
Symbol 707 MovieClip [__Packages.mx.controls.List] Frame 0
class mx.controls.List extends mx.controls.listclasses.ScrollSelectList { var border_mc, __labels, setDataProvider, roundUp, __get__rowCount, __dataProvider, __maxHPosition, invScrollProps, invalidate, __vPosition, getViewMetrics, setSize, __width, __rowHeight, totalWidth, totalHeight, displayWidth, __hScrollPolicy, vScroller, __hPosition, listContent, data, mask_mc, __height, __rowCount, invRowHeight, invLayoutContent, setScrollProperties, oldVWidth; function List () { super(); } function setEnabled(v) { super.setEnabled(v); border_mc.backgroundColorName = (v ? "backgroundColor" : "backgroundDisabledColor"); border_mc.invalidate(); } function get labels() { return(__labels); } function set labels(lbls) { __labels = lbls; setDataProvider(lbls); //return(labels); } function setVPosition(pos) { pos = Math.min((__dataProvider.length - __get__rowCount()) + roundUp, pos); pos = Math.max(0, pos); super.setVPosition(pos); } function setHPosition(pos) { pos = Math.max(Math.min(__maxHPosition, pos), 0); super.setHPosition(pos); hScroll(pos); } function setMaxHPosition(pos) { __maxHPosition = pos; invScrollProps = true; invalidate(); } function setHScrollPolicy(policy) { if ((policy.toLowerCase() == "auto") && (!autoHScrollAble)) { return(undefined); } super.setHScrollPolicy(policy); if (policy == "off") { setHPosition(0); setVPosition(Math.min((__dataProvider.length - __get__rowCount()) + roundUp, __vPosition)); } } function setRowCount(rC) { if (isNaN(rC)) { return(undefined); } var _local2 = getViewMetrics(); setSize(__width, ((__rowHeight * rC) + _local2.top) + _local2.bottom); } function layoutContent(x, y, tW, tH, dW, dH) { totalWidth = tW; totalHeight = tH; displayWidth = dW; var _local4 = (((__hScrollPolicy == "on") || (__hScrollPolicy == "auto")) ? (Math.max(tW, dW)) : (dW)); super.layoutContent(x, y, _local4, dH); } function modelChanged(eventObj) { super.modelChanged(eventObj); var _local3 = eventObj.eventName; if ((((_local3 == "addItems") || (_local3 == "removeItems")) || (_local3 == "updateAll")) || (_local3 == "filterModel")) { invScrollProps = true; invalidate("invScrollProps"); } } function onScroll(eventObj) { var _local3 = eventObj.target; if (_local3 == vScroller) { setVPosition(_local3.scrollPosition); } else { hScroll(_local3.scrollPosition); } super.onScroll(eventObj); } function hScroll(pos) { __hPosition = pos; listContent._x = -pos; } function init(Void) { super.init(); if (labels.length > 0) { var _local6 = new Array(); var _local3 = 0; while (_local3 < labels.length) { _local6.addItem({label:labels[_local3], data:data[_local3]}); _local3++; } setDataProvider(_local6); } __maxHPosition = 0; } function createChildren(Void) { super.createChildren(); listContent.setMask(mask_mc); border_mc.move(0, 0); border_mc.setSize(__width, __height); } function getRowCount(Void) { var _local2 = getViewMetrics(); return(((__rowCount == 0) ? (Math.ceil(((__height - _local2.top) - _local2.bottom) / __rowHeight)) : (__rowCount))); } function size(Void) { super.size(); configureScrolling(); var _local3 = getViewMetrics(); layoutContent(_local3.left, _local3.top, __width + __maxHPosition, totalHeight, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom); } function draw(Void) { if (invRowHeight) { invScrollProps = true; super.draw(); listContent.setMask(mask_mc); invLayoutContent = true; } if (invScrollProps) { configureScrolling(); delete invScrollProps; } if (invLayoutContent) { var _local3 = getViewMetrics(); layoutContent(_local3.left, _local3.top, __width + __maxHPosition, totalHeight, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom); } super.draw(); } function configureScrolling(Void) { var _local2 = __dataProvider.length; if (__vPosition > Math.max(0, (_local2 - getRowCount()) + roundUp)) { setVPosition(Math.max(0, Math.min((_local2 - getRowCount()) + roundUp, __vPosition))); } var _local3 = getViewMetrics(); var _local4 = ((__hScrollPolicy != "off") ? (((__maxHPosition + __width) - _local3.left) - _local3.right) : ((__width - _local3.left) - _local3.right)); if (_local2 == undefined) { _local2 = 0; } setScrollProperties(_local4, 1, _local2, __rowHeight); if (oldVWidth != _local4) { invLayoutContent = true; } oldVWidth = _local4; } static var symbolOwner = mx.controls.List; static var symbolName = "List"; static var version = "2.0.0.377"; var clipParameters = {rowHeight:1, enabled:1, visible:1, labels:1}; var scrollDepth = 1; var __vScrollPolicy = "on"; var autoHScrollAble = false; }
Symbol 708 MovieClip [__Packages.mx.controls.DataGrid] Frame 0
class mx.controls.DataGrid extends mx.controls.List { var invInitHeaders, columns, __rowCount, invDrawCols, invalidate, getViewMetrics, setSize, __width, __rowHeight, invCheckCols, enabled, cellEditor, __dataProvider, __vPosition, rows, getStateAt, __hScrollPolicy, __maxHPosition, roundUp, getRowCount, setScrollProperties, oldVWidth, invLayoutContent, border_mc, __height, setMaxHPosition, setHPosition, getMaxHPosition, getHPosition, oldWidth, displayWidth, numberOfCols, invRowHeight, invUpdateControl, invSpaceColsEqually, invColChange, updateControl, totalWidth, lines_mc, listContent, __get__height, getStyle, headerCells, header_mc, dispatchEvent, __viewMetrics, sortArrow, sortIndex, layoutX, sortDirection, owner, column, _alpha, cell, asc, col, oldX, onRollOut, __focusedCell, __hPosition, editorMask, editTween, getFocusManager, __tabHandlerCache, vScroller, hScroller, dontEdit, listOwner, activeGrid, getLength, releaseFocus; function DataGrid () { super(); } function init() { super.init(); invInitHeaders = true; columns = new Array(); } function layoutContent(x, y, tW, tH, dW, dH) { var _local3 = __rowCount; if (__showHeaders) { y = y + __headerHeight; dH = dH - __headerHeight; } super.layoutContent(x, y, tW, tH, dW, dH); if (tW != totColW) { drawHeaderBG(); } if (__rowCount > _local3) { invDrawCols = true; invalidate(); } } function setRowCount(rC) { if (isNaN(rC)) { return(undefined); } var _local2 = getViewMetrics(); setSize(__width, (((__rowHeight * rC) + _local2.top) + _local2.bottom) + (__headerHeight * __showHeaders)); } function setRowHeight(rH) { __rowHeight = rH; if (hasDrawn) { super.setRowHeight(rH); } } function setHScrollPolicy(policy) { super.setHScrollPolicy(policy); invCheckCols = true; invalidate(); } function setEnabled(v) { if (v == enabled) { return(undefined); } super.setEnabled(v); if (__showHeaders) { enableHeader(v); } if ((cellEditor._visible = true)) { disposeEditor(); } invDrawCols = true; invalidate(); } function modelChanged(eventObj) { if (eventObj.eventName == "updateField") { var _local3 = eventObj.firstItem; var _local5 = __dataProvider.getItemAt(_local3); rows[_local3 - __vPosition].drawRow(_local5, getStateAt(_local3)); return(undefined); } if (eventObj.eventName == "schemaLoaded") { removeAllColumns(); } if (columns.length == 0) { generateCols(); } super.modelChanged(eventObj); } function configureScrolling(Void) { var _local3 = getViewMetrics(); var _local4 = ((__hScrollPolicy != "off") ? (((__maxHPosition + __width) - _local3.left) - _local3.right) : ((__width - _local3.left) - _local3.right)); var _local2 = __dataProvider.length; if (_local2 == undefined) { _local2 = 0; } if (__vPosition > Math.max(0, (_local2 - getRowCount()) + roundUp)) { setVPosition(Math.max(0, Math.min((_local2 - getRowCount()) + roundUp, __vPosition))); } setScrollProperties(_local4, 1, _local2, __rowHeight, __headerHeight * __showHeaders); if (oldVWidth != _local4) { invLayoutContent = true; } oldVWidth = _local4; } function setVPosition(pos) { if (cellEditor != undefined) { disposeEditor(); } super.setVPosition(pos); } function size(Void) { if (hasDrawn != true) { border_mc.setSize(__width, __height); return(undefined); } if (cellEditor != undefined) { disposeEditor(); } if (__hScrollPolicy != "off") { var _local5 = 0; var _local6 = columns.length; var _local3 = 0; while (_local3 < _local6) { _local5 = _local5 + columns[_local3].__width; _local3++; } var _local8 = getViewMetrics(); var _local9 = (__width - _local8.left) - _local8.right; setMaxHPosition(Math.max(_local5 - _local9, 0)); var _local7 = _local9 - _local5; if (_local7 > 0) { columns[_local6 - 1].__width = columns[_local6 - 1].__width + _local7; } setHPosition(Math.min(getMaxHPosition(), getHPosition())); } super.size(); if (__hScrollPolicy == "off") { var _local10 = new Array(); var _local6 = columns.length; if (oldWidth == undefined) { oldWidth = displayWidth; } var _local4 = 0; var _local3 = 0; while (_local3 < _local6) { _local4 = _local4 + ((columns[_local3].__width = (displayWidth * columns[_local3].__width) / oldWidth)); _local3++; } if (_local4 != displayWidth) { columns[columns.length - 1].__width = columns[columns.length - 1].__width + (displayWidth - _local4); } totColW = (numberOfCols = displayWidth); } oldWidth = displayWidth; drawColumns(); drawHeaderBG(); invalidate(); } function draw() { if (invRowHeight) { super.draw(); invInitHeaders = true; invDrawCols = true; delete cellEditor; } if (invInitHeaders) { initHeaders(); invLayoutContent = true; } if (hasDrawn != true) { delete invUpdateControl; } super.draw(); if (invSpaceColsEqually) { delete invSpaceColsEqually; spaceColumnsEqually(); } if (invColChange) { delete invColChange; if (hasDrawn) { initHeaders(); initRows(); invDrawCols = true; updateControl(); invCheckCols = true; } } if (invCheckCols) { if (totColW != displayWidth) { resizeColumn(columns.length - 1, columns[columns.length - 1].__width); } delete invCheckCols; } if (invDrawCols) { drawColumns(); } hasDrawn = true; } function editField(index, colName, data) { __dataProvider.editField(index, colName, data); } function get columnNames() { return(getColumnNames()); } function set columnNames(w) { setColumnNames(w); //return(columnNames); } function setColumnNames(tmpArray) { var _local2 = 0; while (_local2 < tmpArray.length) { addColumn(tmpArray[_local2]); _local2++; } } function getColumnNames(Void) { var _local3 = new Array(); var _local2 = 0; while (_local2 < columns.length) { _local3[_local2] = columns[_local2].columnName; _local2++; } return(_local3); } function addColumnAt(index, newCol) { if (index < columns.length) { columns.splice(index, 0, "tmp"); } var _local4 = newCol; if (!(_local4 instanceof mx.controls.gridclasses.DataGridColumn)) { _local4 = new mx.controls.gridclasses.DataGridColumn(_local4); } columns[index] = _local4; _local4.colNum = index; var _local2 = index + 1; while (_local2 < columns.length) { columns[_local2].colNum++; _local2++; } _local4.parentGrid = this; totColW = totColW + _local4.width; invColChange = true; invalidate(); return(newCol); } function addColumn(newCol) { return(addColumnAt(columns.length, newCol)); } function removeColumnAt(index) { var _local4 = columns[index]; columns.splice(index, 1); totColW = totColW - _local4.width; var _local2 = index; while (_local2 < columns.length) { columns[_local2].colNum--; _local2++; } invColChange = true; invalidate(); return(_local4); } function removeAllColumns(Void) { totColW = 0; columns = new Array(); invColChange = true; invalidate(); } function getColumnAt(index) { return(columns[index]); } function getColumnIndex(name) { var _local2 = 0; while (_local2 < columns.length) { if (columns[_local2].columnName == name) { return(_local2); } _local2++; } } function get columnCount() { return(columns.length); } function spaceColumnsEqually(Void) { if (displayWidth == undefined) { var _local4 = getViewMetrics(); displayWidth = (__width - _local4.left) - _local4.right; } var _local3 = Math.ceil(totalWidth / columns.length); var _local2 = 0; while (_local2 < columns.length) { columns[_local2].__width = _local3; _local2++; } totColW = totalWidth; invDrawCols = true; invalidate(); } function generateCols(Void) { if (columns.length == 0) { var _local3 = __dataProvider.getColumnNames(); if (_local3 == undefined) { var _local4 = __dataProvider.getItemAt(0); for (var _local2 in _local4) { if (_local2 != "__ID__") { addColumn(_local2); } } } else { var _local2 = 0; while (_local2 < _local3.length) { addColumn(_local3[_local2]); _local2++; } } invSpaceColsEqually = true; invColChange = true; invCheckCols = true; invalidate(); } } function resizeColumn(col, w) { if ((__hScrollPolicy == "on") || (__hScrollPolicy == "auto")) { columns[col].__width = w; var _local11 = 0; var _local5 = columns.length; var _local2 = 0; while (_local2 < _local5) { _local11 = _local11 + columns[_local2].__width; _local2++; } setMaxHPosition(Math.max(_local11 - displayWidth, 0)); var _local12 = displayWidth - _local11; if (_local12 > 0) { columns[_local5 - 1].__width = columns[_local5 - 1].__width + _local12; } setHPosition(Math.min(getMaxHPosition(), getHPosition())); invDrawCols = true; invalidate(); return(undefined); } var _local10 = 0; var _local2 = 0; while (_local2 < col) { _local10 = _local10 + columns[_local2].__width; _local2++; } var _local8 = ((displayWidth + 2) - _local10) - columns[col].__width; var _local6 = ((displayWidth + 2) - _local10) - w; columns[col].__width = w; var _local5 = columns.length; _local2 = col + 1; while (_local2 < _local5) { if (!columns[_local2].resizable) { _local6 = _local6 - columns[_local2].__width; _local8 = _local8 - columns[_local2].__width; } _local2++; } var _local9 = 0; _local2 = col + 1; while (_local2 < _local5) { if (columns[_local2].resizable) { columns[_local2].__width = (columns[_local2].width * _local6) / _local8; _local9 = _local9 + columns[_local2].__width; } _local2++; } var _local3 = 0; var _local7 = false; _local2 = _local5 - 1; while (_local2 >= 0) { if (columns[_local2].resizable) { if (!_local7) { columns[_local2].__width = columns[_local2].__width + (_local6 - _local9); _local7 = true; } if (_local3 > 0) { columns[_local2].__width = columns[_local2].__width - _local3; _local3 = 0; } if (columns[_local2].__width < minColWidth) { _local3 = _local3 + (minColWidth - columns[_local2].__width); columns[_local2].__width = minColWidth; } } _local2--; } invDrawCols = true; invalidate(); } function drawColumns(Void) { delete invDrawCols; var _local4 = (lines_mc = listContent.createEmptyMovieClip("lines_mc", LINEDEPTH)); var _local9 = 0.75; var _local5 = 1; var _local15 = __get__height() - 1; var _local12 = getStyle("vGridLineColor"); var _local14 = columns.length; placeSortArrow(); var _local7 = 0; while (_local7 < _local14) { var _local6 = columns[_local7]; var _local13 = (enabled ? "backgroundColor" : "backgroundDisabledColor"); var _local11 = _local6.getStyle(_local13); _local9 = _local9 + _local6.__width; _local4.moveTo(_local5, 1); _local4.lineStyle(0, _local12, 0); var _local10 = Math.floor(_local9); _local4.lineTo(_local10, 1); if ((_local7 < (columns.length - 1)) && (getStyle("vGridLines"))) { _local4.lineStyle(0, _local12, 100); } _local4.lineTo(_local10, __get__height()); _local4.lineStyle(0, _local12, 0); _local4.lineTo(_local5, __get__height()); _local4.lineTo(_local5, 1); if (__showHeaders) { var _local3 = headerCells[_local7]; _local3._x = _local5 + 2; _local3.hO._x = _local5; _local3.setSize(_local6.__width - 5, Math.min(__headerHeight, _local3.getPreferredHeight())); _local3.hO._width = _local6.__width - 2; _local3.hO._height = __headerHeight; _local3._y = (__headerHeight - _local3._height) / 2; header_mc["sep" + _local7]._x = _local9 - 2; listContent.disableHeader._width = totalWidth; } var _local2 = 0; while (_local2 < __rowCount) { if (_local7 == 0) { rows[_local2].colBG.clear(); } var _local8 = _local6.__width; rows[_local2].drawCell(_local7, _local5, _local8, _local11); _local2++; } _local5 = _local9; _local7++; } if (getStyle("hGridLines")) { lines_mc.lineStyle(0, getStyle("hGridLineColor")); _local7 = 1; while (_local7 < __rowCount) { lines_mc.moveTo(4, rows[_local7]._y); lines_mc.lineTo(totalWidth, rows[_local7]._y); _local7++; } } } function initRows(Void) { var _local2 = 0; while (_local2 < __rowCount) { rows[_local2].createCells(); _local2++; } } function onRowPress(rowIndex) { super.onRowPress(rowIndex); if (!enabled) { return(undefined); } var _local11 = columns.length; var _local6 = rows[rowIndex]; var _local3 = 0; while (_local3 < _local11) { var _local5 = columns[_local3]; var _local4 = _local6._xmouse - _local6.cells[_local3]._x; if ((_local4 >= 0) && (_local4 < _local5.__width)) { dispatchEvent({type:"cellPress", columnIndex:_local3, view:this, itemIndex:rowIndex + __vPosition}); return(undefined); } _local3++; } } function get showHeaders() { return(getShowHeaders()); } function set showHeaders(w) { setShowHeaders(w); //return(showHeaders); } function setShowHeaders(b) { __showHeaders = b; invInitHeaders = true; invDrawCols = true; invalidate(); } function getShowHeaders() { return(__showHeaders); } function get headerHeight() { return(getHeaderHeight()); } function set headerHeight(w) { setHeaderHeight(w); //return(headerHeight); } function setHeaderHeight(h) { __headerHeight = h; invInitHeaders = true; invDrawCols = true; invalidate(); } function getHeaderHeight(Void) { return(__headerHeight); } function initHeaders(Void) { delete invInitHeaders; if (__showHeaders) { header_mc = listContent.createClassObject(mx.core.UIObject, "header_mc", HEADERDEPTH, {styleName:this}); headerCells = new Array(); var _local2 = 0; while (_local2 < columns.length) { var _local6 = columns[_local2]; var _local4; var _local7 = _local6.__headerRenderer; if (_local7 == undefined) { _local4 = (headerCells[_local2] = header_mc.createLabel("fHeaderCell" + _local2, HEADERCELLDEPTH + _local2)); _local4.selectable = false; _local4.setStyle("styleName", _local6); } else if (typeof(_local7) == "string") { _local4 = (headerCells[_local2] = header_mc.createObject(_local7, "fHeaderCell" + _local2, HEADERCELLDEPTH + _local2, {styleName:_local6})); } else { _local4 = (headerCells[_local2] = header_mc.createClassObject(_local7, "fHeaderCell" + _local2, HEADERCELLDEPTH + _local2, {styleName:_local6})); } _local4.setValue(_local6.__get__headerText()); _local6.headerCell = _local4; var _local3 = header_mc.attachMovie("DataHeaderOverlay", "hO" + _local2, HEADEROVERLAYDEPTH + _local2); _local4.hO = _local3; _local3.cell = _local4; _local4.column = (_local3.column = _local6); _local4.asc = (_local3.asc = false); _local4.owner = (_local3.owner = this); _local3._alpha = 0; if (_local3.column.sortable && (_local3.onPress == undefined)) { _local3.useHandCursor = false; _local3.onRollOver = headerRollOver; _local3.onRollOut = headerRollOut; _local3.onPress = headerPress; _local3.onRelease = headerRelease; _local3.onReleaseOutside = headerUp; _local3.headerUp = headerUp; } if (_local2 < (columns.length - 1)) { var _local5 = header_mc.attachMovie("DataHeaderSeperator", "sep" + _local2, SEPARATORDEPTH + _local2); _local5._height = __headerHeight; if (_local6.resizable && (resizableColumns)) { _local5.useHandCursor = false; _local5.col = _local2; _local5.owner = this; _local5.onRollOver = showStretcher; _local5.onPress = startSizing; _local5.onRelease = (_local5.onReleaseOutside = stopSizing); _local5.onRollOut = hideStretcher; } } _local2++; } drawHeaderBG(); } else { header_mc.removeMovieClip(); } } function invalidateHeaderStyle(Void) { var _local4 = columns.length; var _local3 = 0; while (_local3 < _local4) { var _local2 = headerCells[_local3]; if (_local2.stylecache != undefined) { delete _local2.stylecache.tf; } delete _local2.enabledColor; _local2.invalidateStyle(); _local2.draw(); _local3++; } } function drawHeaderBG(Void) { var _local2 = header_mc; _local2.clear(); var _local5 = getStyle("headerColor"); var _local3 = __viewMetrics; var _local4 = Math.max(totalWidth, displayWidth + 3); _local2.moveTo(_local3.left, _local3.top); var _local7 = {matrixType:"box", x:0, y:0, w:_local4, h:__headerHeight + 1, r:(Math.PI/2)}; var _local8 = [_local5, _local5, 16777215]; var _local9 = [0, 60, 255]; var _local6 = [100, 100, 100]; _local2.beginGradientFill("linear", _local8, _local6, _local9, _local7); _local2.lineStyle(0, 0, 0); _local2.lineTo(_local4, _local3.top); _local2.lineTo(_local4, __headerHeight + 1); _local2.lineStyle(0, 0, 100); _local2.lineTo(_local3.left, __headerHeight + 1); _local2.lineStyle(0, 0, 0); _local2.endFill(); } function enableHeader(v) { if (v) { listContent.disableHeader.removeMovieClip(); } else { var _local2 = listContent.attachMovie("DataHeaderOverlay", "disableHeader", DISABLEDHEADERDEPTH); _local2._width = totalWidth; _local2._height = __headerHeight; var _local3 = new Color(_local2); _local3.setRGB(getStyle("backgroundDisabledColor")); _local2._alpha = 60; } } function placeSortArrow(Void) { sortArrow.removeMovieClip(); if (sortIndex == undefined) { return(undefined); } if ((columns[sortIndex].__width - headerCells[sortIndex].getPreferredWidth()) <= 20) { return(undefined); } sortArrow = header_mc.createObject("DataSortArrow", "sortArrow", SORTARROWDEPTH); var _local3 = layoutX; var _local2 = 0; while (_local2 <= sortIndex) { _local3 = _local3 + columns[_local2].__width; _local2++; } var _local4 = sortDirection == "ASC"; sortArrow._yscale = (_local4 ? -100 : 100); sortArrow._x = (_local3 - sortArrow._width) - 8; sortArrow._y = ((__headerHeight - sortArrow._height) / 2) + (_local4 * sortArrow._height); } function headerRollOver(Void) { var _local2 = owner; if ((((!_local2.enabled) || (_local2.cellEditor != undefined)) || (!_local2.sortableColumns)) || (!column.sortable)) { return(undefined); } var _local3 = new Color(this); _local3.setRGB(_local2.getStyle("rollOverColor")); _alpha = 50; } function headerRollOut(Void) { _alpha = 0; } function headerPress(Void) { var _local2 = owner; if (((!column.sortable) || (!_local2.sortableColumns)) || (!_local2.enabled)) { return(undefined); } cell._x = cell._x + 1; cell._y = cell._y + 1; var _local3 = new Color(this); _local3.setRGB(_local2.getStyle("selectionColor")); _alpha = 100; } function headerUp(Void) { if (((!column.sortable) || (!owner.sortableColumns)) || (!owner.enabled)) { return(undefined); } _alpha = 0; cell._x = cell._x - 1; cell._y = cell._y - 1; } function headerRelease(Void) { var _local2 = owner; var _local3 = column; if (((!_local3.sortable) || (!_local2.sortableColumns)) || (!_local2.enabled)) { return(undefined); } headerUp(); asc = !asc; var _local4 = (asc ? "ASC" : "DESC"); _local2.sortIndex = _local2.getColumnIndex(_local3.columnName); _local2.sortDirection = _local4; _local2.placeSortArrow(); if (_local3.sortOnHeaderRelease) { _local2.sortItemsBy(_local3.columnName, _local4); } _local2.dispatchEvent({type:"headerRelease", view:_local2, columnIndex:_local2.getColumnIndex(_local3.columnName)}); _local2.dontEdit = true; } function isStretchable(col) { var _local2 = true; if (!resizableColumns) { _local2 = false; } else if (!columns[col].resizable) { _local2 = false; } else if ((col == (columns.length - 2)) && (!columns[col + 1].resizable)) { _local2 = false; } return(_local2); } function showStretcher(Void) { var _local2 = owner; if (((!_local2.isStretchable(col)) || (!_local2.enabled)) || (_local2.cellEditor != undefined)) { return(undefined); } Mouse.hide(); if (_local2.stretcher == undefined) { _local2.attachMovie("cursorStretch", "stretcher", _local2.STRETCHERDEPTH); } _local2.stretcher._x = _local2._xmouse; _local2.stretcher._y = _local2._ymouse; _local2.stretcher._visible = true; _local2.onMouseMove = function () { this.stretcher._x = this._xmouse; this.stretcher._y = this._ymouse; updateAfterEvent(); }; } function startSizing(Void) { var _local2 = owner; if ((!_local2.isStretchable(col)) || (!_local2.enabled)) { return(undefined); } _local2.pressFocus(); _local2.attachMovie("DataStretchBar", "stretchBar", 999); _local2.stretchBar._height = _local2.height; _local2.stretchBar._x = _local2._xmouse; oldX = _local2.stretchBar._x; _local2.colX = oldX - _local2.columns[col].width; _local2.onMouseMove = function () { this.stretcher._x = this._xmouse; this.stretcher._y = this._ymouse; this.stretchBar._x = Math.max(this._xmouse, this.colX + this.minColWidth); if (this.__hScrollPolicy == "off") { this.stretchBar._x = Math.min(this.stretchBar._x, this.displayWidth - this.minColWidth); } updateAfterEvent(); }; } function stopSizing(Void) { var _local2 = owner; var _local3 = col; if ((!_local2.isStretchable(_local3)) || (!_local2.enabled)) { return(undefined); } _local2.stretchBar._visible = false; onRollOut(); var _local4 = _local2.stretchBar._x - oldX; _local2.resizeColumn(_local3, _local2.columns[_local3].width + _local4); _local2.dispatchEvent({type:"columnStretch", columnIndex:_local3}); } function hideStretcher(Void) { owner.stretcher._visible = false; delete owner.onMouseMove; Mouse.show(); } function set focusedCell(obj) { setFocusedCell(obj); //return(focusedCell); } function get focusedCell() { return(__focusedCell); } function setFocusedCell(coord, broadCast) { if ((!enabled) || (!editable)) { return(undefined); } if ((coord == undefined) && (cellEditor != undefined)) { disposeEditor(); return(undefined); } var _local2 = coord.itemIndex; var _local5 = coord.columnIndex; if (_local2 == undefined) { _local2 = 0; } if (_local5 == undefined) { _local5 = 0; } var _local9 = columns[_local5].columnName; if (__vPosition > _local2) { setVPosition(_local2); } else { var _local11 = (((_local2 - __vPosition) - __rowCount) + roundUp) + 1; if (_local11 > 0) { setVPosition(__vPosition + _local11); } } var _local10 = columns[_local5]; var _local8 = rows[_local2 - __vPosition]; var _local3 = _local8.cells[_local5]; if ((_local3._x > (__hPosition + displayWidth)) || (_local3._x < __hPosition)) { setHPosition(_local3._x); } var _local4 = __dataProvider.getEditingData(_local2, _local9); if (_local4 == undefined) { _local4 = __dataProvider.getItemAt(_local2)[_local9]; } if (_local4 == undefined) { _local4 = " "; } if (_local3.isCellEditor != true) { if (cellEditor == undefined) { cellEditor = listContent.createClassObject(mx.controls.TextInput, "editor_mc", EDITORDEPTH, {styleName:_local10, listOwner:this}); } cellEditor.backgroundColor = 16777215 /* 0xFFFFFF */; cellEditor._visible = true; cellEditor.setSize(_local10.__width, __rowHeight + 2); cellEditor._x = _local3._x - 1; cellEditor.text = _local4; editorMask = listContent.attachMovie("BoundingBox", "editorMask", 60001, {_alpha:0}); cellEditor.setMask(editorMask); editorMask._width = cellEditor.width; editorMask._height = cellEditor.height; editorMask._y = (cellEditor._y = _local8._y - 1); editorMask._x = cellEditor._x - editorMask._width; editTween = new mx.effects.Tween(this, cellEditor._x - editorMask._width, cellEditor._x, 150); } else { cellEditor = _local3; cellEditor.setValue(_local4, __dataProvider.getItemAt(_local2)); } var _local6 = getFocusManager(); _local6.setFocus(cellEditor); _local6.defaultPushButtonEnabled = false; if (_local3.isCellEditor != true) { cellEditor.hPosition = 0; } __focusedCell = coord; if (__tabHandlerCache == undefined) { __tabHandlerCache = _local6.tabHandler; _local6.tabHandler = tabHandler; } _local6.activeGrid = this; cellEditor.addEventListener("keyDown", editorKeyDown); if (broadCast) { dispatchEvent({type:"cellFocusIn", itemIndex:_local2, columnIndex:_local5}); } } function onMouseDown(Void) { if (cellEditor._visible && (!cellEditor.hitTest(_root._xmouse, _root._ymouse))) { editCell(); } if ((vScroller.hitTest(_root._xmouse, _root._ymouse) || (hScroller.hitTest(_root._xmouse, _root._ymouse))) || (header_mc.hitTest(_root._xmouse, _root._ymouse))) { dontEdit = true; } } function editorKeyDown(Void) { if (Key.isDown(27)) { listOwner.disposeEditor(); } else if (Key.isDown(13)) { listOwner.editCell(); listOwner.findNextEnterCell(); } } function tabHandler(Void) { var _local4 = -1; var _local3 = -1; var _local2 = activeGrid; if (_local2.__focusedCell != undefined) { _local4 = _local2.__focusedCell.itemIndex; _local3 = _local2.__focusedCell.columnIndex; } _local2.editCell(); _local2.findNextCell(_local4, _local3); } function findNextEnterCell(Void) { var _local3 = (Key.isDown(16) ? -1 : 1); var _local2 = __focusedCell.itemIndex + _local3; if ((_local2 < getLength()) && (_local2 >= 0)) { __focusedCell.itemIndex = _local2; } setFocusedCell(__focusedCell, true); } function findNextCell(index, colIndex) { if (index == undefined) { colIndex = -1; index = colIndex; } var _local5 = false; var _local4 = (Key.isDown(16) ? -1 : 1); while (!_local5) { colIndex = colIndex + _local4; if ((colIndex >= columns.length) || (colIndex < 0)) { colIndex = ((colIndex < 0) ? (columns.length) : 0); index = index + _local4; if ((index >= getLength()) || (index < 0)) { if (getFocusManager().activeGrid != undefined) { disposeEditor(); } dontEdit = true; Selection.setFocus(this); delete dontEdit; getFocusManager().tabHandler(); return(undefined); } } if (columns[colIndex].editable) { _local5 = true; if (__tabHandlerCache != undefined) { disposeEditor(); } setFocusedCell({itemIndex:index, columnIndex:colIndex}, true); } } } function onSetFocus(Void) { super.onSetFocus(); if (editable && (dontEdit != true)) { if (__focusedCell == undefined) { __focusedCell = {itemIndex:0, columnIndex:0}; } if (columns[__focusedCell.columnIndex].editable == true) { setFocusedCell(__focusedCell, true); } else { findNextCell(__focusedCell.itemIndex, __focusedCell.columnIndex); } } delete dontEdit; } function onTweenUpdate(val) { editorMask._x = val; } function onTweenEnd(val) { editorMask._x = val; cellEditor.setMask(undefined); editorMask.removeMovieClip(); } function disposeEditor(Void) { cellEditor.removeEventListener("keyDown", editorKeyDown); dispatchEvent({type:"cellFocusOut", itemIndex:__focusedCell.itemIndex, columnIndex:__focusedCell.columnIndex}); if (cellEditor.isCellEditor != true) { cellEditor._visible = false; } var _local3 = getFocusManager(); if (__tabHandlerCache != undefined) { _local3.tabHandler = __tabHandlerCache; delete __tabHandlerCache; } _local3.defaultPushButtonEnabled = true; if ((border_mc.hitTest(_root._xmouse, _root._ymouse) && (!vScroller.hitTest(_root._xmouse, _root._ymouse))) && (!hScroller.hitTest(_root._xmouse, _root._ymouse))) { dontEdit = true; releaseFocus(); delete dontEdit; } delete cellEditor; delete _local3.activeGrid; } function editCell() { var _local3 = __focusedCell.itemIndex; var _local4 = columns[__focusedCell.columnIndex].columnName; var _local2 = __dataProvider.getEditingData(_local3, _local4); if (_local2 == undefined) { _local2 = __dataProvider.getItemAt(_local3)[_local4]; } var _local5 = (cellEditor.isCellEditor ? (cellEditor.getValue()) : (cellEditor.text)); if (_local2 != _local5) { editField(_local3, _local4, _local5); dispatchEvent({type:"cellEdit", itemIndex:_local3, columnIndex:__focusedCell.columnIndex, oldValue:_local2}); } disposeEditor(); } function invalidateStyle(propName) { if ((propName == "headerColor") || (propName == "styleName")) { drawHeaderBG(); } if ((((((propName == "hGridLines") || (propName == "hGridLineColor")) || (propName == "vGridLines")) || (propName == "vGridLineColor")) || (propName == "styleName")) || (propName == "backgroundColor")) { invDrawCols = true; invalidate(); } if (mx.styles.StyleManager.TextStyleMap[propName] != undefined) { super.changeTextStyleInChildren(propName); } if ((propName == "styleName") || (propName == "headerStyle")) { invalidateHeaderStyle(); } super.invalidateStyle(propName); } function notifyStyleChangeInChildren(sheetName, styleProp, newValue) { if (styleProp == "headerStyle") { invalidateHeaderStyle(); } if (sheetName != undefined) { var _local4 = 0; while (_local4 < columns.length) { if (sheetName == columns[_local4].styleName) { invalidateStyle(styleProp); var _local3 = 0; while (_local3 < rows.length) { rows[_local3].notifyStyleChangeInChildren(sheetName, styleProp, newValue); _local3++; } } _local4++; } } super.notifyStyleChangeInChildren(sheetName, styleProp, newValue); } static var symbolOwner = mx.controls.DataGrid; static var symbolName = "DataGrid"; static var version = "2.0.0.377"; var className = "DataGrid"; var selectable = true; var resizableColumns = true; var __showHeaders = true; var sortableColumns = true; var autoHScrollAble = true; var editable = false; var minColWidth = 20; var totColW = 0; var __rowRenderer = "DataGridRow"; var __headerHeight = 20; var hasDrawn = false; var minScrollInterval = 60; var HEADERDEPTH = 5001; var LINEDEPTH = 5000; var SORTARROWDEPTH = 5500; var EDITORDEPTH = 5002; var DISABLEDHEADERDEPTH = 5003; var HEADERCELLDEPTH = 4500; var HEADEROVERLAYDEPTH = 4000; var SEPARATORDEPTH = 5000; var STRETCHERDEPTH = 1000; }
Symbol 732 MovieClip [__Packages.mx.effects.Tween] Frame 0
class mx.effects.Tween extends Object { static var IntervalToken; var arrayMode, listener, initVal, endVal, startTime, updateFunc, endFunc, ID; function Tween (listenerObj, init, end, dur) { super(); if (listenerObj == undefined) { return; } if (typeof(init) != "number") { arrayMode = true; } listener = listenerObj; initVal = init; endVal = end; if (dur != undefined) { duration = dur; } startTime = getTimer(); if (duration == 0) { doInterval(); } else { AddTween(this); } } static function AddTween(tween) { tween.ID = ActiveTweens.length; ActiveTweens.push(tween); if (IntervalToken == undefined) { Dispatcher.DispatchTweens = DispatchTweens; IntervalToken = setInterval(Dispatcher, "DispatchTweens", Interval); } } static function RemoveTweenAt(index) { var _local2 = ActiveTweens; if (((index >= _local2.length) || (index < 0)) || (index == undefined)) { return(undefined); } _local2.splice(index, 1); var _local4 = _local2.length; var _local1 = index; while (_local1 < _local4) { _local2[_local1].ID--; _local1++; } if (_local4 == 0) { clearInterval(IntervalToken); delete IntervalToken; } } static function DispatchTweens(Void) { var _local2 = ActiveTweens; var _local3 = _local2.length; var _local1 = 0; while (_local1 < _local3) { _local2[_local1].doInterval(); _local1++; } updateAfterEvent(); } function doInterval() { var _local2 = getTimer() - startTime; var _local3 = getCurVal(_local2); if (_local2 >= duration) { endTween(); } else if (updateFunc != undefined) { listener[updateFunc](_local3); } else { listener.onTweenUpdate(_local3); } } function getCurVal(curTime) { if (arrayMode) { var _local3 = new Array(); var _local2 = 0; while (_local2 < initVal.length) { _local3[_local2] = easingEquation(curTime, initVal[_local2], endVal[_local2] - initVal[_local2], duration); _local2++; } return(_local3); } return(easingEquation(curTime, initVal, endVal - initVal, duration)); } function endTween() { if (endFunc != undefined) { listener[endFunc](endVal); } else { listener.onTweenEnd(endVal); } RemoveTweenAt(ID); } function setTweenHandlers(update, end) { updateFunc = update; endFunc = end; } function easingEquation(t, b, c, d) { return(((c / 2) * (Math.sin(Math.PI * ((t / d) - 0.5)) + 1)) + b); } static var ActiveTweens = new Array(); static var Interval = 10; static var Dispatcher = new Object(); var duration = 3000; }
Symbol 733 MovieClip [__Packages.mx.controls.gridclasses.DataGridColumn] Frame 0
class mx.controls.gridclasses.DataGridColumn extends mx.styles.CSSStyleDeclaration { var columnName, parentGrid, colNum, __header, headerCell, __cellRenderer, __headerRenderer, __labelFunction, styleName; function DataGridColumn (colName) { super(); columnName = colName; headerText = (colName); } function get width() { return(__width); } function set width(w) { delete parentGrid.invSpaceColsEqually; if ((parentGrid != undefined) && (parentGrid.hasDrawn)) { var _local2 = resizable; resizable = false; parentGrid.resizeColumn(colNum, w); resizable = _local2; } else { __width = w; } //return(width); } function set headerText(h) { __header = h; headerCell.setValue(h); //return(headerText); } function get headerText() { return(((__header == undefined) ? (columnName) : (__header))); } function set cellRenderer(cR) { __cellRenderer = cR; parentGrid.invColChange = true; parentGrid.invalidate(); //return(cellRenderer); } function get cellRenderer() { return(__cellRenderer); } function set headerRenderer(hS) { __headerRenderer = hS; parentGrid.invInitHeaders = true; parentGrid.invalidate(); //return(headerRenderer); } function get headerRenderer() { return(__headerRenderer); } function set labelFunction(f) { __labelFunction = f; parentGrid.invUpdateControl = true; parentGrid.invalidate(); //return(labelFunction); } function get labelFunction() { return(__labelFunction); } function getStyle(prop) { var _local3 = this[prop]; if (_local3 == undefined) { if (styleName != undefined) { if (styleName instanceof mx.styles.CSSStyleDeclaration) { _local3 = styleName.getStyle(prop); } else { _local3 = _global.styles[styleName].getStyle(prop); } } if ((((_local3 == undefined) || (_local3 == _global.style[prop])) || (_local3 == _global.styles[parentGrid.className][prop])) && (prop != "backgroundColor")) { _local3 = parentGrid.getStyle(prop); } } return(_local3); } function __getTextFormat(tf, bAll, fieldInst) { var _local4; if (parentGrid.header_mc[fieldInst._name] != undefined) { _local4 = getStyle("headerStyle").__getTextFormat(tf, bAll, fieldInst); if (_local4 != false) { _local4 = parentGrid.getStyle("headerStyle").__getTextFormat(tf, bAll, fieldInst); } if (_local4 == false) { return(_local4); } } if (styleName != undefined) { var _local8 = ((typeof(styleName) == "string") ? (_global.styles[styleName]) : (styleName)); _local4 = _local8.__getTextFormat(tf, bAll); if (!_local4) { return(_local4); } } _local4 = super.__getTextFormat(tf, bAll, fieldInst); if (_local4) { return(parentGrid.__getTextFormat(tf, bAll)); } return(_local4); } var editable = true; var sortable = true; var resizable = true; var sortOnHeaderRelease = true; var __width = 50; }
Symbol 734 MovieClip [__Packages.mx.controls.listclasses.SelectableRow] Frame 0
class mx.controls.listclasses.SelectableRow extends mx.core.UIComponent { var __height, cell, owner, rowIndex, icon_mc, createObject, __width, backGround, highlight, highlightColor, createLabel, createClassObject, listOwner, tabEnabled, item, createEmptyMovieClip, drawRect, isChangedToSelected, bGTween, grandOwner; function SelectableRow () { super(); } function setValue(itmObj, state) { var _local7 = __height; var _local2 = cell; var _local5 = owner; var _local8 = itemToString(itmObj); if (_local2.getValue() != _local8) { _local2.setValue(_local8, itmObj, state); } var _local4 = _local5.getPropertiesAt(rowIndex + _local5.__vPosition).icon; if (_local4 == undefined) { _local4 = _local5.__iconFunction(itmObj); if (_local4 == undefined) { _local4 = itmObj[_local5.__iconField]; if (_local4 == undefined) { _local4 = _local5.getStyle("defaultIcon"); } } } var _local3 = icon_mc; if ((_local4 != undefined) && (itmObj != undefined)) { _local3 = createObject(_local4, "icon_mc", 20); _local3._x = 2; _local3._y = (_local7 - _local3._height) / 2; _local2._x = 4 + _local3._width; } else { _local3.removeMovieClip(); _local2._x = 2; } var _local9 = ((_local3 == undefined) ? 0 : (_local3._width)); _local2.setSize(__width - _local9, Math.min(_local7, _local2.getPreferredHeight())); _local2._y = (_local7 - _local2._height) / 2; } function size(Void) { var _local3 = backGround; var _local2 = cell; var _local4 = __height; var _local5 = __width; var _local6 = ((icon_mc == undefined) ? 0 : (icon_mc._width)); _local2.setSize(_local5 - _local6, Math.min(_local4, _local2.getPreferredHeight())); _local2._y = (_local4 - _local2._height) / 2; icon_mc._y = (_local4 - icon_mc._height) / 2; _local3._x = 0; _local3._width = _local5; _local3._height = _local4; drawRowFill(_local3, normalColor); drawRowFill(highlight, highlightColor); } function setCellRenderer(forceSizing) { var _local3 = owner.__cellRenderer; var _local4; if (cell != undefined) { _local4 = cell._x; cell.removeMovieClip(); cell.removeTextField(); } var _local2; if (_local3 == undefined) { _local2 = (cell = createLabel("cll", 0, {styleName:this})); _local2.styleName = owner; _local2.selectable = false; _local2.tabEnabled = false; _local2.background = false; _local2.border = false; } else if (typeof(_local3) == "string") { _local2 = (cell = createObject(_local3, "cll", 0, {styleName:this})); } else { _local2 = (cell = createClassObject(_local3, "cll", 0, {styleName:this})); } _local2.owner = this; _local2.listOwner = owner; _local2.getCellIndex = getCellIndex; _local2.getDataLabel = getDataLabel; if (_local4 != undefined) { _local2._x = _local4; } if (forceSizing) { size(); } } function getCellIndex(Void) { return({columnIndex:0, itemIndex:owner.rowIndex + listOwner.__vPosition}); } function getDataLabel() { return(listOwner.labelField); } function init(Void) { super.init(); tabEnabled = false; } function createChildren(Void) { setCellRenderer(false); setupBG(); setState(state, false); } function drawRow(itmObj, state, transition) { item = itmObj; setState(state, transition); setValue(itmObj, state, transition); } function itemToString(itmObj) { if (itmObj == undefined) { return(" "); } var _local2 = owner.__labelFunction(itmObj); if (_local2 == undefined) { _local2 = ((itmObj instanceof XMLNode) ? (itmObj.attributes[owner.__labelField]) : (itmObj[owner.__labelField])); if (_local2 == undefined) { _local2 = " "; if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } } } return(_local2); } function setupBG(Void) { var _local2 = (backGround = createEmptyMovieClip("bG_mc", LOWEST_DEPTH)); drawRowFill(_local2, normalColor); highlight = createEmptyMovieClip("tran_mc", LOWEST_DEPTH + 10); _local2.owner = this; _local2.grandOwner = owner; _local2.onPress = bGOnPress; _local2.onRelease = bGOnRelease; _local2.onRollOver = bGOnRollOver; _local2.onRollOut = bGOnRollOut; _local2.onDragOver = bGOnDragOver; _local2.onDragOut = bGOnDragOut; _local2.useHandCursor = false; _local2.trackAsMenu = true; _local2.drawRect = drawRect; highlight.drawRect = drawRect; } function drawRowFill(mc, newClr) { mc.clear(); mc.beginFill(newClr); mc.drawRect(1, 0, __width, __height); mc.endFill(); mc._width = __width; mc._height = __height; } function setState(newState, transition) { var _local2 = highlight; var _local8 = backGround; var _local4 = __height; var _local3 = owner; if (!_local3.enabled) { if ((newState == "selected") || (state == "selected")) { highlightColor = _local3.getStyle("selectionDisabledColor"); drawRowFill(_local2, highlightColor); _local2._visible = true; _local2._y = 0; _local2._height = _local4; } else { _local2._visible = false; normalColor = _local3.getStyle("backgroundDisabledColor"); drawRowFill(_local8, normalColor); } cell.__enabled = false; cell.setColor(_local3.getStyle("disabledColor")); } else { cell.__enabled = true; if (transition && ((newState == state) || ((newState == "highlighted") && (state == "selected")))) { isChangedToSelected = true; return(undefined); } var _local6 = _local3.getStyle("selectionDuration"); var _local7 = 0; if (isChangedToSelected && (newState == "selected")) { transition = false; } var _local10 = transition && (_local6 != 0); if (newState == "normal") { _local7 = _local3.getStyle("color"); normalColor = getNormalColor(); drawRowFill(_local8, normalColor); if (_local10) { _local6 = _local6 / 2; _local2._height = _local4; _local2._width = __width; _local2._y = 0; bGTween = new mx.effects.Tween(this, _local4 + 2, _local4 * 0.2, _local6, 5); } else { _local2._visible = false; } delete isChangedToSelected; } else { highlightColor = _local3.getStyle(((newState == "highlighted") ? "rollOverColor" : "selectionColor")); drawRowFill(_local2, highlightColor); _local2._visible = true; _local7 = _local3.getStyle(((newState == "highlighted") ? "textRollOverColor" : "textSelectedColor")); if (_local10) { _local2._height = _local4 * 0.5; _local2._y = (_local4 - _local2._height) / 2; bGTween = new mx.effects.Tween(this, _local2._height, _local4 + 2, _local6, 5); var _local9 = _local3.getStyle("selectionEasing"); if (_local9 != undefined) { bGTween.easingEquation = _local9; } } else { _local2._y = 0; _local2._height = _local4; } } cell.setColor(_local7); } state = newState; } function onTweenUpdate(val) { highlight._height = val; highlight._y = (__height - val) / 2; } function onTweenEnd(val) { onTweenUpdate(val); highlight._visible = state != "normal"; } function getNormalColor(Void) { var _local3; var _local2 = owner; if (!owner.enabled) { _local3 = _local2.getStyle("backgroundDisabledColor"); } else { var _local5 = rowIndex + _local2.__vPosition; _local3 = _local2.getPropertiesAt(_local5).backgroundColor; if (_local3 == undefined) { var _local4 = _local2.getStyle("alternatingRowColors"); if (_local4 == undefined) { _local3 = _local2.getStyle("backgroundColor"); } else { _local3 = _local4[_local5 % _local4.length]; } } } return(_local3); } function invalidateStyle(propName) { cell.invalidateStyle(propName); super.invalidateStyle(propName); } function bGOnPress(Void) { grandOwner.pressFocus(); grandOwner.onRowPress(owner.rowIndex); } function bGOnRelease(Void) { grandOwner.releaseFocus(); grandOwner.onRowRelease(owner.rowIndex); } function bGOnRollOver(Void) { grandOwner.onRowRollOver(owner.rowIndex); } function bGOnRollOut(Void) { grandOwner.onRowRollOut(owner.rowIndex); } function bGOnDragOver(Void) { grandOwner.onRowDragOver(owner.rowIndex); } function bGOnDragOut(Void) { grandOwner.onRowDragOut(owner.rowIndex); } static var LOWEST_DEPTH = -16384; var state = "normal"; var disabledColor = 15263976; var normalColor = 16777215; }
Symbol 735 MovieClip [__Packages.mx.controls.gridclasses.DataGridRow] Frame 0
class mx.controls.gridclasses.DataGridRow extends mx.controls.listclasses.SelectableRow { var setupBG, colBG, createEmptyMovieClip, cells, owner, backGround, createObject, createClassObject, createLabel, text, draw, textHeight, listOwner, columnIndex, __height, grandOwner, wasPressed, onPress; function DataGridRow () { super(); } function createChildren(Void) { setupBG(); colBG = createEmptyMovieClip("colbG_mc", mx.controls.listclasses.SelectableRow.LOWEST_DEPTH + 1); } function init(Void) { super.init(); cells = new Array(); } function size(Void) { if (cells.length != owner.columns.length) { createCells(); } super.size(); } function createCells(Void) { clearCells(); backGround.onRelease = startEditCell; var _local7 = owner.columns.length; var _local2 = 0; while (_local2 < _local7) { var _local5 = owner.columns[_local2]; var _local4 = _local5.__cellRenderer; if (_local4 != undefined) { if (typeof(_local4) == "string") { var _local3 = (cells[_local2] = createObject(_local4, "fCell" + _local2, 2 + _local2, {styleName:_local5})); } else { var _local3 = (cells[_local2] = createClassObject(_local4, "fCell" + _local2, 2 + _local2, {styleName:_local5})); } } else { var _local3 = (cells[_local2] = createLabel("fCell" + _local2, 2 + _local2)); _local3.styleName = _local5; _local3.selectable = false; _local3.backGround = false; _local3.border = false; _local3._visible = false; _local3.getPreferredHeight = cellGetPreferredHeight; } _local3.listOwner = owner; _local3.columnIndex = _local2; _local3.owner = this; _local3.getCellIndex = getCellIndex; _local3.getDataLabel = getDataLabel; _local2++; } } function cellGetPreferredHeight() { var _local3 = text; text = "^g_p"; draw(); var _local2 = textHeight + 4; text = _local3; return(_local2); } function getCellIndex(Void) { return({columnIndex:columnIndex, itemIndex:owner.rowIndex + listOwner.__vPosition}); } function getDataLabel() { return(listOwner.columns[columnIndex].columnName); } function clearCells() { var _local2 = 0; while (_local2 < cells.length) { cells[_local2].removeTextField(); cells[_local2].removeMovieClip(); _local2++; } cells.splice(0); } function setValue(itmObj, state, transition) { var _local7 = owner.columns; var _local8 = _local7.length; var _local3 = 0; while (_local3 < _local8) { var _local6 = cells[_local3]; var _local5 = _local7[_local3]; var _local2 = _local5.__labelFunction(itmObj); if (_local2 == undefined) { _local2 = ((itmObj instanceof XMLNode) ? (itmObj.attributes[_local5.columnName]) : (itmObj[_local5.columnName])); } if (_local2 == undefined) { _local2 = " "; } _local6.setValue(_local2, itmObj, state); _local3++; } } function drawCell(cellNum, xPos, w, bgCol) { var _local2 = cells[cellNum]; _local2._x = xPos; _local2._visible = true; _local2.setSize(w - 2, Math.min(__height, _local2.getPreferredHeight())); _local2._y = (__height - _local2._height) / 2; if (bgCol != undefined) { var _local3 = Math.floor(xPos - 2); var _local4 = Math.floor(_local3 + w); colBG.moveTo(_local3, 0); colBG.beginFill(bgCol); colBG.lineStyle(0, 0, 0); colBG.lineTo(_local4, 0); colBG.lineTo(_local4, __height); colBG.lineTo(_local3, __height); colBG.endFill(); } } function setState(newState, transition) { var _local6 = owner.columns; var _local4 = _local6.length; if ((newState != "normal") || (!owner.enabled)) { var _local5; if (!owner.enabled) { _local5 = owner.getStyle("disabledColor"); } else if (newState == "highlighted") { _local5 = owner.getStyle("textRollOverColor"); } else if (newState == "selected") { _local5 = owner.getStyle("textSelectedColor"); } var _local3 = 0; while (_local3 < _local4) { cells[_local3].setColor(_local5); cells[_local3].__enabled = owner.enabled; _local3++; } } else { var _local3 = 0; while (_local3 < _local4) { cells[_local3].setColor(_local6[_local3].getStyle("color")); cells[_local3].__enabled = owner.enabled; _local3++; } } super.setState(newState, transition); } function startEditCell() { var _local2 = grandOwner; _local2.dontEdit = true; _local2.releaseFocus(); delete _local2.dontEdit; if ((_local2.enabled && (_local2.editable)) && (owner.item != undefined)) { var _local9 = owner.cells.length; var _local3 = 0; while (_local3 < _local9) { var _local5 = _local2.columns[_local3]; if (_local5.editable) { var _local4 = owner._xmouse - owner.cells[_local3]._x; if ((_local4 >= 0) && (_local4 < _local5.__width)) { var _local6 = owner.rowIndex + _local2.__vPosition; _local2.setFocusedCell({itemIndex:_local6, columnIndex:_local3}, true); if (wasPressed != true) { onPress(); _local2.onMouseUp(); } delete wasPressed; clearInterval(_local2.dragScrolling); delete _local2.onMouseUp; return(undefined); } } _local3++; } } } function bGOnPress(Void) { wasPressed = true; grandOwner.pressFocus(); grandOwner.onRowPress(owner.rowIndex); } function notifyStyleChangeInChildren(sheetName, styleProp, newValue) { var _local6 = owner.columns; var _local4 = cells.length; var _local3 = 0; while (_local3 < _local4) { var _local2 = cells[_local3]; if (_local2.stylecache != undefined) { delete _local2.stylecache.tf; } delete _local2.enabledColor; _local2.invalidateStyle(styleProp); _local3++; } } }
Symbol 736 MovieClip [__Packages.mx.controls.TextInput] Frame 0
class mx.controls.TextInput extends mx.core.UIComponent { var owner, enterListener, label, tabChildren, tabEnabled, focusTextField, _color, _parent, border_mc, createClassObject, dispatchValueChangedEvent, __get__width, __get__height, tfx, tfy, tfw, tfh, enabled, getStyle, bind, updateModel, _getTextFormat; function TextInput () { super(); } function addEventListener(event, handler) { if (event == "enter") { addEnterEvents(); } super.addEventListener(event, handler); } function enterOnKeyDown() { if (Key.getAscii() == 13) { owner.dispatchEvent({type:"enter"}); } } function addEnterEvents() { if (enterListener == undefined) { enterListener = new Object(); enterListener.owner = this; enterListener.onKeyDown = enterOnKeyDown; } } function init(Void) { super.init(); label.styleName = this; tabChildren = true; tabEnabled = false; focusTextField = label; _color = mx.core.UIObject.textColorList; label.onSetFocus = function () { this._parent.onSetFocus(); }; label.onKillFocus = function (n) { this._parent.onKillFocus(n); }; label.drawFocus = function (b) { this._parent.drawFocus(b); }; label.onChanged = onLabelChanged; } function setFocus() { Selection.setFocus(label); } function onLabelChanged(Void) { _parent.dispatchEvent({type:"change"}); _parent.dispatchValueChangedEvent(text); } function createChildren(Void) { super.createChildren(); if (border_mc == undefined) { createClassObject(_global.styles.rectBorderClass, "border_mc", 0, {styleName:this}); } border_mc.swapDepths(label); label.autoSize = "none"; } function get html() { return(getHtml()); } function set html(value) { setHtml(value); //return(html); } function getHtml() { return(label.html); } function setHtml(value) { if (value != label.html) { label.html = value; } } function get text() { return(getText()); } function set text(t) { setText(t); //return(text); } function getText() { if (initializing) { return(initText); } if (label.html == true) { return(label.htmlText); } return(label.text); } function setText(t) { if (initializing) { initText = t; } else { var _local2 = label; if (_local2.html == true) { _local2.htmlText = t; } else { _local2.text = t; } } dispatchValueChangedEvent(t); } function size(Void) { border_mc.setSize(__get__width(), __get__height()); var _local2 = border_mc.__get__borderMetrics(); var _local6 = _local2.left + _local2.right; var _local3 = _local2.top + _local2.bottom; var _local5 = _local2.left; var _local4 = _local2.top; tfx = _local5; tfy = _local4; tfw = __get__width() - _local6; tfh = __get__height() - _local3; label.move(tfx, tfy); label.setSize(tfw, tfh + 1); } function setEnabled(enable) { enabled = enable; label.type = (((__editable == true) || (enabled == false)) ? "input" : "dynamic"); label.selectable = enabled; var _local2 = getStyle((enable ? "color" : "disabledColor")); if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } setColor(_local2); } function setColor(col) { label.textColor = col; } function onKillFocus(newFocus) { if (enterListener != undefined) { Key.removeListener(enterListener); } if (bind != undefined) { updateModel(text); } super.onKillFocus(newFocus); } function onSetFocus(oldFocus) { var f = Selection.getFocus(); var o = eval (f); if (o != label) { Selection.setFocus(label); return(undefined); } if (enterListener != undefined) { Key.addListener(enterListener); } super.onSetFocus(oldFocus); } function draw(Void) { var _local2 = label; var _local4 = getText(); if (initializing) { initializing = false; delete initText; } var _local3 = _getTextFormat(); _local2.embedFonts = _local3.embedFonts == true; if (_local3 != undefined) { _local2.setTextFormat(_local3); _local2.setNewTextFormat(_local3); } _local2.multiline = false; _local2.wordWrap = false; if (_local2.html == true) { _local2.setTextFormat(_local3); _local2.htmlText = _local4; } else { _local2.text = _local4; } _local2.type = (((__editable == true) || (enabled == false)) ? "input" : "dynamic"); size(); } function setEditable(s) { __editable = s; label.type = (s ? "input" : "dynamic"); } function get maxChars() { return(label.maxChars); } function set maxChars(w) { label.maxChars = w; //return(maxChars); } function get length() { return(label.length); } function get restrict() { return(label.restrict); } function set restrict(w) { label.restrict = ((w == "") ? null : (w)); //return(restrict); } function get hPosition() { return(label.hscroll); } function set hPosition(w) { label.hscroll = w; //return(hPosition); } function get maxHPosition() { return(label.maxhscroll); } function get editable() { return(__editable); } function set editable(w) { setEditable(w); //return(editable); } function get password() { return(label.password); } function set password(w) { label.password = w; //return(password); } function get tabIndex() { return(label.tabIndex); } function set tabIndex(w) { label.tabIndex = w; //return(tabIndex); } function set _accProps(val) { label._accProps = val; //return(_accProps); } function get _accProps() { return(label._accProps); } static var symbolName = "TextInput"; static var symbolOwner = mx.controls.TextInput; static var version = "2.0.0.377"; var className = "TextInput"; var initializing = true; var clipParameters = {text:1, editable:1, password:1, maxChars:1, restrict:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.TextInput.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters); var _maxWidth = mx.core.UIComponent.kStretch; var __editable = true; var initText = ""; }
Symbol 788 Button
on (press) { evEngine.broadcastMessage("onTabNext"); }
Symbol 789 Button
on (press) { evEngine.broadcastMessage("onTabPrev"); }
Symbol 795 Button
on (release) { ParseAndSend(UserInput.input.text); }
Symbol 796 Button
on (release) { _root.evEngine.broadcastMessage("onPreferencesPressed"); }

Library Items

Symbol 1 Sound [knock_sound]
Symbol 2 GraphicUsed by:3 34 147 168 225 245 327 407
Symbol 3 MovieClip [fcb_hitArea]Uses:2
Symbol 4 GraphicUsed by:5 148 226
Symbol 5 MovieClipUses:4Used by:12
Symbol 6 GraphicUsed by:7 149 227
Symbol 7 MovieClipUses:6Used by:12
Symbol 8 GraphicUsed by:9 150 228
Symbol 9 MovieClipUses:8Used by:12
Symbol 10 GraphicUsed by:11 151 229
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:5 7 9 11Used by:27
Symbol 13 GraphicUsed by:14 107 117 119 153 209 211 231 315 322 324 396 403 405 467 482 497 748
Symbol 14 MovieClipUses:13Used by:15
Symbol 15 MovieClipUses:14Used by:27
Symbol 16 GraphicUsed by:17 19 155 233 235
Symbol 17 MovieClipUses:16Used by:18
Symbol 18 MovieClipUses:17Used by:27
Symbol 19 MovieClipUses:16Used by:20
Symbol 20 MovieClipUses:19Used by:27
Symbol 21 GraphicUsed by:22 160 237
Symbol 22 MovieClipUses:21Used by:23
Symbol 23 MovieClipUses:22Used by:27
Symbol 24 GraphicUsed by:25 162 239
Symbol 25 MovieClipUses:24Used by:26
Symbol 26 MovieClipUses:25Used by:27
Symbol 27 MovieClip [fcb_states]Uses:12 15 18 20 23 26
Symbol 28 GraphicUsed by:29 142 221 367 474
Symbol 29 MovieClipUses:28Used by:30
Symbol 30 MovieClip [FBoundingBoxSymbol]Uses:29Used by:33 70 74 551
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:33
Symbol 33 MovieClip [FRadioButtonSymbol]Uses:30 32
Symbol 34 MovieClip [frb_hitArea]Uses:2
Symbol 35 GraphicUsed by:36 169 246
Symbol 36 MovieClipUses:35Used by:43
Symbol 37 GraphicUsed by:38 170 247
Symbol 38 MovieClipUses:37Used by:43
Symbol 39 GraphicUsed by:40 171 248
Symbol 40 MovieClipUses:39Used by:43
Symbol 41 GraphicUsed by:42 172 249
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClipUses:36 38 40 42Used by:58
Symbol 44 GraphicUsed by:45 174 251
Symbol 45 MovieClipUses:44Used by:46
Symbol 46 MovieClipUses:45Used by:58
Symbol 47 GraphicUsed by:48 50 176 178 253 255
Symbol 48 MovieClipUses:47Used by:49
Symbol 49 MovieClipUses:48Used by:58
Symbol 50 MovieClipUses:47Used by:51
Symbol 51 MovieClipUses:50Used by:58
Symbol 52 GraphicUsed by:53 180 257
Symbol 53 MovieClipUses:52Used by:54
Symbol 54 MovieClipUses:53Used by:58
Symbol 55 GraphicUsed by:56 182 259
Symbol 56 MovieClipUses:55Used by:57
Symbol 57 MovieClipUses:56Used by:58
Symbol 58 MovieClip [frb_states]Uses:43 46 49 51 54 57
Symbol 59 GraphicUsed by:60 76 116 125 739 745
Symbol 60 MovieClipUses:59Used by:61
Symbol 61 MovieClipUses:60Used by:62
Symbol 62 MovieClip [FScrollBarSymbol]Uses:61Used by:66 545
Symbol 63 MovieClip [DataProviderSymbol]Used by:65
Symbol 64 MovieClip [FSelectableItemSymbol]Used by:65
Symbol 65 MovieClip [FSelectableListSymbol]Uses:63 64Used by:66
Symbol 66 MovieClip [FScrollSelectListSymbol]Uses:62 65Used by:70 74
Symbol 67 MovieClip [FComboBoxItemSymbol]Used by:70
Symbol 68 GraphicUsed by:69 194 271
Symbol 69 MovieClipUses:68Used by:70
Symbol 70 MovieClip [FComboBoxSymbol]Uses:66 67 30 69
Symbol 71 MovieClip [FListItemSymbol]Used by:74
Symbol 72 GraphicUsed by:73 197 274 369 476
Symbol 73 MovieClipUses:72Used by:74
Symbol 74 MovieClip [FListBoxSymbol]Uses:71 66 30 73
Symbol 75 MovieClip [FUIComponentSymbol]
Symbol 76 MovieClipUses:59Used by:87 200
Symbol 77 GraphicUsed by:78 754
Symbol 78 MovieClipUses:77Used by:87 200
Symbol 79 GraphicUsed by:80 280 302 333 348 374 388 412 426
Symbol 80 MovieClipUses:79Used by:87 200
Symbol 81 GraphicUsed by:82 129
Symbol 82 MovieClipUses:81Used by:87 200
Symbol 83 GraphicUsed by:84 130
Symbol 84 MovieClipUses:83Used by:87 200
Symbol 85 GraphicUsed by:86 131
Symbol 86 MovieClipUses:85Used by:87 200
Symbol 87 MovieClipUses:76 78 80 82 84 86Used by:102
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:100 101 134 201 202
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:100 101 134 201 202
Symbol 92 GraphicUsed by:93 128
Symbol 93 MovieClipUses:92Used by:100 101 134 201 202
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:100 101 134 201 202
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:100 101 134 201 202
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100 101 134 201 202
Symbol 100 MovieClipUses:89 91 93 95 97 99Used by:102
Symbol 101 MovieClipUses:89 91 93 95 97 99Used by:102
Symbol 102 MovieClip [UpArrow]Uses:87 100 101
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:110 204
Symbol 105 GraphicUsed by:106 113 206
Symbol 106 MovieClipUses:105Used by:110 204
Symbol 107 MovieClipUses:13Used by:110 204
Symbol 108 GraphicUsed by:109 316 397 483
Symbol 109 MovieClipUses:108Used by:110 204
Symbol 110 MovieClipUses:104 106 107 109Used by:124
Symbol 111 GraphicUsed by:112 122 205 213
Symbol 112 MovieClipUses:111Used by:118
Symbol 113 MovieClipUses:105Used by:118
Symbol 114 GraphicUsed by:115 207 320 401
Symbol 115 MovieClipUses:114Used by:118
Symbol 116 MovieClipUses:59Used by:118
Symbol 117 MovieClipUses:13Used by:118
Symbol 118 MovieClipUses:112 113 115 116 117Used by:124
Symbol 119 MovieClipUses:13Used by:123
Symbol 120 GraphicUsed by:121 212
Symbol 121 MovieClipUses:120Used by:123
Symbol 122 MovieClipUses:111Used by:123
Symbol 123 MovieClipUses:119 121 122Used by:124
Symbol 124 MovieClip [ScrollThumb]Uses:110 118 123
Symbol 125 MovieClipUses:59Used by:132 133
Symbol 126 GraphicUsed by:127 743
Symbol 127 MovieClipUses:126Used by:132 133
Symbol 128 MovieClipUses:92Used by:132 133
Symbol 129 MovieClipUses:81Used by:132 133
Symbol 130 MovieClipUses:83Used by:132 133
Symbol 131 MovieClipUses:85Used by:132 133
Symbol 132 MovieClipUses:125 127 128 129 130 131Used by:135 216 486
Symbol 133 MovieClipUses:125 127 128 129 130 131Used by:135 216 486
Symbol 134 MovieClipUses:89 91 93 95 97 99Used by:135 216 486
Symbol 135 MovieClip [DownArrow]Uses:132 133 134
Symbol 136 GraphicUsed by:137 217 355 432 487
Symbol 137 MovieClipUses:136Used by:138
Symbol 138 MovieClip [FHighlightSymbol]Uses:137
Symbol 139 FontUsed by:140 219 357 434 489
Symbol 140 EditableTextUses:139Used by:141
Symbol 141 MovieClip [FLabelSymbol]Uses:140
Symbol 142 MovieClipUses:28Used by:143
Symbol 143 MovieClip [FBoundingBoxSymbol]Uses:142Used by:146 167 195 198
Symbol 144 GraphicUsed by:145 223 550
Symbol 145 MovieClipUses:144Used by:146
Symbol 146 MovieClip [FCheckBoxSymbol]Uses:143 145
Symbol 147 MovieClip [fcb_hitArea]Uses:2
Symbol 148 MovieClipUses:4Used by:152
Symbol 149 MovieClipUses:6Used by:152
Symbol 150 MovieClipUses:8Used by:152
Symbol 151 MovieClipUses:10Used by:152
Symbol 152 MovieClipUses:148 149 150 151Used by:164
Symbol 153 MovieClipUses:13Used by:154
Symbol 154 MovieClipUses:153Used by:164
Symbol 155 MovieClipUses:16Used by:156
Symbol 156 MovieClipUses:155Used by:164
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:159
Symbol 159 MovieClipUses:158Used by:164
Symbol 160 MovieClipUses:21Used by:161
Symbol 161 MovieClipUses:160Used by:164
Symbol 162 MovieClipUses:24Used by:163
Symbol 163 MovieClipUses:162Used by:164
Symbol 164 MovieClip [fcb_states]Uses:152 154 156 159 161 163
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:167
Symbol 167 MovieClip [FRadioButtonSymbol]Uses:143 166
Symbol 168 MovieClip [frb_hitArea]Uses:2
Symbol 169 MovieClipUses:35Used by:173
Symbol 170 MovieClipUses:37Used by:173
Symbol 171 MovieClipUses:39Used by:173
Symbol 172 MovieClipUses:41Used by:173
Symbol 173 MovieClipUses:169 170 171 172Used by:184
Symbol 174 MovieClipUses:44Used by:175
Symbol 175 MovieClipUses:174Used by:184
Symbol 176 MovieClipUses:47Used by:177
Symbol 177 MovieClipUses:176Used by:184
Symbol 178 MovieClipUses:47Used by:179
Symbol 179 MovieClipUses:178Used by:184
Symbol 180 MovieClipUses:52Used by:181
Symbol 181 MovieClipUses:180Used by:184
Symbol 182 MovieClipUses:55Used by:183
Symbol 183 MovieClipUses:182Used by:184
Symbol 184 MovieClip [frb_states]Uses:173 175 177 179 181 183
Symbol 185 GraphicUsed by:186 208
Symbol 186 MovieClipUses:185Used by:187
Symbol 187 MovieClipUses:186Used by:188
Symbol 188 MovieClip [FScrollBarSymbol]Uses:187Used by:192
Symbol 189 MovieClip [DataProviderSymbol]Used by:191
Symbol 190 MovieClip [FSelectableItemSymbol]Used by:191
Symbol 191 MovieClip [FSelectableListSymbol]Uses:189 190Used by:192
Symbol 192 MovieClip [FScrollSelectListSymbol]Uses:188 191Used by:195 198
Symbol 193 MovieClip [FComboBoxItemSymbol]Used by:195
Symbol 194 MovieClipUses:68Used by:195
Symbol 195 MovieClip [FComboBoxSymbol]Uses:192 193 143 194
Symbol 196 MovieClip [FListItemSymbol]Used by:198
Symbol 197 MovieClipUses:72Used by:198
Symbol 198 MovieClip [FListBoxSymbol]Uses:196 192 143 197
Symbol 199 MovieClip [FUIComponentSymbol]
Symbol 200 MovieClipUses:76 78 80 82 84 86Used by:203 479
Symbol 201 MovieClipUses:89 91 93 95 97 99Used by:203 479
Symbol 202 MovieClipUses:89 91 93 95 97 99Used by:203 479
Symbol 203 MovieClip [UpArrow]Uses:200 201 202
Symbol 204 MovieClipUses:104 106 107 109Used by:215
Symbol 205 MovieClipUses:111Used by:210
Symbol 206 MovieClipUses:105Used by:210
Symbol 207 MovieClipUses:114Used by:210
Symbol 208 MovieClipUses:185Used by:210
Symbol 209 MovieClipUses:13Used by:210
Symbol 210 MovieClipUses:205 206 207 208 209Used by:215 485
Symbol 211 MovieClipUses:13Used by:214
Symbol 212 MovieClipUses:120Used by:214
Symbol 213 MovieClipUses:111Used by:214
Symbol 214 MovieClipUses:211 212 213Used by:215 485
Symbol 215 MovieClip [ScrollThumb]Uses:204 210 214
Symbol 216 MovieClip [DownArrow]Uses:132 133 134
Symbol 217 MovieClipUses:136Used by:218
Symbol 218 MovieClip [FHighlightSymbol]Uses:217
Symbol 219 EditableTextUses:139Used by:220
Symbol 220 MovieClip [FLabelSymbol]Uses:219
Symbol 221 MovieClipUses:28Used by:222
Symbol 222 MovieClip [FBoundingBoxSymbol]Uses:221Used by:224 244 272 275
Symbol 223 MovieClipUses:144Used by:224
Symbol 224 MovieClip [FCheckBoxSymbol]Uses:222 223
Symbol 225 MovieClip [fcb_hitArea]Uses:2
Symbol 226 MovieClipUses:4Used by:230
Symbol 227 MovieClipUses:6Used by:230
Symbol 228 MovieClipUses:8Used by:230
Symbol 229 MovieClipUses:10Used by:230
Symbol 230 MovieClipUses:226 227 228 229Used by:241
Symbol 231 MovieClipUses:13Used by:232
Symbol 232 MovieClipUses:231Used by:241
Symbol 233 MovieClipUses:16Used by:234
Symbol 234 MovieClipUses:233Used by:241
Symbol 235 MovieClipUses:16Used by:236
Symbol 236 MovieClipUses:235Used by:241
Symbol 237 MovieClipUses:21Used by:238
Symbol 238 MovieClipUses:237Used by:241
Symbol 239 MovieClipUses:24Used by:240
Symbol 240 MovieClipUses:239Used by:241
Symbol 241 MovieClip [fcb_states]Uses:230 232 234 236 238 240
Symbol 242 GraphicUsed by:243
Symbol 243 MovieClipUses:242Used by:244
Symbol 244 MovieClip [FRadioButtonSymbol]Uses:222 243
Symbol 245 MovieClip [frb_hitArea]Uses:2
Symbol 246 MovieClipUses:35Used by:250
Symbol 247 MovieClipUses:37Used by:250
Symbol 248 MovieClipUses:39Used by:250
Symbol 249 MovieClipUses:41Used by:250
Symbol 250 MovieClipUses:246 247 248 249Used by:261
Symbol 251 MovieClipUses:44Used by:252
Symbol 252 MovieClipUses:251Used by:261
Symbol 253 MovieClipUses:47Used by:254
Symbol 254 MovieClipUses:253Used by:261
Symbol 255 MovieClipUses:47Used by:256
Symbol 256 MovieClipUses:255Used by:261
Symbol 257 MovieClipUses:52Used by:258
Symbol 258 MovieClipUses:257Used by:261
Symbol 259 MovieClipUses:55Used by:260
Symbol 260 MovieClipUses:259Used by:261
Symbol 261 MovieClip [frb_states]Uses:250 252 254 256 258 260
Symbol 262 GraphicUsed by:263 277 294 321 330 342 360 372 383 402 410 421
Symbol 263 MovieClipUses:262Used by:264
Symbol 264 MovieClipUses:263Used by:265
Symbol 265 MovieClip [FScrollBarSymbol]Uses:264Used by:269
Symbol 266 MovieClip [DataProviderSymbol]Used by:268
Symbol 267 MovieClip [FSelectableItemSymbol]Used by:268
Symbol 268 MovieClip [FSelectableListSymbol]Uses:266 267Used by:269
Symbol 269 MovieClip [FScrollSelectListSymbol]Uses:265 268Used by:272 275
Symbol 270 MovieClip [FComboBoxItemSymbol]Used by:272
Symbol 271 MovieClipUses:68Used by:272
Symbol 272 MovieClip [FComboBoxSymbol]Uses:269 270 222 271
Symbol 273 MovieClip [FListItemSymbol]Used by:275
Symbol 274 MovieClipUses:72Used by:275
Symbol 275 MovieClip [FListBoxSymbol]Uses:273 269 222 274
Symbol 276 MovieClip [FUIComponentSymbol]
Symbol 277 MovieClipUses:262Used by:287
Symbol 278 GraphicUsed by:279 373
Symbol 279 MovieClipUses:278Used by:287
Symbol 280 MovieClipUses:79Used by:287
Symbol 281 GraphicUsed by:282 334 349 375 413 427
Symbol 282 MovieClipUses:281Used by:287
Symbol 283 GraphicUsed by:284 289 335 339 376 380 414 418
Symbol 284 MovieClipUses:283Used by:287
Symbol 285 GraphicUsed by:286 288 336 338 377 379 415 417
Symbol 286 MovieClipUses:285Used by:287
Symbol 287 MovieClipUses:277 279 280 282 284 286Used by:310
Symbol 288 MovieClipUses:285Used by:297
Symbol 289 MovieClipUses:283Used by:297
Symbol 290 GraphicUsed by:291 340 381 419
Symbol 291 MovieClipUses:290Used by:297
Symbol 292 GraphicUsed by:293 341 382 420
Symbol 293 MovieClipUses:292Used by:297
Symbol 294 MovieClipUses:262Used by:297
Symbol 295 GraphicUsed by:296 384
Symbol 296 MovieClipUses:295Used by:297
Symbol 297 MovieClipUses:288 289 291 293 294 296Used by:310
Symbol 298 GraphicUsed by:299 346 386 424
Symbol 299 MovieClipUses:298Used by:309
Symbol 300 GraphicUsed by:301 347 387 425
Symbol 301 MovieClipUses:300Used by:309
Symbol 302 MovieClipUses:79Used by:309
Symbol 303 GraphicUsed by:304 389
Symbol 304 MovieClipUses:303Used by:309
Symbol 305 GraphicUsed by:306 350 390 428
Symbol 306 MovieClipUses:305Used by:309
Symbol 307 GraphicUsed by:308 391 752
Symbol 308 MovieClipUses:307Used by:309
Symbol 309 MovieClipUses:299 301 302 304 306 308Used by:310
Symbol 310 MovieClip [UpArrow]Uses:287 297 309
Symbol 311 GraphicUsed by:312 394 480
Symbol 312 MovieClipUses:311Used by:317
Symbol 313 GraphicUsed by:314 318 319 395 399 400 481
Symbol 314 MovieClipUses:313Used by:317
Symbol 315 MovieClipUses:13Used by:317
Symbol 316 MovieClipUses:108Used by:317
Symbol 317 MovieClipUses:312 314 315 316Used by:329
Symbol 318 MovieClipUses:313Used by:323
Symbol 319 MovieClipUses:313Used by:323
Symbol 320 MovieClipUses:114Used by:323
Symbol 321 MovieClipUses:262Used by:323
Symbol 322 MovieClipUses:13Used by:323
Symbol 323 MovieClipUses:318 319 320 321 322Used by:329
Symbol 324 MovieClipUses:13Used by:328
Symbol 325 GraphicUsed by:326 406
Symbol 326 MovieClipUses:325Used by:328
Symbol 327 MovieClipUses:2Used by:328
Symbol 328 MovieClipUses:324 326 327Used by:329
Symbol 329 MovieClip [ScrollThumb]Uses:317 323 328
Symbol 330 MovieClipUses:262Used by:337
Symbol 331 GraphicUsed by:332 411
Symbol 332 MovieClipUses:331Used by:337
Symbol 333 MovieClipUses:79Used by:337
Symbol 334 MovieClipUses:281Used by:337
Symbol 335 MovieClipUses:283Used by:337
Symbol 336 MovieClipUses:285Used by:337
Symbol 337 MovieClipUses:330 332 333 334 335 336Used by:354
Symbol 338 MovieClipUses:285Used by:345
Symbol 339 MovieClipUses:283Used by:345
Symbol 340 MovieClipUses:290Used by:345
Symbol 341 MovieClipUses:292Used by:345
Symbol 342 MovieClipUses:262Used by:345
Symbol 343 GraphicUsed by:344 422
Symbol 344 MovieClipUses:343Used by:345
Symbol 345 MovieClipUses:338 339 340 341 342 344Used by:354
Symbol 346 MovieClipUses:298Used by:353
Symbol 347 MovieClipUses:300Used by:353
Symbol 348 MovieClipUses:79Used by:353
Symbol 349 MovieClipUses:281Used by:353
Symbol 350 MovieClipUses:305Used by:353
Symbol 351 GraphicUsed by:352 429
Symbol 352 MovieClipUses:351Used by:353
Symbol 353 MovieClipUses:346 347 348 349 350 352Used by:354
Symbol 354 MovieClip [DownArrow]Uses:337 345 353
Symbol 355 MovieClipUses:136Used by:356
Symbol 356 MovieClip [FHighlightSymbol]Uses:355
Symbol 357 EditableTextUses:139Used by:358
Symbol 358 MovieClip [FLabelSymbol]Uses:357
Symbol 359 MovieClip [FListItemSymbol]Used by:370
Symbol 360 MovieClipUses:262Used by:361
Symbol 361 MovieClipUses:360Used by:362
Symbol 362 MovieClip [FScrollBarSymbol]Uses:361Used by:366
Symbol 363 MovieClip [DataProviderSymbol]Used by:365
Symbol 364 MovieClip [FSelectableItemSymbol]Used by:365
Symbol 365 MovieClip [FSelectableListSymbol]Uses:363 364Used by:366
Symbol 366 MovieClip [FScrollSelectListSymbol]Uses:362 365Used by:370
Symbol 367 MovieClipUses:28Used by:368
Symbol 368 MovieClip [FBoundingBoxSymbol]Uses:367Used by:370
Symbol 369 MovieClipUses:72Used by:370
Symbol 370 MovieClip [FListBoxSymbol]Uses:359 366 368 369
Symbol 371 MovieClip [FUIComponentSymbol]
Symbol 372 MovieClipUses:262Used by:378
Symbol 373 MovieClipUses:278Used by:378
Symbol 374 MovieClipUses:79Used by:378
Symbol 375 MovieClipUses:281Used by:378
Symbol 376 MovieClipUses:283Used by:378
Symbol 377 MovieClipUses:285Used by:378
Symbol 378 MovieClipUses:372 373 374 375 376 377Used by:393
Symbol 379 MovieClipUses:285Used by:385
Symbol 380 MovieClipUses:283Used by:385
Symbol 381 MovieClipUses:290Used by:385
Symbol 382 MovieClipUses:292Used by:385
Symbol 383 MovieClipUses:262Used by:385
Symbol 384 MovieClipUses:295Used by:385
Symbol 385 MovieClipUses:379 380 381 382 383 384Used by:393
Symbol 386 MovieClipUses:298Used by:392
Symbol 387 MovieClipUses:300Used by:392
Symbol 388 MovieClipUses:79Used by:392
Symbol 389 MovieClipUses:303Used by:392
Symbol 390 MovieClipUses:305Used by:392
Symbol 391 MovieClipUses:307Used by:392
Symbol 392 MovieClipUses:386 387 388 389 390 391Used by:393
Symbol 393 MovieClip [UpArrow]Uses:378 385 392
Symbol 394 MovieClipUses:311Used by:398
Symbol 395 MovieClipUses:313Used by:398
Symbol 396 MovieClipUses:13Used by:398
Symbol 397 MovieClipUses:108Used by:398
Symbol 398 MovieClipUses:394 395 396 397Used by:409
Symbol 399 MovieClipUses:313Used by:404
Symbol 400 MovieClipUses:313Used by:404
Symbol 401 MovieClipUses:114Used by:404
Symbol 402 MovieClipUses:262Used by:404
Symbol 403 MovieClipUses:13Used by:404
Symbol 404 MovieClipUses:399 400 401 402 403Used by:409
Symbol 405 MovieClipUses:13Used by:408
Symbol 406 MovieClipUses:325Used by:408
Symbol 407 MovieClipUses:2Used by:408
Symbol 408 MovieClipUses:405 406 407Used by:409
Symbol 409 MovieClip [ScrollThumb]Uses:398 404 408
Symbol 410 MovieClipUses:262Used by:416
Symbol 411 MovieClipUses:331Used by:416
Symbol 412 MovieClipUses:79Used by:416
Symbol 413 MovieClipUses:281Used by:416
Symbol 414 MovieClipUses:283Used by:416
Symbol 415 MovieClipUses:285Used by:416
Symbol 416 MovieClipUses:410 411 412 413 414 415Used by:431
Symbol 417 MovieClipUses:285Used by:423
Symbol 418 MovieClipUses:283Used by:423
Symbol 419 MovieClipUses:290Used by:423
Symbol 420 MovieClipUses:292Used by:423
Symbol 421 MovieClipUses:262Used by:423
Symbol 422 MovieClipUses:343Used by:423
Symbol 423 MovieClipUses:417 418 419 420 421 422Used by:431
Symbol 424 MovieClipUses:298Used by:430
Symbol 425 MovieClipUses:300Used by:430
Symbol 426 MovieClipUses:79Used by:430
Symbol 427 MovieClipUses:281Used by:430
Symbol 428 MovieClipUses:305Used by:430
Symbol 429 MovieClipUses:351Used by:430
Symbol 430 MovieClipUses:424 425 426 427 428 429Used by:431
Symbol 431 MovieClip [DownArrow]Uses:416 423 430
Symbol 432 MovieClipUses:136Used by:433
Symbol 433 MovieClip [FHighlightSymbol]Uses:432
Symbol 434 EditableTextUses:139Used by:435
Symbol 435 MovieClip [FLabelSymbol]Uses:434
Symbol 436 GraphicUsed by:461
Symbol 437 MovieClip [mcVoiceImage]Used by:461
Symbol 438 MovieClipUsed by:461
Symbol 439 FontUsed by:440 454 565
Symbol 440 EditableTextUses:439Used by:461
Symbol 441 GraphicUsed by:446
Symbol 442 GraphicUsed by:446
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:443Used by:445
Symbol 445 MovieClip [mcSquares]Uses:444Used by:446
Symbol 446 MovieClip [mProgress]Uses:441 442 445Used by:461
Symbol 447 GraphicUsed by:451 521 554
Symbol 448 FontUsed by:449 515 522 556 564 572 771 784 792
Symbol 449 TextUses:448Used by:451 521 554
Symbol 450 GraphicUsed by:451 521 554
Symbol 451 ButtonUses:447 449 450Used by:461
Symbol 452 GraphicUsed by:453
Symbol 453 ButtonUses:452Used by:461 566
Symbol 454 EditableTextUses:439Used by:461
Symbol 455 GraphicUsed by:456
Symbol 456 MovieClip [grPhoneIcon]Uses:455Used by:461
Symbol 457 GraphicUsed by:460 544
Symbol 458 GraphicUsed by:460 544
Symbol 459 GraphicUsed by:460 544
Symbol 460 ButtonUses:457 458 459Used by:461
Symbol 461 MovieClip [mcCall]Uses:436 437 438 440 446 451 453 454 456 460
Symbol 462 GraphicUsed by:464
Symbol 463 GraphicUsed by:464
Symbol 464 MovieClip [callButtonSkin]Uses:462 463
Symbol 465 MovieClip [ListCell]
Symbol 466 MovieClip [FListItemSymbol]Used by:477
Symbol 467 MovieClipUses:13Used by:468
Symbol 468 MovieClipUses:467Used by:469
Symbol 469 MovieClip [FScrollBarSymbol]Uses:468Used by:473
Symbol 470 MovieClip [DataProviderSymbol]Used by:472
Symbol 471 MovieClip [FSelectableItemSymbol]Used by:472
Symbol 472 MovieClip [FSelectableListSymbol]Uses:470 471Used by:473
Symbol 473 MovieClip [FScrollSelectListSymbol]Uses:469 472Used by:477
Symbol 474 MovieClipUses:28Used by:475
Symbol 475 MovieClip [FBoundingBoxSymbol]Uses:474Used by:477
Symbol 476 MovieClipUses:72Used by:477
Symbol 477 MovieClip [FListBoxSymbol]Uses:466 473 475 476
Symbol 478 MovieClip [FUIComponentSymbol]
Symbol 479 MovieClip [UpArrow]Uses:200 201 202
Symbol 480 MovieClipUses:311Used by:484
Symbol 481 MovieClipUses:313Used by:484
Symbol 482 MovieClipUses:13Used by:484
Symbol 483 MovieClipUses:108Used by:484
Symbol 484 MovieClipUses:480 481 482 483Used by:485
Symbol 485 MovieClip [ScrollThumb]Uses:484 210 214
Symbol 486 MovieClip [DownArrow]Uses:132 133 134
Symbol 487 MovieClipUses:136Used by:488
Symbol 488 MovieClip [FHighlightSymbol]Uses:487
Symbol 489 EditableTextUses:139Used by:490
Symbol 490 MovieClip [FLabelSymbol]Uses:489
Symbol 491 MovieClip [ButtonCellRenderer]
Symbol 492 BitmapUsed by:493
Symbol 493 GraphicUses:492Used by:494
Symbol 494 MovieClip [at]Uses:493
Symbol 495 MovieClip [RoomListBox]
Symbol 496 MovieClip [ChatAreaClp]
Symbol 497 MovieClipUses:13Used by:500
Symbol 498 GraphicUsed by:499 500
Symbol 499 MovieClipUses:498Used by:500
Symbol 500 ButtonUses:497 499 498Used by:503
Symbol 501 FontUsed by:502 523 524 531 543 548 553 567 573 574
Symbol 502 TextUses:501Used by:503
Symbol 503 MovieClip [MenuItem]Uses:500 502Used by:508
Symbol 504 GraphicUsed by:517
Symbol 505 GraphicUsed by:508
Symbol 506 GraphicUsed by:507
Symbol 507 MovieClipUses:506Used by:508
Symbol 508 MovieClipUses:505 507 503Used by:517
Symbol 509 GraphicUsed by:514 796
Symbol 510 GraphicUsed by:511 514 796
Symbol 511 MovieClipUses:510Used by:514 774 796
Symbol 512 GraphicUsed by:514 796
Symbol 513 GraphicUsed by:514 796
Symbol 514 ButtonUses:509 511 512 513 510Used by:517
Symbol 515 TextUses:448Used by:517
Symbol 516 MovieClipUsed by:517
Symbol 517 MovieClip [OptionsMc]Uses:504 508 514 515 516
Symbol 518 GraphicUsed by:525
Symbol 519 GraphicUsed by:520
Symbol 520 MovieClipUses:519Used by:525 575  Timeline
Symbol 521 ButtonUses:447 449 450Used by:525 575
Symbol 522 TextUses:448Used by:525
Symbol 523 TextUses:501Used by:525
Symbol 524 EditableTextUses:501Used by:525
Symbol 525 MovieClip [NickWindowSymbol]Uses:518 520 521 522 523 524
Symbol 526 GraphicUsed by:528
Symbol 527 GraphicUsed by:528
Symbol 528 ButtonUses:526 527Used by:540
Symbol 529 GraphicUsed by:530
Symbol 530 ButtonUses:529Used by:540
Symbol 531 EditableTextUses:501Used by:540
Symbol 532 GraphicUsed by:533
Symbol 533 MovieClipUses:532Used by:540
Symbol 534 GraphicUsed by:535
Symbol 535 MovieClipUses:534Used by:540
Symbol 536 GraphicUsed by:537
Symbol 537 MovieClipUses:536Used by:540
Symbol 538 GraphicUsed by:539
Symbol 539 MovieClipUses:538Used by:540
Symbol 540 MovieClip [ChannelTab]Uses:528 530 531 533 535 537 539
Symbol 541 FontUsed by:542 778 790
Symbol 542 EditableTextUses:541Used by:545
Symbol 543 EditableTextUses:501Used by:545
Symbol 544 ButtonUses:457 458 459Used by:545
Symbol 545 MovieClip [ChatArea]Uses:542 543 62 544
Symbol 546 GraphicUsed by:547
Symbol 547 MovieClipUses:546Used by:549
Symbol 548 EditableTextUses:501Used by:549
Symbol 549 MovieClip [ToolTip]Uses:547 548
Symbol 550 MovieClipUses:144Used by:551
Symbol 551 MovieClip [FCheckBoxSymbol]Uses:30 550Used by:566
Symbol 552 GraphicUsed by:566
Symbol 553 EditableTextUses:501Used by:566
Symbol 554 ButtonUses:447 449 450Used by:566
Symbol 555 GraphicUsed by:559
Symbol 556 TextUses:448Used by:559
Symbol 557 GraphicUsed by:559
Symbol 558 GraphicUsed by:559
Symbol 559 ButtonUses:555 556 557 558Used by:566
Symbol 560 GraphicUsed by:563
Symbol 561 GraphicUsed by:563
Symbol 562 GraphicUsed by:563
Symbol 563 ButtonUses:560 561 562Used by:566
Symbol 564 TextUses:448Used by:566
Symbol 565 EditableTextUses:439Used by:566
Symbol 566 MovieClip [PrefSymbol]Uses:552 551 553 554 559 563 564 453 565
Symbol 567 EditableTextUses:501Used by:568
Symbol 568 MovieClip [UserInput]Uses:567Used by:Timeline
Symbol 569 GraphicUsed by:570
Symbol 570 MovieClip [TabHandler]Uses:569Used by:Timeline
Symbol 571 GraphicUsed by:575
Symbol 572 TextUses:448Used by:575
Symbol 573 TextUses:501Used by:575
Symbol 574 EditableTextUses:501Used by:575
Symbol 575 MovieClip [NickWindowSymbol]Uses:571 520 521 572 573 574Used by:Timeline
Symbol 581 FontUsed by:582 729
Symbol 582 EditableTextUses:581Used by:673
Symbol 583 GraphicUsed by:584
Symbol 584 MovieClip [BoundingBox]Uses:583Used by:602 606 610 669 670 671 672 703 723 727 728 731
Symbol 585 GraphicUsed by:586
Symbol 586 MovieClip [BrdrShdw]Uses:585Used by:589 594 595
Symbol 587 GraphicUsed by:588
Symbol 588 MovieClip [BrdrFace]Uses:587Used by:589 594 595
Symbol 589 MovieClip [SimpleButtonDown]Uses:586 588Used by:606
Symbol 590 GraphicUsed by:591
Symbol 591 MovieClip [BrdrBlk]Uses:590Used by:594 595
Symbol 592 GraphicUsed by:593
Symbol 593 MovieClip [BrdrHilght]Uses:592Used by:594 595
Symbol 594 MovieClip [SimpleButtonIn]Uses:591 593 586 588Used by:606
Symbol 595 MovieClip [SimpleButtonUp]Uses:591 588 586 593Used by:606
Symbol 596 MovieClip [Defaults]Used by:598
Symbol 597 MovieClip [UIObjectExtensions]Used by:598
Symbol 598 MovieClip [UIObject]Uses:596 597Used by:603 605 607
Symbol 599 GraphicUsed by:601
Symbol 600 GraphicUsed by:601
Symbol 601 ButtonUses:599 600Used by:603
Symbol 602 MovieClip [FocusRect]Uses:584Used by:603
Symbol 603 MovieClip [FocusManager]Uses:601 602 598Used by:605
Symbol 604 MovieClip [UIComponentExtensions]Used by:605
Symbol 605 MovieClip [UIComponent]Uses:598 603 604Used by:606 671 723 730
Symbol 606 MovieClip [SimpleButton]Uses:584 589 594 595 605Used by:610 669 670
Symbol 607 MovieClip [Border]Uses:598Used by:608 610
Symbol 608 MovieClip [RectBorder]Uses:607Used by:610 671 730
Symbol 609 MovieClip [ButtonSkin]Used by:610
Symbol 610 MovieClip [Button]Uses:584 606 607 608 609Used by:669 670
Symbol 611 MovieClip [CustomBorder]Used by:669 670
Symbol 612 GraphicUsed by:614 650 651 652 655 656 661
Symbol 613 GraphicUsed by:614 650 651 655 656 661
Symbol 614 MovieClip [ScrollTrack]Uses:612 613Used by:621 626 627 628 662 663 664 665 666 667
Symbol 615 GraphicUsed by:621 626 627 628 662 663 664 665
Symbol 616 GraphicUsed by:621 626 627 628 662 663 664 665
Symbol 617 GraphicUsed by:621 626 627 628 662 663 664 665
Symbol 618 GraphicUsed by:621 626 627 628 662 663 664 665
Symbol 619 GraphicUsed by:621 626 627 628 662 663 664 665
Symbol 620 GraphicUsed by:621 626 627 628
Symbol 621 MovieClip [ScrollDownArrowDisabled]Uses:614 615 616 617 618 619 620Used by:668
Symbol 622 GraphicUsed by:623
Symbol 623 MovieClip [ScrollThemeColor1]Uses:622Used by:626 627 663 664
Symbol 624 GraphicUsed by:625
Symbol 625 MovieClip [ScrollThemeColor2]Uses:624Used by:626 663
Symbol 626 MovieClip [ScrollDownArrowDown]Uses:614 615 623 616 617 618 619 625 620Used by:668
Symbol 627 MovieClip [ScrollDownArrowOver]Uses:614 615 623 616 617 618 619 620Used by:668
Symbol 628 MovieClip [ScrollDownArrowUp]Uses:614 615 616 617 618 619 620Used by:668
Symbol 629 GraphicUsed by:634 639 640 641 657 658 659 660
Symbol 630 GraphicUsed by:634 639 640 641 657 658 659 660
Symbol 631 GraphicUsed by:634 639 640 641 657 658 659 660
Symbol 632 GraphicUsed by:634 639 640 641 657 658 659 660
Symbol 633 GraphicUsed by:634 639 640 641 657 658 659 660
Symbol 634 MovieClip [ScrollThumbBottomDisabled]Uses:629 630 631 632 633Used by:668
Symbol 635 GraphicUsed by:636
Symbol 636 MovieClip [ThumbThemeColor1]Uses:635Used by:639 640 658 659
Symbol 637 GraphicUsed by:638
Symbol 638 MovieClip [ThumbThemeColor3]Uses:637Used by:639 658
Symbol 639 MovieClip [ScrollThumbBottomDown]Uses:629 636 630 631 632 638 633Used by:668
Symbol 640 MovieClip [ScrollThumbBottomOver]Uses:629 636 630 631 632 633Used by:668
Symbol 641 MovieClip [ScrollThumbBottomUp]Uses:629 630 631 632 633Used by:668
Symbol 642 GraphicUsed by:643 646 647 648
Symbol 643 MovieClip [ScrollThumbGripDisabled]Uses:642Used by:668
Symbol 644 GraphicUsed by:645
Symbol 645 MovieClip [ThumbThemeColor2]Uses:644Used by:646 647 650 651 655
Symbol 646 MovieClip [ScrollThumbGripDown]Uses:645 642Used by:668
Symbol 647 MovieClip [ScrollThumbGripOver]Uses:645 642Used by:668
Symbol 648 MovieClip [ScrollThumbGripUp]Uses:642Used by:668
Symbol 649 GraphicUsed by:650 651 655 656
Symbol 650 MovieClip [ScrollThumbMiddleDisabled]Uses:612 649 645 613Used by:668
Symbol 651 MovieClip [ScrollThumbMiddleDown]Uses:612 645 649 613Used by:668
Symbol 652 MovieClipUses:612Used by:655
Symbol 653 GraphicUsed by:654 662 663 664 665
Symbol 654 MovieClipUses:653Used by:655
Symbol 655 MovieClip [ScrollThumbMiddleOver]Uses:612 645 649 652 654 613Used by:668
Symbol 656 MovieClip [ScrollThumbMiddleUp]Uses:612 649 613Used by:668
Symbol 657 MovieClip [ScrollThumbTopDisabled]Uses:629 630 631 632 633Used by:668
Symbol 658 MovieClip [ScrollThumbTopDown]Uses:629 636 630 631 632 638 633Used by:668
Symbol 659 MovieClip [ScrollThumbTopOver]Uses:629 636 630 631 632 633Used by:668
Symbol 660 MovieClip [ScrollThumbTopUp]Uses:629 630 631 632 633Used by:668
Symbol 661 MovieClip [ScrollTrackDisabled]Uses:612 613Used by:668
Symbol 662 MovieClip [ScrollUpArrowDisabled]Uses:614 615 616 617 618 619 653Used by:668
Symbol 663 MovieClip [ScrollUpArrowDown]Uses:614 615 623 616 617 618 619 625 653Used by:668
Symbol 664 MovieClip [ScrollUpArrowOver]Uses:614 615 623 616 617 653 618 619Used by:668
Symbol 665 MovieClip [ScrollUpArrowUp]Uses:614 615 616 617 618 619 653Used by:668
Symbol 666 MovieClip [BtnDownArrow]Uses:614Used by:668
Symbol 667 MovieClip [BtnUpArrow]Uses:614Used by:668
Symbol 668 MovieClip [ScrollBarAssets]Uses:621 626 627 628 634 639 640 641 643 646 647 648 650 651 655 656 657 658 659 660 661 662 663 664 665 666 667Used by:669 670
Symbol 669 MovieClip [HScrollBar]Uses:584 610 606 611 668Used by:672
Symbol 670 MovieClip [VScrollBar]Uses:584 610 606 611 668Used by:672
Symbol 671 MovieClip [View]Uses:584 605 608Used by:672
Symbol 672 MovieClip [ScrollView]Uses:584 669 670 671Used by:673 703 727
Symbol 673 MovieClip [TextArea]Uses:582 672
Symbol 703 MovieClip [ScrollPane]Uses:584 672
Symbol 709 GraphicUsed by:710
Symbol 710 MovieClip [DataHeaderBackGnd]Uses:709Used by:721
Symbol 711 GraphicUsed by:712
Symbol 712 MovieClip [DataHeaderOverlay]Uses:711Used by:721
Symbol 713 GraphicUsed by:714
Symbol 714 MovieClip [DataHeaderSeperator]Uses:713Used by:721
Symbol 715 GraphicUsed by:716
Symbol 716 MovieClip [DataSortArrow]Uses:715Used by:721
Symbol 717 GraphicUsed by:718
Symbol 718 MovieClip [DataStretchBar]Uses:717Used by:721
Symbol 719 GraphicUsed by:720
Symbol 720 MovieClip [cursorStretch]Uses:719Used by:721
Symbol 721 MovieClip [DataGridAssets]Uses:710 712 714 716 718 720Used by:731
Symbol 722 MovieClip [DataGridColumn]Used by:731
Symbol 723 MovieClip [SelectableRow]Uses:605 584Used by:724 727
Symbol 724 MovieClip [DataGridRow]Uses:723Used by:731
Symbol 725 MovieClip [DataProvider]Used by:727
Symbol 726 MovieClip [DataSelector]Used by:727
Symbol 727 MovieClip [ScrollSelectList]Uses:584 725 726 723 672Used by:728
Symbol 728 MovieClip [List]Uses:584 727Used by:731  Timeline
Symbol 729 EditableTextUses:581Used by:730
Symbol 730 MovieClip [TextInput]Uses:729 608 605Used by:731
Symbol 731 MovieClip [DataGrid]Uses:584 721 722 724 728 730
Symbol 737 GraphicUsed by:738 747
Symbol 738 MovieClip [BrdrShdw]Uses:737Used by:742 744 749 753 755 757
Symbol 739 MovieClip [BrdrFace]Uses:59Used by:742 744 749 753 755 757
Symbol 740 GraphicUsed by:741
Symbol 741 MovieClip [SymDownArrowDisabled]Uses:740Used by:742
Symbol 742 MovieClip [ScrollDownArrowDisabled]Uses:738 739 741Used by:762
Symbol 743 MovieClip [SymDownArrow]Uses:126Used by:744 749
Symbol 744 MovieClip [ScrollDownArrowDown]Uses:738 739 743Used by:762
Symbol 745 MovieClip [ScrollTrack]Uses:59Used by:746 756
Symbol 746 MovieClip [BtnDownArrow]Uses:745Used by:749 762
Symbol 747 MovieClip [BrdrBlk]Uses:737Used by:749 757
Symbol 748 MovieClip [BrdrHilght]Uses:13Used by:749 757
Symbol 749 MovieClip [ScrollDownArrowUp]Uses:746 747 739 738 748 743Used by:762
Symbol 750 GraphicUsed by:751
Symbol 751 MovieClip [ScrollTrackDisabled]Uses:750Used by:762
Symbol 752 MovieClip [SymUpArrowDisabled]Uses:307Used by:753
Symbol 753 MovieClip [ScrollUpArrowDisabled]Uses:738 739 752Used by:762
Symbol 754 MovieClip [SymUpArrow]Uses:77Used by:755 757
Symbol 755 MovieClip [ScrollUpArrowDown]Uses:738 739 754Used by:762
Symbol 756 MovieClip [BtnUpArrow]Uses:745Used by:757 762
Symbol 757 MovieClip [ScrollUpArrowUp]Uses:756 747 739 738 748 754Used by:762
Symbol 758 MovieClip [ScrollThumbGripUp]Used by:762
Symbol 759 MovieClip [ScrollThumbGripOver]Used by:762
Symbol 760 MovieClip [ScrollThumbGripDown]Used by:762
Symbol 761 MovieClip [ScrollThumbGripDisabled]Used by:762
Symbol 762 MovieClip [ScrollBarAssets]Uses:742 744 749 751 753 755 757 746 756 758 759 760 761Used by:Timeline
Symbol 576 MovieClip [__Packages.mx.core.UIObject]
Symbol 674 MovieClip [__Packages.mx.skins.SkinElement]
Symbol 675 MovieClip [__Packages.mx.styles.CSSTextStyles]
Symbol 677 MovieClip [__Packages.mx.styles.CSSStyleDeclaration]
Symbol 676 MovieClip [__Packages.mx.styles.StyleManager]
Symbol 577 MovieClip [__Packages.mx.core.UIComponent]
Symbol 797 MovieClip [__Packages.ListCell]
Symbol 690 MovieClip [__Packages.mx.skins.ColoredSkinElement]
Symbol 686 MovieClip [__Packages.mx.controls.SimpleButton]
Symbol 798 MovieClip [__Packages.ButtonCellRenderer]
Symbol 678 MovieClip [__Packages.mx.skins.Border]
Symbol 684 MovieClip [__Packages.mx.skins.CustomBorder]
Symbol 685 MovieClip [__Packages.mx.controls.scrollClasses.ScrollThumb]
Symbol 687 MovieClip [__Packages.mx.controls.scrollClasses.ScrollBar]
Symbol 578 MovieClip [__Packages.mx.core.View]
Symbol 579 MovieClip [__Packages.mx.core.ScrollView]
Symbol 580 MovieClip [__Packages.mx.controls.TextArea]
Symbol 679 MovieClip [__Packages.mx.skins.RectBorder]
Symbol 680 MovieClip [__Packages.mx.managers.DepthManager]
Symbol 681 MovieClip [__Packages.mx.events.EventDispatcher]
Symbol 682 MovieClip [__Packages.mx.events.UIEventDispatcher]
Symbol 683 MovieClip [__Packages.mx.core.ExternalContent]
Symbol 688 MovieClip [__Packages.mx.controls.HScrollBar]
Symbol 689 MovieClip [__Packages.mx.controls.Button]
Symbol 691 MovieClip [__Packages.mx.core.ext.UIObjectExtensions]
Symbol 692 MovieClip [__Packages.mx.skins.halo.Defaults]
Symbol 693 MovieClip [__Packages.mx.managers.SystemManager]
Symbol 694 MovieClip [__Packages.mx.managers.FocusManager]
Symbol 695 MovieClip [__Packages.mx.skins.halo.FocusRect]
Symbol 696 MovieClip [__Packages.mx.managers.OverlappedWindows]
Symbol 697 MovieClip [__Packages.mx.styles.CSSSetStyle]
Symbol 698 MovieClip [__Packages.mx.core.ext.UIComponentExtensions]
Symbol 699 MovieClip [__Packages.mx.skins.halo.RectBorder]
Symbol 700 MovieClip [__Packages.mx.skins.halo.ButtonSkin]
Symbol 701 MovieClip [__Packages.mx.controls.VScrollBar]
Symbol 702 MovieClip [__Packages.mx.containers.ScrollPane]
Symbol 704 MovieClip [__Packages.mx.controls.listclasses.DataSelector]
Symbol 705 MovieClip [__Packages.mx.controls.listclasses.DataProvider]
Symbol 706 MovieClip [__Packages.mx.controls.listclasses.ScrollSelectList]
Symbol 707 MovieClip [__Packages.mx.controls.List]
Symbol 708 MovieClip [__Packages.mx.controls.DataGrid]
Symbol 732 MovieClip [__Packages.mx.effects.Tween]
Symbol 733 MovieClip [__Packages.mx.controls.gridclasses.DataGridColumn]
Symbol 734 MovieClip [__Packages.mx.controls.listclasses.SelectableRow]
Symbol 735 MovieClip [__Packages.mx.controls.gridclasses.DataGridRow]
Symbol 736 MovieClip [__Packages.mx.controls.TextInput]
Symbol 763 GraphicUsed by:Timeline
Symbol 764 GraphicUsed by:Timeline
Symbol 765 GraphicUsed by:766
Symbol 766 MovieClipUses:765Used by:Timeline
Symbol 767 GraphicUsed by:Timeline
Symbol 768 GraphicUsed by:769
Symbol 769 MovieClipUses:768Used by:788 789  Timeline
Symbol 770 GraphicUsed by:772
Symbol 771 TextUses:448Used by:772
Symbol 772 MovieClipUses:770 771Used by:Timeline
Symbol 773 GraphicUsed by:774
Symbol 774 MovieClipUses:773 511Used by:Timeline
Symbol 775 GraphicUsed by:Timeline
Symbol 776 FontUsed by:777 779
Symbol 777 TextUses:776Used by:Timeline
Symbol 778 TextUses:541Used by:Timeline
Symbol 779 EditableTextUses:776Used by:Timeline
Symbol 780 FontUsed by:781 782
Symbol 781 TextUses:780Used by:Timeline
Symbol 782 TextUses:780Used by:Timeline
Symbol 783 GraphicUsed by:Timeline
Symbol 784 TextUses:448Used by:Timeline
Symbol 785 GraphicUsed by:788 789
Symbol 786 GraphicUsed by:788 789
Symbol 787 GraphicUsed by:788 789
Symbol 788 ButtonUses:785 769 786 787Used by:Timeline
Symbol 789 ButtonUses:785 769 786 787Used by:Timeline
Symbol 790 EditableTextUses:541Used by:Timeline
Symbol 791 GraphicUsed by:795
Symbol 792 TextUses:448Used by:795
Symbol 793 GraphicUsed by:795
Symbol 794 GraphicUsed by:795
Symbol 795 ButtonUses:791 792 793 794Used by:Timeline
Symbol 796 ButtonUses:509 511 512 513 510Used by:Timeline

Instance Names

"NickWin"Frame 2Symbol 575 MovieClip [NickWindowSymbol]
"UserList"Frame 3Symbol 728 MovieClip [List]
"ICQRooms"Frame 3Symbol 728 MovieClip [List]
"moreTabs"Frame 3Symbol 790 EditableText
"disableSend"Frame 3Symbol 772 MovieClip
"UserInput"Frame 3Symbol 568 MovieClip [UserInput]
"highlight3D_mc"Symbol 12 MovieClip Frame 1Symbol 5 MovieClip
"highlight_mc"Symbol 12 MovieClip Frame 1Symbol 7 MovieClip
"shadow_mc"Symbol 12 MovieClip Frame 1Symbol 9 MovieClip
"darkshadow_mc"Symbol 12 MovieClip Frame 1Symbol 11 MovieClip
"background_mc"Symbol 15 MovieClip Frame 1Symbol 14 MovieClip
"background_mc"Symbol 18 MovieClip Frame 1Symbol 17 MovieClip
"background_mc"Symbol 20 MovieClip Frame 1Symbol 19 MovieClip
"check_mc"Symbol 23 MovieClip Frame 1Symbol 22 MovieClip
"check_mc"Symbol 26 MovieClip Frame 1Symbol 25 MovieClip
"fcb_frame_mc"Symbol 27 MovieClip [fcb_states] Frame 1Symbol 12 MovieClip
"frb_frame_mc"Symbol 27 MovieClip [fcb_states] Frame 1Symbol 15 MovieClip
"boundingBox"Symbol 30 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 29 MovieClip
"boundingBox2"Symbol 30 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 29 MovieClip
"boundingBox_mc"Symbol 33 MovieClip [FRadioButtonSymbol] Frame 1Symbol 30 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 33 MovieClip [FRadioButtonSymbol] Frame 1Symbol 32 MovieClip
"darkshadow_mc"Symbol 43 MovieClip Frame 1Symbol 36 MovieClip
"shadow_mc"Symbol 43 MovieClip Frame 1Symbol 38 MovieClip
"highlight_mc"Symbol 43 MovieClip Frame 1Symbol 40 MovieClip
"highlight3D_mc"Symbol 43 MovieClip Frame 1Symbol 42 MovieClip
"background_mc"Symbol 46 MovieClip Frame 1Symbol 45 MovieClip
"background_mc"Symbol 49 MovieClip Frame 1Symbol 48 MovieClip
"background_mc"Symbol 51 MovieClip Frame 1Symbol 50 MovieClip
"disabled_mc"Symbol 54 MovieClip Frame 1Symbol 53 MovieClip
"dot_mc"Symbol 57 MovieClip Frame 1Symbol 56 MovieClip
"frb_frame_mc"Symbol 58 MovieClip [frb_states] Frame 1Symbol 43 MovieClip
"track_mc"Symbol 61 MovieClip Frame 1Symbol 60 MovieClip
"scrollTrack_mc"Symbol 62 MovieClip [FScrollBarSymbol] Frame 1Symbol 61 MovieClip
"dPAsset"Symbol 65 MovieClip [FSelectableListSymbol] Frame 1Symbol 63 MovieClip [DataProviderSymbol]
"ItemAsset"Symbol 65 MovieClip [FSelectableListSymbol] Frame 1Symbol 64 MovieClip [FSelectableItemSymbol]
"scrollBarAsset"Symbol 66 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 62 MovieClip [FScrollBarSymbol]
"superClassAsset"Symbol 66 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 65 MovieClip [FSelectableListSymbol]
"superClassAsset"Symbol 70 MovieClip [FComboBoxSymbol] Frame 1Symbol 66 MovieClip [FScrollSelectListSymbol]
"itemAsset"Symbol 70 MovieClip [FComboBoxSymbol] Frame 1Symbol 67 MovieClip [FComboBoxItemSymbol]
"proxyBox_mc"Symbol 70 MovieClip [FComboBoxSymbol] Frame 1Symbol 30 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 70 MovieClip [FComboBoxSymbol] Frame 1Symbol 69 MovieClip
"itemAsset"Symbol 74 MovieClip [FListBoxSymbol] Frame 1Symbol 71 MovieClip [FListItemSymbol]
"superClassAsset"Symbol 74 MovieClip [FListBoxSymbol] Frame 1Symbol 66 MovieClip [FScrollSelectListSymbol]
"boundingBox_mc"Symbol 74 MovieClip [FListBoxSymbol] Frame 1Symbol 30 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 74 MovieClip [FListBoxSymbol] Frame 1Symbol 73 MovieClip
"face_mc"Symbol 87 MovieClip Frame 1Symbol 76 MovieClip
"arrow_mc"Symbol 87 MovieClip Frame 1Symbol 78 MovieClip
"highlight_mc"Symbol 87 MovieClip Frame 1Symbol 80 MovieClip
"shadow_mc"Symbol 87 MovieClip Frame 1Symbol 82 MovieClip
"darkshadow_mc"Symbol 87 MovieClip Frame 1Symbol 84 MovieClip
"highlight3D_mc"Symbol 87 MovieClip Frame 1Symbol 86 MovieClip
"highlight3D_mc"Symbol 100 MovieClip Frame 1Symbol 89 MovieClip
"darkshadow_mc"Symbol 100 MovieClip Frame 1Symbol 91 MovieClip
"highlight_mc"Symbol 100 MovieClip Frame 1Symbol 93 MovieClip
"shadow_mc"Symbol 100 MovieClip Frame 1Symbol 95 MovieClip
"face_mc"Symbol 100 MovieClip Frame 1Symbol 97 MovieClip
"arrow_mc"Symbol 100 MovieClip Frame 1Symbol 99 MovieClip
"highlight3D_mc"Symbol 101 MovieClip Frame 1Symbol 89 MovieClip
"darkshadow_mc"Symbol 101 MovieClip Frame 1Symbol 91 MovieClip
"highlight_mc"Symbol 101 MovieClip Frame 1Symbol 93 MovieClip
"shadow_mc"Symbol 101 MovieClip Frame 1Symbol 95 MovieClip
"face_mc"Symbol 101 MovieClip Frame 1Symbol 97 MovieClip
"arrow_mc"Symbol 101 MovieClip Frame 1Symbol 99 MovieClip
"up"Symbol 102 MovieClip [UpArrow] Frame 1Symbol 87 MovieClip
"down"Symbol 102 MovieClip [UpArrow] Frame 2Symbol 100 MovieClip
"disabled"Symbol 102 MovieClip [UpArrow] Frame 3Symbol 101 MovieClip
"highlight3D_mc"Symbol 110 MovieClip Frame 1Symbol 104 MovieClip
"darkshadow_mc"Symbol 110 MovieClip Frame 1Symbol 106 MovieClip
"highlight_mc"Symbol 110 MovieClip Frame 1Symbol 107 MovieClip
"shadow_mc"Symbol 110 MovieClip Frame 1Symbol 109 MovieClip
"highlight3D_mc"Symbol 118 MovieClip Frame 1Symbol 112 MovieClip
"darkshadow_mc"Symbol 118 MovieClip Frame 1Symbol 113 MovieClip
"shadow_mc"Symbol 118 MovieClip Frame 1Symbol 115 MovieClip
"face_mc"Symbol 118 MovieClip Frame 1Symbol 116 MovieClip
"highlight_mc"Symbol 118 MovieClip Frame 1Symbol 117 MovieClip
"shadow_mc"Symbol 123 MovieClip Frame 1Symbol 119 MovieClip
"darkshadow_mc"Symbol 123 MovieClip Frame 1Symbol 121 MovieClip
"highlight3D_mc"Symbol 123 MovieClip Frame 1Symbol 122 MovieClip
"mc_sliderTop"Symbol 124 MovieClip [ScrollThumb] Frame 1Symbol 110 MovieClip
"mc_sliderMid"Symbol 124 MovieClip [ScrollThumb] Frame 1Symbol 118 MovieClip
"mc_sliderBot"Symbol 124 MovieClip [ScrollThumb] Frame 1Symbol 123 MovieClip
"face_mc"Symbol 132 MovieClip Frame 1Symbol 125 MovieClip
"arrow_mc"Symbol 132 MovieClip Frame 1Symbol 127 MovieClip
"highlight_mc"Symbol 132 MovieClip Frame 1Symbol 128 MovieClip
"shadow_mc"Symbol 132 MovieClip Frame 1Symbol 129 MovieClip
"darkshadow_mc"Symbol 132 MovieClip Frame 1Symbol 130 MovieClip
"highlight3D_mc"Symbol 132 MovieClip Frame 1Symbol 131 MovieClip
"face_mc"Symbol 133 MovieClip Frame 1Symbol 125 MovieClip
"arrow_mc"Symbol 133 MovieClip Frame 1Symbol 127 MovieClip
"highlight_mc"Symbol 133 MovieClip Frame 1Symbol 128 MovieClip
"shadow_mc"Symbol 133 MovieClip Frame 1Symbol 129 MovieClip
"darkshadow_mc"Symbol 133 MovieClip Frame 1Symbol 130 MovieClip
"highlight3D_mc"Symbol 133 MovieClip Frame 1Symbol 131 MovieClip
"highlight3D_mc"Symbol 134 MovieClip Frame 1Symbol 89 MovieClip
"darkshadow_mc"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"highlight_mc"Symbol 134 MovieClip Frame 1Symbol 93 MovieClip
"shadow_mc"Symbol 134 MovieClip Frame 1Symbol 95 MovieClip
"face_mc"Symbol 134 MovieClip Frame 1Symbol 97 MovieClip
"arrow_mc"Symbol 134 MovieClip Frame 1Symbol 99 MovieClip
"up"Symbol 135 MovieClip [DownArrow] Frame 1Symbol 132 MovieClip
"down"Symbol 135 MovieClip [DownArrow] Frame 2Symbol 133 MovieClip
"disabled"Symbol 135 MovieClip [DownArrow] Frame 3Symbol 134 MovieClip
"highlight_mc"Symbol 138 MovieClip [FHighlightSymbol] Frame 1Symbol 137 MovieClip
"highlight_mc2"Symbol 138 MovieClip [FHighlightSymbol] Frame 2Symbol 137 MovieClip
"highlight_mc3"Symbol 138 MovieClip [FHighlightSymbol] Frame 3Symbol 137 MovieClip
"labelField"Symbol 141 MovieClip [FLabelSymbol] Frame 1Symbol 140 EditableText
"boundingBox"Symbol 143 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 142 MovieClip
"boundingBox2"Symbol 143 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 142 MovieClip
"boundingBox_mc"Symbol 146 MovieClip [FCheckBoxSymbol] Frame 1Symbol 143 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 146 MovieClip [FCheckBoxSymbol] Frame 1Symbol 145 MovieClip
"highlight3D_mc"Symbol 152 MovieClip Frame 1Symbol 148 MovieClip
"highlight_mc"Symbol 152 MovieClip Frame 1Symbol 149 MovieClip
"shadow_mc"Symbol 152 MovieClip Frame 1Symbol 150 MovieClip
"darkshadow_mc"Symbol 152 MovieClip Frame 1Symbol 151 MovieClip
"background_mc"Symbol 154 MovieClip Frame 1Symbol 153 MovieClip
"background_mc"Symbol 156 MovieClip Frame 1Symbol 155 MovieClip
"background_mc"Symbol 159 MovieClip Frame 1Symbol 158 MovieClip
"check_mc"Symbol 161 MovieClip Frame 1Symbol 160 MovieClip
"check_mc"Symbol 163 MovieClip Frame 1Symbol 162 MovieClip
"fcb_frame_mc"Symbol 164 MovieClip [fcb_states] Frame 1Symbol 152 MovieClip
"frb_frame_mc"Symbol 164 MovieClip [fcb_states] Frame 1Symbol 154 MovieClip
"boundingBox_mc"Symbol 167 MovieClip [FRadioButtonSymbol] Frame 1Symbol 143 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 167 MovieClip [FRadioButtonSymbol] Frame 1Symbol 166 MovieClip
"darkshadow_mc"Symbol 173 MovieClip Frame 1Symbol 169 MovieClip
"shadow_mc"Symbol 173 MovieClip Frame 1Symbol 170 MovieClip
"highlight_mc"Symbol 173 MovieClip Frame 1Symbol 171 MovieClip
"highlight3D_mc"Symbol 173 MovieClip Frame 1Symbol 172 MovieClip
"background_mc"Symbol 175 MovieClip Frame 1Symbol 174 MovieClip
"background_mc"Symbol 177 MovieClip Frame 1Symbol 176 MovieClip
"background_mc"Symbol 179 MovieClip Frame 1Symbol 178 MovieClip
"disabled_mc"Symbol 181 MovieClip Frame 1Symbol 180 MovieClip
"dot_mc"Symbol 183 MovieClip Frame 1Symbol 182 MovieClip
"frb_frame_mc"Symbol 184 MovieClip [frb_states] Frame 1Symbol 173 MovieClip
"track_mc"Symbol 187 MovieClip Frame 1Symbol 186 MovieClip
"scrollTrack_mc"Symbol 188 MovieClip [FScrollBarSymbol] Frame 1Symbol 187 MovieClip
"dPAsset"Symbol 191 MovieClip [FSelectableListSymbol] Frame 1Symbol 189 MovieClip [DataProviderSymbol]
"ItemAsset"Symbol 191 MovieClip [FSelectableListSymbol] Frame 1Symbol 190 MovieClip [FSelectableItemSymbol]
"scrollBarAsset"Symbol 192 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 188 MovieClip [FScrollBarSymbol]
"superClassAsset"Symbol 192 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 191 MovieClip [FSelectableListSymbol]
"superClassAsset"Symbol 195 MovieClip [FComboBoxSymbol] Frame 1Symbol 192 MovieClip [FScrollSelectListSymbol]
"itemAsset"Symbol 195 MovieClip [FComboBoxSymbol] Frame 1Symbol 193 MovieClip [FComboBoxItemSymbol]
"proxyBox_mc"Symbol 195 MovieClip [FComboBoxSymbol] Frame 1Symbol 143 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 195 MovieClip [FComboBoxSymbol] Frame 1Symbol 194 MovieClip
"itemAsset"Symbol 198 MovieClip [FListBoxSymbol] Frame 1Symbol 196 MovieClip [FListItemSymbol]
"superClassAsset"Symbol 198 MovieClip [FListBoxSymbol] Frame 1Symbol 192 MovieClip [FScrollSelectListSymbol]
"boundingBox_mc"Symbol 198 MovieClip [FListBoxSymbol] Frame 1Symbol 143 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 198 MovieClip [FListBoxSymbol] Frame 1Symbol 197 MovieClip
"face_mc"Symbol 200 MovieClip Frame 1Symbol 76 MovieClip
"arrow_mc"Symbol 200 MovieClip Frame 1Symbol 78 MovieClip
"highlight_mc"Symbol 200 MovieClip Frame 1Symbol 80 MovieClip
"shadow_mc"Symbol 200 MovieClip Frame 1Symbol 82 MovieClip
"darkshadow_mc"Symbol 200 MovieClip Frame 1Symbol 84 MovieClip
"highlight3D_mc"Symbol 200 MovieClip Frame 1Symbol 86 MovieClip
"highlight3D_mc"Symbol 201 MovieClip Frame 1Symbol 89 MovieClip
"darkshadow_mc"Symbol 201 MovieClip Frame 1Symbol 91 MovieClip
"highlight_mc"Symbol 201 MovieClip Frame 1Symbol 93 MovieClip
"shadow_mc"Symbol 201 MovieClip Frame 1Symbol 95 MovieClip
"face_mc"Symbol 201 MovieClip Frame 1Symbol 97 MovieClip
"arrow_mc"Symbol 201 MovieClip Frame 1Symbol 99 MovieClip
"highlight3D_mc"Symbol 202 MovieClip Frame 1Symbol 89 MovieClip
"darkshadow_mc"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"highlight_mc"Symbol 202 MovieClip Frame 1Symbol 93 MovieClip
"shadow_mc"Symbol 202 MovieClip Frame 1Symbol 95 MovieClip
"face_mc"Symbol 202 MovieClip Frame 1Symbol 97 MovieClip
"arrow_mc"Symbol 202 MovieClip Frame 1Symbol 99 MovieClip
"up"Symbol 203 MovieClip [UpArrow] Frame 1Symbol 200 MovieClip
"down"Symbol 203 MovieClip [UpArrow] Frame 2Symbol 201 MovieClip
"disabled"Symbol 203 MovieClip [UpArrow] Frame 3Symbol 202 MovieClip
"highlight3D_mc"Symbol 204 MovieClip Frame 1Symbol 104 MovieClip
"darkshadow_mc"Symbol 204 MovieClip Frame 1Symbol 106 MovieClip
"highlight_mc"Symbol 204 MovieClip Frame 1Symbol 107 MovieClip
"shadow_mc"Symbol 204 MovieClip Frame 1Symbol 109 MovieClip
"highlight3D_mc"Symbol 210 MovieClip Frame 1Symbol 205 MovieClip
"darkshadow_mc"Symbol 210 MovieClip Frame 1Symbol 206 MovieClip
"shadow_mc"Symbol 210 MovieClip Frame 1Symbol 207 MovieClip
"face_mc"Symbol 210 MovieClip Frame 1Symbol 208 MovieClip
"highlight_mc"Symbol 210 MovieClip Frame 1Symbol 209 MovieClip
"shadow_mc"Symbol 214 MovieClip Frame 1Symbol 211 MovieClip
"darkshadow_mc"Symbol 214 MovieClip Frame 1Symbol 212 MovieClip
"highlight3D_mc"Symbol 214 MovieClip Frame 1Symbol 213 MovieClip
"mc_sliderTop"Symbol 215 MovieClip [ScrollThumb] Frame 1Symbol 204 MovieClip
"mc_sliderMid"Symbol 215 MovieClip [ScrollThumb] Frame 1Symbol 210 MovieClip
"mc_sliderBot"Symbol 215 MovieClip [ScrollThumb] Frame 1Symbol 214 MovieClip
"up"Symbol 216 MovieClip [DownArrow] Frame 1Symbol 132 MovieClip
"down"Symbol 216 MovieClip [DownArrow] Frame 2Symbol 133 MovieClip
"disabled"Symbol 216 MovieClip [DownArrow] Frame 3Symbol 134 MovieClip
"highlight_mc"Symbol 218 MovieClip [FHighlightSymbol] Frame 1Symbol 217 MovieClip
"highlight_mc2"Symbol 218 MovieClip [FHighlightSymbol] Frame 2Symbol 217 MovieClip
"highlight_mc3"Symbol 218 MovieClip [FHighlightSymbol] Frame 3Symbol 217 MovieClip
"labelField"Symbol 220 MovieClip [FLabelSymbol] Frame 1Symbol 219 EditableText
"boundingBox"Symbol 222 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 221 MovieClip
"boundingBox2"Symbol 222 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 221 MovieClip
"boundingBox_mc"Symbol 224 MovieClip [FCheckBoxSymbol] Frame 1Symbol 222 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 224 MovieClip [FCheckBoxSymbol] Frame 1Symbol 223 MovieClip
"highlight3D_mc"Symbol 230 MovieClip Frame 1Symbol 226 MovieClip
"highlight_mc"Symbol 230 MovieClip Frame 1Symbol 227 MovieClip
"shadow_mc"Symbol 230 MovieClip Frame 1Symbol 228 MovieClip
"darkshadow_mc"Symbol 230 MovieClip Frame 1Symbol 229 MovieClip
"background_mc"Symbol 232 MovieClip Frame 1Symbol 231 MovieClip
"background_mc"Symbol 234 MovieClip Frame 1Symbol 233 MovieClip
"background_mc"Symbol 236 MovieClip Frame 1Symbol 235 MovieClip
"check_mc"Symbol 238 MovieClip Frame 1Symbol 237 MovieClip
"check_mc"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"fcb_frame_mc"Symbol 241 MovieClip [fcb_states] Frame 1Symbol 230 MovieClip
"frb_frame_mc"Symbol 241 MovieClip [fcb_states] Frame 1Symbol 232 MovieClip
"boundingBox_mc"Symbol 244 MovieClip [FRadioButtonSymbol] Frame 1Symbol 222 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 244 MovieClip [FRadioButtonSymbol] Frame 1Symbol 243 MovieClip
"darkshadow_mc"Symbol 250 MovieClip Frame 1Symbol 246 MovieClip
"shadow_mc"Symbol 250 MovieClip Frame 1Symbol 247 MovieClip
"highlight_mc"Symbol 250 MovieClip Frame 1Symbol 248 MovieClip
"highlight3D_mc"Symbol 250 MovieClip Frame 1Symbol 249 MovieClip
"background_mc"Symbol 252 MovieClip Frame 1Symbol 251 MovieClip
"background_mc"Symbol 254 MovieClip Frame 1Symbol 253 MovieClip
"background_mc"Symbol 256 MovieClip Frame 1Symbol 255 MovieClip
"disabled_mc"Symbol 258 MovieClip Frame 1Symbol 257 MovieClip
"dot_mc"Symbol 260 MovieClip Frame 1Symbol 259 MovieClip
"frb_frame_mc"Symbol 261 MovieClip [frb_states] Frame 1Symbol 250 MovieClip
"track_mc"Symbol 264 MovieClip Frame 1Symbol 263 MovieClip
"scrollTrack_mc"Symbol 265 MovieClip [FScrollBarSymbol] Frame 1Symbol 264 MovieClip
"dPAsset"Symbol 268 MovieClip [FSelectableListSymbol] Frame 1Symbol 266 MovieClip [DataProviderSymbol]
"ItemAsset"Symbol 268 MovieClip [FSelectableListSymbol] Frame 1Symbol 267 MovieClip [FSelectableItemSymbol]
"scrollBarAsset"Symbol 269 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 265 MovieClip [FScrollBarSymbol]
"superClassAsset"Symbol 269 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 268 MovieClip [FSelectableListSymbol]
"superClassAsset"Symbol 272 MovieClip [FComboBoxSymbol] Frame 1Symbol 269 MovieClip [FScrollSelectListSymbol]
"itemAsset"Symbol 272 MovieClip [FComboBoxSymbol] Frame 1Symbol 270 MovieClip [FComboBoxItemSymbol]
"proxyBox_mc"Symbol 272 MovieClip [FComboBoxSymbol] Frame 1Symbol 222 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 272 MovieClip [FComboBoxSymbol] Frame 1Symbol 271 MovieClip
"itemAsset"Symbol 275 MovieClip [FListBoxSymbol] Frame 1Symbol 273 MovieClip [FListItemSymbol]
"superClassAsset"Symbol 275 MovieClip [FListBoxSymbol] Frame 1Symbol 269 MovieClip [FScrollSelectListSymbol]
"boundingBox_mc"Symbol 275 MovieClip [FListBoxSymbol] Frame 1Symbol 222 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 275 MovieClip [FListBoxSymbol] Frame 1Symbol 274 MovieClip
"face_mc"Symbol 287 MovieClip Frame 1Symbol 277 MovieClip
"arrow_mc"Symbol 287 MovieClip Frame 1Symbol 279 MovieClip
"highlight_mc"Symbol 287 MovieClip Frame 1Symbol 280 MovieClip
"shadow_mc"Symbol 287 MovieClip Frame 1Symbol 282 MovieClip
"darkshadow_mc"Symbol 287 MovieClip Frame 1Symbol 284 MovieClip
"highlight3D_mc"Symbol 287 MovieClip Frame 1Symbol 286 MovieClip
"darkshadow_mc"Symbol 297 MovieClip Frame 1Symbol 288 MovieClip
"highlight3D_mc"Symbol 297 MovieClip Frame 1Symbol 289 MovieClip
"highlight_mc"Symbol 297 MovieClip Frame 1Symbol 291 MovieClip
"shadow_mc"Symbol 297 MovieClip Frame 1Symbol 293 MovieClip
"face_mc"Symbol 297 MovieClip Frame 1Symbol 294 MovieClip
"arrow_mc"Symbol 297 MovieClip Frame 1Symbol 296 MovieClip
"highlight3D_mc"Symbol 309 MovieClip Frame 1Symbol 299 MovieClip
"darkshadow_mc"Symbol 309 MovieClip Frame 1Symbol 301 MovieClip
"highlight_mc"Symbol 309 MovieClip Frame 1Symbol 302 MovieClip
"shadow_mc"Symbol 309 MovieClip Frame 1Symbol 304 MovieClip
"face_mc"Symbol 309 MovieClip Frame 1Symbol 306 MovieClip
"arrow_mc"Symbol 309 MovieClip Frame 1Symbol 308 MovieClip
"up"Symbol 310 MovieClip [UpArrow] Frame 1Symbol 287 MovieClip
"down"Symbol 310 MovieClip [UpArrow] Frame 2Symbol 297 MovieClip
"disabled"Symbol 310 MovieClip [UpArrow] Frame 3Symbol 309 MovieClip
"highlight3D_mc"Symbol 317 MovieClip Frame 1Symbol 312 MovieClip
"darkshadow_mc"Symbol 317 MovieClip Frame 1Symbol 314 MovieClip
"highlight_mc"Symbol 317 MovieClip Frame 1Symbol 315 MovieClip
"shadow_mc"Symbol 317 MovieClip Frame 1Symbol 316 MovieClip
"highlight3D_mc"Symbol 323 MovieClip Frame 1Symbol 318 MovieClip
"darkshadow_mc"Symbol 323 MovieClip Frame 1Symbol 319 MovieClip
"shadow_mc"Symbol 323 MovieClip Frame 1Symbol 320 MovieClip
"face_mc"Symbol 323 MovieClip Frame 1Symbol 321 MovieClip
"highlight_mc"Symbol 323 MovieClip Frame 1Symbol 322 MovieClip
"shadow_mc"Symbol 328 MovieClip Frame 1Symbol 324 MovieClip
"darkshadow_mc"Symbol 328 MovieClip Frame 1Symbol 326 MovieClip
"highlight3D_mc"Symbol 328 MovieClip Frame 1Symbol 327 MovieClip
"mc_sliderTop"Symbol 329 MovieClip [ScrollThumb] Frame 1Symbol 317 MovieClip
"mc_sliderMid"Symbol 329 MovieClip [ScrollThumb] Frame 1Symbol 323 MovieClip
"mc_sliderBot"Symbol 329 MovieClip [ScrollThumb] Frame 1Symbol 328 MovieClip
"face_mc"Symbol 337 MovieClip Frame 1Symbol 330 MovieClip
"arrow_mc"Symbol 337 MovieClip Frame 1Symbol 332 MovieClip
"highlight_mc"Symbol 337 MovieClip Frame 1Symbol 333 MovieClip
"shadow_mc"Symbol 337 MovieClip Frame 1Symbol 334 MovieClip
"darkshadow_mc"Symbol 337 MovieClip Frame 1Symbol 335 MovieClip
"highlight3D_mc"Symbol 337 MovieClip Frame 1Symbol 336 MovieClip
"darkshadow_mc"Symbol 345 MovieClip Frame 1Symbol 338 MovieClip
"highlight3D_mc"Symbol 345 MovieClip Frame 1Symbol 339 MovieClip
"highlight_mc"Symbol 345 MovieClip Frame 1Symbol 340 MovieClip
"shadow_mc"Symbol 345 MovieClip Frame 1Symbol 341 MovieClip
"face_mc"Symbol 345 MovieClip Frame 1Symbol 342 MovieClip
"arrow_mc"Symbol 345 MovieClip Frame 1Symbol 344 MovieClip
"highlight3D_mc"Symbol 353 MovieClip Frame 1Symbol 346 MovieClip
"darkshadow_mc"Symbol 353 MovieClip Frame 1Symbol 347 MovieClip
"highlight_mc"Symbol 353 MovieClip Frame 1Symbol 348 MovieClip
"shadow_mc"Symbol 353 MovieClip Frame 1Symbol 349 MovieClip
"face_mc"Symbol 353 MovieClip Frame 1Symbol 350 MovieClip
"arrow_mc"Symbol 353 MovieClip Frame 1Symbol 352 MovieClip
"up"Symbol 354 MovieClip [DownArrow] Frame 1Symbol 337 MovieClip
"down"Symbol 354 MovieClip [DownArrow] Frame 2Symbol 345 MovieClip
"disabled"Symbol 354 MovieClip [DownArrow] Frame 3Symbol 353 MovieClip
"highlight_mc"Symbol 356 MovieClip [FHighlightSymbol] Frame 1Symbol 355 MovieClip
"highlight_mc2"Symbol 356 MovieClip [FHighlightSymbol] Frame 2Symbol 355 MovieClip
"highlight_mc3"Symbol 356 MovieClip [FHighlightSymbol] Frame 3Symbol 355 MovieClip
"labelField"Symbol 358 MovieClip [FLabelSymbol] Frame 1Symbol 357 EditableText
"track_mc"Symbol 361 MovieClip Frame 1Symbol 360 MovieClip
"scrollTrack_mc"Symbol 362 MovieClip [FScrollBarSymbol] Frame 1Symbol 361 MovieClip
"dPAsset"Symbol 365 MovieClip [FSelectableListSymbol] Frame 1Symbol 363 MovieClip [DataProviderSymbol]
"ItemAsset"Symbol 365 MovieClip [FSelectableListSymbol] Frame 1Symbol 364 MovieClip [FSelectableItemSymbol]
"scrollBarAsset"Symbol 366 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 362 MovieClip [FScrollBarSymbol]
"superClassAsset"Symbol 366 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 365 MovieClip [FSelectableListSymbol]
"boundingBox"Symbol 368 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 367 MovieClip
"boundingBox2"Symbol 368 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 367 MovieClip
"itemAsset"Symbol 370 MovieClip [FListBoxSymbol] Frame 1Symbol 359 MovieClip [FListItemSymbol]
"superClassAsset"Symbol 370 MovieClip [FListBoxSymbol] Frame 1Symbol 366 MovieClip [FScrollSelectListSymbol]
"boundingBox_mc"Symbol 370 MovieClip [FListBoxSymbol] Frame 1Symbol 368 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 370 MovieClip [FListBoxSymbol] Frame 1Symbol 369 MovieClip
"face_mc"Symbol 378 MovieClip Frame 1Symbol 372 MovieClip
"arrow_mc"Symbol 378 MovieClip Frame 1Symbol 373 MovieClip
"highlight_mc"Symbol 378 MovieClip Frame 1Symbol 374 MovieClip
"shadow_mc"Symbol 378 MovieClip Frame 1Symbol 375 MovieClip
"darkshadow_mc"Symbol 378 MovieClip Frame 1Symbol 376 MovieClip
"highlight3D_mc"Symbol 378 MovieClip Frame 1Symbol 377 MovieClip
"darkshadow_mc"Symbol 385 MovieClip Frame 1Symbol 379 MovieClip
"highlight3D_mc"Symbol 385 MovieClip Frame 1Symbol 380 MovieClip
"highlight_mc"Symbol 385 MovieClip Frame 1Symbol 381 MovieClip
"shadow_mc"Symbol 385 MovieClip Frame 1Symbol 382 MovieClip
"face_mc"Symbol 385 MovieClip Frame 1Symbol 383 MovieClip
"arrow_mc"Symbol 385 MovieClip Frame 1Symbol 384 MovieClip
"highlight3D_mc"Symbol 392 MovieClip Frame 1Symbol 386 MovieClip
"darkshadow_mc"Symbol 392 MovieClip Frame 1Symbol 387 MovieClip
"highlight_mc"Symbol 392 MovieClip Frame 1Symbol 388 MovieClip
"shadow_mc"Symbol 392 MovieClip Frame 1Symbol 389 MovieClip
"face_mc"Symbol 392 MovieClip Frame 1Symbol 390 MovieClip
"arrow_mc"Symbol 392 MovieClip Frame 1Symbol 391 MovieClip
"up"Symbol 393 MovieClip [UpArrow] Frame 1Symbol 378 MovieClip
"down"Symbol 393 MovieClip [UpArrow] Frame 2Symbol 385 MovieClip
"disabled"Symbol 393 MovieClip [UpArrow] Frame 3Symbol 392 MovieClip
"highlight3D_mc"Symbol 398 MovieClip Frame 1Symbol 394 MovieClip
"darkshadow_mc"Symbol 398 MovieClip Frame 1Symbol 395 MovieClip
"highlight_mc"Symbol 398 MovieClip Frame 1Symbol 396 MovieClip
"shadow_mc"Symbol 398 MovieClip Frame 1Symbol 397 MovieClip
"highlight3D_mc"Symbol 404 MovieClip Frame 1Symbol 399 MovieClip
"darkshadow_mc"Symbol 404 MovieClip Frame 1Symbol 400 MovieClip
"shadow_mc"Symbol 404 MovieClip Frame 1Symbol 401 MovieClip
"face_mc"Symbol 404 MovieClip Frame 1Symbol 402 MovieClip
"highlight_mc"Symbol 404 MovieClip Frame 1Symbol 403 MovieClip
"shadow_mc"Symbol 408 MovieClip Frame 1Symbol 405 MovieClip
"darkshadow_mc"Symbol 408 MovieClip Frame 1Symbol 406 MovieClip
"highlight3D_mc"Symbol 408 MovieClip Frame 1Symbol 407 MovieClip
"mc_sliderTop"Symbol 409 MovieClip [ScrollThumb] Frame 1Symbol 398 MovieClip
"mc_sliderMid"Symbol 409 MovieClip [ScrollThumb] Frame 1Symbol 404 MovieClip
"mc_sliderBot"Symbol 409 MovieClip [ScrollThumb] Frame 1Symbol 408 MovieClip
"face_mc"Symbol 416 MovieClip Frame 1Symbol 410 MovieClip
"arrow_mc"Symbol 416 MovieClip Frame 1Symbol 411 MovieClip
"highlight_mc"Symbol 416 MovieClip Frame 1Symbol 412 MovieClip
"shadow_mc"Symbol 416 MovieClip Frame 1Symbol 413 MovieClip
"darkshadow_mc"Symbol 416 MovieClip Frame 1Symbol 414 MovieClip
"highlight3D_mc"Symbol 416 MovieClip Frame 1Symbol 415 MovieClip
"darkshadow_mc"Symbol 423 MovieClip Frame 1Symbol 417 MovieClip
"highlight3D_mc"Symbol 423 MovieClip Frame 1Symbol 418 MovieClip
"highlight_mc"Symbol 423 MovieClip Frame 1Symbol 419 MovieClip
"shadow_mc"Symbol 423 MovieClip Frame 1Symbol 420 MovieClip
"face_mc"Symbol 423 MovieClip Frame 1Symbol 421 MovieClip
"arrow_mc"Symbol 423 MovieClip Frame 1Symbol 422 MovieClip
"highlight3D_mc"Symbol 430 MovieClip Frame 1Symbol 424 MovieClip
"darkshadow_mc"Symbol 430 MovieClip Frame 1Symbol 425 MovieClip
"highlight_mc"Symbol 430 MovieClip Frame 1Symbol 426 MovieClip
"shadow_mc"Symbol 430 MovieClip Frame 1Symbol 427 MovieClip
"face_mc"Symbol 430 MovieClip Frame 1Symbol 428 MovieClip
"arrow_mc"Symbol 430 MovieClip Frame 1Symbol 429 MovieClip
"up"Symbol 431 MovieClip [DownArrow] Frame 1Symbol 416 MovieClip
"down"Symbol 431 MovieClip [DownArrow] Frame 2Symbol 423 MovieClip
"disabled"Symbol 431 MovieClip [DownArrow] Frame 3Symbol 430 MovieClip
"highlight_mc"Symbol 433 MovieClip [FHighlightSymbol] Frame 1Symbol 432 MovieClip
"highlight_mc2"Symbol 433 MovieClip [FHighlightSymbol] Frame 2Symbol 432 MovieClip
"highlight_mc3"Symbol 433 MovieClip [FHighlightSymbol] Frame 3Symbol 432 MovieClip
"labelField"Symbol 435 MovieClip [FLabelSymbol] Frame 1Symbol 434 EditableText
"square_mc"Symbol 445 MovieClip [mcSquares] Frame 1Symbol 444 MovieClip
"mcVCImage"Symbol 461 MovieClip [mcCall] Frame 1Symbol 437 MovieClip [mcVoiceImage]
"VCImage"Symbol 461 MovieClip [mcCall] Frame 1Symbol 438 MovieClip
"txtCallStatus"Symbol 461 MovieClip [mcCall] Frame 1Symbol 440 EditableText
"mcProgressBar"Symbol 461 MovieClip [mcCall] Frame 1Symbol 446 MovieClip [mProgress]
"OK"Symbol 461 MovieClip [mcCall] Frame 1Symbol 451 Button
"lblCall"Symbol 461 MovieClip [mcCall] Frame 1Symbol 454 EditableText
"CloseChatButton"Symbol 461 MovieClip [mcCall] Frame 1Symbol 460 Button
"track_mc"Symbol 468 MovieClip Frame 1Symbol 467 MovieClip
"scrollTrack_mc"Symbol 469 MovieClip [FScrollBarSymbol] Frame 1Symbol 468 MovieClip
"dPAsset"Symbol 472 MovieClip [FSelectableListSymbol] Frame 1Symbol 470 MovieClip [DataProviderSymbol]
"ItemAsset"Symbol 472 MovieClip [FSelectableListSymbol] Frame 1Symbol 471 MovieClip [FSelectableItemSymbol]
"scrollBarAsset"Symbol 473 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 469 MovieClip [FScrollBarSymbol]
"superClassAsset"Symbol 473 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 472 MovieClip [FSelectableListSymbol]
"boundingBox"Symbol 475 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 474 MovieClip
"boundingBox2"Symbol 475 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 474 MovieClip
"itemAsset"Symbol 477 MovieClip [FListBoxSymbol] Frame 1Symbol 466 MovieClip [FListItemSymbol]
"superClassAsset"Symbol 477 MovieClip [FListBoxSymbol] Frame 1Symbol 473 MovieClip [FScrollSelectListSymbol]
"boundingBox_mc"Symbol 477 MovieClip [FListBoxSymbol] Frame 1Symbol 475 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 477 MovieClip [FListBoxSymbol] Frame 1Symbol 476 MovieClip
"up"Symbol 479 MovieClip [UpArrow] Frame 1Symbol 200 MovieClip
"down"Symbol 479 MovieClip [UpArrow] Frame 2Symbol 201 MovieClip
"disabled"Symbol 479 MovieClip [UpArrow] Frame 3Symbol 202 MovieClip
"highlight3D_mc"Symbol 484 MovieClip Frame 1Symbol 480 MovieClip
"darkshadow_mc"Symbol 484 MovieClip Frame 1Symbol 481 MovieClip
"highlight_mc"Symbol 484 MovieClip Frame 1Symbol 482 MovieClip
"shadow_mc"Symbol 484 MovieClip Frame 1Symbol 483 MovieClip
"mc_sliderTop"Symbol 485 MovieClip [ScrollThumb] Frame 1Symbol 484 MovieClip
"mc_sliderMid"Symbol 485 MovieClip [ScrollThumb] Frame 1Symbol 210 MovieClip
"mc_sliderBot"Symbol 485 MovieClip [ScrollThumb] Frame 1Symbol 214 MovieClip
"up"Symbol 486 MovieClip [DownArrow] Frame 1Symbol 132 MovieClip
"down"Symbol 486 MovieClip [DownArrow] Frame 2Symbol 133 MovieClip
"disabled"Symbol 486 MovieClip [DownArrow] Frame 3Symbol 134 MovieClip
"highlight_mc"Symbol 488 MovieClip [FHighlightSymbol] Frame 1Symbol 487 MovieClip
"highlight_mc2"Symbol 488 MovieClip [FHighlightSymbol] Frame 2Symbol 487 MovieClip
"highlight_mc3"Symbol 488 MovieClip [FHighlightSymbol] Frame 3Symbol 487 MovieClip
"labelField"Symbol 490 MovieClip [FLabelSymbol] Frame 1Symbol 489 EditableText
"Nick"Symbol 525 MovieClip [NickWindowSymbol] Frame 1Symbol 524 EditableText
"nonpressedButton"Symbol 540 MovieClip [ChannelTab] Frame 1Symbol 528 Button
"pressedButton"Symbol 540 MovieClip [ChannelTab] Frame 1Symbol 530 Button
"Title"Symbol 540 MovieClip [ChannelTab] Frame 1Symbol 531 EditableText
"GeneralImage"Symbol 540 MovieClip [ChannelTab] Frame 1Symbol 533 MovieClip
"SmilyImage"Symbol 540 MovieClip [ChannelTab] Frame 1Symbol 535 MovieClip
"PrivateImage"Symbol 540 MovieClip [ChannelTab] Frame 1Symbol 537 MovieClip
"RoomImage"Symbol 540 MovieClip [ChannelTab] Frame 1Symbol 539 MovieClip
"ChatAreaBox"Symbol 545 MovieClip [ChatArea] Frame 1Symbol 542 EditableText
"topicText"Symbol 545 MovieClip [ChatArea] Frame 1Symbol 543 EditableText
"ChatScroller"Symbol 545 MovieClip [ChatArea] Frame 1Symbol 62 MovieClip [FScrollBarSymbol]
"CloseChatButton"Symbol 545 MovieClip [ChatArea] Frame 1Symbol 544 Button
"tipTextBox"Symbol 549 MovieClip [ToolTip] Frame 5Symbol 548 EditableText
"boundingBox_mc"Symbol 551 MovieClip [FCheckBoxSymbol] Frame 1Symbol 30 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 551 MovieClip [FCheckBoxSymbol] Frame 1Symbol 550 MovieClip
"checkHideMessages"Symbol 566 MovieClip [PrefSymbol] Frame 1Symbol 551 MovieClip [FCheckBoxSymbol]
"checkIgnoreTextFormat"Symbol 566 MovieClip [PrefSymbol] Frame 1Symbol 551 MovieClip [FCheckBoxSymbol]
"checkIgnorePrivMsg"Symbol 566 MovieClip [PrefSymbol] Frame 1Symbol 551 MovieClip [FCheckBoxSymbol]
"checkKnockSound"Symbol 566 MovieClip [PrefSymbol] Frame 1Symbol 551 MovieClip [FCheckBoxSymbol]
"Nick"Symbol 566 MovieClip [PrefSymbol] Frame 1Symbol 553 EditableText
"lblPref"Symbol 566 MovieClip [PrefSymbol] Frame 1Symbol 565 EditableText
"input"Symbol 568 MovieClip [UserInput] Frame 1Symbol 567 EditableText
"Nick"Symbol 575 MovieClip [NickWindowSymbol] Frame 1Symbol 574 EditableText
"b"Symbol 589 MovieClip [SimpleButtonDown] Frame 1Symbol 586 MovieClip [BrdrShdw]
"face"Symbol 589 MovieClip [SimpleButtonDown] Frame 1Symbol 588 MovieClip [BrdrFace]
"b"Symbol 594 MovieClip [SimpleButtonIn] Frame 1Symbol 591 MovieClip [BrdrBlk]
"it"Symbol 594 MovieClip [SimpleButtonIn] Frame 1Symbol 593 MovieClip [BrdrHilght]
"g"Symbol 594 MovieClip [SimpleButtonIn] Frame 1Symbol 586 MovieClip [BrdrShdw]
"face"Symbol 594 MovieClip [SimpleButtonIn] Frame 1Symbol 588 MovieClip [BrdrFace]
"ob"Symbol 595 MovieClip [SimpleButtonUp] Frame 1Symbol 591 MovieClip [BrdrBlk]
"ol"Symbol 595 MovieClip [SimpleButtonUp] Frame 1Symbol 588 MovieClip [BrdrFace]
"ib"Symbol 595 MovieClip [SimpleButtonUp] Frame 1Symbol 586 MovieClip [BrdrShdw]
"il"Symbol 595 MovieClip [SimpleButtonUp] Frame 1Symbol 593 MovieClip [BrdrHilght]
"face"Symbol 595 MovieClip [SimpleButtonUp] Frame 1Symbol 588 MovieClip [BrdrFace]
"boundingBox_mc"Symbol 602 MovieClip [FocusRect] Frame 1Symbol 584 MovieClip [BoundingBox]
"tabCapture"Symbol 603 MovieClip [FocusManager] Frame 1Symbol 601 Button
"boundingBox_mc"Symbol 606 MovieClip [SimpleButton] Frame 1Symbol 584 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 610 MovieClip [Button] Frame 1Symbol 584 MovieClip [BoundingBox]
"dfs"Symbol 666 MovieClip [BtnDownArrow] Frame 1Symbol 614 MovieClip [ScrollTrack]
"dfs"Symbol 667 MovieClip [BtnUpArrow] Frame 1Symbol 614 MovieClip [ScrollTrack]
"boundingBox_mc"Symbol 669 MovieClip [HScrollBar] Frame 1Symbol 584 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 670 MovieClip [VScrollBar] Frame 1Symbol 584 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 671 MovieClip [View] Frame 1Symbol 584 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 672 MovieClip [ScrollView] Frame 1Symbol 584 MovieClip [BoundingBox]
"label"Symbol 673 MovieClip [TextArea] Frame 1Symbol 582 EditableText
"boundingBox_mc"Symbol 703 MovieClip [ScrollPane] Frame 1Symbol 584 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 728 MovieClip [List] Frame 1Symbol 584 MovieClip [BoundingBox]
"label"Symbol 730 MovieClip [TextInput] Frame 1Symbol 729 EditableText
"boundingBox_mc"Symbol 731 MovieClip [DataGrid] Frame 1Symbol 584 MovieClip [BoundingBox]
"border"Symbol 742 MovieClip [ScrollDownArrowDisabled] Frame 1Symbol 738 MovieClip [BrdrShdw]
"face"Symbol 742 MovieClip [ScrollDownArrowDisabled] Frame 1Symbol 739 MovieClip [BrdrFace]
"border"Symbol 744 MovieClip [ScrollDownArrowDown] Frame 1Symbol 738 MovieClip [BrdrShdw]
"face"Symbol 744 MovieClip [ScrollDownArrowDown] Frame 1Symbol 739 MovieClip [BrdrFace]
"dfs"Symbol 746 MovieClip [BtnDownArrow] Frame 1Symbol 745 MovieClip [ScrollTrack]
"ob"Symbol 749 MovieClip [ScrollDownArrowUp] Frame 1Symbol 747 MovieClip [BrdrBlk]
"ol"Symbol 749 MovieClip [ScrollDownArrowUp] Frame 1Symbol 739 MovieClip [BrdrFace]
"ib"Symbol 749 MovieClip [ScrollDownArrowUp] Frame 1Symbol 738 MovieClip [BrdrShdw]
"il"Symbol 749 MovieClip [ScrollDownArrowUp] Frame 1Symbol 748 MovieClip [BrdrHilght]
"face"Symbol 749 MovieClip [ScrollDownArrowUp] Frame 1Symbol 739 MovieClip [BrdrFace]
"border"Symbol 753 MovieClip [ScrollUpArrowDisabled] Frame 1Symbol 738 MovieClip [BrdrShdw]
"face"Symbol 753 MovieClip [ScrollUpArrowDisabled] Frame 1Symbol 739 MovieClip [BrdrFace]
"border"Symbol 755 MovieClip [ScrollUpArrowDown] Frame 1Symbol 738 MovieClip [BrdrShdw]
"face"Symbol 755 MovieClip [ScrollUpArrowDown] Frame 1Symbol 739 MovieClip [BrdrFace]
"dfs"Symbol 756 MovieClip [BtnUpArrow] Frame 1Symbol 745 MovieClip [ScrollTrack]
"ob"Symbol 757 MovieClip [ScrollUpArrowUp] Frame 1Symbol 747 MovieClip [BrdrBlk]
"ol"Symbol 757 MovieClip [ScrollUpArrowUp] Frame 1Symbol 739 MovieClip [BrdrFace]
"ib"Symbol 757 MovieClip [ScrollUpArrowUp] Frame 1Symbol 738 MovieClip [BrdrShdw]
"il"Symbol 757 MovieClip [ScrollUpArrowUp] Frame 1Symbol 748 MovieClip [BrdrHilght]
"face"Symbol 757 MovieClip [ScrollUpArrowUp] Frame 1Symbol 739 MovieClip [BrdrFace]

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "knock_sound"
ExportAssets (56)Timeline Frame 1Symbol 3 as "fcb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 27 as "fcb_states"
ExportAssets (56)Timeline Frame 1Symbol 30 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 33 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 34 as "frb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 58 as "frb_states"
ExportAssets (56)Timeline Frame 1Symbol 62 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 63 as "DataProviderSymbol"
ExportAssets (56)Timeline Frame 1Symbol 64 as "FSelectableItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 65 as "FSelectableListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 66 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 67 as "FComboBoxItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 30 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 70 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 71 as "FListItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 66 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 30 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 74 as "FListBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 75 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 102 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 135 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 138 as "FHighlightSymbol"
ExportAssets (56)Timeline Frame 1Symbol 141 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 143 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 146 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 147 as "fcb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 164 as "fcb_states"
ExportAssets (56)Timeline Frame 1Symbol 143 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 167 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 168 as "frb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 184 as "frb_states"
ExportAssets (56)Timeline Frame 1Symbol 188 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 189 as "DataProviderSymbol"
ExportAssets (56)Timeline Frame 1Symbol 190 as "FSelectableItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 191 as "FSelectableListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 192 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 193 as "FComboBoxItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 143 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 195 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 196 as "FListItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 192 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 143 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 198 as "FListBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 188 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 199 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 203 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 215 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 216 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 218 as "FHighlightSymbol"
ExportAssets (56)Timeline Frame 1Symbol 220 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 222 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 224 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 225 as "fcb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 241 as "fcb_states"
ExportAssets (56)Timeline Frame 1Symbol 222 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 244 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 245 as "frb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 261 as "frb_states"
ExportAssets (56)Timeline Frame 1Symbol 265 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 266 as "DataProviderSymbol"
ExportAssets (56)Timeline Frame 1Symbol 267 as "FSelectableItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 268 as "FSelectableListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 269 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 270 as "FComboBoxItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 222 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 272 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 273 as "FListItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 269 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 222 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 275 as "FListBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 265 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 276 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 310 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 329 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 354 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 356 as "FHighlightSymbol"
ExportAssets (56)Timeline Frame 1Symbol 358 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 359 as "FListItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 362 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 363 as "DataProviderSymbol"
ExportAssets (56)Timeline Frame 1Symbol 364 as "FSelectableItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 365 as "FSelectableListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 366 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 368 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 370 as "FListBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 362 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 371 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 393 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 409 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 431 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 433 as "FHighlightSymbol"
ExportAssets (56)Timeline Frame 1Symbol 435 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 437 as "mcVoiceImage"
ExportAssets (56)Timeline Frame 1Symbol 445 as "mcSquares"
ExportAssets (56)Timeline Frame 1Symbol 446 as "mProgress"
ExportAssets (56)Timeline Frame 1Symbol 456 as "grPhoneIcon"
ExportAssets (56)Timeline Frame 1Symbol 461 as "mcCall"
ExportAssets (56)Timeline Frame 1Symbol 446 as "mProgress"
ExportAssets (56)Timeline Frame 1Symbol 445 as "mcSquares"
ExportAssets (56)Timeline Frame 1Symbol 437 as "mcVoiceImage"
ExportAssets (56)Timeline Frame 1Symbol 464 as "callButtonSkin"
ExportAssets (56)Timeline Frame 1Symbol 456 as "grPhoneIcon"
ExportAssets (56)Timeline Frame 1Symbol 465 as "ListCell"
ExportAssets (56)Timeline Frame 1Symbol 466 as "FListItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 469 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 470 as "DataProviderSymbol"
ExportAssets (56)Timeline Frame 1Symbol 471 as "FSelectableItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 472 as "FSelectableListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 473 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 475 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 477 as "FListBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 469 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 478 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 479 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 485 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 486 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 488 as "FHighlightSymbol"
ExportAssets (56)Timeline Frame 1Symbol 490 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 491 as "ButtonCellRenderer"
ExportAssets (56)Timeline Frame 1Symbol 494 as "at"
ExportAssets (56)Timeline Frame 1Symbol 495 as "RoomListBox"
ExportAssets (56)Timeline Frame 1Symbol 496 as "ChatAreaClp"
ExportAssets (56)Timeline Frame 1Symbol 503 as "MenuItem"
ExportAssets (56)Timeline Frame 1Symbol 503 as "MenuItem"
ExportAssets (56)Timeline Frame 1Symbol 517 as "OptionsMc"
ExportAssets (56)Timeline Frame 1Symbol 525 as "NickWindowSymbol"
ExportAssets (56)Timeline Frame 1Symbol 540 as "ChannelTab"
ExportAssets (56)Timeline Frame 1Symbol 62 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 62 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 545 as "ChatArea"
ExportAssets (56)Timeline Frame 1Symbol 549 as "ToolTip"
ExportAssets (56)Timeline Frame 1Symbol 30 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 551 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 551 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 551 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 551 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 551 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 566 as "PrefSymbol"
ExportAssets (56)Timeline Frame 1Symbol 568 as "UserInput"
ExportAssets (56)Timeline Frame 1Symbol 570 as "TabHandler"
ExportAssets (56)Timeline Frame 1Symbol 575 as "NickWindowSymbol"
ExportAssets (56)Timeline Frame 1Symbol 584 as "BoundingBox"
ExportAssets (56)Timeline Frame 1Symbol 586 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 588 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 589 as "SimpleButtonDown"
ExportAssets (56)Timeline Frame 1Symbol 591 as "BrdrBlk"
ExportAssets (56)Timeline Frame 1Symbol 593 as "BrdrHilght"
ExportAssets (56)Timeline Frame 1Symbol 594 as "SimpleButtonIn"
ExportAssets (56)Timeline Frame 1Symbol 595 as "SimpleButtonUp"
ExportAssets (56)Timeline Frame 1Symbol 596 as "Defaults"
ExportAssets (56)Timeline Frame 1Symbol 597 as "UIObjectExtensions"
ExportAssets (56)Timeline Frame 1Symbol 598 as "UIObject"
ExportAssets (56)Timeline Frame 1Symbol 602 as "FocusRect"
ExportAssets (56)Timeline Frame 1Symbol 603 as "FocusManager"
ExportAssets (56)Timeline Frame 1Symbol 604 as "UIComponentExtensions"
ExportAssets (56)Timeline Frame 1Symbol 605 as "UIComponent"
ExportAssets (56)Timeline Frame 1Symbol 606 as "SimpleButton"
ExportAssets (56)Timeline Frame 1Symbol 607 as "Border"
ExportAssets (56)Timeline Frame 1Symbol 608 as "RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 609 as "ButtonSkin"
ExportAssets (56)Timeline Frame 1Symbol 610 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 611 as "CustomBorder"
ExportAssets (56)Timeline Frame 1Symbol 614 as "ScrollTrack"
ExportAssets (56)Timeline Frame 1Symbol 621 as "ScrollDownArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 623 as "ScrollThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 625 as "ScrollThemeColor2"
ExportAssets (56)Timeline Frame 1Symbol 626 as "ScrollDownArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 627 as "ScrollDownArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 628 as "ScrollDownArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 634 as "ScrollThumbBottomDisabled"
ExportAssets (56)Timeline Frame 1Symbol 636 as "ThumbThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 638 as "ThumbThemeColor3"
ExportAssets (56)Timeline Frame 1Symbol 639 as "ScrollThumbBottomDown"
ExportAssets (56)Timeline Frame 1Symbol 640 as "ScrollThumbBottomOver"
ExportAssets (56)Timeline Frame 1Symbol 641 as "ScrollThumbBottomUp"
ExportAssets (56)Timeline Frame 1Symbol 643 as "ScrollThumbGripDisabled"
ExportAssets (56)Timeline Frame 1Symbol 645 as "ThumbThemeColor2"
ExportAssets (56)Timeline Frame 1Symbol 646 as "ScrollThumbGripDown"
ExportAssets (56)Timeline Frame 1Symbol 647 as "ScrollThumbGripOver"
ExportAssets (56)Timeline Frame 1Symbol 648 as "ScrollThumbGripUp"
ExportAssets (56)Timeline Frame 1Symbol 650 as "ScrollThumbMiddleDisabled"
ExportAssets (56)Timeline Frame 1Symbol 651 as "ScrollThumbMiddleDown"
ExportAssets (56)Timeline Frame 1Symbol 655 as "ScrollThumbMiddleOver"
ExportAssets (56)Timeline Frame 1Symbol 656 as "ScrollThumbMiddleUp"
ExportAssets (56)Timeline Frame 1Symbol 657 as "ScrollThumbTopDisabled"
ExportAssets (56)Timeline Frame 1Symbol 658 as "ScrollThumbTopDown"
ExportAssets (56)Timeline Frame 1Symbol 659 as "ScrollThumbTopOver"
ExportAssets (56)Timeline Frame 1Symbol 660 as "ScrollThumbTopUp"
ExportAssets (56)Timeline Frame 1Symbol 661 as "ScrollTrackDisabled"
ExportAssets (56)Timeline Frame 1Symbol 662 as "ScrollUpArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 663 as "ScrollUpArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 664 as "ScrollUpArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 665 as "ScrollUpArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 666 as "BtnDownArrow"
ExportAssets (56)Timeline Frame 1Symbol 667 as "BtnUpArrow"
ExportAssets (56)Timeline Frame 1Symbol 668 as "ScrollBarAssets"
ExportAssets (56)Timeline Frame 1Symbol 669 as "HScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 670 as "VScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 671 as "View"
ExportAssets (56)Timeline Frame 1Symbol 672 as "ScrollView"
ExportAssets (56)Timeline Frame 1Symbol 673 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 673 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 703 as "ScrollPane"
ExportAssets (56)Timeline Frame 1Symbol 703 as "ScrollPane"
ExportAssets (56)Timeline Frame 1Symbol 710 as "DataHeaderBackGnd"
ExportAssets (56)Timeline Frame 1Symbol 712 as "DataHeaderOverlay"
ExportAssets (56)Timeline Frame 1Symbol 714 as "DataHeaderSeperator"
ExportAssets (56)Timeline Frame 1Symbol 716 as "DataSortArrow"
ExportAssets (56)Timeline Frame 1Symbol 718 as "DataStretchBar"
ExportAssets (56)Timeline Frame 1Symbol 720 as "cursorStretch"
ExportAssets (56)Timeline Frame 1Symbol 721 as "DataGridAssets"
ExportAssets (56)Timeline Frame 1Symbol 722 as "DataGridColumn"
ExportAssets (56)Timeline Frame 1Symbol 723 as "SelectableRow"
ExportAssets (56)Timeline Frame 1Symbol 724 as "DataGridRow"
ExportAssets (56)Timeline Frame 1Symbol 725 as "DataProvider"
ExportAssets (56)Timeline Frame 1Symbol 726 as "DataSelector"
ExportAssets (56)Timeline Frame 1Symbol 727 as "ScrollSelectList"
ExportAssets (56)Timeline Frame 1Symbol 728 as "List"
ExportAssets (56)Timeline Frame 1Symbol 730 as "TextInput"
ExportAssets (56)Timeline Frame 1Symbol 731 as "DataGrid"
ExportAssets (56)Timeline Frame 1Symbol 731 as "DataGrid"
ExportAssets (56)Timeline Frame 1Symbol 610 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 728 as "List"
ExportAssets (56)Timeline Frame 1Symbol 738 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 739 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 741 as "SymDownArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 742 as "ScrollDownArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 738 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 739 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 743 as "SymDownArrow"
ExportAssets (56)Timeline Frame 1Symbol 744 as "ScrollDownArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 745 as "ScrollTrack"
ExportAssets (56)Timeline Frame 1Symbol 746 as "BtnDownArrow"
ExportAssets (56)Timeline Frame 1Symbol 747 as "BrdrBlk"
ExportAssets (56)Timeline Frame 1Symbol 739 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 738 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 748 as "BrdrHilght"
ExportAssets (56)Timeline Frame 1Symbol 739 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 743 as "SymDownArrow"
ExportAssets (56)Timeline Frame 1Symbol 749 as "ScrollDownArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 751 as "ScrollTrackDisabled"
ExportAssets (56)Timeline Frame 1Symbol 738 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 739 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 752 as "SymUpArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 753 as "ScrollUpArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 738 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 739 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 754 as "SymUpArrow"
ExportAssets (56)Timeline Frame 1Symbol 755 as "ScrollUpArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 745 as "ScrollTrack"
ExportAssets (56)Timeline Frame 1Symbol 756 as "BtnUpArrow"
ExportAssets (56)Timeline Frame 1Symbol 747 as "BrdrBlk"
ExportAssets (56)Timeline Frame 1Symbol 739 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 738 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 748 as "BrdrHilght"
ExportAssets (56)Timeline Frame 1Symbol 739 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 754 as "SymUpArrow"
ExportAssets (56)Timeline Frame 1Symbol 757 as "ScrollUpArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 746 as "BtnDownArrow"
ExportAssets (56)Timeline Frame 1Symbol 756 as "BtnUpArrow"
ExportAssets (56)Timeline Frame 1Symbol 758 as "ScrollThumbGripUp"
ExportAssets (56)Timeline Frame 1Symbol 759 as "ScrollThumbGripOver"
ExportAssets (56)Timeline Frame 1Symbol 760 as "ScrollThumbGripDown"
ExportAssets (56)Timeline Frame 1Symbol 761 as "ScrollThumbGripDisabled"
ExportAssets (56)Timeline Frame 1Symbol 762 as "ScrollBarAssets"
ExportAssets (56)Timeline Frame 1Symbol 576 as "__Packages.mx.core.UIObject"
ExportAssets (56)Timeline Frame 1Symbol 674 as "__Packages.mx.skins.SkinElement"
ExportAssets (56)Timeline Frame 1Symbol 675 as "__Packages.mx.styles.CSSTextStyles"
ExportAssets (56)Timeline Frame 1Symbol 677 as "__Packages.mx.styles.CSSStyleDeclaration"
ExportAssets (56)Timeline Frame 1Symbol 676 as "__Packages.mx.styles.StyleManager"
ExportAssets (56)Timeline Frame 1Symbol 577 as "__Packages.mx.core.UIComponent"
ExportAssets (56)Timeline Frame 1Symbol 797 as "__Packages.ListCell"
ExportAssets (56)Timeline Frame 1Symbol 690 as "__Packages.mx.skins.ColoredSkinElement"
ExportAssets (56)Timeline Frame 1Symbol 686 as "__Packages.mx.controls.SimpleButton"
ExportAssets (56)Timeline Frame 1Symbol 798 as "__Packages.ButtonCellRenderer"
ExportAssets (56)Timeline Frame 1Symbol 678 as "__Packages.mx.skins.Border"
ExportAssets (56)Timeline Frame 1Symbol 684 as "__Packages.mx.skins.CustomBorder"
ExportAssets (56)Timeline Frame 1Symbol 685 as "__Packages.mx.controls.scrollClasses.ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 687 as "__Packages.mx.controls.scrollClasses.ScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 578 as "__Packages.mx.core.View"
ExportAssets (56)Timeline Frame 1Symbol 579 as "__Packages.mx.core.ScrollView"
ExportAssets (56)Timeline Frame 1Symbol 580 as "__Packages.mx.controls.TextArea"
ExportAssets (56)Timeline Frame 1Symbol 679 as "__Packages.mx.skins.RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 680 as "__Packages.mx.managers.DepthManager"
ExportAssets (56)Timeline Frame 1Symbol 681 as "__Packages.mx.events.EventDispatcher"
ExportAssets (56)Timeline Frame 1Symbol 682 as "__Packages.mx.events.UIEventDispatcher"
ExportAssets (56)Timeline Frame 1Symbol 683 as "__Packages.mx.core.ExternalContent"
ExportAssets (56)Timeline Frame 1Symbol 688 as "__Packages.mx.controls.HScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 689 as "__Packages.mx.controls.Button"
ExportAssets (56)Timeline Frame 1Symbol 691 as "__Packages.mx.core.ext.UIObjectExtensions"
ExportAssets (56)Timeline Frame 1Symbol 692 as "__Packages.mx.skins.halo.Defaults"
ExportAssets (56)Timeline Frame 1Symbol 693 as "__Packages.mx.managers.SystemManager"
ExportAssets (56)Timeline Frame 1Symbol 694 as "__Packages.mx.managers.FocusManager"
ExportAssets (56)Timeline Frame 1Symbol 695 as "__Packages.mx.skins.halo.FocusRect"
ExportAssets (56)Timeline Frame 1Symbol 696 as "__Packages.mx.managers.OverlappedWindows"
ExportAssets (56)Timeline Frame 1Symbol 697 as "__Packages.mx.styles.CSSSetStyle"
ExportAssets (56)Timeline Frame 1Symbol 698 as "__Packages.mx.core.ext.UIComponentExtensions"
ExportAssets (56)Timeline Frame 1Symbol 699 as "__Packages.mx.skins.halo.RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 700 as "__Packages.mx.skins.halo.ButtonSkin"
ExportAssets (56)Timeline Frame 1Symbol 701 as "__Packages.mx.controls.VScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 702 as "__Packages.mx.containers.ScrollPane"
ExportAssets (56)Timeline Frame 1Symbol 704 as "__Packages.mx.controls.listclasses.DataSelector"
ExportAssets (56)Timeline Frame 1Symbol 705 as "__Packages.mx.controls.listclasses.DataProvider"
ExportAssets (56)Timeline Frame 1Symbol 706 as "__Packages.mx.controls.listclasses.ScrollSelectList"
ExportAssets (56)Timeline Frame 1Symbol 707 as "__Packages.mx.controls.List"
ExportAssets (56)Timeline Frame 1Symbol 708 as "__Packages.mx.controls.DataGrid"
ExportAssets (56)Timeline Frame 1Symbol 732 as "__Packages.mx.effects.Tween"
ExportAssets (56)Timeline Frame 1Symbol 733 as "__Packages.mx.controls.gridclasses.DataGridColumn"
ExportAssets (56)Timeline Frame 1Symbol 734 as "__Packages.mx.controls.listclasses.SelectableRow"
ExportAssets (56)Timeline Frame 1Symbol 735 as "__Packages.mx.controls.gridclasses.DataGridRow"
ExportAssets (56)Timeline Frame 1Symbol 736 as "__Packages.mx.controls.TextInput"
ExportAssets (56)Timeline Frame 2Symbol 575 as "NickWindowSymbol"
ExportAssets (56)Timeline Frame 3Symbol 728 as "List"
ExportAssets (56)Timeline Frame 3Symbol 728 as "List"
ExportAssets (56)Timeline Frame 3Symbol 570 as "TabHandler"
ExportAssets (56)Timeline Frame 3Symbol 568 as "UserInput"
ExportAssets (56)Timeline Frame 4Symbol 728 as "List"
ExportAssets (56)Timeline Frame 4Symbol 728 as "List"
ExportAssets (56)Timeline Frame 4Symbol 570 as "TabHandler"
ExportAssets (56)Timeline Frame 4Symbol 568 as "UserInput"
ExportAssets (56)Timeline Frame 5Symbol 728 as "List"
ExportAssets (56)Timeline Frame 5Symbol 728 as "List"
ExportAssets (56)Timeline Frame 5Symbol 570 as "TabHandler"
ExportAssets (56)Timeline Frame 5Symbol 568 as "UserInput"

Labels

"up"Symbol 27 MovieClip [fcb_states] Frame 1
"press"Symbol 27 MovieClip [fcb_states] Frame 2
"uncheckedDisabled"Symbol 27 MovieClip [fcb_states] Frame 3
"checkedDisabled"Symbol 27 MovieClip [fcb_states] Frame 4
"checkedPress"Symbol 27 MovieClip [fcb_states] Frame 5
"checkedEnabled"Symbol 27 MovieClip [fcb_states] Frame 6
"enabled"Symbol 30 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 30 MovieClip [FBoundingBoxSymbol] Frame 2
"Symbol_22"Symbol 36 MovieClip Frame 1
"Symbol_23"Symbol 38 MovieClip Frame 1
"unselectedEnabled"Symbol 58 MovieClip [frb_states] Frame 1
"press"Symbol 58 MovieClip [frb_states] Frame 2
"unselectedDisabled"Symbol 58 MovieClip [frb_states] Frame 3
"selectedDisabled"Symbol 58 MovieClip [frb_states] Frame 4
"selectedEnabled"Symbol 58 MovieClip [frb_states] Frame 5
"Symbol_354"Symbol 63 MovieClip [DataProviderSymbol] Frame 1
"Symbol_36"Symbol 75 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 138 MovieClip [FHighlightSymbol] Frame 1
"disabled"Symbol 138 MovieClip [FHighlightSymbol] Frame 2
"unfocused"Symbol 138 MovieClip [FHighlightSymbol] Frame 3
"Symbol_32"Symbol 141 MovieClip [FLabelSymbol] Frame 1
"enabled"Symbol 143 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 143 MovieClip [FBoundingBoxSymbol] Frame 2
"up"Symbol 164 MovieClip [fcb_states] Frame 1
"press"Symbol 164 MovieClip [fcb_states] Frame 2
"uncheckedDisabled"Symbol 164 MovieClip [fcb_states] Frame 3
"checkedDisabled"Symbol 164 MovieClip [fcb_states] Frame 4
"checkedPress"Symbol 164 MovieClip [fcb_states] Frame 5
"checkedEnabled"Symbol 164 MovieClip [fcb_states] Frame 6
"Symbol_22"Symbol 169 MovieClip Frame 1
"Symbol_23"Symbol 170 MovieClip Frame 1
"unselectedEnabled"Symbol 184 MovieClip [frb_states] Frame 1
"press"Symbol 184 MovieClip [frb_states] Frame 2
"unselectedDisabled"Symbol 184 MovieClip [frb_states] Frame 3
"selectedDisabled"Symbol 184 MovieClip [frb_states] Frame 4
"selectedEnabled"Symbol 184 MovieClip [frb_states] Frame 5
"Symbol_354"Symbol 189 MovieClip [DataProviderSymbol] Frame 1
"Symbol_36"Symbol 199 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 218 MovieClip [FHighlightSymbol] Frame 1
"disabled"Symbol 218 MovieClip [FHighlightSymbol] Frame 2
"unfocused"Symbol 218 MovieClip [FHighlightSymbol] Frame 3
"Symbol_32"Symbol 220 MovieClip [FLabelSymbol] Frame 1
"enabled"Symbol 222 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 222 MovieClip [FBoundingBoxSymbol] Frame 2
"up"Symbol 241 MovieClip [fcb_states] Frame 1
"press"Symbol 241 MovieClip [fcb_states] Frame 2
"uncheckedDisabled"Symbol 241 MovieClip [fcb_states] Frame 3
"checkedDisabled"Symbol 241 MovieClip [fcb_states] Frame 4
"checkedPress"Symbol 241 MovieClip [fcb_states] Frame 5
"checkedEnabled"Symbol 241 MovieClip [fcb_states] Frame 6
"Symbol_22"Symbol 246 MovieClip Frame 1
"Symbol_23"Symbol 247 MovieClip Frame 1
"unselectedEnabled"Symbol 261 MovieClip [frb_states] Frame 1
"press"Symbol 261 MovieClip [frb_states] Frame 2
"unselectedDisabled"Symbol 261 MovieClip [frb_states] Frame 3
"selectedDisabled"Symbol 261 MovieClip [frb_states] Frame 4
"selectedEnabled"Symbol 261 MovieClip [frb_states] Frame 5
"Symbol_354"Symbol 266 MovieClip [DataProviderSymbol] Frame 1
"Symbol_36"Symbol 276 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 356 MovieClip [FHighlightSymbol] Frame 1
"disabled"Symbol 356 MovieClip [FHighlightSymbol] Frame 2
"unfocused"Symbol 356 MovieClip [FHighlightSymbol] Frame 3
"Symbol_32"Symbol 358 MovieClip [FLabelSymbol] Frame 1
"Symbol_354"Symbol 363 MovieClip [DataProviderSymbol] Frame 1
"enabled"Symbol 368 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 368 MovieClip [FBoundingBoxSymbol] Frame 2
"Symbol_36"Symbol 371 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 433 MovieClip [FHighlightSymbol] Frame 1
"disabled"Symbol 433 MovieClip [FHighlightSymbol] Frame 2
"unfocused"Symbol 433 MovieClip [FHighlightSymbol] Frame 3
"Symbol_32"Symbol 435 MovieClip [FLabelSymbol] Frame 1
"Symbol_354"Symbol 470 MovieClip [DataProviderSymbol] Frame 1
"enabled"Symbol 475 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 475 MovieClip [FBoundingBoxSymbol] Frame 2
"Symbol_36"Symbol 478 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 488 MovieClip [FHighlightSymbol] Frame 1
"disabled"Symbol 488 MovieClip [FHighlightSymbol] Frame 2
"unfocused"Symbol 488 MovieClip [FHighlightSymbol] Frame 3
"Symbol_32"Symbol 490 MovieClip [FLabelSymbol] Frame 1

Dynamic Text Variables

tipSymbol 548 EditableText""
chatTitleSymbol 779 EditableText"ICQ Chat"




http://swfchan.com/18/87194/info.shtml
Created: 30/3 -2019 02:39:23 Last modified: 30/3 -2019 02:39:23 Server time: 19/05 -2024 00:20:30