Frame 1
function CheckPlayerVersion() {
var verinfo_xml = new XML();
verinfo_xml.ignoreWhite = true;
verinfo_xml.onLoad = function (ipSuccess) {
if (ipSuccess) {
var _local1 = verinfo_xml.firstChild;
var _local3 = _local1.attributes.major;
var _local4 = _local1.attributes.minor;
var lGetFlashURL = _local1.attributes.get_flash_url;
var _local6 = _local1.attributes.get_flash_title;
var _local5 = _local1.attributes.navigation_text;
check_navigation_txt.text = _local5;
get_flash_url_mc.get_flash_url_txt.text = _local6;
get_flash_url_mc.onPress = function () {
getURL (lGetFlashURL, "_self");
};
var _local2 = new Object();
LC_AppUtils.GetPlayerVersion(_local2);
if (parseInt(_local2.ver_major) > parseInt(_local3)) {
GoToLoginFrame();
return(undefined);
}
if (parseInt(_local2.ver_major) < parseInt(_local3)) {
return(undefined);
}
if (parseInt(_local2.ver_minor) >= parseInt(_local4)) {
GoToLoginFrame();
return(undefined);
}
return(undefined);
}
};
verinfo_xml.load(LC_Const.C_VERSION_XML_ADDRESS);
}
function GoToLoginFrame() {
_root.gotoAndStop("login_frm");
}
function FixFlashPlayerBug() {
mx.controls.scrollClasses.ScrollThumb.prototype.onRelease = function (Void) {
this.stopDragThumb();
this.super.onRelease();
};
mx.controls.scrollClasses.ScrollThumb.prototype.onReleaseOutside = function (Void) {
this.stopDragThumb();
this.super.onReleaseOutside();
};
mx.controls.SimpleButton.prototype.onRelease = function (Void) {
this.phase = "rollover";
if (this.interval != undefined) {
clearInterval(this.interval);
delete this.interval;
}
if (this.getToggle()) {
this.setState(!this.getState());
} else {
this.refresh();
}
this.dispatchEvent({type:"click"});
};
mx.controls.SimpleButton.prototype.onReleaseOutside = function (Void) {
this.phase = "up";
if (this.interval != undefined) {
clearInterval(this.interval);
delete this.interval;
}
};
}
FixFlashPlayerBug();
CheckPlayerVersion();
this.stop();
Frame 2
shift_enter_btn.tabIndex = 1;
passwd_txt.tabIndex = 1;
username_txt.tabIndex = 1;
userpasswd_txt.tabIndex = 2;
_root.login_curtain_mc._visible = false;
function JSCallBackSendName(ipText) {
ipText = ipText.split(" ").join("");
ipText = ipText.split("\u3000").join("");
ipText = ipText.split("\t").join("");
ipText = ipText.split("\r").join("");
ipText = ipText.split(newline).join("");
ipText = ipText.substr(0, 18);
_root.username_txt.text = ipText;
}
function LoadSysMessageXML() {
g_appinfo.appdata.message_xml.ignoreWhite = true;
g_appinfo.appdata.message_xml.onLoad = function (ipSuccess) {
if (ipSuccess) {
g_sys_message_processor = new LC_SysMessageProcessor(g_appinfo.appdata.message_xml);
LC_AppUtils.GetAppInfo().appdata.msg_separato = LC_AppUtils.GetMsg(80);
StartupFunction();
} else {
FinishFunction("\u30E1\u30C3\u30BB\u30FC\u30B8\u60C5\u5831\u53D6\u5F97\u6642\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002");
}
};
g_appinfo.appdata.message_xml.load(LC_Const.C_MESSAGE_XML_ADDRESS);
}
function ShowControls(ipShow) {
if (LC_AppUtils.GetAppInfo().option.use_password == "true") {
userpasswd_txt._visible = ipShow;
} else {
userpasswd_txt._visible = false;
}
username_txt._visible = ipShow;
char_select_list_mc._visible = ipShow;
passwd_txt._visible = false;
shift_enter_btn._visible = ipShow;
save_option_mc._visible = ipShow;
}
function StartupFunction() {
LC_LoginPanelUtils.Build();
LC_LoginPanelUtils.GetLoginPanelMovie()._visible = false;
LC_LoginPanelUtils.GetLoginPanelMovie().enabled = false;
LC_AppUtils.GetAppInfo().appdata.keylistener = new Object();
LC_AppUtils.GetAppInfo().appdata.keylistener.onKeyDown = function () {
if ((Key.isDown(17) && (Key.isDown(16))) && (Key.isDown(57))) {
passwd_txt._visible = !passwd_txt._visible;
}
};
Key.addListener(LC_AppUtils.GetAppInfo().appdata.keylistener);
if (LC_AppUtils.GetAppInfo().option.use_password == "true") {
userpasswd_txt.password = true;
}
loadLoginInfo();
loadCharacter();
if (LC_AppUtils.GetKilledFromCookie()) {
FinishFunction(LC_AppUtils.GetMsg(45));
}
_root.username_txt.restrict = "^\t";
this.stop();
}
function loadLoginInfo() {
var _local2 = LC_LoginInfoUtils.GetUseLoginInfoFromCookie();
if (_local2) {
_root.username_txt.text = LC_LoginInfoUtils.GetUserNameFromCookie();
_root.userpasswd_txt.text = LC_LoginInfoUtils.GetPasswordFromCookie();
_root.char_select_list_mc.lInitSelection = LC_LoginInfoUtils.GetCharacterIDFromCookie();
}
_root.save_option_mc.save_option_check_mc.save_option_mark_mc._visible = _local2;
_root.save_option_mc.save_option_check_mc.onPress = function () {
_root.save_option_mc.save_option_check_mc.save_option_mark_mc._visible = !_root.save_option_mc.save_option_check_mc.save_option_mark_mc._visible;
};
}
function saveLoginInfo() {
var _local2 = _root.save_option_mc.save_option_check_mc.save_option_mark_mc._visible;
LC_LoginInfoUtils.SetUseLoginInfoToCookie(_local2);
LC_LoginInfoUtils.SetUserNameToCookie((_local2 ? (_root.username_txt.text) : ""));
LC_LoginInfoUtils.SetPasswordToCookie((_local2 ? (_root.userpasswd_txt.text) : ""));
LC_LoginInfoUtils.SetCharacterIDToCookie((_local2 ? (_root.char_select_list_mc.lSelectCharID) : ""));
}
function loadCharacter() {
g_appinfo.appdata.char_xml.ignoreWhite = true;
g_appinfo.appdata.char_xml.onLoad = function (ipSuccess) {
if (ipSuccess) {
var _local2 = g_appinfo.appdata.char_xml.firstChild;
var _local1 = _local2.firstChild;
while (_local1 != null) {
if (_local1.attributes.hidden != "true") {
char_select_list_mc.AddCharacter(_local1.attributes.cid, _local1.attributes.name, _local1.attributes.icon);
}
_local1 = _local1.nextSibling;
}
} else {
FinishFunction(LC_AppUtils.GetMsg(1));
}
ShowControls(true);
LC_LoginPanelUtils.GetLoginPanelMovie()._visible = true;
LC_LoginPanelUtils.GetLoginPanelMovie().enabled = true;
};
g_appinfo.appdata.char_xml.load(LC_Const.C_CHARINFO_XML_ADDRESS);
}
function connectToServer() {
var lTripBaseString = "";
var lPasswdString = "";
var bHasTripBaseString = false;
var lUserPassword = "";
if (g_already_done) {
return(undefined);
}
if (char_select_list_mc.lSelectCharID == 0) {
LC_LoginPanelUtils.GetMessageTextBox().text = LC_AppUtils.GetMsg(42);
return(undefined);
}
saveLoginInfo();
g_already_done = true;
g_appinfo.session.con.onStatus = function (infoObj) {
g_already_done = false;
if (infoObj.code == "NetConnection.Connect.Success") {
LC_LoginPanelUtils.GetMessageTextBox().text = LC_AppUtils.GetMsg(2);
LC_AppUtils.GetAppInfo().appdata.alive_interval = setInterval(function () {
LC_AppUtils.SendAliveMessage();
}, 60000 * LC_Const.C_ALIVE_MESSAGE_INTERVAL_MINUTE);
g_appinfo.session.con.call("managePassword", null, lPasswdString);
} else if ((infoObj.code == "NetConnection.Connect.Failed") || (infoObj.code == "NetConnection.Connect.InvalidApp")) {
LC_LoginPanelUtils.GetMessageTextBox().text = LC_AppUtils.GetMsg(3);
g_appinfo.session.con.onStatus = null;
_root.gotoAndStop("login_frm");
} else if (infoObj.code == "NetConnection.Connect.Rejected") {
LC_LoginPanelUtils.GetMessageTextBox().text = LC_AppUtils.GetMsg(4);
g_appinfo.session.con.onStatus = null;
_root.gotoAndStop("login_frm");
} else if (infoObj.code == "NetConnection.Connect.AppShutdown") {
g_appinfo.session.con.onStatus = null;
FinishFunction(LC_AppUtils.GetMsg(5));
} else if (infoObj.code == "NetConnection.Connect.Closed") {
g_appinfo.session.con.onStatus = null;
FinishFunction(LC_AppUtils.GetMsg(6));
} else if (infoObj.code == "NetConnection.Call.Failed") {
g_appinfo.session.con.onStatus = null;
FinishFunction(LC_AppUtils.GetMsg(7));
}
};
g_appinfo.session.con.manageStartUpAfterHashCheck = function () {
StartupAfterHashCheck();
};
g_appinfo.session.con.manageLoginAfterPasswordCheck = function (ipServerTimeStamp, ipCharacterID, ipServerCallbackFunc) {
g_appinfo.appdata.server_callback_func = ipServerCallbackFunc;
var _local4 = Math.round(ipServerTimeStamp / 1000);
var _local2 = new Date();
var _local3 = Math.round(_local2.getTime() / 1000);
LC_AppUtils.GetAppInfo().appdata.timestamp_diff_in_sec = _local3 - _local4;
if (ipCharacterID != "") {
g_appinfo.player.cid = parseInt(ipCharacterID);
}
if (LC_AppUtils.GetAppInfo().option.use_password == "true") {
g_appinfo.session.con.call("manageUserLogin", null, username_txt.text, lUserPassword);
} else if (bHasTripBaseString) {
g_appinfo.session.con.call("manageTrip", null, lTripBaseString);
} else {
_root.play();
}
};
g_appinfo.session.con.manageClientId = function (clientId) {
g_appinfo.player.id = clientId;
};
g_appinfo.session.con.manageIgnoreEach = function (clientId) {
g_ignore_processor.IgnorePlayer(clientId);
};
g_appinfo.session.con.manageSystemAlert = function (ipMessage) {
g_sysalert_processor.ShowSystemAlert(ipMessage);
};
g_appinfo.session.con.manageTimeMessage = function (ipMessage) {
g_notify_processor.ShowLongNotifyMessage(ipMessage, 16711680);
};
g_appinfo.session.con.manageGeneralMessage = function (ipMessage) {
g_notify_processor.ShowLongNotifyMessage(ipMessage, 16711680);
};
g_appinfo.session.con.manageTrip = function (ipTripString) {
g_appinfo.player.name = g_appinfo.player.name + ("\n\u25C6" + ipTripString);
_root.play();
};
g_appinfo.session.con.manageUserLogin = function (ipUserName) {
if (ipUserName != "") {
g_appinfo.player.name = ipUserName;
_root.play();
} else {
LC_LoginPanelUtils.GetMessageTextBox().text = LC_AppUtils.GetMsg(43);
g_appinfo.session.con.onStatus = null;
g_appinfo.session.con.close();
}
};
g_appinfo.session.con.manageLoginCount = function (ipLoginCount) {
LC_AppUtils.GetStatusProcessor().SetLoginCount(ipLoginCount);
};
g_appinfo.session.con.managePowerAdmin = function () {
LC_AppUtils.GetAppInfo().power.admin = true;
if (LC_NaviPanelUtils.GetSysAlertButton() != undefined) {
LC_NaviPanelUtils.GetSysAlertButton()._visible = true;
}
};
g_appinfo.session.con.managePowerGM = function () {
LC_AppUtils.GetAppInfo().power.gm = true;
LC_AppUtils.GetStatusProcessor().SetPlayerMP(99);
};
g_appinfo.session.con.manageDead = function () {
LC_AppUtils.SetKilledFlagToCookie();
_root.LogoutFunction(LC_AppUtils.GetMsg(44));
};
g_appinfo.session.con.manageDarkness = function () {
LC_AppUtils.GetAppInfo().power.is_dark = true;
LC_AppUtils.GetStatusProcessor().SetPlayerMP(20);
};
g_appinfo.session.con.manageEventList = function (ipEventList) {
LC_AppUtils.GetEventProcessor().ManageEventList(ipEventList);
};
g_appinfo.session.con.manageRegisterEvent = function (ipResult) {
LC_AppUtils.GetEventProcessor().ManageRegisterEvent(ipResult);
};
g_appinfo.session.con.manageDeleteEvent = function (ipResult) {
LC_AppUtils.GetEventProcessor().ManageDeleteEvent(ipResult);
};
g_appinfo.session.con.manageEventDetail = function (ipYear, ipMonth, ipDay, ipHour, ipMinute, ipStageID, ipTitle, ipEventContent, ipLogoURL, ipWebURL, ipEditPass, ipUserName) {
LC_AppUtils.GetEventProcessor().ManageEventDetail(ipYear, ipMonth, ipDay, ipHour, ipMinute, ipStageID, ipTitle, ipEventContent, ipLogoURL, ipWebURL, ipEditPass, ipUserName);
};
g_appinfo.session.con.manageVoteEvent = function (ipResult) {
LC_AppUtils.GetEventProcessor().ManageVoteEvent(ipResult);
};
var _local6 = "";
if (((_root._url.indexOf(LC_Const.C_SITE_URL_HEADER) == 0) || (_root._url.indexOf(LC_Const.C_SITE_URL_HEADER_ALIAS) == 0)) || (_root._url.indexOf(LC_Const.C_SITE_URL_HEADER_ALIAS2) == 0)) {
_local6 = LC_Const.C_SERVER_ADDRESS_WEB + g_appinfo.relationdata.app_name;
if (g_confirmation_id != LC_Const.C_CONFIRMATION_ID) {
FinishFunction(LC_AppUtils.GetMsg(8));
return(undefined);
}
} else {
_local6 = LC_Const.C_SERVER_ADDRESS_LOCAL + g_appinfo.relationdata.app_name;
}
g_appinfo.player.name = username_txt.text;
g_appinfo.player.name = g_appinfo.player.name.split("\r").join("");
g_appinfo.player.name = g_appinfo.player.name.split(newline).join("");
if (g_appinfo.player.name == "") {
g_appinfo.player.name = LC_AppUtils.GetMsg(9);
}
var _local7 = g_appinfo.player.name;
if (_local7 == "llllmousepoi") {
g_appinfo.player.name = "llll";
_local6 = LC_Const.C_SERVER_ADDRESS_LOCAL + g_appinfo.relationdata.app_name;
} else if (_local7.length >= 4) {
var _local4 = _local7;
_local4 = _local4.split(" ").join("");
_local4 = _local4.split("\u3000").join("");
_local4 = _local4.split("\t").join("");
_local4 = _local4.split("\r").join("");
_local4 = _local4.split(newline).join("");
var _local5 = true;
var _local3 = 0;
while (_local3 < 4) {
var _local2 = _local4.charAt(_local3);
if (((((_local2 != "l") && (_local2 != "\uFF4C")) && (_local2 != "|")) && (_local2 != "L")) && (_local2 != "\uFF2C")) {
_local5 = false;
break;
}
_local3++;
}
if (_local5) {
g_appinfo.player.name = "\uFF8D\uFF9F\u30FB\uFF96\uFF9D\uFF7C\uFF9E\uFF6D\uFF9D";
}
}
var _local8 = g_appinfo.player.name.indexOf("#");
if (_local8 != -1) {
bHasTripBaseString = true;
lTripBaseString = g_appinfo.player.name.substr(_local8 + 1);
g_appinfo.player.name = g_appinfo.player.name.substr(0, _local8);
}
g_appinfo.player.name = g_appinfo.player.name.split("\u25C6").join("\u25C7");
lPasswdString = passwd_txt.text;
g_appinfo.player.cid = char_select_list_mc.lSelectCharID;
lUserPassword = userpasswd_txt.text;
LC_LoginPanelUtils.GetMessageTextBox().text = LC_AppUtils.GetMsg(10);
g_appinfo.session.con.connect(_local6, g_appinfo.player.name, LC_Const.C_SERVER_CODE);
}
function FinishFunction(ipMessage) {
clearInterval(LC_AppUtils.GetAppInfo().appdata.alive_interval);
g_sysalert_processor.HideSystemAlert();
LC_AppUtils.GetRadioProcessor(1).ShowAllRadioWindow(false);
LC_AppUtils.GetStatusProcessor().ShowAllStatusWindow(false);
if (g_stageinfo != null) {
DestoryStage();
}
if (g_appinfo.appdata.play_bgm) {
g_stageinfo.data.bgmsound.sound_obj.stop();
}
g_appinfo.relationdata.finish_msg = ipMessage;
_root.gotoAndStop("finish_frm");
}
function GetGikopoiObject() {
return(g_gikopoi_object);
}
_root.sample_loginpanel_mc._visible = false;
var g_appinfo = new LC_AppInfo();
var g_status_processor = new LC_StatusProcessor(g_appinfo);
var g_radio1_processor = new LC_RadioProcessor(1, true, 1, g_appinfo);
var g_radio2_processor = new LC_RadioProcessor(2, true, 2, g_appinfo);
var g_video1_processor = new LC_RadioProcessor(3, false, 1, g_appinfo);
var g_radio3_processor = new LC_RadioProcessor(4, true, 3, g_appinfo);
var g_notify_processor = new LC_NotifyProcessor(g_appinfo, _root);
var g_sysalert_processor = new LC_SystemAlertProcessor(g_appinfo, _root);
var g_magic_processor = new LC_MagicProcessor();
var g_event_processor = new LC_EventProcessor();
var g_hash_generator = new LC_HashGenerator();
var g_stageinfo = null;
var g_stageprocessor = null;
var g_player_processor = null;
var g_effect_processor = null;
var g_scroll_processor = null;
var g_ignore_processor = null;
var g_sys_message_processor = null;
var g_gikopoi_object = new LC_GikopoiObject();
var g_already_done = false;
ShowControls(false);
flash.external.ExternalInterface.addCallback("JSCallBackSendMessage", _root, JSCallBackSendName);
g_appinfo.appdata.appinfo_xml.ignoreWhite = true;
g_appinfo.appdata.appinfo_xml.onLoad = function (ipSuccess) {
if (ipSuccess) {
var _local1 = g_appinfo.appdata.appinfo_xml.firstChild;
LC_AppUtils.GetAppInfo().relationdata.app_name = _local1.attributes.app_name;
LC_AppUtils.GetAppInfo().panel.login_panel = _local1.attributes.login_panel;
LC_AppUtils.GetAppInfo().panel.navi_panel = _local1.attributes.navi_panel;
LC_AppUtils.GetAppInfo().panel.logout_panel = _local1.attributes.logout_panel;
LC_AppUtils.GetAppInfo().panel.login_panel_text_color = _local1.attributes.login_panel_text_color;
LC_AppUtils.GetAppInfo().option.use_password = _local1.attributes.use_password;
LoadSysMessageXML();
}
};
g_appinfo.appdata.appinfo_xml.load(LC_Const.C_APPINFO_XML_ADDRESS);
this.stop();
Frame 3
shift_enter_msg_btn.tabIndex = 1;
function JSCallBackSendMessage(ipText) {
LC_NaviPanelUtils.GetMessageTextBox().text = ipText;
SendMessage();
}
function Initialize() {
Key.removeListener(LC_AppUtils.GetAppInfo().appdata.keylistener);
LC_NaviPanelUtils.GetSysAlertButton()._visible = LC_AppUtils.GetAppInfo().power.admin;
SwitchDisplayEnable(false);
streaming_sound_mv._visible = false;
streaming_sound2_mv._visible = false;
var _local3 = 1;
while (_local3 <= LC_Const.C_MAX_RADIO) {
LC_AppUtils.GetRadioProcessor(_local3).ShowRadioWindow(false);
if (LC_RadioProcessor.GetCameraMC(_local3) != null) {
LC_RadioProcessor.GetCameraMC(_local3)._visible = false;
}
LC_AppUtils.GetRadioProcessor(_local3).InstallButtonCallBack();
_local3++;
}
move_panel_mov._visible = false;
LC_AppUtils.GetStatusProcessor().Initialize();
LC_AppUtils.GetStatusProcessor().ShowStatus(false);
LC_AppUtils.GetStatusProcessor().SetPlayerName(g_appinfo.player.name);
LC_AppUtils.GetStatusProcessor().SetPlayerHP(LC_AppUtils.GetRandomNumber(1, 15));
LC_AppUtils.GetStatusProcessor().SetPlayerMP(parseInt(LC_AppUtils.GetStatusProcessor().GetPlayerMP()) + parseInt(LC_AppUtils.GetRandomNumber(21, 28)));
LC_AppUtils.GetStatusProcessor().SetLoginCount(LC_AppUtils.GetStatusProcessor().GetLoginCount());
log_ctnr_mc.log_ta.borderColor = 10066329 /* 0x999999 */;
log_ctnr_mc.log_ta.html = true;
msg_pos_left_mc._visible = false;
msg_pos_up_mc._visible = false;
msg_pos_right_mc._visible = false;
msg_pos_down_mc._visible = false;
LC_NaviPanelUtils.GetBGMSoundMark()._visible = false;
LC_NaviPanelUtils.GetSFXSoundMark()._visible = false;
stage_sp.scrollRect = new flash.geom.Rectangle(0, 0, 650, 350);
stage_sp.opaqueBackground = 13421772 /* 0xCCCCCC */;
stage_sp.stage_mc.opaqueBackground = 13421772 /* 0xCCCCCC */;
stage_sp.tabEnabled = true;
stage_sp.focusEnabled = true;
stage_sp._focusrect = false;
Selection.setFocus(stage_sp);
this.SetQuality("MEDIUM");
g_appinfo.appdata.sounds.msg = new Sound();
g_appinfo.appdata.sounds.login = new Sound();
g_appinfo.appdata.sounds.msg.attachSound("sound_message.wav");
g_appinfo.appdata.sounds.login.attachSound("sound_login.wav");
_root.log_title_stat.text = LC_AppUtils.GetMsg(79);
LoadStageXML();
}
function LoadStageXML() {
nowloading_mov._visible = true;
g_appinfo.appdata.stage_xml.ignoreWhite = true;
g_appinfo.appdata.stage_xml.onLoad = function (ipSuccess) {
nowloading_mov._visible = false;
if (ipSuccess == true) {
g_appinfo.session.con.call("manageCheckHash", null, LC_AppUtils.GetHashGenerator().GetHash(g_appinfo.appdata.appinfo_xml.firstChild.toString()), LC_AppUtils.GetHashGenerator().GetHash(g_appinfo.appdata.char_xml.firstChild.toString()), LC_AppUtils.GetHashGenerator().GetHash(g_appinfo.appdata.message_xml.firstChild.toString()), LC_AppUtils.GetHashGenerator().GetHash(g_appinfo.appdata.stage_xml.firstChild.toString()), eval (g_appinfo.appdata.server_callback_func).call(_root));
} else {
LogoutFunction(LC_AppUtils.GetMsg(12));
}
};
g_appinfo.appdata.stage_xml.load(LC_Const.C_MAP_XML_ADDRESS);
}
function StartupAfterHashCheck() {
var _local2 = g_appinfo.appdata.stage_xml.firstChild;
var _local1 = null;
if ((g_login_area_id != "") && (g_login_stage_id != "")) {
_local1 = LC_AppUtils.GetStageRulaInfo(g_login_area_id, g_login_stage_id);
}
if ((_local1 == null) || (_local1.IsRulable != "1")) {
var _local3 = LC_AppUtils.GetRandomNumber(1, 2);
_local1 = new Object();
_local1.AreaId = _local2.attributes.init_aid;
_local1.StageId = _local2.attributes["init_sid" + _local3];
_local1.InitX = _local2.attributes["init_x" + _local3];
_local1.InitY = _local2.attributes["init_y" + _local3];
_local1.PlayerDirection = ((_local3 == 1) ? (LC_Const.C_DIREC_RIGHT) : (LC_Const.C_DIREC_DOWN));
}
CreateAndLoginToStage(_local1.AreaId, _local1.StageId, "", _local1.PlayerDirection, _local1.InitX, _local1.InitY, LC_Const.C_DIREC_RIGHT);
}
function CreateAndLoginToStage(ipAreaID, ipStageID, ipMessage, ipDirection, ipVirtualX, ipVirtualY, ipMsgDirection) {
var _local6 = g_appinfo.appdata.stage_xml.firstChild;
var lStageSpeed = "1";
var _local4 = _local6.firstChild;
while (_local4 != null) {
if (_local4.attributes.aid == ipAreaID) {
LC_AppUtils.GetStatusProcessor().SetAreaName(_local4.attributes.name);
LC_AppUtils.GetAppInfo().appdata.area_id = _local4.attributes.aid;
var _local1 = _local4.firstChild;
while (_local1 != null) {
if (_local1.attributes.sid == ipStageID) {
LC_AppUtils.GetStatusProcessor().SetStageName(_local1.attributes.name);
g_stageinfo = new LC_StageInfo();
g_stageinfo.data.stage.id = ipStageID;
g_ignore_processor = new LC_IgnoreProcessor(g_appinfo, g_stageinfo);
g_player_processor = new LC_PlayerProcessor(g_appinfo, g_stageinfo, GetStage(), g_ignore_processor);
g_stageprocessor = new LC_StageProcessor(g_stageinfo, GetStage());
g_effect_processor = new LC_EffectProcessor(g_appinfo, g_stageinfo, GetStage(), g_stageprocessor);
g_scroll_processor = new LC_ScrollProcessor(g_stageinfo, stage_sp, g_stageprocessor);
g_stageprocessor.MakeStagePanelArray(_local1);
g_stageprocessor.MakeStageBackground(_local1);
g_stageprocessor.MakeStagePanel(_local1);
g_stageprocessor.MakeStageWall(_local1);
g_stageprocessor.MakeFloorLines(_local1);
var _local3 = _local1.firstChild;
while (_local3 != null) {
var _local2 = _local3.firstChild;
while (_local2 != null) {
g_stageprocessor.MakePanel(_local3.attributes.x, _local2.attributes.y, _local2);
_local2 = _local2.nextSibling;
}
_local3 = _local3.nextSibling;
}
lStageSpeed = _local1.attributes.speed;
break;
}
_local1 = _local1.nextSibling;
}
break;
}
_local4 = _local4.nextSibling;
}
g_scroll_processor.SetViewPointCenter(ipVirtualX, ipVirtualY);
var _local5 = 1;
while (_local5 <= LC_Const.C_MAX_RADIO) {
LC_AppUtils.GetRadioProcessor(_local5).InitRadioWindow();
LC_AppUtils.GetRadioProcessor(_local5).ShowAllRadioWindow(LC_AppUtils.GetRadioProcessor(_local5).IsRadioStage());
_local5++;
}
g_stageinfo.data.loadwait_interval = setInterval(function () {
if (g_stageinfo.data.panel.var_id_loaded == g_stageinfo.data.panel.var_id) {
InitSO();
g_appinfo.session.con.call("manageLoginStage", null, ipStageID, ipMessage, ipDirection, ipVirtualX, ipVirtualY, ipMsgDirection, g_appinfo.player.cid, lStageSpeed);
var _local1 = 1;
while (_local1 <= LC_Const.C_MAX_RADIO) {
if (LC_AppUtils.GetRadioProcessor(_local1).IsRadioStage()) {
LC_AppUtils.GetRadioProcessor(_local1).InitStageStream();
}
_local1++;
}
SwitchDisplayEnable(true);
LC_AppUtils.AcceptEvents(true);
clearInterval(g_stageinfo.data.loadwait_interval);
g_stageinfo.data.loadwait_interval = null;
}
}, 10);
}
function DestoryStage() {
var _local1 = 1;
while (_local1 <= LC_Const.C_MAX_RADIO) {
if (LC_AppUtils.GetRadioProcessor(_local1).IsRadioStage()) {
LC_AppUtils.GetRadioProcessor(_local1).DestoryStageStream();
}
_local1++;
}
g_ignore_processor.RemoveIgnoreDialog();
SwitchDisplayEnable(false);
g_stageinfo.session.so.close();
g_stageinfo.session.so = null;
g_notify_processor.HideNotifyMessage();
g_player_processor.RemoveAllPlayerClip();
g_stageprocessor.ClearStage();
g_stageinfo.Destroy();
g_stageinfo = null;
}
function LogoutFromStage() {
SendLogoutStage();
DestoryStage();
}
function LogoutFunction(ipMessage) {
DestoryStage();
g_appinfo.session.con.onStatus = function (infoObj) {
FinishFunction(ipMessage);
};
g_appinfo.session.con.close();
g_appinfo.session.con = null;
}
function SwitchDisplayEnable(ipEnable) {
LC_AppUtils.AcceptEvents(ipEnable);
LC_AppUtils.StopEnterFrame(!ipEnable);
LC_NaviPanelUtils.GetMessageButton().enabled = ipEnable;
LC_NaviPanelUtils.GetLogoutButton().enabled = ipEnable;
LC_NaviPanelUtils.GetMessageDirMovie().enabled = ipEnable;
LC_NaviPanelUtils.GetDisplayQualityButton().enabled = ipEnable;
LC_NaviPanelUtils.GetDisplayQualityTextBox().enabled = ipEnable;
LC_NaviPanelUtils.GetVPLeftButton().enabled = ipEnable;
LC_NaviPanelUtils.GetVPRightButton().enabled = ipEnable;
LC_NaviPanelUtils.GetVPUpButton().enabled = ipEnable;
LC_NaviPanelUtils.GetVPBottomButton().enabled = ipEnable;
g_appinfo.appdata.play_bgm = false;
LC_NaviPanelUtils.GetBGMSoundMark()._visible = false;
if (g_stageinfo.data.bgmsound.name == "") {
LC_NaviPanelUtils.GetBGMSoundButton()._visible = false;
} else {
LC_NaviPanelUtils.GetBGMSoundButton()._visible = ipEnable;
}
}
function InitSO() {
g_stageinfo.session.so = SharedObject.getRemote("share_" + g_stageinfo.data.stage.id, g_appinfo.session.con.uri);
g_stageinfo.session.so.onSync = function (objArray) {
var _local7 = 0;
while (_local7 < objArray.length) {
var _local1 = objArray[_local7];
var _local3 = _local1.name;
var _local2 = LC_SOCodeUtils.GetTypeFromPropertyCode(_local3);
var _local4 = LC_SOCodeUtils.GetIDFromPropertyCode(_local3);
var _local5 = g_ignore_processor.IsIgnorePlayer(_local4);
if ((_local2 == LC_Const.C_PROP_HEAD_NAME) && (!_local5)) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local14 = g_stageinfo.session.so.data[_local3];
if (_local14 != null) {
ManagePlayerLogin(_local4, _local14);
}
}
} else if ((_local2 == LC_Const.C_PROP_HEAD_CHARACTER) && (!_local5)) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local10 = g_stageinfo.session.so.data[_local3];
if (_local10 != null) {
ManagePlayerCharacter(_local4, _local10);
}
}
} else if ((_local2 == LC_Const.C_PROP_HEAD_POWER) && (!_local5)) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local10 = g_stageinfo.session.so.data[_local3];
if (_local10 != null) {
ManagePlayerPower(_local4, _local10);
}
}
} else if ((_local2 == LC_Const.C_PROP_HEAD_DISPLAY) && (!_local5)) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local10 = g_stageinfo.session.so.data[_local3];
if (_local10 != null) {
ManagePlayerDisplay(_local4, _local10);
}
}
} else if ((_local2 == LC_Const.C_PROP_HEAD_MESSAGE) && (!_local5)) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local10 = g_stageinfo.session.so.data[_local3];
if (_local10 != null) {
ManagePlayerMessage(_local4, _local10);
}
}
} else if ((_local2 == LC_Const.C_PROP_HEAD_DIRECTION) && (!_local5)) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local15 = g_stageinfo.session.so.data[_local3];
if (_local15 != null) {
ManagePlayerDirection(_local4, _local15);
}
}
} else if ((_local2 == LC_Const.C_PROP_HEAD_POSITION) && (!_local5)) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local6 = g_stageinfo.session.so.data[_local3];
if (_local6 != null) {
var _local18 = LC_SOCodeUtils.GetVirtualXFromString(_local6);
var _local19 = LC_SOCodeUtils.GetVirtualYFromString(_local6);
ManagePlayerPosition(_local4, _local18, _local19);
}
}
} else if ((_local2 == LC_Const.C_PROP_HEAD_MSGPOS) && (!_local5)) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local15 = g_stageinfo.session.so.data[_local3];
if (_local15 != null) {
ManagePlayerMessagePosition(_local4, _local15);
}
}
} else if (_local2 == LC_Const.C_PROP_HEAD_NPC) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local13 = g_stageinfo.session.so.data[_local3];
if (_local13 != null) {
ManageNPCMessage(_local4, _local13);
}
}
} else if (_local2 == LC_Const.C_PROP_HEAD_IMAGE) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local8 = g_stageinfo.session.so.data[_local3];
if (_local8 != null) {
ManageImageURL(_local4, _local8);
}
}
} else if (_local2 == LC_Const.C_PROP_HEAD_LOG) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local11 = g_stageinfo.session.so.data[_local3];
if (_local11 != null) {
ManageLogMessage(_local11);
}
}
} else if ((((_local2 == LC_Const.C_PROP_HEAD_LISTENALLOWED) || (_local2 == LC_Const.C_PROP_HEAD_LISTENALLOWED2)) || (_local2 == LC_Const.C_PROP_HEAD_LISTENALLOWED3)) || (_local2 == LC_Const.C_PROP_HEAD_LISTENALLOWED4)) {
var _local9 = LC_RadioProcessor.GetIndexFromCode(_local2);
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local16 = g_stageinfo.session.so.data[_local3];
if (_local16 != null) {
LC_AppUtils.GetRadioProcessor(_local9).OnListenAllowMessageArrive(_local4, _local16);
}
}
} else if ((((_local2 == LC_Const.C_PROP_HEAD_BROADCAST) || (_local2 == LC_Const.C_PROP_HEAD_BROADCAST2)) || (_local2 == LC_Const.C_PROP_HEAD_BROADCAST3)) || (_local2 == LC_Const.C_PROP_HEAD_BROADCAST4)) {
var _local9 = LC_RadioProcessor.GetIndexFromCode(_local2);
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local16 = g_stageinfo.session.so.data[_local3];
if (_local16 != null) {
LC_AppUtils.GetRadioProcessor(_local9).OnBroadcastMessageArrive(_local4, _local16);
}
} else if ((_local1.code == "delete") || (_local1.code == "clear")) {
LC_AppUtils.GetRadioProcessor(_local9).OnUnBroadcastMessageArrive();
}
} else if (_local2 == LC_Const.C_PROP_HEAD_BIND) {
if (((_local1.code == "success") || (_local1.code == "reject")) || (_local1.code == "change")) {
var _local17 = LC_SOCodeUtils.GetBindVarNameFromPropertyCode(_local3);
var _local12 = g_stageinfo.session.so.data[_local3];
if (_local12 != null) {
ManageBind(_local17, _local12);
}
}
}
_local7++;
}
};
g_stageinfo.session.so.manageRula = function (ipPlayerIndex) {
if (g_ignore_processor.IsIgnorePlayer(ipPlayerIndex)) {
return(undefined);
}
if (ipPlayerIndex == LC_AppUtils.GetPlayerID()) {
return(undefined);
}
var _local1 = "action_rula_mov";
if (LC_CharacterUtils.IsPlayerDark(ipPlayerIndex)) {
_local1 = "action_dark_rula_mov";
} else if (LC_CharacterUtils.IsPlayerShar(ipPlayerIndex)) {
_local1 = "red_action_rula_mov";
}
ManagePlayerExit(ipPlayerIndex, _local1);
};
g_stageinfo.session.so.manageLogoutStage = function (ipPlayerIndex) {
if (g_ignore_processor.IsIgnorePlayer(ipPlayerIndex)) {
return(undefined);
}
g_player_processor.RemovePlayerClip(ipPlayerIndex);
};
g_stageinfo.session.so.manageLogout = function (ipPlayerIndex) {
if (g_ignore_processor.IsIgnorePlayer(ipPlayerIndex)) {
return(undefined);
}
var _local1 = "action_logoff_mov";
if (LC_CharacterUtils.IsPlayerDark(ipPlayerIndex)) {
_local1 = "action_dark_logout_mov";
}
ManagePlayerExit(ipPlayerIndex, _local1);
};
g_stageinfo.session.so.connect(g_appinfo.session.con);
}
function ManageBind(ipBindVarName, ipBindValue) {
var _local3 = LC_ObjectUtils.GetObjectFromBindVarName(ipBindVarName);
var _local1 = 0;
while (_local1 < _local3.length) {
var _local2 = _local3[_local1];
_local2.OnBind(ipBindVarName, ipBindValue);
_local1++;
}
}
function CheckMovable(ipVirtualX, ipVirtualY, ipDirection) {
switch (ipDirection) {
case LC_Const.C_DIREC_UP :
if (g_stageinfo.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_BARRIER_UP] == "1") {
return(false);
}
break;
case LC_Const.C_DIREC_RIGHT :
if (g_stageinfo.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_BARRIER_RIGHT] == "1") {
return(false);
}
break;
case LC_Const.C_DIREC_DOWN :
if (g_stageinfo.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_BARRIER_DOWN] == "1") {
return(false);
}
break;
case LC_Const.C_DIREC_LEFT :
if (g_stageinfo.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_BARRIER_LEFT] != "1") {
break;
}
return(false);
}
var _local2 = ipVirtualX;
var _local1 = ipVirtualY;
switch (ipDirection) {
case LC_Const.C_DIREC_UP :
_local1--;
break;
case LC_Const.C_DIREC_RIGHT :
_local2++;
break;
case LC_Const.C_DIREC_DOWN :
_local1++;
break;
case LC_Const.C_DIREC_LEFT :
_local2--;
}
switch (ipDirection) {
case LC_Const.C_DIREC_UP :
if (g_stageinfo.data.panel.xpanels[_local2][_local1][LC_Const.XML_PANEL_BARRIER_DOWN] == "1") {
return(false);
}
break;
case LC_Const.C_DIREC_RIGHT :
if (g_stageinfo.data.panel.xpanels[_local2][_local1][LC_Const.XML_PANEL_BARRIER_LEFT] == "1") {
return(false);
}
break;
case LC_Const.C_DIREC_DOWN :
if (g_stageinfo.data.panel.xpanels[_local2][_local1][LC_Const.XML_PANEL_BARRIER_UP] == "1") {
return(false);
}
break;
case LC_Const.C_DIREC_LEFT :
if (g_stageinfo.data.panel.xpanels[_local2][_local1][LC_Const.XML_PANEL_BARRIER_RIGHT] != "1") {
break;
}
return(false);
}
if ((((_local2 < 0) || (_local1 < 0)) || (_local2 == g_stageinfo.option.panel.x_count)) || (_local1 == g_stageinfo.option.panel.y_count)) {
return(false);
}
return(true);
}
function OrganizeMessageClip(pPlayerIndex) {
var _local6 = 0;
var _local7 = 0;
var _local5 = 0;
var _local4 = 0;
var _local3 = g_stageinfo.data.player.players[pPlayerIndex].message_position;
var _local1 = 0;
while (_local1 < 4) {
g_stageinfo.data.player.messages[pPlayerIndex].msg_parts[_local1]._visible = _local1 == _local3;
_local1++;
}
switch (_local3) {
case LC_Const.C_DIREC_LEFT :
_local5 = g_stageinfo.data.player.messages[pPlayerIndex].message_txt._width - 11;
_local4 = g_stageinfo.data.player.messages[pPlayerIndex].message_txt._height;
break;
case LC_Const.C_DIREC_RIGHT :
_local7 = 3;
_local5 = 10;
_local4 = 5;
break;
case LC_Const.C_DIREC_UP :
_local6 = 1;
_local5 = 1;
_local4 = g_stageinfo.data.player.messages[pPlayerIndex].message_txt._height - 10;
break;
case LC_Const.C_DIREC_DOWN :
_local5 = g_stageinfo.data.player.messages[pPlayerIndex].message_txt._width - 1;
_local4 = 9;
}
g_stageinfo.data.player.messages[pPlayerIndex].message_txt._x = _local6;
g_stageinfo.data.player.messages[pPlayerIndex].message_txt._y = _local7;
g_stageinfo.data.player.messages[pPlayerIndex].msg_parts[_local3]._x = _local5;
g_stageinfo.data.player.messages[pPlayerIndex].msg_parts[_local3]._y = _local4;
}
function SetMessagePosition(pPlayerIndex) {
if (!g_stageinfo.data.player.messages[pPlayerIndex]._visible) {
return(undefined);
}
var _local3 = g_stageinfo.data.player.players[pPlayerIndex]._x;
var _local2 = g_stageinfo.data.player.players[pPlayerIndex]._y;
switch (g_stageinfo.data.player.players[pPlayerIndex].message_position) {
case LC_Const.C_DIREC_LEFT :
_local3 = _local3 - (67 + g_stageinfo.data.player.messages[pPlayerIndex].message_txt._width);
_local2 = _local2 - (56 + g_stageinfo.data.player.messages[pPlayerIndex].message_txt._height);
break;
case LC_Const.C_DIREC_RIGHT :
_local3 = _local3 - 12;
_local2 = _local2 - 27;
break;
case LC_Const.C_DIREC_UP :
_local3 = _local3 - 13;
_local2 = _local2 - (56 + g_stageinfo.data.player.messages[pPlayerIndex].message_txt._height);
break;
case LC_Const.C_DIREC_DOWN :
_local3 = _local3 - (67 + g_stageinfo.data.player.messages[pPlayerIndex].message_txt._width);
_local2 = _local2 - 21;
}
if ((!LC_AppUtils.IsCdntEqual(g_stageinfo.data.player.messages[pPlayerIndex]._x, _local3)) || (!LC_AppUtils.IsCdntEqual(g_stageinfo.data.player.messages[pPlayerIndex]._y, _local2))) {
g_stageinfo.data.player.messages[pPlayerIndex]._x = _local3;
g_stageinfo.data.player.messages[pPlayerIndex]._y = _local2;
}
}
function CreatePlayerEffect(ipPrevX, ipPrevY, ipVirtualX, ipVirtualY) {
var _local6 = g_stageinfo.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_EFFECT_TOP];
g_effect_processor.CreateEffectClip(true, _local6, ipPrevX, ipPrevY, ipVirtualX, ipVirtualY);
var _local7 = g_stageinfo.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_EFFECT_BOTTOM];
g_effect_processor.CreateEffectClip(false, _local7, ipPrevX, ipPrevY, ipVirtualX, ipVirtualY);
var _local8 = g_stageinfo.data.panel.xpanels[ipPrevX][ipPrevY][LC_Const.XML_PANEL_EFFECT_PRE_TOP];
g_effect_processor.CreateEffectClip(true, _local8, ipPrevX, ipPrevY, ipPrevX, ipPrevY);
var _local5 = g_stageinfo.data.panel.xpanels[ipPrevX][ipPrevY][LC_Const.XML_PANEL_EFFECT_PRE_BOTTOM];
g_effect_processor.CreateEffectClip(false, _local5, ipPrevX, ipPrevY, ipPrevX, ipPrevY);
}
function DoSomethingAfterMove(ipPlayerIndex) {
if (g_stageinfo.data.player.players[ipPlayerIndex].depth_flag) {
SetPlayerDepth(g_stageinfo.data.player.players[ipPlayerIndex], g_stageinfo.data.player.players[ipPlayerIndex].virtual_x, g_stageinfo.data.player.players[ipPlayerIndex].virtual_y);
g_stageinfo.data.player.players[ipPlayerIndex].depth_flag = false;
}
if (g_stageinfo.data.player.players[ipPlayerIndex].action_flag != LC_Const.C_ACTION_NONE) {
switch (g_stageinfo.data.player.players[ipPlayerIndex].action_flag) {
case LC_Const.C_ACTION_STAND :
if (g_stageinfo.data.player.players[ipPlayerIndex].sit_flag) {
g_stageinfo.data.player.players[ipPlayerIndex].sit_flag = false;
ManagePlayerDirection(ipPlayerIndex, g_stageinfo.data.player.players[ipPlayerIndex].direction_flag);
}
break;
case LC_Const.C_ACTION_SIT :
if (g_stageinfo.data.player.players[ipPlayerIndex].sit_flag != false) {
break;
}
g_stageinfo.data.player.players[ipPlayerIndex].sit_flag = true;
ManagePlayerDirection(ipPlayerIndex, g_stageinfo.data.player.players[ipPlayerIndex].direction_flag);
}
g_stageinfo.data.player.players[ipPlayerIndex].action_flag = LC_Const.C_ACTION_NONE;
}
if (ipPlayerIndex == g_appinfo.player.id) {
if (g_stageinfo.data.player.players[ipPlayerIndex].warp_flag) {
var _local2 = g_stageinfo.data.player.players[ipPlayerIndex].virtual_x;
var _local3 = g_stageinfo.data.player.players[ipPlayerIndex].virtual_y;
var _local4 = g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_WARP_STAGE];
if (_local4 != "") {
if (_local4.indexOf("http://") == -1) {
var _local5 = g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_WARP_DIRECTION];
var _local9 = g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_WARP_X];
var _local8 = g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_WARP_Y];
var _local6 = GetMsgClip(ipPlayerIndex).message_txt.text;
var _local7 = g_stageinfo.data.player.players[ipPlayerIndex].message_position;
LogoutFromStage();
CreateAndLoginToStage("sea_city", _local4, _local6, _local5, _local9, _local8, _local7);
} else {
LC_AppUtils.NavigateToAnotherPage(_local4, g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_WARP_NAME]);
}
}
}
}
g_stageinfo.data.player.players[ipPlayerIndex].moving_flag = false;
}
function SetPlayerDepth(ipPlayerObj, ipVirtualX, ipVirtualY) {
var _local1 = LC_DepthUtils.GetEmptyDepth(GetStage(), LC_DepthUtils.GetPlayerPanelLayerDepthMin(ipVirtualX, ipVirtualY), LC_DepthUtils.GetPlayerPanelLayerDepthMax(ipVirtualX, ipVirtualY));
ipPlayerObj.swapDepths(parseInt(_local1));
}
function OnScrollPaneKeyPress() {
if (Key.isDown(17) && (Key.isDown(71))) {
if (Selection.getBeginIndex() != -1) {
Selection.setFocus(stage_sp);
} else {
Selection.setFocus(LC_NaviPanelUtils.GetMessageTextBox());
}
}
var _local1 = -1;
if (Key.isDown(37)) {
_local1 = 37;
} else if (Key.isDown(39)) {
_local1 = 39;
} else if (Key.isDown(38)) {
_local1 = 38;
} else if (Key.isDown(40)) {
_local1 = 40;
}
ReadPlayerMoveKeyPressFunction(_local1);
}
function ReadPlayerMoveKeyPressFunction(ipKeyCode) {
if (Selection.getBeginIndex() != -1) {
return(undefined);
}
if (g_stageinfo.data.player.players[g_appinfo.player.id].moving_flag) {
return(undefined);
}
ReadPlayerMoveKeyPress(ipKeyCode);
}
function ReadPlayerMoveKeyPress(ipKeyCode) {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
if (ipKeyCode == 37) {
if (g_stageinfo.data.player.players[g_appinfo.player.id].direction_flag != LC_Const.C_DIREC_LEFT) {
SendDirection(LC_Const.C_DIREC_LEFT);
} else {
SendPosition(LC_Const.C_DIREC_LEFT);
}
} else if (ipKeyCode == 39) {
if (g_stageinfo.data.player.players[g_appinfo.player.id].direction_flag != LC_Const.C_DIREC_RIGHT) {
SendDirection(LC_Const.C_DIREC_RIGHT);
} else {
SendPosition(LC_Const.C_DIREC_RIGHT);
}
} else if (ipKeyCode == 38) {
if (g_stageinfo.data.player.players[g_appinfo.player.id].direction_flag != LC_Const.C_DIREC_UP) {
SendDirection(LC_Const.C_DIREC_UP);
} else {
SendPosition(LC_Const.C_DIREC_UP);
}
} else if (ipKeyCode == 40) {
if (g_stageinfo.data.player.players[g_appinfo.player.id].direction_flag != LC_Const.C_DIREC_DOWN) {
SendDirection(LC_Const.C_DIREC_DOWN);
} else {
SendPosition(LC_Const.C_DIREC_DOWN);
}
}
}
function OnClipEventFunction() {
var _local5 = Math.abs;
var _local9 = LC_AppUtils.IsCdntEqual;
var _local6 = LC_AppUtils.IsFirstCdntBigger;
for (var _local10 in g_stageinfo.data.player.players) {
var _local1 = g_stageinfo.data.player.players[_local10];
var _local2 = g_stageinfo.option.panel.move_per_frame_x;
var _local3 = g_stageinfo.option.panel.move_per_frame_y;
if (LC_CharacterUtils.IsPlayerShar(_local10)) {
_local2 = (g_stageinfo.option.panel.width / 2) / 5;
_local3 = (g_stageinfo.option.panel.height / 2) / 5;
}
if (!_local9(_local1.move_to_x, -1)) {
var _local7 = false;
var _local8 = false;
var _local4 = _local10 == LC_AppUtils.GetPlayerID();
if (_local6(_local1.move_to_x, _local1._x)) {
_local1._x = _local1._x + _local2;
if (_local4) {
stage_sp.stage_mc._x = stage_sp.stage_mc._x - _local2;
}
} else if (_local6(_local1._x, _local1.move_to_x)) {
_local1._x = _local1._x - _local2;
if (_local4) {
stage_sp.stage_mc._x = stage_sp.stage_mc._x + _local2;
}
} else {
_local1.move_to_x = -1;
}
if (_local9(_local5(_local5(_local1.move_to_x) - _local5(_local1._x)), 0)) {
_local7 = true;
}
if (_local9(_local5(_local5(_local1.move_to_x) - _local5(_local1._x)), _local2)) {
_local8 = true;
}
if (_local6(_local1.move_to_y, _local1._y)) {
_local1._y = _local1._y + _local3;
if (_local4) {
stage_sp.stage_mc._y = stage_sp.stage_mc._y - _local3;
}
} else if (_local6(_local1._y, _local1.move_to_y)) {
_local1._y = _local1._y - _local3;
if (_local4) {
stage_sp.stage_mc._y = stage_sp.stage_mc._y + _local3;
}
} else {
_local1.move_to_y = -1;
}
if (_local8) {
if (_local4) {
ReadPlayerMoveKeyPress();
}
}
if (_local7) {
DoSomethingAfterMove(_local10);
}
if (_local1.msg_direction.flag) {
ManagePlayerDirectionFunction(_local10);
}
if (_local1.msg_move.flag) {
ManagePlayerPositionFunction(_local10);
}
}
SetMessagePosition(_local10);
}
}
function ManagePlayerExit(pPlayerIndex, ipActionMovieClipName) {
g_effect_processor.CreateEffectClip(true, ipActionMovieClipName, g_stageinfo.data.player.players[pPlayerIndex].virtual_x, g_stageinfo.data.player.players[pPlayerIndex].virtual_y, g_stageinfo.data.player.players[pPlayerIndex].virtual_x, g_stageinfo.data.player.players[pPlayerIndex].virtual_y, function (ipMovie) {
ipMovie.player_index = pPlayerIndex;
});
}
function ManagePlayerLogin(pPlayerIndex, pPlayerName) {
g_player_processor.MakeSurePlayerClip(pPlayerIndex);
g_stageinfo.data.player.players[pPlayerIndex]._visible = true;
if (!LC_AppUtils.GetStageInfo().option.anonymous) {
g_stageinfo.data.player.players[pPlayerIndex].name_txt.text = pPlayerName;
} else {
g_stageinfo.data.player.players[pPlayerIndex].name_txt.text = LC_AppUtils.GetMsg(9);
}
if (g_stageinfo.data.player.players[pPlayerIndex].name_txt.height >= 18) {
g_stageinfo.data.player.players[pPlayerIndex].name_txt._y = g_stageinfo.data.player.players[pPlayerIndex].name_txt._y - 12;
}
if (g_appinfo.appdata.play_sound) {
g_appinfo.appdata.sounds.login.start();
}
}
function ManagePlayerDisplay(ipPlayerIndex, ipDisplay) {
g_player_processor.MakeSurePlayerClip(ipPlayerIndex);
switch (ipDisplay) {
case LC_Const.C_DISPLAY_NONE :
LC_AppUtils.GetPlayerObj(ipPlayerIndex).name_txt.textColor = 255;
break;
case LC_Const.C_DISPLAY_GM :
LC_AppUtils.GetPlayerObj(ipPlayerIndex).name_txt.textColor = 16711680 /* 0xFF0000 */;
break;
}
}
function ManagePlayerPower(ipPlayerIndex, ipPower) {
g_player_processor.MakeSurePlayerClip(ipPlayerIndex);
LC_AppUtils.GetPlayerObj(ipPlayerIndex).power = ipPower;
}
function ManagePlayerCharacter(ipPlayerIndex, ipCharID) {
g_player_processor.MakeSurePlayerClip(pPlayerIndex);
LC_AppUtils.GetPlayerObj(ipPlayerIndex).cid = ipCharID;
LC_CharacterUtils.CreateCharacter(ipPlayerIndex);
}
function ManagePlayerMessage(pPlayerIndex, ipMessage) {
g_player_processor.MakeSurePlayerClip(pPlayerIndex);
if (ipMessage != "") {
var _local2 = ipMessage;
_local2 = _local2.split(" ").join(" ");
GetMsgClip(pPlayerIndex).message_txt.autoSize = true;
GetMsgClip(pPlayerIndex).message_txt.wordWrap = false;
GetMsgClip(pPlayerIndex).message_txt.text = _local2;
if (GetMsgClip(pPlayerIndex).message_txt._width > LC_Const.C_MESSAGE_WIDTH) {
GetMsgClip(pPlayerIndex).message_txt._width = LC_Const.C_MESSAGE_WIDTH / 2;
GetMsgClip(pPlayerIndex).message_txt.autoSize = true;
GetMsgClip(pPlayerIndex).message_txt.wordWrap = true;
GetMsgClip(pPlayerIndex).message_txt.text = _local2;
}
if (GetMsgClip(pPlayerIndex).message_txt._height >= LC_Const.C_MESSAGE_HEIGHT) {
GetMsgClip(pPlayerIndex).message_txt.autoSize = false;
GetMsgClip(pPlayerIndex).message_txt._height = LC_Const.C_MESSAGE_HEIGHT;
}
OrganizeMessageClip(pPlayerIndex);
GetMsgClip(pPlayerIndex)._visible = true;
SetMessagePosition(pPlayerIndex);
var _local5 = LC_Const.C_LOG_MAX_LINE;
if ((log_ctnr_mc.log_ta.maxscroll != 1) && (log_ctnr_mc.log_ta.scroll != log_ctnr_mc.log_ta.maxscroll)) {
_local5 = log_ctnr_mc.log_ta.scroll;
}
var _local4 = _local2.split("\r").join(" ");
_local4 = _local4.split(newline).join(" ");
var _local3 = g_stageinfo.data.player.players[pPlayerIndex].name_txt.text;
_local3 = _local3.split("\r").join("").split(newline).join("");
if (LC_AppUtils.GetAppInfo().appdata.showid) {
_local3 = _local3 + (("(" + g_stageinfo.data.player.players[pPlayerIndex].id_txt.text) + ")");
}
log_ctnr_mc.log_ta.htmlText = log_ctnr_mc.log_ta.htmlText + (((((LC_StringUtils.HTMLSpecialChars(_local3) + " ") + LC_AppUtils.GetAppInfo().appdata.msg_separato) + " ") + LC_StringUtils.GetTaggedLogText(_local4)) + newline);
if (log_ctnr_mc.log_ta.text.length > LC_Const.C_LOG_MAX_LENGTH) {
var _local6 = log_ctnr_mc.log_ta.text.length - LC_Const.C_LOG_MAX_LENGTH;
log_ctnr_mc.log_ta.replaceText(0, _local6, " ");
}
log_ctnr_mc.log_sb.setScrollProperties(LC_Const.C_LOG_LINE_ATONCE, 1, log_ctnr_mc.log_ta.maxscroll);
log_ctnr_mc.log_ta.scroll = _local5;
log_ctnr_mc.log_sb.scrollPosition = log_ctnr_mc.log_ta.maxscroll - 1;
if (g_appinfo.appdata.play_sound) {
g_appinfo.appdata.sounds.msg.start();
}
} else {
GetMsgClip(pPlayerIndex).message_txt.text = "";
GetMsgClip(pPlayerIndex)._visible = false;
}
}
function ManageImageURL(ipImageIndex, ipImageURL) {
var _local1 = LC_ObjectUtils.GetObjectFromImageID(ipImageIndex);
if (_local1 == null) {
return(undefined);
}
if (ipImageURL == "") {
_local1.img_mc._visible = false;
return(undefined);
}
var lImageContents = ipImageURL.split("\r");
_local1.img_mc.loadMovie(lImageContents[0]);
_local1.onPress = function () {
getURL (lImageContents[1], "_blank");
};
}
function ManageNPCMessage(pNPCIndex, ipNPCMessage) {
var _local1 = LC_ObjectUtils.GetObjectFromNPCID(pNPCIndex);
if (_local1 == null) {
return(undefined);
}
if (ipNPCMessage == "") {
_local1.msg_container._visible = false;
return(undefined);
}
var _local2 = ipNPCMessage.split("\r").join("").split(newline).join("");
_local1.msg_container.message_txt.htmlText = _local2;
_local1.msg_container._visible = true;
}
function ManageLogMessage(ipMessage) {
if (!LC_AppUtils.GetStageInfo().data.adv.first_log_msg_alive) {
LC_AppUtils.GetStageInfo().data.adv.first_log_msg_alive = true;
return(undefined);
}
var _local3 = ipMessage.split("\r").join("");
var _local1 = LC_Const.C_LOG_MAX_LINE;
if ((log_ctnr_mc.log_ta.maxscroll != 1) && (log_ctnr_mc.log_ta.scroll != log_ctnr_mc.log_ta.maxscroll)) {
_local1 = log_ctnr_mc.log_ta.scroll;
}
log_ctnr_mc.log_ta.htmlText = log_ctnr_mc.log_ta.htmlText + ((LC_AppUtils.GetMsg(13) + LC_StringUtils.GetTaggedLogText(_local3)) + newline);
if (log_ctnr_mc.log_ta.text.length > LC_Const.C_LOG_MAX_LENGTH) {
var _local2 = log_ctnr_mc.log_ta.text.length - LC_Const.C_LOG_MAX_LENGTH;
log_ctnr_mc.log_ta.replaceText(0, _local2, " ");
}
log_ctnr_mc.log_sb.setScrollProperties(LC_Const.C_LOG_LINE_ATONCE, 1, log_ctnr_mc.log_ta.maxscroll);
log_ctnr_mc.log_ta.scroll = _local1;
log_ctnr_mc.log_sb.scrollPosition = log_ctnr_mc.log_ta.maxscroll - 1;
if (g_appinfo.appdata.play_sound) {
g_appinfo.appdata.sounds.msg.start();
}
}
function ManagePlayerMessagePosition(pPlayerIndex, ipDirection) {
g_player_processor.MakeSurePlayerClip(pPlayerIndex);
if (pPlayerIndex == g_appinfo.player.id) {
ToggleMessagePositionButton(ipDirection);
}
g_stageinfo.data.player.players[pPlayerIndex].message_position = ipDirection;
if (g_stageinfo.data.player.players[pPlayerIndex]._visible) {
OrganizeMessageClip(pPlayerIndex);
}
}
function ManagePlayerDirection(pPlayerIndex, ipDirection) {
g_player_processor.MakeSurePlayerClip(pPlayerIndex);
g_stageinfo.data.player.players[pPlayerIndex].msg_direction.flag = true;
g_stageinfo.data.player.players[pPlayerIndex].msg_direction.direction_flag = ipDirection;
ManagePlayerDirectionFunction(pPlayerIndex);
}
function ManagePlayerDirectionFunction(pPlayerIndex) {
g_stageinfo.data.player.players[pPlayerIndex].msg_direction.flag = false;
g_stageinfo.data.player.players[pPlayerIndex].player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(g_stageinfo.data.player.players[pPlayerIndex].sit_flag, g_stageinfo.data.player.players[pPlayerIndex].msg_direction.direction_flag));
g_stageinfo.data.player.players[pPlayerIndex].direction_flag = g_stageinfo.data.player.players[pPlayerIndex].msg_direction.direction_flag;
}
function ManagePlayerPosition(pPlayerIndex, ipVirtualX, ipVirtualY) {
g_player_processor.MakeSurePlayerClip(pPlayerIndex);
g_stageinfo.data.player.players[pPlayerIndex].msg_move.flag = true;
g_stageinfo.data.player.players[pPlayerIndex].msg_move.virtual_x = ipVirtualX;
g_stageinfo.data.player.players[pPlayerIndex].msg_move.virtual_y = ipVirtualY;
ManagePlayerPositionFunction(pPlayerIndex);
}
function ManagePlayerPositionFunction(pPlayerIndex) {
if (g_stageinfo.data.player.players[pPlayerIndex].moving_flag) {
return(undefined);
}
g_stageinfo.data.player.players[pPlayerIndex].msg_move.flag = false;
g_stageinfo.data.player.players[pPlayerIndex].moving_flag = true;
var _local2 = g_stageinfo.data.player.players[pPlayerIndex].msg_move.virtual_x;
var _local3 = g_stageinfo.data.player.players[pPlayerIndex].msg_move.virtual_y;
var _local9 = g_stageprocessor.GetXFromVirtualAxis(_local2, _local3) + (g_stageinfo.option.panel.width / 2);
var _local8 = g_stageprocessor.GetYFromVirtualAxis(_local2, _local3) + (g_stageinfo.option.panel.height / 2);
var _local5 = true;
var _local4 = LC_AppUtils.IsCdntEqual(g_stageinfo.data.player.players[pPlayerIndex]._x, -1) & LC_AppUtils.IsCdntEqual(g_stageinfo.data.player.players[pPlayerIndex]._y, -1);
if (!_local4) {
g_stageinfo.data.player.players[pPlayerIndex].move_to_x = _local9;
g_stageinfo.data.player.players[pPlayerIndex].move_to_y = _local8;
if ((parseInt(_local2) + parseInt(_local3)) < (parseInt(g_stageinfo.data.player.players[pPlayerIndex].virtual_x) + parseInt(g_stageinfo.data.player.players[pPlayerIndex].virtual_y))) {
_local5 = false;
}
g_stageinfo.data.player.players[pPlayerIndex].player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetMoveAnimationFrameName(g_stageinfo.data.player.players[pPlayerIndex].direction_flag));
g_stageinfo.data.player.players[pPlayerIndex].sit_flag = false;
} else {
g_stageinfo.data.player.players[pPlayerIndex]._x = _local9;
g_stageinfo.data.player.players[pPlayerIndex]._y = _local8;
if (g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_ACTION] == LC_Const.C_ACTION_STAND) {
g_stageinfo.data.player.players[pPlayerIndex].sit_flag = true;
} else if (g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_ACTION] == LC_Const.C_ACTION_SIT) {
g_stageinfo.data.player.players[pPlayerIndex].sit_flag = false;
}
}
var _local11 = g_stageinfo.data.player.players[pPlayerIndex].virtual_x;
var _local10 = g_stageinfo.data.player.players[pPlayerIndex].virtual_y;
g_stageinfo.data.player.players[pPlayerIndex].virtual_x = _local2;
g_stageinfo.data.player.players[pPlayerIndex].virtual_y = _local3;
if (_local5) {
SetPlayerDepth(g_stageinfo.data.player.players[pPlayerIndex], _local2, _local3);
}
g_stageinfo.data.player.players[pPlayerIndex].depth_flag = !_local5;
g_stageinfo.data.player.players[pPlayerIndex].action_flag = g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_ACTION];
g_stageinfo.data.player.players[pPlayerIndex].warp_flag = !_local4;
if (pPlayerIndex == LC_AppUtils.GetPlayerID()) {
var _local6 = g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_HP_INCREASE];
if (_local6 != 0) {
LC_AppUtils.GetStatusProcessor().SetPlayerHP(LC_AppUtils.GetStatusProcessor().GetPlayerHP() + parseInt(_local6));
}
var _local7 = g_stageinfo.data.panel.xpanels[_local2][_local3][LC_Const.XML_PANEL_MP_INCREASE];
if (_local7 != 0) {
LC_AppUtils.GetStatusProcessor().SetPlayerMP(LC_AppUtils.GetStatusProcessor().GetPlayerMP() + parseInt(_local7));
}
}
if (_local4) {
DoSomethingAfterMove(pPlayerIndex);
}
if (!_local4) {
CreatePlayerEffect(_local11, _local10, _local2, _local3);
}
}
function SendMessage() {
var _local1 = LC_NaviPanelUtils.GetMessageTextBox().text;
_local1 = _local1.split("\t").join(" ");
var _local2 = LC_MessageScoreUtils.GetMessageScore(_local1);
if (_local2 != 0) {
LC_AppUtils.GetStatusProcessor().SetPlayerHP(LC_AppUtils.GetStatusProcessor().GetPlayerHP() + parseInt(_local2));
}
if (!LC_AppUtils.GetMagicProcessor().ParseMagic(_local1)) {
g_appinfo.session.con.call("manageMessage", null, _local1);
Selection.setFocus(LC_NaviPanelUtils.GetMessageTextBox());
} else {
Selection.setFocus(GetStage().stage_mc);
}
LC_NaviPanelUtils.GetMessageTextBox().text = "";
}
function SendSystemAlert() {
var _local1 = LC_NaviPanelUtils.GetMessageTextBox().text;
_local1 = _local1.split("\t").join(" ");
g_appinfo.session.con.call("manageSystemAlert", null, _local1);
LC_NaviPanelUtils.GetMessageTextBox().text = "";
}
function SendDirection(ipDirection) {
g_appinfo.session.con.call("manageDirection", null, ipDirection, g_stageinfo.data.player.players[g_appinfo.player.id].virtual_x, g_stageinfo.data.player.players[g_appinfo.player.id].virtual_y);
}
function SendPosition(ipDirection) {
if (CheckMovable(g_stageinfo.data.player.players[g_appinfo.player.id].virtual_x, g_stageinfo.data.player.players[g_appinfo.player.id].virtual_y, ipDirection)) {
g_appinfo.session.con.call("managePosition", null, ipDirection, g_stageinfo.data.player.players[g_appinfo.player.id].virtual_x, g_stageinfo.data.player.players[g_appinfo.player.id].virtual_y);
}
}
function SendMessagePosition(ipDirection) {
g_appinfo.session.con.call("manageMessagePosition", null, ipDirection);
}
function SendLogoutStage() {
g_appinfo.session.con.call("manageLogoutStage", null);
}
function SendIgnoreEach(ipTargetPlayerIndex) {
g_appinfo.session.con.call("manageIgnoreEach", null, ipTargetPlayerIndex);
}
function GetStage() {
return(stage_sp.stage_mc);
}
function GetMsgClip(pPlayerIndex) {
return(g_stageinfo.data.player.messages[pPlayerIndex]);
}
function StopBGMLoad() {
if (g_stageinfo.data.bgmsound.sound_obj != null) {
if (g_stageinfo.data.bgmsound.sound_obj.getBytesTotal() != g_stageinfo.data.bgmsound.sound_obj.getBytesLoaded()) {
g_stageinfo.data.bgmsound.sound_obj = null;
g_notify_processor.HideNotifyMessage();
}
}
}
function LoadBGMSound() {
if (g_stageinfo.data.bgmsound.name != "") {
if (g_stageinfo.data.bgmsound.sound_obj == null) {
g_stageinfo.data.bgmsound.sound_obj = new Sound();
g_stageinfo.data.bgmsound.sound_obj.onLoad = function (ipSuccess) {
if (ipSuccess) {
g_notify_processor.HideNotifyMessage();
if (g_appinfo.appdata.play_bgm) {
g_stageinfo.data.bgmsound.sound_obj.start();
}
} else {
g_appinfo.appdata.play_bgm = false;
LC_NaviPanelUtils.GetBGMSoundMark()._visible = false;
g_notify_processor.ShowNotifyMessage(LC_AppUtils.GetMsg(14), 16711680, true);
g_stageinfo.data.bgmsound.sound_obj = null;
}
};
g_stageinfo.data.bgmsound.sound_obj.onSoundComplete = function () {
g_stageinfo.data.bgmsound.sound_obj.start();
};
g_notify_processor.ShowNotifyMessage(LC_AppUtils.GetMsg(15), 5592405, false);
g_stageinfo.data.bgmsound.sound_obj.loadSound(g_stageinfo.data.bgmsound.name, false);
}
}
}
function SetQuality(ipQuality) {
this._quality = ipQuality;
LC_NaviPanelUtils.GetDisplayQualityTextBox().text = GetQualityString(ipQuality);
}
function GetQualityString(ipQuality) {
switch (ipQuality) {
case "LOW" :
return(LC_AppUtils.GetMsg(74));
case "MEDIUM" :
return(LC_AppUtils.GetMsg(75));
case "HIGH" :
return(LC_AppUtils.GetMsg(76));
case "BEST" :
return(LC_AppUtils.GetMsg(77));
}
return("");
}
function GetNextQualit() {
switch (LC_NaviPanelUtils.GetDisplayQualityTextBox().text) {
case LC_AppUtils.GetMsg(74) :
return("MEDIUM");
case LC_AppUtils.GetMsg(75) :
return("HIGH");
case LC_AppUtils.GetMsg(76) :
return("BEST");
case LC_AppUtils.GetMsg(77) :
return("LOW");
}
return("MEDIUM");
}
function ToggleEffectSound() {
g_appinfo.appdata.play_sound = !g_appinfo.appdata.play_sound;
LC_NaviPanelUtils.GetSFXSoundMark()._visible = g_appinfo.appdata.play_sound;
}
function ToggleBGMSound() {
if (g_stageinfo.data.bgmsound.name != "") {
g_appinfo.appdata.play_bgm = !g_appinfo.appdata.play_bgm;
LC_NaviPanelUtils.GetBGMSoundMark()._visible = g_appinfo.appdata.play_bgm;
if (g_appinfo.appdata.play_bgm) {
LoadBGMSound();
g_stageinfo.data.bgmsound.sound_obj.start();
} else {
StopBGMLoad();
g_stageinfo.data.bgmsound.sound_obj.stop();
}
}
}
function ToggleMessagePositionButton(ipDirection) {
if (ipDirection == g_stageinfo.data.player.players[g_appinfo.player.id].message_position) {
return(false);
}
LC_NaviPanelUtils.GetMessageDirMovie().SetDirection(ipDirection);
return(true);
}
function GetNumber() {
return(1);
}
_root.sample_navipanel_mc._visible = false;
LC_LoginPanelUtils.Hide();
LC_NaviPanelUtils.Build();
Initialize();
flash.external.ExternalInterface.addCallback("JSCallBackSendMessage", _root, JSCallBackSendMessage);
this.stop();
Instance of Symbol 2467 MovieClip "stage_sp" in Frame 3
onClipEvent (keyDown) {
_root.OnScrollPaneKeyPress();
}
onClipEvent (enterFrame) {
if (LC_AppUtils.IsEnterFrameStopped()) {
return(undefined);
}
_root.OnClipEventFunction();
}
Frame 4
function JSCallBackSendNone(ipText) {
}
flash.external.ExternalInterface.addCallback("JSCallBackSendMessage", _root, JSCallBackSendNone);
_root.sample_logoutpanel_mc._visible = false;
LC_LoginPanelUtils.Hide();
LC_NaviPanelUtils.Hide();
LC_LogoutPanelUtils.Build();
LC_LogoutPanelUtils.GetMessageTextBox().text = g_appinfo.relationdata.finish_msg;
this.stop();
Symbol 164 MovieClip Frame 1
stop();
Symbol 172 MovieClip [unagimiti_base_mov] Frame 1
var lUrl = "http://l4cs.jpn.org/gikopoi/sarashi/";
keiji_notice_mc.onPress = function () {
getURL (lUrl + "notice.jpg", "_blank");
};
keiji_001_mc.onPress = function () {
getURL (lUrl + "001.jpg", "_blank");
};
keiji_002_mc.onPress = function () {
getURL (lUrl + "002.jpg", "_blank");
};
keiji_003_mc.onPress = function () {
getURL (lUrl + "003.jpg", "_blank");
};
keiji_004_mc.onPress = function () {
getURL (lUrl + "004.jpg", "_blank");
};
keiji_005_mc.onPress = function () {
getURL (lUrl + "005.jpg", "_blank");
};
keiji_006_mc.onPress = function () {
getURL (lUrl + "006.jpg", "_blank");
};
keiji_007_mc.onPress = function () {
getURL (lUrl + "007.jpg", "_blank");
};
keiji_008_mc.onPress = function () {
getURL (lUrl + "008.jpg", "_blank");
};
keiji_009_mc.onPress = function () {
getURL (lUrl + "009.jpg", "_blank");
};
keiji_010_mc.onPress = function () {
getURL (lUrl + "010.jpg", "_blank");
};
keiji_011_mc.onPress = function () {
getURL (lUrl + "011.jpg", "_blank");
};
keiji_012_mc.onPress = function () {
getURL (lUrl + "012.jpg", "_blank");
};
keiji_013_mc.onPress = function () {
getURL (lUrl + "013.jpg", "_blank");
};
keiji_014_mc.onPress = function () {
getURL (lUrl + "014.jpg", "_blank");
};
keiji_015_mc.onPress = function () {
getURL (lUrl + "015.jpg", "_blank");
};
keiji_016_mc.onPress = function () {
getURL (lUrl + "016.jpg", "_blank");
};
keiji_017_mc.onPress = function () {
getURL (lUrl + "017.jpg", "_blank");
};
keiji_018_mc.onPress = function () {
getURL (lUrl + "018.jpg", "_blank");
};
keiji_019_mc.onPress = function () {
getURL (lUrl + "019.jpg", "_blank");
};
keiji_020_mc.onPress = function () {
getURL (lUrl + "020.jpg", "_blank");
};
keiji_021_mc.onPress = function () {
getURL (lUrl + "021.jpg", "_blank");
};
keiji_022_mc.onPress = function () {
getURL (lUrl + "022.jpg", "_blank");
};
Symbol 235 MovieClip Frame 1
function StopSound() {
if (SoundObject != null) {
_root.g_notify_processor.HideNotifyMessage();
SoundObject.stop();
SoundObject = null;
}
}
function LoadSound() {
if (SoundObject == null) {
SoundObject = new Sound();
SoundObject.onLoad = function (ipSuccess) {
if (ipSuccess) {
_root.g_notify_processor.HideNotifyMessage();
SoundObject.start();
} else {
_root.g_notify_processor.ShowNotifyMessage(LC_AppUtils.GetMsg(14), 16711680, true);
SoundObject = null;
}
};
SoundObject.onSoundComplete = function () {
SoundObject.start();
};
_root.g_notify_processor.ShowNotifyMessage(LC_AppUtils.GetMsg(15), 5592405, false);
SoundObject.loadSound("http://body4649.com/1.mp3", false);
}
}
var SoundObject = null;
StopButton._visible = false;
HideButton.onPress = function () {
this._parent._visible = false;
};
PlayButton.onPress = function () {
PlayButton._visible = false;
StopButton._visible = true;
LoadSound();
};
StopButton.onPress = function () {
StopButton._visible = false;
PlayButton._visible = true;
StopSound();
};
Symbol 236 MovieClip [takadai_radio_mov] Frame 1
HukidashiMC._visible = false;
RadioBox.onPress = function () {
HukidashiMC._visible = !HukidashiMC._visible;
};
Symbol 279 MovieClip [goemon_jouki_effect_mov] Frame 1
var rnd = Math.floor((Math.random() * 15) + 1);
gotoAndPlay(rnd);
Symbol 279 MovieClip [goemon_jouki_effect_mov] Frame 92
gotoAndPlay (17);
Symbol 300 MovieClip [takadai_jizou_move_mov] Frame 1
function OnBind(ipBindVarName, ipBindValue) {
if (ipBindVarName == C_BIND_VAR_NAME) {
DoBind(ipBindValue);
}
}
function DoBind(ipBindValue) {
CounterValue = parseInt(ipBindValue);
if (jizou_flg == 0) {
if (CounterValue == 0) {
if (jizou_move_flg == 0) {
gotoAndPlay ("move_end_lb");
} else {
gotoAndStop ("start_lb");
}
} else {
gotoAndPlay ("move_start_lb");
}
} else {
jizou_flg = 0;
if (CounterValue == 0) {
gotoAndStop ("start_lb");
} else {
gotoAndStop ("end_lb");
jizou_move_flg = 0;
}
}
}
var C_BIND_VAR_NAME = "jizou_turns";
var GikopoiObject = _level0.GetGikopoiObject();
var CounterValue = 1;
jizou_flg = 1;
jizou_move_flg = 1;
stop();
Symbol 300 MovieClip [takadai_jizou_move_mov] Frame 5
stop();
jizou_move_flg = 1;
Symbol 300 MovieClip [takadai_jizou_move_mov] Frame 23
jizou_move_flg = 0;
Symbol 300 MovieClip [takadai_jizou_move_mov] Frame 25
stop();
Symbol 338 MovieClip Frame 1
stop();
Symbol 341 MovieClip Frame 1
stop();
Symbol 345 MovieClip Frame 1
stop();
Symbol 360 MovieClip Frame 1
stop();
Symbol 362 MovieClip Frame 1
stop();
Symbol 375 MovieClip Frame 1
stop();
Instance of Symbol 584 MovieClip [clock_school_street_mov] in Symbol 590 MovieClip [backgroundB_school_ground_mov] Frame 1
onClipEvent (enterFrame) {
var dateobj = new Date();
tansin._rotation = ((dateobj.getHours() * 15) * 2) + (dateobj.getMinutes() / 2);
tyousin._rotation = dateobj.getMinutes() * 6;
byousin._rotation = dateobj.getSeconds() * 6;
}
Symbol 634 MovieClip [board2_school_mov] Frame 1
function OnBind(ipBindVarName, ipBindValue) {
if (ipBindVarName == "news_neta") {
DoBind(ipBindValue);
}
}
function DoBind(ipBindValue) {
var _local1 = GikopoiObject.GetFieldValuesFromCsvLine(ipBindValue);
var _local9 = _local1[0];
var _local11 = _local1[1];
var _local8 = _local1[2];
var _local7 = _local1[3];
var _local12 = _local1[4];
lNewsUrl = _local7;
var _local6 = "";
_local6 = _local6 + _local8;
DummyText_txt.autoSize = false;
DummyText_txt.text = _local6;
var _local10 = DummyText_txt._width;
var _local13 = DummyText_txt._height;
var _local4 = new flash.display.BitmapData(500, 500, true, 0);
_local4.draw(DummyText_txt);
var _local3 = new flash.display.BitmapData(500, 500, true, 0);
var _local2 = new flash.geom.Matrix();
_local2.translate(0, 120);
_local2.b = -0.506145483078356;
var _local5 = new flash.geom.ColorTransform();
_local3.draw(_local4, _local2, _local5, null, null, true);
DrawArea_mc.attachBitmap(_local3, 0);
}
var GikopoiObject = _level0.GetGikopoiObject();
var lNewsUrl = "";
ClickArea_mc.onPress = function () {
if (lNewsUrl != "") {
getURL (lNewsUrl, "_blank");
}
};
DummyText_txt._visible = false;
Symbol 795 MovieClip Frame 1
this._visible = false;
this.stop();
Symbol 795 MovieClip Frame 126
gotoAndPlay (2);
Symbol 796 MovieClip [seashore_mov] Frame 2
wave_mc1._visible = true;
wave_mc1.play();
Symbol 796 MovieClip [seashore_mov] Frame 60
wave_mc2._visible = true;
wave_mc2.play();
Symbol 912 MovieClip [summer_stair_kaidan_mov] Frame 1
loadMovieNum ("firefly.swf", 1);
Symbol 1022 MovieClip Frame 1
this.m_CounterText._visible = false;
this.stop();
Symbol 1022 MovieClip Frame 2
this.m_CounterText._visible = true;
if (this.m_GikopoiObject.IsPlaySoundEffect()) {
if (!this.m_FirstPlay) {
this.m_SaisenSound.start();
}
}
this.m_FirstPlay = false;
Symbol 1029 MovieClip [keidai_jinja_mov] Frame 1
function OnBind(ipBindVarName, ipBindValue) {
if (ipBindVarName == C_BIND_VAR_NAME) {
DoBind(ipBindValue);
}
}
function DoBind(ipBindValue) {
saisen_jinja_mv.play();
CounterValue = parseInt(ipBindValue);
Counter_txt.text = "\\" + SetComma(CounterValue * 10);
GikopoiObject.SetPlayerMp(GikopoiObject.GetPlayerMp() + 1);
}
function SetComma(number_str) {
number_str = String(number_str);
if (number_str.length > 3) {
number_str = (arguments.callee(number_str.substr(0, -3)) + ",") + number_str.substr(-3);
}
return(number_str);
}
var C_BIND_VAR_NAME = "saisenbako";
var GikopoiObject = _level0.GetGikopoiObject();
var CounterValue = 0;
DoBind(CounterValue);
var lSaisenSound = new Sound();
lSaisenSound.attachSound("sound_saisen.wav");
saisen_jinja_mv.m_CounterText = Counter_txt;
saisen_jinja_mv.m_GikopoiObject = GikopoiObject;
saisen_jinja_mv.m_SaisenSound = lSaisenSound;
saisen_jinja_mv.m_FirstPlay = true;
saisen_jinja_mv.onPress = function () {
if (this._currentframe != 1) {
return(undefined);
}
if (GikopoiObject.GetPlayerMp() <= 0) {
return(undefined);
}
CounterValue = CounterValue + 1;
GikopoiObject.SetBindVariable(C_BIND_VAR_NAME, CounterValue);
GikopoiObject.SetPlayerMp(GikopoiObject.GetPlayerMp() - 2);
};
Symbol 1082 MovieClip [takenoko_idoA_mov] Frame 1
function OnBind(ipBindVarName, ipBindValue) {
if (ipBindVarName == C_BIND_VAR_NAME) {
DoBind(ipBindValue);
}
}
function DoBind(ipBindValue) {
TakenokoY = parseFloat(ipBindValue);
TakenokoBody_mc._y = TakenokoY;
}
var C_BIND_VAR_NAME = "takenoko";
var GikopoiObject = _level0.GetGikopoiObject();
var TakenokoY = -25.8;
DoBind(TakenokoY);
TakenokoBody_mc.onPress = function () {
TakenokoY = TakenokoY - 1;
if (TakenokoY < -187.8) {
TakenokoY = -25.8;
}
GikopoiObject.SetBindVariable(C_BIND_VAR_NAME, TakenokoY);
};
Symbol 1412 MovieClip [bind_test_mov] Frame 1
function OnBind(ipValue) {
server_txt.text = ipValue;
}
Symbol 1463 MovieClip [water_effect_mov] Frame 10
this.removeMovieClip();
Symbol 1476 MovieClip [walk_effect_original_long_st_mov] Frame 12
this.removeMovieClip();
Symbol 1487 MovieClip [logoff_effect_mov] Frame 21
this.removeMovieClip();
Symbol 1503 MovieClip [Leaf_effect_mov] Frame 20
this.removeMovieClip();
Symbol 1519 MovieClip [takadai_Leaf_effect_mov] Frame 20
this.removeMovieClip();
Symbol 1520 MovieClip [jizou_move_efe_mov] Frame 1
var C_BIND_VAR_NAME = "jizou_turns";
var GikopoiObject = _level0.GetGikopoiObject();
var CounterValue = 1;
GikopoiObject.SetBindVariable(C_BIND_VAR_NAME, CounterValue);
Symbol 1520 MovieClip [jizou_move_efe_mov] Frame 5
stop();
this.removeMovieClip();
Symbol 1521 MovieClip [jizou_move_efe_end_mov] Frame 1
var C_BIND_VAR_NAME = "jizou_turns";
var GikopoiObject = _level0.GetGikopoiObject();
var CounterValue = 0;
GikopoiObject.SetBindVariable(C_BIND_VAR_NAME, CounterValue);
Symbol 1521 MovieClip [jizou_move_efe_end_mov] Frame 5
stop();
this.removeMovieClip();
Symbol 1529 MovieClip [goemon_oyu_u_effect_mov] Frame 11
this.removeMovieClip();
Symbol 1536 MovieClip [goemon_oyu_l_effect_mov] Frame 11
this.removeMovieClip();
Symbol 1537 MovieClip [goemon_oyu_r_effect_mov] Frame 10
this.removeMovieClip();
Symbol 1548 MovieClip [goemon_oyu_effect_mov] Frame 14
this.removeMovieClip();
Symbol 1910 MovieClip [red_action_rula_mov] Frame 7
if (this.player_index != undefined) {
_root.g_player_processor.RemovePlayerClip(this.player_index);
}
Symbol 1910 MovieClip [red_action_rula_mov] Frame 11
this.removeMovieClip();
Symbol 1920 MovieClip [action_rula_mov] Frame 7
if (this.player_index != undefined) {
_root.g_player_processor.RemovePlayerClip(this.player_index);
}
Symbol 1920 MovieClip [action_rula_mov] Frame 11
this.removeMovieClip();
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 1
var lPlayerMovie = LC_AppUtils.GetPlayerObj(this.player_index);
var lDownAmount = -5;
var lDarkRulaActionForeMovie = lPlayerMovie.attachMovie("dark_rula_action_fore_mov", "dark_rula_action_fore_mov" + this.player_index, lPlayerMovie.getNextHighestDepth(), {_x:0, _y:0});
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 2
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_LEFT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 3
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_UP));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 4
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_RIGHT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 5
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_DOWN));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 6
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_LEFT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 7
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_UP));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 8
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_RIGHT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 9
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_RIGHT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 10
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_DOWN));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 11
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_LEFT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1934 MovieClip [action_dark_rula_mov] Frame 12
_root.g_player_processor.RemovePlayerClip(this.player_index);
this.removeMovieClip();
Symbol 1951 MovieClip [action_logoff_mov] Frame 5
if (this.player_index != undefined) {
_root.g_player_processor.RemovePlayerClip(this.player_index);
}
Symbol 1951 MovieClip [action_logoff_mov] Frame 11
this.removeMovieClip();
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 1
var lPlayerMovie = LC_AppUtils.GetPlayerObj(this.player_index);
var lDownAmount = 5;
var lDarkLogoutActionBackMovie = lPlayerMovie.attachMovie("dark_logout_action_back_mov", "dark_logout_action_back_mov" + this.player_index, lPlayerMovie.getNextHighestDepth(), {_x:0, _y:0});
lDarkLogoutActionBackMovie.swapDepths(lPlayerMovie.player_action_layer_mc);
var lDarkLogoutActionMaskMovie = lPlayerMovie.attachMovie("dark_logout_action_mask_mov", "dark_logout_action_mask_mov" + this.player_index, lPlayerMovie.getNextHighestDepth(), {_x:0, _y:0});
lPlayerMovie.player_action_layer_mc.setMask(lDarkLogoutActionMaskMovie);
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_DOWN));
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 2
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_LEFT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 3
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_UP));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 4
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_RIGHT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 5
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_DOWN));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 6
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_LEFT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 7
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_UP));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 8
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_RIGHT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 9
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_DOWN));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 10
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_LEFT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 11
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_UP));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 12
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_RIGHT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 13
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_DOWN));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 14
lPlayerMovie.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(lPlayerMovie.sit_flag, LC_Const.C_DIREC_LEFT));
lPlayerMovie.player_action_layer_mc._y = lPlayerMovie.player_action_layer_mc._y + lDownAmount;
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 15
_root.g_player_processor.RemovePlayerClip(this.player_index);
Symbol 1952 MovieClip [action_dark_logout_mov] Frame 26
this.removeMovieClip();
Symbol 1960 MovieClip [BrdrShdw] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "shadowColor");
Symbol 1962 MovieClip [BrdrFace] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "buttonColor");
Symbol 1965 MovieClip [BrdrBlk] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "borderColor");
Symbol 1967 MovieClip [BrdrHilght] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "highlightColor");
Symbol 1970 MovieClip [Defaults] Frame 1
#initclip 83
Object.registerClass("Defaults", mx.skins.halo.Defaults);
#endinitclip
Symbol 1971 MovieClip [UIObjectExtensions] Frame 1
#initclip 84
Object.registerClass("UIObjectExtensions", mx.core.ext.UIObjectExtensions);
#endinitclip
Symbol 1972 MovieClip [UIObject] Frame 1
#initclip 85
Object.registerClass("UIObject", mx.core.UIObject);
#endinitclip
stop();
Symbol 1975 Button
on (keyPress "<Tab>") {
this.tabHandler();
}
Symbol 1976 MovieClip Frame 1
#initclip 86
Object.registerClass("FocusManager", mx.managers.FocusManager);
if (_root.focusManager == undefined) {
_root.createClassObject(mx.managers.FocusManager, "focusManager", mx.managers.DepthManager.highestDepth--);
}
#endinitclip
Symbol 1977 MovieClip [FocusRect] Frame 1
#initclip 87
Object.registerClass("FocusRect", mx.skins.halo.FocusRect);
#endinitclip
Symbol 1978 MovieClip [FocusManager] Frame 1
#initclip 88
Object.registerClass("FocusManager", mx.managers.FocusManager);
#endinitclip
stop();
Symbol 1979 MovieClip [UIComponentExtensions] Frame 1
#initclip 89
Object.registerClass("UIComponentExtensions", mx.core.ext.UIComponentExtensions);
#endinitclip
Symbol 1980 MovieClip [UIComponent] Frame 1
#initclip 90
Object.registerClass("UIComponent", mx.core.UIComponent);
#endinitclip
stop();
Symbol 1981 MovieClip [SimpleButton] Frame 1
#initclip 91
Object.registerClass("SimpleButton", mx.controls.SimpleButton);
#endinitclip
stop();
Symbol 1982 MovieClip [Border] Frame 1
#initclip 92
Object.registerClass("Border", mx.skins.Border);
#endinitclip
stop();
Symbol 1983 MovieClip [RectBorder] Frame 1
#initclip 93
mx.skins.SkinElement.registerElement(mx.skins.RectBorder.symbolName, Object(mx.skins.RectBorder));
Object.registerClass("RectBorder", mx.skins.halo.RectBorder);
#endinitclip
stop();
Symbol 1984 MovieClip [ButtonSkin] Frame 1
#initclip 94
Object.registerClass("ButtonSkin", mx.skins.halo.ButtonSkin);
#endinitclip
Symbol 1985 MovieClip [Button] Frame 1
#initclip 95
Object.registerClass("Button", mx.controls.Button);
#endinitclip
stop();
Instance of Symbol 1981 MovieClip [SimpleButton] in Symbol 1985 MovieClip [Button] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2012 MovieClip [CustomBorder] Frame 1
#initclip 96
Object.registerClass("CustomBorder", mx.skins.CustomBorder);
mx.skins.SkinElement.registerElement("CustomBorder", mx.skins.CustomBorder);
#endinitclip
Symbol 2024 MovieClip [ScrollThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 2026 MovieClip [ScrollThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 2037 MovieClip [ThumbThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 2039 MovieClip [ThumbThemeColor3] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 2046 MovieClip [ThumbThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 2067 MovieClip [BtnDownArrow] Frame 1
#initclip 97
Object.registerClass("BtnDownArrow", mx.controls.SimpleButton);
#endinitclip
Symbol 2068 MovieClip [BtnUpArrow] Frame 1
#initclip 98
Object.registerClass("BtnUpArrow", mx.controls.SimpleButton);
#endinitclip
Symbol 2070 MovieClip [HScrollBar] Frame 1
#initclip 99
Object.registerClass("HScrollBar", mx.controls.HScrollBar);
#endinitclip
stop();
Instance of Symbol 1985 MovieClip [Button] in Symbol 2070 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 1981 MovieClip [SimpleButton] in Symbol 2070 MovieClip [HScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2071 MovieClip [VScrollBar] Frame 1
#initclip 100
Object.registerClass("VScrollBar", mx.controls.VScrollBar);
#endinitclip
stop();
Instance of Symbol 1985 MovieClip [Button] in Symbol 2071 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 1981 MovieClip [SimpleButton] in Symbol 2071 MovieClip [VScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2072 MovieClip [View] Frame 1
#initclip 101
Object.registerClass("View", mx.core.View);
#endinitclip
stop();
Symbol 2073 MovieClip [ScrollView] Frame 1
#initclip 102
Object.registerClass("ScrollView", mx.core.ScrollView);
#endinitclip
stop();
Instance of Symbol 2070 MovieClip [HScrollBar] in Symbol 2073 MovieClip [ScrollView] Frame 2
//component parameters
onClipEvent (initialize) {
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2071 MovieClip [VScrollBar] in Symbol 2073 MovieClip [ScrollView] Frame 2
//component parameters
onClipEvent (initialize) {
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2074 MovieClip [TextArea] Frame 1
#initclip 103
Object.registerClass("TextArea", mx.controls.TextArea);
#endinitclip
stop();
Instance of Symbol 1985 MovieClip [Button] "allow_all_bt" in Symbol 2081 MovieClip [RadioTarget_Frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u5BA4\u5185\u306E\u5168\u54E1";
labelPlacement = "right";
selected = true;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "allow_selection_bt" in Symbol 2081 MovieClip [RadioTarget_Frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u7279\u5B9A\u30E6\u30FC\u30B6\u30FC\u3060\u3051";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "cancel_bt" in Symbol 2081 MovieClip [RadioTarget_Frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u30AD\u30E3\u30F3\u30BB\u30EB";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2074 MovieClip [TextArea] "agree_txt" in Symbol 2081 MovieClip [RadioTarget_Frm] Frame 1
//component parameters
onClipEvent (construct) {
editable = true;
html = true;
text = "";
wordWrap = true;
maxChars = 0;
restrict = "";
enabled = true;
password = false;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "agree_bt" in Symbol 2081 MovieClip [RadioTarget_Frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u540C\u610F\u3059\u308B";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2086 MovieClip Frame 1
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_SIT_LEFT);
is_movable = true;
Symbol 2086 MovieClip Frame 2
this.stop();
Symbol 2086 MovieClip Frame 3
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_SIT_RIGHT);
is_movable = true;
Symbol 2086 MovieClip Frame 4
this.stop();
Symbol 2086 MovieClip Frame 5
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_SIT_UP);
is_movable = true;
Symbol 2086 MovieClip Frame 6
this.stop();
Symbol 2086 MovieClip Frame 7
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_SIT_DOWN);
is_movable = true;
Symbol 2086 MovieClip Frame 8
this.stop();
Symbol 2086 MovieClip Frame 9
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_STAND_LEFT);
is_movable = true;
Symbol 2086 MovieClip Frame 10
this.stop();
Symbol 2086 MovieClip Frame 11
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_STAND_RIGHT);
is_movable = true;
Symbol 2086 MovieClip Frame 12
this.stop();
Symbol 2086 MovieClip Frame 13
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_STAND_UP);
is_movable = true;
Symbol 2086 MovieClip Frame 14
this.stop();
Symbol 2086 MovieClip Frame 15
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_STAND_DOWN);
is_movable = true;
Symbol 2086 MovieClip Frame 16
this.stop();
Symbol 2086 MovieClip Frame 17
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 0);
Symbol 2086 MovieClip Frame 18
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 1);
Symbol 2086 MovieClip Frame 19
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 2);
Symbol 2086 MovieClip Frame 20
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 3);
Symbol 2086 MovieClip Frame 21
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 4);
Symbol 2086 MovieClip Frame 22
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 5);
Symbol 2086 MovieClip Frame 23
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 6);
Symbol 2086 MovieClip Frame 24
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 7);
Symbol 2086 MovieClip Frame 25
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 8);
Symbol 2086 MovieClip Frame 26
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 9);
Symbol 2086 MovieClip Frame 27
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 10);
is_movable = true;
Symbol 2086 MovieClip Frame 28
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_UP + 11);
if (_parent._parent.sit_flag) {
gotoAndPlay ("sit_up_frm");
} else {
gotoAndPlay ("stand_up_frm");
}
Symbol 2086 MovieClip Frame 29
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 0);
Symbol 2086 MovieClip Frame 30
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 1);
Symbol 2086 MovieClip Frame 31
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 2);
Symbol 2086 MovieClip Frame 32
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 3);
Symbol 2086 MovieClip Frame 33
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 4);
Symbol 2086 MovieClip Frame 34
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 5);
Symbol 2086 MovieClip Frame 35
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 6);
Symbol 2086 MovieClip Frame 36
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 7);
Symbol 2086 MovieClip Frame 37
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 8);
Symbol 2086 MovieClip Frame 38
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 9);
Symbol 2086 MovieClip Frame 39
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 10);
is_movable = true;
Symbol 2086 MovieClip Frame 40
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_DOWN + 11);
if (_parent._parent.sit_flag) {
gotoAndPlay ("sit_down_frm");
} else {
gotoAndPlay ("stand_down_frm");
}
Symbol 2086 MovieClip Frame 41
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 0);
Symbol 2086 MovieClip Frame 42
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 1);
Symbol 2086 MovieClip Frame 43
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 2);
Symbol 2086 MovieClip Frame 44
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 3);
Symbol 2086 MovieClip Frame 45
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 4);
Symbol 2086 MovieClip Frame 46
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 5);
Symbol 2086 MovieClip Frame 47
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 6);
Symbol 2086 MovieClip Frame 48
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 7);
Symbol 2086 MovieClip Frame 49
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 8);
Symbol 2086 MovieClip Frame 50
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 9);
Symbol 2086 MovieClip Frame 51
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 10);
is_movable = true;
Symbol 2086 MovieClip Frame 52
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_LEFT + 11);
if (_parent._parent.sit_flag) {
gotoAndPlay ("sit_left_frm");
} else {
gotoAndPlay ("stand_left_frm");
}
Symbol 2086 MovieClip Frame 53
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 0);
Symbol 2086 MovieClip Frame 54
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 1);
Symbol 2086 MovieClip Frame 55
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 2);
Symbol 2086 MovieClip Frame 56
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 3);
Symbol 2086 MovieClip Frame 57
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 4);
Symbol 2086 MovieClip Frame 58
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 5);
Symbol 2086 MovieClip Frame 59
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 6);
Symbol 2086 MovieClip Frame 60
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 7);
Symbol 2086 MovieClip Frame 61
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 8);
Symbol 2086 MovieClip Frame 62
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 9);
Symbol 2086 MovieClip Frame 63
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 10);
is_movable = true;
Symbol 2086 MovieClip Frame 64
_parent.ShowPlayerMovieClip(LC_Const.C_CHAR_WALK_RIGHT + 11);
if (_parent._parent.sit_flag) {
gotoAndPlay ("sit_right_frm");
} else {
gotoAndPlay ("stand_right_frm");
}
Symbol 2087 MovieClip Frame 1
function ShowPlayerMovieClip(ipClipName) {
_parent.player_mc_ary[ipClipName]._visible = true;
for (var _local3 in _parent.player_mc_ary) {
if (_local3 != ipClipName) {
_parent.player_mc_ary[_local3]._visible = false;
}
}
}
Symbol 2096 MovieClip [player_mov] Frame 1
this.stop();
Symbol 2099 MovieClip [sys_alert_temporary_mov] Frame 600
this.removeMovieClip();
Symbol 2102 MovieClip [notify_temporary_mov] Frame 56
this.removeMovieClip();
Symbol 2105 MovieClip [notify_temporary_long_mov] Frame 341
this.removeMovieClip();
Symbol 2111 MovieClip [message_mov] Frame 1
stop();
Symbol 2129 MovieClip [DataGridAssets] Frame 1
#initclip 104
mx.controls.DataGrid.prototype.headerStyle = _global.styles.dataGridStyles;
#endinitclip
Symbol 2130 MovieClip [DataGridColumn] Frame 1
#initclip 105
Object.registerClass("DataGridColumn", mx.controls.gridclasses.DataGridColumn);
#endinitclip
stop();
Symbol 2131 MovieClip [SelectableRow] Frame 1
#initclip 106
Object.registerClass("SelectableRow", mx.controls.listclasses.SelectableRow);
#endinitclip
stop();
Symbol 2132 MovieClip [DataGridRow] Frame 1
#initclip 107
Object.registerClass("DataGridRow", mx.controls.gridclasses.DataGridRow);
#endinitclip
stop();
Symbol 2133 MovieClip [DataProvider] Frame 1
#initclip 108
Object.registerClass("DataProvider", mx.controls.listclasses.DataProvider);
#endinitclip
stop();
Symbol 2134 MovieClip [DataSelector] Frame 1
#initclip 109
Object.registerClass("DataSelector", mx.controls.listclasses.DataSelector);
#endinitclip
stop();
Symbol 2135 MovieClip [ScrollSelectList] Frame 1
#initclip 110
Object.registerClass("ScrollSelectList", mx.controls.listclasses.ScrollSelectList);
#endinitclip
stop();
Symbol 2136 MovieClip [List] Frame 1
#initclip 111
Object.registerClass("List", mx.controls.List);
#endinitclip
stop();
Symbol 2138 MovieClip [TextInput] Frame 1
#initclip 112
Object.registerClass("TextInput", mx.controls.TextInput);
#endinitclip
stop();
Symbol 2139 MovieClip [DataGrid] Frame 1
#initclip 113
Object.registerClass("DataGrid", mx.controls.DataGrid);
#endinitclip
stop();
Instance of Symbol 2136 MovieClip [List] in Symbol 2139 MovieClip [DataGrid] Frame 2
//component parameters
onClipEvent (initialize) {
multipleSelection = false;
rowHeight = 20;
}
Instance of Symbol 2138 MovieClip [TextInput] in Symbol 2139 MovieClip [DataGrid] Frame 2
//component parameters
onClipEvent (initialize) {
editable = true;
password = false;
text = "";
maxChars = null;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "jump_bt" in Symbol 2145 MovieClip [rula_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u30EB\u30FC\u30E9";
labelPlacement = "right";
selected = true;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "cancel_bt" in Symbol 2145 MovieClip [rula_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u30AD\u30E3\u30F3\u30BB\u30EB";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2139 MovieClip [DataGrid] "stage_info_spd" in Symbol 2145 MovieClip [rula_frm] Frame 1
//component parameters
onClipEvent (construct) {
editable = false;
multipleSelection = false;
rowHeight = 20;
}
Instance of Symbol 1985 MovieClip [Button] "yes_bt" in Symbol 2147 MovieClip [ignore_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u306F\u3044";
labelPlacement = "right";
selected = true;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "no_bt" in Symbol 2147 MovieClip [ignore_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u3044\u3044\u3048";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2161 MovieClip [ComboBase] Frame 1
#initclip 114
mx.controls.listclasses.DataSelector.Initialize(Object(mx.controls.ComboBase).prototype);
Object.registerClass("ComboBase", mx.controls.ComboBase);
#endinitclip
stop();
Instance of Symbol 1981 MovieClip [SimpleButton] in Symbol 2161 MovieClip [ComboBase] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2138 MovieClip [TextInput] in Symbol 2161 MovieClip [ComboBase] Frame 2
//component parameters
onClipEvent (initialize) {
editable = true;
password = false;
text = "";
maxChars = null;
restrict = "null";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2167 MovieClip [ComboDownArrowDisabled] Frame 1
#initclip 115
Object.registerClass("ComboDownArrowDisabled", mx.controls.SimpleButton);
#endinitclip
Symbol 2169 MovieClip [ComboThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 2172 MovieClip [ComboAssets] Frame 1
#initclip 116
mx.controls.ComboBox.prototype.downArrowUpName = "ComboDownArrowUp";
mx.controls.ComboBox.prototype.downArrowDownName = "ComboDownArrowDown";
mx.controls.ComboBox.prototype.downArrowOverName = "ComboDownArrowOver";
mx.controls.ComboBox.prototype.downArrowDisabledName = "ComboDownArrowDisabled";
mx.controls.ComboBox.prototype.wrapDownArrowButton = false;
mx.controls.ComboBox.prototype.dropDownBorderStyle = "solid";
mx.controls.ComboBox.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, {bl:0, tl:0, tr:5, br:5}, 100, _local2);
_local3.move(this.x - 2, this.y - 2);
};
#endinitclip
Symbol 2173 MovieClip [ComboBox] Frame 1
#initclip 117
Object.registerClass("ComboBox", mx.controls.ComboBox);
#endinitclip
stop();
Instance of Symbol 2136 MovieClip [List] in Symbol 2173 MovieClip [ComboBox] Frame 2
//component parameters
onClipEvent (initialize) {
multipleSelection = false;
rowHeight = 20;
}
Instance of Symbol 1985 MovieClip [Button] "new_btn" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u65B0\u898F\u767B\u9332";
labelPlacement = "right";
selected = true;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "cancel_btn" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u30AD\u30E3\u30F3\u30BB\u30EB";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2139 MovieClip [DataGrid] "main_spd" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
editable = false;
multipleSelection = false;
rowHeight = 20;
}
Instance of Symbol 1985 MovieClip [Button] "detail_btn" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u8A73\u7D30\u8868\u793A";
labelPlacement = "right";
selected = true;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "vote_btn" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u3053\u306E\u756A\u7D44\u30EF\u30ED\u30B9";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2173 MovieClip [ComboBox] "popularity_cbo" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
editable = false;
rowCount = 10;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2173 MovieClip [ComboBox] "stage_cbo" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
editable = false;
rowCount = 10;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "search_btn" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u691C\u7D22";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "rula_btn" in Symbol 2178 MovieClip [event_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u30B9\u30C6\u30FC\u30B8\u306B\u79FB\u52D5";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "register_btn" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u767B\u9332";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "cancel_btn" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u30AD\u30E3\u30F3\u30BB\u30EB";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "delete_btn" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u524A\u9664";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2173 MovieClip [ComboBox] "stage_cbo" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
editable = false;
rowCount = 10;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "edit_btn" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u7DE8\u96C6";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "vote_btn" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u3053\u306E\u756A\u7D44\u30EF\u30ED\u30B9";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2074 MovieClip [TextArea] "content_txt" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
editable = true;
html = false;
text = "";
wordWrap = true;
maxChars = 0;
restrict = "";
enabled = true;
password = false;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "logo_btn" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u8868\u793A";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "rula_btn" in Symbol 2204 MovieClip [event_detail_frm] Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u30B9\u30C6\u30FC\u30B8\u306B\u79FB\u52D5";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2209 MovieClip [char_select_panel_mov] Frame 1
this.onPress = function () {
_parent._parent._parent.OnItemSelect(this.cid);
};
Symbol 2253 MovieClip Frame 1
function SetDirection(ipDirection) {
msg_pos_left_mc._visible = false;
msg_pos_up_mc._visible = false;
msg_pos_right_mc._visible = false;
msg_pos_down_mc._visible = false;
switch (ipDirection) {
case LC_Const.C_DIREC_LEFT :
msg_pos_left_mc._visible = true;
break;
case LC_Const.C_DIREC_RIGHT :
msg_pos_right_mc._visible = true;
break;
case LC_Const.C_DIREC_UP :
msg_pos_up_mc._visible = true;
break;
case LC_Const.C_DIREC_DOWN :
msg_pos_down_mc._visible = true;
}
}
Symbol 2293 MovieClip [4_msg_direction_Mov] Frame 1
function SetDirection(ipDirection) {
msg_pos_left_mc._visible = false;
msg_pos_up_mc._visible = false;
msg_pos_right_mc._visible = false;
msg_pos_down_mc._visible = false;
switch (ipDirection) {
case LC_Const.C_DIREC_LEFT :
msg_pos_left_mc._visible = true;
break;
case LC_Const.C_DIREC_RIGHT :
msg_pos_right_mc._visible = true;
break;
case LC_Const.C_DIREC_UP :
msg_pos_up_mc._visible = true;
break;
case LC_Const.C_DIREC_DOWN :
msg_pos_down_mc._visible = true;
}
}
Symbol 2390 MovieClip [move_panel_mov] Frame 1
move_panel_up_mov.lIntervalPointer = null;
move_panel_down_mov.lIntervalPointer = null;
move_panel_left_mov.lIntervalPointer = null;
move_panel_right_mov.lIntervalPointer = null;
Instance of Symbol 2381 MovieClip "move_panel_back_mov" in Symbol 2390 MovieClip [move_panel_mov] Frame 1
on (press) {
var lXDiff = (_parent._parent._xmouse - _parent._x);
var lYDiff = (_parent._parent._ymouse - _parent._y);
this.onMouseMove = function () {
_parent._x = _parent._parent._xmouse - lXDiff;
_parent._y = _parent._parent._ymouse - lYDiff;
};
}
on (release) {
this.onMouseMove = null;
}
on (releaseOutside) {
this.onMouseMove = null;
}
Instance of Symbol 2383 MovieClip "move_panel_left_mov" in Symbol 2390 MovieClip [move_panel_mov] Frame 1
on (press) {
_root.ReadPlayerMoveKeyPressFunction(37);
this.lIntervalPointer = setInterval(function () {
_root.ReadPlayerMoveKeyPressFunction(37);
}, LC_Const.C_TABLET_KEY_REPEAT_TIME);
}
on (release) {
if (this.lIntervalPointer != null) {
clearInterval(this.lIntervalPointer);
}
}
on (releaseOutside) {
if (this.lIntervalPointer != null) {
clearInterval(this.lIntervalPointer);
}
}
Instance of Symbol 2385 MovieClip "move_panel_right_mov" in Symbol 2390 MovieClip [move_panel_mov] Frame 1
on (press) {
_root.ReadPlayerMoveKeyPressFunction(39);
this.lIntervalPointer = setInterval(function () {
_root.ReadPlayerMoveKeyPressFunction(39);
}, LC_Const.C_TABLET_KEY_REPEAT_TIME);
}
on (release) {
if (this.lIntervalPointer != null) {
clearInterval(this.lIntervalPointer);
}
}
on (releaseOutside) {
if (this.lIntervalPointer != null) {
clearInterval(this.lIntervalPointer);
}
}
Instance of Symbol 2387 MovieClip "move_panel_up_mov" in Symbol 2390 MovieClip [move_panel_mov] Frame 1
on (press) {
_root.ReadPlayerMoveKeyPressFunction(38);
this.lIntervalPointer = setInterval(function () {
_root.ReadPlayerMoveKeyPressFunction(38);
}, LC_Const.C_TABLET_KEY_REPEAT_TIME);
}
on (release) {
if (this.lIntervalPointer != null) {
clearInterval(this.lIntervalPointer);
}
}
on (releaseOutside) {
if (this.lIntervalPointer != null) {
clearInterval(this.lIntervalPointer);
}
}
Instance of Symbol 2389 MovieClip "move_panel_down_mov" in Symbol 2390 MovieClip [move_panel_mov] Frame 1
on (press) {
_root.ReadPlayerMoveKeyPressFunction(40);
this.lIntervalPointer = setInterval(function () {
_root.ReadPlayerMoveKeyPressFunction(40);
}, LC_Const.C_TABLET_KEY_REPEAT_TIME);
}
on (release) {
if (this.lIntervalPointer != null) {
clearInterval(this.lIntervalPointer);
}
}
on (releaseOutside) {
if (this.lIntervalPointer != null) {
clearInterval(this.lIntervalPointer);
}
}
Symbol 2412 MovieClip Frame 1
function SetDirection(ipDirection) {
msg_pos_left_mc._visible = false;
msg_pos_up_mc._visible = false;
msg_pos_right_mc._visible = false;
msg_pos_down_mc._visible = false;
switch (ipDirection) {
case LC_Const.C_DIREC_LEFT :
msg_pos_left_mc._visible = true;
break;
case LC_Const.C_DIREC_RIGHT :
msg_pos_right_mc._visible = true;
break;
case LC_Const.C_DIREC_UP :
msg_pos_up_mc._visible = true;
break;
case LC_Const.C_DIREC_DOWN :
msg_pos_down_mc._visible = true;
}
}
Symbol 2421 MovieClip [Modal] Frame 1
#initclip 118
mx.skins.SkinElement.registerElement("Modal");
#endinitclip
Symbol 2428 MovieClip [TitleBackground] Frame 1
#initclip 119
_global.mx.skins.TitleBackground = function () {
this.constructObject();
};
_global.mx.skins.TitleBackground.prototype = new mx.skins.CustomBorder();
_global.mx.skins.TitleBackground.prototype.className = "TitleBackground";
_global.mx.skins.TitleBackground.symbolName = "TitleBackground";
_global.mx.skins.TitleBackground.symbolOwner = _global.mx.skins.TitleBackground;
_global.mx.skins.TitleBackground.prototype.leftSkin = "TitleLeft";
_global.mx.skins.TitleBackground.prototype.middleSkin = "TitleMiddle";
_global.mx.skins.TitleBackground.prototype.rightSkin = "TitleRight";
_global.mx.skins.SkinElement.registerElement("TitleBackground", _global.mx.skins.TitleBackground);
_global.mx.skins.SkinElement.registerElement("TitleLeft");
_global.mx.skins.SkinElement.registerElement("TitleMiddle");
_global.mx.skins.SkinElement.registerElement("TitleRight");
_global.mx.skins.TitleBackground.prototype.init = function () {
super.init();
};
#endinitclip
Symbol 2437 MovieClip [WindowAssets] Frame 1
#initclip 120
mx.containers.Window.prototype.titleStyleDeclaration = "windowStyles";
#endinitclip
Symbol 2438 MovieClip [Window] Frame 1
#initclip 121
Object.registerClass("Window", mx.containers.Window);
#endinitclip
stop();
Instance of Symbol 1958 MovieClip [BoundingBox] "boundingBox_mc" in Symbol 2438 MovieClip [Window] Frame 1
/* no clip actions */
Instance of Symbol 1981 MovieClip [SimpleButton] in Symbol 2438 MovieClip [Window] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2440 MovieClip [AlertAssets] Frame 1
#initclip 122
mx.controls.Alert.titleStyleDeclaration = "windowStyles";
#endinitclip
Symbol 2441 MovieClip [Alert] Frame 1
#initclip 123
Object.registerClass("Alert", mx.controls.Alert);
#endinitclip
stop();
Instance of Symbol 2438 MovieClip [Window] in Symbol 2441 MovieClip [Alert] Frame 2
//component parameters
onClipEvent (initialize) {
closeButton = false;
contentPath = "";
title = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
skinCloseDisabled = "CloseButtonDisabled";
skinCloseDown = "CloseButtonDown";
skinCloseOver = "CloseButtonOver";
skinCloseUp = "CloseButtonUp";
skinTitleBackground = "TitleBackground";
titleStyleDeclaration = "";
}
Instance of Symbol 2074 MovieClip [TextArea] in Symbol 2441 MovieClip [Alert] Frame 2
//component parameters
onClipEvent (initialize) {
editable = true;
html = false;
text = "";
wordWrap = false;
maxChars = null;
restrict = "null";
enabled = true;
password = false;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] in Symbol 2441 MovieClip [Alert] Frame 2
//component parameters
onClipEvent (initialize) {
icon = "";
label = "Button";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2444 MovieClip [UIScrollBar] Frame 1
#initclip 124
Object.registerClass("UIScrollBar", mx.controls.UIScrollBar);
#endinitclip
stop();
Instance of Symbol 2071 MovieClip [VScrollBar] in Symbol 2444 MovieClip [UIScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2070 MovieClip [HScrollBar] in Symbol 2444 MovieClip [UIScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2446 MovieClip [ScrollPane] Frame 1
#initclip 125
Object.registerClass("ScrollPane", mx.containers.ScrollPane);
#endinitclip
stop();
Symbol 2560 MovieClip [__Packages.LC_AppUtils] Frame 0
class LC_AppUtils
{
function LC_AppUtils () {
}
static function AcceptEvents(ipAccept) {
_root.g_appinfo.appdata.accept_events = ipAccept;
}
static function IsEventAcceptable() {
return(_root.g_appinfo.appdata.accept_events);
}
static function StopEnterFrame(ipStop) {
_root.g_appinfo.appdata.stop_enterframe = ipStop;
}
static function IsEnterFrameStopped() {
return(_root.g_appinfo.appdata.stop_enterframe);
}
static function GetRandomNumber(ipMin, ipMax) {
var _local1 = (parseInt(ipMax) - parseInt(ipMin)) + 1;
return(Math.floor(Math.random() * parseInt(_local1)) + parseInt(ipMin));
}
static function GetStatusProcessor() {
return(_root.g_status_processor);
}
static function GetRadioProcessor(ipIndex) {
if (ipIndex == 1) {
return(_root.g_radio1_processor);
}
if (ipIndex == 2) {
return(_root.g_radio2_processor);
}
if (ipIndex == 3) {
return(_root.g_video1_processor);
}
if (ipIndex == 4) {
return(_root.g_radio3_processor);
}
}
static function GetYouTubeProcessor() {
return(_root.g_youtube_processor);
}
static function GetEventProcessor() {
return(_root.g_event_processor);
}
static function GetAppInfo() {
return(_root.g_appinfo);
}
static function GetStageInfo() {
return(_root.g_stageinfo);
}
static function GetMsg(ipIndex) {
return(_root.g_sys_message_processor.GetMsg(ipIndex));
}
static function GetPlayerID() {
return(_root.g_appinfo.player.id);
}
static function GetPlayerName() {
return(_root.g_appinfo.player.name);
}
static function GetPlayerObj(ipPlayerIndex) {
return(GetStageInfo().data.player.players[ipPlayerIndex]);
}
static function GetStageStreamName(ipIndex) {
return((((GetAppInfo().appdata.area_id + LC_Const.C_RADIO_STREAM_SEPARETER) + GetStageInfo().data.stage.id) + LC_Const.C_RADIO_STREAM_SEPARETER) + ipIndex);
}
static function GetNotifyProcessor() {
return(_root.g_notify_processor);
}
static function GetIgnoreProcessor() {
return(_root.g_ignore_processor);
}
static function GetMagicProcessor() {
return(_root.g_magic_processor);
}
static function GetHashGenerator() {
return(_root.g_hash_generator);
}
static function SendAliveMessage() {
GetAppInfo().session.con.call("manageLastAliveTime", null);
}
static function SetBindVariable(ipVarName, ipValue) {
GetAppInfo().session.con.call("manageBindVariable", null, ipVarName, ipValue);
}
static function AddLogMessage(ipSenderName, ipMessage) {
var _local2 = _root.log_ctnr_mc.log_ta;
var _local5 = _root.log_ctnr_mc.log_sb;
var _local6 = LC_Const.C_LOG_MAX_LINE;
if ((_local2.maxscroll != 1) && (_local2.scroll != _local2.maxscroll)) {
_local6 = _local2.scroll;
}
var _local3 = ipMessage.split("\r").join(" ");
_local3 = _local3.split(newline).join(" ");
var _local4 = ipSenderName;
_local4 = _local4.split("\r").join("").split(newline).join("");
_local2.replaceText(_local2.length, _local2.length, ((_local4 + " \uFF1A ") + _local3) + newline);
if (_local2.text.length > LC_Const.C_LOG_MAX_LENGTH) {
var _local7 = _local2.text.length - LC_Const.C_LOG_MAX_LENGTH;
_local2.replaceText(0, _local7, " ");
}
_local5.setScrollProperties(LC_Const.C_LOG_LINE_ATONCE, 1, _local2.maxscroll);
_local2.scroll = _local6;
_local5.scrollPosition = _local2.maxscroll - 1;
}
static function CreateResourceClip(ipParentMovie, ipMovieName, ipVariableName, ipDepth, ipX, ipY, ipCallBackAfterLoad) {
var _local1 = ipParentMovie.attachMovie(ipMovieName, ipVariableName, ipDepth, {_x:ipX, _y:ipY});
if ((_local1 == undefined) || (_local1 == null)) {
_local1 = ipParentMovie.createEmptyMovieClip(ipVariableName, ipDepth);
var _local2 = new Object();
_local2.onLoadInit = function (ipMovieClip) {
ipMovieClip._x = ipX;
ipMovieClip._y = ipY;
var _local1 = ipMovieClip.attachMovie(ipMovieName, "internal_mc", 100, {_x:0, _y:0});
_local1.outernal_res = true;
if ((ipCallBackAfterLoad != undefined) && (ipCallBackAfterLoad != null)) {
ipCallBackAfterLoad(_local1);
}
};
var _local4 = new MovieClipLoader();
_local4.addListener(_local2);
_local4.loadClip(LC_Const.C_RESOURCE_SWF_NAME, _local1);
} else if ((ipCallBackAfterLoad != undefined) && (ipCallBackAfterLoad != null)) {
ipCallBackAfterLoad(_local1);
}
}
static function IsPointerOnControlPanel(ipXMouse, ipYMouse) {
var _local2 = 1;
while (_local2 <= LC_Const.C_MAX_RADIO) {
var _local3 = LC_RadioProcessor.GetControlMC(_local2);
if (_local3.control_content_mov._visible) {
if (_local3.control_content_mov.hitTest(ipXMouse, ipYMouse, true)) {
return(true);
}
}
_local2++;
}
if (_root.move_panel_mov._visible) {
if (_root.move_panel_mov.hitTest(ipXMouse, ipYMouse, true)) {
return(true);
}
}
return(false);
}
static function SetKilledFlagToCookie() {
var _local1 = SharedObject.getLocal(LC_Const.C_RESTRICT_COOKIE_NAME);
var _local2 = new Date();
_local1.data.time_killed = _local2.getTime();
_local1.flush();
}
static function GetKilledFromCookie() {
var _local1 = SharedObject.getLocal(LC_Const.C_RESTRICT_COOKIE_NAME);
if (((_local1.data.time_killed == undefined) || (_local1.data.time_killed == null)) || (_local1.data.time_killed == "")) {
return(false);
}
var _local2 = new Date();
if ((_local2.getTime() - _local1.data.time_killed) > LC_Const.C_RESTRICT_TIME_MILLISECOND) {
_local1.data.time_killed = "";
_local1.flush();
return(false);
}
return(true);
}
static function NavigateToAnotherPage(ipURL, ipPageName) {
AcceptEvents(false);
var _local1 = function (ipEvent) {
LC_AppUtils.AcceptEvents(true);
if (ipEvent.detail == mx.controls.Alert.OK) {
getURL (ipURL, "_top");
}
};
var _local2 = mx.controls.Alert.show(ipPageName + GetMsg(82), GetMsg(83), mx.controls.Alert.OK | mx.controls.Alert.CANCEL, null, _local1, null, mx.controls.Alert.OK);
}
static function IsCdntEqual(ipVal1, ipVal2) {
return(Math.abs(ipVal1 - ipVal2) < 0.05);
}
static function IsFirstCdntBigger(ipVal1, ipVal2) {
return((ipVal1 > ipVal2) && (!IsCdntEqual(ipVal1, ipVal2)));
}
static function GetPlayerVersion(opVersion) {
opVersion.platform = "";
opVersion.ver_major = 0;
opVersion.ver_second_half = 0;
opVersion.ver_minor = 0;
var lPlayerVerStr = $version;
var lLength = length(lPlayerVerStr);
var i = 0;
while (i <= lLength) {
i = i + 1;
var lChar = (substring(lPlayerVerStr, i, 1));
if (lChar eq " ") {
opVersion.platform = substring(lPlayerVerStr, 1, i - 1);
var lVersionText = (substring(lPlayerVerStr, i + 1, -1));
var lVersionArray = lVersionText.split(",");
opVersion.ver_major = lVersionArray[0];
opVersion.ver_second_half = lVersionArray[1];
opVersion.ver_minor = lVersionArray[2];
}
}
}
static function TextPadding(ipText, ipLength, ipPadChar) {
var _local1 = String(ipText);
while (true) {
if (_local1.length >= ipLength) {
break;
}
_local1 = ipPadChar + _local1;
}
return(_local1);
}
static function GetStageNameFromID(ipStageID) {
var _local4 = GetAppInfo().appdata.stage_xml.firstChild;
var _local2 = _local4.firstChild;
while (_local2 != null) {
if (_local2.attributes.aid == "sea_city") {
var _local1 = _local2.firstChild;
while (_local1 != null) {
if (_local1.attributes.sid == ipStageID) {
return(_local1.attributes.name);
}
_local1 = _local1.nextSibling;
}
break;
}
_local2 = _local2.nextSibling;
}
}
static function MsgBox(ipTitle, ipMessage, ipDoAfterMsgBoxFunction) {
var _local1 = function (ipEvent) {
if ((ipDoAfterMsgBoxFunction != null) && (ipDoAfterMsgBoxFunction != undefined)) {
ipDoAfterMsgBoxFunction();
}
};
var _local2 = mx.controls.Alert.show(ipMessage, ipTitle, mx.controls.Alert.OK, null, _local1, null, mx.controls.Alert.OK);
}
static function ShowOkCancelBox(ipTitle, ipMessage, ipOnOkFunction) {
var _local1 = function (ipEvent) {
if (ipEvent.detail == mx.controls.Alert.OK) {
ipOnOkFunction();
}
};
var _local2 = mx.controls.Alert.show(ipMessage, ipTitle, mx.controls.Alert.OK | mx.controls.Alert.CANCEL, null, _local1, null, mx.controls.Alert.OK);
}
static function IsValidNumber(ipContent, ipMinVal, ipMaxVal) {
if (isNaN(ipContent)) {
return(false);
}
if (ipContent.indexOf("-") != -1) {
return(false);
}
if (ipContent.indexOf(".") != -1) {
return(false);
}
if (ipContent < ipMinVal) {
return(false);
}
if (ipContent > ipMaxVal) {
return(false);
}
return(true);
}
static function GetStageList() {
var _local4 = new Array();
var _local2 = 0;
var _local5 = GetAppInfo().appdata.stage_xml.firstChild;
var _local3 = _local5.firstChild;
while (_local3 != null) {
if (_local3.attributes.aid == "sea_city") {
var _local1 = _local3.firstChild;
while (_local1 != null) {
_local4[_local2] = new Object();
_local4[_local2].name = _local1.attributes.name;
_local4[_local2].id = _local1.attributes.sid;
_local2++;
_local1 = _local1.nextSibling;
}
break;
}
_local3 = _local3.nextSibling;
}
return(_local4);
}
static function GetStageRulaInfo(ipAreaId, ipStageId) {
var _local6 = GetAppInfo().appdata.stage_xml.firstChild;
var _local3 = _local6.firstChild;
while (_local3 != null) {
if (_local3.attributes.aid == ipAreaId) {
var _local1 = _local3.firstChild;
while (_local1 != null) {
if (_local1.attributes.sid == ipStageId) {
var _local2 = new Object();
_local2.AreaId = ipAreaId;
_local2.StageId = ipStageId;
_local2.IsRulable = _local1.attributes.rulable;
_local2.InitX = _local1.attributes.rula_x;
_local2.InitY = _local1.attributes.rula_y;
_local2.PlayerDirection = _local1.attributes.rula_dir;
return(_local2);
}
_local1 = _local1.nextSibling;
}
}
_local3 = _local3.nextSibling;
}
return(null);
}
static function GetValidString(ipText) {
return(ipText.split("\t").join("").split("\r").join("").split(newline).join("").split(" ").join("").split("\u3000").join(""));
}
static function GetWeekdayString(ipDateObject) {
switch (ipDateObject.getDay()) {
case 0 :
return(GetMsg(141));
case 1 :
return(GetMsg(142));
case 2 :
return(GetMsg(143));
case 3 :
return(GetMsg(144));
case 4 :
return(GetMsg(145));
case 5 :
return(GetMsg(146));
case 6 :
return(GetMsg(147));
}
return("");
}
static function GetFieldValuesFromCsvLine(ipCsvLine) {
var _local4 = new Array();
var _local6 = 0;
var _local7 = 0;
var _local1 = 0;
while (_local1 < ipCsvLine.length) {
var _local5 = ipCsvLine.charAt(_local1);
if (_local5 == "\"") {
_local7++;
if (_local1 == (ipCsvLine.length - 1)) {
if ((_local7 % 2) == 0) {
var _local2 = ipCsvLine.substring(_local6 + 1, _local1);
_local2 = _local2.split("\"\"").join("\"");
_local4[_local4.length] = _local2;
}
}
} else if (_local5 == ",") {
if ((_local7 % 2) == 0) {
var _local2 = ipCsvLine.substring(_local6 + 1, _local1 - 1);
_local2 = _local2.split("\"\"").join("\"");
_local4[_local4.length] = _local2;
_local6 = _local1 + 1;
}
}
_local1++;
}
return(_local4);
}
static function GetCsvQuotedValue(ipValue) {
var _local1 = ipValue.split("\"").join("\"\"");
_local1 = ("\"" + _local1) + "\"";
return(_local1);
}
}
Symbol 2561 MovieClip [__Packages.LC_Const] Frame 0
class LC_Const
{
function LC_Const () {
}
static var C_SERVER_ADDRESS_WEB = "rtmp://tswindy.serveftp.net:1937/";
static var C_SERVER_ADDRESS_LOCAL = "rtmp://192.168.10.210:1937/";
static var C_SERVER_CODE = "dt303eml8858792281";
static var C_VERSION_XML_ADDRESS = "version.xml";
static var C_MAP_XML_ADDRESS = "gikopoi.xml";
static var C_APPINFO_XML_ADDRESS = "appinfo.xml";
static var C_CHARINFO_XML_ADDRESS = "charinfo.xml";
static var C_MESSAGE_XML_ADDRESS = "message.xml";
static var C_SITE_URL_HEADER = "http://l4cs.jpn.org/";
static var C_SITE_URL_HEADER_ALIAS = "http://lmode.sakura.ne.jp/";
static var C_SITE_URL_HEADER_ALIAS2 = "http://l4cs.jpn.org/";
static var C_CONFIRMATION_ID = "l4csonline";
static var C_PROP_HEAD_NAME = "a";
static var C_PROP_HEAD_CHARACTER = "b";
static var C_PROP_HEAD_POWER = "c";
static var C_PROP_HEAD_MESSAGE = "d";
static var C_PROP_HEAD_DIRECTION = "e";
static var C_PROP_HEAD_POSITION = "f";
static var C_PROP_HEAD_MSGPOS = "g";
static var C_PROP_HEAD_BROADCAST = "h";
static var C_PROP_HEAD_LISTENALLOWED = "i";
static var C_PROP_HEAD_BROADCAST2 = "j";
static var C_PROP_HEAD_LISTENALLOWED2 = "k";
static var C_PROP_HEAD_BROADCAST3 = "l";
static var C_PROP_HEAD_LISTENALLOWED3 = "m";
static var C_PROP_HEAD_DISPLAY = "n";
static var C_PROP_HEAD_NPC = "o";
static var C_PROP_HEAD_LOG = "p";
static var C_PROP_HEAD_IMAGE = "q";
static var C_PROP_HEAD_BIND = "r";
static var C_PROP_HEAD_LISTENALLOWED4 = "s";
static var C_PROP_HEAD_BROADCAST4 = "t";
static var C_POWER_NONE = 0;
static var C_POWER_GM = 1;
static var C_POWER_ADMIN = 2;
static var C_DISPLAY_NONE = 0;
static var C_DISPLAY_GM = 1;
static var C_DIREC_LEFT = 0;
static var C_DIREC_RIGHT = 1;
static var C_DIREC_UP = 2;
static var C_DIREC_DOWN = 3;
static var C_PLAYER_ID_HEADER = "player_variables_";
static var C_MESSAGE_ID_HEADER = "message_variables_";
static var C_EFFECT_ID_HEADER = "effect_variables_";
static var C_NOTIFY_ID = "notify_variable";
static var C_PANEL_ID_HEADER = "panel_variables_";
static var C_PLAYER_MC_ID_HEADER = "player_mc_variables_";
static var C_NPC_MESSAGE_ID_HEADER = "npc_message_variables_";
static var C_SWF_TOP_VARIABLE_NAME = "swf_top_variable";
static var C_ACTION_NONE = "-1";
static var C_ACTION_STAND = "0";
static var C_ACTION_SIT = "1";
static var C_ACTION_CHANGE_STAGE = "2";
static var C_SYS_RESERVED = 1;
static var C_SYS_BACKGROUND = 1;
static var C_PLAYER_DEPTH = 700000;
static var C_MESSAGE_DEPTH = 800000;
static var C_NOTIFY_DEPTH = 900000;
static var C_NPC_MSG_DEPTH = 910000;
static var C_MESSAGE_WIDTH = 200;
static var C_MESSAGE_HEIGHT = 65;
static var C_LOG_LINE_ATONCE = 7;
static var C_LOG_MAX_LENGTH = 4192;
static var C_LOG_MAX_LINE = 99999;
static var C_STAGE_VIEW_WIDTH = 650;
static var C_STAGE_VIEW_HEIGHT = 350;
static var C_STAGE_MAX_USER = 12;
static var C_EFFECT_ID_MAX_SIZE = 1000000;
static var C_VIEWPOINT_SHIFT_MAX_X = 7;
static var C_VIEWPOINT_SHIFT_MAX_Y = 4;
static var C_ADMIN_USER = "L4CSADMINCONNECTIONLONGUSERNAME";
static var XML_PANEL_ELEMENT = "p";
static var XML_PANEL_OBJECT_BOTTOM = "o_btm";
static var XML_PANEL_OBJECT_TOP = "o_top";
static var XML_PANEL_WARP_STAGE = "wp_stg";
static var XML_PANEL_WARP_DIRECTION = "wp_dir";
static var XML_PANEL_WARP_X = "wp_x";
static var XML_PANEL_WARP_Y = "wp_y";
static var XML_PANEL_WARP_NAME = "wp_name";
static var XML_PANEL_EFFECT_BOTTOM = "ef_btm";
static var XML_PANEL_EFFECT_TOP = "ef_top";
static var XML_PANEL_EFFECT_PRE_BOTTOM = "ef_pre_btm";
static var XML_PANEL_EFFECT_PRE_TOP = "ef_pre_top";
static var XML_PANEL_BARRIER_UP = "b_U";
static var XML_PANEL_BARRIER_DOWN = "b_D";
static var XML_PANEL_BARRIER_LEFT = "b_L";
static var XML_PANEL_BARRIER_RIGHT = "b_R";
static var XML_PANEL_ACTION = "act";
static var XML_PANEL_HP_INCREASE = "hp_up";
static var XML_PANEL_MP_INCREASE = "mp_up";
static var XML_PANEL_OBJECT_SPECIAL = "o_spc";
static var XML_PANEL_NPC_ID = "npc_id";
static var XML_PANEL_IMAGE_ID = "img_id";
static var XML_PANEL_USE_BC = "use_bc";
static var XML_PANEL_BIND = "bind";
static var C_IGNORE_DIALOG_WIDTH = 405;
static var C_IGNORE_DIALOG_HEIGHT = 115;
static var C_RADIO_STREAM_SEPARETER = "^";
static var C_RADIO_TARGET_DIALOG_WIDTH = 405;
static var C_RADIO_TARGET_DIALOG_HEIGHT = 270;
static var C_MAX_RADIO = 4;
static var C_RULA_DIALOG_WIDTH = 500;
static var C_RULA_DIALOG_HEIGHT = 295;
static var C_EVENT_DIALOG_WIDTH = 575;
static var C_EVENT_DIALOG_HEIGHT = 350;
static var C_EVENT_DETAIL_DIALOG_WIDTH = 332;
static var C_EVENT_DETAIL_DIALOG_HEIGHT = 442;
static var C_ALIVE_MESSAGE_INTERVAL_MINUTE = 1;
static var C_RESOURCE_SWF_NAME = "gikopoi_resource.swf";
static var C_CHAR_SIT_RIGHT = "char_sit_right";
static var C_CHAR_SIT_LEFT = "char_sit_left";
static var C_CHAR_SIT_UP = "char_sit_up";
static var C_CHAR_SIT_DOWN = "char_sit_down";
static var C_CHAR_STAND_RIGHT = "char_stand_right";
static var C_CHAR_STAND_LEFT = "char_stand_left";
static var C_CHAR_STAND_UP = "char_stand_up";
static var C_CHAR_STAND_DOWN = "char_stand_down";
static var C_CHAR_WALK_RIGHT = "char_walk_right";
static var C_CHAR_WALK_LEFT = "char_walk_left";
static var C_CHAR_WALK_UP = "char_walk_up";
static var C_CHAR_WALK_DOWN = "char_walk_down";
static var C_CHAR_SELECT_LIST_PANEL = "char_select_list_panel";
static var C_CHAR_SELECT_LIST_PANEL_ICON = "char_select_list_panel_icon";
static var C_DARK_CHAR_INDEX_1 = "1010";
static var C_DARK_CHAR_INDEX_2 = "1011";
static var C_SHAR_CHAR_INDEX = "2012";
static var C_MAX_NPC = 5;
static var C_RESTRICT_COOKIE_NAME = "ipcxsofb";
static var C_RESTRICT_TIME_MILLISECOND = 1800000;
static var C_LOGIN_COOKIE_NAME = "ipcxgnis";
static var C_LOGIN_COOKIE_CRYPT_SEED = "ipcxgidp";
static var C_VOTE_COOKIE_NAME = "bssxvtdt";
static var C_VOTE_COOKIE_CRYPT_SEED = "ipcxgvot";
static var C_REGISTER_COOKIE_NAME = "aseddreg";
static var C_REGISTER_COOKIE_CRYPT_SEED = "ipcxgreg";
static var C_BIND_VARNAME_ACCEPT_ALL = "_all";
static var C_TABLET_KEY_REPEAT_TIME = 100;
}
Symbol 2562 MovieClip [__Packages.LC_RadioProcessor] Frame 0
class LC_RadioProcessor
{
var m_Index, m_IsRadio, m_FunctionID, m_AppInfoObj, m_RecieveFlagOnBroadcast, m_FirstMicrophoneCall, m_LocalStream;
function LC_RadioProcessor (ipIndex, IsRadio, ipFuncID, ipAppInfoObj) {
m_Index = ipIndex;
m_IsRadio = IsRadio;
m_FunctionID = ipFuncID;
m_AppInfoObj = ipAppInfoObj;
m_RecieveFlagOnBroadcast = false;
m_FirstMicrophoneCall = true;
}
static function GetControlMC(ipIndex) {
if (ipIndex == 1) {
return(_root.radio_window_mov);
}
if (ipIndex == 2) {
return(_root.radio2_window_mov);
}
if (ipIndex == 3) {
return(_root.video_window_mov);
}
if (ipIndex == 4) {
return(_root.radio3_window_mov);
}
}
static function GetInfo(ipIndex) {
if (ipIndex == 1) {
return(LC_AppUtils.GetStageInfo().data.radio);
}
if (ipIndex == 2) {
return(LC_AppUtils.GetStageInfo().data.radio2);
}
if (ipIndex == 3) {
return(LC_AppUtils.GetStageInfo().data.video);
}
if (ipIndex == 4) {
return(LC_AppUtils.GetStageInfo().data.radio3);
}
}
static function GetStreamMC(ipIndex) {
if (ipIndex == 1) {
return(_root.streaming_sound_mv);
}
if (ipIndex == 2) {
return(_root.streaming_sound2_mov);
}
if (ipIndex == 3) {
return(_root.camera_window_mov.camera_window_content_mov);
}
if (ipIndex == 4) {
return(_root.streaming_sound3_mov);
}
}
static function GetCameraMC(ipIndex) {
if (ipIndex == 3) {
return(_root.camera_window_mov);
}
return(null);
}
static function GetPlayerListenAllowed(ipPlayer, ipIndex) {
if (ipIndex == 1) {
return(ipPlayer.listen_allowed);
}
if (ipIndex == 2) {
return(ipPlayer.listen_allowed2);
}
if (ipIndex == 3) {
return(ipPlayer.listen_allowed3);
}
if (ipIndex == 4) {
return(ipPlayer.listen_allowed4);
}
}
static function SetPlayerListenAllowed(ipPlayer, ipIndex, ipAllowed) {
if (ipIndex == 1) {
ipPlayer.listen_allowed = ipAllowed;
} else if (ipIndex == 2) {
ipPlayer.listen_allowed2 = ipAllowed;
} else if (ipIndex == 3) {
ipPlayer.listen_allowed3 = ipAllowed;
} else if (ipIndex == 4) {
ipPlayer.listen_allowed4 = ipAllowed;
}
}
static function GetPlayerAllowedButton(ipPlayer, ipIndex) {
if (ipIndex == 1) {
return(ipPlayer.listen_allowed_bt);
}
if (ipIndex == 2) {
return(ipPlayer.listen_allowed2_bt);
}
if (ipIndex == 3) {
return(ipPlayer.listen_allowed3_bt);
}
if (ipIndex == 4) {
return(ipPlayer.listen_allowed4_bt);
}
}
static function GetPlayerNotAllowedButton(ipPlayer, ipIndex) {
if (ipIndex == 1) {
return(ipPlayer.listen_not_allowed_bt);
}
if (ipIndex == 2) {
return(ipPlayer.listen_not_allowed2_bt);
}
if (ipIndex == 3) {
return(ipPlayer.listen_not_allowed3_bt);
}
if (ipIndex == 4) {
return(ipPlayer.listen_not_allowed4_bt);
}
}
static function GetIndexFromCode(ipCode) {
if ((ipCode == LC_Const.C_PROP_HEAD_BROADCAST) || (ipCode == LC_Const.C_PROP_HEAD_LISTENALLOWED)) {
return(1);
}
if ((ipCode == LC_Const.C_PROP_HEAD_BROADCAST2) || (ipCode == LC_Const.C_PROP_HEAD_LISTENALLOWED2)) {
return(2);
}
if ((ipCode == LC_Const.C_PROP_HEAD_BROADCAST3) || (ipCode == LC_Const.C_PROP_HEAD_LISTENALLOWED3)) {
return(3);
}
if ((ipCode == LC_Const.C_PROP_HEAD_BROADCAST4) || (ipCode == LC_Const.C_PROP_HEAD_LISTENALLOWED4)) {
return(4);
}
}
static function GetFunctionName(IsRadio) {
if (IsRadio) {
return(LC_AppUtils.GetMsg(24));
}
return(LC_AppUtils.GetMsg(25));
}
static function GetFunctionNameNarrow(IsRadio) {
if (IsRadio) {
return(LC_AppUtils.GetMsg(26));
}
return(LC_AppUtils.GetMsg(27));
}
function InitRadioWindow() {
var IsRadio = m_IsRadio;
var lFunctionID = m_FunctionID;
var lFunctionName = GetFunctionNameNarrow(m_IsRadio);
GetControlMC(m_Index).control_content_mov.mc_index = m_Index;
with (GetControlMC(m_Index).control_content_mov) {
title_st.text = (((lFunctionName + "(") + lFunctionID) + ")") + LC_AppUtils.GetMsg(56);
recieve_st.text = (IsRadio ? (LC_AppUtils.GetMsg(48)) : (LC_AppUtils.GetMsg(49)));
broadcast_st.text = (IsRadio ? (LC_AppUtils.GetMsg(50)) : (LC_AppUtils.GetMsg(51)));
target_st.text = (IsRadio ? (LC_AppUtils.GetMsg(52)) : (LC_AppUtils.GetMsg(53)));
if (IsRadio) {
volume_st.text = LC_AppUtils.GetMsg(54);
mic_gage_st.text = LC_AppUtils.GetMsg(55);
}
recieve_tx.text = LC_AppUtils.GetMsg(28);
broadcast_tx.text = "";
broadcast_id_tx.text = "";
broadcast_id_tx._visible = LC_AppUtils.GetAppInfo().appdata.showid == true;
target_tx.text = "";
recieve_bt.enabled = true;
recieve_bt.label = (IsRadio ? (LC_AppUtils.GetMsg(70)) : (LC_AppUtils.GetMsg(71)));
broadcast_bt.enabled = true;
broadcast_bt.label = (IsRadio ? (LC_AppUtils.GetMsg(72)) : (LC_AppUtils.GetMsg(73)));
setting_bt.label = (IsRadio ? (LC_AppUtils.GetMsg(46)) : (LC_AppUtils.GetMsg(47)));
}
}
function ShowRadioWindow(ipShow) {
GetControlMC(m_Index).control_content_mov._visible = ipShow;
}
function ShowAllRadioWindow(ipShow) {
GetControlMC(m_Index)._visible = ipShow;
}
function ShowUserListenAllowedButton(ipPlayerObj, ipShow) {
if (ipShow) {
var _local3 = GetPlayerListenAllowed(ipPlayerObj, m_Index);
GetPlayerAllowedButton(ipPlayerObj, m_Index)._visible = _local3;
GetPlayerNotAllowedButton(ipPlayerObj, m_Index)._visible = !_local3;
} else {
GetPlayerAllowedButton(ipPlayerObj, m_Index)._visible = false;
GetPlayerNotAllowedButton(ipPlayerObj, m_Index)._visible = false;
}
}
function ShowMicSetting(ipIndex, IsRadio) {
if (IsRadio) {
System.showSettings(2);
} else {
System.showSettings(3);
}
}
function SetAllPlayerListenAllowedMarkClickable(ipClickable) {
for (var _local3 in LC_AppUtils.GetStageInfo().data.player.players) {
if (_local3 != LC_AppUtils.GetPlayerID()) {
SetListenAllowedMarkClickable(_local3, ipClickable);
}
}
}
function SetListenAllowedMarkClickable(ipPlayerIndex, ipClickable) {
var lPlayerObj = LC_AppUtils.GetPlayerObj(ipPlayerIndex);
var lRadioIndex = m_Index;
if (ipClickable) {
GetPlayerNotAllowedButton(lPlayerObj, m_Index).onPress = function () {
};
GetPlayerNotAllowedButton(lPlayerObj, m_Index).useHandCursor = true;
GetPlayerAllowedButton(lPlayerObj, m_Index).onPress = function () {
};
GetPlayerAllowedButton(lPlayerObj, m_Index).useHandCursor = true;
GetPlayerNotAllowedButton(lPlayerObj, m_Index).onMouseDown = function () {
if ((_root._xmouse <= LC_Const.C_STAGE_VIEW_WIDTH) && (_root._ymouse <= LC_Const.C_STAGE_VIEW_HEIGHT)) {
if (LC_RadioProcessor.GetPlayerNotAllowedButton(lPlayerObj, lRadioIndex).hitTest(_root._xmouse, _root._ymouse, true)) {
LC_AppUtils.GetAppInfo().session.con.call("manageReverseListenAllowed", null, lRadioIndex, ipPlayerIndex);
}
}
};
GetPlayerNotAllowedButton(lPlayerObj, m_Index).onMouseDown = function () {
if ((_root._xmouse <= LC_Const.C_STAGE_VIEW_WIDTH) && (_root._ymouse <= LC_Const.C_STAGE_VIEW_HEIGHT)) {
if (LC_RadioProcessor.GetPlayerNotAllowedButton(lPlayerObj, lRadioIndex).hitTest(_root._xmouse, _root._ymouse, true)) {
LC_AppUtils.GetAppInfo().session.con.call("manageReverseListenAllowed", null, lRadioIndex, ipPlayerIndex);
}
}
};
} else {
GetPlayerNotAllowedButton(lPlayerObj, m_Index).useHandCursor = false;
GetPlayerNotAllowedButton(lPlayerObj, m_Index).onPress = null;
GetPlayerNotAllowedButton(lPlayerObj, m_Index).onMouseDown = null;
GetPlayerAllowedButton(lPlayerObj, m_Index).useHandCursor = false;
GetPlayerAllowedButton(lPlayerObj, m_Index).onPress = null;
GetPlayerAllowedButton(lPlayerObj, m_Index).onMouseDown = null;
}
}
function IsBroadcasting() {
return(GetInfo(m_Index).broadcasting);
}
function IsIgnorePlayerBroadcasting() {
return(LC_AppUtils.GetIgnoreProcessor().IsIgnorePlayer(GetInfo(m_Index).broadcaster_id));
}
function OnBroadcastMessageArrive(pPlayerIndex, bListenAllowed) {
GetInfo(m_Index).broadcaster_id = pPlayerIndex;
if (!IsIgnorePlayerBroadcasting()) {
var _local6 = LC_AppUtils.GetPlayerObj(pPlayerIndex).name_txt.text;
GetControlMC(m_Index).control_content_mov.broadcast_tx.text = _local6.split(newline).join("").split("\r").join("") + LC_AppUtils.GetMsg(40);
GetControlMC(m_Index).control_content_mov.broadcast_id_tx.text = LC_AppUtils.GetPlayerObj(pPlayerIndex).id_txt.text;
var _local4 = "";
if (bListenAllowed) {
_local4 = LC_AppUtils.GetMsg(31);
} else {
_local4 = LC_AppUtils.GetMsg(32);
}
GetControlMC(m_Index).control_content_mov.target_tx.text = _local4;
} else {
GetControlMC(m_Index).control_content_mov.broadcast_tx.text = "";
GetControlMC(m_Index).control_content_mov.broadcast_id_tx.text = "";
GetControlMC(m_Index).control_content_mov.target_tx.text = "";
}
if (pPlayerIndex == LC_AppUtils.GetPlayerID()) {
GetInfo(m_Index).broadcasting = true;
m_RecieveFlagOnBroadcast = GetInfo(m_Index).recieve_radio;
if (m_RecieveFlagOnBroadcast) {
OnRecieveButton(m_Index, m_IsRadio);
}
GetControlMC(m_Index).control_content_mov.recieve_bt.enabled = false;
if (m_IsRadio) {
var _local2 = Microphone.get();
if (_local2 == null) {
LC_AppUtils.GetNotifyProcessor().ShowNotifyMessage(LC_AppUtils.GetMsg(33), 16711680, true);
OnBroadcastButton(m_Index, m_IsRadio);
return(undefined);
}
_local2.setSilenceLevel(0);
_local2.setRate(22);
GetInfo(m_Index).radio_stream.attachAudio(_local2);
GetInfo(m_Index).radio_stream.publish(LC_AppUtils.GetStageStreamName(m_Index));
} else {
var _local3 = Camera.get();
if (_local3 == null) {
LC_AppUtils.GetNotifyProcessor().ShowNotifyMessage(LC_AppUtils.GetMsg(34), 16711680, true);
OnBroadcastButton(m_Index, m_IsRadio);
return(undefined);
}
_local3.setQuality(8192, 0);
GetInfo(m_Index).radio_stream.attachVideo(_local3);
GetInfo(m_Index).radio_stream.publish(LC_AppUtils.GetStageStreamName(m_Index));
PlayLocalCamera(true);
}
GetControlMC(m_Index).control_content_mov.broadcast_bt.label = LC_AppUtils.GetMsg(35);
SetAllPlayerListenAllowedMarkClickable(true);
} else {
GetControlMC(m_Index).control_content_mov.broadcast_bt.enabled = false;
}
}
function PlayLocalCamera(ipPlay) {
if (ipPlay) {
m_LocalStream = new NetStream(LC_AppUtils.GetAppInfo().session.con);
GetStreamMC(m_Index).attachVideo(m_LocalStream);
m_LocalStream.play(LC_AppUtils.GetStageStreamName(m_Index));
GetCameraMC(m_Index)._visible = true;
} else {
m_LocalStream.close();
m_LocalStream = null;
GetStreamMC(m_Index).attachAudio(GetInfo(m_Index).radio_stream);
GetCameraMC(m_Index)._visible = false;
GetStreamMC(m_Index).clear();
}
}
function OnUnBroadcastMessageArrive() {
GetInfo(m_Index).broadcaster_id = -1;
GetControlMC(m_Index).control_content_mov.broadcast_tx.text = "";
GetControlMC(m_Index).control_content_mov.broadcast_id_tx.text = "";
GetControlMC(m_Index).control_content_mov.target_tx.text = "";
if (GetInfo(m_Index).broadcasting) {
GetInfo(m_Index).broadcasting = false;
GetControlMC(m_Index).control_content_mov.broadcast_bt.label = (m_IsRadio ? (LC_AppUtils.GetMsg(72)) : (LC_AppUtils.GetMsg(73)));
GetInfo(m_Index).radio_stream.close();
RecreateStageStream();
if (!m_IsRadio) {
PlayLocalCamera(false);
}
if (m_RecieveFlagOnBroadcast) {
OnRecieveButton(m_Index, m_IsRadio);
}
GetControlMC(m_Index).control_content_mov.recieve_bt.enabled = true;
SetAllPlayerListenAllowedMarkClickable(false);
} else {
GetControlMC(m_Index).control_content_mov.broadcast_bt.enabled = true;
}
}
function OnListenAllowMessageArrive(pPlayerIndex, ipListenAllowed) {
var _local2 = ipListenAllowed;
var _local4 = GetInfo(m_Index).radio_enable;
if ((pPlayerIndex == LC_AppUtils.GetPlayerID()) && (IsIgnorePlayerBroadcasting())) {
_local2 = false;
}
SetPlayerListenAllowed(LC_AppUtils.GetPlayerObj(pPlayerIndex), m_Index, _local2);
ShowUserListenAllowedButton(LC_AppUtils.GetPlayerObj(pPlayerIndex), _local4);
if (_local4) {
if (pPlayerIndex == LC_AppUtils.GetPlayerID()) {
if (!_local2) {
if (GetInfo(m_Index).recieve_radio && (GetInfo(m_Index).recieving)) {
GetInfo(m_Index).radio_stream.close();
GetInfo(m_Index).recieving = false;
if (!m_IsRadio) {
GetCameraMC(m_Index)._visible = false;
GetStreamMC(m_Index).clear();
}
RecreateStageStream();
}
} else if (GetInfo(m_Index).recieve_radio && (!GetInfo(m_Index).recieving)) {
GetInfo(m_Index).radio_stream.play(LC_AppUtils.GetStageStreamName(m_Index));
GetInfo(m_Index).recieving = true;
if (!m_IsRadio) {
GetCameraMC(m_Index)._visible = true;
}
}
}
}
}
function OnRecieveButton(ipIndex, IsRadio) {
if (!GetInfo(ipIndex).recieve_radio) {
GetInfo(ipIndex).recieve_radio = true;
if (GetPlayerListenAllowed(LC_AppUtils.GetPlayerObj(LC_AppUtils.GetPlayerID()), ipIndex)) {
GetInfo(ipIndex).radio_stream.play(LC_AppUtils.GetStageStreamName(ipIndex));
GetInfo(ipIndex).recieving = true;
if (!IsRadio) {
GetCameraMC(ipIndex)._visible = true;
}
}
GetControlMC(ipIndex).control_content_mov.recieve_bt.label = LC_AppUtils.GetMsg(36);
GetControlMC(ipIndex).control_content_mov.recieve_tx.text = LC_AppUtils.GetMsg(37);
} else {
GetInfo(ipIndex).recieve_radio = false;
if (GetInfo(ipIndex).recieving) {
GetInfo(ipIndex).radio_stream.close();
GetInfo(ipIndex).recieving = false;
if (!IsRadio) {
GetCameraMC(ipIndex)._visible = false;
GetStreamMC(ipIndex).clear();
}
RecreateStageStream();
}
GetControlMC(ipIndex).control_content_mov.recieve_bt.label = (IsRadio ? (LC_AppUtils.GetMsg(70)) : (LC_AppUtils.GetMsg(71)));
GetControlMC(ipIndex).control_content_mov.recieve_tx.text = LC_AppUtils.GetMsg(28);
}
}
function OnBroadcastButton(ipIndex, IsRadio) {
if (!GetInfo(ipIndex).broadcasting) {
LC_AppUtils.AcceptEvents(false);
var lTargetSelectDialog = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, true, {title:GetFunctionName(IsRadio) + LC_AppUtils.GetMsg(38), contentPath:"RadioTarget_Frm"});
var _local6 = this;
var _local3 = new Object();
_local3.handleEvent = function (ipEventObj) {
if (ipEventObj.type == "complete") {
ipEventObj.target.content.message_txt.enabled = false;
ipEventObj.target.content.message_txt.borderColor = 12632256 /* 0xC0C0C0 */;
ipEventObj.target.content.message_txt.textColor = 12632256 /* 0xC0C0C0 */;
ipEventObj.target.content.message_txt.text = LC_AppUtils.GetMsg(66);
ipEventObj.target.content.agree_txt.onLoad = function () {
ipEventObj.target.content.agree_txt.text = LC_AppUtils.GetMsg(41);
};
ipEventObj.target.content.agree_bt.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
ipEventObj.target.content.message_txt.enabled = true;
ipEventObj.target.content.message_txt.textColor = 0;
ipEventObj.target.content.allow_all_bt.enabled = true;
ipEventObj.target.content.allow_selection_bt.enabled = true;
ipEventObj.target.content.agree_txt.enabled = false;
ipEventObj.target.content.agree_bt.enabled = false;
};
ipEventObj.target.content.agree_bt.addEventListener("click", _local1);
ipEventObj.target.content.agree_bt.label = LC_AppUtils.GetMsg(65);
};
ipEventObj.target.content.allow_all_bt.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lTargetSelectDialog.deletePopUp();
LC_AppUtils.AcceptEvents(true);
LC_AppUtils.GetAppInfo().session.con.call("manageBroadcast", null, ipIndex, true);
};
ipEventObj.target.content.allow_all_bt.addEventListener("click", _local1);
ipEventObj.target.content.allow_all_bt.enabled = false;
ipEventObj.target.content.allow_all_bt.label = LC_AppUtils.GetMsg(67);
};
ipEventObj.target.content.allow_selection_bt.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lTargetSelectDialog.deletePopUp();
LC_AppUtils.AcceptEvents(true);
LC_AppUtils.GetAppInfo().session.con.call("manageBroadcast", null, ipIndex, false);
};
ipEventObj.target.content.allow_selection_bt.addEventListener("click", _local1);
ipEventObj.target.content.allow_selection_bt.enabled = false;
ipEventObj.target.content.allow_selection_bt.label = LC_AppUtils.GetMsg(68);
};
ipEventObj.target.content.cancel_bt.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lTargetSelectDialog.deletePopUp();
LC_AppUtils.AcceptEvents(true);
};
ipEventObj.target.content.cancel_bt.addEventListener("click", _local1);
ipEventObj.target.content.cancel_bt.label = LC_AppUtils.GetMsg(69);
};
ipEventObj.target.setSize(LC_Const.C_RADIO_TARGET_DIALOG_WIDTH, LC_Const.C_RADIO_TARGET_DIALOG_HEIGHT);
ipEventObj.target._x = (LC_Const.C_STAGE_VIEW_WIDTH - LC_Const.C_RADIO_TARGET_DIALOG_WIDTH) / 2;
ipEventObj.target._y = (LC_Const.C_STAGE_VIEW_HEIGHT - LC_Const.C_RADIO_TARGET_DIALOG_HEIGHT) / 2;
}
};
lTargetSelectDialog.addEventListener("complete", _local3);
} else {
LC_AppUtils.GetAppInfo().session.con.call("manageUnBroadcast", null, ipIndex);
}
}
function InstallButtonCallBack() {
var lIndex = m_Index;
var lIsRadio = m_IsRadio;
var _local2 = new Object();
_local2.callback = OnRecieveButton;
_local2.click = function (ipButtonObj) {
this.callback(lIndex, lIsRadio);
};
GetControlMC(m_Index).control_content_mov.recieve_bt.addEventListener("click", _local2);
var _local3 = new Object();
_local3.callback = OnBroadcastButton;
_local3.click = function (ipButtonObj) {
this.callback(lIndex, lIsRadio);
};
GetControlMC(m_Index).control_content_mov.broadcast_bt.addEventListener("click", _local3);
var _local4 = new Object();
_local4.callback = ShowMicSetting;
_local4.click = function (ipButtonObj) {
this.callback(lIndex, lIsRadio);
};
GetControlMC(m_Index).control_content_mov.setting_bt.addEventListener("click", _local4);
}
function IsRadioStage() {
return(GetInfo(m_Index).radio_enable);
}
function RecreateStageStream() {
DestoryStageStream();
InitStageStream();
}
function InitStageStream() {
var _local2 = m_Index;
GetInfo(m_Index).radio_stream = new NetStream(LC_AppUtils.GetAppInfo().session.con);
GetInfo(m_Index).radio_stream.setBufferTime(0.01);
GetInfo(m_Index).radio_stream.onStatus = function (infoObj) {
if (infoObj.level == "error") {
LC_AppUtils.GetNotifyProcessor().ShowNotifyMessage(LC_RadioProcessor.GetFunctionName(this.m_IsRadio) + LC_AppUtils.GetMsg(39), 16711680, true);
}
};
if (m_IsRadio) {
GetStreamMC(m_Index).attachAudio(GetInfo(m_Index).radio_stream);
} else {
GetStreamMC(m_Index).attachVideo(GetInfo(m_Index).radio_stream);
}
}
function DestoryStageStream() {
if (m_LocalStream != null) {
PlayLocalCamera(false);
}
if (GetCameraMC(m_Index)._visible) {
GetCameraMC(m_Index)._visible = false;
GetStreamMC(m_Index).clear();
}
if (GetInfo(m_Index).broadcasting || (GetInfo(m_Index).recieving)) {
GetInfo(m_Index).radio_stream.close();
}
GetInfo(m_Index).radio_stream = null;
if (m_IsRadio) {
GetStreamMC(m_Index).attachAudio(false);
GetStreamMC(m_Index).attachAudio(null);
} else {
GetStreamMC(m_Index).attachVideo(false);
GetStreamMC(m_Index).attachVideo(null);
}
}
function IgnorePlayer(ipPlayerIndex) {
if (IsBroadcasting()) {
if (GetPlayerListenAllowed(LC_AppUtils.GetPlayerObj(ipPlayerIndex), m_Index)) {
LC_AppUtils.GetAppInfo().session.con.call("manageReverseListenAllowed", null, m_Index, ipPlayerIndex);
}
}
}
}
Symbol 2174 MovieClip [__Packages.mx.managers.PopUpManager] Frame 0
class mx.managers.PopUpManager
{
var popUp, setSize, move, modalWindow, _parent, _name, _visible, owner;
function PopUpManager () {
}
static function createModalWindow(parent, o, broadcastOutsideEvents) {
var _local2 = parent.createChildAtDepth("Modal", mx.managers.DepthManager.kTopmost);
_local2.setDepthBelow(o);
o.modalID = _local2._name;
_local2._alpha = _global.style.modalTransparency;
_local2.tabEnabled = false;
if (broadcastOutsideEvents) {
_local2.onPress = mixins.onPress;
} else {
_local2.onPress = mixins.nullFunction;
}
_local2.onRelease = mixins.nullFunction;
_local2.resize = mixins.resize;
mx.managers.SystemManager.init();
mx.managers.SystemManager.addEventListener("resize", _local2);
_local2.resize();
_local2.useHandCursor = false;
_local2.popUp = o;
o.modalWindow = _local2;
o.deletePopUp = mixins.deletePopUp;
o.setVisible = mixins.setVisible;
o.getVisible = mixins.getVisible;
o.addProperty("visible", o.getVisible, o.setVisible);
}
static function createPopUp(parent, className, modal, initobj, broadcastOutsideEvents) {
if (mixins == undefined) {
mixins = new mx.managers.PopUpManager();
}
if (broadcastOutsideEvents == undefined) {
broadcastOutsideEvents = false;
}
var _local5 = parent._root;
if (_local5 == undefined) {
_local5 = _root;
}
while (parent != _local5) {
parent = parent._parent;
}
initobj.popUp = true;
var _local4 = parent.createClassChildAtDepth(className, ((broadcastOutsideEvents || (modal)) ? (mx.managers.DepthManager.kTopmost) : (mx.managers.DepthManager.kTop)), initobj);
var _local2 = _root;
var _local6 = _local2.focusManager != undefined;
while (_local2._parent != undefined) {
_local2 = _local2._parent._root;
if (_local2.focusManager != undefined) {
_local6 = true;
break;
}
}
if (_local6) {
_local4.createObject("FocusManager", "focusManager", -1);
if (_local4._visible == false) {
mx.managers.SystemManager.deactivate(_local4);
}
}
if (modal) {
createModalWindow(parent, _local4, broadcastOutsideEvents);
} else {
if (broadcastOutsideEvents) {
_local4.mouseListener = new Object();
_local4.mouseListener.owner = _local4;
_local4.mouseListener.onMouseDown = mixins.onMouseDown;
Mouse.addListener(_local4.mouseListener);
}
_local4.deletePopUp = mixins.deletePopUp;
}
return(_local4);
}
function onPress(Void) {
var _local3 = popUp._root;
if (_local3 == undefined) {
_local3 = _root;
}
if (popUp.hitTest(_local3._xmouse, _local3._ymouse, false)) {
return(undefined);
}
popUp.dispatchEvent({type:"mouseDownOutside"});
}
function nullFunction(Void) {
}
function resize(Void) {
var _local2 = mx.managers.SystemManager.__get__screen();
setSize(_local2.width, _local2.height);
move(_local2.x, _local2.y);
}
function deletePopUp(Void) {
if (modalWindow != undefined) {
_parent.destroyObject(modalWindow._name);
}
_parent.destroyObject(_name);
}
function setVisible(v, noEvent) {
super.setVisible(v, noEvent);
modalWindow._visible = v;
}
function getVisible(Void) {
return(_visible);
}
function onMouseDown(Void) {
var _local3 = owner._root;
if (_local3 == undefined) {
_local3 = _root;
}
var _local4 = new Object();
_local4.x = _local3._xmouse;
_local4.y = _local3._ymouse;
_local3.localToGlobal(_local4);
if (owner.hitTest(_local4.x, _local4.y, false)) {
} else {
owner.mouseDownOutsideHandler(owner);
}
}
static var version = "2.0.2.127";
static var mixins = undefined;
}
Symbol 1953 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 _local3 = __width;
var _local2 = __height;
__width = w;
__height = h;
size();
if (noEvent != true) {
dispatchEvent({type:"resize", oldWidth:_local3, oldHeight:_local2});
}
}
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 = mx.core.UIObject(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 1986 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 1987 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 1989 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 1988 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 1995 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;
_global.ASSetPropFlags(MovieClip.prototype, "createClassChildAtDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "createChildAtDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthTo", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthAbove", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthBelow", 1);
_global.ASSetPropFlags(MovieClip.prototype, "findNextAvailableDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "shuffleDepths", 1);
_global.ASSetPropFlags(MovieClip.prototype, "getDepthByFlag", 1);
_global.ASSetPropFlags(MovieClip.prototype, "buildDepthTable", 1);
}
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 _local5 = "down";
if (depthFlag == kBottom) {
_local5 = "up";
}
var _local6;
if (_local3[_local2] != undefined) {
_local6 = _local2;
_local2 = findNextAvailableDepth(_local2, _local3, _local5);
}
var _local4 = createClassObject(className, "depthChild" + (_childCounter++), _local2, initObj);
if (_local6 != undefined) {
_local3[_local2] = _local4;
shuffleDepths(_local4, _local6, _local3, _local5);
}
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 _local5 = "down";
if (depthFlag == kBottom) {
_local5 = "up";
}
var _local6;
if (_local3[_local2] != undefined) {
_local6 = _local2;
_local2 = findNextAvailableDepth(_local2, _local3, _local5);
}
var _local4 = createObject(linkageName, "depthChild" + (_childCounter++), _local2, initObj);
if (_local6 != undefined) {
_local3[_local2] = _local4;
shuffleDepths(_local4, _local6, _local3, _local5);
}
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(MovieClip(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 _local1 = targetDepth;
var _local2 = targetDepth;
if (direction == "down") {
while (depthTable[_local2] != undefined) {
_local2--;
}
return(_local2);
}
while (depthTable[_local1] != undefined) {
_local1++;
}
return(_local1);
}
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 1996 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 1990 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.handleEvent(eventObj);
}
if (_local1[eventObj.type] != undefined) {
if (exceptions[eventObj.type] == undefined) {
_local1[eventObj.type](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;
static var exceptions = {move:1, draw:1, load:1};
}
Symbol 1954 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 2007 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.2.127";
var className = "View";
static var childNameBase = "_child";
var hasBeenLayedOut = false;
var _loadExternalClass = "UIComponent";
}
Symbol 2002 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 2003 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.2.127";
var className = "RectBorder";
var borderStyleName = "borderStyle";
var borderColorName = "borderColor";
var shadowColorName = "shadowColor";
var highlightColorName = "highlightColor";
var buttonColorName = "buttonColor";
var backgroundColorName = "backgroundColor";
}
Symbol 2075 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 _local8 = false;
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;
}
}
_local8 = true;
}
if (_local8) {
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 1991 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 2008 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 _local4 = Math.ceil((((__width - _local3.left) - _local3.right) - widthPadding) / colWidth);
if ((__hScrollPolicy == "on") || ((_local4 < colCount) && (__hScrollPolicy == "auto"))) {
if ((hScroller == undefined) || (specialHScrollCase)) {
delete specialHScrollCase;
hScroller = mx.controls.scrollClasses.ScrollBar(createObject("HScrollBar", "hSB", 1001));
hScroller.__set__lineScrollSize(20);
hScroller.scrollHandler = scrollProxy;
hScroller.__set__scrollPosition(__hPosition);
scrollAreaChanged = true;
}
if ((((numberOfCols != colCount) || (columnWidth != colWidth)) || (viewableColumns != _local4)) || (scrollAreaChanged)) {
hScroller.setScrollProperties(_local4, 0, colCount - _local4);
viewableColumns = _local4;
numberOfCols = colCount;
columnWidth = colWidth;
}
} else if (((__hScrollPolicy == "auto") || (__hScrollPolicy == "off")) && (hScroller != undefined)) {
hScroller.removeMovieClip();
delete hScroller;
scrollAreaChanged = true;
}
if (heightPadding == undefined) {
heightPadding = 0;
}
var _local5 = Math.ceil((((__height - _local3.top) - _local3.bottom) - heightPadding) / rwHeight);
var _local8 = (((__height - _local3.top) - _local3.bottom) % rwHeight) != 0;
if ((__vScrollPolicy == "on") || ((_local5 < (rwCount + _local8)) && (__vScrollPolicy == "auto"))) {
if (vScroller == undefined) {
vScroller = mx.controls.scrollClasses.ScrollBar(createObject("VScrollBar", "vSB", 1002));
vScroller.scrollHandler = scrollProxy;
vScroller.__set__scrollPosition(__vPosition);
scrollAreaChanged = true;
rowH = 0;
}
if ((((rowC != rwCount) || (rowH != rwHeight)) || ((viewableRows + _local8) != (_local5 + oldRndUp))) || (scrollAreaChanged)) {
vScroller.setScrollProperties(_local5, 0, (rwCount - _local5) + _local8);
viewableRows = _local5;
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 = mx.controls.scrollClasses.ScrollBar(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 _local4 = scrollTarget;
var _local1;
while (_local4 != undefined) {
if (_local4 instanceof mx.core.ScrollView) {
_local1 = _local4;
}
_local4 = _local4._parent;
}
if (_local1 != undefined) {
_local4 = ((delta <= 0) ? 1 : -1);
var _local2 = _local1.vScroller.lineScrollSize;
if (_local2 == undefined) {
_local2 = 0;
}
_local2 = Math.max(Math.abs(delta), _local2);
var _local3 = _local1.vPosition + (_local2 * _local4);
_local1.vPosition = Math.max(0, Math.min(_local3, _local1.maxVPosition));
_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";
}
this[_local5] = _local2;
dispatchEvent({type:"scroll", direction:_local4, position:_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.2.127";
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 2078 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 2076 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 2077 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 1955 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 2420 MovieClip [__Packages.mx.containers.Window] Frame 0
class mx.containers.Window extends mx.core.ScrollView
{
var destroyChildAt, __contentPath, boundingBox_mc, _parent, modalWindow, swapDepths, regX, _xmouse, regY, _ymouse, onMouseMove, move, back_mc, createClassObject, depth, titleStyleDeclaration, button_mc, validateNow, redraw, invalidate, _title, _child0, border_mc, __get__width, __get__height, size, vScroller, hScroller, closeButton, dispatchEvent;
function Window () {
super();
}
function set contentPath(scrollableContent) {
if (!initializing) {
if (scrollableContent == undefined) {
destroyChildAt(0);
} else {
if (this[mx.core.View.childNameBase + 0] != undefined) {
destroyChildAt(0);
}
createChild(scrollableContent, "content", {styleName:this});
}
}
__contentPath = scrollableContent;
//return(contentPath);
}
function get contentPath() {
return(__contentPath);
}
function init(Void) {
super.init();
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function delegateClick(obj) {
_parent.dispatchEvent({type:"click"});
}
function startDragging(Void) {
if (modalWindow == undefined) {
var _local2 = _parent.createChildAtDepth("BoundingBox", mx.managers.DepthManager.kTop, {_visible:false});
swapDepths(_local2);
_local2.removeMovieClip();
}
regX = _xmouse;
regY = _ymouse;
onMouseMove = dragTracking;
}
function stopDragging(Void) {
delete onMouseMove;
}
function dragTracking() {
var _local5 = _parent._xmouse - regX;
var _local4 = _parent._ymouse - regY;
var _local3 = 5;
var _local2 = mx.managers.SystemManager.__get__screen();
if (_local5 < ((_local2.x - regX) + _local3)) {
_local5 = (_local2.x - regX) + _local3;
}
if (_local5 > ((_local2.width + _local2.x) - (regX + _local3))) {
_local5 = (_local2.width + _local2.x) - (regX + _local3);
}
if (_local4 < ((_local2.y - regY) + _local3)) {
_local4 = (_local2.y - regY) + _local3;
}
if (_local4 > ((_local2.height + _local2.y) - (regY + _local3))) {
_local4 = (_local2.height + _local2.y) - (regY + _local3);
}
move(_local5, _local4);
updateAfterEvent();
}
function createChildren(Void) {
super.createChildren();
if (back_mc == undefined) {
createClassObject(mx.core.UIObject, "back_mc", 1);
back_mc.createObject(skinTitleBackground, "back_mc", 0);
}
back_mc.visible = false;
depth = 3;
var _local6 = new Object();
back_mc.useHandCursor = false;
back_mc.onPress = function () {
if (this._parent.enabled) {
this._parent.startDragging();
}
};
back_mc.onDragOut = (back_mc.onRollOut = (back_mc.onReleaseOutside = (back_mc.onRelease = function () {
var _local2 = this._parent;
_local2.stopDragging();
})));
back_mc.tabEnabled = false;
if (back_mc.title_mc == undefined) {
back_mc.createLabel("title_mc", 1, title);
var _local4 = back_mc.title_mc;
if (titleStyleDeclaration == undefined) {
_local4.fontSize = 10;
_local4.color = 16777215 /* 0xFFFFFF */;
_local4.fontWeight = "bold";
} else {
_local4.styleName = titleStyleDeclaration;
}
_local4.invalidateStyle();
} else {
back_mc.title_mc.text = title;
}
var _local3 = new Object();
_local3.falseUpSkin = skinCloseUp;
_local3.falseOverSkin = skinCloseOver;
_local3.falseDownSkin = skinCloseDown;
_local3.falseDisabledSkin = skinCloseDisabled;
_local3.tabEnabled = false;
createClassObject(mx.controls.SimpleButton, "button_mc", 2, _local3);
button_mc.clickHandler = delegateClick;
button_mc.__set__visible(false);
if (validateNow) {
redraw(true);
} else {
invalidate();
}
}
function get title() {
return(_title);
}
function set title(s) {
_title = s;
back_mc.title_mc.text = s;
if (!initializing) {
draw();
}
//return(title);
}
function setEnabled(enable) {
super.setEnabled(enable);
button_mc.enabled = enable;
_child0.enabled = enable;
}
function getComponentCount(Void) {
return(1);
}
function getComponentRect(container) {
if (container == 1) {
var _local3 = border_mc.__get__borderMetrics();
var _local2 = new Object();
_local2.x = _local3.left;
_local2.y = _local3.top + back_mc.height;
_local2.width = (__get__width() - _local2.x) - _local3.right;
_local2.height = (__get__height() - _local2.y) - _local3.bottom;
return(_local2);
}
return(undefined);
}
function draw(Void) {
if (initializing) {
initializing = false;
if (__contentPath != undefined) {
contentPath = (__contentPath);
}
_child0.visible = true;
border_mc.__set__visible(true);
back_mc.visible = true;
}
size();
}
function getViewMetrics(Void) {
var _local3 = super.getViewMetrics();
_local3.top = _local3.top + back_mc.height;
return(_local3);
}
function doLayout(Void) {
super.doLayout();
var _local3 = border_mc.__get__borderMetrics();
_local3.right = _local3.right + ((vScroller.__get__visible() == true) ? (vScroller.__get__width()) : 0);
_local3.bottom = _local3.bottom + ((hScroller.__get__visible() == true) ? (hScroller.__get__height()) : 0);
var _local4 = _local3.left;
var _local6 = _local3.top;
back_mc.move(_local4, _local6);
back_mc.back_mc.setSize((__get__width() - _local4) - _local3.right, back_mc.height);
_child0.move(_local4, _local6 + back_mc.height);
if (_child0.size != mx.core.UIObject.prototype.size) {
_child0.setSize((__get__width() - _local4) - _local3.right, ((__get__height() - _local6) - back_mc.height) - _local3.bottom);
}
button_mc.__set__visible(closeButton == true);
button_mc.move(((__get__width() - _local4) - _local4) - button_mc.__get__width(), ((back_mc.height - button_mc.__get__height()) / 2) + _local6);
var _local7 = back_mc.title_mc.textHeight;
var _local5 = ((back_mc.height - _local7) - 4) / 2;
back_mc.title_mc.move(_local5, _local5 - 1);
back_mc.title_mc.setSize((__get__width() - _local5) - _local5, _local7 + 4);
}
function createChild(id, name, props) {
loadingChild = true;
var _local3 = super.createChild(id, name, props);
loadingChild = false;
return(_local3);
}
function childLoaded(obj) {
super.childLoaded(obj);
if (loadingChild) {
dispatchEvent({type:"complete", current:obj.getBytesLoaded(), total:obj.getBytesTotal()});
}
}
static var symbolName = "Window";
static var symbolOwner = mx.containers.Window;
static var version = "2.0.2.127";
var className = "Window";
static var skinIDBorder = 0;
static var skinIDTitleBackground = 1;
static var skinIDForm = 2;
var idNames = new Array("border_mc", "back_mc", "content");
var skinTitleBackground = "TitleBackground";
var skinCloseUp = "CloseButtonUp";
var skinCloseOver = "CloseButtonOver";
var skinCloseDown = "CloseButtonDown";
var skinCloseDisabled = "CloseButtonDisabled";
var clipParameters = {title:1, contentPath:1, closeButton:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.containers.Window.prototype.clipParameters, mx.core.ScrollView.prototype.clipParameters);
var initializing = true;
var loadingChild = false;
}
Symbol 2439 MovieClip [__Packages.mx.controls.Alert] Frame 0
class mx.controls.Alert extends mx.containers.Window
{
static var style, titleStyleDeclaration, messageStyleDeclaration;
var __set__visible, styleName, __set__contentPath, initializing, parent, __get__width, __get__height, move, _child0, __width, width, __height, height, border_mc, back_mc, invalidate;
function Alert () {
super();
}
static function show(text, title, flags, parent, listener, icon, defButton) {
var _local2 = new Object();
var _local6 = ((flags & NONMODAL) ? false : true);
if (parent == undefined) {
parent = (_local2.parent = _root);
} else {
_local2.parent = parent;
}
_local2.okButton = ((flags & OK) ? true : false);
_local2.cancelButton = ((flags & CANCEL) ? true : false);
_local2.yesButton = ((flags & YES) ? true : false);
_local2.noButton = ((flags & NO) ? true : false);
_local2.defButton = defButton;
if ((((_local2.okButton == false) && (_local2.cancelButton == false)) && (_local2.yesButton == false)) && (_local2.noButton == false)) {
_local2.okButton = true;
_local2.defButton = OK;
}
_local2.title = title;
_local2.text = text;
_local2.icon = icon;
_local2.style = style;
_local2.skinTitleBackground = titleBackground;
_local2.titleStyleDeclaration = titleStyleDeclaration;
_local2.validateNow = true;
var _local4 = mx.managers.PopUpManager.createPopUp(parent, mx.controls.Alert, _local6, _local2);
if (_local4 == undefined) {
}
_local4.addEventListener("click", listener);
return(_local4);
}
function init(Void) {
super.init();
__set__visible(false);
}
function createChildren(Void) {
if (messageStyleDeclaration != undefined) {
styleName = messageStyleDeclaration;
}
var _local3 = mx.controls.alertClasses.AlertForm;
__set__contentPath(_local3);
super.createChildren();
}
function getViewMetrics(Void) {
var _local2 = super.getViewMetrics();
return(_local2);
}
function doLayout(Void) {
super.doLayout();
}
function draw(Void) {
var _local9 = initializing;
super.draw();
if (_local9) {
var _local5 = new Object();
_local5.x = parent._x;
_local5.y = parent._y;
parent.localToGlobal(_local5);
var _local7 = parent.width;
var _local8 = parent.height;
if (((parent == _root) && (parent._parent == undefined)) || (_local7 == undefined)) {
var _local6 = mx.managers.SystemManager.__get__screen();
_local7 = _local6.width;
_local8 = _local6.height;
_local5.x = _local6.x;
_local5.y = _local6.y;
}
if (_global.isLivePreview) {
return(undefined);
}
_local5.x = _local5.x + ((_local7 - __get__width()) / 2);
_local5.y = _local5.y + ((_local8 - __get__height()) / 2);
parent.globalToLocal(_local5);
move(_local5.x, _local5.y);
if (_child0.defButtonName != undefined) {
_child0[_child0.defButtonName].setFocus();
} else {
_child0.buttons[0].setFocus();
}
}
}
function size(Void) {
if (_global.isLivePreview) {
__width = width;
__height = height;
} else {
var _local4 = _child0.getSize();
if (isNaN(_local4.width) || (_local4.width < 20)) {
_local4.width = 96;
}
if (isNaN(_local4.height) || (_local4.height < 20)) {
_local4.height = 66;
}
var _local5 = border_mc.__get__borderMetrics();
if (!allowSize) {
__width = _local4.width + (2 * _local5.left);
__height = ((_local4.height + _local5.top) + _local5.bottom) + back_mc.height;
allowSize = false;
}
}
super.size();
}
function setSize(w, h) {
__width = w;
__height = h;
initializing = (allowSize = true);
invalidate();
}
static var symbolOwner = mx.containers.Window;
static var version = "2.0.2.127";
static var buttonWidth = 50;
static var buttonHeight = 22;
static var okLabel = "OK";
static var yesLabel = "Yes";
static var noLabel = "No";
static var cancelLabel = "Cancel";
static var buttonUp = "ButtonSkin";
static var buttonDown = "ButtonSkin";
static var buttonOver = "ButtonSkin";
static var titleBackground = "TitleBackground";
static var buttonUpEmphasized = "ButtonSkin";
static var buttonOverEmphasized = "ButtonSkin";
static var buttonDownEmphasized = "ButtonSkin";
var className = "Alert";
var allowSize = false;
static var NONMODAL = 32768;
static var YES = 1;
static var NO = 2;
static var OK = 4;
static var CANCEL = 8;
static var P = _root;
}
Symbol 2442 MovieClip [__Packages.mx.controls.alertClasses.AlertForm] Frame 0
class mx.controls.alertClasses.AlertForm extends mx.core.UIComponent
{
var _parent, tabChildren, tabEnabled, text_mc, createClassObject, textMeasure_mc, createTextField, icon_mc, setSkin, buttons, doLater, createClassChildAtDepth, extent, __get__height, __get__width, detail;
function AlertForm () {
super();
}
function init(Void) {
super.init();
}
function setDefaultButton() {
_parent.focusManager.defaultPushButton = this[defButtonName];
}
function createChildren(Void) {
tabChildren = true;
tabEnabled = false;
if (text_mc == undefined) {
createClassObject(mx.controls.TextArea, "text_mc", 0, {styleName:this, borderStyle:"none", readOnly:true});
}
text_mc.tabEnabled = false;
text_mc.tabChildren = false;
text_mc.hScrollPolicy = "off";
text_mc.vScrollPolicy = "off";
text_mc.label.selectable = false;
if (textMeasure_mc == undefined) {
createTextField("textMeasure_mc", -1, 0, 0, 0, 0);
}
textMeasure_mc._visible = false;
textMeasure_mc.multiline = true;
textMeasure_mc.wordWrap = true;
textMeasure_mc.autoSize = "left";
if ((icon_mc == undefined) && (_parent.icon != undefined)) {
setSkin(1, _parent.icon);
}
buttons = new Array();
var _local2 = _parent.defButton;
if (_parent.okButton) {
createButton("okButton", mx.controls.Alert.okLabel, mx.controls.Alert.OK);
if (_local2 == mx.controls.Alert.OK) {
defButtonName = "okButton";
}
}
if (_parent.yesButton) {
createButton("yesButton", mx.controls.Alert.yesLabel, mx.controls.Alert.YES);
if (_local2 == mx.controls.Alert.YES) {
defButtonName = "yesButton";
}
}
if (_parent.noButton) {
createButton("noButton", mx.controls.Alert.noLabel, mx.controls.Alert.NO);
if (_local2 == mx.controls.Alert.NO) {
defButtonName = "noButton";
}
}
if (_parent.cancelButton) {
createButton("cancelButton", mx.controls.Alert.cancelLabel, mx.controls.Alert.CANCEL);
if (_local2 == mx.controls.Alert.CANCEL) {
defButtonName = "cancelButton";
}
}
if (defButtonName != undefined) {
this[defButtonName].emphasized = true;
this[defButtonName].redraw(true);
doLater(this, "setDefaultButton");
}
}
function createButton(name, title, detail) {
var _local3 = mx.controls.Alert.buttonStyleDeclaration;
var _local2 = mx.controls.Button(createClassChildAtDepth(mx.controls.Button, mx.managers.DepthManager.kTop, {falseUpSkin:mx.controls.Alert.buttonUp, falseDownSkin:mx.controls.Alert.buttonDown, falseOverSkin:mx.controls.Alert.buttonOver, falseOverSkinEmphasized:mx.controls.Alert.buttonOverEmphasized, falseUpSkinEmphasized:mx.controls.Alert.buttonUpEmphasized, falseDownSkinEmphasized:mx.controls.Alert.buttonDownEmphasized, styleName:((_local3 == undefined) ? this : (mx.controls.Alert.buttonStyleDeclaration)), validateNow:true}));
_local2.setLabel(title);
_local2.setSize(mx.controls.Alert.buttonWidth, mx.controls.Alert.buttonHeight);
buttons.push(_local2);
_local2.clickHandler = onClick;
_local2.detail = detail;
this[name] = _local2;
}
function getSize(Void) {
var _local2 = new Object();
_local2.height = buttons[0].height + 24;
var _local8 = _parent.back_mc.title_mc._getTextFormat();
extent = _local8.getTextExtent2(_parent.title);
_local2.width = Math.max(Math.max(2, buttons.length) * (buttons[0].width + 8), (extent.width + 4) + 8);
var _local6 = text_mc._getTextFormat();
extent = _local6.getTextExtent2(_parent.text);
textMeasure_mc._width = 2 * _local2.width;
textMeasure_mc.setNewTextFormat(text_mc._getTextFormat());
textMeasure_mc.text = _parent.text;
_local2.height = _local2.height + (textMeasure_mc.textHeight + 8);
var _local4 = Math.ceil(textMeasure_mc.textHeight / extent.height);
if (_local4 > 1) {
extent.width = 2 * _local2.width;
text_mc.__set__wordWrap(true);
}
var _local3 = Math.min((extent.width + 4) + 8, 2 * _local2.width);
var _local7 = _local2.width;
_local2.width = Math.max(_local3, _local2.width) + 8;
if (icon_mc != undefined) {
extent.width = extent.width + (icon_mc.width + 8);
_local3 = Math.min((extent.width + 4) + 8, 2 * _local7);
_local2.width = Math.max(_local3, _local2.width) + 8;
var _local5 = icon_mc.height - (_local4 * (extent.height + 4));
if (_local5 > 0) {
_local2.height = _local2.height + _local5;
}
}
return(_local2);
}
function draw(Void) {
size();
_parent.visible = true;
}
function size(Void) {
var _local4 = (__get__height() - buttons[0].height) - 8;
var _local3 = (buttons.length * (buttons[0].width + 8)) - 8;
_local3 = (__get__width() - _local3) / 2;
var _local2 = 0;
while (_local2 < buttons.length) {
buttons[_local2].move(_local3, _local4);
buttons[_local2].tabIndex = _local2 + 1;
_local3 = _local3 + (buttons[_local2].width + 8);
_local2++;
}
_local4 = _local4 - 8;
_local3 = Math.max(((__get__width() - extent.width) - 4) / 2, 8);
if (icon_mc != undefined) {
icon_mc.move(_local3, ((__get__height() - buttons[0].height) - icon_mc.height) / 2);
_local3 = _local3 + (icon_mc.width + 8);
}
text_mc.move(_local3, 8);
text_mc.setSize((__get__width() - _local3) - 8, _local4 - 8);
if (_parent.text == undefined) {
text_mc.__set__text("");
} else {
text_mc.__set__text(_parent.text);
}
}
function onClick(evt) {
var _local2 = mx.controls.Alert(_parent._parent);
_local2.__set__visible(false);
_local2.dispatchEvent({type:"click", detail:detail});
_local2.deletePopUp();
}
static var symbolOwner = mx.core.UIComponent;
var idNames = ["text_mc", "icon_mc"];
var defButtonName = undefined;
}
Symbol 2009 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, getStyle, getFocusManager, addEventListener, removeEventListener, _getTextFormat;
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) {
vScroller.enabled = enable;
hScroller.enabled = enable;
label.type = (((editable == false) || (enable == false)) ? "dynamic" : "input");
label.selectable = enable;
var _local3 = getStyle((enable ? "color" : "disabledColor"));
if (_local3 == undefined) {
_local3 = (enable ? 0 : 8947848);
}
setColor(_local3);
}
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(TextFormat(_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.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 setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding) {
super.setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding);
if (vScroller == undefined) {
hookedV = false;
}
if (hScroller == undefined) {
hookedH = false;
}
}
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.2.127";
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 1956 MovieClip [__Packages.mx.controls.Button] Frame 0
class mx.controls.Button extends mx.controls.SimpleButton
{
var initializing, labelPath, initIcon, getState, enabled, phase, idNames, __width, __height, setState, invalidate, iconName, refresh, createLabel, _iconLinkageName, removeIcons, hitArea_mc, createEmptyObject;
function Button () {
super();
}
function init(Void) {
super.init();
}
function draw() {
if (initializing) {
labelPath.visible = true;
}
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 _local11 = 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 _local9 = (__width - borderW) - borderW;
var _local10 = (__height - borderW) - borderW;
if (_local2 != undefined) {
_local7 = _local2._width;
_local6 = _local2._height;
}
if ((_local12 == "left") || (_local12 == "right")) {
if (_local3 != undefined) {
_local11 = Math.min(_local9 - _local7, _local15 + 5);
_local3._width = _local11;
_local8 = Math.min(_local10, _local14 + 5);
_local3._height = _local8;
}
if (_local12 == "right") {
_local5 = _local7;
if (centerContent) {
_local5 = _local5 + (((_local9 - _local11) - _local7) / 2);
}
_local2._x = _local5 - _local7;
} else {
_local5 = (_local9 - _local11) - _local7;
if (centerContent) {
_local5 = _local5 / 2;
}
_local2._x = _local5 + _local11;
}
_local4 = 0;
_local2._y = _local4;
if (centerContent) {
_local2._y = (_local10 - _local6) / 2;
_local4 = (_local10 - _local8) / 2;
}
if (!centerContent) {
_local2._y = _local2._y + Math.max(0, (_local8 - _local6) / 2);
}
} else {
if (_local3 != undefined) {
_local11 = Math.min(_local9, _local15 + 5);
_local3._width = _local11;
_local8 = Math.min(_local10 - _local6, _local14 + 5);
_local3._height = _local8;
}
_local5 = (_local9 - _local11) / 2;
_local2._x = (_local9 - _local7) / 2;
if (_local12 == "top") {
_local4 = (_local10 - _local8) - _local6;
if (centerContent) {
_local4 = _local4 / 2;
}
_local2._y = _local4 + _local8;
} else {
_local4 = _local6;
if (centerContent) {
_local4 = _local4 + (((_local10 - _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;
if (initializing) {
_local2.visible = false;
}
} else {
delete labelPath.__text;
labelPath.text = label;
refresh();
}
}
function getLabel(Void) {
return(((labelPath.__text != undefined) ? (labelPath.__text) : (labelPath.text)));
}
function get label() {
return(getLabel());
}
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(3, 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.2.127";
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 2563 MovieClip [__Packages.LC_FrameNameUtils] Frame 0
class LC_FrameNameUtils
{
function LC_FrameNameUtils () {
}
static function GetFrameNameFromDirectionFlag(ipSitFlag, ipDirection) {
if (ipSitFlag) {
switch (parseInt(ipDirection)) {
case LC_Const.C_DIREC_LEFT :
return("sit_left_frm");
case LC_Const.C_DIREC_RIGHT :
return("sit_right_frm");
case LC_Const.C_DIREC_UP :
return("sit_up_frm");
case LC_Const.C_DIREC_DOWN :
return("sit_down_frm");
}
return("sit_left_frm");
}
switch (parseInt(ipDirection)) {
case LC_Const.C_DIREC_LEFT :
return("stand_left_frm");
case LC_Const.C_DIREC_RIGHT :
return("stand_right_frm");
case LC_Const.C_DIREC_UP :
return("stand_up_frm");
case LC_Const.C_DIREC_DOWN :
return("stand_down_frm");
}
return("stand_left_frm");
}
static function GetMoveAnimationFrameName(ipDirection) {
var _local1 = "";
switch (parseInt(ipDirection)) {
case LC_Const.C_DIREC_LEFT :
return("walk_left_frm");
case LC_Const.C_DIREC_RIGHT :
return("walk_right_frm");
case LC_Const.C_DIREC_UP :
return("walk_up_frm");
case LC_Const.C_DIREC_DOWN :
return("walk_down_frm");
}
return("walk_left_frm");
}
}
Symbol 2564 MovieClip [__Packages.LC_SysMessageProcessor] Frame 0
class LC_SysMessageProcessor
{
var m_XMLObject, m_RootNode;
function LC_SysMessageProcessor (ipMessageXMLObject) {
m_XMLObject = ipMessageXMLObject;
m_RootNode = m_XMLObject.firstChild;
}
function GetMsg(ipIndex) {
var _local2 = m_RootNode.firstChild;
while (_local2 != null) {
if (_local2.attributes.id == ipIndex) {
return(_local2.firstChild.nodeValue);
}
_local2 = _local2.nextSibling;
}
return("");
}
}
Symbol 2565 MovieClip [__Packages.LC_GikopoiObject] Frame 0
class LC_GikopoiObject
{
function LC_GikopoiObject () {
}
function GetAreaName() {
return(LC_AppUtils.GetStatusProcessor().GetAreaName());
}
function GetStageName() {
return(LC_AppUtils.GetStatusProcessor().GetStageName());
}
function GetLoginCount() {
return(LC_AppUtils.GetStatusProcessor().GetLoginCount());
}
function GetPlayerId() {
return(LC_AppUtils.GetPlayerID());
}
function GetPlayerName() {
return(LC_AppUtils.GetPlayerName());
}
function GetPlayerHp() {
return(LC_AppUtils.GetStatusProcessor().GetPlayerHP());
}
function SetPlayerHp(ipNewHp) {
return(LC_AppUtils.GetStatusProcessor().SetPlayerHP(ipNewHp));
}
function GetPlayerMp() {
return(LC_AppUtils.GetStatusProcessor().GetPlayerMP());
}
function SetPlayerMp(ipNewMp) {
return(LC_AppUtils.GetStatusProcessor().SetPlayerMP(ipNewMp));
}
function GetFieldValuesFromCsvLine(ipCsvLine) {
return(LC_AppUtils.GetFieldValuesFromCsvLine(ipCsvLine));
}
function GetCsvQuotedValue(ipValue) {
return(LC_AppUtils.GetCsvQuotedValue(ipValue));
}
function SetBindVariable(ipVarName, ipValue) {
LC_AppUtils.SetBindVariable(ipVarName, ipValue);
}
function DoMagic(ipMagic) {
LC_AppUtils.GetMagicProcessor().ParseMagic(ipMagic);
}
function IsPlaySoundEffect() {
return(LC_AppUtils.GetAppInfo().appdata.play_sound);
}
function GetYouTubeProcessor() {
return(LC_AppUtils.GetYouTubeProcessor());
}
function GetCurrentServerTimeStampInSec() {
var _local1 = new Date();
var _local2 = Math.round(_local1.getTime() / 1000);
return(_local2 - LC_AppUtils.GetAppInfo().appdata.timestamp_diff_in_sec);
}
}
Symbol 2566 MovieClip [__Packages.LC_SystemAlertProcessor] Frame 0
class LC_SystemAlertProcessor
{
var m_AppInfoObj, m_RootMovie;
function LC_SystemAlertProcessor (ipAppInfoObj, ipRootMovie) {
m_AppInfoObj = ipAppInfoObj;
m_RootMovie = ipRootMovie;
}
function ShowSystemAlert(ipMessage) {
HideSystemAlert();
var _local2 = "sys_alert_temporary_mov";
m_AppInfoObj.appdata.sys_alert_clip = m_RootMovie.attachMovie(_local2, LC_Const.C_NOTIFY_ID, LC_Const.C_NOTIFY_DEPTH, {_x:200, _y:150});
m_AppInfoObj.appdata.sys_alert_clip._x = (LC_Const.C_STAGE_VIEW_WIDTH - m_AppInfoObj.appdata.sys_alert_clip._width) / 2;
m_AppInfoObj.appdata.sys_alert_clip._y = (LC_Const.C_STAGE_VIEW_HEIGHT - m_AppInfoObj.appdata.sys_alert_clip._height) / 2;
m_AppInfoObj.appdata.sys_alert_clip._alpha = 80;
m_AppInfoObj.appdata.sys_alert_clip.alert_txt.textColor = 16777215 /* 0xFFFFFF */;
m_AppInfoObj.appdata.sys_alert_clip.alert_txt.text = ipMessage;
}
function HideSystemAlert() {
if (m_AppInfoObj.appdata.sys_alert_clip != null) {
m_AppInfoObj.appdata.sys_alert_clip.removeMovieClip();
m_AppInfoObj.appdata.sys_alert_clip = null;
}
}
}
Symbol 2567 MovieClip [__Packages.LC_NotifyProcessor] Frame 0
class LC_NotifyProcessor
{
var m_AppInfoObj, m_RootMovie;
function LC_NotifyProcessor (ipAppInfoObj, ipRootMovie) {
m_AppInfoObj = ipAppInfoObj;
m_RootMovie = ipRootMovie;
}
function ShowNotifyMessage(ipMessage, ipColor, bTemporary) {
if (bTemporary) {
ShowNotifyMessageFunc(ipMessage, ipColor, 0);
} else {
ShowNotifyMessageFunc(ipMessage, ipColor, 1);
}
}
function ShowLongNotifyMessage(ipMessage, ipColor) {
ShowNotifyMessageFunc(ipMessage, ipColor, 2);
}
function ShowNotifyMessageFunc(ipMessage, ipColor, ipType) {
HideNotifyMessage();
var _local2 = "";
if (ipType == 0) {
_local2 = "notify_temporary_mov";
} else if (ipType == 1) {
_local2 = "notify_permanent_mov";
} else if (ipType == 2) {
_local2 = "notify_temporary_long_mov";
}
m_AppInfoObj.appdata.notify_clip = m_RootMovie.attachMovie(_local2, LC_Const.C_NOTIFY_ID, LC_Const.C_NOTIFY_DEPTH, {_x:15, _y:LC_Const.C_STAGE_VIEW_HEIGHT - 20});
m_AppInfoObj.appdata.notify_clip.notify_txt.text = ipMessage;
m_AppInfoObj.appdata.notify_clip.notify_txt.textColor = ipColor;
m_AppInfoObj.appdata.notify_clip.notify_txt._width = LC_Const.C_STAGE_VIEW_WIDTH - 10;
}
function HideNotifyMessage() {
if (m_AppInfoObj.appdata.notify_clip != null) {
m_AppInfoObj.appdata.notify_clip.removeMovieClip();
m_AppInfoObj.appdata.notify_clip = null;
}
}
}
Symbol 2568 MovieClip [__Packages.LC_AppInfo] Frame 0
class LC_AppInfo
{
var session, player, power, status, appdata, relationdata, panel, option;
function LC_AppInfo () {
session = new Object();
session.con = new NetConnection();
player = new Object();
player.name = "";
player.id = -1;
player.direction = -1;
player.cid = 1;
power = new Object();
power.admin = false;
power.gm = false;
power.is_dark = false;
status = new Object();
status.area_name = "";
status.stage_name = "";
status.hp = 0;
status.mp = 0;
status.login_count = 0;
appdata = new Object();
appdata.appinfo_xml = new XML();
appdata.message_xml = new XML();
appdata.char_xml = new XML();
appdata.stage_xml = new XML();
appdata.sounds = new Object();
appdata.effect_var_id = 0;
appdata.effect_objs = new Array();
appdata.notify_clip = null;
appdata.sys_alert_clip = null;
appdata.play_bgm = false;
appdata.play_sound = false;
appdata.accept_events = false;
appdata.stop_enterframe = true;
appdata.ignore_players = new Array();
appdata.area_id = -1;
appdata.alive_interval = -1;
appdata.keylistener = new Object();
appdata.showid = false;
appdata.msg_separator = "";
appdata.server_callback_func = null;
appdata.timestamp_diff_in_sec = 0;
relationdata = new Object();
relationdata.finish_msg = "";
relationdata.app_name = "";
panel = new Object();
panel.login_panel = "";
panel.navi_panel = "";
panel.logout_panel = "";
panel.login_panel_text_color = "0xFFFFFF";
option = new Object();
option.use_password = "false";
}
}
Symbol 2569 MovieClip [__Packages.LC_NaviPanelUtils] Frame 0
class LC_NaviPanelUtils
{
function LC_NaviPanelUtils () {
}
static function GetNaviPanelMovie() {
return(_root.navipanel_mc);
}
static function GetInputMovie() {
return(GetNaviPanelMovie().input_mc);
}
static function GetMessageTextBox() {
return(GetInputMovie().message_txt);
}
static function GetBGMSoundMark() {
return(GetNaviPanelMovie().bgm_mark_mc);
}
static function GetSFXSoundMark() {
return(GetNaviPanelMovie().effectsound_mark_mc);
}
static function GetDisplayQualityTextBox() {
return(GetNaviPanelMovie().quality_txt);
}
static function GetSysAlertButton() {
return(GetNaviPanelMovie().sys_alert_btn);
}
static function GetBGMSoundButton() {
return(GetNaviPanelMovie().bgm_sound_btn);
}
static function GetSFXSoundButton() {
return(GetNaviPanelMovie().effect_sound_btn);
}
static function GetMessageButton() {
return(GetNaviPanelMovie().message_btn);
}
static function GetDisplayQualityButton() {
return(GetNaviPanelMovie().quality_btn);
}
static function GetLogoutButton() {
return(GetNaviPanelMovie().logout_btn);
}
static function GetVPLeftButton() {
return(GetNaviPanelMovie().viewpoint_left_btn);
}
static function GetVPUpButton() {
return(GetNaviPanelMovie().viewpoint_up_btn);
}
static function GetVPRightButton() {
return(GetNaviPanelMovie().viewpoint_right_btn);
}
static function GetVPBottomButton() {
return(GetNaviPanelMovie().viewpoint_bottom_btn);
}
static function GetMessageDirMovie() {
return(GetNaviPanelMovie().msg_dir_mc);
}
static function GetMessageDirLeftButton() {
return(GetMessageDirMovie().msg_pos_left_btn);
}
static function GetMessageDirUpButton() {
return(GetMessageDirMovie().msg_pos_up_btn);
}
static function GetMessageDirDownButton() {
return(GetMessageDirMovie().msg_pos_down_btn);
}
static function GetMessageDirRightButton() {
return(GetMessageDirMovie().msg_pos_right_btn);
}
static function SetLogic() {
GetBGMSoundButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.ToggleBGMSound();
};
GetSFXSoundButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.ToggleEffectSound();
};
GetMessageButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.SendMessage();
};
GetDisplayQualityButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.SetQuality(_root.GetNextQualit());
};
GetVPLeftButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.g_scroll_processor.ShiftViewPoint(LC_Const.C_DIREC_LEFT);
};
GetVPUpButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.g_scroll_processor.ShiftViewPoint(LC_Const.C_DIREC_UP);
};
GetVPRightButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.g_scroll_processor.ShiftViewPoint(LC_Const.C_DIREC_RIGHT);
};
GetVPBottomButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.g_scroll_processor.ShiftViewPoint(LC_Const.C_DIREC_DOWN);
};
GetLogoutButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.LogoutFunction(LC_AppUtils.GetMsg(23));
};
GetMessageDirLeftButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
if (_root.ToggleMessagePositionButton(LC_Const.C_DIREC_LEFT)) {
_root.SendMessagePosition(LC_Const.C_DIREC_LEFT);
}
};
GetMessageDirUpButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
if (_root.ToggleMessagePositionButton(LC_Const.C_DIREC_UP)) {
_root.SendMessagePosition(LC_Const.C_DIREC_UP);
}
};
GetMessageDirDownButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
if (_root.ToggleMessagePositionButton(LC_Const.C_DIREC_DOWN)) {
_root.SendMessagePosition(LC_Const.C_DIREC_DOWN);
}
};
GetMessageDirRightButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
if (_root.ToggleMessagePositionButton(LC_Const.C_DIREC_RIGHT)) {
_root.SendMessagePosition(LC_Const.C_DIREC_RIGHT);
}
};
GetSysAlertButton().onPress = function () {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
_root.SendSystemAlert();
};
}
static function Build() {
LC_AppUtils.CreateResourceClip(_root, LC_AppUtils.GetAppInfo().panel.navi_panel, "navipanel_mc", LC_DepthUtils.GetEmptyDepth(_root, 0, 1000000), 0, 349.9, null);
_root.shift_enter_msg_btn._x = -10;
_root.shift_enter_msg_btn._y = -10;
_root.shift_enter_msg_btn._width = 1;
_root.shift_enter_msg_btn._height = 1;
GetNaviPanelMovie().bgm_sound_btn.cacheAsBitmap = true;
GetNaviPanelMovie().bgm_mark_mc.cacheAsBitmap = true;
GetNaviPanelMovie().effect_sound_btn.cacheAsBitmap = true;
GetNaviPanelMovie().effectsound_mark_mc.cacheAsBitmap = true;
GetNaviPanelMovie().message_btn.cacheAsBitmap = true;
GetNaviPanelMovie().background_mc.cacheAsBitmap = true;
GetNaviPanelMovie().sys_alert_btn.cacheAsBitmap = true;
GetNaviPanelMovie().viewpoint_left_btn.cacheAsBitmap = true;
GetNaviPanelMovie().viewpoint_right_btn.cacheAsBitmap = true;
GetNaviPanelMovie().viewpoint_up_btn.cacheAsBitmap = true;
GetNaviPanelMovie().viewpoint_bottom_btn.cacheAsBitmap = true;
GetNaviPanelMovie().quality_btn.cacheAsBitmap = true;
GetNaviPanelMovie().logout_btn.cacheAsBitmap = true;
GetNaviPanelMovie().msg_dir_mc.cacheAsBitmap = true;
_root.camera_window_mov.swapDepths(_root.navipanel_mc);
SetLogic();
}
static function Hide() {
GetNaviPanelMovie()._visible = false;
}
}
Symbol 2570 MovieClip [__Packages.LC_DepthUtils] Frame 0
class LC_DepthUtils
{
function LC_DepthUtils () {
}
static function GetTopObjectPanelLayerDepthMax(ipVirtualX, ipVirtualY) {
return((((parseInt(ipVirtualX) + parseInt(ipVirtualY)) * 1000) + 900) + LC_Const.C_SYS_RESERVED);
}
static function GetTopObjectPanelLayerDepthMin(ipVirtualX, ipVirtualY) {
return((((parseInt(ipVirtualX) + parseInt(ipVirtualY)) * 1000) + 601) + LC_Const.C_SYS_RESERVED);
}
static function GetPlayerPanelLayerDepthMax(ipVirtualX, ipVirtualY) {
return((((parseInt(ipVirtualX) + parseInt(ipVirtualY)) * 1000) + 600) + LC_Const.C_SYS_RESERVED);
}
static function GetPlayerPanelLayerDepthMin(ipVirtualX, ipVirtualY) {
return((((parseInt(ipVirtualX) + parseInt(ipVirtualY)) * 1000) + 301) + LC_Const.C_SYS_RESERVED);
}
static function GetBottomObjectPanelLayerDepthMax(ipVirtualX, ipVirtualY) {
return((((parseInt(ipVirtualX) + parseInt(ipVirtualY)) * 1000) + 300) + LC_Const.C_SYS_RESERVED);
}
static function GetBottomObjectPanelLayerDepthMin(ipVirtualX, ipVirtualY) {
return((((parseInt(ipVirtualX) + parseInt(ipVirtualY)) * 1000) + 1) + LC_Const.C_SYS_RESERVED);
}
static function GetEmptyDepth(ipMovieClip, ipMinDepth, ipMaxDepth) {
var _local1 = ipMinDepth;
while (_local1 <= ipMaxDepth) {
if (ipMovieClip.getInstanceAtDepth(_local1) == undefined) {
return(_local1);
}
_local1++;
}
return(0);
}
static function GetMinDepthObject(ipMovieClip, ipMinDepth, ipMaxDepth) {
var _local1 = ipMinDepth;
while (_local1 <= ipMaxDepth) {
if (ipMovieClip.getInstanceAtDepth(_local1) != undefined) {
return(ipMovieClip.getInstanceAtDepth(_local1));
}
_local1++;
}
return(null);
}
}
Symbol 2571 MovieClip [__Packages.LC_HashGenerator] Frame 0
class LC_HashGenerator
{
function LC_HashGenerator () {
}
function GetHash(ipSourceText) {
var _local2 = 0;
var _local1 = 0;
var _local3 = ipSourceText.length;
_local1 = 0;
while (_local1 < _local3) {
_local2 = (_local2 * 3) + ipSourceText.charCodeAt(_local1);
if (_local2 > 16777215) {
_local2 = _local2 % 65532;
}
_local1++;
}
return(_local2);
}
}
Symbol 2572 MovieClip [__Packages.LC_EventProcessor] Frame 0
class LC_EventProcessor
{
var m_MainDialog, m_DetailDialog, m_MainDialogLoadCount, m_EventNo, m_DetailDialogLockInfo, m_DetailDialogLoadCount, m_DetailDialogPassword;
function LC_EventProcessor () {
m_MainDialog = null;
m_DetailDialog = null;
}
function ShowMainDialog() {
if (m_MainDialog != null) {
return(undefined);
}
LC_AppUtils.AcceptEvents(false);
m_MainDialog = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, true, {title:LC_AppUtils.GetMsg(84), contentPath:"event_frm"});
var lEventProcessor = this;
var _local13 = new Object();
m_MainDialogLoadCount = 0;
_local13.handleEvent = function (ipEventObj) {
if (ipEventObj.type == "complete") {
var lWindow = ipEventObj.target.content;
lWindow.main_spd.onLoad = function () {
var lSpread = lWindow.main_spd;
var _local2 = new Object();
_local2.change = function (ipSpreadObj) {
lWindow.detail_btn.enabled = true;
lWindow.vote_btn.enabled = true;
lWindow.rula_btn.enabled = true;
};
lSpread.addEventListener("change", _local2);
var _local1 = new Object();
_local1.cellPress = function (eventObject) {
if ((getTimer() - lSpread.prev_click) < 300) {
if (lWindow.search_btn.enabled) {
if (lSpread.selectedItem != undefined) {
var _local1 = lSpread.selectedItem.EventID;
lEventProcessor.ShowDetailDialog(_local1);
}
}
}
lSpread.prev_click = getTimer();
};
lSpread.prev_click = getTimer();
lSpread.addEventListener("cellPress", _local1);
lSpread.addColumn(LC_AppUtils.GetMsg(96));
lSpread.addColumn(LC_AppUtils.GetMsg(97));
lSpread.addColumn(LC_AppUtils.GetMsg(98));
lSpread.addColumn(LC_AppUtils.GetMsg(99));
lSpread.addColumn(LC_AppUtils.GetMsg(100));
lSpread.addColumn(LC_AppUtils.GetMsg(101));
lSpread.getColumnAt(0).width = 95;
lSpread.getColumnAt(1).width = 62;
lSpread.getColumnAt(2).width = 110;
lSpread.getColumnAt(3).width = 110;
lSpread.getColumnAt(4).width = 70;
lSpread.getColumnAt(5).width = 100;
lEventProcessor.MainDialogLoadEnd();
};
lWindow.search_btn.onLoad = function () {
lWindow.search_btn.label = LC_AppUtils.GetMsg(90);
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
if (lEventProcessor.CheckSearchCondition(true)) {
lEventProcessor.SearchEventList();
}
};
lWindow.search_btn.addEventListener("click", _local1);
lEventProcessor.MainDialogLoadEnd();
};
lWindow.new_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lEventProcessor.ShowDetailDialog("");
};
lWindow.new_btn.addEventListener("click", _local1);
lWindow.new_btn.label = LC_AppUtils.GetMsg(91);
lEventProcessor.MainDialogLoadEnd();
};
lWindow.detail_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
var _local1 = lWindow.main_spd.selectedItem.EventID;
lEventProcessor.ShowDetailDialog(_local1);
};
lWindow.detail_btn.addEventListener("click", _local1);
lWindow.detail_btn.label = LC_AppUtils.GetMsg(92);
lWindow.detail_btn.enabled = false;
lEventProcessor.MainDialogLoadEnd();
};
lWindow.vote_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
var _local1 = lWindow.main_spd.selectedItem.EventID;
lEventProcessor.VoteEvent(_local1);
};
lWindow.vote_btn.addEventListener("click", _local1);
lWindow.vote_btn.label = LC_AppUtils.GetMsg(93);
lWindow.vote_btn.enabled = false;
lEventProcessor.MainDialogLoadEnd();
};
lWindow.rula_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lEventProcessor.DoRula(lWindow.main_spd.selectedItem.StageID);
};
lWindow.rula_btn.addEventListener("click", _local1);
lWindow.rula_btn.label = LC_AppUtils.GetMsg(149);
lWindow.rula_btn.enabled = false;
lEventProcessor.MainDialogLoadEnd();
};
lWindow.cancel_btn.onLoad = function () {
lWindow.cancel_btn.label = LC_AppUtils.GetMsg(94);
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lEventProcessor.RemoveMainDialog();
};
lWindow.cancel_btn.addEventListener("click", _local1);
lEventProcessor.MainDialogLoadEnd();
};
lWindow.stage_cbo.onLoad = function () {
var _local2 = LC_AppUtils.GetStageList();
lWindow.stage_cbo.addItem("", "");
var _local1 = 0;
while (_local1 < _local2.length) {
lWindow.stage_cbo.addItem(_local2[_local1].name, _local2[_local1].id);
_local1++;
}
lWindow.stage_cbo.sortItemsBy("label", Array.CASEINSENSITIVE);
lEventProcessor.MainDialogLoadEnd();
};
lWindow.popularity_cbo.onLoad = function () {
var _local2 = 0;
while (_local2 < 6) {
var _local4 = LC_AppUtils.GetMsg(95);
var _local3 = "";
var _local1 = 0;
while (_local1 < _local2) {
_local3 = _local3 + _local4;
_local1++;
}
lWindow.popularity_cbo.addItem(_local3, _local2);
_local2++;
}
lEventProcessor.MainDialogLoadEnd();
};
lWindow.title_txt.text = "";
lWindow.date_lbl.text = LC_AppUtils.GetMsg(85);
lWindow.time_lbl.text = LC_AppUtils.GetMsg(86);
lWindow.title_lbl.text = LC_AppUtils.GetMsg(87);
lWindow.stage_lbl.text = LC_AppUtils.GetMsg(88);
lWindow.popularity_lbl.text = LC_AppUtils.GetMsg(89);
var _local6 = new Date();
_local6.setTime(_local6.getTime() - 7200000);
lWindow.date_year_txt.text = _local6.getFullYear();
lWindow.date_month_txt.text = _local6.getMonth() + 1;
lWindow.date_day_txt.text = _local6.getDate();
lWindow.time_hour_txt.text = _local6.getHours();
lWindow.time_minute_txt.text = LC_AppUtils.TextPadding(_local6.getMinutes(), 2, "0");
lWindow.date_year_txt.restrict = "0-9";
lWindow.date_month_txt.restrict = "0-9";
lWindow.date_day_txt.restrict = "0-9";
lWindow.time_hour_txt.restrict = "0-9";
lWindow.time_minute_txt.restrict = "0-9";
ipEventObj.target.setSize(LC_Const.C_EVENT_DIALOG_WIDTH, LC_Const.C_EVENT_DIALOG_HEIGHT);
ipEventObj.target._x = (LC_Const.C_STAGE_VIEW_WIDTH - LC_Const.C_EVENT_DIALOG_WIDTH) / 2;
ipEventObj.target._y = 50;
}
};
m_MainDialog.addEventListener("complete", _local13);
}
function MainDialogLoadEnd() {
m_MainDialogLoadCount++;
if (m_MainDialogLoadCount == 9) {
SearchEventList();
}
}
function LockMainDialog(ipLock) {
m_MainDialog.content.search_btn.enabled = !ipLock;
m_MainDialog.content.cancel_btn.enabled = !ipLock;
m_MainDialog.content.vote_btn.enabled = false;
m_MainDialog.content.rula_btn.enabled = false;
m_MainDialog.content.detail_btn.enabled = false;
m_MainDialog.content.new_btn.enabled = !ipLock;
}
function CheckSearchCondition(ipShowMsgBox) {
var _local4 = m_MainDialog.content.date_year_txt.text;
var _local2 = m_MainDialog.content.date_month_txt.text;
var _local6 = m_MainDialog.content.date_day_txt.text;
var _local5 = m_MainDialog.content.time_hour_txt.text;
var _local3 = m_MainDialog.content.time_minute_txt.text;
if (((((!LC_AppUtils.IsValidNumber(_local4, 1, 9999)) || (!LC_AppUtils.IsValidNumber(_local2, 1, 12))) || (!LC_AppUtils.IsValidNumber(_local6, 1, 31))) || (!LC_AppUtils.IsValidNumber(_local5, 0, 23))) || (!LC_AppUtils.IsValidNumber(_local3, 0, 59))) {
if (ipShowMsgBox) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(103));
}
return(false);
}
return(true);
}
function VoteEvent(ipEventNo) {
if (GetEventVoted(ipEventNo)) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(137));
return(undefined);
}
m_EventNo = ipEventNo;
if (m_DetailDialog != null) {
m_DetailDialogLockInfo = LockDetailDialog();
} else {
LockMainDialog(true);
m_MainDialog.content.main_spd.enabled = false;
m_MainDialog.content.vote_btn.enabled = false;
m_MainDialog.content.rula_btn.enabled = false;
m_MainDialog.content.detail_btn.enabled = false;
}
LC_AppUtils.GetAppInfo().session.con.call("manageVoteEvent", null, ipEventNo);
}
function ManageVoteEvent(ipResult) {
if (ipResult == "success") {
var lEventProcessor = this;
var _local3 = function () {
if (lEventProcessor.CheckSearchCondition(false)) {
lEventProcessor.SearchEventList();
}
};
SetEventVoted(m_EventNo);
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(138), _local3);
} else if (ipResult == "failed") {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(139));
} else if (ipResult == "duplicate") {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(137));
}
if (m_DetailDialog != null) {
UnlockDetailDialog(m_DetailDialogLockInfo);
} else {
LockMainDialog(false);
m_MainDialog.content.main_spd.enabled = true;
m_MainDialog.content.vote_btn.enabled = true;
m_MainDialog.content.rula_btn.enabled = true;
m_MainDialog.content.detail_btn.enabled = true;
}
}
function SearchEventList() {
var _local4 = (((LC_AppUtils.TextPadding(m_MainDialog.content.date_year_txt.text, 4, "0") + "/") + LC_AppUtils.TextPadding(m_MainDialog.content.date_month_txt.text, 2, "0")) + "/") + LC_AppUtils.TextPadding(m_MainDialog.content.date_day_txt.text, 2, "0");
var _local5 = ((LC_AppUtils.TextPadding(m_MainDialog.content.time_hour_txt.text, 2, "0") + ":") + LC_AppUtils.TextPadding(m_MainDialog.content.time_minute_txt.text, 2, "0")) + ":00";
var _local2 = m_MainDialog.content.title_txt.text;
var _local6 = m_MainDialog.content.stage_cbo.selectedItem.data;
var _local3 = m_MainDialog.content.popularity_cbo.selectedItem.data;
LockMainDialog(true);
LC_AppUtils.GetAppInfo().session.con.call("manageSearchEventList", null, _local4, _local5, _local2, _local6, _local3);
}
function ManageEventList(ipEventList) {
var _local26 = m_MainDialog.content.main_spd;
_local26.removeAll();
var _local4 = 0;
while (_local4 < ipEventList.length) {
if ((_local4 != null) && (_local4 != undefined)) {
var _local2 = ipEventList[_local4];
var _local8 = LC_AppUtils.GetStageNameFromID(_local2.stage_id);
var _local10 = LC_AppUtils.GetMsg(95);
var _local5 = "";
var _local3 = 0;
while (_local3 < _local2.popularity) {
_local5 = _local5 + _local10;
_local3++;
}
var _local6 = _local2.event_date.split("/");
var _local11 = new Date(_local6[0], parseInt(_local6[1]) - 1, _local6[2]);
var _local9 = ((_local2.event_date + "(") + LC_AppUtils.GetWeekdayString(_local11)) + ")";
var _local7 = null;
if (LC_AppUtils.GetMsg(96) == "\u65E5\u4ED8") {
_local7 = {\u65E5\u4ED8:_local9, \u958B\u59CB\u6642\u523B:_local2.starttime, \u5834\u6240:_local8, \u756A\u7D44\u540D:_local2.title, \u767B\u9332\u8005:_local2.reguser_name, \uFF9C\uFF9B\uFF7D\uFF92\uFF70\uFF80\uFF70:_local5, EventID:_local2.event_no, StageID:_local2.stage_id};
} else if (LC_AppUtils.GetMsg(96) == "Date") {
_local7 = {Date:_local9, Time:_local2.starttime, Stage:_local8, Title:_local2.title, User:_local2.reguser_name, Popularity:_local5, EventID:_local2.event_no, StageID:_local2.stage_id};
}
_local26.addItem(_local7);
}
_local4++;
}
LockMainDialog(false);
}
function RemoveMainDialog() {
if (m_MainDialog == null) {
return(undefined);
}
m_MainDialog.deletePopUp();
LC_AppUtils.AcceptEvents(true);
m_MainDialog = null;
}
function ShowDetailDialog(ipEventNo) {
if (m_DetailDialog != null) {
return(undefined);
}
m_DetailDialog = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, true, {title:LC_AppUtils.GetMsg(104), contentPath:"event_detail_frm"});
var lEventProcessor = this;
m_DetailDialogLoadCount = 0;
var _local8 = new Object();
_local8.handleEvent = function (ipEventObj) {
if (ipEventObj.type == "complete") {
var lWindow = ipEventObj.target.content;
lWindow.stage_cbo.onLoad = function () {
var _local2 = LC_AppUtils.GetStageList();
lWindow.stage_cbo.addItem("", "");
var _local1 = 0;
while (_local1 < _local2.length) {
ipEventObj.target.content.stage_cbo.addItem(_local2[_local1].name, _local2[_local1].id);
_local1++;
}
ipEventObj.target.content.stage_cbo.sortItemsBy("label", Array.CASEINSENSITIVE);
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.content_txt.onLoad = function () {
lWindow.content_txt.text = "";
lWindow.content_txt.maxChars = 200;
lWindow.content_txt.restrict = "^\t";
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.logo_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
if (lEventProcessor.CheckLogURL(true)) {
lEventProcessor.ShowLogoImage();
}
};
lWindow.logo_btn.addEventListener("click", _local1);
lWindow.logo_btn.label = LC_AppUtils.GetMsg(110);
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.edit_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lEventProcessor.EnableEdit();
};
lWindow.edit_btn.addEventListener("click", _local1);
lWindow.edit_btn.label = LC_AppUtils.GetMsg(111);
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.register_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
if (lEventProcessor.CheckEventContents()) {
lEventProcessor.RegisterEvent(ipEventNo);
}
};
lWindow.register_btn.addEventListener("click", _local1);
lWindow.register_btn.label = LC_AppUtils.GetMsg(112);
lWindow.register_btn.visible = false;
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.delete_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lEventProcessor.DeleteEvent(ipEventNo);
};
lWindow.delete_btn.addEventListener("click", _local1);
lWindow.delete_btn.label = LC_AppUtils.GetMsg(113);
lWindow.delete_btn.visible = false;
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.vote_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lEventProcessor.VoteEvent(ipEventNo);
};
lWindow.vote_btn.addEventListener("click", _local1);
lWindow.vote_btn.label = LC_AppUtils.GetMsg(93);
lWindow.vote_btn.visible = false;
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.cancel_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lEventProcessor.RemoveDetailDialog();
};
lWindow.cancel_btn.addEventListener("click", _local1);
lWindow.cancel_btn.label = LC_AppUtils.GetMsg(94);
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.rula_btn.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lEventProcessor.DoRula(lWindow.stage_cbo.selectedItem.data);
};
lWindow.rula_btn.addEventListener("click", _local1);
lWindow.rula_btn.label = LC_AppUtils.GetMsg(149);
lWindow.rula_btn.visible = false;
lEventProcessor.DetailDialogLoadEnd(ipEventNo);
};
lWindow.date_year_txt.text = "";
lWindow.date_month_txt.text = "";
lWindow.date_day_txt.text = "";
lWindow.time_hour_txt.text = "";
lWindow.time_minute_txt.text = "";
lWindow.title_txt.text = "";
lWindow.logo_txt.text = "";
lWindow.web_txt.text = "";
lWindow.web_txt.internalData = "";
lWindow.user_txt.text = "";
lWindow.pass_txt.text = "";
lWindow.date_lbl.text = LC_AppUtils.GetMsg(85);
lWindow.time_lbl.text = LC_AppUtils.GetMsg(86);
lWindow.title_lbl.text = LC_AppUtils.GetMsg(87);
lWindow.stage_lbl.text = LC_AppUtils.GetMsg(88);
lWindow.content_lbl.text = LC_AppUtils.GetMsg(105);
lWindow.logo_lbl.text = LC_AppUtils.GetMsg(106);
lWindow.web_lbl.text = LC_AppUtils.GetMsg(107);
lWindow.user_lbl.text = LC_AppUtils.GetMsg(108);
lWindow.pass_lbl.text = LC_AppUtils.GetMsg(109);
lWindow.date_year_txt.restrict = "0-9";
lWindow.date_month_txt.restrict = "0-9";
lWindow.date_day_txt.restrict = "0-9";
lWindow.time_hour_txt.restrict = "0-9";
lWindow.time_minute_txt.restrict = "0-9";
lWindow.title_txt.restrict = "^\t";
lWindow.logo_txt.restrict = "^\t";
lWindow.web_txt.restrict = "^\t";
lWindow.user_txt.restrict = "^\t";
lWindow.pass_txt.restrict = "^\t";
ipEventObj.target.setSize(LC_Const.C_EVENT_DETAIL_DIALOG_WIDTH, LC_Const.C_EVENT_DETAIL_DIALOG_HEIGHT);
ipEventObj.target._x = (LC_Const.C_STAGE_VIEW_WIDTH - LC_Const.C_EVENT_DETAIL_DIALOG_WIDTH) / 2;
ipEventObj.target._y = 25;
}
};
m_DetailDialog.addEventListener("complete", _local8);
}
function DoRula(ipStageID) {
var _local2 = LC_AppUtils.GetMagicProcessor().GetStageNodeFromID(ipStageID);
if (_local2 != null) {
if (LC_AppUtils.GetMagicProcessor().SpendMagicPower(7)) {
LC_AppUtils.GetMagicProcessor().DoRula(_local2);
}
RemoveDetailDialog();
RemoveMainDialog();
}
}
function DeleteEvent(ipEventNo) {
var _local3 = m_DetailDialog.content;
var _local2 = function () {
this.m_DetailDialogLockInfo = this.LockDetailDialog();
LC_AppUtils.GetAppInfo().session.con.call("manageDeleteEvent", null, ipEventNo);
};
LC_AppUtils.ShowOkCancelBox(LC_AppUtils.GetMsg(125), LC_AppUtils.GetMsg(134), _local2);
}
function ManageDeleteEvent(ipResult) {
var lEventProcessor = this;
if (ipResult == "true") {
var _local2 = function () {
if (lEventProcessor.CheckSearchCondition(false)) {
lEventProcessor.SearchEventList();
}
lEventProcessor.RemoveDetailDialog();
};
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(135), _local2);
} else {
var _local2 = function () {
lEventProcessor.UnlockDetailDialog(lEventProcessor.m_DetailDialogLockInfo);
};
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(136), _local2);
}
}
function RegisterEvent(ipEventNo) {
var lWindow = m_DetailDialog.content;
if (ipEventNo == "") {
if (GetEventRegisterdToday()) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(148));
return(undefined);
}
}
var _local4 = function () {
var _local4 = (((LC_AppUtils.TextPadding(lWindow.date_year_txt.text, 4, "0") + "/") + LC_AppUtils.TextPadding(lWindow.date_month_txt.text, 2, "0")) + "/") + LC_AppUtils.TextPadding(lWindow.date_day_txt.text, 2, "0");
var _local5 = ((LC_AppUtils.TextPadding(lWindow.time_hour_txt.text, 2, "0") + ":") + LC_AppUtils.TextPadding(lWindow.time_minute_txt.text, 2, "0")) + ":00";
var _local2 = lWindow.title_txt.text;
var _local7 = lWindow.stage_cbo.selectedItem.data;
var _local6 = lWindow.content_txt.text;
var _local9 = lWindow.logo_txt.text;
var _local10 = lWindow.web_txt.text;
var _local3 = lWindow.user_txt.text.split("\t").join("");
var _local8 = lWindow.pass_txt.text;
this.m_DetailDialogLockInfo = this.LockDetailDialog();
LC_AppUtils.GetAppInfo().session.con.call("manageRegisterEvent", null, ipEventNo, _local4, _local5, _local2, _local7, _local6, _local9, _local10, _local3, _local8);
};
m_EventNo = ipEventNo;
LC_AppUtils.ShowOkCancelBox(LC_AppUtils.GetMsg(125), LC_AppUtils.GetMsg(126), _local4);
}
function ManageRegisterEvent(ipResult) {
var lEventProcessor = this;
if (ipResult == "true") {
if (m_EventNo == "") {
SetEventRegisterdToday();
}
var _local2 = function () {
if (lEventProcessor.CheckSearchCondition(false)) {
lEventProcessor.SearchEventList();
}
lEventProcessor.RemoveDetailDialog();
};
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(124), _local2);
} else if (ipResult == "duplicate") {
var _local2 = function () {
lEventProcessor.UnlockDetailDialog(lEventProcessor.m_DetailDialogLockInfo);
};
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(148), _local2);
} else {
var _local2 = function () {
lEventProcessor.UnlockDetailDialog(lEventProcessor.m_DetailDialogLockInfo);
};
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(127), _local2);
}
}
function CheckEventContents() {
var _local2 = m_DetailDialog.content;
if (((((!LC_AppUtils.IsValidNumber(_local2.date_year_txt.text, 1, 9999)) || (!LC_AppUtils.IsValidNumber(_local2.date_month_txt.text, 1, 12))) || (!LC_AppUtils.IsValidNumber(_local2.date_day_txt.text, 1, 31))) || (!LC_AppUtils.IsValidNumber(_local2.time_hour_txt.text, 0, 23))) || (!LC_AppUtils.IsValidNumber(_local2.time_minute_txt.text, 0, 59))) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(103));
return(false);
}
var _local5 = new Date();
var _local6 = new Date(parseInt(_local2.date_year_txt.text), parseInt(_local2.date_month_txt.text) - 1, parseInt(_local2.date_day_txt.text), parseInt(_local2.time_hour_txt.text), parseInt(_local2.time_minute_txt.text));
if (_local6 < _local5) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(116));
return(false);
}
if (LC_AppUtils.GetValidString(_local2.title_txt.text) == "") {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(118));
return(false);
}
if (_local2.stage_cbo.selectedItem.data == "") {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(119));
return(false);
}
if (LC_AppUtils.GetValidString(_local2.content_txt.text) == "") {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(120));
return(false);
}
var _local3 = _local2.web_txt.text;
if (_local3 != "") {
if (_local3.indexOf("http://") != 0) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(121));
return(false);
}
}
var _local4 = _local2.pass_txt.text;
if (_local4.length < 4) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(122));
return(false);
}
if (!CheckLogURL(false)) {
return(false);
}
return(true);
}
function DetailDialogLoadEnd(ipEventID) {
m_DetailDialogLoadCount++;
if (m_DetailDialogLoadCount == 9) {
if (ipEventID == "") {
LoadNewDetail();
} else {
LoadExistingDetail(ipEventID);
}
}
}
function EnableEdit() {
var _local2 = m_DetailDialog.content;
var _local3 = _local2.pass_txt.text;
if ((!LC_AppUtils.GetAppInfo().power.admin) && (!LC_AppUtils.GetAppInfo().power.gm)) {
if (_local3 != m_DetailDialogPassword) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(133));
return(undefined);
}
} else {
_local2.pass_txt.text = m_DetailDialogPassword;
}
_local2.user_txt.text = LC_AppUtils.GetPlayerName().split("\r").join("").split(newline).join("");
SetInputControlEditMode(true);
SetButtonEditMode(MODE_EDIT);
}
function LoadExistingDetail(ipEventID) {
var _local2 = m_DetailDialog.content;
_local2.logo_btn.enabled = false;
_local2.edit_btn.enabled = false;
_local2.register_btn.enabled = false;
_local2.delete_btn.enabled = false;
_local2.vote_btn.enabled = false;
_local2.rula_btn.enabled = false;
_local2.cancel_btn.enabled = false;
SetInputControlEditMode(false);
LC_AppUtils.GetAppInfo().session.con.call("manageSearchEventDetail", null, ipEventID);
}
function ManageEventDetail(ipYear, ipMonth, ipDay, ipHour, ipMinute, ipStageID, ipTitle, ipEventContent, ipLogoURL, ipWebURL, ipEditPass, ipUserName) {
if (ipYear == "") {
var lEventProcessor = this;
var _local5 = function () {
lEventProcessor.RemoveDetailDialog();
};
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(140), _local5);
return(undefined);
}
var _local3 = m_DetailDialog.content;
SetButtonEditMode(MODE_READ);
_local3.date_year_txt.text = ipYear;
_local3.date_month_txt.text = ipMonth;
_local3.date_day_txt.text = ipDay;
_local3.time_hour_txt.text = ipHour;
_local3.time_minute_txt.text = LC_AppUtils.TextPadding(ipMinute, 2, "0");
var _local2 = 0;
while (_local2 < _local3.stage_cbo.length) {
if (_local3.stage_cbo.getItemAt(_local2).data == ipStageID) {
_local3.stage_cbo.selectedIndex = _local2;
break;
}
_local2++;
}
_local3.title_txt.text = ipTitle;
_local3.content_txt.text = ipEventContent;
_local3.logo_txt.text = ipLogoURL;
if (ipLogoURL != "") {
ShowLogoImage();
}
_local3.web_txt.html = true;
_local3.web_txt.htmlText = "";
_local3.web_txt.internalData = ipWebURL;
if (ipWebURL != "") {
_local3.web_txt.htmlText = ((("<a href='" + ipWebURL) + "' target='_blank'><font color='#0000FF'>") + _local3.title_txt.text) + "\u306E\u30A6\u30A7\u30D6\u30DA\u30FC\u30B8</font></a>";
}
m_DetailDialogPassword = ipEditPass;
_local3.user_txt.text = ipUserName;
}
function LoadNewDetail() {
var _local2 = m_DetailDialog.content;
var _local3 = new Date();
_local2.date_year_txt.text = _local3.getFullYear();
_local2.date_month_txt.text = _local3.getMonth() + 1;
_local2.date_day_txt.text = _local3.getDate();
_local2.time_hour_txt.text = _local3.getHours();
_local2.time_minute_txt.text = LC_AppUtils.TextPadding(_local3.getMinutes(), 2, "0");
_local2.user_txt.text = LC_AppUtils.GetPlayerName().split("\r").join("").split(newline).join("");
SetInputControlEditMode(true);
SetButtonEditMode(MODE_NEW);
}
function RemoveDetailDialog() {
if (m_DetailDialog == null) {
return(undefined);
}
m_DetailDialog.deletePopUp();
m_DetailDialog = null;
}
function CheckLogURL(bMustInput) {
var _local4 = m_DetailDialog.content;
var _local2 = _local4.logo_txt.text;
if ((!bMustInput) && (_local2 == "")) {
return(true);
}
if (bMustInput && (_local2 == "")) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(117));
return(false);
}
if (_local2.indexOf("http://") != 0) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(114));
return(false);
}
var _local3 = _local2.substr(_local2.length - 4, 4).toLowerCase();
if (((_local3 != ".jpg") && (_local3 != ".png")) && (_local3 != ".gif")) {
LC_AppUtils.MsgBox(LC_AppUtils.GetMsg(102), LC_AppUtils.GetMsg(115));
return(false);
}
return(true);
}
function ShowLogoImage() {
var _local2 = m_DetailDialog.content;
var lEventProcessor = this;
if ((_local2.logo_mov.event_detail_logo_content_mov.logo_container != undefined) && (_local2.logo_mov.event_detail_logo_content_mov.logo_container != null)) {
_local2.logo_mov.event_detail_logo_content_mov.logo_container.removeMovieClip();
}
var _local5 = _local2.logo_mov.event_detail_logo_content_mov.createEmptyMovieClip("logo_container", _local2.logo_mov.event_detail_logo_content_mov.getNextHighestDepth());
_local5._lockroot = true;
var _local3 = new Object();
_local3.onLoadComplete = function (ipMovieClip, ipHttpStatus) {
if (lEventProcessor.m_DetailDialog != null) {
if (ipMovieClip.getSWFVersion() != -1) {
ipMovieClip.removeMovieClip();
}
}
};
_local3.onLoadInit = function (ipMovieClip) {
if (lEventProcessor.m_DetailDialog != null) {
if ((ipMovieClip._width == 0) || (ipMovieClip._height == 0)) {
ipMovieClip.removeMovieClip();
} else {
ipMovieClip._width = 200;
ipMovieClip._height = 100;
}
}
};
_local3.onLoadError = function (ipMovieClip, ipErrorCode, ipNumber) {
if (lEventProcessor.m_DetailDialog != null) {
ipMovieClip.removeMovieClip();
}
};
var _local4 = new MovieClipLoader();
_local4.addListener(_local3);
_local4.loadClip(_local2.logo_txt.text, _local5);
}
function HandleEnterKey() {
if (m_DetailDialog == null) {
return(undefined);
}
var _local2 = m_DetailDialog.content;
if (Selection.getFocus() == targetPath(_local2.content_txt.label)) {
_local2.content_txt.label.replaceSel(newline);
}
}
function LockDetailDialog() {
var _local3 = m_DetailDialog.content;
var _local2 = new Array();
_local2[0] = new Object();
_local2[0].object = _local3.logo_btn;
_local2[0].enabled = _local3.logo_btn.enabled;
_local3.logo_btn.enabled = false;
_local2[1] = new Object();
_local2[1].object = _local3.edit_btn;
_local2[1].enabled = _local3.edit_btn.enabled;
_local3.edit_btn.enabled = false;
_local2[2] = new Object();
_local2[2].object = _local3.register_btn;
_local2[2].enabled = _local3.register_btn.enabled;
_local3.register_btn.enabled = false;
_local2[3] = new Object();
_local2[3].object = _local3.delete_btn;
_local2[3].enabled = _local3.delete_btn.enabled;
_local3.delete_btn.enabled = false;
_local2[4] = new Object();
_local2[4].object = _local3.vote_btn;
_local2[4].enabled = _local3.vote_btn.enabled;
_local3.vote_btn.enabled = false;
_local2[5] = new Object();
_local2[5].object = _local3.cancel_btn;
_local2[5].enabled = _local3.cancel_btn.enabled;
_local3.cancel_btn.enabled = false;
_local2[6] = new Object();
_local2[6].object = _local3.rula_btn;
_local2[6].enabled = _local3.rula_btn.enabled;
_local3.rula_btn.enabled = false;
return(_local2);
}
function UnlockDetailDialog(ipEnabledList) {
var _local1 = 0;
while (_local1 < ipEnabledList.length) {
ipEnabledList[_local1].object.enabled = ipEnabledList[_local1].enabled;
_local1++;
}
}
function SetInputControlEditMode(ipEdit) {
var _local2 = m_DetailDialog.content;
var _local4;
var _local3;
var _local5;
if (ipEdit) {
_local4 = "input";
_local3 = 0;
_local5 = 0;
} else {
_local4 = "dynamic";
_local3 = 15329769 /* 0xE9E9E9 */;
_local5 = 15329769 /* 0xE9E9E9 */;
}
_local2.date_year_txt.type = _local4;
_local2.date_year_txt.borderColor = _local3;
_local2.date_month_txt.type = _local4;
_local2.date_month_txt.borderColor = _local3;
_local2.date_day_txt.type = _local4;
_local2.date_day_txt.borderColor = _local3;
_local2.time_hour_txt.type = _local4;
_local2.time_hour_txt.borderColor = _local3;
_local2.time_minute_txt.type = _local4;
_local2.time_minute_txt.borderColor = _local3;
_local2.title_txt.type = _local4;
_local2.title_txt.borderColor = _local3;
_local2.logo_txt.type = _local4;
_local2.logo_txt.borderColor = _local3;
_local2.logo_txt.textColor = _local5;
_local2.web_txt.type = _local4;
_local2.web_txt.borderColor = _local3;
_local2.web_txt.html = !ipEdit;
if (ipEdit) {
if (_local2.web_txt.internalData != "") {
_local2.web_txt.text = _local2.web_txt.internalData;
_local2.web_txt.textColor = 0;
}
} else if (_local2.web_txt.text != "") {
_local2.web_txt.htmlText = ((("<a href='" + _local2.web_txt.text) + "' target='_blank'><font color='#0000FF'>") + _local2.title_txt.text) + "\u306E\u30A6\u30A7\u30D6\u30DA\u30FC\u30B8</font></a>";
}
_local2.pass_txt.borderColor = _local3;
_local2.content_txt.editable = ipEdit;
}
function SetButtonEditMode(ipEditMode) {
var _local2 = m_DetailDialog.content;
if (ipEditMode == MODE_NEW) {
_local2.logo_btn.enabled = true;
_local2.register_btn.enabled = true;
_local2.vote_btn.enabled = false;
_local2.rula_btn.enabled = false;
_local2.cancel_btn.enabled = true;
_local2.edit_btn.enabled = false;
_local2.delete_btn.enabled = false;
_local2.register_btn.visible = true;
_local2.delete_btn.visible = true;
_local2.vote_btn.visible = false;
_local2.rula_btn.visible = false;
} else if (ipEditMode == MODE_EDIT) {
_local2.logo_btn.enabled = true;
_local2.register_btn.enabled = true;
_local2.vote_btn.enabled = false;
_local2.rula_btn.enabled = false;
_local2.cancel_btn.enabled = true;
_local2.edit_btn.enabled = false;
_local2.delete_btn.enabled = true;
_local2.register_btn.visible = true;
_local2.delete_btn.visible = true;
_local2.vote_btn.visible = false;
_local2.rula_btn.visible = false;
} else if (ipEditMode == MODE_READ) {
_local2.logo_btn.enabled = false;
_local2.register_btn.enabled = false;
_local2.vote_btn.enabled = true;
_local2.rula_btn.enabled = true;
_local2.cancel_btn.enabled = true;
_local2.edit_btn.enabled = true;
_local2.delete_btn.enabled = false;
_local2.register_btn.visible = false;
_local2.delete_btn.visible = false;
_local2.vote_btn.visible = true;
_local2.rula_btn.visible = true;
}
}
function GetEventVoted(ipEventNo) {
var _local5 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_VOTE_COOKIE_NAME);
var _local4 = LC_Crypt.GetDecodedText(LC_Const.C_VOTE_COOKIE_CRYPT_SEED, _local5.data.evlsdat);
var _local2 = _local4.split(",");
var _local1 = 0;
while (_local1 < _local2.length) {
if (_local2[_local1] == ipEventNo) {
return(true);
}
_local1++;
}
return(false);
}
function SetEventVoted(ipEventNo) {
var _local2 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_VOTE_COOKIE_NAME);
var _local1 = LC_Crypt.GetDecodedText(LC_Const.C_VOTE_COOKIE_CRYPT_SEED, _local2.data.evlsdat);
var _local3 = _local1.split(",");
if (_local3.length >= 200) {
_local1 = "";
}
_local1 = (_local1 + ",") + ipEventNo;
_local2.data.evlsdat = LC_Crypt.GetEncodedText(LC_Const.C_VOTE_COOKIE_CRYPT_SEED, _local1);
}
function GetEventRegisterdToday() {
var _local4 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_REGISTER_COOKIE_NAME);
var _local2 = LC_Crypt.GetDecodedText(LC_Const.C_REGISTER_COOKIE_CRYPT_SEED, _local4.data.regdate);
if (_local2 == "") {
return(false);
}
var _local1 = new Date();
var _local3 = (((_local1.getFullYear() + "/") + (_local1.getMonth() + 1)) + "/") + _local1.getDate();
if (_local3 == _local2) {
return(true);
}
return(false);
}
function SetEventRegisterdToday() {
var _local3 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_REGISTER_COOKIE_NAME);
var _local1 = new Date();
var _local2 = (((_local1.getFullYear() + "/") + (_local1.getMonth() + 1)) + "/") + _local1.getDate();
_local3.data.regdate = LC_Crypt.GetEncodedText(LC_Const.C_REGISTER_COOKIE_CRYPT_SEED, _local2);
}
static var MODE_NEW = 0;
static var MODE_EDIT = 1;
static var MODE_READ = 2;
}
Symbol 2573 MovieClip [__Packages.LC_Crypt] Frame 0
class LC_Crypt
{
function LC_Crypt () {
}
static function GetEncodedText(ipHash, ipText) {
if ((ipText == null) || (ipText == undefined)) {
return("");
}
var _local3 = "";
var _local1 = 0;
while (_local1 < ipText.length) {
_local3 = _local3 + (ipText.charCodeAt(_local1) + ",");
_local1++;
}
return(LC_CryptRC4.encrypt(_local3, ipHash));
}
static function GetDecodedText(ipHash, ipText) {
if ((ipText == null) || (ipText == undefined)) {
return("");
}
var _local4 = LC_CryptRC4.decrypt(ipText, ipHash);
var _local3 = "";
var _local2 = _local4.split(",");
var _local1 = 0;
while (_local1 < _local2.length) {
_local3 = _local3 + String.fromCharCode(_local2[_local1]);
_local1++;
}
return(_local3);
}
}
Symbol 2574 MovieClip [__Packages.LC_CryptRC4] Frame 0
class LC_CryptRC4
{
function LC_CryptRC4 () {
}
static function encrypt(src, key) {
var _local3 = strToChars(src);
var _local1 = strToChars(key);
var _local2 = calculate(_local3, _local1);
return(charsToHex(_local2));
}
static function decrypt(src, key) {
var _local3 = hexToChars(src);
var _local1 = strToChars(key);
var _local2 = calculate(_local3, _local1);
return(charsToStr(_local2));
}
static function initialize(pwd) {
var _local2 = 0;
var _local3;
var _local4 = pwd.length;
var _local1 = 0;
while (_local1 <= 255) {
mykey[_local1] = pwd[_local1 % _local4];
sbox[_local1] = _local1;
_local1++;
}
_local1 = 0;
while (_local1 <= 255) {
_local2 = ((_local2 + sbox[_local1]) + mykey[_local1]) % 256;
_local3 = sbox[_local1];
sbox[_local1] = sbox[_local2];
sbox[_local2] = _local3;
_local1++;
}
}
static function calculate(plaintxt, psw) {
initialize(psw);
var _local1 = 0;
var _local2 = 0;
var _local9 = new Array();
var _local7;
var _local5;
var _local6;
var _local3 = 0;
while (_local3 < plaintxt.length) {
_local1 = (_local1 + 1) % 256;
_local2 = (_local2 + sbox[_local1]) % 256;
_local5 = sbox[_local1];
sbox[_local1] = sbox[_local2];
sbox[_local2] = _local5;
var _local4 = (sbox[_local1] + sbox[_local2]) % 256;
_local7 = sbox[_local4];
_local6 = plaintxt[_local3] ^ _local7;
_local9.push(_local6);
_local3++;
}
return(_local9);
}
static function charsToHex(chars) {
var _local4 = new String("");
var _local3 = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f");
var _local1 = 0;
while (_local1 < chars.length) {
_local4 = _local4 + (_local3[chars[_local1] >> 4] + _local3[chars[_local1] & 15]);
_local1++;
}
return(_local4);
}
static function hexToChars(hex) {
var _local3 = new Array();
var _local1 = ((hex.substr(0, 2) == "0x") ? 2 : 0);
while (_local1 < hex.length) {
_local3.push(parseInt(hex.substr(_local1, 2), 16));
_local1 = _local1 + 2;
}
return(_local3);
}
static function charsToStr(chars) {
var _local3 = new String("");
var _local1 = 0;
while (_local1 < chars.length) {
_local3 = _local3 + String.fromCharCode(chars[_local1]);
_local1++;
}
return(_local3);
}
static function strToChars(str) {
var _local3 = new Array();
var _local1 = 0;
while (_local1 < str.length) {
_local3.push(str.charCodeAt(_local1));
_local1++;
}
return(_local3);
}
static var sbox = new Array(255);
static var mykey = new Array(255);
}
Symbol 2575 MovieClip [__Packages.LC_MagicProcessor] Frame 0
class LC_MagicProcessor
{
var m_RulaDialog;
function LC_MagicProcessor () {
m_RulaDialog = null;
}
function ParseMagic(ipMessage) {
var _local3 = true;
var _local10 = ipMessage.split("\r").join("").split(newline).join("");
switch (_local10) {
case "#\uFF91\uFF70\uFF8C\uFF9E" :
case "#move" :
ProcessMove();
break;
case "#\uFF82\uFF72\uFF70\uFF84" :
case "#tweet" :
ProcessTweet();
break;
case "#\uFF72\uFF8D\uFF9E\uFF9D\uFF84" :
case "#event" :
ProcessEvent();
break;
case "#\uFF99\uFF70\uFF97" :
case "#rula" :
ProcessRula(7, true);
break;
case "#\uFF98\uFF7D\uFF84" :
case "#list" :
ProcessRula(3, false);
break;
case "#\uFF77\uFF99" :
case "#kill" :
if (LC_AppUtils.GetAppInfo().power.gm) {
ProcessKill();
} else {
_local3 = false;
}
break;
case "#\uFF83\uFF9E\uFF68\uFF7D\uFF8C\uFF9F\uFF9A\uFF72" :
case "#display" :
if (LC_AppUtils.GetAppInfo().power.gm) {
ProcessDisplay(LC_Const.C_DISPLAY_GM);
} else {
_local3 = false;
}
break;
case "#\uFF71\uFF9D\uFF83\uFF9E\uFF68\uFF7D\uFF8C\uFF9F\uFF9A\uFF72" :
case "#undisplay" :
if (LC_AppUtils.GetAppInfo().power.gm) {
ProcessDisplay(LC_Const.C_DISPLAY_NONE);
} else {
_local3 = false;
}
break;
case "#\uFF71\uFF72\uFF83\uFF9E\uFF68\uFF70" :
case "#id" :
if (LC_AppUtils.GetAppInfo().power.gm) {
ProcessID(true);
} else {
_local3 = false;
}
break;
case "#\uFF71\uFF9D\uFF71\uFF72\uFF83\uFF9E\uFF68\uFF70" :
case "#unid" :
if (LC_AppUtils.GetAppInfo().power.gm) {
ProcessID(false);
} else {
_local3 = false;
}
break;
default :
if (((ipMessage.indexOf("#kill") == 0) || (ipMessage.indexOf("#\uFF77\uFF99") == 0)) && (LC_AppUtils.GetAppInfo().power.gm)) {
var _local8 = 0;
if (ipMessage.indexOf("#kill") == 0) {
_local8 = 5;
} else {
_local8 = 3;
}
var _local9 = ipMessage.substr(_local8);
var _local5 = _local9.split("\r").join("").split(newline).join("").split(" ").join("");
var _local4 = false;
for (var _local6 in LC_AppUtils.GetStageInfo().data.player.players) {
if (_local6 == _local5) {
var _local2 = LC_AppUtils.GetPlayerObj(_local6);
if ((_local2 != null) && (_local2 != undefined)) {
_local4 = true;
break;
}
}
}
if (_local4) {
ProcessKillTarget(_local5);
}
} else {
_local3 = false;
}
}
return(_local3);
}
function SpendMagicPower(ipMagicPoint) {
var _local1 = LC_AppUtils.GetStatusProcessor().GetPlayerMP();
if (_local1 < ipMagicPoint) {
LC_AppUtils.GetNotifyProcessor().ShowNotifyMessage(LC_AppUtils.GetMsg(18), 16711680, true);
return(false);
}
LC_AppUtils.GetStatusProcessor().SetPlayerMP(_local1 - ipMagicPoint);
return(true);
}
function ProcessKillTarget(ipTarget) {
if (!SpendMagicPower(1)) {
return(undefined);
}
LC_AppUtils.GetAppInfo().session.con.call("manageKillTarget", null, ipTarget);
}
function ProcessDisplay(ipDisplay) {
if (!SpendMagicPower(1)) {
return(undefined);
}
LC_AppUtils.GetAppInfo().session.con.call("manageDisplay", null, ipDisplay);
}
function ProcessMove() {
if (!SpendMagicPower(1)) {
return(undefined);
}
_root.move_panel_mov._visible = !_root.move_panel_mov._visible;
}
function ProcessTweet() {
if (!SpendMagicPower(1)) {
return(undefined);
}
var _local3 = LC_AppUtils.GetAppInfo().appdata.area_id;
var _local4 = LC_AppUtils.GetStageInfo().data.stage.id;
var _local5 = LC_AppUtils.GetStageRulaInfo(_local3, _local4);
if ((_local5 == null) || (_local5.IsRulable != "1")) {
LC_AppUtils.GetNotifyProcessor().ShowNotifyMessage(LC_AppUtils.GetMsg(151), 16711680, true);
return(undefined);
}
var _local6 = "http://twitter.com/home?status=" + escape(((((("\u307D\u3044\uFF01\u304E\u3053\u307D\u3044\u3067\u30E9\u30A4\u30D6\u914D\u4FE1\u4E2D\uFF01 " + _root.g_page_url) + "?aid=") + _local3) + "&sid=") + _local4) + " #gikopoi");
getURL (_local6, "_blank");
}
function ProcessID(ipShow) {
if (!SpendMagicPower(1)) {
return(undefined);
}
LC_AppUtils.GetAppInfo().appdata.showid = ipShow;
for (var _local2 in LC_AppUtils.GetStageInfo().data.player.players) {
LC_AppUtils.GetPlayerObj(_local2).id_txt._visible = ipShow;
}
var _local2 = 1;
while (_local2 <= LC_Const.C_MAX_RADIO) {
LC_RadioProcessor.GetControlMC(_local2).control_content_mov.broadcast_id_tx._visible = ipShow;
_local2++;
}
}
function ProcessKill() {
if (!SpendMagicPower(1)) {
return(undefined);
}
LC_AppUtils.GetAppInfo().session.con.call("manageKill");
}
function ProcessEvent() {
if (!SpendMagicPower(1)) {
return(undefined);
}
LC_AppUtils.GetEventProcessor().ShowMainDialog();
}
function ProcessRula(ipSpendMP, ipRulable) {
if (!SpendMagicPower(ipSpendMP)) {
return(undefined);
}
var lMagicProcessor = this;
var _local2 = new Object();
_local2.onResult = function (ipStageLogins) {
lMagicProcessor.ProcessRulaDialog(ipStageLogins, ipRulable);
};
LC_AppUtils.GetAppInfo().session.con.call("manageStageLoginCount", _local2);
}
function ProcessRulaDialog(ipStageLogins, ipRulable) {
if (m_RulaDialog != null) {
return(undefined);
}
LC_AppUtils.AcceptEvents(false);
m_RulaDialog = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, true, {title:LC_AppUtils.GetMsg(19), contentPath:"rula_frm"});
var lMagicProcessor = this;
var _local17 = new Object();
_local17.handleEvent = function (ipEventObj) {
if (ipEventObj.type == "complete") {
ipEventObj.target.content.stage_info_spd.onLoad = function () {
var _local4 = ipEventObj.target.content.stage_info_spd;
var _local13 = new Object();
_local13.change = function (ipSpreadObj) {
ipEventObj.target.content.jump_bt.enabled = true;
};
_local4.addEventListener("change", _local13);
_local4.addColumn(LC_AppUtils.GetMsg(20));
_local4.addColumn(LC_AppUtils.GetMsg(21));
_local4.addColumn(LC_AppUtils.GetMsg(150));
_local4.getColumnAt(0).width = 200;
_local4.getColumnAt(1).width = 70;
_local4.getColumnAt(2).width = 200;
for (var _local12 in ipStageLogins) {
if ((_local12 != null) && (_local12 != undefined)) {
if (_local12.indexOf("test") != 0) {
var _local2 = "";
var _local1 = lMagicProcessor.GetStageNodeFromID(_local12);
if (_local1 != null) {
_local2 = _local1.attributes.name;
var _local3 = null;
if (LC_AppUtils.GetMsg(20) == "\u30B9\u30C6\u30FC\u30B8\u540D") {
_local3 = {\u30B9\u30C6\u30FC\u30B8\u540D:_local2, \u4EBA\u6570:ipStageLogins[_local12].LoginCount, \u914D\u4FE1\u8005:ipStageLogins[_local12].Broadcaster, node:_local1};
} else if (LC_AppUtils.GetMsg(20) == "AreaName") {
_local3 = {AreaName:_local2, Users:ipStageLogins[_local12].LoginCount, DJ:ipStageLogins[_local12].Broadcaster, node:_local1};
}
_local4.addItem(_local3);
}
}
}
}
_local4.sortItemsBy(LC_AppUtils.GetMsg(20), "ASC");
};
ipEventObj.target.content.jump_bt.onLoad = function () {
ipEventObj.target.content.jump_bt._visible = ipRulable;
ipEventObj.target.content.jump_bt.enabled = false;
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lMagicProcessor.DoRula(ipEventObj.target.content.stage_info_spd.selectedItem.node);
lMagicProcessor.RemoveRulaDialog();
};
ipEventObj.target.content.jump_bt.addEventListener("click", _local1);
ipEventObj.target.content.jump_bt.label = LC_AppUtils.GetMsg(78);
};
ipEventObj.target.content.cancel_bt.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lMagicProcessor.RemoveRulaDialog();
};
ipEventObj.target.content.cancel_bt.addEventListener("click", _local1);
ipEventObj.target.content.cancel_bt.label = LC_AppUtils.GetMsg(69);
};
ipEventObj.target.setSize(LC_Const.C_RULA_DIALOG_WIDTH, LC_Const.C_RULA_DIALOG_HEIGHT);
ipEventObj.target._x = (LC_Const.C_STAGE_VIEW_WIDTH - LC_Const.C_RULA_DIALOG_WIDTH) / 2;
ipEventObj.target._y = (LC_Const.C_STAGE_VIEW_HEIGHT - LC_Const.C_RULA_DIALOG_HEIGHT) / 2;
}
};
m_RulaDialog.addEventListener("complete", _local17);
}
function DoRula(ipStageNode) {
var _local4 = (LC_AppUtils.GetAppInfo().power.admin || (LC_AppUtils.GetAppInfo().power.gm)) || (LC_AppUtils.GetAppInfo().power.is_dark);
if ((ipStageNode.attributes.rulable == "0") && (!_local4)) {
LC_AppUtils.GetNotifyProcessor().ShowNotifyMessage(LC_AppUtils.GetMsg(22), 16711680, true);
} else if (LC_AppUtils.GetStageInfo().data.stage.id == ipStageNode.attributes.sid) {
LC_AppUtils.GetNotifyProcessor().ShowNotifyMessage(LC_AppUtils.GetMsg(22), 16711680, true);
} else {
var _local3 = ipStageNode.attributes.rula_dir;
var _local8 = ipStageNode.attributes.rula_x;
var _local7 = ipStageNode.attributes.rula_y;
var _local5 = "";
var _local6 = LC_AppUtils.GetStageInfo().data.player.players[LC_AppUtils.GetPlayerID()].message_position;
LC_AppUtils.GetAppInfo().session.con.call("manageRula", null);
_root.DestoryStage();
_root.CreateAndLoginToStage("sea_city", ipStageNode.attributes.sid, _local5, _local3, _local8, _local7, _local6);
}
}
function RemoveRulaDialog() {
if (m_RulaDialog == null) {
return(undefined);
}
m_RulaDialog.deletePopUp();
LC_AppUtils.AcceptEvents(true);
m_RulaDialog = null;
}
function GetStageNodeFromID(ipSID) {
var _local4 = LC_AppUtils.GetAppInfo().appdata.stage_xml.firstChild;
var _local2 = _local4.firstChild;
while (_local2 != null) {
if (_local2.attributes.aid == LC_AppUtils.GetAppInfo().appdata.area_id) {
var _local1 = _local2.firstChild;
while (_local1 != null) {
if (_local1.attributes.sid == ipSID) {
return(_local1);
}
_local1 = _local1.nextSibling;
}
}
_local2 = _local2.nextSibling;
}
return(null);
}
}
Symbol 2576 MovieClip [__Packages.LC_LoginInfoUtils] Frame 0
class LC_LoginInfoUtils
{
function LC_LoginInfoUtils () {
}
static function GetUseLoginInfoFromCookie() {
var _local1 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_LOGIN_COOKIE_NAME);
return(_local1.data.uselogininfo == "1");
}
static function SetUseLoginInfoToCookie(ipUseLoginInfo) {
var _local1 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_LOGIN_COOKIE_NAME);
if (ipUseLoginInfo) {
_local1.data.uselogininfo = "1";
} else {
_local1.data.uselogininfo = "0";
}
_local1.flush();
}
static function GetUserNameFromCookie() {
var _local2 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_LOGIN_COOKIE_NAME);
var _local1 = LC_Crypt.GetDecodedText(LC_Const.C_LOGIN_COOKIE_CRYPT_SEED, _local2.data.login_username);
if (_local1.length > 20) {
_local1 = _local1.substr(0, 20);
}
return(_local1);
}
static function SetUserNameToCookie(ipUserName) {
var _local1 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_LOGIN_COOKIE_NAME);
_local1.data.login_username = LC_Crypt.GetEncodedText(LC_Const.C_LOGIN_COOKIE_CRYPT_SEED, ipUserName);
}
static function GetPasswordFromCookie() {
var _local2 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_LOGIN_COOKIE_NAME);
var _local1 = LC_Crypt.GetDecodedText(LC_Const.C_LOGIN_COOKIE_CRYPT_SEED, _local2.data.login_password);
if (_local1.length > 20) {
_local1 = _local1.substr(0, 20);
}
return(_local1);
}
static function SetPasswordToCookie(ipPassword) {
var _local1 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_LOGIN_COOKIE_NAME);
_local1.data.login_password = LC_Crypt.GetEncodedText(LC_Const.C_LOGIN_COOKIE_CRYPT_SEED, ipPassword);
}
static function GetCharacterIDFromCookie() {
var _local2 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_LOGIN_COOKIE_NAME);
var _local1 = _local2.data.login_characterid;
if ((_local1 != undefined) && (_local1 != null)) {
return(_local1);
}
return(1);
}
static function SetCharacterIDToCookie(ipCharacterID) {
var _local1 = SharedObject.getLocal(LC_AppUtils.GetAppInfo().relationdata.app_name + LC_Const.C_LOGIN_COOKIE_NAME);
_local1.data.login_characterid = ipCharacterID;
}
}
Symbol 2577 MovieClip [__Packages.LC_StatusProcessor] Frame 0
class LC_StatusProcessor
{
var m_AppInfoObj;
function LC_StatusProcessor (ipAppInfoObj) {
m_AppInfoObj = ipAppInfoObj;
}
function Initialize() {
_root.status_window_mov.status_window_content_mov.area_stat.text = LC_AppUtils.GetMsg(57);
_root.status_window_mov.status_window_content_mov.stage_stat.text = LC_AppUtils.GetMsg(58);
_root.status_window_mov.status_window_content_mov.name_stat.text = LC_AppUtils.GetMsg(59);
_root.status_window_mov.status_window_content_mov.hp_stat.text = LC_AppUtils.GetMsg(60);
_root.status_window_mov.status_window_content_mov.mp_stat.text = LC_AppUtils.GetMsg(61);
_root.status_window_mov.status_window_content_mov.login_stat.text = LC_AppUtils.GetMsg(62);
}
function SetAreaName(ipValue) {
m_AppInfoObj.status.area_name = ipValue;
_root.status_window_mov.status_window_content_mov.area_tx.text = ipValue;
}
function GetAreaName() {
return(m_AppInfoObj.status.area_name);
}
function SetStageName(ipValue) {
m_AppInfoObj.status.stage_name = ipValue;
_root.status_window_mov.status_window_content_mov.stage_tx.text = ipValue;
}
function GetStageName() {
return(m_AppInfoObj.status.stage_name);
}
function SetPlayerHP(ipValue) {
m_AppInfoObj.status.hp = ipValue;
_root.status_window_mov.status_window_content_mov.hp_tx.text = ipValue;
if (parseInt(ipValue) > 0) {
_root.status_window_mov.status_window_content_mov.hp_tx.textColor = 16777215 /* 0xFFFFFF */;
} else {
_root.status_window_mov.status_window_content_mov.hp_tx.textColor = 16711680 /* 0xFF0000 */;
}
}
function GetPlayerHP() {
return(m_AppInfoObj.status.hp);
}
function SetPlayerMP(ipValue) {
m_AppInfoObj.status.mp = ipValue;
_root.status_window_mov.status_window_content_mov.mp_tx.text = ipValue;
}
function GetPlayerMP() {
return(m_AppInfoObj.status.mp);
}
function SetPlayerName(ipValue) {
m_AppInfoObj.player.name = ipValue;
_root.status_window_mov.status_window_content_mov.name_tx.text = ipValue.split(newline).join("");
}
function GetPlayerName() {
return(m_AppInfoObj.player.name);
}
function SetLoginCount(ipValue) {
m_AppInfoObj.status.login_count = ipValue;
if (_root.status_window_mov != undefined) {
_root.status_window_mov.status_window_content_mov.login_tx.text = ipValue;
}
}
function GetLoginCount() {
return(m_AppInfoObj.status.login_count);
}
function ShowStatus(ipShow) {
_root.status_window_mov.status_window_content_mov._visible = ipShow;
}
function ShowAllStatusWindow(ipShow) {
_root.status_window_mov._visible = ipShow;
}
}
Symbol 2578 MovieClip [__Packages.LC_LoginPanelUtils] Frame 0
class LC_LoginPanelUtils
{
function LC_LoginPanelUtils () {
}
static function GetLoginPanelMovie() {
return(_root.loginpanel_mc);
}
static function GetLoginButton() {
return(GetLoginPanelMovie().login_bt);
}
static function GetMessageTextBox() {
return(GetLoginPanelMovie().message_txt);
}
static function SetLogic() {
GetLoginButton().onPress = function () {
_root.connectToServer();
};
}
static function Build() {
LC_AppUtils.CreateResourceClip(_root, LC_AppUtils.GetAppInfo().panel.login_panel, "loginpanel_mc", LC_DepthUtils.GetEmptyDepth(_root, 0, 1000000), 0, 0, null);
_root.char_select_list_mc.swapDepths(_root.loginpanel_mc);
_root.username_txt.swapDepths(_root.char_select_list_mc);
_root.passwd_txt.swapDepths(_root.username_txt);
_root.loginpanel_mc.swapDepths(_root.shift_enter_btn);
_root.shift_enter_btn._x = -10;
_root.shift_enter_btn._y = -10;
_root.shift_enter_btn._width = 1;
_root.shift_enter_btn._height = 1;
_root.sample_loginpanel_mc._visible = false;
_root.save_option_mc.save_option_txt.textColor = LC_AppUtils.GetAppInfo().panel.login_panel_text_color;
_root.char_select_list_mc.char_select_list_name_txt.textColor = LC_AppUtils.GetAppInfo().panel.login_panel_text_color;
_root.save_option_mc.save_option_txt.text = LC_AppUtils.GetMsg(81);
SetLogic();
}
static function Hide() {
_root.loginpanel_mc._visible = false;
_root.char_select_list_mc._visible = false;
_root.username_txt._visible = false;
_root.passwd_txt._visible = false;
_root.shift_enter_btn._visible = false;
}
}
Symbol 2579 MovieClip [__Packages.LC_StageInfo] Frame 0
class LC_StageInfo
{
var session, data, option;
function LC_StageInfo () {
session = new Object();
session.so = null;
data = new Object();
data.stage = new Object();
data.stage.id = -1;
data.loadwait_interval = null;
data.panel = new Object();
data.panel.var_id = 0;
data.panel.var_id_loaded = 0;
data.panel.vars = new Array();
data.panel.xpanels = new Array();
data.player = new Object();
data.player.players = new Array();
data.player.messages = new Array();
data.viewpoint = new Object();
data.viewpoint.x = 0;
data.viewpoint.y = 0;
data.bgmsound = new Object();
data.bgmsound.name = "";
data.bgmsound.sound_obj = null;
data.radio = new Object();
data.radio.radio_enable = false;
data.radio.radio_stream = null;
data.radio.recieve_radio = false;
data.radio.recieving = false;
data.radio.broadcasting = false;
data.radio.broadcaster_id = -1;
data.radio2 = new Object();
data.radio2.radio_enable = false;
data.radio2.radio_stream = null;
data.radio2.recieve_radio = false;
data.radio2.recieving = false;
data.radio2.broadcasting = false;
data.radio2.broadcaster_id = -1;
data.radio3 = new Object();
data.radio3.radio_enable = false;
data.radio3.radio_stream = null;
data.radio3.recieve_radio = false;
data.radio3.recieving = false;
data.radio3.broadcasting = false;
data.radio3.broadcaster_id = -1;
data.video = new Object();
data.video.radio_enable = false;
data.video.radio_stream = null;
data.video.recieve_radio = false;
data.video.recieving = false;
data.video.broadcasting = false;
data.video.broadcaster_id = -1;
data.adv = new Object();
data.adv.first_log_msg_alive = false;
data.swf = new Object();
data.swf.top = null;
option = new Object();
option.anonymous = false;
option.panel = new Object();
option.panel.x_count = 0;
option.panel.y_count = 0;
option.panel.init_x = 0;
option.panel.init_y = 0;
option.panel.height = 40;
option.panel.width = 80;
option.panel.border_color = 0;
option.panel.move_per_frame_x = 0;
option.panel.move_per_frame_y = 0;
}
function Destroy() {
session.so = null;
data.panel.vars = null;
data.panel.xpanels = null;
data.player.players = null;
data.player.messages = null;
data.bgmsound.sound_obj = null;
}
}
Symbol 2580 MovieClip [__Packages.LC_PlayerProcessor] Frame 0
class LC_PlayerProcessor
{
var m_AppInfoObj, m_StageInfoObj, m_StageMovie, m_IgnoreProcessor;
function LC_PlayerProcessor (ipAppInfoObj, ipStageInfoObj, ipStageMovie, ipIgnoreProcessor) {
m_AppInfoObj = ipAppInfoObj;
m_StageInfoObj = ipStageInfoObj;
m_StageMovie = ipStageMovie;
m_IgnoreProcessor = ipIgnoreProcessor;
}
function MakeSurePlayerClip(pPlayerIndex) {
if ((m_StageInfoObj.data.player.players[pPlayerIndex] != null) && (m_StageInfoObj.data.player.players[pPlayerIndex] != undefined)) {
return(undefined);
}
CreatePlayerClip(pPlayerIndex);
}
function CreatePlayerClip(pPlayerIndex) {
m_StageInfoObj.data.player.players[pPlayerIndex] = m_StageMovie.attachMovie("player_mov", LC_Const.C_PLAYER_ID_HEADER + pPlayerIndex, LC_Const.C_PLAYER_DEPTH + pPlayerIndex, {_x:0, _y:0});
m_StageInfoObj.data.player.players[pPlayerIndex].player_action_layer_mc.cacheAsBitmap = true;
InitPlayer(pPlayerIndex);
m_StageInfoObj.data.player.messages[pPlayerIndex] = m_StageMovie.attachMovie("message_mov", LC_Const.C_MESSAGE_ID_HEADER + pPlayerIndex, LC_Const.C_MESSAGE_DEPTH + pPlayerIndex, {_x:0, _y:0});
InitMessageBox(pPlayerIndex);
}
function InitPlayer(pPlayerIndex) {
var _local3 = m_StageInfoObj.data.player.players[pPlayerIndex];
_local3.move_to_x = -1;
_local3.move_to_y = -1;
_local3.virtual_x = -1;
_local3.virtual_y = -1;
_local3.power = LC_Const.C_POWER_NONE;
_local3.moving_flag = false;
_local3.sit_flag = false;
_local3.direction_flag = 0;
_local3.depth_flag = false;
_local3.action_flag = -1;
_local3.warp_flag = false;
_local3.message_position = -1;
_local3.msg_move = new Object();
_local3.msg_move.flag = false;
_local3.msg_move.virtual_x = -1;
_local3.msg_move.virtual_y = -1;
_local3.msg_direction = new Object();
_local3.msg_direction.flag = false;
_local3.msg_direction.direction_flag = -1;
var _local4 = 1;
while (_local4 <= LC_Const.C_MAX_RADIO) {
LC_AppUtils.GetRadioProcessor(_local4).SetPlayerListenAllowed(pPlayerIndex, _local4, false);
LC_AppUtils.GetRadioProcessor(_local4).ShowUserListenAllowedButton(_local3, LC_RadioProcessor.GetInfo(_local4).radio_enable);
_local4++;
}
_local4 = 1;
while (_local4 <= LC_Const.C_MAX_RADIO) {
LC_RadioProcessor.GetPlayerAllowedButton(_local3, _local4).cacheAsBitmap = true;
LC_RadioProcessor.GetPlayerNotAllowedButton(_local3, _local4).cacheAsBitmap = true;
_local4++;
}
_local3._visible = false;
_local3._x = -1;
_local3._y = -1;
_local3._visible = false;
_local3.id_txt.autoSize = "center";
_local3.id_txt.text = "ID: " + pPlayerIndex;
_local3.id_txt._visible = LC_AppUtils.GetAppInfo().appdata.showid;
_local3.name_txt.autoSize = "center";
_local3.name_txt.text = "";
_local3.player_action_layer_mc.player_action_mc.gotoAndPlay(LC_FrameNameUtils.GetFrameNameFromDirectionFlag(_local3.sit_flag, LC_Const.C_DIREC_LEFT));
_local3.focusEnabled = true;
_local3.tabEnabled = true;
_local3._focusrect = false;
if (pPlayerIndex != LC_AppUtils.GetPlayerID()) {
_local3.player_action_layer_mc.onPress = function () {
};
var lIgnoreProcessorRef = m_IgnoreProcessor;
_local3.onMouseDown = function () {
if ((_root._xmouse <= LC_Const.C_STAGE_VIEW_WIDTH) && (_root._ymouse <= LC_Const.C_STAGE_VIEW_HEIGHT)) {
if (this.player_action_layer_mc.hitTest(_root._xmouse, _root._ymouse, true)) {
if (!LC_AppUtils.IsPointerOnControlPanel(_root._xmouse, _root._ymouse)) {
lIgnoreProcessorRef.ManagePlayerClick(pPlayerIndex);
}
}
}
};
}
if (pPlayerIndex != LC_AppUtils.GetPlayerID()) {
_local4 = 1;
while (_local4 <= LC_Const.C_MAX_RADIO) {
if (LC_AppUtils.GetRadioProcessor(_local4).IsBroadcasting()) {
LC_AppUtils.GetRadioProcessor(_local4).SetListenAllowedMarkClickable(pPlayerIndex, true);
}
_local4++;
}
}
}
function DestroyPlayerProperty(pPlayerIndex) {
m_StageInfoObj.data.player.players[pPlayerIndex].msg_move = null;
m_StageInfoObj.data.player.players[pPlayerIndex].msg_direction = null;
}
function InitMessageBox(pPlayerIndex) {
var _local2 = m_StageInfoObj.data.player.messages[pPlayerIndex];
_local2.msg_parts = new Array();
_local2.msg_parts[LC_Const.C_DIREC_LEFT] = _local2.parts_left;
_local2.msg_parts[LC_Const.C_DIREC_RIGHT] = _local2.parts_right;
_local2.msg_parts[LC_Const.C_DIREC_UP] = _local2.parts_up;
_local2.msg_parts[LC_Const.C_DIREC_DOWN] = _local2.parts_down;
_local2.msg_parts[LC_Const.C_DIREC_LEFT].cacheAsBitmap = true;
_local2.msg_parts[LC_Const.C_DIREC_RIGHT].cacheAsBitmap = true;
_local2.msg_parts[LC_Const.C_DIREC_UP].cacheAsBitmap = true;
_local2.msg_parts[LC_Const.C_DIREC_DOWN].cacheAsBitmap = true;
_local2._visible = false;
_local2.message_txt.background = 16777215 /* 0xFFFFFF */;
_local2.message_txt.autoSize = true;
_local2.message_txt.wordWrap = true;
_local2.message_txt.text = "";
_local2.message_txt.cacheAsBitmap = true;
}
function DestroyMessageBoxProperty(pPlayerIndex) {
m_StageInfoObj.data.player.messages[pPlayerIndex].msg_parts = null;
}
function RemovePlayerClip(pPlayerIndex) {
if ((m_StageInfoObj.data.player.players[pPlayerIndex] != null) && (m_StageInfoObj.data.player.players[pPlayerIndex] != undefined)) {
m_StageInfoObj.data.player.players[pPlayerIndex].removeMovieClip();
DestroyPlayerProperty(pPlayerIndex);
m_StageInfoObj.data.player.players[pPlayerIndex] = null;
m_StageInfoObj.data.player.messages[pPlayerIndex].removeMovieClip();
DestroyMessageBoxProperty(pPlayerIndex);
m_StageInfoObj.data.player.messages[pPlayerIndex] = null;
}
}
function RemoveAllPlayerClip(pPlayerIndex) {
for (var _local2 in m_StageInfoObj.data.player.players) {
RemovePlayerClip(_local2);
}
}
}
Symbol 2581 MovieClip [__Packages.LC_MessageScoreUtils] Frame 0
class LC_MessageScoreUtils
{
function LC_MessageScoreUtils () {
}
static function GetMessageScore(ipMessage) {
if (ipMessage.indexOf("\u3046\u3093\u3053") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u30A6\u30F3\u30B3") != -1) {
return(-1);
}
if (ipMessage.indexOf("\uFF73\uFF9D\uFF7A") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u307E\u3093\u3053") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u30DE\u30F3\u30B3") != -1) {
return(-1);
}
if (ipMessage.indexOf("\uFF8F\uFF9D\uFF7A") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u3061\u3093\u3053") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u30C1\u30F3\u30B3") != -1) {
return(-1);
}
if (ipMessage.indexOf("\uFF81\uFF9D\uFF7A") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u6B7B\u306D") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u6C0F\u306D") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u81A3") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u5C3F\u9053") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u30A2\u30CA\u30EB") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u304A\u307E\u3093\u3061\u3087") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u30AA\u30DE\u30F3\u30C1\u30E7") != -1) {
return(-1);
}
if (ipMessage.indexOf("\uFF75\uFF8F\uFF9D\uFF81\uFF6E") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u3050\u3075\u3075") != -1) {
return(-1);
}
if (ipMessage.indexOf("\u3082\u304D\u3085\u3082\u304D\u3085") != -1) {
return(1);
}
if (ipMessage.indexOf("\u3057\u3047\u304D\u3057\u3047\u304D") != -1) {
return(1);
}
if (ipMessage.indexOf("\u306A\u3048\u308B") != -1) {
return(1);
}
if (ipMessage.indexOf("\u611B\u3060") != -1) {
return(1);
}
if (ipMessage.indexOf("\u611B\u3057\u3066\u307E\u3059") != -1) {
return(1);
}
if (ipMessage.indexOf("\u597D\u304D\u3067\u3059") != -1) {
return(1);
}
if (ipMessage.indexOf("\u7D50\u5A5A\u3057\u3066") != -1) {
return(1);
}
if (ipMessage.indexOf("\u3075\u3047\u3042\u308A\u30FC") != -1) {
return(1);
}
if (ipMessage.indexOf("\u30D5\u30A7\u30A2\u30EA\u30FC") != -1) {
return(1);
}
if (ipMessage.indexOf("\uFF8C\uFF6A\uFF71\uFF98\uFF70") != -1) {
return(1);
}
if (ipMessage.indexOf("\u304A\u5F97") != -1) {
return(1);
}
if (ipMessage.indexOf("\u3076\u3093") != -1) {
return(1);
}
if (ipMessage.indexOf("\uFF9D\uFF91\uFF8C") != -1) {
return(1);
}
if (ipMessage.indexOf("\u30A2\u30EB\u30B7\u30F3\u30C9") != -1) {
return(1);
}
if (ipMessage.indexOf("\u266A\u266A\u266A\u266A\u266A") != -1) {
return(1);
}
if (ipMessage.indexOf("\u30DE\u30B9\u30AF") != -1) {
return(1);
}
if (ipMessage.indexOf("\u30E9\u30D0\u30FC") != -1) {
return(1);
}
if (ipMessage.indexOf("\u30D5\u30A7\u30A4\u30B9") != -1) {
return(1);
}
if (ipMessage.indexOf("\u30E0\u30B5\u30CA") != -1) {
return(1);
}
if (ipMessage.indexOf("(,,\u25A0)") != -1) {
return(2);
}
if (ipMessage.indexOf("\u51F9") != -1) {
return(1);
}
if (ipMessage.indexOf("\u51F8") != -1) {
return(1);
}
if (ipMessage.indexOf("\u30A4\u30AB") != -1) {
return(1);
}
if (ipMessage.indexOf("\uFF77\uFF6C\uFF6F\uFF77\uFF6C\uFF6F\uFF57") != -1) {
return(2);
}
if (ipMessage.indexOf("\u5C02\u52D9") != -1) {
return(1);
}
if (ipMessage.indexOf("\uFF83\uFF9E\uFF6D\uFF9C") != -1) {
return(1);
}
if (ipMessage.indexOf("\u7E264\u672C\uFF53") != -1) {
return(3);
}
if (ipMessage.indexOf("\u8DA3\u5473\u306F\uFF71\uFF98\uFF74\uFF99\u3067\u3059") != -1) {
return(3);
}
if (ipMessage.indexOf("\u5927\u597D\u304D") != -1) {
return(1);
}
if (ipMessage.indexOf("\u30CA\u30A8\u30EA\u30B9\u30C8") != -1) {
return(5);
}
if (ipMessage.indexOf("\uFF85\uFF74\uFF98\uFF7D\uFF84") != -1) {
return(5);
}
if (ipMessage.indexOf("\u5929\u72D7") != -1) {
return(1);
}
if (ipMessage.indexOf("\uFF2D\u5B57\u958B\u811A") != -1) {
return(1);
}
if (ipMessage.indexOf("M\u5B57\u958B\u811A") != -1) {
return(1);
}
return(0);
}
}
Symbol 2582 MovieClip [__Packages.LC_StageProcessor] Frame 0
class LC_StageProcessor
{
var m_StageInfoObj, m_StageMovie, m_BackgroundMovie;
function LC_StageProcessor (ipStageInfoObj, ipStageMovie) {
m_StageInfoObj = ipStageInfoObj;
m_StageMovie = ipStageMovie;
m_BackgroundMovie = m_StageMovie.createEmptyMovieClip("__BackgroundMovie", LC_Const.C_SYS_BACKGROUND);
m_BackgroundMovie.focusEnabled = true;
m_BackgroundMovie.tabEnabled = true;
m_BackgroundMovie._focusrect = false;
m_BackgroundMovie.onMouseDown = function () {
Selection.setFocus(this);
};
}
function MakeStagePanelArray(ipStageInfoNode) {
var _local7 = ipStageInfoNode.attributes.x_size;
var _local6 = ipStageInfoNode.attributes.y_size;
var _local4 = 0;
while (_local4 < _local7) {
m_StageInfoObj.data.panel.xpanels[_local4] = new Array();
var _local3 = 0;
while (_local3 < _local6) {
m_StageInfoObj.data.panel.xpanels[_local4][_local3] = new Array();
_local3++;
}
_local4++;
}
m_StageInfoObj.option.panel.x_count = _local7;
m_StageInfoObj.option.panel.y_count = _local6;
m_StageInfoObj.option.panel.init_x = ipStageInfoNode.attributes.init_x;
m_StageInfoObj.option.panel.init_y = ipStageInfoNode.attributes.init_y;
m_StageInfoObj.option.panel.height = parseInt(ipStageInfoNode.attributes.panel_height);
m_StageInfoObj.option.panel.width = parseInt(ipStageInfoNode.attributes.panel_width);
m_StageInfoObj.option.panel.border_color = ipStageInfoNode.attributes.border_color;
m_StageInfoObj.data.bgmsound.name = ipStageInfoNode.attributes.bgm_sound;
m_StageInfoObj.option.anonymous = ipStageInfoNode.attributes.anonymous == "1";
LC_RadioProcessor.GetInfo(1).radio_enable = ipStageInfoNode.attributes.radio == "1";
LC_RadioProcessor.GetInfo(2).radio_enable = ipStageInfoNode.attributes.radio2 == "1";
LC_RadioProcessor.GetInfo(3).radio_enable = ipStageInfoNode.attributes.video == "1";
LC_RadioProcessor.GetInfo(4).radio_enable = ipStageInfoNode.attributes.radio3 == "1";
var _local8 = 10;
switch (ipStageInfoNode.attributes.speed) {
case "0.5" :
_local8 = 20;
break;
case "1" :
_local8 = 10;
break;
case "2" :
_local8 = 5;
}
m_StageInfoObj.option.panel.move_per_frame_x = (m_StageInfoObj.option.panel.width / 2) / _local8;
m_StageInfoObj.option.panel.move_per_frame_y = (m_StageInfoObj.option.panel.height / 2) / _local8;
var _local9 = GetXMLValue("", ipStageInfoNode.attributes.top_swf);
if (_local9 != "") {
m_StageInfoObj.data.swf.top = _root.createEmptyMovieClip(LC_Const.C_SWF_TOP_VARIABLE_NAME, _root.getNextHighestDepth());
m_StageInfoObj.data.swf.top.loadMovie(_local9);
m_StageInfoObj.data.swf.top._lockroot = true;
}
}
function MakeStageBackground(ipStageInfoNode) {
var _local4 = m_StageInfoObj.option.panel.x_count - 1;
var _local8 = m_StageInfoObj.option.panel.y_count - 1;
var _local11 = (GetXFromVirtualAxis(_local4, 0) - GetXFromVirtualAxis(0, _local8)) + m_StageInfoObj.option.panel.width;
var _local9 = (GetYFromVirtualAxis(_local4, _local8) - GetYFromVirtualAxis(0, 0)) + m_StageInfoObj.option.panel.height;
var _local16 = ((m_StageInfoObj.option.panel.width / 2) * (parseInt(LC_Const.C_VIEWPOINT_SHIFT_MAX_X) + 2)) * 2;
var _local15 = (m_StageInfoObj.option.panel.height * (parseInt(LC_Const.C_VIEWPOINT_SHIFT_MAX_Y) + 2)) * 2;
var _local7 = (parseInt(_local11) + parseInt(_local16)) + parseInt(LC_Const.C_STAGE_VIEW_WIDTH);
var _local10 = (parseInt(_local9) + parseInt(_local15)) + parseInt(LC_Const.C_STAGE_VIEW_HEIGHT);
var _local14 = GetXFromVirtualAxis(_local4, 0) - GetXFromVirtualAxis(0, 0);
var _local6 = (parseInt(m_StageInfoObj.option.panel.init_x) + parseInt(_local14)) - (parseInt(_local11) / 2);
var _local5 = parseInt(m_StageInfoObj.option.panel.init_y) + (parseInt(_local9) / 2);
var _local2 = _local6 - (_local7 / 2);
var _local12 = parseInt(_local6) + (parseInt(_local7) / 2);
var _local3 = _local5 - (_local10 / 2);
var _local13 = parseInt(_local5) + (parseInt(_local10) / 2);
m_BackgroundMovie.beginFill(ipStageInfoNode.attributes.bg_color, 100);
m_BackgroundMovie.lineStyle(1, ipStageInfoNode.attributes.bg_color, 100);
m_BackgroundMovie.moveTo(_local2, _local3);
m_BackgroundMovie.lineTo(_local12, _local3);
m_BackgroundMovie.lineTo(_local12, _local13);
m_BackgroundMovie.lineTo(_local2, _local13);
m_BackgroundMovie.lineTo(_local2, _local3);
m_BackgroundMovie.endFill();
}
function MakeStagePanel(ipStageInfoNode) {
var _local2 = m_StageInfoObj.option.panel.x_count - 1;
var _local3 = m_StageInfoObj.option.panel.y_count - 1;
m_BackgroundMovie.beginFill(ipStageInfoNode.attributes.panel_color, 100);
m_BackgroundMovie.lineStyle(1, m_StageInfoObj.option.panel.border_color, 100);
m_BackgroundMovie.moveTo(GetXFromVirtualAxis(0, 0), GetYFromVirtualAxis(0, 0));
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(_local2, 0) + (m_StageInfoObj.option.panel.width / 2), GetYFromVirtualAxis(_local2, 0) + (m_StageInfoObj.option.panel.height / 2));
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(_local2, _local3), GetYFromVirtualAxis(_local2, _local3) + m_StageInfoObj.option.panel.height);
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(0, _local3) - (m_StageInfoObj.option.panel.width / 2), GetYFromVirtualAxis(0, _local3) + (m_StageInfoObj.option.panel.height / 2));
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(0, 0), GetYFromVirtualAxis(0, 0));
m_BackgroundMovie.endFill();
}
function MakeStageWall(ipStageInfoNode) {
var _local2 = ipStageInfoNode.attributes.x_size;
var _local4 = ipStageInfoNode.attributes.y_size;
var _local3 = ipStageInfoNode.attributes.wall_height;
m_BackgroundMovie.beginFill(ipStageInfoNode.attributes.wall_color_left, 100);
m_BackgroundMovie.lineStyle(1, m_StageInfoObj.option.panel.border_color, 100);
m_BackgroundMovie.moveTo(GetXFromVirtualAxis(0, 0), GetYFromVirtualAxis(0, 0));
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(0, _local4), GetYFromVirtualAxis(0, _local4));
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(0, _local4), GetYFromVirtualAxis(0, _local4) - _local3);
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(0, 0), GetYFromVirtualAxis(0, 0) - _local3);
m_BackgroundMovie.endFill();
m_BackgroundMovie.beginFill(ipStageInfoNode.attributes.wall_color_right, 100);
m_BackgroundMovie.lineStyle(1, m_StageInfoObj.option.panel.border_color, 100);
m_BackgroundMovie.moveTo(GetXFromVirtualAxis(0, 0), GetYFromVirtualAxis(0, 0));
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(_local2, 0), GetYFromVirtualAxis(_local2, 0));
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(_local2, 0), GetYFromVirtualAxis(_local2, 0) - _local3);
m_BackgroundMovie.lineTo(GetXFromVirtualAxis(0, 0), GetYFromVirtualAxis(0, 0) - _local3);
m_BackgroundMovie.endFill();
}
function MakeFloorLines(ipStageInfoNode) {
var _local8 = ipStageInfoNode.attributes.floor_border_color;
if (_local8 != "") {
var _local6 = ipStageInfoNode.attributes.x_size;
var _local7 = ipStageInfoNode.attributes.y_size;
var _local4 = (m_StageInfoObj.option.panel.width / 3) / 2;
var _local5 = (m_StageInfoObj.option.panel.height / 3) / 2;
m_BackgroundMovie.beginFill();
var _local3 = 0;
while (_local3 < _local7) {
var _local2 = 0;
while (_local2 < 3) {
if ((_local3 != 0) || (_local2 != 0)) {
m_BackgroundMovie.lineStyle(0.5, _local8, 100);
m_BackgroundMovie.moveTo(GetXFromVirtualAxis(0, _local3) - (_local4 * _local2), GetYFromVirtualAxis(0, _local3) + (_local5 * _local2));
m_BackgroundMovie.lineTo((GetXFromVirtualAxis(_local6 - 1, _local3) + (m_StageInfoObj.option.panel.width / 2)) - (_local4 * _local2), (GetYFromVirtualAxis(_local6 - 1, _local3) + (m_StageInfoObj.option.panel.height / 2)) + (_local5 * _local2));
}
_local2++;
}
_local3++;
}
_local3 = 0;
while (_local3 < _local6) {
var _local2 = 0;
while (_local2 < 3) {
if ((_local3 != 0) || (_local2 != 0)) {
m_BackgroundMovie.lineStyle(0.5, _local8, 100);
m_BackgroundMovie.moveTo(GetXFromVirtualAxis(_local3, 0) + (_local4 * _local2), GetYFromVirtualAxis(_local3, 0) + (_local5 * _local2));
m_BackgroundMovie.lineTo((GetXFromVirtualAxis(_local3, _local7 - 1) - (m_StageInfoObj.option.panel.width / 2)) + (_local4 * _local2), (GetYFromVirtualAxis(_local3, _local7 - 1) + (m_StageInfoObj.option.panel.height / 2)) + (_local5 * _local2));
}
_local2++;
}
_local3++;
}
m_BackgroundMovie.endFill();
}
}
function MakePanel(ipVirtualX, ipVirtualY, ipPanelInfo) {
var lStageInfoObj = m_StageInfoObj;
var lStageMovie = m_StageMovie;
var lX = GetXFromVirtualAxis(ipVirtualX, ipVirtualY);
var lY = GetYFromVirtualAxis(ipVirtualX, ipVirtualY);
var _local6 = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_USE_BC]) != "0";
var _local5 = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_BIND]);
var _local9 = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_OBJECT_BOTTOM]);
if (_local9 != "") {
var _local10 = LC_DepthUtils.GetEmptyDepth(m_StageMovie, LC_DepthUtils.GetBottomObjectPanelLayerDepthMin(ipVirtualX, ipVirtualY), LC_DepthUtils.GetBottomObjectPanelLayerDepthMax(ipVirtualX, ipVirtualY));
var lBottomVarID = lStageInfoObj.data.panel.var_id;
lStageInfoObj.data.panel.var_id++;
CreatePanelMovieClip(_local9, _local10, lX, lY, lBottomVarID, _local6, _local5, function (ipMovie) {
lStageInfoObj.data.panel.vars[lBottomVarID] = ipMovie;
});
}
var _local7 = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_OBJECT_TOP]);
if (_local7 != "") {
var _local10 = LC_DepthUtils.GetEmptyDepth(m_StageMovie, LC_DepthUtils.GetTopObjectPanelLayerDepthMin(ipVirtualX, ipVirtualY), LC_DepthUtils.GetTopObjectPanelLayerDepthMax(ipVirtualX, ipVirtualY));
var lTopVarID = lStageInfoObj.data.panel.var_id;
lStageInfoObj.data.panel.var_id++;
CreatePanelMovieClip(_local7, _local10, lX, lY, lTopVarID, _local6, _local5, function (ipMovie) {
lStageInfoObj.data.panel.vars[lTopVarID] = ipMovie;
});
}
var _local8 = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_OBJECT_SPECIAL]);
if (_local8 != "") {
var _local10 = LC_DepthUtils.GetEmptyDepth(m_StageMovie, LC_DepthUtils.GetTopObjectPanelLayerDepthMin(ipVirtualX, ipVirtualY), LC_DepthUtils.GetTopObjectPanelLayerDepthMax(ipVirtualX, ipVirtualY));
var lImageID = GetXMLValue(ipPanelInfo.attributes[LC_Const.XML_PANEL_IMAGE_ID]);
var lNPCID = GetXMLValue(ipPanelInfo.attributes[LC_Const.XML_PANEL_NPC_ID]);
var lSpcVarID = lStageInfoObj.data.panel.var_id;
lStageInfoObj.data.panel.var_id++;
CreatePanelMovieClip(_local8, _local10, lX, lY, lSpcVarID, _local6, _local5, function (ipMovie) {
if (lImageID != "") {
ipMovie.image_id = lImageID;
}
if (lNPCID != "") {
ipMovie.npc_id = lNPCID;
ipMovie.msg_container = lStageMovie.attachMovie("message_mov", LC_Const.C_NPC_MESSAGE_ID_HEADER + lNPCID, parseInt(LC_Const.C_NPC_MSG_DEPTH) + parseInt(lNPCID), {_x:lX + 30, _y:lY - 75});
ipMovie.msg_container._visible = false;
ipMovie.msg_container.parts_left._visible = false;
ipMovie.msg_container.parts_right._visible = false;
ipMovie.msg_container.parts_up._visible = true;
ipMovie.msg_container.parts_down._visible = false;
ipMovie.msg_container.parts_up._x = ipMovie.msg_container.parts_up._x - 1;
ipMovie.msg_container.parts_up._y = ipMovie.msg_container.parts_up._y - 10;
ipMovie.msg_container.message_txt.multiline = true;
ipMovie.msg_container.message_txt.background = 16777215 /* 0xFFFFFF */;
ipMovie.msg_container.message_txt.border = false;
ipMovie.msg_container.message_txt.autoSize = true;
ipMovie.msg_container.message_txt.wordWrap = false;
ipMovie.msg_container.message_txt.html = true;
ipMovie.msg_container.message_txt.condenseWhite = true;
}
lStageInfoObj.data.panel.vars[lSpcVarID] = ipMovie;
});
}
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_ACTION] = GetXMLValue("0", ipPanelInfo.attributes[LC_Const.XML_PANEL_ACTION]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_BARRIER_UP] = GetXMLValue("0", ipPanelInfo.attributes[LC_Const.XML_PANEL_BARRIER_UP]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_BARRIER_DOWN] = GetXMLValue("0", ipPanelInfo.attributes[LC_Const.XML_PANEL_BARRIER_DOWN]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_BARRIER_RIGHT] = GetXMLValue("0", ipPanelInfo.attributes[LC_Const.XML_PANEL_BARRIER_RIGHT]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_BARRIER_LEFT] = GetXMLValue("0", ipPanelInfo.attributes[LC_Const.XML_PANEL_BARRIER_LEFT]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_EFFECT_TOP] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_EFFECT_TOP]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_EFFECT_BOTTOM] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_EFFECT_BOTTOM]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_EFFECT_PRE_TOP] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_EFFECT_PRE_TOP]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_EFFECT_PRE_BOTTOM] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_EFFECT_PRE_BOTTOM]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_WARP_STAGE] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_WARP_STAGE]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_WARP_DIRECTION] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_WARP_DIRECTION]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_WARP_X] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_WARP_X]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_WARP_Y] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_WARP_Y]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_WARP_NAME] = GetXMLValue("", ipPanelInfo.attributes[LC_Const.XML_PANEL_WARP_NAME]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_HP_INCREASE] = GetXMLValue("0", ipPanelInfo.attributes[LC_Const.XML_PANEL_HP_INCREASE]);
lStageInfoObj.data.panel.xpanels[ipVirtualX][ipVirtualY][LC_Const.XML_PANEL_MP_INCREASE] = GetXMLValue("0", ipPanelInfo.attributes[LC_Const.XML_PANEL_MP_INCREASE]);
}
function CreatePanelMovieClip(ipMovieClipName, ipDepth, ipX, ipY, ipVarID, ipUseBitmapCache, ipBindVariableName, ipDoAfterCreate) {
var lStageInfoObj = m_StageInfoObj;
LC_AppUtils.CreateResourceClip(m_StageMovie, ipMovieClipName, LC_Const.C_PANEL_ID_HEADER + ipVarID, ipDepth, ipX, ipY + (m_StageInfoObj.option.panel.height / 2), function (ipMovie) {
ipMovie.cacheAsBitmap = ipUseBitmapCache;
ipMovie.focusEnabled = true;
ipMovie.tabEnabled = true;
ipMovie._focusrect = false;
if (ipBindVariableName != "") {
ipMovie.bind_var_name = ipBindVariableName;
}
ipDoAfterCreate(ipMovie);
lStageInfoObj.data.panel.var_id_loaded++;
});
}
function GetXMLValue(ipDefault, ipXMLNode) {
if ((ipXMLNode == undefined) || (ipXMLNode == null)) {
return(ipDefault);
}
return(ipXMLNode);
}
function ClearStage() {
m_StageMovie.clear();
if (m_StageInfoObj.data.swf.top != null) {
m_StageInfoObj.data.swf.top.unloadMovie();
m_StageInfoObj.data.swf.top = null;
}
var _local3 = 0;
while (_local3 < m_StageInfoObj.data.panel.var_id) {
if (m_StageInfoObj.data.panel.vars[_local3].IsMoviePlayer != undefined) {
m_StageInfoObj.data.panel.vars[_local3].DestroyMoviePlayer();
}
if (m_StageInfoObj.data.panel.vars[_local3].npc_id != undefined) {
m_StageInfoObj.data.panel.vars[_local3].msg_container.removeMovieClip();
}
if (m_StageInfoObj.data.panel.vars[_local3].outernal_res) {
m_StageInfoObj.data.panel.vars[_local3]._parent.removeMovieClip();
m_StageInfoObj.data.panel.vars[_local3] = null;
} else {
m_StageInfoObj.data.panel.vars[_local3].removeMovieClip();
m_StageInfoObj.data.panel.vars[_local3] = null;
}
_local3++;
}
_local3 = 0;
while (_local3 < m_StageInfoObj.option.panel.x_count) {
var _local2 = 0;
while (_local2 < m_StageInfoObj.option.panel.y_count) {
m_StageInfoObj.data.panel.xpanels[_local3][_local2] = null;
_local2++;
}
m_StageInfoObj.data.panel.xpanels[_local3] = null;
_local3++;
}
}
function GetXFromVirtualAxis(ipVirtualX, ipVirtualY) {
return((((parseInt(ipVirtualX) - parseInt(ipVirtualY)) * m_StageInfoObj.option.panel.width) / 2) + parseInt(m_StageInfoObj.option.panel.init_x));
}
function GetYFromVirtualAxis(ipVirtualX, ipVirtualY) {
return((((parseInt(ipVirtualX) + parseInt(ipVirtualY)) * m_StageInfoObj.option.panel.height) / 2) + parseInt(m_StageInfoObj.option.panel.init_y));
}
}
Symbol 2583 MovieClip [__Packages.LC_CharacterUtils] Frame 0
class LC_CharacterUtils
{
function LC_CharacterUtils () {
}
static function CreateCharacter(ipPlayerIndex) {
var _local7 = LC_AppUtils.GetPlayerObj(ipPlayerIndex);
var _local5 = _local7.cid;
var _local4 = _local7.player_action_layer_mc;
_local7.player_mc_ary = new Array();
var _local3 = _local7.player_mc_ary;
var _local6 = LC_AppUtils.GetAppInfo().appdata.char_xml.firstChild;
var _local2 = _local6.firstChild;
while (_local2 != null) {
if (_local2.attributes.cid == _local5) {
CreateCharacterClip(_local3, LC_Const.C_CHAR_SIT_RIGHT, "sit_r", "sit_r", LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_SIT_RIGHT, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_SIT_DOWN, "sit_d", "sit_r", LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_SIT_DOWN, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_SIT_UP, "sit_u", "sit_u", LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_SIT_UP, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_SIT_LEFT, "sit_l", "sit_u", LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_SIT_LEFT, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_STAND_RIGHT, "stnd_r", "stnd_r", LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_STAND_RIGHT, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_STAND_DOWN, "stnd_d", "stnd_r", LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_STAND_DOWN, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_STAND_UP, "stnd_u", "stnd_u", LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_STAND_UP, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_STAND_LEFT, "stnd_l", "stnd_u", LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_STAND_LEFT, _local2, _local4);
var _local1 = 0;
while (_local1 < 12) {
CreateCharacterClip(_local3, LC_Const.C_CHAR_WALK_RIGHT + _local1, "wlk_r" + (parseInt(_local1) + 1), "wlk_r" + (parseInt(_local1) + 1), (LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_WALK_RIGHT) + _local1, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_WALK_DOWN + _local1, "wlk_d" + (parseInt(_local1) + 1), "wlk_r" + (parseInt(_local1) + 1), (LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_WALK_DOWN) + _local1, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_WALK_UP + _local1, "wlk_u" + (parseInt(_local1) + 1), "wlk_u" + (parseInt(_local1) + 1), (LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_WALK_UP) + _local1, _local2, _local4);
CreateCharacterClip(_local3, LC_Const.C_CHAR_WALK_LEFT + _local1, "wlk_l" + (parseInt(_local1) + 1), "wlk_u" + (parseInt(_local1) + 1), (LC_Const.C_PLAYER_MC_ID_HEADER + LC_Const.C_CHAR_WALK_LEFT) + _local1, _local2, _local4);
_local1++;
}
}
_local2 = _local2.nextSibling;
}
}
static function CreateCharacterClip(ipPlayerAry, ipAryIndex, ipTargetMCName, ipAltMCName, ipMCVariableName, ipCharNode, ipMCAryLayer) {
if ((ipCharNode.attributes[ipTargetMCName] != null) && (ipCharNode.attributes[ipTargetMCName] != undefined)) {
LC_AppUtils.CreateResourceClip(ipMCAryLayer, ipCharNode.attributes[ipTargetMCName], ipMCVariableName, LC_DepthUtils.GetEmptyDepth(ipMCAryLayer, 0, 100), 0, 0, function (ipMovie) {
ipMovie._visible = false;
ipPlayerAry[ipAryIndex] = ipMovie;
});
} else {
LC_AppUtils.CreateResourceClip(ipMCAryLayer, ipCharNode.attributes[ipAltMCName], ipMCVariableName, LC_DepthUtils.GetEmptyDepth(ipMCAryLayer, 0, 100), 0, 0, function (ipMovie) {
ipMovie._visible = false;
ipMovie._xscale = -100;
ipPlayerAry[ipAryIndex] = ipMovie;
});
}
}
static function IsPlayerDark(ipPlayerIndex) {
var _local1 = LC_AppUtils.GetPlayerObj(ipPlayerIndex).cid;
return((_local1 == LC_Const.C_DARK_CHAR_INDEX_1) || (_local1 == LC_Const.C_DARK_CHAR_INDEX_2));
}
static function IsPlayerShar(ipPlayerIndex) {
var _local1 = LC_AppUtils.GetPlayerObj(ipPlayerIndex).cid;
return(_local1 == LC_Const.C_SHAR_CHAR_INDEX);
}
}
Symbol 2584 MovieClip [__Packages.LC_EffectProcessor] Frame 0
class LC_EffectProcessor
{
var m_AppInfoObj, m_StageInfoObj, m_StageMovie, m_StageProcessor;
function LC_EffectProcessor (ipAppInfoObj, ipStageInfoObj, ipStageMovie, ipStageProcessor) {
m_AppInfoObj = ipAppInfoObj;
m_StageInfoObj = ipStageInfoObj;
m_StageMovie = ipStageMovie;
m_StageProcessor = ipStageProcessor;
}
function CreateEffectClip(bTopObject, ipMovieClipName, ipPrevX, ipPrevY, ipVirtualX, ipVirtualY, ipCallBack) {
if (ipMovieClipName != "") {
var _local10 = m_StageProcessor.GetXFromVirtualAxis(ipVirtualX, ipVirtualY);
var _local9 = m_StageProcessor.GetYFromVirtualAxis(ipVirtualX, ipVirtualY);
var _local3 = ipVirtualX;
var _local2 = ipVirtualY;
if ((bTopObject && ((ipPrevX + ipPrevY) > (ipVirtualX + ipVirtualY))) || ((!bTopObject) && ((ipPrevX + ipPrevY) < (ipVirtualX + ipVirtualY)))) {
_local3 = ipPrevX;
_local2 = ipPrevY;
}
var _local8 = LC_DepthUtils.GetEmptyDepth(m_StageMovie, LC_DepthUtils.GetTopObjectPanelLayerDepthMin(_local3, _local2), LC_DepthUtils.GetTopObjectPanelLayerDepthMax(_local3, _local2));
LC_AppUtils.CreateResourceClip(m_StageMovie, ipMovieClipName, LC_Const.C_EFFECT_ID_HEADER + m_AppInfoObj.appdata.effect_var_id, _local8, _local10, _local9 + (m_StageInfoObj.option.panel.height / 2), ipCallBack);
m_AppInfoObj.appdata.effect_var_id++;
if (m_AppInfoObj.appdata.effect_var_id == LC_Const.C_EFFECT_ID_MAX_SIZE) {
m_AppInfoObj.appdata.effect_var_id = 0;
}
}
}
}
Symbol 2585 MovieClip [__Packages.LC_SOCodeUtils] Frame 0
class LC_SOCodeUtils
{
function LC_SOCodeUtils () {
}
static function GetVirtualXFromString(ipAxisString) {
return(parseInt(ipAxisString.substr(0, ipAxisString.indexOf(","))));
}
static function GetVirtualYFromString(ipAxisString) {
return(parseInt(ipAxisString.substr(ipAxisString.indexOf(",") + 1)));
}
static function GetIDFromPropertyCode(ipPropertyCode) {
return(parseInt(ipPropertyCode.substr(1)));
}
static function GetTypeFromPropertyCode(ipPropertyCode) {
return(ipPropertyCode.substr(0, 1));
}
static function GetBindVarNameFromPropertyCode(ipPropertyCode) {
return(ipPropertyCode.substr(1));
}
}
Symbol 2586 MovieClip [__Packages.LC_ScrollProcessor] Frame 0
class LC_ScrollProcessor
{
var m_StageInfoObj, m_ScrollPane, m_StageProcessor;
function LC_ScrollProcessor (ipStageInfoObj, ipScrollPane, ipStageProcessor) {
m_StageInfoObj = ipStageInfoObj;
m_ScrollPane = ipScrollPane.stage_mc;
m_StageProcessor = ipStageProcessor;
}
function SetViewPointCenter(ipVirtualX, ipVirtualY) {
m_ScrollPane._x = (LC_Const.C_STAGE_VIEW_WIDTH / 2) - m_StageProcessor.GetXFromVirtualAxis(ipVirtualX, ipVirtualY);
m_ScrollPane._y = ((LC_Const.C_STAGE_VIEW_HEIGHT / 2) - m_StageProcessor.GetYFromVirtualAxis(ipVirtualX, ipVirtualY)) - 15;
}
function ShiftViewPoint(ipDirection) {
switch (ipDirection) {
case LC_Const.C_DIREC_LEFT :
if (m_StageInfoObj.data.viewpoint.x != (-LC_Const.C_VIEWPOINT_SHIFT_MAX_X)) {
m_ScrollPane._x = m_ScrollPane._x + (m_StageInfoObj.option.panel.width / 2);
m_StageInfoObj.data.viewpoint.x--;
}
break;
case LC_Const.C_DIREC_RIGHT :
if (m_StageInfoObj.data.viewpoint.x != LC_Const.C_VIEWPOINT_SHIFT_MAX_X) {
m_ScrollPane._x = m_ScrollPane._x - (m_StageInfoObj.option.panel.width / 2);
m_StageInfoObj.data.viewpoint.x++;
}
break;
case LC_Const.C_DIREC_DOWN :
if (m_StageInfoObj.data.viewpoint.y != LC_Const.C_VIEWPOINT_SHIFT_MAX_Y) {
if (m_StageInfoObj.option.panel.height != 0) {
m_ScrollPane._y = m_ScrollPane._y - m_StageInfoObj.option.panel.height;
} else {
m_ScrollPane._y = m_ScrollPane._y - 40;
}
m_StageInfoObj.data.viewpoint.y++;
}
break;
case LC_Const.C_DIREC_UP :
if (m_StageInfoObj.data.viewpoint.y == (-LC_Const.C_VIEWPOINT_SHIFT_MAX_Y)) {
break;
}
if (m_StageInfoObj.option.panel.height != 0) {
m_ScrollPane._y = m_ScrollPane._y + m_StageInfoObj.option.panel.height;
} else {
m_ScrollPane._y = m_ScrollPane._y + 40;
}
m_StageInfoObj.data.viewpoint.y--;
}
}
}
Symbol 2587 MovieClip [__Packages.LC_IgnoreProcessor] Frame 0
class LC_IgnoreProcessor
{
var m_AppInfoObj, m_StageInfoObj, m_IgnoreDialog;
function LC_IgnoreProcessor (ipAppInfoObj, ipStageInfoObj) {
m_AppInfoObj = ipAppInfoObj;
m_StageInfoObj = ipStageInfoObj;
m_IgnoreDialog = null;
}
function ManagePlayerClick(ipPlayerIndex) {
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
if (m_IgnoreDialog != null) {
return(undefined);
}
LC_AppUtils.AcceptEvents(false);
m_IgnoreDialog = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, true, {title:LC_AppUtils.GetMsg(16), contentPath:"ignore_frm"});
var lIgnoreProcessor = this;
var _local5 = new Object();
var lStageInfoObjRef = m_StageInfoObj;
_local5.handleEvent = function (ipEventObj) {
if (ipEventObj.type == "complete") {
var _local3 = lStageInfoObjRef.data.player.players[ipPlayerIndex].name_txt.text;
ipEventObj.target.content.message_txt.text = (("\u300C" + _local3) + "\u300D") + LC_AppUtils.GetMsg(17);
ipEventObj.target.content.message_txt.borderColor = 12632256 /* 0xC0C0C0 */;
ipEventObj.target.content.yes_bt.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lIgnoreProcessor.IgnoreEachPlayer(ipPlayerIndex);
lIgnoreProcessor.RemoveIgnoreDialog();
};
ipEventObj.target.content.yes_bt.addEventListener("click", _local1);
ipEventObj.target.content.yes_bt.label = LC_AppUtils.GetMsg(63);
};
ipEventObj.target.content.no_bt.onLoad = function () {
var _local1 = new Object();
_local1.click = function (ipButtonObj) {
lIgnoreProcessor.RemoveIgnoreDialog();
};
ipEventObj.target.content.no_bt.addEventListener("click", _local1);
ipEventObj.target.content.no_bt.label = LC_AppUtils.GetMsg(64);
};
ipEventObj.target.setSize(LC_Const.C_IGNORE_DIALOG_WIDTH, LC_Const.C_IGNORE_DIALOG_HEIGHT);
ipEventObj.target._x = (LC_Const.C_STAGE_VIEW_WIDTH - LC_Const.C_IGNORE_DIALOG_WIDTH) / 2;
ipEventObj.target._y = (LC_Const.C_STAGE_VIEW_HEIGHT - LC_Const.C_IGNORE_DIALOG_HEIGHT) / 2;
}
};
m_IgnoreDialog.addEventListener("complete", _local5);
}
function RemoveIgnoreDialog() {
if (m_IgnoreDialog == null) {
return(undefined);
}
m_IgnoreDialog.deletePopUp();
LC_AppUtils.AcceptEvents(true);
m_IgnoreDialog = null;
}
function IgnoreEachPlayer(ipPlayerIndex) {
if (!IsPlayerInStage(ipPlayerIndex)) {
return(undefined);
}
if (LC_AppUtils.GetPlayerObj(ipPlayerIndex).power >= LC_Const.C_POWER_GM) {
return(undefined);
}
IgnorePlayer(ipPlayerIndex);
_root.SendIgnoreEach(ipPlayerIndex);
}
function IgnorePlayer(ipPlayerIndex) {
if (!IsPlayerInStage(ipPlayerIndex)) {
return(undefined);
}
m_AppInfoObj.appdata.ignore_players[ipPlayerIndex] = true;
var _local3 = 1;
while (_local3 <= LC_Const.C_MAX_RADIO) {
LC_AppUtils.GetRadioProcessor(_local3).IgnorePlayer(ipPlayerIndex);
_local3++;
}
_root.ManagePlayerExit(ipPlayerIndex, "action_logoff_mov");
}
function IsPlayerInStage(ipPlayerIndex) {
var _local2 = m_StageInfoObj.data.player.players[ipPlayerIndex];
if ((_local2 == undefined) || (_local2 == null)) {
return(false);
}
return(true);
}
function IsIgnorePlayer(ipPlayerIndex) {
var _local2 = m_AppInfoObj.appdata.ignore_players[ipPlayerIndex];
if ((_local2 == undefined) || (_local2 == null)) {
return(false);
}
return(true);
}
}
Symbol 2588 MovieClip [__Packages.LC_ObjectUtils] Frame 0
class LC_ObjectUtils
{
function LC_ObjectUtils () {
}
static function GetObjectFromNPCID(ipNPCID) {
var _local2 = LC_AppUtils.GetStageInfo().data.panel.vars;
for (var _local4 in _local2) {
var _local1 = _local2[_local4];
if (_local1.npc_id == ipNPCID) {
return(_local1);
}
}
return(null);
}
static function GetObjectFromImageID(ipNPCID) {
var _local2 = LC_AppUtils.GetStageInfo().data.panel.vars;
for (var _local4 in _local2) {
var _local1 = _local2[_local4];
if (_local1.image_id == ipNPCID) {
return(_local1);
}
}
return(null);
}
static function GetObjectFromBindVarName(ipBindVarName) {
var _local3 = new Array();
var _local2 = LC_AppUtils.GetStageInfo().data.panel.vars;
for (var _local5 in _local2) {
var _local1 = _local2[_local5];
if ((_local1.bind_var_name == ipBindVarName) || (_local1.bind_var_name == LC_Const.C_BIND_VARNAME_ACCEPT_ALL)) {
_local3.push(_local1);
}
}
return(_local3);
}
}
Symbol 2589 MovieClip [__Packages.LC_StringUtils] Frame 0
class LC_StringUtils
{
function LC_StringUtils () {
}
static function IsWebsafeString(ipString) {
var _local3 = ipString.toUpperCase();
var _local2 = 0;
while (_local2 < _local3.length) {
var _local1 = _local3.charAt(_local2);
if ((((((((((((((((((((((((((((((((((((((_local1 != "A") && (_local1 != "B")) && (_local1 != "C")) && (_local1 != "D")) && (_local1 != "E")) && (_local1 != "F")) && (_local1 != "G")) && (_local1 != "H")) && (_local1 != "I")) && (_local1 != "J")) && (_local1 != "K")) && (_local1 != "L")) && (_local1 != "M")) && (_local1 != "N")) && (_local1 != "O")) && (_local1 != "P")) && (_local1 != "Q")) && (_local1 != "R")) && (_local1 != "S")) && (_local1 != "T")) && (_local1 != "U")) && (_local1 != "V")) && (_local1 != "W")) && (_local1 != "X")) && (_local1 != "Y")) && (_local1 != "Z")) && (_local1 != "0")) && (_local1 != "1")) && (_local1 != "2")) && (_local1 != "3")) && (_local1 != "4")) && (_local1 != "5")) && (_local1 != "6")) && (_local1 != "7")) && (_local1 != "8")) && (_local1 != "9")) && (_local1 != "-")) && (_local1 != "_")) {
return(false);
}
_local2++;
}
return(true);
}
static function IsURIChar(ipChar) {
var _local1 = ipChar.toUpperCase();
if ((((((((((((((((((((((((((((((((((((((((((((((((((((((((_local1 != "#") && (_local1 != "%")) && (_local1 != "/")) && (_local1 != "?")) && (_local1 != ":")) && (_local1 != "@")) && (_local1 != "&")) && (_local1 != "=")) && (_local1 != "+")) && (_local1 != "$")) && (_local1 != ",")) && (_local1 != ".")) && (_local1 != "!")) && (_local1 != "*")) && (_local1 != "~")) && (_local1 != "_")) && (_local1 != "-")) && (_local1 != "'")) && (_local1 != "(")) && (_local1 != ")")) && (_local1 != "A")) && (_local1 != "B")) && (_local1 != "C")) && (_local1 != "D")) && (_local1 != "E")) && (_local1 != "F")) && (_local1 != "G")) && (_local1 != "H")) && (_local1 != "I")) && (_local1 != "J")) && (_local1 != "K")) && (_local1 != "L")) && (_local1 != "M")) && (_local1 != "N")) && (_local1 != "O")) && (_local1 != "P")) && (_local1 != "Q")) && (_local1 != "R")) && (_local1 != "S")) && (_local1 != "T")) && (_local1 != "U")) && (_local1 != "V")) && (_local1 != "W")) && (_local1 != "X")) && (_local1 != "Y")) && (_local1 != "Z")) && (_local1 != "1")) && (_local1 != "2")) && (_local1 != "3")) && (_local1 != "4")) && (_local1 != "5")) && (_local1 != "6")) && (_local1 != "7")) && (_local1 != "8")) && (_local1 != "9")) && (_local1 != "0")) {
return(false);
}
return(true);
}
static function HTMLSpecialChars(ipText) {
ipText = ipText.split("&").join("&");
ipText = ipText.split("<").join("<");
ipText = ipText.split(">").join(">");
ipText = ipText.split("'").join("'");
ipText = ipText.split("\"").join(""");
return(ipText);
}
static function HTMLSpecialCharsForLink(ipText) {
ipText = ipText.split("<").join("<");
ipText = ipText.split(">").join(">");
ipText = ipText.split("'").join("'");
ipText = ipText.split("\"").join(""");
ipText = ipText.split("#").join("♯");
return(ipText);
}
static function GetTaggedLogText(ipLogText) {
var _local6 = "";
var _local5 = 0;
var _local3 = 0;
while (true) {
_local3 = ipLogText.indexOf("http://", _local5);
if (_local3 == -1) {
_local3 = ipLogText.indexOf("https://", _local5);
}
if (_local3 == -1) {
_local6 = _local6 + HTMLSpecialChars(ipLogText.substr(_local5));
break;
}
_local6 = _local6 + HTMLSpecialChars(ipLogText.substring(_local5, _local3));
var _local4 = "";
var _local1 = _local3;
while (_local1 < ipLogText.length) {
if (!IsURIChar(ipLogText.charAt(_local1))) {
break;
}
_local4 = _local4 + ipLogText.charAt(_local1);
_local1++;
}
_local6 = _local6 + (((("<a href='http://l4cs.jpn.org/r.cgi?u=" + HTMLSpecialCharsForLink(_local4)) + "' target='_blank'><font color='#0000FF'>") + HTMLSpecialChars(_local4)) + "</font></a>");
_local5 = _local1;
}
return(_local6);
}
}
Symbol 2590 MovieClip [__Packages.LC_LogoutPanelUtils] Frame 0
class LC_LogoutPanelUtils
{
function LC_LogoutPanelUtils () {
}
static function GetLogoutPanelMovie() {
return(_root.logoutpanel_mc);
}
static function GetMessageTextBox() {
return(GetLogoutPanelMovie().message_txt);
}
static function Build() {
LC_AppUtils.CreateResourceClip(_root, LC_AppUtils.GetAppInfo().panel.logout_panel, "logoutpanel_mc", LC_DepthUtils.GetEmptyDepth(_root, 0, 1000000), 0, 0, null);
}
}
Symbol 1992 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 1993 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 _local6 = mx.core.UIObject.prototype;
var _local9 = mx.skins.SkinElement.prototype;
addGeometry(_local9, _local6);
mx.events.UIEventDispatcher.initialize(_local6);
var _local13 = mx.skins.ColoredSkinElement;
mx.styles.CSSTextStyles.addTextStyles(_local6);
var _local5 = MovieClip.prototype;
_local5.getTopLevel = _local6.getTopLevel;
_local5.createLabel = _local6.createLabel;
_local5.createObject = _local6.createObject;
_local5.createClassObject = _local6.createClassObject;
_local5.createEmptyObject = _local6.createEmptyObject;
_local5.destroyObject = _local6.destroyObject;
_global.ASSetPropFlags(_local5, "getTopLevel", 1);
_global.ASSetPropFlags(_local5, "createLabel", 1);
_global.ASSetPropFlags(_local5, "createObject", 1);
_global.ASSetPropFlags(_local5, "createClassObject", 1);
_global.ASSetPropFlags(_local5, "createEmptyObject", 1);
_global.ASSetPropFlags(_local5, "destroyObject", 1);
_local5.__getTextFormat = _local6.__getTextFormat;
_local5._getTextFormat = _local6._getTextFormat;
_local5.getStyleName = _local6.getStyleName;
_local5.getStyle = _local6.getStyle;
_global.ASSetPropFlags(_local5, "__getTextFormat", 1);
_global.ASSetPropFlags(_local5, "_getTextFormat", 1);
_global.ASSetPropFlags(_local5, "getStyleName", 1);
_global.ASSetPropFlags(_local5, "getStyle", 1);
var _local7 = TextField.prototype;
addGeometry(_local7, _local6);
_local7.addProperty("enabled", function () {
return(this.__enabled);
}, function (x) {
this.__enabled = x;
this.invalidateStyle();
});
_local7.move = _local9.move;
_local7.setSize = _local9.setSize;
_local7.invalidateStyle = function () {
this.invalidateFlag = true;
};
_local7.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;
}
};
_local7.setColor = function (color) {
this.textColor = color;
};
_local7.getStyle = _local5.getStyle;
_local7.__getTextFormat = _local6.__getTextFormat;
_local7.setValue = function (v) {
this.text = v;
};
_local7.getValue = function () {
return(this.text);
};
_local7.addProperty("value", function () {
return(this.getValue());
}, function (v) {
this.setValue(v);
});
_local7._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);
};
_local7.getPreferredWidth = function () {
this.draw();
return(this.textWidth + 4);
};
_local7.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();
if (_global._origWidth == undefined) {
_global.origWidth = Stage.width;
_global.origHeight = Stage.height;
}
}
var _local4 = _root;
while (_local4._parent != undefined) {
_local4 = _local4._parent;
}
_local4.addProperty("width", function () {
return(Stage.width);
}, null);
_local4.addProperty("height", function () {
return(Stage.height);
}, null);
_global.ASSetPropFlags(_local4, "width", 1);
_global.ASSetPropFlags(_local4, "height", 1);
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 1994 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 1997 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, lastMouse, _visible, lastFocus, doLater, lastSelFocus, cancelAllDoLaters, _searchKey, _lastTarget, _firstNode, _nextIsNext, _nextNode, _lastx, _prevNode, _needPrev, _foundList, _prevObj, _nextObj, _firstObj, _lastObj, _lastNode, lastTabFocus, 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);
lastMouse = new Object();
_global.ASSetPropFlags(_parent, "focusManager", 1);
_global.ASSetPropFlags(_parent, "tabChildren", 1);
_global.ASSetPropFlags(_parent, "tabEnabled", 1);
}
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(lastMouse.x, lastMouse.y, 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();
lastMouse.x = _root._xmouse;
lastMouse.y = _root._ymouse;
_root.localToGlobal(lastMouse);
}
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.2.126";
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 1998 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 1999 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 2000 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 _local3 = mx.styles.CSSSetStyle.prototype;
mx.styles.CSSStyleDeclaration.prototype.setStyle = _local3._setStyle;
_local2.changeTextStyleInChildren = _local3.changeTextStyleInChildren;
_local2.changeColorStyleInChildren = _local3.changeColorStyleInChildren;
_local2.notifyStyleChangeInChildren = _local3.notifyStyleChangeInChildren;
_local2.setStyle = _local3.setStyle;
_global.ASSetPropFlags(_local2, "changeTextStyleInChildren", 1);
_global.ASSetPropFlags(_local2, "changeColorStyleInChildren", 1);
_global.ASSetPropFlags(_local2, "notifyStyleChangeInChildren", 1);
_global.ASSetPropFlags(_local2, "setStyle", 1);
var _local4 = TextField.prototype;
_local4.setStyle = _local2.setStyle;
_local4.changeTextStyleInChildren = _local3.changeTextStyleInChildren;
return(true);
}
static var classConstructed = classConstruct();
static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration;
}
Symbol 2001 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 2004 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.2.126";
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 2005 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 2079 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.2.126";
var className = "HScrollBar";
var minusMode = "Left";
var plusMode = "Right";
var minMode = "AtLeft";
var maxMode = "AtRight";
}
Symbol 2080 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.2.126";
var className = "VScrollBar";
var minusMode = "Up";
var plusMode = "Down";
var minMode = "AtTop";
var maxMode = "AtBottom";
}
Symbol 2112 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);
dP.addView(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 2113 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 2114 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, wasKeySelected, changeFlag, clearSelected, selectItem, lastSelected, 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 getPropertiesOf(obj) {
var _local2 = obj.getID();
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, allowChangeEvent) {
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;
}
if (allowChangeEvent == undefined) {
allowChangeEvent = wasKeySelected;
}
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 (allowChangeEvent) {
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 2115 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";
var className = "List";
static var version = "2.0.2.126";
var clipParameters = {rowHeight:1, enabled:1, visible:1, labels:1};
var scrollDepth = 1;
var __vScrollPolicy = "on";
var autoHScrollAble = false;
}
Symbol 2116 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, 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;
}
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;
cellEditor.redraw();
Selection.setSelection(0, cellEditor.length);
}
__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) && (Key.getCode() != 229)) {
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.1.78";
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 2140 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) {
endTween();
} 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 2141 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 2142 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;
if (rowIndex == undefined) {
_local3 = _local2.getPropertiesOf(item).backgroundColor;
} else {
_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 2143 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 2144 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, getStyle, bind, updateModel, _getTextFormat, enabled;
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) {
label.type = (((__editable == true) || (enable == false)) ? "input" : "dynamic");
label.selectable = enable;
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.2.126";
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 2159 MovieClip [__Packages.mx.controls.ComboBase] Frame 0
class mx.controls.ComboBase extends mx.core.UIComponent
{
var getValue, tabEnabled, tabChildren, boundingBox_mc, downArrow_mc, createClassObject, onDownArrow, border_mc, __border, text_mc, focusTextField, __width, __height, getFocusManager, __get__height, height, _parent;
function ComboBase () {
super();
getValue = _getValue;
}
function init() {
super.init();
tabEnabled = !_editable;
tabChildren = _editable;
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function createChildren() {
var _local3 = new Object();
_local3.styleName = this;
if (downArrow_mc == undefined) {
_local3.falseUpSkin = downArrowUpName;
_local3.falseOverSkin = downArrowOverName;
_local3.falseDownSkin = downArrowDownName;
_local3.falseDisabledSkin = downArrowDisabledName;
_local3.validateNow = true;
_local3.tabEnabled = false;
createClassObject(mx.controls.SimpleButton, "downArrow_mc", 19, _local3);
downArrow_mc.buttonDownHandler = onDownArrow;
downArrow_mc.useHandCursor = false;
downArrow_mc.onPressWas = downArrow_mc.onPress;
downArrow_mc.onPress = function () {
this.trackAsMenuWas = this.trackAsMenu;
this.trackAsMenu = true;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onPressWas();
};
downArrow_mc.onDragOutWas = downArrow_mc.onDragOut;
downArrow_mc.onDragOut = function () {
this.trackAsMenuWas = this.trackAsMenu;
this.trackAsMenu = false;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onDragOutWas();
};
downArrow_mc.onDragOverWas = downArrow_mc.onDragOver;
downArrow_mc.onDragOver = function () {
this.trackAsMenu = this.trackAsMenuWas;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onDragOverWas();
};
}
if (border_mc == undefined) {
_local3.tabEnabled = false;
createClassObject(_global.styles.rectBorderClass, "border_mc", 17, _local3);
border_mc.move(0, 0);
__border = border_mc;
}
_local3.borderStyle = "none";
_local3.readOnly = !_editable;
_local3.tabEnabled = _editable;
if (text_mc == undefined) {
createClassObject(mx.controls.TextInput, "text_mc", 18, _local3);
text_mc.move(0, 0);
text_mc.addEnterEvents();
text_mc.enterHandler = _enterHandler;
text_mc.changeHandler = _changeHandler;
text_mc.oldOnSetFocus = text_mc.onSetFocus;
text_mc.onSetFocus = function () {
this.oldOnSetFocus();
this._parent.onSetFocus();
};
text_mc.__set__restrict("^\x1B");
text_mc.oldOnKillFocus = text_mc.onKillFocus;
text_mc.onKillFocus = function (n) {
this.oldOnKillFocus(n);
this._parent.onKillFocus(n);
};
text_mc.drawFocus = function (b) {
this._parent.drawFocus(b);
};
delete text_mc.borderStyle;
}
focusTextField = text_mc;
text_mc.owner = this;
layoutChildren(__width, __height);
}
function onKillFocus() {
super.onKillFocus();
Key.removeListener(text_mc);
getFocusManager().defaultPushButtonEnabled = true;
}
function onSetFocus() {
super.onSetFocus();
getFocusManager().defaultPushButtonEnabled = false;
Key.addListener(text_mc);
}
function setFocus() {
if (_editable) {
Selection.setFocus(text_mc);
} else {
Selection.setFocus(this);
}
}
function setSize(w, h, noEvent) {
super.setSize(w, ((h == undefined) ? (__get__height()) : (h)), noEvent);
}
function setEnabled(enabledFlag) {
super.setEnabled(enabledFlag);
downArrow_mc.enabled = enabledFlag;
text_mc.enabled = enabledFlag;
}
function setEditable(e) {
_editable = e;
if (wrapDownArrowButton == false) {
if (e) {
border_mc.borderStyle = "inset";
text_mc.borderStyle = "inset";
symbolName = "ComboBox";
invalidateStyle();
} else {
border_mc.borderStyle = "comboNonEdit";
text_mc.borderStyle = "dropDown";
symbolName = "DropDown";
invalidateStyle();
}
}
tabEnabled = !e;
tabChildren = e;
text_mc.tabEnabled = e;
if (e) {
delete text_mc.onPress;
delete text_mc.onRelease;
delete text_mc.onReleaseOutside;
delete text_mc.onDragOut;
delete text_mc.onDragOver;
delete text_mc.onRollOver;
delete text_mc.onRollOut;
} else {
text_mc.onPress = function () {
this._parent.downArrow_mc.onPress();
};
text_mc.onRelease = function () {
this._parent.downArrow_mc.onRelease();
};
text_mc.onReleaseOutside = function () {
this._parent.downArrow_mc.onReleaseOutside();
};
text_mc.onDragOut = function () {
this._parent.downArrow_mc.onDragOut();
};
text_mc.onDragOver = function () {
this._parent.downArrow_mc.onDragOver();
};
text_mc.onRollOver = function () {
this._parent.downArrow_mc.onRollOver();
};
text_mc.onRollOut = function () {
this._parent.downArrow_mc.onRollOut();
};
text_mc.useHandCursor = false;
}
}
function get editable() {
return(_editable);
}
function set editable(e) {
setEditable(e);
//return(editable);
}
function _getValue() {
return((_editable ? (text_mc.getText()) : (DSgetValue())));
}
function draw() {
downArrow_mc.draw();
border_mc.draw();
}
function size() {
layoutChildren(__width, __height);
}
function setTheme(t) {
downArrowUpName = (t + "downArrow") + "Up_mc";
downArrowDownName = (t + "downArrow") + "Down_mc";
downArrowDisabledName = (t + "downArrow") + "Disabled_mc";
}
function get text() {
return(text_mc.getText());
}
function set text(t) {
setText(t);
//return(text);
}
function setText(t) {
text_mc.setText(t);
}
function get textField() {
return(text_mc);
}
function get restrict() {
return(text_mc.__get__restrict());
}
function set restrict(w) {
text_mc.__set__restrict(w);
//return(restrict);
}
function invalidateStyle() {
downArrow_mc.invalidateStyle();
text_mc.invalidateStyle();
border_mc.invalidateStyle();
}
function layoutChildren(w, h) {
if (downArrow_mc == undefined) {
return(undefined);
}
if (wrapDownArrowButton) {
var _local2 = border_mc.__get__borderMetrics();
downArrow_mc._width = (downArrow_mc._height = (h - _local2.top) - _local2.bottom);
downArrow_mc.move((w - downArrow_mc._width) - _local2.right, _local2.top);
border_mc.setSize(w, h);
text_mc.setSize(w - downArrow_mc._width, h);
} else {
downArrow_mc.move(w - downArrow_mc._width, 0);
border_mc.setSize(w - downArrow_mc.width, h);
text_mc.setSize(w - downArrow_mc._width, h);
downArrow_mc._height = height;
}
}
function _changeHandler(obj) {
}
function _enterHandler(obj) {
var _local2 = _parent;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function get tabIndex() {
return(text_mc.__get__tabIndex());
}
function set tabIndex(w) {
text_mc.__set__tabIndex(w);
//return(tabIndex);
}
static var mixIt1 = mx.controls.listclasses.DataSelector.Initialize(mx.controls.ComboBase);
static var symbolName = "ComboBase";
static var symbolOwner = mx.controls.ComboBase;
static var version = "2.0.2.126";
var _editable = false;
var downArrowUpName = "ScrollDownArrowUp";
var downArrowDownName = "ScrollDownArrowDown";
var downArrowOverName = "ScrollDownArrowOver";
var downArrowDisabledName = "ScrollDownArrowDisabled";
var wrapDownArrowButton = true;
var DSgetValue = mx.controls.listclasses.DataSelector.prototype.getValue;
var multipleSelection = false;
}
Symbol 2160 MovieClip [__Packages.mx.controls.ComboBox] Frame 0
class mx.controls.ComboBox extends mx.controls.ComboBase
{
var __set__editable, editable, __labels, data, __dropdownWidth, __width, _editable, selectedIndex, __dropdown, dataProvider, __labelFunction, createObject, border_mc, mask, text_mc, dispatchValueChangedEvent, getValue, length, selectedItem, _y, isPressed, owner, __set__visible, height, localToGlobal, __selectedIndexOnDropdown, __initialSelectedIndexOnDropdown, __get__height, getStyle, _parent, width, __dataProvider, selected, dispatchEvent;
function ComboBox () {
super();
}
function init() {
super.init();
}
function createChildren() {
super.createChildren();
__set__editable(editable);
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);
}
dropdownWidth = (((typeof(__dropdownWidth) == "number") ? (__dropdownWidth) : (__width)));
if (!_editable) {
selectedIndex = 0;
}
initializing = false;
}
function onKillFocus(n) {
if (_showingDropdown && (n != null)) {
displayDropdown(false);
}
super.onKillFocus();
}
function getDropdown() {
if (initializing) {
return(undefined);
}
if (!hasDropdown()) {
var _local3 = new Object();
_local3.styleName = this;
if (dropdownBorderStyle != undefined) {
_local3.borderStyle = dropdownBorderStyle;
}
_local3._visible = false;
__dropdown = mx.managers.PopUpManager.createPopUp(this, mx.controls.List, false, _local3, true);
__dropdown.scroller.mask.removeMovieClip();
if (dataProvider == undefined) {
dataProvider = new Array();
}
__dropdown.setDataProvider(dataProvider);
__dropdown.selectMultiple = false;
__dropdown.rowCount = __rowCount;
__dropdown.selectedIndex = selectedIndex;
__dropdown.vScrollPolicy = "auto";
__dropdown.labelField = __labelField;
__dropdown.labelFunction = __labelFunction;
__dropdown.owner = this;
__dropdown.changeHandler = _changeHandler;
__dropdown.scrollHandler = _scrollHandler;
__dropdown.itemRollOverHandler = _itemRollOverHandler;
__dropdown.itemRollOutHandler = _itemRollOutHandler;
__dropdown.resizeHandler = _resizeHandler;
__dropdown.mouseDownOutsideHandler = function (eventObj) {
var _local3 = this.owner;
var _local4 = new Object();
_local4.x = _local3._root._xmouse;
_local4.y = _local3._root._ymouse;
_local3._root.localToGlobal(_local4);
if (_local3.hitTest(_local4.x, _local4.y, false)) {
} else if ((!this.wrapDownArrowButton) && (this.owner.downArrow_mc.hitTest(_root._xmouse, _root._ymouse, false))) {
} else {
_local3.displayDropdown(false);
}
};
__dropdown.onTweenUpdate = function (v) {
this._y = v;
};
__dropdown.setSize(__dropdownWidth, __dropdown.height);
createObject("BoundingBox", "mask", 20);
mask._y = border_mc.height;
mask._width = __dropdownWidth;
mask._height = __dropdown.height;
mask._visible = false;
__dropdown.setMask(mask);
}
return(__dropdown);
}
function setSize(w, h, noEvent) {
super.setSize(w, h, noEvent);
__dropdownWidth = w;
__dropdown.rowHeight = h;
__dropdown.setSize(__dropdownWidth, __dropdown.height);
}
function setEditable(e) {
super.setEditable(e);
if (e) {
text_mc.setText("");
} else {
text_mc.setText(selectedLabel);
}
}
function get labels() {
return(__labels);
}
function set labels(lbls) {
__labels = lbls;
setDataProvider(lbls);
//return(labels);
}
function getLabelField() {
return(__labelField);
}
function get labelField() {
return(getLabelField());
}
function setLabelField(s) {
__dropdown.labelField = (__labelField = s);
text_mc.setText(selectedLabel);
}
function set labelField(s) {
setLabelField(s);
//return(labelField);
}
function getLabelFunction() {
return(__labelFunction);
}
function get labelFunction() {
return(getLabelFunction());
}
function set labelFunction(f) {
__dropdown.labelFunction = (__labelFunction = f);
text_mc.setText(selectedLabel);
//return(labelFunction);
}
function setSelectedItem(v) {
super.setSelectedItem(v);
__dropdown.selectedItem = v;
text_mc.setText(selectedLabel);
}
function setSelectedIndex(v) {
super.setSelectedIndex(v);
__dropdown.selectedIndex = v;
if (v != undefined) {
text_mc.setText(selectedLabel);
}
dispatchValueChangedEvent(getValue());
}
function setRowCount(count) {
if (isNaN(count)) {
return(undefined);
}
__rowCount = count;
__dropdown.setRowCount(count);
}
function get rowCount() {
return(Math.max(1, Math.min(length, __rowCount)));
}
function set rowCount(v) {
setRowCount(v);
//return(rowCount);
}
function setDropdownWidth(w) {
__dropdownWidth = w;
__dropdown.setSize(w, __dropdown.height);
}
function get dropdownWidth() {
return(__dropdownWidth);
}
function set dropdownWidth(v) {
setDropdownWidth(v);
//return(dropdownWidth);
}
function get dropdown() {
return(getDropdown());
}
function setDataProvider(dp) {
super.setDataProvider(dp);
__dropdown.setDataProvider(dp);
if (!_editable) {
selectedIndex = 0;
}
}
function open() {
displayDropdown(true);
}
function close() {
displayDropdown(false);
}
function get selectedLabel() {
var _local2 = selectedItem;
if (_local2 == undefined) {
return("");
}
if (labelFunction != undefined) {
return(labelFunction(_local2));
}
if (typeof(_local2) != "object") {
return(_local2);
}
if (_local2[labelField] != undefined) {
return(_local2[labelField]);
}
if (_local2.label != undefined) {
return(_local2.label);
}
var _local3 = " ";
for (var _local4 in _local2) {
if (_local4 != "__ID__") {
_local3 = (_local2[_local4] + ", ") + _local3;
}
}
_local3 = _local3.substring(0, _local3.length - 3);
return(_local3);
}
function hasDropdown() {
return((__dropdown != undefined) && (__dropdown.valueOf() != undefined));
}
function tweenEndShow(value) {
_y = value;
isPressed = true;
owner.dispatchEvent({type:"open", target:owner});
}
function tweenEndHide(value) {
_y = value;
__set__visible(false);
owner.dispatchEvent({type:"close", target:owner});
}
function displayDropdown(show) {
if (show == _showingDropdown) {
return(undefined);
}
var _local3 = new Object();
_local3.x = 0;
_local3.y = height;
localToGlobal(_local3);
if (show) {
__selectedIndexOnDropdown = selectedIndex;
__initialSelectedIndexOnDropdown = selectedIndex;
getDropdown();
var _local2 = __dropdown;
_local2.isPressed = true;
_local2.rowCount = rowCount;
_local2.visible = show;
_local2._parent.globalToLocal(_local3);
_local2.onTweenEnd = tweenEndShow;
var _local5;
var _local8;
if ((_local3.y + _local2.height) > Stage.height) {
_local5 = _local3.y - __get__height();
_local8 = _local5 - _local2.height;
mask._y = -_local2.height;
} else {
_local5 = _local3.y - _local2.height;
_local8 = _local3.y;
mask._y = border_mc.height;
}
var _local6 = _local2.selectedIndex;
if (_local6 == undefined) {
_local6 = 0;
}
var _local4 = _local2.vPosition;
_local4 = _local6 - 1;
_local4 = Math.min(Math.max(_local4, 0), _local2.length - _local2.rowCount);
_local2.vPosition = _local4;
_local2.move(_local3.x, _local5);
_local2.tween = new mx.effects.Tween(__dropdown, _local5, _local8, getStyle("openDuration"));
} else {
__dropdown._parent.globalToLocal(_local3);
delete __dropdown.dragScrolling;
__dropdown.onTweenEnd = tweenEndHide;
__dropdown.tween = new mx.effects.Tween(__dropdown, __dropdown._y, _local3.y - __dropdown.height, getStyle("openDuration"));
if (__initialSelectedIndexOnDropdown != selectedIndex) {
dispatchChangeEvent(undefined, __initialSelectedIndexOnDropdown, selectedIndex);
}
}
var _local9 = getStyle("openEasing");
if (_local9 != undefined) {
__dropdown.tween.easingEquation = _local9;
}
_showingDropdown = show;
}
function onDownArrow() {
_parent.displayDropdown(!_parent._showingDropdown);
}
function keyDown(e) {
if (e.ctrlKey && (e.code == 40)) {
displayDropdown(true);
} else if (e.ctrlKey && (e.code == 38)) {
displayDropdown(false);
dispatchChangeEvent(undefined, __selectedIndexOnDropdown, selectedIndex);
} else if (e.code == 27) {
displayDropdown(false);
} else if (e.code == 13) {
if (_showingDropdown) {
selectedIndex = __dropdown.selectedIndex;
displayDropdown(false);
}
} else if (((((!_editable) || (e.code == 38)) || (e.code == 40)) || (e.code == 33)) || (e.code == 34)) {
selectedIndex = 0 + selectedIndex;
bInKeyDown = true;
var _local3 = dropdown;
_local3.keyDown(e);
bInKeyDown = false;
selectedIndex = __dropdown.selectedIndex;
}
}
function invalidateStyle(styleProp) {
__dropdown.invalidateStyle(styleProp);
super.invalidateStyle(styleProp);
}
function changeTextStyleInChildren(styleProp) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.changeTextStyleInChildren(styleProp);
super.changeTextStyleInChildren(styleProp);
}
function changeColorStyleInChildren(sheetName, styleProp, newValue) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.changeColorStyleInChildren(sheetName, styleProp, newValue);
super.changeColorStyleInChildren(sheetName, styleProp, newValue);
}
function notifyStyleChangeInChildren(sheetName, styleProp, newValue) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.notifyStyleChangeInChildren(sheetName, styleProp, newValue);
super.notifyStyleChangeInChildren(sheetName, styleProp, newValue);
}
function onUnload() {
__dropdown.removeMovieClip();
}
function _resizeHandler() {
var _local2 = owner;
_local2.mask._width = width;
_local2.mask._height = height;
}
function _changeHandler(obj) {
var _local2 = owner;
var _local3 = _local2.selectedIndex;
obj.target = _local2;
if (this == owner.text_mc) {
_local2.selectedIndex = undefined;
_local2.dispatchChangeEvent(obj, -1, -2);
} else {
_local2.selectedIndex = selectedIndex;
if (!_local2._showingDropdown) {
_local2.dispatchChangeEvent(obj, _local3, _local2.selectedIndex);
} else if (!_local2.bInKeyDown) {
_local2.displayDropdown(false);
}
}
}
function _scrollHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function _itemRollOverHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function _itemRollOutHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function modelChanged(eventObj) {
super.modelChanged(eventObj);
if (0 == __dataProvider.length) {
text_mc.setText("");
delete selected;
} else if ((__dataProvider.length == ((eventObj.lastItem - eventObj.firstItem) + 1)) && (eventObj.eventName == "addItems")) {
selectedIndex = 0;
}
}
function dispatchChangeEvent(obj, prevValue, newValue) {
var _local2;
if (prevValue != newValue) {
if ((obj != undefined) && (obj.type == "change")) {
_local2 = obj;
} else {
_local2 = {type:"change"};
}
dispatchEvent(_local2);
}
}
static var symbolName = "ComboBox";
static var symbolOwner = mx.controls.ComboBox;
static var version = "2.0.2.126";
var clipParameters = {labels:1, data:1, editable:1, rowCount:1, dropdownWidth:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.ComboBox.prototype.clipParameters, mx.controls.ComboBase.prototype.clipParameters);
var className = "ComboBox";
var _showingDropdown = false;
var __rowCount = 5;
var dropdownBorderStyle = undefined;
var initializing = true;
var __labelField = "label";
var bInKeyDown = false;
}
Symbol 2443 MovieClip [__Packages.mx.controls.UIScrollBar] Frame 0
class mx.controls.UIScrollBar extends mx.controls.scrollClasses.ScrollBar
{
var textField, wasHorizontal, __width, __height, _parent, synchScroll, setScrollProperties, __set__scrollPosition, initializing, _rotation, _xscale, hScroller, vScroller, onChanged, onScroller, scrollPosition, dispatchEvent;
function UIScrollBar () {
super();
}
function init(Void) {
super.init();
textField.owner = this;
horizontal = (wasHorizontal);
if (horizontal) {
((textField != undefined) ? (super.setSize(textField._width, 16)) : (super.setSize(__width, __height)));
} else {
((textField != undefined) ? (super.setSize(16, textField._height)) : (super.setSize(__width, __height)));
}
if (horizontal) {
var _local3 = __width;
__height = __width;
width = _local3;
__width = 16;
}
textField.onScroller = function () {
this.hPosition = this.hscroll;
this.vPosition = this.scroll - 1;
};
if (_targetInstanceName != undefined) {
setScrollTarget(_targetInstanceName);
_targetInstanceName.addListener(this);
}
}
function get _targetInstanceName() {
return(textField);
}
function get height() {
if (wasHorizontal) {
return(__width);
}
return(__height);
}
function get width() {
if (wasHorizontal) {
return(__height);
}
return(__width);
}
function size(Void) {
super.size();
onTextChanged();
}
function draw() {
super.draw();
}
function set _targetInstanceName(t) {
if (t == undefined) {
textField.removeListener(this);
delete textField[(horizontal ? "hScroller" : "vScroller")];
if ((textField.hScroller != undefined) && (textField.vScroller != undefined)) {
textField.unwatch("text");
textField.unwatch("htmltext");
}
}
var _local3 = _parent[t];
textField = _parent[t];
onTextChanged();
//return(_targetInstanceName);
}
function setSize(w, h) {
if (horizontal) {
super.setSize(h, w);
} else {
super.setSize(w, h);
}
}
function onTextChanged(Void) {
if (textField == undefined) {
return(undefined);
}
clearInterval(synchScroll);
if (horizontal) {
var _local2 = textField.hscroll;
setScrollProperties(textField._width, 0, textField.maxhscroll);
__set__scrollPosition(Math.min(_local2, textField.maxhscroll));
} else {
var _local2 = textField.scroll;
var _local3 = textField.bottomScroll - textField.scroll;
setScrollProperties(_local3, 1, textField.maxscroll);
__set__scrollPosition(Math.min(_local2, textField.maxscroll));
}
}
function get horizontal() {
return(wasHorizontal);
}
function set horizontal(v) {
wasHorizontal = v;
if (v and initializing) {
if (_rotation == 90) {
return;
}
_xscale = -100;
_rotation = -90;
}
if (!initializing) {
if (v) {
if (_rotation == 0) {
_rotation = -90;
_xscale = -100;
}
} else if (_rotation == -90) {
_rotation = 0;
_xscale = 100;
}
}
//return(horizontal);
}
function callback(prop, oldval, newval) {
clearInterval(hScroller.synchScroll);
clearInterval(vScroller.synchScroll);
hScroller.synchScroll = setInterval(hScroller, "onTextChanged", 50);
vScroller.synchScroll = setInterval(vScroller, "onTextChanged", 50);
return(newval);
}
function setScrollTarget(tF) {
if (tF == undefined) {
textField.removeListener(this);
delete textField[(horizontal ? "hScroller" : "vScroller")];
if ((textField.hScroller != undefined) && (textField.vScroller != undefined)) {
textField.unwatch("text");
textField.unwatch("htmltext");
}
}
textField = undefined;
if (!(tF instanceof TextField)) {
return(undefined);
}
textField = tF;
if (horizontal) {
textField.hScroller = this;
textField.hScroller.lineScrollSize = 5;
} else {
textField.vScroller = this;
textField.vScroller.lineScrollSize = 1;
}
onTextChanged();
onChanged = function (Void) {
this.onTextChanged();
};
onScroller = function (Void) {
if (!this.isScrolling) {
if (!this.horizontal) {
this.scrollPosition = this.textField.scroll;
} else {
this.scrollPosition = this.textField.hscroll;
}
}
};
textField.addListener(this);
textField.watch("text", callback);
textField.watch("htmlText", callback);
}
function scrollHandler(Void) {
if (horizontal) {
var _local2 = textField.background;
textField.hscroll = scrollPosition;
textField.background = _local2;
} else {
textField.scroll = scrollPosition;
}
}
function setEnabled(enable) {
super.setEnabled(enable);
if (enable) {
textField.addListener(this);
} else {
textField.removeListener();
}
}
function dispatchScrollEvent(detail) {
dispatchEvent({type:"scroll"});
}
static var symbolName = "UIScrollBar";
static var symbolOwner = mx.controls.UIScrollBar;
var className = "UIScrollBar";
var clipParameters = {_targetInstanceName:1, horizontal:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.UIScrollBar.prototype.clipParameters);
static var version = "2.0.1.78";
}
Symbol 2445 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 _local5 = this.lastX - this._xmouse;
var _local4 = this.lastY - this._ymouse;
_local5 = _local5 + this._parent.hPosition;
_local4 = _local4 + this._parent.vPosition;
var _local3 = this._parent.getViewMetrics();
var _local7 = (this._parent.__height - _local3.top) - _local3.bottom;
var _local6 = (this._parent.__width - _local3.left) - _local3.right;
this._parent.__hPosition = Math.max(0, Math.min(_local5, this._width - _local6));
this._parent.__vPosition = Math.max(0, Math.min(_local4, this._height - _local7));
this._parent.hScroller.scrollPosition = this._parent.__hPosition;
this._x = -this._parent.hPosition;
this._parent.vScroller.scrollPosition = this._parent.__vPosition;
this._y = -this._parent.vPosition;
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.1.78";
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 2454 Button
on (keyPress "<Enter>") {
_root.connectToServer();
}
Symbol 2458 MovieClip Frame 1
function OnItemSelect(ipCharID) {
lSelectCharID = ipCharID;
for (var _local2 in lCharArry) {
lCharArry[_local2].char_panel.char_select_bk_mc._visible = _local2 == ipCharID;
}
char_select_list_name_txt.text = lCharArry[ipCharID].char_name;
}
function AddCharacter(ipCharID, ipCharName, ipCharMovieClip) {
lCharArry[ipCharID] = new Object();
lCharArry[ipCharID].char_name = ipCharName;
LC_AppUtils.CreateResourceClip(char_select_sp.content, "char_select_panel_mov", LC_Const.C_CHAR_SELECT_LIST_PANEL + ipCharID, LC_DepthUtils.GetEmptyDepth(char_select_sp.content, 0, 100), 5 + (lCharCounter * 55), 5, function (ipMovie) {
lCharArry[ipCharID].char_panel = ipMovie;
});
lCharArry[ipCharID].char_panel.cid = ipCharID;
lCharArry[ipCharID].char_panel.char_select_bk_mc._visible = false;
LC_AppUtils.CreateResourceClip(lCharArry[ipCharID].char_panel, ipCharMovieClip, LC_Const.C_CHAR_SELECT_LIST_PANEL_ICON + ipCharID, LC_DepthUtils.GetEmptyDepth(lCharArry[ipCharID].char_panel, 0, 100), 0, 0, function (ipMovie) {
lCharArry[ipCharID].char_panel_icon = ipMovie;
});
lCharCounter = lCharCounter + 1;
if (lCharCounter == lInitSelection) {
OnItemSelect(lInitSelection);
}
var _local1 = 5 + (lCharCounter * 55);
if (_local1 < 300) {
_local1 = 300;
}
char_select_sp.content.char_select_list_content_bk_mc._width = _local1;
char_select_sp.size();
}
var lCharArry = new Array();
var lCharCounter = 0;
var lSelectCharID = 0;
var lInitSelection = 1;
Instance of Symbol 2446 MovieClip [ScrollPane] "char_select_sp" in Symbol 2458 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
contentPath = "char_select_list_content_mov";
hLineScrollSize = 50;
hPageScrollSize = 50;
hScrollPolicy = "on";
scrollDrag = false;
vLineScrollSize = 0;
vPageScrollSize = 0;
vScrollPolicy = "off";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 2473 MovieClip "camera_window_background_mov" in Symbol 2477 MovieClip Frame 1
on (press) {
var lXDiff = (_parent._parent._xmouse - _parent._x);
var lYDiff = (_parent._parent._ymouse - _parent._y);
this.onMouseMove = function () {
_parent._x = _parent._parent._xmouse - lXDiff;
_parent._y = _parent._parent._ymouse - lYDiff;
};
}
on (release) {
this.onMouseMove = null;
}
on (releaseOutside) {
this.onMouseMove = null;
}
Instance of Symbol 2476 MovieClip "camera_window_size_mov" in Symbol 2477 MovieClip Frame 1
on (press) {
var lXStart = _parent._parent._xmouse;
this.onMouseMove = function () {
var _local3 = _parent.camera_window_content_mov.width;
if (_local3 == 0) {
_local3 = 160;
}
var _local2 = _parent.camera_window_content_mov.height;
if (_local2 == 0) {
_local2 = 120;
}
_parent.camera_window_background_mov._width = _parent.camera_window_background_mov._width + (_parent._parent._xmouse - lXStart);
_parent.camera_window_content_mov._width = _parent.camera_window_background_mov._width - 6;
_parent.camera_window_content_mov._height = (_local2 / _local3) * _parent.camera_window_content_mov._width;
_parent.camera_window_background_mov._height = _parent.camera_window_content_mov._height + 6;
_parent.camera_window_size_mov._x = (_parent.camera_window_background_mov._width - _parent.camera_window_size_mov._width) - 6;
_parent.camera_window_size_mov._y = (_parent.camera_window_background_mov._height - _parent.camera_window_size_mov._height) - 6;
lXStart = _parent._parent._xmouse;
};
}
on (release) {
this.onMouseMove = null;
}
on (releaseOutside) {
this.onMouseMove = null;
}
Instance of Symbol 1985 MovieClip [Button] "recieve_bt" in Symbol 2490 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF8B\uFF9E\uFF83\uFF9E\uFF66\u53D7\u4FE1";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "broadcast_bt" in Symbol 2490 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF8B\uFF9E\uFF83\uFF9E\uFF66\u914D\u4FE1";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "setting_bt" in Symbol 2490 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF76\uFF92\uFF97\u8A2D\u5B9A";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2493 Button
on (press) {
control_content_mov._visible = !control_content_mov._visible;
}
Symbol 2494 MovieClip Frame 1
this.stop();
Symbol 2506 MovieClip Frame 1
function DrawVolume(ipPercent) {
this.clear();
this.beginFill(13434879, 75);
this.lineStyle(1, 13434879, 75);
this.moveTo(0, 0);
this.lineTo(180 * ipPercent, 0);
this.lineTo(180 * ipPercent, 5);
this.lineTo(0, 5);
this.lineTo(0, 0);
this.endFill();
}
this.onPress = function () {
};
this.useHandCursor = true;
DrawVolume(1);
this.onMouseDown = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
var _local4 = this._xmouse;
if (_local4 > 180) {
_local4 = 180;
}
DrawVolume(_local4 / 180);
var _local5 = new Sound(LC_RadioProcessor.GetStreamMC(_parent.mc_index));
_local5.setVolume((_local4 / 180) * 100);
_local5 = null;
}
};
Symbol 2508 MovieClip Frame 1
var lMicrophone = Microphone.get();
this.onEnterFrame = function () {
if (_parent._visible) {
this.clear();
if (!LC_AppUtils.GetRadioProcessor(_parent.mc_index).IsBroadcasting()) {
return(undefined);
}
if (lMicrophone == null) {
return(undefined);
}
var _local3 = lMicrophone.activityLevel / 100;
this.beginFill(16777215, 75);
this.lineStyle(1, 16777215, 75);
this.moveTo(0, 0);
this.lineTo(180 * _local3, 0);
this.lineTo(180 * _local3, 5);
this.lineTo(0, 5);
this.lineTo(0, 0);
this.endFill();
}
};
Instance of Symbol 1985 MovieClip [Button] "recieve_bt" in Symbol 2511 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF97\uFF81\uFF9E\uFF66\u53D7\u4FE1";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "broadcast_bt" in Symbol 2511 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF97\uFF81\uFF9E\uFF66\u914D\u4FE1";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "setting_bt" in Symbol 2511 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u9332\u97F3\u8A2D\u5B9A";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2512 MovieClip Frame 1
this.stop();
Instance of Symbol 1985 MovieClip [Button] "recieve_bt" in Symbol 2523 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF97\uFF81\uFF9E\uFF66\u53D7\u4FE1";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "broadcast_bt" in Symbol 2523 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF97\uFF81\uFF9E\uFF66\u914D\u4FE1";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "setting_bt" in Symbol 2523 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u9332\u97F3\u8A2D\u5B9A";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2524 MovieClip Frame 1
this.stop();
Symbol 2542 Button
on (press) {
status_window_content_mov._visible = !status_window_content_mov._visible;
}
Symbol 2543 MovieClip Frame 1
this.stop();
Symbol 2544 Button
on (keyPress "<Enter>") {
LC_AppUtils.GetEventProcessor().HandleEnterKey();
if (!LC_AppUtils.IsEventAcceptable()) {
return(undefined);
}
if (Key.isDown(16)) {
_root.SendMessage();
} else {
LC_NaviPanelUtils.GetMessageTextBox().replaceSel(newline);
}
}
Instance of Symbol 2444 MovieClip [UIScrollBar] "log_sb" in Symbol 2547 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
_targetInstanceName = "log_ta";
horizontal = false;
enabled = true;
visible = true;
minHeight = 1000000 /* 0x0F4240 */;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "recieve_bt" in Symbol 2558 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF97\uFF81\uFF9E\uFF66\u53D7\u4FE1";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "broadcast_bt" in Symbol 2558 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\uFF97\uFF81\uFF9E\uFF66\u914D\u4FE1";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1985 MovieClip [Button] "setting_bt" in Symbol 2558 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
icon = "";
label = "\u9332\u97F3\u8A2D\u5B9A";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 2559 MovieClip Frame 1
this.stop();