Frame 1
function dateTimeParser(dateTimeIn) {
var dateTimeOut;
dateTimeOut = Date.convertTime(dateTimeIn, "milliseconds", "hours");
if (dateTimeOut == 24) {
dateTimeOut = (Date.convertTime(dateTimeIn, "milliseconds", "days") + " ") + ltxt("LC_DAY");
} else if ((dateTimeOut > 24) && (dateTimeOut < 168)) {
dateTimeOut = (Date.convertTime(dateTimeIn, "milliseconds", "days") + " ") + ltxt("LC_DAYS");
} else if (dateTimeOut < 1) {
if (parseInt(dateTimeOut) == 1) {
dateTimeOut = (dateTimeOut + " ") + ltxt("LC_HOUR");
} else {
dateTimeOut = (Date.convertTime(dateTimeOut, "hours", "minutes") + " ") + ltxt("LC_MINUTES");
}
} else if (dateTimeOut == 168) {
dateTimeOut = (Date.convertTime(dateTimeIn, "milliseconds", "weeks") + " ") + ltxt("WEEK");
} else if (dateTimeOut >= 168) {
dateTimeOut = (Date.convertTime(dateTimeIn, "milliseconds", "weeks") + " ") + ltxt("WEEKS");
} else {
dateTimeOut = (dateTimeOut + " ") + ltxt("LC_HOURS");
}
return(dateTimeOut);
}
function calcRoundEndTime(genericTourney) {
var roundCounter = 0;
var roundCalc = new Array();
var roundEndTime;
var numRounds;
var numRoundCounter;
if (genericTourney.type == Tourney.TYPE.KNOCKOUT) {
numRounds = genericTourney.playoffRounds;
numRoundCounter = numRounds;
roundCounter = 0;
while (roundCounter <= numRounds) {
roundCalc[roundCounter] = numRoundCounter;
numRoundCounter--;
roundCounter++;
}
roundEndTime = genericTourney.startDate + (genericTourney.roundLength * roundCalc[genericTourney.currentRound]);
} else {
var tCurrentRound = genericTourney.currentRound;
if (genericTourney.type == Tourney.TYPE.LEAGUE) {
trace2("League");
if (genericTourney.playoffs) {
trace2("League playoffs");
tCurrentRound = ((genericTourney.roundCount + genericTourney.playoffRounds) - genericTourney.currentRound) - 1;
}
}
trace2("curr round: " + tCurrentRound);
roundEndTime = genericTourney.startDate + (genericTourney.roundLength * (tCurrentRound + 1));
}
return(new Date(roundEndTime));
}
function inTourneyClubs(atour) {
var homeClubId = atour.club1;
var awayClubId = atour.club2;
if (userProfile.clubId == homeClubId) {
if (atour.hostClubStatus != "open") {
return(false);
}
return(true);
}
if (userProfile.clubId == awayClubId) {
if (atour.oppClubStatus != "open") {
return(false);
}
return(true);
}
return(false);
}
function calcWinningPercentage(aplayerstatsIn) {
if (isNaN(aplayerstatsIn.games) || (isNaN(aplayerstatsIn.wins))) {
return("");
}
var gamesPlayed = parseInt(aplayerstatsIn.games);
var wins = parseInt(aplayerstatsIn.wins);
var winPerc = (wins / gamesPlayed);
if (isNaN(winPerc)) {
return("0.000");
}
if (winPerc < 1) {
if (winPerc == 0) {
winPerc = "0.000";
} else {
winPerc = main.toFixed(winPerc, 3, false);
}
} else {
winPerc = main.toFixed(winPerc, 3, true);
}
return(winPerc);
}
function calcPoints(aplayerstatsIn) {
if (isNaN(aplayerstatsIn.games) || (isNaN(aplayerstatsIn.wins))) {
return("");
}
var wins = parseInt(aplayerstatsIn.wins);
var draws = parseInt(aplayerstatsIn.ties);
return((wins * 3) + draws);
}
function calcTourneyEndDate(genericTourney) {
var numRounds = genericTourney.roundCount;
var gameEndTime = (genericTourney.startDate + (genericTourney.roundLength * numRounds));
var gameEnd = new Date(gameEndTime);
var gameEndStr = ((gameEnd.getAbbrMonthString() + " ") + gameEnd.getDate());
return(gameEndStr);
}
function calcRoundFinishTime(genericTourney, nextRound) {
var currentRound = genericTourney.currentRound;
if (nextRound) {
currentRound = currentRound + 1;
}
if (currentRound == 0) {
currentRound = 1;
}
var roundEnd = new Date(genericTourney.startDate + (currentRound * genericTourney.roundLength));
var minutes = ((roundEnd.getMinutes() < 10) ? ("0" + roundEnd.getMinutes()) : (roundEnd.getMinutes()));
var roundEndStr = ((((((((roundEnd.get12Hours() + ":") + minutes) + " ") + (roundEnd.isAM() ? (ltxt("AM")) : (ltxt("PM")))) + ", ") + roundEnd.getAbbrMonthString()) + " ") + roundEnd.getDate());
return(roundEndStr);
}
function calcRoundStartTime(genericTourney, nextRound) {
var currentRound = genericTourney.currentRound;
if (nextRound) {
currentRound = currentRound + 1;
}
if (currentRound == 0) {
currentRound = 1;
}
var roundStart = ((genericTourney.startDate + (currentRound * genericTourney.roundLength)) - genericTourney.roundLength);
var now = new Date();
if (!nextRound) {
if (roundStart < now.getTime()) {
return(0);
}
}
roundStart = new Date(roundStart);
var minutes = ((roundStart.getMinutes() < 10) ? ("0" + roundStart.getMinutes()) : (roundStart.getMinutes()));
var roundEndStr = ((((((((roundStart.get12Hours() + ":") + minutes) + " ") + (roundStart.isAM() ? (ltxt("AM")) : (ltxt("PM")))) + ", ") + roundStart.getAbbrMonthString()) + " ") + roundStart.getDate());
return(roundEndStr);
}
function callJS(functionName, params) {
var arrParams = new Array();
var i = 1;
while (i < arguments.length) {
arrParams[i - 1] = arguments[i];
i++;
}
var p = arrParams.join("','");
var js = (((("javascript:" + functionName) + "('") + p) + "')");
if (_root.bBrowserHost != null) {
getURL (js);
}
}
function callJS1(functionName, params) {
var arrParams = new Array();
var i = 1;
while (i < arguments.length) {
arrParams[i - 1] = arguments[i];
i++;
}
var p = arrParams.join("','");
p = ("'" + p) + "'";
if (_root.bBrowserHost != null) {
fscommand (functionName, p);
} else {
trace2("NULL BROWSER HOST");
}
}
function setParent(childObj) {
trace(childObj._name);
var o = childObj._parent;
trace(typeof(o));
if (typeof(o) == "movieclip") {
if (o._name != "") {
str_mcPath = (o._name + "/") + str_mcPath;
}
setParent(o);
}
}
function callJS2(strRetVariableName, strFunction, params) {
var mc = this._name;
if (mc != "") {
str_mcPath = this._name;
setParent(this);
mc = "/" + str_mcPath;
strRetVariableName = (mc + ":") + strRetVariableName;
}
var arrParams = new Array();
var i = 1;
while (i < arguments.length) {
arrParams[i - 2] = arguments[i];
i++;
}
var p = arrParams.join("','");
p = ((((((("\"" + _root.flashObjectId) + "\",\"") + strRetVariableName) + "\",\"") + strFunction) + "('") + p) + "')\"";
if (_root.bBrowserHost != null) {
fscommand ("setValueFromJSFunction", p);
}
}
function getPogoAuthUrl(url, params) {
var currentDate = new Date();
var strUrl = (((((((((((((((gblHostURL + url) + "?site=") + main.gblSite) + "&game=") + _root.gblGameSite) + "&lkey=") + _global.lkey) + "&calltime=") + currentDate.toString()) + "&sku=") + _root.gameSKU) + "&locale=") + _global.gameLanguage) + "&") + params);
return(strUrl);
}
function getNodeValue(xmlString, nodeName1, nodeName2) {
var i = xmlString.indexOf(("<" + nodeName1) + ">");
if (i == -1) {
return("");
}
if (nodeName2 != null) {
i = xmlString.indexOf(("<" + nodeName2) + ">", i);
if (i == -1) {
return("");
}
i = i + (nodeName2.length + 2);
var j = xmlString.indexOf(("</" + nodeName2) + ">", i);
} else {
i = i + (nodeName1.length + 2);
var j = xmlString.indexOf(("</" + nodeName1) + ">", i);
}
var str = xmlString.substring(i, j);
if (str.length < 1) {
return("");
}
var n = 0;
while (n < (encTable.length / 2)) {
var nindex = str.indexOf(encTable[n * 2]);
while (nindex != -1) {
str = (str.slice(0, nindex) + encTable[(n * 2) + 1]) + str.slice(nindex + encTable[n * 2].length, str.length);
nindex = str.indexOf(encTable[n * 2]);
}
n++;
}
return(str);
}
function getInstallFolder() {
var tmpStr = "";
tmpStr = unescape(_root._url);
tmpStr = tmpStr.substr(0, tmpStr.lastIndexOf("\\"));
tmpStr = tmpStr.substr(0, tmpStr.lastIndexOf("\\"));
tmpStr = tmpStr.substr(0, tmpStr.lastIndexOf("\\") + 1);
return(tmpStr);
}
function checkServerError(xml) {
if (xml.childNodes[0].nodeName == "SERVER_ERROR") {
var a = (xml.toString().indexOf("::") + 2);
var b = xml.toString().indexOf(":", a);
var ret = xml.toString().substring(a, b);
main.trace2("Server Error " + ret);
if (Number(ret) == 10008) {
main.showConfirmDialog(ltxt("ESPN_NOTICE"), onSubscriptionOkCallBack, null, "");
} else {
main.showAlertDialog(ltxt("SERVER_ERROR_" + ret));
}
main.hideLoadingScreen();
if (Number(ret) == -1) {
main.navigate(main.MI_LOGOFF);
}
return(Number(ret));
}
return(0);
}
function onSubscriptionOkCallBack() {
if (_global.gameLanguage == "pt2") {
var Langcode = "pt_BR";
} else if (_global.gameLanguage == "cz") {
var Langcode = "cs";
} else if (_global.gameLanguage == "es_mx") {
var Langcode = "es_MX";
} else {
var Langcode = _global.gameLanguage;
}
trace2((((((((_root.gblSubscriptionPageUrl + "?site=") + _root.gblSite) + "&game=") + _root.gblGameSite) + "&lkey=") + _global.lkey) + "&lang=") + Langcode);
getURL ((((((((_root.gblSubscriptionPageUrl + "?site=") + _root.gblSite) + "&game=") + _root.gblGameSite) + "&lkey=") + _global.lkey) + "&lang=") + Langcode, "_new");
trace2("Lanch complete");
}
function checkServerErrorStr(string) {
if (string.indexOf("SERVER_ERROR") != -1) {
var a = (string.indexOf("::") + 2);
var b = string.indexOf(":", a);
var ret = string.substring(a, b);
main.trace2("Server Error " + ret);
main.showAlertDialog(ltxt("SERVER_ERROR_" + ret));
main.hideLoadingScreen();
if (Number(ret) == -1) {
main.navigate(main.MI_LOGOFF);
}
return(Number(ret));
}
return(0);
}
function htmlEncode(str) {
if (str.length < 1) {
return("");
}
var n = 1;
while (n < encTable.length) {
var nindex = str.indexOf(encTable[n]);
while (nindex != -1) {
str = (str.slice(0, nindex) + encTable[n - 1]) + str.slice(nindex + 1, str.length);
nindex = str.indexOf(encTable[n], nindex + 1);
}
n = n + 2;
}
return(str);
}
function easoEncode(str) {
trace2("easoEncode is being used; please remove!");
return(str);
}
function easoDecode(str) {
trace2("easoDecode is being used; please remove!");
return(str);
}
function selectField(fieldName) {
Selection.fieldName = fieldName;
_selectFieldIntervalId = setInterval(selectFieldCallback, 300);
}
function selectFieldCallback() {
clearInterval(_selectFieldIntervalId);
Selection.setFocus(Selection.fieldName);
Selection.getFocus();
}
function addKeyListener(callbackFunction) {
_keyListener.onKeyUp = function () {
if (Key.getCode() == 13) {
callbackFunction();
}
};
Key.addListener(_keyListener);
}
function removeKeyListener() {
Key.removeListener(_keyListener);
}
function toFixed(num, nDecimals, leadingZero) {
if (isNan(num)) {
return("0");
}
if (nDecimals == 0) {
return(Math.round(num));
}
if (leadingZero == null) {
leadingZero = true;
}
var zeroString = "";
var cnt = 0;
while (cnt <= nDecimals) {
zeroString = zeroString + "0";
cnt++;
}
if (Number(num) == 0) {
var zeros = ((leadingZero ? "0." : ".") + zeroString);
zeros = zeros.substring(0, (nDecimals + 1) + (leadingZero ? 1 : 0));
return(zeros);
}
var n1 = String(Math.round(num * Math.pow(10, nDecimals)) / Math.pow(10, nDecimals));
var cnt = n1.indexOf(".");
if (cnt == -1) {
cnt = n1.length;
n1 = n1 + ".";
}
if ((((cnt == 1) && (Number(n1) < 1)) && (!leadingZero)) && (Number(n1) > 0)) {
cnt = cnt - 1;
n1 = n1.substr(1);
}
n1 = n1 + zeroString;
cnt = cnt + (nDecimals + 1);
return(n1.substr(0, cnt));
}
function getHeadShotFromProfileObj(pObj) {
var profileCard = parseInt(pObj.profileCard);
if (profileCard < 0) {
return("../../commonImages/cards/default.jpg");
}
return(("../../commonImages/cards/" + profileCard) + "a.jpg");
}
function getCardImageFromProfileObj(pObj) {
var profileCard = parseInt(pObj.profileCard);
if (profileCard < 0) {
return("../../commonImages/cards/default.jpg");
}
return(("../../commonImages/cards/" + profileCard) + ".jpg");
}
var Tourney = _root.Tourney;
var TourneyGame = _root.TourneyGame;
var TourneyPlayer = _root.TourneyPlayer;
var TourneyStats_NFL = _root.TourneyStats_NFL;
var TourneyStats_TW = _root.TourneyStats_TW;
var TourneyStats_FIFA = _root.TourneyStats_FIFA;
var TourneyStats_WC = _root.TourneyStats_WC;
var TourneyStats_NHL = _root.TourneyStats_NHL;
var TourneyStats_MVP = _root.TourneyStats_MVP;
var TourneyStats_NBA = _root.TourneyStats_NBA;
var NextTourneyGame = _root.NextTourneyGame;
var userTourneys = _global.userTourneys;
var userMyTourneys = _global.userMyTourneys;
var userNextTourneyGames = _global.userNextTourneyGames;
var tourneyDM = _global.tourneyDM;
var TOURNAMENT_MAX = 10;
var TOURNAMENT_CREATE_MAX = 5;
var LEAGUE_MAX = 10;
var LEAGUE_CREATE_MAX = 5;
var MAX_ROUNDS = 6;
var regionLabelArray = new Array(ltxt("All"), "---", ltxt("AMERICAS"), ltxt("EUROPE"), ltxt("KOREA"), "---", ltxt("AUSTRALIA"), ltxt("AUSTRIA"), ltxt("BELGIUM"), ltxt("BRAZIL"), ltxt("CANADA"), ltxt("CZECH_REP"), ltxt("DENMARK"), ltxt("FINLAND"), ltxt("FRANCE"), ltxt("GERMANY"), ltxt("GREECE"), ltxt("HUNGARY"), ltxt("ICELAND"), ltxt("ISRAEL"), ltxt("ITALY"), ltxt("JAPAN"), ltxt("MEXICO"), ltxt("NETHERLANDS"), ltxt("NORWAY"), ltxt("POLAND"), ltxt("PORTUGAL"), ltxt("RUSSIA"), ltxt("SOUTH_KOREA"), ltxt("SPAIN"), ltxt("SWEDEN"), ltxt("SWITZERLAND"), ltxt("TURKEY"), ltxt("UNITED_KINGDOM"), ltxt("UNITED_STATES"), "---", ltxt("OTHER"));
var regionDataArray = new Array("All", "---", "Americas", "Europe", "Korea", "---", "au", "at", "be", "br", "ca", "cz", "dk", "fi", "fr", "de", "gr", "hu", "is", "il", "it", "jp", "mx", "nl", "no", "pl", "pt", "ru", "kr", "es", "se", "ch", "tr", "uk", "us", "---", "Other");
var americasArray = new Array("Americas", "br", "ca", "mx", "us");
var europeArray = new Array("Europe", "at", "be", "cz", "dk", "fi", "fr", "de", "gr", "hu", "is", "it", "nl", "no", "pl", "pt", "ru", "es", "se", "ch", "tr", "uk");
var koreaArray = new Array("Korea", "kr");
var str_mcPath;
var encTable = ["&", "&", "<", "<", ">", ">", """, "\"", "'", "'"];
_root.gblInstallFolder = getInstallFolder();
var _keyListener = new Object();
this._visible = false;
var MOVIE_CLIP = this;
var tSelectedTourney = null;
var noGamesLoaded = false;
var ntgCurrentGame = null;
var ROOT_MOVIE_CLIP = _parent;
var navigateFunc = null;
Instance of Symbol 110 Imported [easoButtonS] "btnPlayNow" in Frame 1
//component parameters
onClipEvent (initialize) {
label = "BTN_PLAY_NOW";
bLocalize = true;
bcolor = "blue";
}
Instance of Symbol 110 Imported [easoButtonS] "btnRefresh" in Frame 1
//component parameters
onClipEvent (initialize) {
label = "BTN_REFRESH";
bLocalize = true;
bcolor = "blue";
}
Instance of Symbol 110 Imported [easoButtonS] "btnCreateGame" in Frame 1
//component parameters
onClipEvent (initialize) {
label = "BTN_PLAY_NOW";
bLocalize = true;
bcolor = "blue";
}
Instance of Symbol 110 Imported [easoButtonS] "btnQuit" in Frame 1
//component parameters
onClipEvent (initialize) {
label = "BTN_QUIT";
bLocalize = true;
bcolor = "grey";
}
Instance of Symbol 123 Imported [easoButtonMedium] "btnDetail" in Frame 1
//component parameters
onClipEvent (initialize) {
label = "BTN_DETAILS_AND_SCHEDULE";
bLocalize = true;
bcolor = "blue";
}
Instance of Symbol 79 MovieClip [FComboBoxSymbol] "cmbOpenCurrentGames" in Frame 1
//component parameters
onClipEvent (initialize) {
editable = false;
rowCount = 8;
changeHandler = "";
}
Frame 2
function getNoGamesLoaded() {
if (!noGamesLoaded) {
MOVIE_CLIP.createEmptyMovieClip("tourneyNoGame", 10);
MOVIE_CLIP.tourneyNoGame._visible = false;
MOVIE_CLIP.tourneyNoGame.loadMovie("../tourney/tourneyNoGame.swf");
MOVIE_CLIP.tourneyNoGame._x = 0;
MOVIE_CLIP.tourneyNoGame._y = 50;
noGamesLoaded = true;
}
return(MOVIE_CLIP.tourneyNoGame);
}
function initGUI() {
getNoGamesLoaded();
imgLock._visible = false;
imgAwayTeamLogo._visible = false;
imgHomeTeamLogo._visible = false;
btnCreateGame._visible = false;
btnPlayNow._visible = false;
btnRefresh._visible = false;
btnRatings._visible = false;
p11._visible = false;
p12._visible = false;
p13._visible = false;
p21._visible = false;
p22._visible = false;
p23._visible = false;
lblVersus.setFont(tfN8);
btnRatings.txtRatings.setFont(tfN6);
lblAwayName.setFont(tfN1);
lblAwayStatus.setFont(tfN1);
lblAwayRating.setFont(tfN1);
lblAwayDisconnects.setFont(tfN1);
lblAwayPing.setFont(tfN1);
lblHomeName.setFont(tfN1);
lblHomeStatus.setFont(tfN1);
lblHomeRating.setFont(tfN1);
lblHomeDisconnects.setFont(tfN1);
lblHomePing.setFont(tfN1);
lblPurse.setFont(tfN6);
lblAwayTeam.setFont(tfN7);
lblHomeTeam.setFont(tfN7);
purseDisplay.lbltotalPurse.setFont(tfN1);
btnRatings.txtRatings.text = ltxt("TAB_RATINGS");
lblVersus.text = ltxt("UC_VERSUS");
lblAwayName.text = ltxt("AWAY:");
lblAwayStatus.text = ltxt("STATUS:");
lblAwayRating.text = ltxt("RATING:");
lblAwayDisconnects.text = ltxt("DISCONNECTS:");
lblAwayPing.text = ltxt("PING:");
lblHomeName.text = ltxt("HOME:");
lblHomeStatus.text = ltxt("STATUS:");
lblHomeRating.text = ltxt("RATING:");
lblHomeDisconnects.text = ltxt("DISCONNECTS:");
lblHomePing.text = ltxt("PING:");
lblPurse.text = ltxt("PURSE");
}
function loadTourneyData() {
fillOpenCombo();
ROOT_MOVIE_CLIP.fillOpenTable();
}
function fillOpenCombo() {
var myTourneysCount = _global.userMyTourneys.getLength();
cmbOpenCurrentGames.removeAll();
var x = 0;
while (x < myTourneysCount) {
var tour = _global.userMyTourneys.getItem(x);
if (tour.type == Tourney.TYPE.KNOCKOUT) {
if (tour.status != Tourney.STATUS.CREATED) {
var dateTime = calcRoundEndTime(tour);
var ampm = (dateTime.isAM() ? (ltxt("UC_AM")) : (ltxt("UC_PM")));
var minutes = ((dateTime.getMinutes() < 10) ? ("0" + dateTime.getMinutes()) : (dateTime.getMinutes()));
var label = ((((((((((((((tour.name + ", ") + ltxt("FINISH_BY:")) + " ") + dateTime.getAbbrDayString(dateTime.getDay())) + ", ") + dateTime.getDate()) + " ") + dateTime.getAbbrMonthString()) + ", ") + dateTime.get12Hours()) + ":") + minutes) + " ") + ampm);
cmbOpenCurrentGames.addItem(label, tour);
}
}
x++;
}
cmbOpenCurrentGames.setChangeHandler("cmbOpenCurrentGamesHandler");
}
function setNextGame(atour) {
lblHomeRating.text = ltxt("RATING:");
lblHomeDisconnects.text = ltxt("DISCONNECTS:");
lblHomePing.text = ltxt("PING:");
lblAwayRating.text = ltxt("RATING:");
lblAwayDisconnects.text = ltxt("DISCONNECTS:");
lblAwayPing.text = ltxt("PING:");
btnPlayNow._visible = false;
btnCreateGame._visible = false;
cmbOpenCurrentGames._visible = true;
cmbCVCCurrentGames._visible = false;
var x = 0;
while (x < cmbOpenCurrentGames.getLength()) {
if (atour.id == cmbOpenCurrentGames.getItemAt(x).data.id) {
cmbOpenCurrentGames.setSelectedIndex(x);
}
x++;
}
}
function cmbOpenCurrentGamesHandler(component) {
fillNextOpenGame();
}
function fillNextOpenGame() {
main.showLoadingScreen();
tSelectedTourney = cmbOpenCurrentGames.getSelectedItem().data;
if (tSelectedTourney.status == main.Tourney.STATUS.CREATED) {
enableControls(false);
getNoGamesLoaded()._visible = true;
getNoGamesLoaded().txtNoTourneyGame.text = ltxt("TOURNAMENT_HAS_NOT_STARTED_YET");
getNoGamesLoaded().txtNoTourneyGame2.text = (ltxt("TOURNAMENT_START_DATE_TIME:") + " ") + main.formatDate(tSelectedTourney.startDate);
main.hideLoadingScreen();
return(undefined);
}
enableControls(true);
MOVIE_CLIP._parent.highlightCurrentRow(tSelectedTourney);
var totalPurseBeforeBank = (tSelectedTourney.entryFee * tSelectedTourney.memberCount);
var totalPurse = (totalPurseBeforeBank - (totalPurseBeforeBank * 0.1));
lblPurse.text = ltxt("PURSE:");
purseDisplay.lbltotalPurse.text = Math.round(totalPurse);
(tSelectedTourney.isPrivate ? (imgLock.lockIt()) : (imgLock.unlockIt()));
imgLock._visible = true;
userNextTourneyGames.removeAll();
main.tourneyDM.getMyNextGame(tSelectedTourney, _getMyNextGameCallBack);
}
function _getMyNextGameCallBack(bSuccess) {
if (bSuccess) {
if ((tSelectedTourney.memberStatus == Tourney.STATUS.KNOCKEDOUT) || (isNaN(userNextTourneyGames.getItem(0).id))) {
enableControls(false);
getNoGamesLoaded().txtNoTourneyGame.text = ltxt("HAVE_NO_SCHEDULED_GAMES_CURRENT_ROUND");
getNoGamesLoaded().txtNoTourneyGame2.text = "";
getNoGamesLoaded()._visible = true;
MOVIE_CLIP._visible = true;
main.hideLoadingScreen();
} else {
enableControls(true);
getNoGamesLoaded()._visible = false;
showNextGame(userNextTourneyGames.getItem(0));
}
} else {
main.hideLoadingScreen();
main.showAlertDialog("\n****ERROR MY NEXT GAMES NOT RETURNED FROM SERVER****");
}
}
function showNextGame(gameIn) {
ntgCurrentGame = gameIn;
ntgCurrentGame.isRanked = tSelectedTourney.isRanked;
ntgCurrentGame.isProPlay = tSelectedTourney.isProPlay;
ROOT_MOVIE_CLIP.ntgCurrentGame = ntgCurrentGame;
if (main.currentFlashEventHandler != main.defaultFlashEventHandler) {
callJS1("spWrap.setFlashEventListener", main.defaultFlashEventHandler);
main.currentFlashEventHandler = main.defaultFlashEventHandler;
}
ROOT_MOVIE_CLIP.getTabpaneTourneyNextGame()._visible = true;
ROOT_MOVIE_CLIP.initialize(_tourneyRoomsCallBack);
main.hideLoadingScreen();
}
function _tourneyRoomsCallBack(bSuccess, sXML) {
if (bSuccess) {
ROOT_MOVIE_CLIP.xmlRooms.parseXML(sXML);
connectToRoom();
} else {
main.hideLoadingScreen();
main.showAlertDialog("\n****ERROR ROOMS NOT RETURNED FROM SERVER****");
}
}
function connectToRoom() {
var roomCollection = null;
var roomList = null;
var numRooms = null;
var roomKey = null;
ROOT_MOVIE_CLIP.spWrapperObject = new _root.SportsWrapper(ROOT_MOVIE_CLIP.xmlRooms, ROOT_MOVIE_CLIP.sRoomFilter);
ROOT_MOVIE_CLIP.mpEvent = new _root.EventObject(ROOT_MOVIE_CLIP.spWrapperObject);
ROOT_MOVIE_CLIP.mpEvent.processGuiEvent = ROOT_MOVIE_CLIP.processGuiEvent;
roomList = ROOT_MOVIE_CLIP.spWrapperObject.getRoomList();
numRooms = roomList.getLength();
if (numRooms) {
roomsCollection = roomList.getRooms();
ROOT_MOVIE_CLIP.riMatchupRoom = roomsCollection.getItemByIndex((tSelectedTourney.id + 1000) % numRooms);
var meAsPlayer = _root.getMyPlayerObject();
meAsPlayer.secret = tSelectedTourney.id;
ROOT_MOVIE_CLIP.spWrapperObject.getPlayerList().setSecretFilter(tSelectedTourney.id);
ROOT_MOVIE_CLIP.spWrapperObject.setCurrentRoom(ROOT_MOVIE_CLIP.riMatchupRoom.key, tSelectedTourney.id);
fillGameForm();
ROOT_MOVIE_CLIP.prepareGame(_profileCallBack);
} else {
main.hideLoadingScreen();
main.showAlertDialog("\n****ERROR NO ROOMS AVAILABLE****");
}
}
function _profileCallBack(userProfileIn) {
if (parseInt(ntgCurrentGame.homeUserID) == parseInt(userProfileIn.id)) {
ntgCurrentGame.homeUserProfile = userProfileIn;
ntgCurrentGame.awayUserProfile = userProfile;
} else if (parseInt(ntgCurrentGame.awayUserID) == parseInt(userProfileIn.id)) {
ntgCurrentGame.homeUserProfile = userProfile;
ntgCurrentGame.awayUserProfile = userProfileIn;
}
var mpGamePlayers = ROOT_MOVIE_CLIP.getMatchupGamePlayers(ntgCurrentGame.homeTeamID, ntgCurrentGame.awayTeamID);
if (mpGamePlayers) {
if (mpGamePlayers[0] != null) {
lblHomeRating.text = (ltxt("RATING:") + " ") + mpGamePlayers[0].playerObject.prating;
lblHomeDisconnects.text = ((ltxt("DISCONNECTS:") + " ") + mpGamePlayers[0].playerObject.pdisconnects) + "%";
}
if (mpGamePlayers[1] != null) {
lblAwayRating.text = (ltxt("RATING:") + " ") + mpGamePlayers[1].playerObject.prating;
lblAwayDisconnects.text = ((ltxt("DISCONNECTS:") + " ") + mpGamePlayers[1].playerObject.pdisconnects) + "%";
}
}
}
function fillGameForm() {
lblAwayName.text = (ltxt("AWAY:") + " ") + ntgCurrentGame.awayUserName;
lblAwayTeam.text = main.getTeamName(ntgCurrentGame.awayTeamID);
var strUrl = (_root.gblHostURL + "tournament/set_next_game_status.jsp");
var strParams = (("matchID=" + ntgCurrentGame.id) + "&ready=true");
strUrl = getPogoAuthUrl(strUrl, strParams);
dummyXML = new XML();
dummyXML.ignoreWhite = true;
trace2("I'm here and should win if he doesn't show, calling JSP: " + strUrl);
dummyXML.load(strUrl);
TeamLogoL.imgAwayTeamLogo.loadMovie(_root.getTeamImage(ntgCurrentGame.awayTeamID));
if (ntgCurrentGame.awayUserName == main.userProfile.name) {
imgAwayUser.loadMovie(_root.getSmallProfileImage(main.userProfile.profileCard));
} else {
imgAwayUser.loadMovie(_root.getSmallProfileImage(ntgCurrentGame.awayProfileCard));
}
lblAwayStatus.text = ltxt("NOT_READY");
if (lblAwayName.textWidth > 155) {
awayNameCM._x = lblAwayName._x + 155;
} else {
awayNameCM._x = (lblAwayName._x + lblAwayName.textWidth) + 5;
}
awayNameCM._visible = true;
lblHomeName.text = (ltxt("HOME:") + " ") + ntgCurrentGame.homeUserName;
lblHomeTeam.text = main.getTeamName(ntgCurrentGame.homeTeamID);
TeamLogoR.imgHomeTeamLogo.loadMovie(_root.getTeamImage(ntgCurrentGame.homeTeamID));
if (ntgCurrentGame.homeUserName == main.userProfile.name) {
imgHomeUser.loadMovie(_root.getSmallProfileImage(main.userProfile.profileCard));
} else {
imgHomeUser.loadMovie(_root.getSmallProfileImage(ntgCurrentGame.homeProfileCard));
}
lblHomeStatus.text = ltxt("NOT_READY");
if (lblHomeName.textWidth > 155) {
homeNameCM._x = lblHomeName._x + 155;
} else {
homeNameCM._x = (lblHomeName._x + lblHomeName.textWidth) + 5;
}
homeNameCM._visible = true;
main.hideLoadingScreen();
}
function enableControls(boolean) {
lblAwayTeam._visible = boolean;
lblAwayName._visible = boolean;
lblAwayRating._visible = boolean;
lblAwayDisconnects._visible = boolean;
lblAwayPing._visible = boolean;
lblAwayStatus._visible = boolean;
lblHomeStatus._visible = boolean;
lblHomeTeam._visible = boolean;
lblHomeName._visible = boolean;
lblHomeRating._visible = boolean;
lblHomeDisconnects._visible = boolean;
lblHomePing._visible = boolean;
if (boolean) {
p11._alpha = 100;
p12._alpha = 100;
p13._alpha = 100;
p21._alpha = 100;
p22._alpha = 100;
p23._alpha = 100;
imgAwayUser._alpha = 100;
imgHomeUser._alpha = 100;
} else {
p11._alpha = 0;
p12._alpha = 0;
p13._alpha = 0;
p21._alpha = 0;
p22._alpha = 0;
p23._alpha = 0;
imgAwayUser._alpha = 0;
imgHomeUser._alpha = 0;
}
TeamLogoL._visible = boolean;
TeamLogoR._visible = boolean;
imgLock._visible = boolean;
awayNameCM._visible = boolean;
homeNameCM._visible = boolean;
lblVersus._visible = boolean;
if (_global.gblGameId == "CHAMPIONS") {
btnRatings._visible = false;
} else {
btnRatings._visible = boolean;
}
lblPurse._visible = boolean;
purseDisplay._visible = boolean;
bgLaunched._visible = boolean;
g_centerBack._visible = boolean;
}
function gameCancelled() {
ROOT_MOVIE_CLIP.spWrapperObject.leaveCurrentGame();
navigateFunc = setInterval(gotoLobby, 500);
}
function gotoLobby() {
clearInterval(navigateFunc);
main.setBrowserState("");
_root.mcContent1.loadOpenTourneys();
}
function _onOkCallBack() {
main.showLoadingScreen();
main.tourneyDM.leaveTourney(tSelectedTourney, _leaveTourneyCallBack);
}
function _leaveTourneyCallBack(bSuccess) {
if (bSuccess) {
main.navigate("5010");
}
}
stop();
initGUI();
ROOT_MOVIE_CLIP.movieHasLoaded("next game");
btnRatings.onPress = function () {
_root.mcContent1.handleTeamRatings();
};
btnCreateGame.onPress = function () {
_root.setBrowserState(_global.tourneyBrowserState[_global.tourneyTab]);
main.showLoadingScreen(gameCancelled, null, false);
lblHomeStatus.text = ltxt("READY");
lblAwayStatus.text = ltxt("NOT_READY");
ROOT_MOVIE_CLIP.createGame();
};
btnPlayNow.onPress = function () {
main.showLoadingScreen();
_root.setBrowserState(_global.tourneyBrowserState[_global.tourneyTab]);
var playerInfo = ROOT_MOVIE_CLIP.spWrapperObject.getMyselfAsPlayer();
playerInfo.playerObject.leagueId = ntgCurrentGame.awayLeagueID;
playerInfo.teamId = ntgCurrentGame.awayTeamID;
errCode = ROOT_MOVIE_CLIP.spWrapperObject.joinGame(ROOT_MOVIE_CLIP.giMatchupGame, playerInfo);
if (errCode > 0) {
main.hideLoadingScreen();
if (errCode == _root.ERR_GAME_VERION_MISMATCH) {
_root.showError(_root.ERR_GAME_VERION_MISMATCH, "ALERT_MATCHUP_MISSMATCH");
} else {
_root.showError(errCode, "ERR_GENERAL_2");
}
}
};
btnDetail.onPress = function () {
_root.mcDialog.loadMovie("../../commonSWF/tourney/tourneyDetails.swf");
};
btnQuit.onPress = function () {
main.showConfirmDialog(ltxt("ALERT_QUIT_TOURNAMENT"), _onOkCallBack, _onCancelCallBack, ltxt("UC_ALERT"));
};
homeNameCM.onPress = function () {
var hostName = ntgCurrentGame.homeUserName;
var hostId = ntgCurrentGame.homeUserID;
if ((hostName == null) || (hostId == null)) {
return(undefined);
}
main.showUserCM(main._xmouse, main._ymouse, hostName, hostId);
};
awayNameCM.onPress = function () {
var hostName = ntgCurrentGame.awayUserName;
var hostId = ntgCurrentGame.awayUserID;
if ((hostName == null) || (hostId == null)) {
return(undefined);
}
main.showUserCM(main._xmouse, main._ymouse, hostName, hostId);
};
Symbol 11 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(frame5, "face");
component.registerSkinElement(frame3, "shadow");
component.registerSkinElement(frame1, "darkshadow");
component.registerSkinElement(frame4, "highlight");
component.registerSkinElement(frame2, "highlight3D");
Symbol 17 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(frame5, "face");
component.registerSkinElement(frame3, "shadow");
component.registerSkinElement(frame1, "darkshadow");
component.registerSkinElement(frame4, "highlight");
component.registerSkinElement(frame2, "highlight3D");
Symbol 23 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(frame5, "face");
component.registerSkinElement(frame4, "shadow");
component.registerSkinElement(frame2, "darkshadow");
component.registerSkinElement(frame3, "highlight");
component.registerSkinElement(frame1, "highlight3D");
Symbol 29 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(frame5, "face");
component.registerSkinElement(frame3, "shadow");
component.registerSkinElement(frame1, "darkshadow");
component.registerSkinElement(frame4, "highlight");
component.registerSkinElement(frame2, "highlight3D");
Symbol 30 MovieClip [fpb_states] Frame 1
stop();
Symbol 30 MovieClip [fpb_states] Frame 2
stop();
Symbol 30 MovieClip [fpb_states] Frame 3
stop();
Symbol 30 MovieClip [fpb_states] Frame 4
stop();
Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent;
component.registerSkinElement(boundingBox, "background");
stop();
Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled");
stop();
Symbol 37 MovieClip [FPushButtonSymbol] Frame 1
#initclip 6
function FPushButtonClass() {
this.init();
}
FPushButtonClass.prototype = new FUIComponentClass();
Object.registerClass("FPushButtonSymbol", FPushButtonClass);
FPushButtonClass.prototype.init = function () {
super.setSize(this._width, this._height);
this.boundingBox_mc.unloadMovie();
this.attachMovie("fpb_states", "fpbState_mc", 1);
this.attachMovie("FLabelSymbol", "fLabel_mc", 2);
this.attachMovie("fpb_hitArea", "fpb_hitArea_mc", 3);
super.init();
this.btnState = false;
this.setClickHandler(this.clickHandler);
this._xscale = 100;
this._yscale = 100;
this.setSize(this.width, this.height);
if (this.label != undefined) {
this.setLabel(this.label);
}
this.ROLE_SYSTEM_PUSHBUTTON = 43;
this.STATE_SYSTEM_PRESSED = 8;
this.EVENT_OBJECT_STATECHANGE = 32778;
this.EVENT_OBJECT_NAMECHANGE = 32780;
this._accImpl.master = this;
this._accImpl.stub = false;
this._accImpl.get_accRole = this.get_accRole;
this._accImpl.get_accName = this.get_accName;
this._accImpl.get_accState = this.get_accState;
this._accImpl.get_accDefaultAction = this.get_accDefaultAction;
this._accImpl.accDoDefaultAction = this.accDoDefaultAction;
};
FPushButtonClass.prototype.setHitArea = function (w, h) {
var hit = this.fpb_hitArea_mc;
this.hitArea = hit;
hit._visible = false;
hit._width = w;
hit._height = ((arguments.length > 1) ? (h) : (hit._height));
};
FPushButtonClass.prototype.setSize = function (w, h) {
w = ((w < 6) ? 6 : (w));
if (arguments.length > 1) {
if (h < 6) {
h = 6;
}
}
super.setSize(w, h);
this.setLabel(this.getLabel());
this.arrangeLabel();
this.setHitArea(w, h);
this.boundingBox_mc._width = w;
this.boundingBox_mc._height = h;
this.drawFrame();
if (this.focused) {
super.myOnSetFocus();
}
this.initContentPos("fLabel_mc");
};
FPushButtonClass.prototype.arrangeLabel = function () {
var label = this.fLabel_mc;
var h = this.height;
var w = (this.width - 2);
var b = 1;
this.fLabel_mc.setSize(w - (b * 4));
label._x = b * 3;
label._y = (h / 2) - (label._height / 2);
};
FPushButtonClass.prototype.getLabel = function () {
return(this.fLabel_mc.labelField.text);
};
FPushButtonClass.prototype.setLabel = function (label) {
this.fLabel_mc.setLabel(label);
this.txtFormat();
this.arrangeLabel();
if (Accessibility.isActive()) {
Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE);
}
};
FPushButtonClass.prototype.getEnabled = function () {
return(this.enabled);
};
FPushButtonClass.prototype.setEnabled = function (enable) {
if (enable || (enable == undefined)) {
this.gotoFrame(1);
this.drawFrame();
this.flabel_mc.setEnabled(true);
this.enabled = true;
super.setEnabled(true);
} else {
this.gotoFrame(4);
this.drawFrame();
this.flabel_mc.setEnabled(false);
this.enabled = false;
super.setEnabled(false);
}
};
FPushButtonClass.prototype.txtFormat = function () {
var txtS = this.textStyle;
var sTbl = this.styleTable;
txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = "center")) : undefined);
txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 1)) : undefined);
txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 1)) : undefined);
if (this.fLabel_mc._height > this.height) {
super.setSize(this.width, this.fLabel_mc._height);
} else {
super.setSize(this.width, this.height);
}
this.fLabel_mc.labelField.setTextFormat(this.textStyle);
this.setEnabled(this.enable);
};
FPushButtonClass.prototype.drawFrame = function () {
var b = 1;
var x1 = 0;
var y1 = 0;
var x2 = this.width;
var y2 = this.height;
var mc_array = ["up_mc", "over_mc", "down_mc", "disabled_mc"];
var frame = mc_array[this.fpbState_mc._currentframe - 1];
var mc = "frame";
var i = 0;
while (i < 6) {
x1 = x1 + ((i % 2) * b);
y1 = y1 + ((i % 2) * b);
x2 = x2 - (((i + 1) % 2) * b);
y2 = y2 - (((i + 1) % 2) * b);
var w = (Math.abs(x1 - x2) + (2 * b));
var h = (Math.abs(y1 - y2) + (2 * b));
this.fpbState_mc[frame][mc + i]._width = w;
this.fpbState_mc[frame][mc + i]._height = h;
this.fpbState_mc[frame][mc + i]._x = x1 - b;
this.fpbState_mc[frame][mc + i]._y = y1 - b;
i++;
}
};
FPushButtonClass.prototype.setClickHandler = function (chng, obj) {
this.handlerObj = ((arguments.length < 2) ? (this._parent) : (obj));
this.clickHandler = chng;
};
FPushButtonClass.prototype.executeCallBack = function () {
this.handlerObj[this.clickHandler](this);
};
FPushButtonClass.prototype.initContentPos = function (mc) {
this.incrVal = 1;
this.initx = this[mc]._x - (this.getBtnState() * this.incrVal);
this.inity = this[mc]._y - (this.getBtnState() * this.incrVal);
this.togx = this.initx + this.incrVal;
this.togy = this.inity + this.incrVal;
};
FPushButtonClass.prototype.setBtnState = function (state) {
this.btnState = state;
if (state) {
this.fLabel_mc._x = this.togx;
this.fLabel_mc._y = this.togy;
} else {
this.fLabel_mc._x = this.initx;
this.fLabel_mc._y = this.inity;
}
};
FPushButtonClass.prototype.getBtnState = function () {
return(this.btnState);
};
FPushButtonClass.prototype.myOnSetFocus = function () {
this.focused = true;
super.myOnSetFocus();
};
FPushButtonClass.prototype.onPress = function () {
this.pressFocus();
this.fpbState_mc.gotoAndStop(3);
this.drawFrame();
this.setBtnState(true);
if (Accessibility.isActive()) {
Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true);
}
};
FPushButtonClass.prototype.onRelease = function () {
this.fpbState_mc.gotoAndStop(2);
this.drawFrame();
this.executeCallBack();
this.setBtnState(false);
if (Accessibility.isActive()) {
Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true);
}
};
FPushButtonClass.prototype.onRollOver = function () {
this.fpbState_mc.gotoAndStop(2);
this.drawFrame();
};
FPushButtonClass.prototype.onRollOut = function () {
this.fpbState_mc.gotoAndStop(1);
this.drawFrame();
};
FPushButtonClass.prototype.onReleaseOutside = function () {
this.setBtnState(false);
this.fpbState_mc.gotoAndStop(1);
this.drawFrame();
};
FPushButtonClass.prototype.onDragOut = function () {
this.setBtnState(false);
this.fpbState_mc.gotoAndStop(1);
this.drawFrame();
};
FPushButtonClass.prototype.onDragOver = function () {
this.setBtnState(true);
this.fpbState_mc.gotoAndStop(3);
this.drawFrame();
};
FPushButtonClass.prototype.myOnKeyDown = function () {
if ((Key.getCode() == 32) && (this.pressOnce == undefined)) {
this.onPress();
this.pressOnce = 1;
}
};
FPushButtonClass.prototype.myOnKeyUp = function () {
if (Key.getCode() == 32) {
this.onRelease();
this.pressOnce = undefined;
}
};
FPushButtonClass.prototype.get_accRole = function (childId) {
return(this.master.ROLE_SYSTEM_PUSHBUTTON);
};
FPushButtonClass.prototype.get_accName = function (childId) {
return(this.master.getLabel());
};
FPushButtonClass.prototype.get_accState = function (childId) {
if (this.pressOnce) {
return(this.master.STATE_SYSTEM_PRESSED);
}
return(this.master.STATE_SYSTEM_DEFAULT);
};
FPushButtonClass.prototype.get_accDefaultAction = function (childId) {
return("Press");
};
FPushButtonClass.prototype.accDoDefaultAction = function (childId) {
this.master.onPress();
this.master.onRelease();
};
#endinitclip
boundingBox_mc._visible = false;
deadPreview._visible = false;
Symbol 40 MovieClip [FLabelSymbol] Frame 1
#initclip 1
_global.FLabelClass = function () {
if (this.hostComponent == undefined) {
this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller));
}
if (this.customTextStyle == undefined) {
if (this.hostComponent.textStyle == undefined) {
this.hostComponent.textStyle = new TextFormat();
}
this.textStyle = this.hostComponent.textStyle;
this.enable = true;
}
};
FLabelClass.prototype = new MovieClip();
Object.registerClass("FLabelSymbol", FLabelClass);
FLabelClass.prototype.setLabel = function (label) {
var val = this.hostComponent.styleTable.embedFonts.value;
if (val != undefined) {
this.labelField.embedFonts = val;
}
this.labelField.setNewTextFormat(this.textStyle);
this.labelField.text = label;
this.labelField._height = this.labelField.textHeight + 2;
};
FLabelClass.prototype.setSize = function (width) {
this.labelField._width = width;
};
FLabelClass.prototype.setEnabled = function (enable) {
this.enable = enable;
var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value;
if (tmpColor == undefined) {
tmpColor = (enable ? 0 : 8947848);
}
this.setColor(tmpColor);
};
FLabelClass.prototype.getLabel = function () {
return(this.labelField.text);
};
FLabelClass.prototype.setColor = function (col) {
this.labelField.textColor = col;
};
#endinitclip
Symbol 42 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller;
component.registerSkinElement(highlight_mc, "selection");
stop();
Symbol 42 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled");
stop();
Symbol 42 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused");
stop();
Symbol 43 MovieClip [FUIComponentSymbol] Frame 1
#initclip 2
function FUIComponentClass() {
this.init();
}
FUIComponentClass.prototype = new MovieClip();
FUIComponentClass.prototype.init = function () {
this.enable = true;
this.focused = false;
this.useHandCursor = false;
this._accImpl = new Object();
this._accImpl.stub = true;
this.styleTable = new Array();
if (_global.globalStyleFormat == undefined) {
_global.globalStyleFormat = new FStyleFormat();
globalStyleFormat.isGlobal = true;
_global._focusControl = new Object();
_global._focusControl.onSetFocus = function (oldFocus, newFocus) {
oldFocus.myOnKillFocus();
newFocus.myOnSetFocus();
};
Selection.addListener(_global._focusControl);
}
if (this._name != undefined) {
this._focusrect = false;
this.tabEnabled = true;
this.focusEnabled = true;
this.tabChildren = false;
this.tabFocused = true;
if (this.hostStyle == undefined) {
globalStyleFormat.addListener(this);
} else {
this.styleTable = this.hostStyle;
}
this.deadPreview._visible = false;
this.deadPreview._width = (this.deadPreview._height = 1);
this.methodTable = new Object();
this.keyListener = new Object();
this.keyListener.controller = this;
this.keyListener.onKeyDown = function () {
this.controller.myOnKeyDown();
};
this.keyListener.onKeyUp = function () {
this.controller.myOnKeyUp();
};
for (var i in this.styleFormat_prm) {
this.setStyleProperty(i, this.styleFormat_prm[i]);
}
}
};
FUIComponentClass.prototype.setEnabled = function (enabledFlag) {
this.enable = ((arguments.length > 0) ? (enabledFlag) : true);
this.tabEnabled = (this.focusEnabled = enabledFlag);
if ((!this.enable) && (this.focused)) {
Selection.setFocus(undefined);
}
};
FUIComponentClass.prototype.getEnabled = function () {
return(this.enable);
};
FUIComponentClass.prototype.setSize = function (w, h) {
this.width = w;
this.height = h;
this.focusRect.removeMovieClip();
};
FUIComponentClass.prototype.setChangeHandler = function (chng, obj) {
this.handlerObj = ((obj == undefined) ? (this._parent) : (obj));
this.changeHandler = chng;
};
FUIComponentClass.prototype.invalidate = function (methodName) {
this.methodTable[methodName] = true;
this.onEnterFrame = this.cleanUI;
};
FUIComponentClass.prototype.cleanUI = function () {
if (this.methodTable.setSize) {
this.setSize(this.width, this.height);
} else {
this.cleanUINotSize();
}
this.methodTable = new Object();
delete this.onEnterFrame;
};
FUIComponentClass.prototype.cleanUINotSize = function () {
for (var funct in this.methodTable) {
this[funct]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var inner = this.styleTable.focusRectInner.value;
var outer = this.styleTable.focusRectOuter.value;
if (inner == undefined) {
inner = 16777215 /* 0xFFFFFF */;
}
if (outer == undefined) {
outer = 0;
}
this.createEmptyMovieClip("focusRect", 1000);
this.focusRect.controller = this;
this.focusRect.lineStyle(1, outer);
this.focusRect.moveTo(x, y);
this.focusRect.lineTo(x + w, y);
this.focusRect.lineTo(x + w, y + h);
this.focusRect.lineTo(x, y + h);
this.focusRect.lineTo(x, y);
this.focusRect.lineStyle(1, inner);
this.focusRect.moveTo(x + 1, y + 1);
this.focusRect.lineTo((x + w) - 1, y + 1);
this.focusRect.lineTo((x + w) - 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, y + 1);
};
FUIComponentClass.prototype.pressFocus = function () {
this.tabFocused = false;
this.focusRect.removeMovieClip();
Selection.setFocus(this);
};
FUIComponentClass.prototype.drawFocusRect = function () {
this.drawRect(-2, -2, this.width + 4, this.height + 4);
};
FUIComponentClass.prototype.myOnSetFocus = function () {
this.focused = true;
Key.addListener(this.keyListener);
if (this.tabFocused) {
this.drawFocusRect();
}
};
FUIComponentClass.prototype.myOnKillFocus = function () {
this.tabFocused = true;
this.focused = false;
this.focusRect.removeMovieClip();
Key.removeListener(this.keyListener);
};
FUIComponentClass.prototype.executeCallBack = function () {
this.handlerObj[this.changeHandler](this);
};
FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) {
this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal);
};
FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
if (value == "") {
return(undefined);
}
var tmpValue = parseInt(value);
if (!isNaN(tmpValue)) {
value = tmpValue;
}
var global = ((arguments.length > 2) ? (isGlobal) : false);
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].useGlobal || (!global)) {
this.styleTable[propName].value = value;
if (this.setCustomStyleProperty(propName, value)) {
} else if (propName == "embedFonts") {
this.invalidate("setSize");
} else if (propName.subString(0, 4) == "text") {
if (this.textStyle == undefined) {
this.textStyle = new TextFormat();
}
var textProp = propName.subString(4, propName.length);
this.textStyle[textProp] = value;
this.invalidate("setSize");
} else {
for (var j in this.styleTable[propName].coloredMCs) {
var myColor = new Color(this.styleTable[propName].coloredMCs[j]);
if (this.styleTable[propName].value == undefined) {
var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
myColor.setTransform(myTObj);
} else {
myColor.setRGB(value);
}
}
}
this.styleTable[propName].useGlobal = global;
}
};
FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) {
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].coloredMCs == undefined) {
this.styleTable[propName].coloredMCs = new Object();
}
this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef;
if (this.styleTable[propName].value != undefined) {
var myColor = new Color(skinMCRef);
myColor.setRGB(this.styleTable[propName].value);
}
};
_global.FStyleFormat = function () {
this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true};
this.listeners = new Object();
this.isGlobal = false;
if (arguments.length > 0) {
for (var i in arguments[0]) {
this[i] = arguments[0][i];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var arg = 0;
while (arg < arguments.length) {
var mcRef = arguments[arg];
this.listeners[arguments[arg]] = mcRef;
for (var i in this) {
if (this.isAStyle(i)) {
mcRef.updateStyleProperty(this, i.toString());
}
}
arg++;
}
};
FStyleFormat.prototype.removeListener = function (component) {
this.listeners[component] = undefined;
for (var prop in this) {
if (this.isAStyle(prop)) {
if (component.styleTable[prop].useGlobal == this.isGlobal) {
component.styleTable[prop].useGlobal = true;
var value = (this.isGlobal ? undefined : (globalStyleFormat[prop]));
component.setStyleProperty(prop, value, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var count = 0;
for (var i in this.listeners) {
var component = this.listeners[i];
if (arguments.length > 0) {
var j = 0;
while (j < arguments.length) {
if (this.isAStyle(arguments[j])) {
component.updateStyleProperty(this, arguments[j]);
}
j++;
}
} else {
for (var j in this) {
if (this.isAStyle(j)) {
component.updateStyleProperty(this, j.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return((this.nonStyles[name] ? false : true));
};
#endinitclip
Symbol 46 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 49 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 52 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "foregroundDisabled");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 53 MovieClip [UpArrow] Frame 1
stop();
Symbol 53 MovieClip [UpArrow] Frame 2
stop();
Symbol 53 MovieClip [UpArrow] Frame 3
stop();
Symbol 56 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 59 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 60 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(highlight3D_mc, "highlight3D");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
Symbol 61 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 63 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 65 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 67 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "foregroundDisabled");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 68 MovieClip [DownArrow] Frame 1
stop();
Symbol 68 MovieClip [DownArrow] Frame 2
stop();
Symbol 68 MovieClip [DownArrow] Frame 3
stop();
Symbol 70 MovieClip Frame 1
var component = _parent;
component.registerSkinElement(track_mc, "scrollTrack");
Symbol 71 MovieClip [FScrollBarSymbol] Frame 1
#initclip 4
FScrollBarClass = function () {
if (this._height == 4) {
return(undefined);
}
this.init();
this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0)));
this.smallScroll = 1;
this.width = (this.horizontal ? (this._width) : (this._height));
this._xscale = (this._yscale = 100);
this.setScrollPosition(0);
this.tabEnabled = false;
if (this._targetInstanceName.length > 0) {
this.setScrollTarget(this._parent[this._targetInstanceName]);
}
this.tabChildren = false;
this.setSize(this.width);
};
FScrollBarClass.prototype = new FUIComponentClass();
FScrollBarClass.prototype.setHorizontal = function (flag) {
if (this.horizontal && (!flag)) {
this._xscale = 100;
this._rotation = 0;
} else if (flag && (!this.horizontal)) {
this._xscale = -100;
this._rotation = -90;
}
this.horizontal = flag;
};
FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) {
if (!this.enable) {
return(undefined);
}
this.pageSize = pSize;
this.minPos = Math.max(mnPos, 0);
this.maxPos = Math.max(mxPos, 0);
this.scrollPosition = Math.max(this.minPos, this.scrollPosition);
this.scrollPosition = Math.min(this.maxPos, this.scrollPosition);
if ((this.maxPos - this.minPos) <= 0) {
this.scrollThumb_mc.removeMovieClip();
this.upArrow_mc.gotoAndStop(3);
this.downArrow_mc.gotoAndStop(3);
this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null));
this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null));
this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null);
this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null);
this.scrollTrack_mc.useHandCursor = false;
} else {
var tmp = this.getScrollPosition();
this.upArrow_mc.gotoAndStop(1);
this.downArrow_mc.gotoAndStop(1);
this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller);
this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling);
this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller);
this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling);
this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller);
this.scrollTrack_mc.onRelease = this.stopScrolling;
this.scrollTrack_mc.onDragOut = this.stopScrolling;
this.scrollTrack_mc.onRollOut = this.stopScrolling;
this.scrollTrack_mc.useHandCursor = false;
this.attachMovie("ScrollThumb", "scrollThumb_mc", 3);
this.scrollThumb_mc._x = 0;
this.scrollThumb_mc._y = this.upArrow_mc._height;
this.scrollThumb_mc.onPress = this.startDragThumb;
this.scrollThumb_mc.controller = this;
this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb);
this.scrollThumb_mc.useHandCursor = false;
this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize;
this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid;
this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop;
this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot;
this.thumbHeight = Math.max(this.thumbHeight, 6);
this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height;
this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height;
this.thumbMid_mc._y = this.thumbTop_mc._height;
this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight;
this.scrollTop = this.scrollThumb_mc._y;
this.trackHeight = this.trackSize - this.thumbHeight;
this.scrollBot = this.trackHeight + this.scrollTop;
tmp = Math.min(tmp, this.maxPos);
this.setScrollPosition(Math.max(tmp, this.minPos));
}
};
FScrollBarClass.prototype.getScrollPosition = function () {
return(this.scrollPosition);
};
FScrollBarClass.prototype.setScrollPosition = function (pos) {
this.scrollPosition = pos;
if (this.scrollThumb_mc != undefined) {
pos = Math.min(pos, this.maxPos);
pos = Math.max(pos, this.minPos);
}
this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop;
this.executeCallBack();
};
FScrollBarClass.prototype.setLargeScroll = function (lScroll) {
this.largeScroll = lScroll;
};
FScrollBarClass.prototype.setSmallScroll = function (sScroll) {
this.smallScroll = sScroll;
};
FScrollBarClass.prototype.setEnabled = function (enabledFlag) {
var wasEnabled = this.enable;
if (enabledFlag && (!wasEnabled)) {
this.enable = enabledFlag;
if (this.textField != undefined) {
this.setScrollTarget(this.textField);
} else {
this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos);
this.setScrollPosition(this.cachedPos);
}
this.clickFilter = undefined;
} else if ((!enabledFlag) && (wasEnabled)) {
this.textField.removeListener(this);
this.cachedPos = this.getScrollPosition();
this.cachedMinPos = this.minPos;
this.cachedMaxPos = this.maxPos;
if (this.clickFilter == undefined) {
this.setScrollProperties(this.pageSize, 0, 0);
} else {
this.clickFilter = true;
}
this.enable = enabledFlag;
}
};
FScrollBarClass.prototype.setSize = function (hgt) {
if (this._height == 1) {
return(undefined);
}
this.width = hgt;
this.scrollTrack_mc._yscale = 100;
this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height;
if (this.upArrow_mc == undefined) {
this.attachMovie("UpArrow", "upArrow_mc", 1);
this.attachMovie("DownArrow", "downArrow_mc", 2);
this.downArrow_mc.controller = (this.upArrow_mc.controller = this);
this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false);
this.upArrow_mc._x = (this.upArrow_mc._y = 0);
this.downArrow_mc._x = 0;
}
this.scrollTrack_mc.controller = this;
this.downArrow_mc._y = this.width - this.downArrow_mc._height;
this.trackSize = this.width - (2 * this.downArrow_mc._height);
if (this.textField != undefined) {
this.onTextChanged();
} else {
this.setScrollProperties(this.pageSize, this.minPos, this.maxPos);
}
};
FScrollBarClass.prototype.scrollIt = function (inc, mode) {
var delt = this.smallScroll;
if (inc != "one") {
delt = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll));
}
var newPos = (this.getScrollPosition() + (mode * delt));
if (newPos > this.maxPos) {
newPos = this.maxPos;
} else if (newPos < this.minPos) {
newPos = this.minPos;
}
this.setScrollPosition(newPos);
};
FScrollBarClass.prototype.startDragThumb = function () {
this.lastY = this._ymouse;
this.onMouseMove = this.controller.dragThumb;
};
FScrollBarClass.prototype.dragThumb = function () {
this.scrollMove = this._ymouse - this.lastY;
this.scrollMove = this.scrollMove + this._y;
if (this.scrollMove < this.controller.scrollTop) {
this.scrollMove = this.controller.scrollTop;
} else if (this.scrollMove > this.controller.scrollBot) {
this.scrollMove = this.controller.scrollBot;
}
this._y = this.scrollMove;
var c = this.controller;
c.scrollPosition = Math.round(((c.maxPos - c.minPos) * (this._y - c.scrollTop)) / c.trackHeight) + c.minPos;
this.controller.isScrolling = true;
updateAfterEvent();
this.controller.executeCallBack();
};
FScrollBarClass.prototype.stopDragThumb = function () {
this.controller.isScrolling = false;
this.onMouseMove = null;
};
FScrollBarClass.prototype.startTrackScroller = function () {
this.controller.trackScroller();
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1);
};
FScrollBarClass.prototype.scrollInterval = function (inc, mode) {
clearInterval(this.scrolling);
if (inc == "page") {
this.trackScroller();
} else {
this.scrollIt(inc, mode);
}
this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode);
};
FScrollBarClass.prototype.trackScroller = function () {
if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) {
this.scrollIt("page", 1);
} else if (this.scrollThumb_mc._y > this._ymouse) {
this.scrollIt("page", -1);
}
};
FScrollBarClass.prototype.stopScrolling = function () {
this.controller.downArrow_mc.gotoAndStop(1);
this.controller.upArrow_mc.gotoAndStop(1);
clearInterval(this.controller.scrolling);
};
FScrollBarClass.prototype.startUpScroller = function () {
this.controller.upArrow_mc.gotoAndStop(2);
this.controller.scrollIt("one", -1);
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1);
};
FScrollBarClass.prototype.startDownScroller = function () {
this.controller.downArrow_mc.gotoAndStop(2);
this.controller.scrollIt("one", 1);
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1);
};
FScrollBarClass.prototype.setScrollTarget = function (tF) {
if (tF == undefined) {
this.textField.removeListener(this);
delete this.textField[(this.horizontal ? "hScroller" : "vScroller")];
if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) {
this.textField.unwatch("text");
this.textField.unwatch("htmltext");
}
}
this.textField = undefined;
if (!(tF instanceof TextField)) {
return(undefined);
}
this.textField = tF;
this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this;
this.onTextChanged();
this.onChanged = function () {
this.onTextChanged();
};
this.onScroller = function () {
if (!this.isScrolling) {
if (!this.horizontal) {
this.setScrollPosition(this.textField.scroll);
} else {
this.setScrollPosition(this.textField.hscroll);
}
}
};
this.textField.addListener(this);
this.textField.watch("text", this.callback);
this.textField.watch("htmlText", this.callback);
};
FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) {
clearInterval(this.hScroller.synchScroll);
clearInterval(this.vScroller.synchScroll);
this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50);
this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50);
return(newVal);
};
FScrollBarClass.prototype.onTextChanged = function () {
if ((!this.enable) || (this.textField == undefined)) {
return(undefined);
}
clearInterval(this.synchScroll);
if (this.horizontal) {
var pos = this.textField.hscroll;
this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll);
this.setScrollPosition(Math.min(pos, this.textField.maxhscroll));
} else {
var pos = this.textField.scroll;
var pageSize = (this.textField.bottomScroll - this.textField.scroll);
this.setScrollProperties(pageSize, 1, this.textField.maxscroll);
this.setScrollPosition(Math.min(pos, this.textField.maxscroll));
}
};
FScrollBarClass.prototype.executeCallBack = function () {
if (this.textField == undefined) {
super.executeCallBack();
} else if (this.horizontal) {
this.textField.hscroll = this.getScrollPosition();
} else {
this.textField.scroll = this.getScrollPosition();
}
};
Object.registerClass("FScrollBarSymbol", FScrollBarClass);
#endinitclip
Symbol 72 MovieClip [DataProviderSymbol] Frame 1
#initclip 3
_global.DataProviderClass = function () {
this.init();
};
DataProviderClass.prototype.init = function () {
this.items = new Array();
this.uniqueID = 0;
this.views = new Array();
};
DataProviderClass.prototype.addView = function (viewRef) {
this.views.push(viewRef);
var eventObj = {event:"updateAll"};
viewRef.modelChanged(eventObj);
};
DataProviderClass.prototype.addItemAt = function (index, value) {
if (index < this.getLength()) {
this.items.splice(index, 0, "tmp");
}
this.items[index] = new Object();
if (typeof(value) == "object") {
this.items[index] = value;
} else {
this.items[index].label = value;
}
this.items[index].__ID__ = this.uniqueID++;
var eventObj = {event:"addRows", firstRow:index, lastRow:index};
this.updateViews(eventObj);
};
DataProviderClass.prototype.addItem = function (value) {
this.addItemAt(this.getLength(), value);
};
DataProviderClass.prototype.removeItemAt = function (index) {
var tmpItm = this.items[index];
this.items.splice(index, 1);
var eventObj = {event:"deleteRows", firstRow:index, lastRow:index};
this.updateViews(eventObj);
return(tmpItm);
};
DataProviderClass.prototype.removeAll = function () {
this.items = new Array();
this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1});
};
DataProviderClass.prototype.replaceItemAt = function (index, itemObj) {
if ((index < 0) || (index >= this.getLength())) {
return(undefined);
}
var tmpID = this.getItemID(index);
if (typeof(itemObj) == "object") {
this.items[index] = itemObj;
} else {
this.items[index].label = itemObj;
}
this.items[index].__ID__ = tmpID;
this.updateViews({event:"updateRows", firstRow:index, lastRow:index});
};
DataProviderClass.prototype.getLength = function () {
return(this.items.length);
};
DataProviderClass.prototype.getItemAt = function (index) {
return(this.items[index]);
};
DataProviderClass.prototype.getItemID = function (index) {
return(this.items[index].__ID__);
};
DataProviderClass.prototype.sortItemsBy = function (fieldName, order) {
this.items.sortOn(fieldName);
if (order == "DESC") {
this.items.reverse();
}
this.updateViews({event:"sort"});
};
DataProviderClass.prototype.updateViews = function (eventObj) {
var i = 0;
while (i < this.views.length) {
this.views[i].modelChanged(eventObj);
i++;
}
};
#endinitclip
Symbol 73 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 8
function FSelectableItemClass() {
this.init();
}
FSelectableItemClass.prototype = new FUIComponentClass();
FSelectableItemClass.prototype.init = function () {
if (this._name != "itemAsset") {
this.highlighted = false;
this.layoutContent(100);
}
};
FSelectableItemClass.prototype.drawItem = function (itmObj, selected) {
this.displayContent(itmObj, selected);
if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) {
this.setHighlighted(selected);
}
this.oldFocus = this.controller.focused;
};
FSelectableItemClass.prototype.setSize = function (width, height) {
var LOWEST_DEPTH = -16384;
this.width = width;
this.layoutContent(width);
this.attachMovie("FHighlightSymbol", "highlight_mc", LOWEST_DEPTH);
this.highlight_mc._x = 0.5;
this.highlight_mc._width = width - 0.5;
this.highlight_mc._height = height;
this.highlight_mc.controller = this;
this.highlight_mc._alpha = 0;
this.highlight_mc.trackAsMenu = true;
this.highlight_mc.onPress = function () {
if (this.controller.enable) {
this.controller.controller.clickHandler(this.controller.itemNum);
}
};
this.highlight_mc.onDragOver = function () {
if (this.controller.controller.focused) {
this.onPress();
}
};
this.highlight_mc.useHandCursor = false;
this.highlight_mc.trackAsMenu = true;
};
FSelectableItemClass.prototype.setEnabled = function (enabledFlag) {
this.enable = enabledFlag;
this.fLabel_mc.setEnabled(enabledFlag);
this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled"));
};
FSelectableItemClass.prototype.layoutContent = function (width) {
this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller});
this.fLabel_mc._x = 2;
this.fLabel_mc._y = 0;
this.fLabel_mc.setSize(width - 2);
this.fLabel_mc.labelField.selectable = false;
};
FSelectableItemClass.prototype.displayContent = function (itmObj, selected) {
var tmpLabel = "";
if (itmObj.label != undefined) {
tmpLabel = itmObj.label;
} else if (typeof(itmObj) == "object") {
for (var i in itmObj) {
if (i != "__ID__") {
tmpLabel = (itmObj[i] + ", ") + tmpLabel;
}
}
tmpLabel = tmpLabel.substring(0, tmpLabel.length - 2);
} else {
tmpLabel = itmObj;
}
if (this.fLabel_mc.labelField.text != tmpLabel) {
this.fLabel_mc.setLabel(tmpLabel);
}
var clr = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value));
if (clr == undefined) {
clr = (selected ? 16777215 : 0);
}
this.fLabel_mc.setColor(clr);
};
FSelectableItemClass.prototype.getItemIndex = function () {
return(this.controller.getScrollPosition() + this.itemNum);
};
FSelectableItemClass.prototype.getItemModel = function () {
return(this.controller.getItemAt(this.getItemIndex()));
};
FSelectableItemClass.prototype.getHostDataProvider = function () {
return(this.controller.dataProvider);
};
FSelectableItemClass.prototype.setHighlighted = function (flag) {
fade = this.controller.styleTable.fadeRate.value;
if (((fade == undefined) || (fade == 0)) || (!flag)) {
this.highlight_mc._alpha = (flag ? 100 : 0);
delete this.onEnterFrame;
} else {
this.fadeN = fade;
this.fadeX = 1;
this.highLight_mc._alpha = 20;
this.onEnterFrame = function () {
this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40;
if (this.fadeX > this.fadeN) {
delete this.onEnterFrame;
}
};
}
this.highlighted = flag;
};
#endinitclip
Symbol 74 MovieClip [FSelectableListSymbol] Frame 1
#initclip 5
function FSelectableListClass() {
this.init();
}
FSelectableListClass.prototype = new FUIComponentClass();
FSelectableListClass.prototype.init = function () {
super.init();
this.enable = true;
this.selected = new Array();
this.topDisplayed = (this.numDisplayed = 0);
this.lastSelected = 0;
this.tabChildren = false;
if (this._name != undefined) {
this.dataProvider = new DataProviderClass();
this.dataProvider.addView(this);
}
};
FSelectableListClass.prototype.addItemAt = function (index, label, data) {
if ((index < 0) || (!this.enable)) {
return(undefined);
}
this.dataProvider.addItemAt(index, {label:label, data:data});
};
FSelectableListClass.prototype.addItem = function (label, data) {
if (!this.enable) {
return(undefined);
}
this.dataProvider.addItem({label:label, data:data});
};
FSelectableListClass.prototype.removeItemAt = function (index) {
this.selectHolder = this.getSelectedIndex();
var item = this.getItemAt(index);
this.dataProvider.removeItemAt(index);
return(item);
};
FSelectableListClass.prototype.removeAll = function () {
this.dataProvider.removeAll();
};
FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) {
this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData});
};
FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) {
this.lastSelID = this.dataProvider.getItemID(this.lastSelected);
this.dataProvider.sortItemsBy(fieldName, order);
};
FSelectableListClass.prototype.getLength = function () {
return(this.dataProvider.getLength());
};
FSelectableListClass.prototype.getSelectedIndex = function () {
for (var uniqueID in this.selected) {
var tmpInd = this.selected[uniqueID].sIndex;
if (tmpInd != undefined) {
return(tmpInd);
}
}
};
FSelectableListClass.prototype.getSelectedItem = function () {
return(this.getItemAt(this.getSelectedIndex()));
};
FSelectableListClass.prototype.getItemAt = function (index) {
return(this.dataProvider.getItemAt(index));
};
FSelectableListClass.prototype.getEnabled = function () {
return(this.enable);
};
FSelectableListClass.prototype.getValue = function () {
var item = this.getSelectedItem();
return(((item.data == undefined) ? (item.label) : (item.data)));
};
FSelectableListClass.prototype.setSelectedIndex = function (index, flag) {
if (((index >= 0) && (index < this.getLength())) && (this.enable)) {
this.clearSelected();
this.selectItem(index, true);
this.lastSelected = index;
this.invalidate("updateControl");
if (flag != false) {
this.executeCallBack();
}
}
};
FSelectableListClass.prototype.setDataProvider = function (obj) {
this.setScrollPosition(0);
this.clearSelected();
if (obj instanceof Array) {
this.dataProvider = new DataProviderClass();
var i = 0;
while (i < obj.length) {
var value = ((typeof(obj[i]) == "string") ? ({label:obj[i]}) : (obj[i]));
this.dataProvider.addItem(value);
i++;
}
} else {
this.dataProvider = obj;
}
this.dataProvider.addView(this);
};
FSelectableListClass.prototype.setItemSymbol = function (linkID) {
this.tmpPos = this.getScrollPosition();
this.itemSymbol = linkID;
this.invalidate("setSize");
this.setScrollPosition(this.tmpPos);
};
FSelectableListClass.prototype.setEnabled = function (enabledFlag) {
this.cleanUI();
super.setEnabled(enabledFlag);
this.enable = enabledFlag;
this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled"));
var limit = Math.min(this.numDisplayed, this.getLength());
var i = 0;
while (i < limit) {
this.container_mc[("fListItem" + i) + "_mc"].setEnabled(this.enable);
i++;
}
if (this.enable) {
this.invalidate("updateControl");
}
};
FSelectableListClass.prototype.updateControl = function () {
var i = 0;
while (i < this.numDisplayed) {
this.container_mc[("fListItem" + i) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + i), this.isSelected(this.topDisplayed + i));
i++;
}
};
FSelectableListClass.prototype.setSize = function (w, h) {
super.setSize(w, h);
this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100);
this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width;
this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height;
var i = 0;
while (i < this.numDisplayed) {
this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + i) + "_mc", 10 + i, {controller:this, itemNum:i});
var item_mc = this.container_mc[("fListItem" + i) + "_mc"];
var offset = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset));
item_mc.setSize(this.width - offset, this.itmHgt);
item_mc._y = (this.itmHgt - 2) * i;
i++;
}
this.updateControl();
};
FSelectableListClass.prototype.modelChanged = function (eventObj) {
var firstRow = eventObj.firstRow;
var lastRow = eventObj.lastRow;
var event = eventObj.event;
if (event == "addRows") {
for (var i in this.selected) {
if ((this.selected[i].sIndex != undefined) && (this.selected[i].sIndex >= firstRow)) {
this.selected[i].sIndex = this.selected[i].sIndex + ((lastRow - firstRow) + 1);
this.setSelectedIndex(this.selected[i].sIndex, false);
}
}
} else if (event == "deleteRows") {
if (firstRow == lastRow) {
var index = firstRow;
if (this.selectHolder == index) {
this.selectionDeleted = true;
}
if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) {
this.topDisplayed--;
if (this.selectionDeleted && ((index - 1) >= 0)) {
this.setSelectedIndex(index - 1, false);
}
} else if (this.selectionDeleted) {
var len = this.getLength();
if (((index == (len - 1)) && (len > 1)) || (index > (len / 2))) {
this.setSelectedIndex(index - 1, false);
} else {
this.setSelectedIndex(index, false);
}
}
for (var i in this.selected) {
if (this.selected[i].sIndex > firstRow) {
this.selected[i].sIndex--;
}
}
} else {
this.clearSelected();
this.topDisplayed = 0;
}
} else if (event == "sort") {
var len = this.getLength();
var i = 0;
while (i < len) {
if (this.isSelected(i)) {
var id = this.dataProvider.getItemID(i);
if (id == this.lastSelID) {
this.lastSelected = i;
}
this.selected[String(id)].sIndex = i;
}
i++;
}
}
this.invalidate("updateControl");
};
FSelectableListClass.prototype.measureItmHgt = function () {
this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this});
this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false);
this.itmHgt = this.tmpItem_mc._height;
this.tmpItem_mc.removeMovieClip();
};
FSelectableListClass.prototype.selectItem = function (index, selectedFlag) {
if (selectedFlag && (!this.isSelected(index))) {
this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index};
} else if (!selectedFlag) {
delete this.selected[String(this.dataProvider.getItemID(index))];
}
};
FSelectableListClass.prototype.isSelected = function (index) {
return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined);
};
FSelectableListClass.prototype.clearSelected = function () {
for (var uniqueID in this.selected) {
var index = this.selected[uniqueID].sIndex;
if (((index != undefined) && (this.topDisplayed <= index)) && (index < (this.topDisplayed + this.numDisplayed))) {
this.container_mc[("fListItem" + (index - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(index), false);
}
}
delete this.selected;
this.selected = new Array();
};
FSelectableListClass.prototype.selectionHandler = function (itemNum) {
var tmpInd = (this.topDisplayed + itemNum);
if (this.getItemAt(tmpInd == undefined)) {
this.changeFlag = false;
return(undefined);
}
this.changeFlag = true;
this.clearSelected();
this.selectItem(tmpInd, true);
this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(tmpInd), this.isSelected(tmpInd));
};
FSelectableListClass.prototype.moveSelBy = function (incr) {
var itmNum = this.getSelectedIndex();
var newItm = (itmNum + incr);
newItm = Math.max(0, newItm);
newItm = Math.min(this.getLength() - 1, newItm);
if (newItm == itmNum) {
return(undefined);
}
if ((itmNum < this.topDisplayed) || (itmNum >= (this.topDisplayed + this.numDisplayed))) {
this.setScrollPosition(itmNum);
}
if ((newItm >= (this.topDisplayed + this.numDisplayed)) || (newItm < this.topDisplayed)) {
this.setScrollPosition(this.topDisplayed + incr);
}
this.selectionHandler(newItm - this.topDisplayed);
};
FSelectableListClass.prototype.clickHandler = function (itmNum) {
this.focusRect.removeMovieClip();
if (!this.focused) {
this.pressFocus();
}
this.selectionHandler(itmNum);
this.onMouseUp = this.releaseHandler;
};
FSelectableListClass.prototype.releaseHandler = function () {
if (this.changeFlag) {
this.executeCallBack();
}
this.changeFlag = false;
this.onMouseUp = undefined;
};
FSelectableListClass.prototype.myOnSetFocus = function () {
super.myOnSetFocus();
var i = 0;
while (i < this.numDisplayed) {
this.container_mc[("fListItem" + i) + "_mc"].highlight_mc.gotoAndStop("enabled");
i++;
}
};
FSelectableListClass.prototype.myOnKillFocus = function () {
super.myOnKillFocus();
var i = 0;
while (i < this.numDisplayed) {
this.container_mc[("fListItem" + i) + "_mc"].highlight_mc.gotoAndStop("unfocused");
i++;
}
};
#endinitclip
Instance of Symbol 72 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 74 MovieClip [FSelectableListSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
}
Instance of Symbol 73 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 74 MovieClip [FSelectableListSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
}
Symbol 75 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 7
function FScrollSelectListClass() {
this.init();
}
FScrollSelectListClass.prototype = new FSelectableListClass();
FScrollSelectListClass.prototype.getScrollPosition = function () {
return(this.topDisplayed);
};
FScrollSelectListClass.prototype.setScrollPosition = function (pos) {
if (this.enable) {
pos = Math.min(pos, this.getLength() - this.numDisplayed);
pos = Math.max(pos, 0);
this.scrollBar_mc.setScrollPosition(pos);
}
};
FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) {
this.permaScrollBar = !flag;
this.setSize(this.width, this.height);
};
FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) {
super.setEnabled(enabledFlag);
this.scrollBar_mc.setEnabled(this.enable);
};
FScrollSelectListClass.prototype.setSize = function (w, h) {
var pos = this.getScrollPosition();
super.setSize(w, h);
if (this.scrollBar_mc != undefined) {
this.removed = true;
}
this.scrollBar_mc = undefined;
this.initScrollBar();
this.setScrollPosition(pos);
};
FScrollSelectListClass.prototype.modelChanged = function (eventObj) {
super.modelChanged(eventObj);
this.invalidate("initScrollBar");
};
FScrollSelectListClass.prototype.initScrollBar = function () {
if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) {
if (this.removed) {
this.scrollBar_mc.removeMovieClip();
this.scrollBar_mc = undefined;
this.scrollOffset = undefined;
this.invalidate("setSize");
}
} else {
if (this.scrollBar_mc == undefined) {
this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable});
this.scrollBar_mc = this.container_mc.scrollBar_mc;
this.scrollBar_mc.setChangeHandler("scrollHandler", this);
this.scrollBar_mc.setSize(this.height);
this.scrollBar_mc._x = this.width - this.scrollBar_mc._width;
this.scrollBar_mc._y = 0;
this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1);
this.scrollOffset = this.scrollBar_mc._width;
this.invalidate("setSize");
}
this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed);
}
};
FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) {
var pos = scrollBar.getScrollPosition();
this.topDisplayed = pos;
if (this.lastPosition != pos) {
this.updateControl();
}
this.lastPosition = pos;
};
FScrollSelectListClass.prototype.clickHandler = function (itmNum) {
super.clickHandler(itmNum);
if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) {
this.dragScrolling = setInterval(this, "dragScroll", 15);
}
};
FScrollSelectListClass.prototype.releaseHandler = function () {
clearInterval(this.dragScrolling);
this.dragScrolling = undefined;
super.releaseHandler();
};
FScrollSelectListClass.prototype.dragScroll = function () {
clearInterval(this.dragScrolling);
if (this.container_mc._ymouse < 0) {
this.setScrollPosition(this.getScrollPosition() - 1);
this.selectionHandler(0);
this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500);
this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval);
} else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) {
this.setScrollPosition(this.getScrollPosition() + 1);
this.selectionHandler(this.numDisplayed - 1);
this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500);
this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval);
} else {
this.dragScrolling = setInterval(this, "dragScroll", 15);
}
};
FScrollSelectListClass.prototype.myOnKeyDown = function () {
if (this.focused) {
this.keyCodes = new Array(40, 38, 34, 33, 36, 35);
this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength());
var i = 0;
while (i < this.keyCodes.length) {
if (Key.isDown(this.keyCodes[i])) {
this.moveSelBy(this.keyIncrs[i]);
return(undefined);
}
i++;
}
this.findInputText();
}
};
FScrollSelectListClass.prototype.findInputText = function () {
var tmpCode = Key.getAscii();
if ((tmpCode >= 33) && (tmpCode <= 126)) {
this.findString(String.fromCharCode(tmpCode));
}
};
FScrollSelectListClass.prototype.findString = function (str) {
if (this.getLength() == 0) {
return(undefined);
}
var itemNum = this.getSelectedIndex();
var jump = 0;
var i = (itemNum + 1);
while (i != itemNum) {
var itmStr = this.getItemAt(i).label.substring(0, str.length);
if ((str == itmStr) || (str.toUpperCase() == itmStr.toUpperCase())) {
var jump = (i - itemNum);
break;
}
if (i >= (this.getLength() - 1)) {
i = -1;
}
i++;
}
if (jump != 0) {
this.moveSelBy(jump);
}
};
#endinitclip
Instance of Symbol 71 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 75 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
_targetInstanceName = "";
horizontal = false;
}
onClipEvent (load) {
this._width = (this._height = 1);
}
Instance of Symbol 74 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 75 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
}
Symbol 76 MovieClip [FComboBoxItemSymbol] Frame 1
#initclip 10
function FComboBoxItemClass() {
this.init();
}
FComboBoxItemClass.prototype = new FSelectableItemClass();
Object.registerClass("FComboBoxItemSymbol", FComboBoxItemClass);
FComboBoxItemClass.prototype.setSize = function (w, h) {
super.setSize(w, h);
this.highlight_mc.onRollOver = function () {
this.controller.controller.selectionHandler(this.controller.itemNum);
};
};
#endinitclip
Symbol 79 MovieClip [FComboBoxSymbol] Frame 1
#initclip 9
function FComboBoxClass() {
_global._popUpLevel = ((_global._popUpLevel == undefined) ? 20000 : (_global._popUpLevel + 1));
this.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel);
var testContainer = this.superHolder.createEmptyMovieClip("testCont", 20000);
var testBox = testContainer.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0);
if (testBox._name == undefined) {
this.superHolder.removeMovieClip();
this.superHolder = this._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel);
} else {
testContainer.removeMovieClip();
}
if (this.rowCount == undefined) {
this.rowCount = 8;
this.editable = false;
}
this.itemSymbol = "FComboBoxItemSymbol";
this.init();
this.permaScrollBar = false;
this.proxyBox_mc.gotoAndStop(1);
this.width = this._width;
this.height = (this.proxyBox_mc._height * this._yscale) / 100;
var i = 0;
while (i < this.labels.length) {
this.addItem(this.labels[i], this.data[i]);
i++;
}
this.lastSelected = 0;
this.selectItem(0);
this._xscale = (this._yscale = 100);
this.opened = false;
this.setSize(this.width);
this.highlightTop(false);
if (this.changeHandler.length > 0) {
this.setChangeHandler(this.changeHandler);
}
this.onUnload = function () {
this.superHolder.removeMovieClip();
};
this.setSelectedIndex(0, false);
this.value = "";
this.focusEnabled = true;
this.changeFlag = false;
}
FComboBoxClass.prototype = new FScrollSelectListClass();
Object.registerClass("FComboBoxSymbol", FComboBoxClass);
FComboBoxClass.prototype.modelChanged = function (eventObj) {
super.modelChanged(eventObj);
var event = eventObj.event;
if ((event == "addRows") || (event == "deleteRows")) {
var diff = ((eventObj.lastRow - eventObj.firstRow) + 1);
var mode = ((event == "addRows") ? 1 : -1);
var len = this.getLength();
var lenBefore = (len - (mode * diff));
if ((this.rowCount > lenBefore) || (this.rowCount > len)) {
this.invalidate("setSize");
}
if (this.getSelectedIndex() == undefined) {
this.setSelectedIndex(0, false);
}
} else if (event == "updateAll") {
this.invalidate("setSize");
}
};
FComboBoxClass.prototype.removeAll = function () {
if (!this.enable) {
return(undefined);
}
super.removeAll();
if (this.editable) {
this.value = "";
}
this.invalidate("setSize");
};
FComboBoxClass.prototype.setSize = function (w) {
if ((((w == undefined) || (typeof(w) != "number")) || (w <= 0)) || (!this.enable)) {
return(undefined);
}
this.proxyBox_mc._width = w;
this.container_mc.removeMovieClip();
this.measureItmHgt();
this.container_mc = this.superHolder.createEmptyMovieClip("container", 3);
this.container_mc.tabChildren = false;
this.setPopUpLocation(this.container_mc);
this.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0);
this.boundingBox_mc = this.container_mc.boundingBox_mc;
this.boundingBox_mc.component = this;
this.registerSkinElement(this.boundingBox_mc.boundingBox, "background");
this.proxyBox_mc._height = this.itmHgt;
this.numDisplayed = Math.min(this.rowCount, this.getLength());
if (this.numDisplayed < 3) {
this.numDisplayed = Math.min(3, this.getLength());
}
this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2;
super.setSize(w, this.height);
this.attachMovie("DownArrow", "downArrow", 10);
this.downArrow._y = 0;
this.downArrow._width = this.itmHgt;
this.downArrow._height = this.itmHgt;
this.downArrow._x = this.proxyBox_mc._width - this.downArrow._width;
this.setEditable(this.editable);
this.container_mc._visible = this.opened;
this.highlightTop(false);
this.fader = this.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4);
this.registerSkinElement(this.fader.boundingBox, "background");
this.fader._width = this.width;
this.fader._height = this.height;
this.fader._visible = false;
};
FComboBoxClass.prototype.setDataProvider = function (dp) {
super.setDataProvider(dp);
this.invalidate("setSize");
this.setSelectedIndex(0);
};
FComboBoxClass.prototype.getValue = function () {
if (this.editable) {
return(this.fLabel_mc.getLabel());
}
return(super.getValue());
};
FComboBoxClass.prototype.getRowCount = function () {
return(this.rowCount);
};
FComboBoxClass.prototype.setRowCount = function (count) {
this.rowCount = ((this.getLength() > count) ? (Math.max(count, 3)) : (count));
this.setSize(this.width);
var len = this.getLength();
if ((len - this.getScrollPosition()) < this.rowCount) {
this.setScrollPosition(len - Math.min(this.rowCount, len));
this.invalidate("updateControl");
}
};
FComboBoxClass.prototype.setEditable = function (editableFlag) {
if (!this.enable) {
return(undefined);
}
this.editable = editableFlag;
if (!this.editable) {
this.onPress = this.pressHandler;
this.useHandCursor = false;
this.trackAsMenu = true;
this.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:this, itemNum:-1});
this.fLabel_mc.onRollOver = undefined;
this.fLabel_mc.setSize((this.width - this.itmHgt) + 1, this.itmHgt);
this.topLabel = this.getSelectedItem();
this.fLabel_mc.drawItem(this.topLabel, false);
this.highlightTop(false);
} else {
this.attachMovie("FLabelSymbol", "fLabel_mc", 5);
this.fLabel_txt = this.fLabel_mc.labelField;
this.fLabel_txt.type = "input";
this.fLabel_txt._x = 4;
this.fLabel_txt.onSetFocus = this.onLabelFocus;
this.fLabel_mc.setSize((this.width - this.itmHgt) - 3);
delete this.onPress;
this.fLabel_txt.onKillFocus = function () {
this._parent._parent.myOnKillFocus();
};
this.fLabel_mc.setLabel(this.value);
this.fLabel_txt.onChanged = function () {
this._parent._parent.findInputText();
};
this.downArrow.onPress = this.buttonPressHandler;
this.downArrow.useHandCursor = false;
this.downArrow.trackAsMenu = true;
}
};
FComboBoxClass.prototype.setEnabled = function (enabledFlag) {
enabledFlag = (((enabledFlag == undefined) || (typeof(enabledFlag) != "boolean")) ? true : (enabledFlag));
super.setEnabled(enabledFlag);
this.registerSkinElement(this.boundingBox_mc.boundingBox, "background");
this.proxyBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled"));
this.downArrow.gotoAndStop((this.enable ? 1 : 3));
if (this.editable) {
this.fLabel_txt.type = (enabledFlag ? "input" : "dynamic");
this.fLabel_txt.selectable = enabledFlag;
} else if (enabledFlag) {
this.fLabel_mc.drawItem(this.topLabel, false);
this.setSelectedIndex(this.getSelectedIndex(), false);
}
this.fLabel_mc.setEnabled(this.enable);
this.fLabel_txt.onSetFocus = (enabledFlag ? (this.onLabelFocus) : undefined);
};
FComboBoxClass.prototype.setSelectedIndex = function (index, flag) {
super.setSelectedIndex(index, flag);
if (!this.editable) {
this.topLabel = this.getSelectedItem();
this.fLabel_mc.drawItem(this.topLabel, false);
} else {
this.value = ((flag != undefined) ? "" : (this.getSelectedItem().label));
this.fLabel_mc.setLabel(this.value);
}
this.invalidate("updateControl");
};
FComboBoxClass.prototype.setValue = function (value) {
if (this.editable) {
this.fLabel_mc.setLabel(value);
this.value = value;
}
};
FComboBoxClass.prototype.pressHandler = function () {
this.focusRect.removeMovieClip();
if (this.enable) {
if (!this.opened) {
this.onMouseUp = this.releaseHandler;
} else {
this.onMouseUp = undefined;
}
this.changeFlag = false;
if (!this.focused) {
this.pressFocus();
this.clickFilter = (this.editable ? false : true);
}
if (!this.clickFilter) {
this.openOrClose(!this.opened);
} else {
this.clickFilter = false;
}
}
};
FComboBoxClass.prototype.clickHandler = function (itmNum) {
if (!this.focused) {
if (this.editable) {
this.fLabel_txt.onKillFocus = undefined;
}
this.pressFocus();
}
super.clickHandler(itmNum);
this.selectionHandler(itmNum);
this.onMouseUp = this.releaseHandler;
};
FComboBoxClass.prototype.highlightTop = function (flag) {
if (!this.editable) {
this.fLabel_mc.drawItem(this.topLabel, flag);
}
};
FComboBoxClass.prototype.myOnSetFocus = function () {
super.myOnSetFocus();
this.fLabel_mc.highlight_mc.gotoAndStop("enabled");
this.highlightTop(true);
};
FComboBoxClass.prototype.drawFocusRect = function () {
this.drawRect(-2, -2, this.width + 4, this._height + 4);
};
FComboBoxClass.prototype.myOnKillFocus = function () {
if (Selection.getFocus().indexOf("labelField") != -1) {
return(undefined);
}
super.myOnKillFocus();
delete this.fLabel_txt.onKeyDown;
this.openOrClose(false);
this.highlightTop(false);
};
FComboBoxClass.prototype.setPopUpLocation = function (mcRef) {
mcRef._x = this._x;
var point = {x:this._x, y:this._y + this.proxyBox_mc._height};
this._parent.localToGlobal(point);
mcRef._parent.globalToLocal(point);
mcRef._x = point.x;
mcRef._y = point.y;
if ((this.height + mcRef._y) >= Stage.height) {
this.upward = true;
mcRef._y = (point.y - this.height) - this.proxyBox_mc._height;
} else {
this.upward = false;
}
};
FComboBoxClass.prototype.openOrClose = function (flag) {
if (this.getLength() == 0) {
return(undefined);
}
this.setPopUpLocation(this.container_mc);
if ((this.lastSelected != -1) && ((this.lastSelected < this.topDisplayed) || (this.lastSelected > (this.topDisplayed + this.numDisplayed)))) {
super.moveSelBy(this.lastSelected - this.getSelectedIndex());
}
if (!flag) {
(this.downArrow.gotoAndStop(1));// not popped
} else {
(this.downArrow.gotoAndStop(2));// not popped
}
if (flag == this.opened) {
return(undefined);
}
this.highlightTop(!flag);
this.fadeRate = this.styleTable.popUpFade.value;
if (((!flag) || (this.fadeRate == undefined)) || (this.fadeRate == 0)) {
this.opened = (this.container_mc._visible = flag);
return(undefined);
}
this.setPopUpLocation(this.fader);
this.time = 0;
this.const = 85 / Math.sqrt(this.fadeRate);
this.fader._alpha = 85;
this.container_mc._visible = (this.fader._visible = true);
this.onEnterFrame = function () {
this.fader._alpha = 100 - ((this.const * Math.sqrt(++this.time)) + 15);
if (this.time >= this.fadeRate) {
this.fader._visible = false;
delete this.onEnterFrame;
this.opened = true;
}
};
};
FComboBoxClass.prototype.fireChange = function () {
this.lastSelected = this.getSelectedIndex();
if (!this.editable) {
this.topLabel = this.getSelectedItem();
this.fLabel_mc.drawItem(this.topLabel, true);
} else {
this.value = this.getSelectedItem().label;
this.fLabel_mc.setLabel(this.value);
}
this.executeCallback();
};
FComboBoxClass.prototype.releaseHandler = function () {
var onCombo = this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse);
if (this.changeFlag) {
if (onCombo) {
this.fireChange();
}
this.openOrClose(!this.opened);
} else if (onCombo) {
this.openOrClose(false);
} else {
this.onMouseDown = function () {
if ((!this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse)) && (!this.hitTest(_root._xmouse, _root._ymouse))) {
this.onMouseDown = undefined;
this.openOrClose(false);
}
};
}
this.changeFlag = false;
this.onMouseUp = undefined;
clearInterval(this.dragScrolling);
this.dragScrolling = undefined;
};
FComboBoxClass.prototype.moveSelBy = function (itemNum) {
if (itemNum != 0) {
super.moveSelBy(itemNum);
if (this.editable) {
this.setValue(this.getSelectedItem().label);
}
if (!this.opened) {
if (this.changeFlag && (!this.isSelected(this.lastSelected))) {
this.fireChange();
}
}
}
};
FComboBoxClass.prototype.myOnKeyDown = function () {
if (!this.focused) {
return(undefined);
}
if (this.editable && (Key.isDown(13))) {
this.setValue(this.fLabel_mc.getLabel());
this.executeCallback();
this.openOrClose(false);
} else if ((Key.isDown(13) || (Key.isDown(32) && (!this.editable))) && (this.opened)) {
if (this.getSelectedIndex() != this.lastSelected) {
this.fireChange();
}
this.openOrClose(false);
this.fLabel_txt.hscroll = 0;
}
super.myOnKeyDown();
};
FComboBoxClass.prototype.findInputText = function () {
if (!this.editable) {
super.findInputText();
}
};
FComboBoxClass.prototype.onLabelFocus = function () {
this._parent._parent.tabFocused = false;
this._parent._parent.focused = true;
this.onKeyDown = function () {
this._parent._parent.myOnKeyDown();
};
Key.addListener(this);
};
FComboBoxClass.prototype.buttonPressHandler = function () {
this._parent.pressHandler();
};
#endinitclip
this.deadPreview._visible = false;
Instance of Symbol 75 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 79 MovieClip [FComboBoxSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
}
Symbol 103 Button
on (release) {
gotoAndPlay (2);
}
Symbol 105 Button
on (release) {
gotoAndPlay (6);
}
Symbol 106 MovieClip Frame 1
stop();
Symbol 106 MovieClip Frame 2
play();
Symbol 106 MovieClip Frame 5
stop();
Symbol 106 MovieClip Frame 6
play();
Symbol 106 MovieClip Frame 8
gotoAndStop (1);
Symbol 107 Button
on (release) {
gotoAndPlay (2);
}
Symbol 108 Button
on (release) {
gotoAndPlay (6);
}
Symbol 109 MovieClip Frame 1
stop();
Instance of Symbol 98 MovieClip "imgHomeTeamLogo" in Symbol 109 MovieClip Frame 1
onClipEvent (load) {
if (_parent._parent.preloadedImages < _parent._parent.numPreloadImages) {
this._visible = false;
_parent._parent.preloadedImages++;
}
}
Symbol 109 MovieClip Frame 2
play();
Symbol 109 MovieClip Frame 5
stop();
Symbol 109 MovieClip Frame 6
play();
Symbol 109 MovieClip Frame 8
gotoAndStop (1);
Symbol 133 MovieClip Frame 1
function lockIt() {
this.gotoAndStop(2);
}
function unlockIt() {
this.gotoAndStop(1);
}
stop();
Symbol 133 MovieClip Frame 2
stop();