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

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

Anagrammatic.swf

This is the info page for
Flash #26405

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


Text
Time left:

0

Time is up!

n/a

Click now to challenge!

Won:

0

Lost:

0

GO BACK TO LOBBY

PLAY!

n/a

CANCEL

Challenge to:

n/a

n/a

Has accepted!

n/a

FPS METER

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

0

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

OK

v

v

v

v1.07

LOADING

YOUR OPPONENT HAS QUIT

BACK TO LOBBY

BACK TO LOBBY

Tic Tac Toe

x

o

Whose Turn:

Send

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

Restart

One game player has left, the
game is now over.

Back to Chat

FX

X

?

GET READY !

GET READY !

vs

vs

C

C

C

V

V

V

<p align="left"><font face="Verdana" size="10" color="#000000" letterSpacing="0.000000" kerning="0">FPS of last 5 seconds</font></p>

Backspace

Backspace

Player 1 has submitted a 6 letter word

Player 2 has submitted a 6 letter word

Checking Dictionary...

NEXT ROUND

NEXT ROUND

NEXT ROUND

Waiting for Opponent...

endround

Player 1 has submitted a 6 letter word:

Player 2 has submitted a 7 letter word:

Adding it up...

Synchronising...

gameover

GAME OVER

Final Scores

PLAY AGAIN

PLAY AGAIN

PLAY AGAIN

VIEW HIGHSCORES

VIEW HIGHSCORES

BACK TO LOBBY

BACK TO LOBBY

back to lobby

Restarting game...

Player 1 has submitted a 6 letter word:

Nobody got the
conundrum this time!

The answer is:

Incorrect Submission

You may only make one
attempt at the conundrum

Your answer must
contain 9 letters.

ARE YOU SURE YOU
WISH TO QUIT?

NO

NO

NO

YES

YES

YES

YOU WILL LOSE THIS
GAME IF YOU QUIT

SUBMIT

SUBMIT

SUBMIT

BIG

SMALL

ActionScript [AS1/AS2]

Frame 2
function fChangeMusic(bln) { if (bln == 2) { if (_root.blnMusic == 1) { unloadMovieNum (5); loadMovieNum ("music.swf", 5); } musoMode = 1; } else { if (_root.blnMusic == 1) { unloadMovieNum (5); loadMovieNum ("music2.swf", 5); } musoMode = 2; } } System.security.allowDomain("*"); _focusrect = false; var BASE = "http://www.miniclip.com/anagrammatic"; var arrIDs = new Array(); var blnFX = 1; var blnMusic = 1; var musoMode = 1; nBytesTotal = _root.getBytesTotal(); nBytesLoaded = _root.getBytesLoaded(); nPercentLoaded = int((nBytesLoaded / nBytesTotal) * 100); movLoader.gotoAndStop(Math.round(nPercentLoaded)); if (_root.getBytesLoaded() >= _root.getBytesTotal()) { gotoAndPlay ("INIT"); }
Frame 3
gotoAndPlay ("Loader");
Frame 13
var arrPlayers = new Array();
Frame 14
function fResetVars() { LOCAL_CHALLENGER = ""; LOCAL_CHALLENGED = ""; P1SUBMIT = ""; P2SUBMIT = ""; P1ENDED = ""; P2ENDED = ""; P1PLAYAGAIN = ""; P2PLAYAGAIN = ""; CONNECTED = 1; strLetters = ""; txtEntry = ""; nP1Score = 0; nP2Score = 0; P_TURN = 0; } var LOCAL_USER = ""; var LOCAL_CHALLENGER = ""; var LOCAL_CHALLENGED = ""; var ROOM_NUM = ""; var P1SUBMIT = ""; var P2SUBMIT = ""; var P1ENDED = ""; var P2ENDED = ""; var P1PLAYAGAIN = ""; var P2PLAYAGAIN = ""; var strUsername = strDisplayName; var strEmail = strCookieEmail; _root.randomLettersSent = false; trace("2. _root.randomLettersSent = false;"); txtUsername = strUserName; var CONNECTED = 0; arrPlayers = new Array();
Frame 15
function setTimeOut(timeOut, func) { _root.attachMovie("mcTimer", "mcTimer", 10000); mcTimer._x = 240; mcTimer._y = 328; mcTimer.timeOut = timeOut; mcTimer.doThis = func; } function stopTimeOut() { removeMovieClip("_root.mcTimer"); } function fillInLetters() { if (_root.randomLettersSent != true) { _root.nLCount = _root.nLCount; while (_root.nLCount < 10) { if (random(2) == 0) { var nRand = random(_root.strCons.length); _root.charTemp = substring(_root.strCons, nRand, 1); } else { var nRand = random(_root.strVows.length); _root.charTemp = substring(_root.strVows, nRand, 1); } _root.strLetters = _root.strLetters + _root.charTemp; eval ("_root.movL" + _root.nLCount).charL = _root.charTemp; _root.nLCount++; } _root.nLCount++; _root.activeLetters = _root.strLetters; var ob = {type:"INPLAY", letter:_root.strLetters, from:myName}; debug("[G] 3. Sent move: " + _root.strLetters); sendMove(ob); _root.MODE = -1; _root.randomLettersSent = true; } } function fStartGame() { _root.movScores.txtP1Name = gamePlayer0; _root.movScores.txtP2Name = gamePlayer1; _root.movScores.txtP1Name2 = gamePlayer0; _root.movScores.txtP2Name2 = gamePlayer1; MODE = 1; if (myTurn) { txtMsgs = "It's your go. Please select nine letters."; txtMsgs2 = "It's your go. Please select nine letters."; _root.movTheButts.gotoAndPlay(2); setTimeOut(20, fillInLetters); } else { txtMsgs = ("Please wait. " + arrPlayers[P_TURN]) + " is selecting letters"; txtMsgs2 = ("Please wait. " + arrPlayers[P_TURN]) + " is selecting letters"; setTimeOut(20, undefined); } } function isOnlyConsonantsOrVowels(str) { var _local7 = false; var _local3 = "aeiou"; var _local5 = 0; str = str.toLowerCase(); var _local2 = 0; while (_local2 < str.length) { var _local1 = 0; while (_local1 < _local3.length) { if (str.charAt(_local2) == _local3.charAt(_local1)) { _local5++; break; } _local1++; } _local2++; } if (_local5 == str.length) { debug("[G] Only vowels: " + str); var _local6 = true; } else if (_local5 == 0) { debug("[G] Only consonants: " + str); var _local6 = true; } else { debug("[G] Vowels and consonants: " + str); var _local6 = false; } return(_local6); } function doPlay(sendStr, nType) { switch (nType) { case 1 : _root.conundrumAlreadySent = false; if (sendStr.length == 9) { if (isOnlyConsonantsOrVowels(sendStr) && (_root.randomLettersSent != true)) { debug("[G] Submitted only consonants or vowels. Randomizing sumbission."); _root.charTemp = ""; _root.strLetters = ""; _root.nLCount = 1; fillInLetters(); } } if (_root.randomLettersSent != true) { var _local3 = {type:"INPLAY", letter:sendStr, from:myName}; debug("[G] 1. Sent move: " + sendStr); sendMove(_local3); } break; case 2 : break; case 3 : break; case 4 : break; case 5 : if (!_root.conundrumAlreadySent) { var _local3 = {type:"CONUNDRUM", letter:sendStr, from:myName}; _root.conundrumAlreadySent = true; debug("[G] Conundrum sent."); sendMove(_local3); } else { debug("[G] Conundrum was already sent, did not send it again."); } break; case 6 : var _local3 = {type:"CONSUBMIT", letter:sendStr, from:myName}; sendMove(_local3); break; case 7 : _local3 = {type:"CONLOSE", letter:sendStr, from:myName}; sendMove(_local3); break; case 8 : _local3 = {type:"SPEAK", letter:sendStr, from:myName}; sendMove(_local3); break; case 9 : _local3 = {type:"PLAYAGAIN", letter:sendStr, from:myName}; sendMove(_local3); _root.conundrumAlreadySent = false; } } function sendMove(ob) { debug("[G] Sent move: " + ob); es.sendMove("all", ob); } function fTimesUp() { if (strEntry.length < 4) { strEntry = "-"; } var _local1 = {type:"SUBMISSION", letter:strEntry, from:myName}; debug("[G] Using sendMove to send move."); sendMove(_local1); } function fEndRound() { nRound++; if (nRound > (_root.nTotalRounds + 1)) { fEndGame(); } else { MiniclipGameEvent("StartPenaliseQuitting"); } if (P_TURN == 1) { P_TURN = 0; } else { P_TURN = 1; } if (myTurn == true) { myTurn = false; } else { myTurn = true; } var i = 1; while (i < 10) { eval ("movL" + i).charL = ""; i++; } txtEntry = ""; var ob = {type:"ENDROUND", letter:"1", from:myName}; sendMove(ob); } function fRestartRound() { _root.randomLettersSent = false; trace("1. _root.randomLettersSent = false;"); strLetters = ""; arrButtEnabled = new Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1); strEntry = ""; gotoAndStop ("GAME"); checksuccess = "false"; nLCount = 1; nTime = nTotalTime; P1SUBMIT = ""; P2SUBMIT = ""; P1ENDED = ""; P2ENDED = ""; txtRound = (("Round " + nRound) + " of ") + nTotalRounds; txtRound2 = (("Round " + nRound) + " of ") + nTotalRounds; strNumbers = ""; nTheTarget = 0; txtEntry = ""; txtEntry1 = ""; txtEntry2 = ""; txtEntry3 = ""; txtEntry4 = ""; txtEntry5 = ""; txtEntry6 = ""; txtEntry7 = ""; txtEntry8 = ""; txtEntry9 = ""; movL1.cover.gotoAndStop(1); movL2.cover.gotoAndStop(1); movL3.cover.gotoAndStop(1); movL4.cover.gotoAndStop(1); movL5.cover.gotoAndStop(1); movL6.cover.gotoAndStop(1); movL7.cover.gotoAndStop(1); movL8.cover.gotoAndStop(1); movL9.cover.gotoAndStop(1); movCecil.txtN1 = nN1; movCecil.txtN2 = nN2; movCecil.txtN3 = nN3; movCecil.nCount = 0; blnNumEnabled = 1; arrButtEnabled = new Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1); movTimer.gotoAndStop(1); if (nRound == nConRound) { gotoAndStop ("CONUNDRUM"); } else { CONUNRND = 0; gotoAndStop ("GAME"); } if (LOCAL_USER == arrPlayers[P_TURN]) { txtMsgs = "It's your go. Please select nine letters."; txtMsgs2 = "It's your go. Please select nine letters."; } else { txtMsgs = ("Please wait. " + arrPlayers[P_TURN]) + " is selecting letters"; txtMsgs2 = ("Please wait. " + arrPlayers[P_TURN]) + " is selecting letters"; } } function fEndGame() { if (LOCAL_USER != strUser2) { if (LOCAL_CHALLENGER == strUser2) { _root.movGetter.gotoAndPlay(2); } } }
Frame 35
function goBack() { MiniclipGameEvent("backToLobby"); fResetVars(); unloadMovieNum (5); gotoAndStop ("Holding Room"); } debug("[G] 1. activeLetters = ''"); activeLetters = ""; stop();
Instance of Symbol 427 MovieClip "comLobby" in Frame 35
//component parameters onClipEvent (construct) { lobbyLabel = "Holding Room"; inGameLabel = "Game2"; disconnectedLabel = "Disconnected"; roomBaseName = "A"; roomLabels = []; roomLabels[0] = "Ambiguous"; roomLabels[1] = "Anagram"; roomLabels[2] = "Bamboozle"; roomLabels[3] = "Bemuse"; roomLabels[4] = "Bewilder"; roomLabels[5] = "Confound"; roomLabels[6] = "Confuse"; roomLabels[7] = "Decipher"; roomLabels[8] = "Dilemma"; roomLabels[9] = "Dumbfound"; roomLabels[10] = "Elude"; roomLabels[11] = "Enigma"; roomLabels[12] = "Epigram"; roomLabels[13] = "Labyrinth"; roomLabels[14] = "Library"; roomLabels[15] = "Maze"; roomLabels[16] = "Muse"; roomLabels[17] = "Mystery"; roomLabels[18] = "Paradox"; roomLabels[19] = "Perplex"; roomLabels[20] = "Quandary"; roomLabels[21] = "Resolve"; roomLabels[22] = "Riddle"; roomLabels[23] = "Secret"; roomLabels[24] = "Solve"; roomLabels[25] = "Stymie"; roomLabels[26] = "Wonder"; roomLabels[27] = "Brainbox"; roomLabels[28] = "Flabberghast"; roomLabels[29] = "Conundrum"; roomLabels[30] = "Jumble"; roomLabels[31] = "Astonish"; roomLabels[32] = "Simplify"; roomLabels[33] = "Trial"; roomLabels[34] = "Mix Up"; roomLabels[35] = "Unravel"; roomLabels[36] = "Spell"; roomLabels[37] = "Pressure"; roomLabels[38] = "Predicament"; roomLabels[39] = "Frustrate"; roomLabels[40] = "Perturb"; roomLabels[41] = "Mystify"; roomLabels[42] = "Shuffle"; roomLabels[43] = "Arrange"; roomLabels[44] = "Harmonize"; roomLabels[45] = "Methodize"; roomLabels[46] = "Compose"; roomLabels[47] = "Accommodate"; roomLabels[48] = "Assemble"; roomLabels[49] = "Discover"; cookieName = "Anagramania"; serverIP = "76.74.147.154"; baseColour = 13000325 /* 0xC65E85 */; lightColour = 15584732 /* 0xEDCDDC */; darkColour = 6822455 /* 0x681A37 */; avatarSet = 1; chatChoices = "Good game!,Oh no!,Close!,I can't believe that!,Very good word.,Great minds think alike.,So close!,Bad luck.,Thanks!"; showInGameInfo = true; }
Frame 49
function moveReceived(type, ob, from) { switch (ob.type) { case "INPLAY" : _root.conundrumAlreadySent = false; if (!_root.myTurn) { strLetters = ob.letter; debug("[G] Remote player updated 1: " + strLetters); var i = 1; while (i < (strLetters.length + 1)) { eval ("movL" + i).charL = strLetters.charAt(i - 1); i++; } nLCount = strLetters.length; if (nLCount >= 9) { activeLetters = strLetters; debug("[G] activeLetters: " + activeLetters); nTimer = 0; movTimer._alpha = 100; MODE = 2; _root.movTheButts.gotoAndPlay(11); _root.stopTimeOut(); } } else { debug("[G] Local player updated 2: " + ob.letter); if (strLetters.length >= 9) { nTimer = 0; movTimer._alpha = 100; MODE = 2; _root.movTheButts.gotoAndPlay(11); _root.stopTimeOut(); } } return; case "CONUNDRUM" : strConAnswer = ob.letter; i = 0; while (i < 9) { var n = random(9 - i); strLetters = strLetters + ob.letter.charAt(n); if (n != 0) { ob.letter = ob.letter.substring(0, n) + ob.letter.substring(n + 1, ob.letter.length); } else { ob.letter = ob.letter.substring(1, ob.letter.length); } i++; } debug("[G] Conundrum received."); var i = 1; while (i < (strLetters.length + 1)) { eval ("movL" + i).charL = strLetters.charAt(i - 1); i++; } movDoCon.gotoAndStop(1); _root.movTheButts.gotoAndPlay(2); nTimer = 0; MODE = 2; _root.fChangeMusic(1); _root.movMsgs.gotoAndStop(1); return; case "CONSUBMIT" : if (from == arrPlayers[0]) { P1SUBMIT = ob.letter; P2SUBMIT = ""; } else { P2SUBMIT = ob.letter; P1SUBMIT = ""; } if ((P1SUBMIT != "") || (P2SUBMIT != "")) { MODE = 5; movConSubmit.gotoAndPlay(2); } return; case "CONLOSE" : MODE = 5; movConSubmit.gotoAndStop(7); return; case "SUBMISSION" : debug("[G] Got submission."); debug("[G] 2. activeLetters = ''"); activeLetters = ""; if (from == arrPlayers[0]) { P1SUBMIT = ob.letter; } else { P2SUBMIT = ob.letter; } if ((P1SUBMIT != "") && (P2SUBMIT != "")) { MODE = 5; movSubmit.gotoAndPlay(2); } return; case "ENDROUND" : if (from == arrPlayers[0]) { P1ENDED = 1; } else { P2ENDED = 1; } if ((P1ENDED == 1) && (P2ENDED == 1)) { MODE = 1; if (nRound < (_root.nTotalRounds + 1)) { fRestartRound(); movTimer._alpha = 0; movSubmit.gotoAndStop(1); movConSubmit.gotoAndStop(1); movMsgs.gotoAndPlay(2); movNumbersUp.gotoAndStop(1); } else { movSubmit.gotoAndStop(1); movConSubmit.gotoAndStop(1); movNumbersUp.gotoAndStop(1); movMsgs2.gotoAndPlay(2); } } return; case "PLAYAGAIN" : if (from == arrPlayers[0]) { P1PLAYAGAIN = 1; } else { P2PLAYAGAIN = 1; } if ((P1PLAYAGAIN == 1) && (P2PLAYAGAIN == 1)) { movMsgs2.gotoAndPlay(9); } _root.conundrumAlreadySent = false; return; default : _root.History.text = _root.History.text + msg; } } function sendRestart() { ob = new Object(); ob.from = myName; ob.type = "restart"; sendMove(ob); } function iGotClicked(who) { if ((((!locked) && (gameInPlay)) && (myTurn)) && (!spectator)) { myTurn = false; who.gotoAndStop(myLetter); who.letter = myLetter; moves++; checkForWin(); var _local1 = {name:who._name, type:"move", letter:myLetter, from:myName}; sendMove(_local1); } } function userListUpdated(userList, type, user) { if ((user == gamePlayer0) || (user == gamePlayer1)) { movLeaver.gotoAndPlay(2); } } function chatSend(msg) { es.sendMessage("all", msg); } _root.fChangeMusic(2); locked = false; initializedYet = false; player = es.getUser().AssignedNumber.value; var arrPlayers = new Array(); var myName = es.username; LOCAL_USER = myName; var userList = es.getUserList(); var i = 0; while (i < userList.length) { var user = es.getUserList()[i]; if (user.AssignedNumber.value == 0) { arrPlayers[0] = user.Name.value; gamePlayer0 = user.Name.value; } else if (user.AssignedNumber.value == 1) { arrPlayers[1] = user.Name.value; gamePlayer1 = user.Name.value; } i++; } es.moveReceived = moveReceived; es.userListUpdated = userListUpdated; play(); var gameInPlay = false; var whoseTurn = gamePlayer0; var myTurn; var myLetter; var hisLetter; var moves; if (player == 0) { myLetter = "x"; hisLetter = "o"; myTurn = true; } else { myTurn = false; myLetter = "o"; hisLetter = "x"; }
Instance of Symbol 448 MovieClip "movLeaver" in Frame 49
/* no clip actions */
Instance of Symbol 243 MovieClip [FScrollBarSymbol] "bar" in Frame 49
//component parameters onClipEvent (construct) { _targetInstanceName = "chatBox"; horizontal = false; }
Frame 50
if ((((((gamePlayer0 != "") && (gamePlayer1 != "")) && (gamePlayer0 != null)) && (gamePlayer1 != null)) && (gamePlayer1 != undefined)) && (gamePlayer0 != undefined)) { debug("[G] In-game checks fine."); gotoAndPlay ("PLAY"); } else { debug("[G] User is undefined. Going back to lobby."); MiniclipGameEvent("backToLobby"); }
Frame 51
gotoAndPlay ("CHECKERING");
Frame 52
if (player == 0) { myLetter = "x"; hisLetter = "o"; myTurn = true; } else { myTurn = false; myLetter = "o"; hisLetter = "x"; } debug("[G] 3. activeLetters = ''"); activeLetters = "";
Frame 84
var ni = 1;
Frame 85
txtP1Name = gamePlayer0; txtP1Name2 = gamePlayer0; txtP2Name = gamePlayer1; txtP2Name2 = gamePlayer1; randomLettersAlreadySent = false; var ISLEAGUE = 0; ni++; if (ni > 125) { gotoAndPlay ("CARRYON"); }
Frame 86
gotoAndPlay ("START");
Frame 87
if (_root.blnFX == 1) { _root.sndCrowd.play(); }
Frame 144
movScore.txtP1Name = ""; movScore.txtP2Name = ""; movScore.txtP1Name2 = ""; movScore.txtP2Name2 = ""; movScore.txtP1Score = ""; movScore.txtP2Score = ""; movScore.txtP1Score2 = ""; movScore.txtP2Score2 = "";
Instance of Symbol 560 MovieClip "movScores" in Frame 148
onClipEvent (enterFrame) { if (_root.nP1Score != undefined) { txtP1Score = _root.nP1Score; txtP1Score2 = _root.nP1Score; txtP2Score = _root.nP2Score; txtP2Score2 = _root.nP2Score; } else { txtP1Score = 0; txtP1Score2 = 0; txtP2Score = 0; txtP2Score2 = 0; } }
Instance of Symbol 584 MovieClip "fps" in Frame 155
onClipEvent (load) { fps = 0; var startTime = getTimer(); var numFrames = 0; } onClipEvent (enterFrame) { numFrames++; var now = getTimer(); elapsedSeconds = (now - startTime) / 1000; actualFPS = Math.round(numFrames / elapsedSeconds); if (elapsedSeconds > 5) { fps = actualFPS; if (fps > 9) { _root.nFrameRate = fps; } var startTime = getTimer(); var numFrames = 0; } }
Frame 158
var strCons = "BCRDFRTGSHJRKSCRLMNRCPQCRTSNTVTWXYTZNRTTBCTNDFNGHNHLNMNMPNRLSSBMLSTVSWYGNRTDGLNRSTDLNRST"; var strVows = "AEIAEIEAEOUEAEIOAUEAEAEAEIOUAEIOEEEAAUAEIEOAEAAEEAAEIOAEAAAAIEOAEIO"; var strLetters = ""; var arrButtEnabled = new Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1); var strEntry = ""; var txtEntry1 = ""; var txtEntry2 = ""; var txtEntry3 = ""; var txtEntry4 = ""; var txtEntry5 = ""; var txtEntry6 = ""; var txtEntry7 = ""; var txtEntry8 = ""; var txtEntry9 = ""; var checksuccess = "false"; var idsuccess = "false"; var GAMEOVER = 0; txtRound = ""; txtRound2 = ""; _root.fChangeMusic(1); var arrLastClicked = new Array(); var NUMBERSRND = 0; var CONUNRND = 0; var nTotalTime = 40; var nTimeToEnter = 39; var nRound = 1; var nTotalRounds = 5; var nConRound = 5; var nLCount = 1; var nFrameRate = 31; var nTime = nTotalTime; var MODE = 0; var P_TURN = 0; var nP1Score = 0; var nP2Score = 0; var arrP1Words = new Array(); var arrP2Words = new Array(); txtRound = (("Round " + nRound) + " of ") + nTotalRounds; txtRound2 = (("Round " + nRound) + " of ") + nTotalRounds; txtMsgs = ""; txtMsgs2 = ""; fStartGame(); doClear();
Instance of Symbol 680 MovieClip in Frame 158
onClipEvent (enterFrame) { _root.txtD1 = _root.LOCAL_CHALLENGER; }
Frame 159
movBounce1.gotoAndStop(2); movBounce2.gotoAndStop(2); movBounce3.gotoAndStop(2); movBounce4.gotoAndStop(2); movBounce5.gotoAndStop(2); movBounce6.gotoAndStop(2); movBounce7.gotoAndStop(2); movBounce8.gotoAndStop(2); movBounce9.gotoAndStop(2); txtRound = (("Round " + nRound) + " of ") + nTotalRounds; txtRound2 = (("Round " + nRound) + " of ") + nTotalRounds; movTimer._alpha = 0; var strConAnswer = ""; debug(("[G] activeLetters: (" + activeLetters) + ")"); if ((activeLetters != "") && (activeLetters != undefined)) { strLetters = activeLetters; var i = 1; while (i < (activeLetters.length + 1)) { eval ("movL" + i).charL = activeLetters.charAt(i - 1); i++; } nTimer = 0; movTimer._alpha = 100; MODE = 2; _root.movTheButts.gotoAndPlay(11); _root.stopTimeOut(); debug("[G] Used activeLetters to fill in the letter boxes."); } else { debug("[G] activeLetters not needed, receiving letters now."); } stop();
Instance of Symbol 715 MovieClip "movTimer" in Frame 159
onClipEvent (load) { nTimer = 0; } onClipEvent (enterFrame) { if ((_root.MODE == 2) || (_root.MODE == 3)) { this._visible = 1; if (nTimer <= 5) { _root.sndMusic.gotoAndPlay(2); } if ((nTimer / _root.nFrameRate) == Math.round(nTimer / _root.nFrameRate)) { _root.nTime--; } if ((nTimer / Math.round(_root.nFrameRate / 4)) == Math.round(nTimer / Math.round(_root.nFrameRate / 4))) { nextFrame(); } nTimer++; txtTimer1 = _root.nTime; txtTimer2 = _root.nTime; txtTimer3 = _root.nTime; if (_root.CONUNRND == 1) { if (_root.nTime <= 100) { if (_root.MODE != 3) { _root.movTheButts.gotoAndPlay(2); } _root.MODE = 3; _root.txtMsgs = "FIND THE NINE LETTER WORD"; _root.txtMsgs2 = "FIND THE NINE LETTER WORD"; } if (_root.nTime <= 0) { if (_root.MODE != 4) { _root.movTheButts.gotoAndPlay(12); } _root.MODE = 4; _root.strSubmission = "n6"; _root.doPlay(_root.strSubmission, 7); } } else { if (_root.nTime <= _root.nTimeToEnter) { _root.MODE = 3; _root.txtMsgs = "Enter the longest word you can find. Click on the letters!"; _root.txtMsgs2 = "Enter the longest word you can find. Click on the letters!"; } if (_root.nTime <= 0) { _root.MODE = 4; if (_root.NUMBERSRND == 1) { _root.strSubmission = _root.txtEntry; _root.doPlay(_root.strSubmission, 4); } else { debug("[G] Trying to use fTimesUp() to send message."); _root.fTimesUp(); } } } } }
Frame 166
arrConundrums = new Array("abdominal", "abandoned", "abduction", "abilities", "abolished", "absconded", "absorbent", "absorbing", "abstained", "academics", "accenting", "acceptant", "accepting", "accessory", "acclaimed", "accolades", "accordion", "achieving", "acoustics", "acquiesce", "activists", "adaptable", "addiction", "additions", "additives", "addresses", "adhesives", "adjoining", "admirable", "admission", "admissive", "adulation", "adulthood", "advantage", "adventure", "adversary", "advertise", "advisable", "aerobatic", "aerodrome", "aesthetic", "affecting", "affiliate", "affording", "aftercare", "afterglow", "afterlife", "afternoon", "aggressor", "agitation", "agreeably", "agreement", "alcoholic", "algorithm", "alienated", "abilities", "academics", "adjusting", "aeroplane", "afternoon", "aggressor", "aliveness", "allegedly", "alleviate", "alligator", "allocated", "allotment", "allowable", "allowance", "alongside", "alternate", "altimeter", "amazement", "amazingly", "ambitious", "ambulance", "amendment", "amounting", "amplifier", "amplitude", "amusement", "analyzing", "anarchism", "anarchist", "anatomist", "ancestors", "animating", "annotates", "announces", "annulment", "anonymous", "answering", "anthology", "antidotes", "antipodes", "antivirus", "apartment", "apathetic", "apologies", "appalling", "appealing", "appending", "appetizer", "applicant", "appointed", "appraised", "apprehend", "arachnids", "arbitrate", "archiving", "argonauts", "armchairs", "arresting", "artichoke", "artifacts", "artillery", "ascending", "assassins", "assaulted", "assurance", "backboard", "backspace", "backstage", "bacterial", "balancing", "ballistic", "ballooned", "bandwagon", "bandwidth", "bantering", "barbecued", "barefaced", "bargained", "barrelled", "bashfully", "basically", "bathrooms", "battening", "batteries", "beautiful", "beckoning", "bedspread", "beekeeper", "begrudged", "beheading", "beholding", "believing", "belittled", "benchmark", "bickering", "bicycling", "bilingual", "billboard", "biologist", "blackened", "blacklist", "blackness", "blameless", "blanketed", "blasphemy", "blatantly", "bleakness", "blindness", "blinkered", "blissless", "blockaded", "bloodshed", "blossomed", "blowtorch", "blundered", "blustered", "bobsleigh", "bobtailed", "bodyguard", "bookshelf", "bookstore", "bordering", "botanical", "bracketed", "brainless", "brainwash", "breaching", "breakdown", "breakfast", "breathing", "brigadier", "brilliant", "broadcast", "broadened", "buccaneer", "bucketful", "buffering", "bulldozer", "butchered", "butterfly", "cabdriver", "cabriolet", "cacophony", "cafeteria", "calibrate", "callously", "cancelled", "cancerous", "candidate", "candlelit", "canvassed", "capillary", "captained", "capturing", "carbonate", "carefully", "caressing", "caretaker", "carnation", "carpenter", "carpentry", "carriages", "cartilage", "charities", "chastised", "chauffeur", "checkered", "checklist", "cheekbone", "cheerless", "chemistry", "chestnuts", "chieftain", "childhood", "childlike", "chipboard", "chopstick", "christmas", "chronicle", "chrysalis", "chubbiest", "cigarette", "cigarillo", "circuitry", "circulate", "cityscape", "civilized", "claimless", "clarified", "clarifies", "classmate", "classroom", "clattered", "cleansing", "clearance", "clergyman", "climactic", "clipboard", "cloakroom", "clockwork", "clubhouse", "clutching", "coalition", "cockroach", "cogitated", "cognition", "coincided", "collapsed", "collation", "collected", "collector", "colliding", "collision", "collusion", "collusive", "comforted", "comically", "commended", "committal", "committed", "committee", "commotion", "communist", "community", "compacted", "compelled", "compiling", "complaint", "compliant", "comprised", "computers", "computing", "concavely", "condemned", "condenses", "conducing", "conducive", "conducted", "conferred", "confessed", "confesses", "confident", "confiding", "configure", "confirmed", "conformed", "confusing", "confusion", "congested", "connected", "conquests", "conscript", "conserved", "consonant", "conspired", "constrain", "constrict", "construct", "consuming", "contacted", "contactor", "contained", "container", "contented", "contently", "contested", "continual", "continued", "contrived", "conundrum", "conversed", "converted", "converter", "convinced", "craftsmen", "craziness", "creatures", "crediting", "creditors", "crescendo", "criminals", "crippling", "criticism", "crocodile", "crossings", "crossover", "crossroad", "crouching", "crucified", "crumbling", "crunchier", "crunching", "culturist", "cupboards", "alleyways", "aluminium", "ancestors", "appliance", "arguments", "assistant", "authority", "available", "beautiful", "bicycling", "briefcase", "careering", "coloureds", "cupboards", "curiouser", "curiously", "currently", "custodian", "cutthroat", "cylinders", "daffodils", "dairymaid", "damnation", "damningly", "dandelion", "dangerous", "daredevil", "darkening", "damnation", "dartboard", "dashboard", "dashingly", "databases", "daughters", "deadening", "deadlines", "deafening", "deathless", "debatable", "debugging", "debutante", "decathlon", "deceasing", "deceitful", "deceiving", "decencies", "deception", "deceptive", "decidable", "decidedly", "decimated", "deciphers", "decisions", "declaring", "decompile", "decompose", "decorated", "decorator", "decreased", "decreases", "decreeing", "decrement", "dedicated", "dedicator", "deduction", "deductive", "deepening", "defaulted", "defeating", "defeatism", "defecting", "defective", "defendant", "defenders", "defensive", "deferrers", "deficient", "deflected", "deflector", "deformity", "degrading", "delegated", "delighted", "delimited", "delirious", "delivered", "deliverer", "demanding", "democracy", "democrats", "dentistry", "deodorant", "deodorize", "departing", "departure", "dependent", "depending", "depletion", "deploying", "deposited", "deprecate", "depressed", "depriving", "depthless", "described", "describer", "describes", "deceitful", "desertion", "desirable", "desirably", "desperado", "desperate", "destroyed", "detaining", "detecting", "detection", "detective", "detention", "detergent", "determine", "deterrent", "developed", "developer", "devotedly", "diagnosed", "diaphragm", "dictators", "dietician", "different", "deferrers", "difficult", "diffusive", "digestion", "digitally", "dimension", "diplomats", "direction", "dirtiness", "disagreed", "disappear", "detailing", "disarming", "discharge", "disciples", "disclosed", "discovers", "discovery", "disengage", "disgusted", "dishonest", "dishonors", "dismantle", "dismember", "dismissal", "dismounts", "dispersed", "disposals", "disregard", "distiller", "distorted", "disturbed", "diversify", "diversion", "dividable", "divisible", "doodlebug", "dormitory", "dragonfly", "drainpipe", "driftwood", "drinkable", "driveways", "droppings", "druggists", "drugstore", "dubiously", "dumpiness", "duskiness", "dutifully", "earnestly", "earthling", "eavesdrop", "economies", "educating", "education", "educators", "effecting", "effectual", "efficient", "eightieth", "elaborate", "elections", "electoral", "electrify", "electrode", "electrons", "elevation", "elevators", "elsewhere", "embarrass", "embezzler", "emotional", "emphasize", "employees", "employers", "emptiness", "emulators", "encircles", "enclosing", "enclosure", "encourage", "endearing", "endeavors", "endoscope", "endurable", "endurably", "endurance", "engraving", "engrossed", "enjoyable", "enjoyably", "enlighten", "enslaving", "enveloped", "enveloper", "envelopes", "enviously", "envisaged", "envisages", "epidemics", "equalizer", "equalling", "equalness", "equitable", "equations", "equipment", "equitable", "equitably", "erectable", "erroneous", "escalated", "escalates", "escalator", "escapable", "essential", "establish", "estimably", "estimated", "estimates", "estimator", "eternally", "ethically", "evacuated", "evacuator", "evaluated", "evaluates", "evaluator", "eventless", "eventuate", "everglade", "evergreen", "everybody", "evictions", "evidently", "examiners", "examining", "exception", "excitedly", "exclaimed", "executors", "executors", "exhausted", "exhibitor", "elaborate", "exclusive", "exhausted", "explained", "expressed", "extending", "extension", "extensive", "fabricate", "facecloth", "facsimile", "factories", "factually", "faculties", "faintness", "fairyland", "faithless", "fantasies", "farmhouse", "farmyards", "fashioner", "fastening", "favorably", "feathered", "fertility", "feudalism", "fictional", "fidgeting", "fieldwork", "fifteenth", "filenames", "filmstrip", "financial", "fingertip", "fireguard", "fireplace", "fireproof", "flashback", "exposures", "favourite", "fifteenth", "flashiest", "flattered", "flaunting", "fledgling", "floodgate", "flounders", "flowchart", "flowering", "flowerpot", "flowingly", "fluctuate", "fogginess", "followers", "foodstuff", "foolproof", "footballs", "footprint", "forbidden", "foregoing", "foreigner", "forgiving", "forgiving", "formalist", "formality", "formicary", "fortifier", "fortnight", "fortunate", "fossilize", "fostering", "foundered", "foundries", "fountains", "fractions", "fragrance", "frailness", "frankness", "fraternal", "freewheel", "frequence", "frequency", "freshness", "fretfully", "frightens", "frightful", "fruitless", "functions", "fungicide", "furniture", "fuzziness", "gainfully", "gallantly", "gangplank", "gangsters", "gardeners", "gardening", "garibaldi", "garnished", "gatherers", "gathering", "gaudiness", "generally", "generates", "generator", "gentleman", "geography", "geologist", "germproof", "ghostlike", "gibberish", "giddiness", "girlishly", "gladiator", "glamorize", "glamorous", "glandular", "glaringly", "glassware", "gleefully", "glimmered", "glittered", "glorified", "glowingly", "glycerine", "godfather", "godmother", "godparent", "goldsmith", "gossiping", "governess", "governing", "graceless", "gradation", "gradients", "gradually", "graduated", "graduates", "graduator", "grandness", "grandsons", "graphical", "grassiest", "grassland", "gratitude", "granulate", "graveyard", "gravitate", "greatness", "greenness", "greetings", "greyhound", "griminess", "grindings", "groceries", "grotesque", "groupings", "growingly", "grateful", "grumbling", "guarantee", "guarantor", "guardians", "guessable", "guesswork", "guidebook", "guideline", "guildhall", "guildsman", "guiltiest", "gunpowder", "gushingly", "guttering", "gymnasium", "habitable", "hailstorm", "hairbrush", "hairdryer", "hairiness", "hallmarks", "hamburger", "hammering", "hamstring", "handcuffs", "handicaps", "handiness", "handiwork", "handlebar", "handprint", "handshake", "handwrite", "hangovers", "haphazard", "haplessly", "happening", "happiness", "hardening", "hardships", "harmfully", "harmonica", "harmonics", "harmonies", "harrowing", "harshness", "harvested", "harvester", "hastiness", "hatefully", "haughtily", "hazardous", "headaches", "headboard", "headdress", "headlight", "headlined", "headliner", "headlines", "healingly", "healthful", "healthier", "healthily", "heartache", "heartbeat", "heartburn", "heartedly", "heartfelt", "heartless", "heaviness", "hedgehogs", "heedfully", "helpfully", "herbivore", "hereafter", "hesitance", "hesitator", "hesitates", "hexagonal", "hibernate", "hideously", "hilarious", "hillbilly", "hindering", "hindrance", "hindsight", "histogram", "historian", "hobbyists", "holocaust", "holograms", "homebound", "homemaker", "homeopath", "homewards", "honeymoon", "hopefully", "horrified", "horseback", "horseplay", "hospitals", "hostesses", "hostility", "household", "housekeep", "housemaid", "housemate", "housewife", "huffiness", "humankind", "hurricane", "hurriedly", "hurtfully", "huskiness", "hydroxide", "hygienist", "formation", "functions", "geography", "horrified", "hospitals", "idealists", "identical", "ignoramus", "ignorance", "illegally", "illegible", "illegibly", "illicitly", "illnesses", "illogical", "illusions", "imageless", "imaginary", "imagining", "imbalance", "immediate", "immensely", "immensity", "immigrant", "immigrate", "immovable", "impartial", "impassive", "impatient", "important", "imposable", "impostors", "impressed", "impresses", "imprinted", "impromptu", "improving", "improvise", "inability", "inaudible", "incapable", "inceptive", "incessant", "incidence", "incidents", "increased", "increment", "incubates", "incubator", "incurably", "incursion", "incursive", "indignant", "induction", "inductive", "inductors", "indulgent", "indulging", "inelegant", "infertile", "infirmary", "inflating", "inflation", "influence", "influenza", "informers", "infuriate", "ingenious", "ingenuity", "ingenuous", "ingestion", "inherited", "initiated", "initiator", "injecting", "injection", "injustice", "innermost", "innkeeper", "innocence", "inoculate", "inscriber", "insidious", "insincere", "insomniac", "inspected", "installer", "instances", "instigate", "instincts", "insulator", "integrate", "integrity", "intellect", "intensely", "interview", "intricate", "intrigued", "intruders", "intuition", "investors", "invoicing", "irregular", "iteration", "jacketing", "jackstraw", "jadedness", "jailhouse", "jambalaya", "including", "indicator", "jackknife", "jargoneer", "jarringly", "jarringly", "jayhawker", "jaywalker", "jazziness", "jealously", "jealously", "jeeringly", "jellyfish", "jellylike", "jerkiness", "jestingly", "jitterbug", "jobholder", "jockstrap", "jolliness", "journeyed", "joylessly", "jubilance", "jubilancy", "judgeship", "judgments", "judicable", "judicator", "judiciary", "judicious", "juiceless", "juiciness", "jumpiness", "junctions", "junctures", "jurywoman", "justiciar", "justified", "justifier", "justifies", "juveniles", "kerbstone", "kettleful", "keyboards", "keystroke", "kidnapped", "kidnapper", "killingly", "kilocycle", "kilograms", "kilohertz", "kilojoule", "kilometer", "kilometre", "kinescope", "kinkiness", "kittenish", "knapsacks", "knavishly", "kneadable", "kneebrush", "kneepiece", "knifelike", "knighting", "knockdown", "knowingly", "knowledge", "knuckling", "laborious", "labyrinth", "lacerated", "laddering", "lamenting", "lamplight", "landflood", "landlords", "landmarks", "landowner", "landscape", "landslide", "languages", "larkiness", "lastingly", "latecomer", "laterally", "laughable", "laughably", "launching", "laundered", "launderer", "lawgiving", "lawlessly", "lawmaking", "lazybones", "leadingly", "leakiness", "leakproof", "leasehold", "leathered", "leftovers", "legendary", "legislate", "leisurely", "lengthens", "leniently", "lethargic", "lettering", "leviathan", "levitator", "liability", "liberally", "liberated", "liberator", "liberties", "libraries", "licensing", "lifeblood", "lifeguard", "lifestyle", "lifetimes", "lightener", "lightness", "lightning", "likeliest", "limelight", "limestone", "limitless", "lingering", "linguists", "liquefied", "liquefier", "listeners", "listening", "literally", "littering", "loathsome", "locksmith", "lodgeable", "logically", "logistics", "loincloth", "loitering", "limescale", "listening", "lollipops", "longevity", "loopholes", "looseness", "loosening", "Louisiana", "loveliest", "localness", "loyalties", "lubricant", "lubricate", "lucrative", "lumbering", "lunchroom", "lustfully", "lustiness", "luxuriant", "luxurious", "lymphatic", "machinery", "maddening", "magically", "magicians", "magnesium", "magnetics", "magnetise", "magnetize", "magnetism", "magnifier", "magnitude", "mailboxes", "majesties", "makeshift", "malformed", "malicious", "malignant", "manicured", "manicures", "manifesto", "manifests", "manifolds", "mannequin", "mannerism", "marijuana", "marinated", "maritally", "martially", "marketing", "marmalade", "marriages", "marrowfat", "marshland", "marsupial", "masculine", "masochism", "masochist", "massacres", "massaging", "matchless", "materials", "maternity", "maximized", "maximises", "meanwhile", "measuring", "mechanics", "medallion", "mediation", "meditates", "memorable", "menopause", "menstrual", "merriment", "messenger", "metabolic", "metaphors", "meteorite", "methodise", "mezzanine", "middleman", "midnights", "midstream", "midwifery", "midwinter", "millipede", "mindfully", "minefield", "mirroring", "misbehave", "misbelief", "miscreant", "miserable", "miserably", "mishandle", "misshapen", "misinform", "mistiness", "mistletoe", "moderator", "moistener", "molecular", "monuments", "moonraker", "mortality", "mortgages", "mortifies", "mothering", "motorists", "mountains", "mousetrap", "mouthwash", "mugginess", "multiplex", "murderers", "murderess", "murderous", "mushrooms", "mustiness", "mutterers", "mythology", "naggingly", "nailbrush", "naiveness", "nakedness", "nameplate", "namesakes", "narration", "narrative", "narrowing", "nastiness", "nastiness", "nationals", "naturally", "naughtily", "navigable", "navigable", "navigable", "navigated", "navigates", "navigator", "necessary", "necessity", "necklaces", "nectarine", "needfully", "neediness", "negations", "negatives", "neglected", "negligent", "negotiant", "negotiate", "nerveless", "nervously", "neutrally", "newspaper", "newsprint", "newssheet", "newsstand", "nicknamed", "nicknamer", "nicknames", "nightclub", "nightfall", "nightgown", "nighthawk", "nightmare", "nighttime", "nightwear", "nobleness", "nocturnal", "noiseless", "noisiness", "nominated", "nonporous", "normality", "normative", "northeast", "northerly", "northland", "northmost", "northward", "northwest", "nosebleed", "nostalgia", "nostalgic", "notations", "notebooks", "notedness", "notifying", "notorious", "nourished", "nourisher", "nourishes", "novelists", "novelties", "nuisances", "numbering", "numerable", "numerator", "numerical", "nursemaid", "nurseries", "nurturing", "nutrition", "nutritive", "nymphlike", "obduction", "obedience", "objectify", "objecting", "objection", "objective", "objectors", "obligable", "measuring", "mechanism", "microwave", "muttering", "neighbour", "obligator", "oblivious", "obnoxious", "obscenely", "obscenity", "obscurely", "obscurity", "observant", "observers", "observing", "obsession", "obsessive", "obsoletes", "obstacles", "obstinate", "obtaining", "obtrusion", "obtrusive", "obversely", "obviously", "occasions", "occlusive", "occupancy", "occupants", "occurring", "octahedra", "offendant", "offenders", "offending", "offensive", "offerings", "offhanded", "officials", "officiate", "officious", "offspring", "oftenness", "ominously", "ominously", "omissions", "onerously", "onionskin", "onlooking", "onslaught", "operating", "operation", "operative", "operators", "opinative", "opinioned", "opponents", "opposable", "oppressed", "oppresses", "optically", "optimized", "optimizes", "orchestra", "orderings", "orderless", "ordinance", "originary", "ornaments", "osteopath", "otherwise", "ourselves", "outbreaks", "outbursts", "outermost", "outsiders", "outskirts", "outwardly", "outweighs", "overboard", "overbuild", "overbuilt", "overcoats", "overcomes", "overhangs", "overloads", "overlooks", "overnight", "overtness", "overwhelm", "ownership", "oxidation", "pacemaker", "packagers", "painfully", "paintings", "palatably", "paleology", "palpitate", "pamphlets", "paperback", "paperwork", "papillary", "paradoxic", "paralysis", "paralytic", "paralyzed", "paramount", "parasites", "partially", "particles", "partition", "partnered", "passenger", "passively", "passwords", "pastiness", "patchwork", "patenting", "patiently", "patrolled", "pausingly", "pavements", "pavilions", "peaceable", "peaceably", "peaceless", "peacetime", "peasantly", "peasantry", "peevishly", "pendulums", "peninsula", "penniless", "pensioner", "pentagons", "perdition", "perfected", "perfectly", "performed", "performer", "perfumery", "perishing", "permeable", "perpetual", "perplexed", "persecute", "persevere", "persisted", "persister", "personify", "personnel", "persuaded", "persuader", "pervasion", "pessimist", "pesterous", "pesticide", "petrified", "petroleum", "petticoat", "pettiness", "petulance", "phalanges", "phonetics", "phrasings", "pictogram", "pictorial", "pieceless", "pituitary", "placeable", "placement", "plainness", "plasterer", "platforms", "plausible", "playfully", "playhouse", "plaything", "pleasures", "pluggable", "plummeted", "plumpness", "plutonium", "pneumonia", "pointless", "poisoning", "poisonous", "policeman", "political", "pollution", "pavements", "perforate", "potential", "prickling", "procedure", "pseudonym", "publicist", "publicity", "quadrants", "quadrated", "quadratic", "quadruped", "quadruple", "quagmires", "qualified", "qualifier", "qualifies", "qualities", "quarreled", "quarrying", "quarryman", "quarrymen", "quartered", "quarterly", "quartette", "quavering", "queenship", "queerness", "questions", "quickened", "quickener", "quicklime", "quickness", "quicksand", "quickstep", "quickwork", "quietness", "quintette", "quittable", "quittance", "quivering", "quizzical", "quotation", "racetrack", "racialism", "racialist", "racketeer", "radiantly", "radiately", "radiating", "radiators", "radically", "radiology", "raincoats", "raindrops", "rainstorm", "rampantly", "randomize", "ransacked", "ransacker", "rapturist", "raspberry", "rationale", "ravishing", "realistic", "reanalyze", "rearrange", "reasoning", "reassured", "reassurer", "reassures", "rebellion", "recalling", "recasting", "receivers", "receiving", "recessive", "reckoning", "programme", "reclaimed", "reclaimer", "reclusive", "recombine", "reconcile", "reconnect", "recovered", "rectangle", "recurring", "recursion", "recycling", "redeliver", "reduction", "reductive", "redundant", "referrals", "reflected", "reflector", "regarding", "regretful", "regretted", "regularly", "regulates", "regulator", "rehearsal", "rehydrate", "reinforce", "reinstall", "reinstate", "rejection", "relations", "relatives", "relenting", "relevancy", "relieving", "religions", "remainder", "remission", "removable", "rendering", "relatives", "rendition", "repairing", "repairman", "repayable", "repayment", "repentant", "replenish", "reprobate", "reproduce", "repulsion", "repulsive", "requisite", "resentful", "resenting", "residents", "residuary", "resisting", "retracted", "retractor", "revealing", "sacrifice", "saddening", "salesgirl", "saleslady", "salesroom", "salvation", "salvatory", "samplings", "sanctuary", "sandiness", "sandpaper", "sandstone", "satisfied", "satisfier", "satisfies", "saturated", "repellent", "reprimand", "saturates", "saturator", "saturdays", "saucepans", "sauciness", "scaliness", "scapegoat", "scattered", "scatterer", "scentless", "schedular", "scheduled", "scheduler", "schedules", "schoolbag", "schoolboy", "schooling", "scientist", "scorpions", "scoundrel", "scraggily", "scrambler", "scrambles", "scrapbook", "scratches", "screaming", "screeched", "scribbled", "scribbler", "sculpture", "seclusive", "secondary", "seduction", "seemingly", "semicolon", "senseless", "sentiment", "separates", "sequenced", "seventies", "severally", "shadiness", "shadowing", "sheepskin", "sheltered", "shipwreck", "shoeshine", "shortcake", "showering", "shrieking", "shuttered", "sickening", "sidetrack", "signalman", "silencing", "silliness", "similarly", "sincerity", "skeletons", "sketchpad", "skylights", "slapstick", "sleepless", "sleepwalk", "slouching", "smoothing", "smuggling", "snakeskin", "snowshoes", "soakingly", "socialism", "somewhere", "soundings", "southward", "spearmint", "spectator", "sportsmen", "sharpener", "sidewalks", "sometimes", "stainless", "steamboat", "stiffness", "stitching", "stoppages", "stormiest", "succumbed", "suffocate", "sunburned", "tabulated", "taillight", "tailoring", "talkative", "tangerine", "tasteless", "taxpayers", "teachable", "tearfully", "teaspoons", "technical", "teenagers", "telegraph", "telephone", "temporary", "tentacles", "terminate", "territory", "terrorism", "testimony", "textbooks", "thickener", "thinkable", "threading", "threshold", "thrilling", "throwaway", "throwback", "thundered", "thunderer", "tightener", "tightness", "tightrope", "timesaver", "timeshare", "timetable", "timidness", "titanitic", "toadstool", "tolerable", "tolerably", "tolerance", "tolerated", "tolerates", "tollbooth", "toothpick", "tormented", "tormentor", "torpedoes", "tortoises", "torturing", "tottering", "touchable", "touchdown", "towelette", "towelling", "townhouse", "tractable", "trademark", "tradesman", "tradition", "tragedies", "trampling", "transcend", "transfers", "transform", "tracksuit", "translate", "transpire", "trapezium", "travelled", "traveller", "treadmill", "treasurer", "treasures", "triangles", "tribunals", "tributary", "trickiest", "triggered", "trimester", "trimmings", "trivially", "troubling", "trumpeter", "truncated", "tuggingly", "tunneling", "turbulent", "turntable", "tutorials", "twentieth", "twiddling", "twinkling", "twistable", "twitchily", "twitching", "twittered", "umbilical", "umbrellas", "upholders", "upholding", "upholster", "uplifting", "uprightly", "uprisings", "uprooting", "upsetting", "upsitting", "uselessly", "usualness", "utterable", "utterance", "uttermost", "vacations", "vaccinate", "vacuously", "vacuuming", "vagrantly", "vagueness", "valiantly", "validated", "validates", "validness", "valuables", "valuation", "valueless", "vampirish", "vandalism", "vanishing", "variables", "variances", "variation", "varicosed", "varieties", "variously", "varnished", "varnisher", "varnishes", "varyingly", "vasectomy", "vegetable", "vegetated", "vegetates", "vehicular", "veneering", "veracious", "versatile", "vertebrae", "vertebral", "vesicular", "viability", "vibrantly", "vibrating", "vibration", "vibrative", "viciously", "victimize", "videotape", "viewpoint", "vigilance", "vigilancy", "vigilante", "violating", "violation", "violators", "violently", "violinist", "virginity", "virtually", "viscosity", "viscounts", "visualize", "vivacious", "vividness", "vocalists", "vocalness", "vocations", "voiceless", "volcanism", "volcanist", "volcanity", "voluntary", "volunteer", "voodooism", "voodooist", "vulcanite", "vulgarism", "waistband", "waistcoat", "waistline", "wakefully", "wallboard", "wallowing", "wallpaper", "wanderers", "wandering", "wardrobes", "warehouse", "warningly", "warranted", "warrantee", "washbasin", "wasteland", "wastingly", "waterfall", "waterline", "watermark", "watershed", "waywardly", "weakening", "wealthily", "weariless", "weariness", "wearingly", "weathered", "weediness", "weepingly", "welcomely", "welcoming", "westbound", "whereupon", "whichever", "whirlpool", "whirlwind", "whispered", "whisperer", "whitening", "whitewash", "wholeness", "wholesale", "wholesome", "willfully", "willingly", "windbreak", "windiness", "windmills", "wisecrack", "wistfully", "witchlike", "withdrawn", "withdraws", "withstand", "withstood", "witnessed", "witnesser", "witnesses", "womankind", "womanlike", "womenkind", "wonderful", "wondering", "workhouse", "workpiece", "workplace", "worldwide", "worriedly", "worsening", "worthless", "woundable", "woundedly", "woundless", "wrappings", "wreakless", "wrestling", "wriggling", "wristband", "xenophobe", "xylophone", "yachtsmen", "yardstick", "yawningly", "yearnings", "yellowing", "yesterday", "yieldable", "youngster", "zealously", "zigzagged", "zoologist"); movDoCon.play(); var consuccess = ""; var arrAttempted = new Array(0, 0); CONUNRND = 1; NUMBERSRND = 0; movTimer._visible = 1; movTimer._alpha = 100; movTimer.gotoAndStop(1); stop();
Frame 172
var strBigNums = "1234"; var strSmallNums = "123456789"; var strNumbers = ""; var nTheTarget; var CECIL = 0; var blnNumEnabled = 1; arrButtEnabled = new Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1); NUMBERSRND = 1; stop();
Instance of Symbol 755 MovieClip "movCecil" in Frame 172
onClipEvent (load) { var nN1 = 1; var nN2 = 3; var nN3 = 4; var nCount = 0; } onClipEvent (enterFrame) { if (((_root.MODE == 1) && (_root.CECIL == 1)) && (_root.LOCAL_USER == _root.arrPlayers[_root.P_TURN])) { nN1++; nN2++; nN3++; if (nN1 == 10) { nN1 = 1; } if (nN2 == 10) { nN2 = 0; } if (nN3 == 10) { nN3 = 0; } txtN1 = nN1; txtN2 = nN2; txtN3 = nN3; nCount++; if (nCount >= 20) { nTarget = random(900) + 100; strTarget = String(nTarget); _root.doPlay(strTarget, 3); txtN1 = Number(strTarget.substr(0, 1)); txtN2 = Number(strTarget.substr(1, 1)); txtN3 = Number(strTarget.substr(2, 1)); _root.nTimer = 0; _root.MODE = 2; _root.CECIL = 0; _root.nTheTarget = Number(strTarget); } } }
Frame 264
stop();
Symbol 5 MovieClip [mcTimer] Frame 1
function secondPassed() { timeOut--; txtSeconds = timeOut; if (timeOut <= 0) { gotoAndStop ("done"); } nextSecond = getTimer() + 1000; } txtSeconds = timeOut; nextSecond = getTimer() + 1000;
Symbol 5 MovieClip [mcTimer] Frame 3
if (getTimer() > nextSecond) { secondPassed(); } if (timeOut > 0) { gotoAndPlay(_currentframe - 1); }
Symbol 5 MovieClip [mcTimer] Frame 4
doThis(); play();
Symbol 5 MovieClip [mcTimer] Frame 50
this.removeMovieClip(); stop();
Symbol 8 MovieClip [GWBaseClass] Frame 1
#initclip 69 _global.GWBaseClass = function () { this.init(); }; GWBaseClass.prototype = new MovieClip(); GWBaseClass.prototype.init = function (c) { this.classHolder._visible = 0; this._targetInstanceName = ((this._targetInstanceName == undefined) ? (this._name) : (this._targetInstanceName)); var _local2 = this._parent[this._targetInstanceName]; if (this._targetInstanceName.length) { for (i in this) { _local2[i] = this[i]; } this.inherit(c, _local2); _local2.init(); this.snapToPixels(_local2); } else { this.snapToPixels(this); } }; GWBaseClass.prototype.inherit = function (c, o) { o = o || this; for (i in c.prototype) { o[i] = c.prototype[i]; } }; GWBaseClass.prototype.snapToPixels = function (t) { t.classHolder._visible = 0; while (t._parent) { t._x = Math.round(t._x); t._y = Math.round(t._y); t = t._parent; } }; GWBaseClass.prototype.drawBox = function (n, d, x, y, w, h, c, a, o) { a = ((a == undefined) ? 100 : (a)); o = o || this; o.createEmptyMovieClip(n, d); o[n].beginFill(c, a); o[n].moveTo(x, y); o[n].lineTo(x + w, y); o[n].lineTo(x + w, y + h); o[n].lineTo(x, y + h); o[n].lineTo(x, y); o[n].endFill(); }; GWBaseClass.prototype.sizeMe = function (w, h, o) { if (o == undefined) { return(undefined); } w = Math.round(w); h = Math.round(h); if (o.setSize) { o.setSize(w, h); } else if (o.TL) { o._xscale = (o._yscale = 100); o.T._width = (w - o.TL._width) - o.TR._width; o.B._width = (w - o.BL._width) - o.BR._width; o.L._height = (h - o.TL._height) - o.BL._height; o.R._height = (h - o.TR._height) - o.BR._height; o.BL._y = h - o.BL._height; o.BR._y = h - o.BR._height; o.B._y = h - o.B._height; o.TR._x = w - o.TR._width; o.BR._x = w - o.BR._width; o.R._x = w - o.R._width; o.C._width = o.T._width; o.C._height = o.L._height; o.width = w; o.height = h; } else if ((o._width != w) || (o._height != h)) { o.width = (o._width = w); o.height = (o._height = h); } }; MovieClip.prototype.drag = function (lock, left, top, right, bottom) { if (lock == -1) { delete this.onMouseMove; this.onDrop(); return(undefined); } var _local4 = function () { var _local2 = arguments.callee; var _local4 = _local2.t._parent._xmouse + _local2.xd; var _local3 = _local2.t._parent._ymouse + _local2.yd; if ((_local4 < _local2.left) && (_local2.left != null)) { _local4 = _local2.left; } if ((_local4 > _local2.right) && (_local2.right != null)) { _local4 = _local2.right; } if ((_local3 < _local2.top) && (_local2.top != null)) { _local3 = _local2.top; } if ((_local3 > _local2.bottom) && (_local2.bottom != null)) { _local3 = _local2.bottom; } _local2.t._x = _local4; _local2.t._y = _local3; _local2.t.onDrag(); updateAfterEvent(); }; _local4.t = this; if ((lock == false) or (lock == undefined)) { _local4.xd = this._x - this._parent._xmouse; _local4.yd = this._y - this._parent._ymouse; } if (left != undefined) { _local4.left = left; } else { _local4.left = null; } if (right != undefined) { _local4.right = right; } else { _local4.right = null; } if (top != undefined) { _local4.top = top; } else { _local4.top = null; } if (bottom != undefined) { _local4.bottom = bottom; } else { _local4.bottom = null; } this.onMouseMove = _local4; }; ASSetPropFlags(MovieClip.prototype, "drag", 1); #endinitclip
Symbol 9 MovieClip [GWListBoxClass] Frame 1
#initclip 75 _global.GWListBoxClass = function () { super.init(GWListBoxClass); }; GWListBoxClass.prototype = new GWBaseClass(); Object.registerClass("GWListBoxClass", GWListBoxClass); GWListBoxClass.prototype.init = function () { this.width = this.width || (this._width); this.height = this.height || (this._height); this._xscale = (this._yscale = 100); this.createEmptyMovieClip("list_mc", 1); this.list_mc.createEmptyMovieClip("content_mc", 1); this.list_mc.content_mc.createEmptyMovieClip("holder_mc", 1); this.list_mc.content_mc._x = (this.list_mc.content_mc._y = this.pad); this.list_mc.content_mc.root = this; this.drawBox("mask_mc", 2, 0, 0, 1, 1, 0, 100, this.list_mc.content_mc); this.list_mc.content_mc.setMask(this.list_mc.content_mc.mask_mc); this.sbprops.height = this.height - (this.pad * 2); this.list_mc.attachMovie(this.sbSymbol, "vscroll_mc", 3, this.sbprops); this.barwidth = this.list_mc.vscroll_mc._width; delete this.sb_props; this.list_mc.vscroll_mc._y = this.pad; this.list_mc.vscroll_mc.setScrollTarget(this.list_mc.content_mc); this.list_mc.content_mc.addListener(this); this.face = ((this.face == undefined) ? 16777215 : (this.face)); this.highlight = ((this.highlight == undefined) ? 4210752 : (this.highlight)); this.highlight3D = ((this.highlight3D == undefined) ? 8421504 : (this.highlight3D)); this.shadow = ((this.shadow == undefined) ? 13947080 : (this.shadow)); this.darkshadow = ((this.darkshadow == undefined) ? 16777215 : (this.darkshadow)); this.width = Math.round(Math.max(this.barwidth * 3, this.width)); this.height = Math.round(Math.max(this.barwidth * 3, this.height)); this.frame_mc.colorObj = {face:this.face, highlight:this.highlight, highlight3D:this.highlight3D, shadow:this.shadow, darkshadow:this.darkshadow}; this.list_mc.frame_mc = this.frame_mc; this.rowHeight = this.rowHeight || 18; this.itemcolor_on = ((this.itemcolor_on == undefined) ? 664682 : (this.itemcolor_on)); this.itemcolor_off = ((this.itemcolor_off == undefined) ? 16777215 : (this.itemcolor_off)); this.itemcolor_out = ((this.itemcolor_out == undefined) ? 16777215 : (this.itemcolor_out)); this.fontcolor_on = ((this.fontcolor_on == undefined) ? 16777215 : (this.fontcolor_on)); this.fontcolor_off = ((this.fontcolor_off == undefined) ? 0 : (this.fontcolor_off)); this.fontcolor_out = ((this.fontcolor_out == undefined) ? 0 : (this.fontcolor_out)); this.setFrameColor({face:this.face, highlight:this.highlight, highlight3D:this.highlight3D, shadow:this.shadow, darkshadow:this.darkshadow}); this.list = this.list_mc.content_mc.holder_mc; this.setVScroll("auto"); this.setSmallScroll(this.rowHeight); this.setLargeScroll(this.rowHeight * 2); this.item_mc.unloadMovie(); this.items = []; var _local4 = this.labels.length; var _local3 = 0; while (_local3 < _local4) { this.items.push({label:this.labels[_local3], data:this.data[_local3], icon:this.icons[_local3]}); _local3++; } this.rowCount = this.rowCount || (Math.ceil(this.height / this.rowHeight)); if (this.items.length) { this.setDataProvider(this.items); } else { this.refreshPane(); } if (this.checkFocus) { this.onMouseDown = function () { var _local4 = this.items.length; if (this.list_mc.frame_mc.hitTest(_root._xmouse, _root._ymouse, 1)) { var _local3 = 0; while (_local3 < _local4) { if (this.items[_local3].selected) { this.list["item" + _local3].setLabelColor(this.list["item" + _local3].fontcolor_on); this.list["item" + _local3].setBaseColor(this.itemcolor_on); } _local3++; } } else { var _local3 = 0; while (_local3 < _local4) { if (this.items[_local3].selected) { this.list["item" + _local3].setLabelColor(this.list["item" + _local3].fontcolor_out); this.list["item" + _local3].setBaseColor(this.itemcolor_out); } _local3++; } } }; } }; GWListBoxClass.prototype.getLength = function () { var _local2 = 0; for (var _local3 in this.items) { _local2++; } return(_local2); }; GWListBoxClass.prototype.setDataProvider = function (d) { this.items = []; this.list_mc.content_mc.createEmptyMovieClip("holder_mc", 1); if (!(d[0] instanceof Object)) { this.items = []; var _local6 = d.length; var _local2 = 0; while (_local2 < _local6) { this.items.push({data:d[_local2], label:d[_local2]}); _local2++; } } else { this.items = d; } this.drawBox("height_mc", -1, 0, (this.items.length - 1) * this.rowHeight, 1, 1, 0, 0, this.list); if (this.items.length) { this.rowCount = this.rowCount || (Math.ceil(this.height / this.rowHeight)); var _local2 = 0; while (_local2 < this.rowCount) { this._buildItem(_local2); _local2++; } } this.refreshPane(); return(this.items); }; GWListBoxClass.prototype.deSelect = function (i) { if (!this.items[i].isHeader) { this.items[i].selected = 0; this.list["item" + i].setLabelColor(this.list["item" + i].fontcolor_off); this.list["item" + i].setBaseColor(this.itemcolor_off); } }; GWListBoxClass.prototype.deSelectAll = function () { var _local3 = this.items.length; var _local2 = 0; while (_local2 < _local3) { this.deSelect(_local2); _local2++; } }; GWListBoxClass.prototype.selectAll = function () { if (this.selectMultiple) { var _local3 = this.items.length; var _local2 = 0; while (_local2 < _local3) { this.select(_local2); _local2++; } } }; GWListBoxClass.prototype.setFrameColor = function (c) { for (var _local3 in c) { this.list_mc.frame_mc[_local3] = c[_local3]; } this.list_mc.frame_mc.setColor(c); }; GWListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; GWListBoxClass.prototype.setSelectMultiple = function (f) { this.selectMultiple = f; if (!f) { this.deSelectAll(); this.select(this.lastIdx); } }; GWListBoxClass.prototype.select = function (i) { if ((!this.selectMultiple) && (this.getSelectedIndices().length)) { return(undefined); } if (!this.items[i].isHeader) { this.items[i].selected = 1; this.list["item" + i].setLabelColor(this.list["item" + i].fontcolor_on); this.list["item" + i].setBaseColor(this.itemcolor_on); } }; GWListBoxClass.prototype.setSelectedIndex = function (i) { this.lastIdx = i; this.select(i); if ((i >= (this.getScrollPosition() + this.getRowCount())) || (i <= this.getScrollPosition())) { this.setScrollPosition(i - 1); } this.onSelect(i); }; GWListBoxClass.prototype.setSelectedIndices = function (a) { this.deSelectAll(); for (var _local3 in a) { this.select(a[_local3]); } }; GWListBoxClass.prototype.getValue = function () { return(this.getSelectedItem().data); }; GWListBoxClass.prototype.getSelectedItem = function () { if (this.items[this.lastIdx].selected) { return({data:((this.items[this.lastIdx].data == undefined) ? (this.items[this.lastIdx].label) : (this.items[this.lastIdx].data)), label:this.items[this.lastIdx].label, icon:this.items[this.lastIdx].icon}); } return(null); }; GWListBoxClass.prototype.getSelectedIndices = function () { var _local3 = []; var _local4 = this.items.length; var _local2 = 0; while (_local2 < _local4) { if (this.items[_local2].selected) { _local3.push(_local2); } _local2++; } return(_local3); }; GWListBoxClass.prototype.getSelectedItems = function () { var _local5 = []; var _local6 = this.items.length; var _local2 = 0; while (_local2 < _local6) { if (this.items[_local2].selected) { _local5.push({data:((this.items[_local2].data == undefined) ? (this.items[_local2].label) : (this.items[_local2].data)), label:this.items[_local2].label}); } _local2++; } return(_local5); }; GWListBoxClass.prototype.getRowCount = function () { this.rowCount = Math.ceil((this.list_mc.content_mc.mask_mc._height - (this.pad * 2)) / this.rowHeight); return(this.rowCount); }; GWListBoxClass.prototype.setRowCount = function (n) { if (n) { this.rowCount = n; if (this.getLength() > 1) { if ((n * this.rowHeight) < (this.barwidth * 2)) { this.setRowHeight((this.barwidth * 2) / n); } } this.setSize(this.width, (this.rowHeight * n) + (this.pad * 2)); } }; GWListBoxClass.prototype.getRowHeight = function () { return(this.rowHeight); }; GWListBoxClass.prototype.setRowHeight = function (n) { this.rowHeight = n; this.setSmallScroll(n); this.setLargeScroll(n * 2); this.setDataProvider(this.items); this.setSize(this.width, Math.max(this.getRowCount() * n, this.height)); }; GWListBoxClass.prototype.getEnabled = function () { return(this.enabled); }; GWListBoxClass.prototype.setEnabled = function (f) { this.enabled = f; this.list_mc.vscroll_mc.setEnabled(f); }; GWListBoxClass.prototype.removeAll = function () { this.items = []; this.list_mc.content_mc.createEmptyMovieClip("holder_mc", 1); this.setSize(this.width, this.height); }; GWListBoxClass.prototype.getSize = function () { return({width:this.width, height:this.height}); }; GWListBoxClass.prototype.setSize = function (w, h) { if (((arguments.length > 2) || (this.width != w)) || (this.height != h)) { var _local4 = this.pad * 2; h = (this.height = (Math.floor(h / this.rowHeight) * this.rowHeight) + _local4); this.list_mc.content_mc.maxscroll = Math.max(0, Math.ceil((this.list_mc.content_mc.holder_mc._height - this.list_mc.content_mc.mask_mc._height) / this.smallScroll) * this.smallScroll); this.setVScroll("auto"); w = (this.width = Math.round(Math.max(((this.list_mc.vscroll_mc._visible ? (this.barwidth) : 0) * 3) + _local4, w))); h = (this.height = Math.round(Math.max((this.barwidth * 2) + _local4, h))); this.list_mc.content_mc.bottomScroll = (this.list_mc.content_mc.mask_mc._height = h - _local4); this.list_mc.vscroll_mc.setSize(this.barwidth, h - _local4); this.list_mc.vscroll_mc._x = (w - this.barwidth) - this.pad; this.list_mc.content_mc.maxscroll = Math.max(0, Math.ceil((this.list_mc.content_mc.holder_mc._height - this.list_mc.content_mc.mask_mc._height) / this.smallScroll) * this.smallScroll); this.list_mc.content_mc.onChanged(); this.setVScroll("auto"); this.list_mc.content_mc.mask_mc._width = (w - (this.list_mc.vscroll_mc._visible ? (this.barwidth) : 0)) - _local4; this.sizeMe(this.width, this.height, this.list_mc.frame_mc); for (var _local5 in this.list) { this.list[_local5].setSize(w, this.rowHeight); } this.rowCount = Math.ceil(this.height / this.rowHeight); this.setScrollPosition(this.getScrollPosition()); } }; GWListBoxClass.prototype.getEnabled = function () { return(this.enabled); }; GWListBoxClass.prototype.setEnabled = function (f) { this.list_mc.vscroll_mc.setEnabled(f); this.enabled = f; }; GWListBoxClass.prototype.getSize = function () { return({width:this.width, height:this.height}); }; GWListBoxClass.prototype.getScrollPosition = function () { return(this.list_mc.vscroll_mc.getScrollPosition() / this.rowHeight); }; GWListBoxClass.prototype.setScrollPosition = function (pos) { if (this.getEnabled()) { this.list_mc.vscroll_mc.setScrollPosition(Math.max(0, Math.min(pos * this.rowHeight, this.list_mc.content_mc.maxscroll))); } }; GWListBoxClass.prototype.setSmallScroll = function (n) { this.smallScroll = n; this.list_mc.vscroll_mc.setSmallScroll(n); }; GWListBoxClass.prototype.setLargeScroll = function (n) { this.largeScroll = n; this.list_mc.vscroll_mc.setLargeScroll(n); }; GWListBoxClass.prototype.setVScroll = function (f) { if (f == "auto") { this.list_mc.vscroll_mc._visible = (this.list_mc.content_mc.maxscroll ? 1 : 0); } else { this.list_mc.vscroll_mc._visible = f; } this.vScroll = f; }; GWListBoxClass.prototype.setScrollBarColor = function (c) { for (var _local3 in c) { this.list_mc.vscroll_mc[_local3] = c[_local3]; } this.list_mc.vscroll_mc.setColor(c); }; GWListBoxClass.prototype.refreshPane = function () { clearInterval(this.initID); this.list_mc.content_mc.watch("scrollpos", this._updateScroll); this.setSize(this.width, this.height, 1); this.setEnabled(this.enabled); }; GWListBoxClass.prototype._buildItem = function (i) { if (this.items[i] == undefined) { return(undefined); } this.list.attachMovie("GWListItemClass", "item" + i, i, {_y:i * this.rowHeight, idx:i, width:this.width, height:this.rowHeight, font:this.font, fontsize:this.fontsize, useEmbedFonts:this.useEmbedFonts, fontcolor:((this.items[i].fontcolor == undefined) ? (this.fontcolor_off) : (this.items[i].fontcolor)), fontcolor_off:((this.items[i].fontcolor_off == undefined) ? (this.fontcolor_off) : (this.items[i].fontcolor_off)), fontcolor_on:((this.items[i].fontcolor_on == undefined) ? (this.fontcolor_on) : (this.items[i].fontcolor_on)), fontcolor_out:((this.items[i].fontcolor_out == undefined) ? (this.fontcolor_out) : (this.items[i].fontcolor_out)), basecolor_off:this.itemcolor_off, data:((this.items[i].data == undefined) ? (this.items[i].label) : (this.items[i].data)), icon:this.items[i].icon, label:this.items[i].label, root:this}); if (!this.items[i].isHeader) { if (this.items[i].selected) { this.list["item" + i].setLabelColor(this.list["item" + i].fontcolor_on); this.list["item" + i].setBaseColor(this.itemcolor_on); } this.list["item" + i].trackAsMenu = true; this.list["item" + i].onDragOver = function () { this.root.select(this.idx); if ((this.root.lastDragIdx != this.root.lastIdx) && (((this.idx > this.root.lastDragIdx) && (this.root.lastDragIdx < this.root.lastIdx)) || ((this.idx < this.root.lastDragIdx) && (this.root.lastDragIdx > this.root.lastIdx)))) { this.root.deSelect(this.root.lastDragIdx); } if (!this.root.selectMultiple) { this.root.lastIdx = this.idx; } this.root.lastDragIdx = this.idx; }; this.list["item" + i].onDragOut = function () { if (!this.root.selectMultiple) { this.root.deSelect(this.idx); } }; this.list["item" + i].onReleaseOutside = (this.list["item" + i].onRelease = function () { clearInterval(this.root.isScrolling); delete this.root.onMouseMove; if ((this.idx == this.lastIdx) && ((getTimer() - this.lastHit) < 250)) { clearInterval(this.root.clickID); this.root.onDSelect(this.idx); } else if (this.root.onDSelect == undefined) { this.root.onSelect(this.idx); } else { this.root._onSelect = function (idx) { clearInterval(this.clickID); this.onSelect(idx); }; this.root.clickID = setInterval(this.root, "_onSelect", 250, this.idx); } this.lastHit = getTimer(); this.lastIdx = this.idx; }); this.list["item" + i].onPress = function () { if (this.root.getEnabled()) { if ((!Key.isDown(17)) || (!this.root.selectMultiple)) { this.root.deSelectAll(); } if (Key.isDown(16) && (this.root.selectMultiple)) { if (this.root.lastIdx <= this.idx) { var _local2 = this.root.lastIdx; while (_local2 <= this.idx) { this.root.select(_local2); _local2++; } } else { var _local2 = this.root.lastIdx; while (_local2 >= this.idx) { this.root.select(_local2); _local2--; } } return(undefined); } this.root._startSelect(this.idx); } }; } this.onBuildItem(i); }; GWListBoxClass.prototype._updateScroll = function () { this.holder_mc._y = (-Math.round(Math.min(arguments[2], Math.min(this.maxscroll, Math.max(0, this.holder_mc._height - this.mask_mc._height))) / this.root.rowHeight)) * this.root.rowHeight; var _local3 = (-this.holder_mc._y) / this.root.rowHeight; var _local4 = _local3 + this.root.rowCount; do { if (!this.root.list["item" + _local3]) { this.root._buildItem(_local3); } _local3++; } while (_local3 <= _local4); }; GWListBoxClass.prototype._startSelect = function (i) { this.onMouseMove = function () { clearInterval(this.isScrolling); if (this._parent._ymouse >= (this._y + this.height)) { this.isScrolling = setInterval(this, "_startScroll", 100, 1); } else if (this._parent._ymouse <= this._y) { this.isScrolling = setInterval(this, "_startScroll", 100, -1); } }; if (this.items[i].selected) { this.deSelect(i); } else { this.select(i); this.lastIdx = i; } }; GWListBoxClass.prototype._startScroll = function (d) { this.setScrollPosition(this.getScrollPosition() + d); if (this.selectMultiple) { this.select(((d > 0) ? ((this.getScrollPosition() + this.getRowCount()) - 1) : (this.getScrollPosition()))); } }; #endinitclip
Instance of Symbol 8 MovieClip [GWBaseClass] "baseclass" in Symbol 9 MovieClip [GWListBoxClass] Frame 1
//component parameters onClipEvent (construct) { }
Instance of Symbol 63 MovieClip "thumb_mc" in Symbol 64 MovieClip Frame 1
on (press) { _root.isScrolling = true; } on (release, releaseOutside) { _root.isScrolling = false; }
Symbol 65 MovieClip [GWScrollerClass] Frame 1
#initclip 72 _global.GWScrollerClass = function () { super.init(GWScrollerClass); }; GWScrollerClass.prototype = new GWBaseClass(); Object.registerClass("GWScrollerClass", GWScrollerClass); GWScrollerClass.prototype.init = function () { if (this.horizontal && (this._rotation == 90)) { this.isHorizontal = true; } this.snapToPixels(this); this.largeScroll = (this.horizontal ? 30 : 5); this.smallScroll = (this.horizontal ? 5 : 1); for (var _local2 in this.scrollbar_mc) { this.scrollbar_mc[_local2].useHandCursor = false; } var _local5 = this.width || ((this.horizontal ? (this._height) : (this._width))); var _local4 = this.height || ((this.horizontal ? (this._width) : (this._height))); this._xscale = (this._yscale = 100); this.thumbMinSize = this.scrollbar_mc.thumb_mc._height; this.setSize(_local5, _local4); for (var _local2 in this.scrollbar_mc.bot_mc) { if (_local2 == "over_mc") { this.scrollbar_mc.bot_mc.onRollOver = (this.scrollbar_mc.top_mc.onRollOver = function () { if (this._parent._parent.enabled) { for (var _local2 in this) { this[_local2]._visible = 0; } this.over_mc._visible = 1; } }); } else if (_local2 == "down_mc") { this.scrollbar_mc.bot_mc.onPress = (this.scrollbar_mc.top_mc.onPress = function () { if (this._parent._parent.enabled) { for (var _local2 in this) { this[_local2]._visible = 0; } this.down_mc._visible = 1; var _local3 = ((this._name == "bot_mc") ? 1 : -1) * this._parent._parent.smallScroll; this._parent._parent.isScrolling = setInterval(this._parent._parent, "_doScroll", 100, _local3); } }); } else if (_local2 == "up_mc") { this.scrollbar_mc.bot_mc.onRelease = (this.scrollbar_mc.bot_mc.onReleaseOutside = (this.scrollbar_mc.top_mc.onRelease = (this.scrollbar_mc.top_mc.onReleaseOutside = function () { if (this._parent._parent.enabled) { for (var _local2 in this) { this[_local2]._visible = 0; } this.up_mc._visible = 1; clearInterval(this._parent._parent.isScrolling); delete this._parent._parent.isScrolling; var _local3 = ((this._name == "bot_mc") ? 1 : -1) * this._parent._parent.smallScroll; this._parent._parent._doScroll(_local3, this._parent._parent); } }))); } } this.scrollbar_mc.thumb_mc.onPress = function () { this.drag(false, 0, this._parent.track_mc._y, 0, (this._parent.track_mc._y + this._parent.track_mc._height) - this.height); this.onDrag = this._parent._parent._onThumbDrag; this._parent._parent.isDragging = true; }; this.scrollbar_mc.thumb_mc.onRelease = (this.scrollbar_mc.thumb_mc.onReleaseOutside = function () { this.drag(-1); this._parent._parent.isDragging = false; this._parent._parent.scrollTarget.onChanged(); }); this.scrollbar_mc.track_mc.onPress = function () { if (this._parent._parent.enabled) { var _local2 = this._parent._parent.largeScroll * ((this._parent._ymouse > this._parent.thumb_mc._y) ? 1 : -1); this._parent._parent.isScrolling = setInterval(this._parent._parent, "_doScroll", 50, _local2, this._parent._ymouse); this._parent._parent._doScroll(_local2); } }; this.scrollbar_mc.track_mc.onDragOut = (this.scrollbar_mc.track_mc.onRelease = (this.scrollbar_mc.track_mc.onReleaseOutside = function () { clearInterval(this._parent._parent.isScrolling); delete this._parent._parent.isScrolling; })); this.setScrollTarget(((this.scrollTarget.length > 0) ? (this.scrollTarget) : (this._targetInstanceName))); this.scrollTarget.onChanged(); }; GWScrollerClass.prototype.setHorizontal = function (f) { this.horizontal = f; this.setSize(this.width, this.height, 1); }; GWScrollerClass.prototype.getSize = function () { return({width:this._width, height:this._height}); }; GWScrollerClass.prototype.setSize = function (w, h) { if (((arguments.length > 2) || (this.width != w)) || (this.height != h)) { w = (this.width = Math.round(w)); h = (this.height = Math.round(h)); var _local3 = this.scrollbar_mc; this._rotation = 0; var _local7 = _local3.bot_mc.down_mc.arrow_mc._x - _local3.bot_mc.up_mc.arrow_mc._x; for (var _local5 in _local3.bot_mc) { _local3.bot_mc[_local5]._x = (_local3.bot_mc[_local5]._y = 0); _local3.top_mc[_local5]._x = (_local3.top_mc[_local5]._y = 0); _local3.bot_mc[_local5]._visible = (_local3.top_mc[_local5]._visible = 0); this.sizeMe(w, _local3.bot_mc[_local5]._height, _local3.bot_mc[_local5].base_mc); this.sizeMe(w, _local3.top_mc[_local5]._height, _local3.top_mc[_local5].base_mc); _local3.bot_mc[_local5].arrow_mc._x = (_local3.top_mc[_local5].arrow_mc._x = Math.floor((w - _local3.bot_mc.up_mc.arrow_mc._width) / 2)); _local3.bot_mc[_local5].shadow_mc._x = (_local3.top_mc[_local5].shadow_mc._x = Math.floor((w - _local3.top_mc[_local5].shadow_mc._width) / 2)); } _local3.bot_mc.down_mc.arrow_mc._x = (_local3.top_mc.down_mc.arrow_mc._x = Math.floor((w - _local3.bot_mc.down_mc.arrow_mc._width) / 2) + _local7); _local3.bot_mc.up_mc._visible = (_local3.top_mc.up_mc._visible = 1); this.sizeMe(w, (h - _local3.top_mc._height) - _local3.bot_mc._height, _local3.track_mc); this.sizeMe(w, _local3.thumb_mc._height, _local3.thumb_mc.base_mc); _local3.track_mc._y = _local3.top_mc._height; _local3.bot_mc._y = h - _local3.bot_mc._height; if (this.horizontal) { this._rotation = 90; if (!this.isHorizontal) { this._yscale = -Math.abs(this._yscale); } } this._updateThumb(); } }; GWScrollerClass.prototype.getScrollPosition = function () { return(this.scrollpos); }; GWScrollerClass.prototype.setScrollPosition = function (p) { if (this.horizontal) { this.scrollTarget.hscroll = p; } else { this.scrollTarget.scroll = p; } this.scrollTarget.onChanged(); }; GWScrollerClass.prototype.setSmallScroll = function (n) { this.smallScroll = n; }; GWScrollerClass.prototype.setLargeScroll = function (n) { this.largeScroll = n; }; GWScrollerClass.prototype.setEnabled = function (f) { var _local2 = this.scrollbar_mc; for (var _local3 in _local2.bot_mc) { _local2.bot_mc[_local3]._visible = 0; _local2.top_mc[_local3]._visible = 0; } if (!f) { _local2.bot_mc.off_mc._visible = (_local2.top_mc.off_mc._visible = 1); _local2.thumb_mc._visible = 0; this.enabled = false; } else { _local2.bot_mc.up_mc._visible = (_local2.top_mc.up_mc._visible = 1); this._updateThumb(); this.enabled = true; } }; GWScrollerClass.prototype.setScrollTarget = function (t) { if (t != undefined) { t = (((t instanceof TextField) || (t instanceof MovieClip)) ? (t) : (this._parent[t])); if ((t instanceof TextField) || (t instanceof MovieClip)) { this.scrollTarget = t; if (!this.scrollTarget.scroller) { this.scrollTarget.scroller = [this]; } else { this.scrollTarget.scroller.push(this); } this.scrollTarget.addListener(this); this.scrollTarget.onScroller = (this.scrollTarget.onChanged = function () { for (var _local2 in this.scroller) { this.scroller[_local2]._onChanged(this); } }); } else { delete this.scrollTarget; return(undefined); } } }; GWScrollerClass.prototype._doScroll = function (d, t) { this.scrollpos = this.scrollpos || 0; this.scrollpos = this.scrollpos + d; this.scrollpos = ((d > 0) ? (Math.min(this.scrollpos, this.maxscroll)) : (Math.max(this.scrollpos, (this.horizontal ? 0 : (((this.scrollTarget instanceof TextField) ? 1 : 0)))))); this._updateThumb(); if (t) { if (((d > 0) && ((this.scrollbar_mc.thumb_mc._y + this.scrollbar_mc.thumb_mc.height) > t)) || ((d < 0) && (this.scrollbar_mc.thumb_mc._y < t))) { this.scrollbar_mc.track_mc.onRelease(); } } }; GWScrollerClass.prototype._onChanged = function (t) { if (this.isDragging) { return(undefined); } this.scrollpos = (this.horizontal ? (t.hscroll) : (t.scroll)) || 0; this.maxscroll = (this.horizontal ? (t.maxhscroll) : (t.maxscroll)); this.pageSize = ((t instanceof TextField) ? ((this.horizontal ? (this.largeScroll) : (t.bottomScroll - t.scroll))) : (t.bottomScroll - (t.scrollpos || 0))); if (!this.isScrolling) { if (this.maxscroll > 1) { this.setEnabled(true); this._updateThumb(); } else { this.setEnabled(false); } } }; GWScrollerClass.prototype._onThumbDrag = function () { var _local2 = this._parent._parent.scrollTarget; var _local3 = this._parent.track_mc._height - this.height; if (this._parent._parent.horizontal) { var _local4 = _local3 / _local2.maxhscroll; _local2.hscroll = (_local2.hscrollpos = Math.round((this._y - this._parent.track_mc._y) / _local4)); } else { var _local4 = _local3 / _local2.maxscroll; _local2.scroll = (_local2.scrollpos = Math.round((this._y - this._parent.track_mc._y) / _local4) + ((_local2 instanceof TextField) ? 1 : 0)); } }; GWScrollerClass.prototype._updateThumb = function () { var _local2 = this.scrollbar_mc; var _local4 = Math.max(this.thumbMinSize, Math.round((this.pageSize / (this.maxscroll + this.pageSize)) * _local2.track_mc._height)) || (this.thumbMinSize); if (this.scrollTarget) { this.sizeMe(this.width, _local4, _local2.thumb_mc.base_mc); _local2.thumb_mc.height = _local4; } _local2.thumb_mc.mid_mc._x = Math.floor(((_local2.thumb_mc.width || (_local2.thumb_mc._width)) - _local2.thumb_mc.mid_mc._width) / 2); _local2.thumb_mc.mid_mc._y = Math.floor(((_local2.thumb_mc.height || (_local2.thumb_mc._height)) - _local2.thumb_mc.mid_mc._height) / 2); var _local3 = _local2.track_mc._height - _local4; var _local5 = _local3 / (this.maxscroll - 1); _local2.thumb_mc._visible = _local3 > 0; _local2.thumb_mc._y = _local2.track_mc._y + Math.max(0, Math.round(Math.min(_local3, (this.scrollpos - 1) * _local5))); if (this.horizontal) { this.scrollTarget.hscroll = (this.scrollTarget.hscrollpos = this.scrollpos); } else { this.scrollTarget.scroll = (this.scrollTarget.scrollpos = this.scrollpos); } }; #endinitclip
Instance of Symbol 8 MovieClip [GWBaseClass] "baseclass" in Symbol 65 MovieClip [GWScrollerClass] Frame 1
//component parameters onClipEvent (construct) { }
Symbol 66 MovieClip [GWScrollBarSilver] Frame 1
#initclip 81 _global.GWScrollBarSilver = function () { super.init(); }; GWScrollBarSilver.prototype = new GWScrollerClass(); Object.registerClass("GWScrollBarSilver", GWScrollBarSilver); #endinitclip
Instance of Symbol 65 MovieClip [GWScrollerClass] in Symbol 66 MovieClip [GWScrollBarSilver] Frame 1
//component parameters onClipEvent (construct) { _targetInstanceName = ""; scrollTarget = ""; }
Symbol 67 MovieClip Frame 1
stop();
Instance of Symbol 66 MovieClip [GWScrollBarSilver] in Symbol 67 MovieClip Frame 2
//component parameters onClipEvent (construct) { _targetInstanceName = ""; horizontal = false; }
Symbol 70 MovieClip [GWPanel] Frame 1
#initclip 76 _global.GWPanel = function () { if (this.colorObj != undefined) { for (var _local3 in this.colorObj) { this[_local3] = this.colorObj[_local3]; } } super.init(GWPanel); }; GWPanel.prototype = new GWBaseClass(); Object.registerClass("GWPanel", GWPanel); GWPanel.prototype.init = function () { this.face = ((this.face == undefined) ? 13947080 : (this.face)); this.highlight = ((this.highlight == undefined) ? 13947080 : (this.highlight)); this.highlight3D = ((this.highlight3D == undefined) ? 16777215 : (this.highlight3D)); this.shadow = ((this.shadow == undefined) ? 8421504 : (this.shadow)); this.darkshadow = ((this.darkshadow == undefined) ? 4210752 : (this.darkshadow)); this.width = Math.round(this.width || (this._width)); this.height = Math.round(this.height || (this._height)); this._xscale = (this._yscale = 100); this.classHolder._width = this.width; this.classHolder._height = this.height; this.setSize(); }; GWPanel.prototype.setSize = function (w, h) { this.snapToPixels(this); if (!arguments.length) { w = (this.width = this.width || (this._width)); h = (this.height = this.height || (this._height)); this._xscale = (this._yscale = 100); } else { w = Math.round(w); this.width = w; h = Math.round(h); this.height = h; } this.drawPanel(w, h); }; GWPanel.prototype.getSize = function () { return({width:this._width, height:this._height}); }; GWPanel.prototype.setColor = function (c) { c = ((c != undefined) ? (c) : (this.colorObj)); for (var _local4 in c) { this[_local4] = c[_local4]; } this.colorObj = c; var _local3 = new Color(this.darkshadow_mc); _local3.setRGB(this.darkshadow); _local3 = new Color(this.highlight3D_mc); _local3.setRGB(this.highlight3D); _local3 = new Color(this.shadow_mc); _local3.setRGB(this.shadow); _local3 = new Color(this.highlight_mc); _local3.setRGB(this.highlight); _local3 = new Color(this.face_mc); _local3.setRGB(this.face); }; GWPanel.prototype.drawPanel = function (w, h) { if ((this._width != w) || (this._height != h)) { w = Math.round(w || (this.width)); h = Math.round(h || (this.height)); this.darkshadow_mc._width = w; this.darkshadow_mc._height = h; this.highlight3D_mc._width = Math.max(1, w - 1); this.highlight3D_mc._height = Math.max(1, h - 1); this.shadow_mc._width = Math.max(0, w - 2); this.shadow_mc._height = Math.max(0, h - 2); this.highlight_mc._width = Math.max(0, w - 3); this.highlight_mc._height = Math.max(0, h - 3); this.face_mc._width = Math.max(0, w - 4); this.face_mc._height = Math.max(0, h - 4); } this.setColor(); }; #endinitclip
Instance of Symbol 8 MovieClip [GWBaseClass] "baseclass" in Symbol 70 MovieClip [GWPanel] Frame 1
//component parameters onClipEvent (construct) { }
Symbol 71 MovieClip Frame 1
stop();
Instance of Symbol 70 MovieClip [GWPanel] in Symbol 71 MovieClip Frame 2
//component parameters onClipEvent (construct) { face = 16777215 /* 0xFFFFFF */; highlight = 4210752 /* 0x404040 */; highlight3D = 8421504 /* 0x808080 */; shadow = 13947080 /* 0xD4D0C8 */; darkshadow = 16777215 /* 0xFFFFFF */; }
Symbol 72 MovieClip [GWLabelClass] Frame 1
#initclip 70 function GWLabelClass() { super.init(GWLabelClass); } GWLabelClass.prototype = new GWBaseClass(); Object.registerClass("GWLabelClass", GWLabelClass); GWLabelClass.prototype.init = function () { this.padx = this.padx || 0; this.pady = this.pady || 0; this.buffer = this.buffer || 2; this.fontcolor_off = ((this.fontcolor_off == undefined) ? 8421504 : (this.fontcolor_off)); this.fontcolor_shadow = ((this.fontcolor_shadow == undefined) ? 16777215 : (this.fontcolor_shadow)); var _local2 = this._target; var _local3 = _local2.indexOf("comUserlist"); if (_local3 > -1) { this.onRollOver = function () { this._parent._parent._parent._parent._parent._parent.showUserDetails(this); }; } }; GWLabelClass.prototype.alignLabel = function (a) { if (a == "right") { this.label_mc._x = (this.mask_mc._width - this.label_mc._width) - this.padx; } else if (a == "center") { this.label_mc._x = Math.max(0, Math.round((this.width - this.label_mc._width) / 2)); } else { this.label_mc._x = this.padx; } this.label_mc._y = Math.max(0, Math.round((this.height - this.label_mc._height) / 2)); this.label_mc.x = this.label_mc._x; this.label_mc.y = this.label_mc._y; }; GWLabelClass.prototype.gethtmlLabel = function () { return(this.label_mc.label_txt.htmlText); }; GWLabelClass.prototype.getLabel = function () { return(this.label_mc.label_txt.text); }; GWLabelClass.prototype.setLabelFormat = function (f) { this.myFormat = f; this.setLabel(this.gethtmlLabel()); }; GWLabelClass.prototype.setLabel = function (t) { this.width = this.width || (this._width); this.height = this.height || (this._height); if (!this.label_mc) { this.createEmptyMovieClip("label_mc", 500); this.drawBox("mask_mc", 501, 0, 0, this.width - this.padx, this.height - this.pady, 0, 0); } if (!this.myFormat) { this.myFormat = new TextFormat(); } this.label_mc.createTextField("label_txt", 2, 0, 0, this.width, this.height); if (this.useEmbedFonts) { this.label_mc.label_txt.embedFonts = true; } this.label_mc.label_txt.selectable = false; this.label_mc.label_txt.multiline = true; this.label_mc.label_txt.html = true; this.label_mc.label_txt.autoSize = "left"; this.label_mc.label_txt.htmlText = t; this.myFormat.font = ((this.font == undefined) ? "Tahoma" : (this.font)); this.myFormat.size = this.fontsize || 11; this.myFormat.color = this.fontcolor; this.label_mc.label_txt.setTextFormat(this.myFormat); if (this.fitLabel) { this.mask_mc._width = (this.width = Math.max(this.width, ((((this.labelpos == "left") || (this.labelpos == "right")) ? (this.icon_mc._width) : 0) + this.label_mc._width) + (this.padx * 2))); this.mask_mc._height = (this.height = Math.max(this.height, ((((this.labelpos == "top") || (this.labelpos == "bottom")) ? (this.icon_mc._height) : 0) + this.label_mc._height) + (this.pady * 2))); this.setSize(this.width, this.height); } this.alignLabel(this.align); if (this.labelpos != undefined) { this.setLabelPlacement(this.labelpos); } this.setMask(this.mask_mc); }; GWLabelClass.prototype.setLabelEnabled = function (f) { if (f) { this.setLabelColor(this.fontcolor); this.label_mc.shadow_txt.text = ""; } else { this.setLabelColor(this.fontcolor_off); if (this.fontcolor_shadow != undefined) { this.label_mc.createTextField("shadow_txt", 1, 1, 1, this.width, this.height); this.label_mc.shadow_txt.autoSize = "left"; this.label_mc.shadow_txt.selectable = false; this.label_mc.shadow_txt.html = true; this.label_mc.shadow_txt.htmlText = this.getLabel(); this.myFormat.color = this.fontcolor_shadow; this.label_mc.shadow_txt.setTextFormat(this.myFormat); } } }; GWLabelClass.prototype.setLabelColor = function (c) { this.myFormat.color = c || 0; this.label_mc.label_txt.setTextFormat(this.myFormat); }; GWLabelClass.prototype.setLabelPlacement = function (pos) { this.labelpos = pos; this.valign = "center"; this.align = "center"; if (pos == "left") { this.align = "right"; this.width = Math.max(this.width, (this.label_mc._width + this.icon_mc._width) + this.buffer); if (this.fitLabel) { this.setSize(this.width, this.height); } this.label_mc._x = (this.icon_mc._x - this.label_mc._width) - this.buffer; this.icon_mc._y = Math.round((this.height - this.icon_mc._height) / 2); } else if (pos == "right") { this.align = "left"; this.width = Math.max(this.width, (this.label_mc._width + this.icon_mc._width) + this.buffer); if (this.fitLabel) { this.setSize(this.width, this.height); } this.label_mc._x = (this.icon_mc._x + this.icon_mc._width) + this.buffer; this.icon_mc._y = Math.round((this.height - this.icon_mc._height) / 2); this.label_mc._x = this.label_mc._x - 8; this.icon_mc._x = this.icon_mc._x - 4; } else if (pos == "top") { this.valign = "bottom"; this.width = Math.max(this.width, this._width); this.height = Math.max(this.height, (this.label_mc._height + this.icon_mc._height) + this.buffer); if (this.fitLabel) { this.setSize(this.width, this.height); } this.label_mc._x = Math.max(0, Math.round((this.width - this.label_mc._width) / 2)); this.label_mc._y = (this.icon_mc._y - this.label_mc._height) - this.buffer; } else if (pos == "bottom") { this.valign = "top"; this.width = Math.max(this.width, this._width); this.height = Math.max(this.height, (this.label_mc._height + this.icon_mc._height) + this.buffer); if (this.fitLabel) { this.setSize(this.width, this.height); } this.label_mc._x = Math.max(0, Math.round((this.width - this.label_mc._width) / 2)); this.label_mc._y = (this.icon_mc._y + this.icon_mc._height) + this.buffer; } }; #endinitclip
Instance of Symbol 8 MovieClip [GWBaseClass] "base" in Symbol 72 MovieClip [GWLabelClass] Frame 1
//component parameters onClipEvent (construct) { }
Symbol 73 MovieClip [GWListItemClass] Frame 1
#initclip 80 _global.GWListItemClass = function (o) { super.init(); this.init(); }; GWListItemClass.prototype = new GWLabelClass(); Object.registerClass("GWListItemClass", GWListItemClass); GWListItemClass.prototype.init = function () { this.basecolor_on = ((this.basecolor_on == undefined) ? 664682 : (this.basecolor_on)); this.basecolor_off = ((this.basecolor_off == undefined) ? 16777215 : (this.basecolor_off)); this.basecolor_over = ((this.basecolor_over == undefined) ? 16777215 : (this.basecolor_over)); this.fontcolor_on = ((this.fontcolor_on == undefined) ? 16777215 : (this.fontcolor_on)); this.fontcolor_off = ((this.fontcolor_off == undefined) ? 0 : (this.fontcolor_off)); this.fontcolor_over = ((this.fontcolor_over == undefined) ? 0 : (this.fontcolor_over)); this.width = Math.round(this.width || (this._width)); this.height = Math.round(this.height || (this._height)); this._xscale = (this._yscale = 100); this.drawBox("base_mc", 2, 0, 0, 1, 1, this.basecolor_off, 100); this.base_mc._alpha = ((this.alpha == undefined) ? 100 : (this.alpha)); this.setSize(this.width, this.height); this.setLabel(this.label); this.setIcon(this.icon); this.pady = 0; this.useHandCursor = false; }; GWListItemClass.prototype.setData = function (d) { this.data = d; }; GWListItemClass.prototype.getData = function () { return(this.data); }; GWListItemClass.prototype.setIcon = function (i) { if (i.length) { this.attachMovie(i, "icon_mc", 3, {_x:4}); this.attachMovie("mcRatingTiny", "mcStars", this.icon_mc.getDepth() - 1); this.mcStars._x = this.mcStars._x + 92; this.mcStars._y = this.mcStars._y + 2; var _local2 = this.data; arrUserData = _local2.split(","); rating = arrUserData[3]; this.mcStars.gotoAndStop(this._parent._parent._parent._parent._parent._parent.getStars(rating)); if (this.icon_mc._height > this.height) { this.sizeMe(this.icon_mc._width * (this.height / this.icon_mc._height), this.height, this.icon_mc); } this.setLabelPlacement("right"); } }; GWListItemClass.prototype.setSize = function (w, h) { if (!this.label_mc) { this.createEmptyMovieClip("label_mc", 500); this.drawBox("mask_mc", 501, 0, 0, this.width - this.padx, this.height - this.pady, 0, 0); } this.width = (this.base_mc._width = w); this.height = (this.base_mc._height = h); this.mask_mc._width = w - (this.padx * 3); this.mask_mc._height = h - (this.pady * 2); if (this.labelAlign == "center") { this.label_mc._x = Math.round((this.width - this.label_mc._width) / 2); } }; GWListItemClass.prototype.setBaseColor = function (c) { var _local2 = new Color(this.base_mc); _local2.setRGB(c); }; #endinitclip
Instance of Symbol 72 MovieClip [GWLabelClass] in Symbol 73 MovieClip [GWListItemClass] Frame 1
//component parameters onClipEvent (construct) { _targetInstanceName = ""; }
Symbol 74 MovieClip [GWListBoxSilver] Frame 1
#initclip 78 _global.GWListBoxSilver = function () { this.pad = this.pad || 2; this.sbSymbol = "GWScrollBarSilver"; super.init(); }; GWListBoxSilver.prototype = new GWListBoxClass(); Object.registerClass("GWListBoxSilver", GWListBoxSilver); #endinitclip
Instance of Symbol 9 MovieClip [GWListBoxClass] in Symbol 74 MovieClip [GWListBoxSilver] Frame 1
//component parameters onClipEvent (construct) { _targetInstanceName = ""; }
Instance of Symbol 73 MovieClip [GWListItemClass] "item_mc" in Symbol 74 MovieClip [GWListBoxSilver] Frame 1
//component parameters onClipEvent (construct) { }
Instance of Symbol 70 MovieClip [GWPanel] "frame_mc" in Symbol 74 MovieClip [GWListBoxSilver] Frame 1
//component parameters onClipEvent (construct) { face = 16777215 /* 0xFFFFFF */; highlight = 4210752 /* 0x404040 */; highlight3D = 8421504 /* 0x808080 */; shadow = 13947080 /* 0xD4D0C8 */; darkshadow = 16777215 /* 0xFFFFFF */; }
Symbol 75 MovieClip [FUIComponentSymbol] Frame 1
#initclip 67 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var _local3 in this.styleFormat_prm) { this.setStyleProperty(_local3, this.styleFormat_prm[_local3]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var _local2 in this.methodTable) { this[_local2](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var _local4 = this.styleTable.focusRectInner.value; var _local5 = this.styleTable.focusRectOuter.value; if (_local4 == undefined) { _local4 = 16777215 /* 0xFFFFFF */; } if (_local5 == undefined) { _local5 = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, _local5); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, _local4); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { 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 _local17 = parseInt(value); if (!isNaN(_local17)) { value = _local17; } var _local16 = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!_local16)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var _local18 = propName.subString(4, propName.length); this.textStyle[_local18] = value; this.invalidate("setSize"); } else { for (var _local15 in this.styleTable[propName].coloredMCs) { var _local4 = new Color(this.styleTable[propName].coloredMCs[_local15]); if (this.styleTable[propName].value == undefined) { var _local5 = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; _local4.setTransform(_local5); } else { _local4.setRGB(value); } } } this.styleTable[propName].useGlobal = _local16; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var _local4 = new Color(skinMCRef); _local4.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var _local3 in arguments[0]) { this[_local3] = arguments[0][_local3]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var _local3 = 0; while (_local3 < arguments.length) { var _local4 = arguments[_local3]; this.listeners[arguments[_local3]] = _local4; for (var _local5 in this) { if (this.isAStyle(_local5)) { _local4.updateStyleProperty(this, _local5.toString()); } } _local3++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var _local4 in this) { if (this.isAStyle(_local4)) { if (component.styleTable[_local4].useGlobal == this.isGlobal) { component.styleTable[_local4].useGlobal = true; var _local3 = (this.isGlobal ? undefined : (globalStyleFormat[_local4])); component.setStyleProperty(_local4, _local3, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var _local6 = 0; for (var _local5 in this.listeners) { var _local3 = this.listeners[_local5]; if (arguments.length > 0) { var _local4 = 0; while (_local4 < arguments.length) { if (this.isAStyle(arguments[_local4])) { _local3.updateStyleProperty(this, arguments[_local4]); } _local4++; } } else { for (var _local4 in this) { if (this.isAStyle(_local4)) { _local3.updateStyleProperty(this, _local4.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 88 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 98 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 107 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 108 MovieClip [UpArrow] Frame 1
stop();
Symbol 108 MovieClip [UpArrow] Frame 2
stop();
Symbol 108 MovieClip [UpArrow] Frame 3
stop();
Symbol 115 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 122 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 127 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 128 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 136 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 144 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 152 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 153 MovieClip [DownArrow] Frame 1
stop();
Symbol 153 MovieClip [DownArrow] Frame 2
stop();
Symbol 153 MovieClip [DownArrow] Frame 3
stop();
Symbol 166 MovieClip Frame 1
stop();
Symbol 176 Button
on (release) { _parent._parent.joinRoom(_parent._parent.activeRoom, _parent._parent.activeRoomLabel); gotoAndStop (2); }
Symbol 178 MovieClip Frame 1
stop();
Symbol 184 Button
on (release) { _parent._parent._parent._parent._parent.tryToJoinGame(_parent.txtName); gotoAndStop (2); }
Symbol 186 MovieClip Frame 1
stop();
Symbol 191 Button
on (release) { _parent._parent._parent._parent._parent.cancelChallenge(); gotoAndStop (2); }
Symbol 193 MovieClip Frame 1
stop();
Symbol 200 MovieClip Frame 31
stop();
Symbol 202 MovieClip [mcGame] Frame 1
function showPersonalInfo(bol) { mcRating._visible = bol; mcAvatars._visible = bol; } showPersonalInfo(true); stop();
Symbol 202 MovieClip [mcGame] Frame 2
showPersonalInfo(false);
Symbol 202 MovieClip [mcGame] Frame 3
showPersonalInfo(true);
Symbol 202 MovieClip [mcGame] Frame 4
showPersonalInfo(true);
Symbol 208 MovieClip [fps] Frame 1
oneSecond = getTimer() + 1000;
Symbol 208 MovieClip [fps] Frame 3
if (getTimer() > oneSecond) { oneSecond = getTimer() + 1000; txtFPS = framesCounter; framesCounter = 0; } framesCounter++; gotoAndPlay(_currentframe - 1);
Symbol 218 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 221 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 224 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 226 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 229 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(disabled_mc, "foregroundDisabled");
Symbol 232 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(dot_mc, "radioDot");
Symbol 233 MovieClip [frb_states] Frame 1
stop();
Symbol 233 MovieClip [frb_states] Frame 2
stop();
Symbol 233 MovieClip [frb_states] Frame 3
stop();
Symbol 233 MovieClip [frb_states] Frame 4
stop();
Symbol 233 MovieClip [frb_states] Frame 5
stop();
Symbol 236 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 236 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 239 MovieClip [FRadioButtonSymbol] Frame 1
#initclip 74 function FRadioButtonClass() { this.init(); } function FRadioButtonGroupClass() { this.radioInstances = new Array(); } FRadioButtonClass.prototype = new FUIComponentClass(); FRadioButtonGroupClass.prototype = new FUIComponentClass(); Object.registerClass("FRadioButtonSymbol", FRadioButtonClass); FRadioButtonClass.prototype.init = function () { if (this.initialState == undefined) { this.selected = false; } else { this.selected = this.initialState; } super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.boundingBox_mc._width = 0; this.boundingBox_mc._height = 0; this.attachMovie("frb_hitArea", "frb_hitArea_mc", 1); this.attachMovie("frb_states", "frb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); this.setChangeHandler(this.changeHandler); if (this.label != undefined) { this.setLabel(this.label); } if (this.initialState == undefined) { this.setValue(false); } else { this.setValue(this.initialState); } if (this.data == "") { this.data = undefined; } else { this.setData(this.data); } this.addToRadioGroup(); this.ROLE_SYSTEM_RADIOBUTTON = 45; this.STATE_SYSTEM_SELECTED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FRadioButtonClass.prototype.setHitArea = function (w, h) { var _local3 = this.frb_hitArea_mc; this.hitArea = _local3; if (this.frb_states_mc._width > w) { _local3._width = this.frb_states_mc._width; } else { _local3._width = w; } _local3._visible = false; if (arguments.length > 1) { _local3._height = h; } }; FRadioButtonClass.prototype.txtFormat = function (pos) { var _local3 = this.textStyle; var _local4 = this.styleTable; _local3.align = ((_local4.textAlign.value == undefined) ? ((_local3.align = pos)) : undefined); _local3.leftMargin = ((_local4.textLeftMargin.value == undefined) ? ((_local3.leftMargin = 0)) : undefined); _local3.rightMargin = ((_local4.textRightMargin.value == undefined) ? ((_local3.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.setEnabled(this.enable); }; FRadioButtonClass.prototype.setSize = function (w, h) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.frb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FRadioButtonClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var _local7 = this.fLabel_mc._height / 2; var _local8 = this.frb_states_mc._height / 2; var _local5 = _local8 - _local7; var _local6 = this.frb_states_mc._width; var _local2 = this.frb_states_mc; var _local9 = this.fLabel_mc; var _local3 = this.width - _local2._width; if (_local2._width > this.width) { _local3 = 0; } else { _local3 = this.width - _local2._width; } this.fLabel_mc.setSize(_local3); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.frb_states_mc._x = 0; this.fLabel_mc._x = _local6; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.frb_states_mc._x = this.width - _local6; this.txtFormat("right"); } this.fLabel_mc._y = _local5; this.frb_hitArea_mc._y = _local5; this.setLabel(this.getLabel()); }; FRadioButtonClass.prototype.setData = function (dataValue) { this.data = dataValue; }; FRadioButtonClass.prototype.getData = function () { return(this.data); }; FRadioButtonClass.prototype.getState = function () { return(this.selected); }; FRadioButtonClass.prototype.getSize = function () { return(this.width); }; FRadioButtonClass.prototype.getGroupName = function () { return(this.groupName); }; FRadioButtonClass.prototype.setGroupName = function (groupName) { var _local2 = 0; while (_local2 < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[_local2] == this) { delete this._parent[this.groupName].radioInstances[_local2]; } _local2++; } this.groupName = groupName; this.addToRadioGroup(); }; FRadioButtonClass.prototype.addToRadioGroup = function () { if (this._parent[this.groupName] == undefined) { this._parent[this.groupName] = new FRadioButtonGroupClass(); } this._parent[this.groupName].addRadioInstance(this); }; FRadioButtonClass.prototype.setValue = function (selected) { if (selected || (selected == undefined)) { this.setState(true); this.focusRect.removeMovieClip(); this.executeCallBack(); } else if (selected == false) { this.setState(false); } }; FRadioButtonClass.prototype.setTabState = function (selected) { Selection.setFocus(this); this.setState(selected); this.drawFocusRect(); this.executeCallBack(); }; FRadioButtonClass.prototype.setState = function (selected) { if (selected || (selected == undefined)) { this.tabEnabled = true; for (var _local3 in this._parent) { if ((this != this._parent[_local3]) && (this._parent[_local3].groupName == this.groupName)) { this._parent[_local3].setState(false); this._parent[_local3].tabEnabled = false; } } } if (this.enable) { this.flabel_mc.setEnabled(true); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedEnabled"); this.enabled = false; this.selected = true; this.tabEnabled = true; this.tabFocused = true; } else { this.frb_states_mc.gotoAndStop("unselectedEnabled"); this.enabled = true; this.selected = false; this.tabEnabled = false; var _local4 = this._parent[this.groupName].getEnabled(); var _local5 = this._parent[this.groupName].getValue() == undefined; if (_local4 && (_local5)) { this._parent[this.groupName].radioInstances[0].tabEnabled = true; } } } else { this.flabel_mc.setEnabled(false); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedDisabled"); this.enabled = false; this.selected = true; this.tabEnabled = false; } else { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.enabled = false; this.selected = false; this.tabEnabled = false; } } if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FRadioButtonClass.prototype.getValue = function () { if (this.selected) { if ((this.data == "") || (this.data == undefined)) { return(this.getLabel()); } return(this.data); } }; FRadioButtonClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setState(this.selected); var _local5 = this._parent[this.groupName].getEnabled() == undefined; var _local4 = this._parent[this.groupName].radioInstances[0].getEnabled() == false; if (_local5 && (_local4)) { var _local3 = 0; while (_local3 < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[_local3].getEnabled() == true) { this._parent[this.groupName].radioInstances[_local3].tabEnabled = true; return(undefined); } _local3++; } } }; FRadioButtonClass.prototype.getEnabled = function () { return(this.enable); }; FRadioButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FRadioButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.getLabel()); }; FRadioButtonClass.prototype.onPress = function () { this.pressFocus(); this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.onRelease = function () { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.setValue(!this.selected); }; FRadioButtonClass.prototype.onReleaseOutside = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOut = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOver = function () { this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this._parent[this.groupName]); }; FRadioButtonGroupClass.prototype.addRadioInstance = function (instance) { this.radioInstances.push(instance); this.radioInstances[0].tabEnabled = true; }; FRadioButtonGroupClass.prototype.setEnabled = function (enableFlag) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setEnabled(enableFlag); _local2++; } }; FRadioButtonGroupClass.prototype.getEnabled = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].getEnabled() != this.radioInstances[0].getEnabled()) { return(undefined); } _local2++; } return(this.radioInstances[0].getEnabled()); }; FRadioButtonGroupClass.prototype.setChangeHandler = function (changeHandler, obj) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setChangeHandler(changeHandler, obj); _local2++; } }; FRadioButtonGroupClass.prototype.getValue = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected == true) { if ((this.radioInstances[_local2].data == "") || (this.radioInstances[_local2].data == undefined)) { return(this.radioInstances[_local2].getLabel()); } return(this.radioInstances[_local2].data); } _local2++; } }; FRadioButtonGroupClass.prototype.getData = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected) { return(this.radioInstances[_local2].getData()); } _local2++; } }; FRadioButtonGroupClass.prototype.getInstance = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].selected == true) { return(_local2); } _local2++; } }; FRadioButtonGroupClass.prototype.setValue = function (dataValue) { var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].data == dataValue) { this.radioInstances[_local2].setValue(true); return(undefined); } _local2++; } _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].getLabel() == dataValue) { this.radioInstances[_local2].setValue(true); } _local2++; } }; FRadioButtonGroupClass.prototype.setSize = function (w) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setSize(w); _local2++; } }; FRadioButtonGroupClass.prototype.getSize = function () { var _local3 = 0; var _local2 = 0; while (_local2 < this.radioInstances.length) { if (this.radioInstances[_local2].width >= _local3) { _local3 = this.radioInstances[_local2].width; } _local2++; } return(_local3); }; FRadioButtonGroupClass.prototype.setGroupName = function (groupName) { this.oldGroupName = this.radioInstances[0].groupName; var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].groupName = groupName; this.radioInstances[_local2].addToRadioGroup(); _local2++; } delete this._parent[this.oldGroupName]; }; FRadioButtonGroupClass.prototype.getGroupName = function () { return(this.radioInstances[0].groupName); }; FRadioButtonGroupClass.prototype.setLabelPlacement = function (pos) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setLabelPlacement(pos); _local2++; } }; FRadioButtonGroupClass.prototype.setStyleProperty = function (propName, value, isGlobal) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].setStyleProperty(propName, value, isGlobal); _local2++; } }; FRadioButtonGroupClass.prototype.addListener = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].addListener(); _local2++; } }; FRadioButtonGroupClass.prototype.applyChanges = function () { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].applyChanges(); _local2++; } }; FRadioButtonGroupClass.prototype.removeListener = function (component) { var _local2 = 0; while (_local2 < this.radioInstances.length) { this.radioInstances[_local2].removeListener(component); _local2++; } }; FRadioButtonClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 3); }; FRadioButtonClass.prototype.myOnKillFocus = function () { Key.removeListener(this.keyListener); this.focused = false; this.focusRect.removeMovieClip(); this._parent[this.groupName].foobar = 0; }; FRadioButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this._parent[this.groupName].getValue() == undefined)) { if (this._parent[this.groupName].radioInstances[0] == this) { this.setTabState(true); } } if ((Key.getCode() == 40) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var _local2 = this.foobar; while (_local2 < this._parent[this.groupName].radioInstances.length) { var _local3 = _local2 + 1; if (this._parent[this.groupName].radioInstances[_local3].getEnabled()) { this._parent[this.groupName].radioInstances[_local3].setTabState(true); return(undefined); } _local2++; } } if ((Key.getCode() == 38) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var _local2 = this.foobar; while (_local2 >= 0) { var _local3 = _local2 - 1; if (this._parent[this.groupName].radioInstances[_local3].getEnabled()) { this._parent[this.groupName].radioInstances[_local3].setTabState(true); return(undefined); } _local2--; } } }; FRadioButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_RADIOBUTTON); }; FRadioButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FRadioButtonClass.prototype.get_accState = function (childId) { if (this.master.getState()) { return(this.master.STATE_SYSTEM_SELECTED); } return(0); }; FRadioButtonClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getState()) { return("UnCheck"); } return("Check"); }; FRadioButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 242 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 243 MovieClip [FScrollBarSymbol] Frame 1
#initclip 73 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var _local2 = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; _local2 = Math.min(_local2, this.maxPos); this.setScrollPosition(Math.max(_local2, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var _local3 = this.enable; if (enabledFlag && (!_local3)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (_local3)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var _local3 = this.smallScroll; if (inc != "one") { _local3 = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var _local2 = this.getScrollPosition() + (mode * _local3); if (_local2 > this.maxPos) { _local2 = this.maxPos; } else if (_local2 < this.minPos) { _local2 = this.minPos; } this.setScrollPosition(_local2); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var _local2 = this.controller; _local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (this._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("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 _local3 = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(_local3, this.textField.maxhscroll)); } else { var _local3 = this.textField.scroll; var _local2 = this.textField.bottomScroll - this.textField.scroll; this.setScrollProperties(_local2, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(_local3, 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 244 MovieClip [DataProviderSymbol] Frame 1
#initclip 66 _global.DataProviderClass = function () { this.init(); }; DataProviderClass.prototype.init = function () { this.items = new Array(); this.uniqueID = 0; this.views = new Array(); }; DataProviderClass.prototype.addView = function (viewRef) { this.views.push(viewRef); var _local2 = {event:"updateAll"}; viewRef.modelChanged(_local2); }; DataProviderClass.prototype.addItemAt = function (index, value) { if (index < this.getLength()) { this.items.splice(index, 0, "tmp"); } this.items[index] = new Object(); if (typeof(value) == "object") { this.items[index] = value; } else { this.items[index].label = value; } this.items[index].__ID__ = this.uniqueID++; var _local4 = {event:"addRows", firstRow:index, lastRow:index}; this.updateViews(_local4); }; DataProviderClass.prototype.addItem = function (value) { this.addItemAt(this.getLength(), value); }; DataProviderClass.prototype.removeItemAt = function (index) { var _local4 = this.items[index]; this.items.splice(index, 1); var _local3 = {event:"deleteRows", firstRow:index, lastRow:index}; this.updateViews(_local3); return(_local4); }; DataProviderClass.prototype.removeAll = function () { this.items = new Array(); this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1}); }; DataProviderClass.prototype.replaceItemAt = function (index, itemObj) { if ((index < 0) || (index >= this.getLength())) { return(undefined); } var _local4 = this.getItemID(index); if (typeof(itemObj) == "object") { this.items[index] = itemObj; } else { this.items[index].label = itemObj; } this.items[index].__ID__ = _local4; 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 _local2 = 0; while (_local2 < this.views.length) { this.views[_local2].modelChanged(eventObj); _local2++; } }; #endinitclip
Symbol 245 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 77 function FSelectableItemClass() { this.init(); } FSelectableItemClass.prototype = new FUIComponentClass(); FSelectableItemClass.prototype.init = function () { if (this._name != "itemAsset") { this.highlighted = false; this.layoutContent(100); } }; FSelectableItemClass.prototype.drawItem = function (itmObj, selected) { this.displayContent(itmObj, selected); if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) { this.setHighlighted(selected); } this.oldFocus = this.controller.focused; }; FSelectableItemClass.prototype.setSize = function (width, height) { var _local2 = -16384; this.width = width; this.layoutContent(width); this.attachMovie("FHighlightSymbol", "highlight_mc", _local2); this.highlight_mc._x = 0.5; this.highlight_mc._width = width - 0.5; this.highlight_mc._height = height; this.highlight_mc.controller = this; this.highlight_mc._alpha = 0; this.highlight_mc.trackAsMenu = true; this.highlight_mc.onPress = function () { if (this.controller.enable) { this.controller.controller.clickHandler(this.controller.itemNum); } }; this.highlight_mc.onDragOver = function () { if (this.controller.controller.focused) { this.onPress(); } }; this.highlight_mc.useHandCursor = false; this.highlight_mc.trackAsMenu = true; }; FSelectableItemClass.prototype.setEnabled = function (enabledFlag) { this.enable = enabledFlag; this.fLabel_mc.setEnabled(enabledFlag); this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled")); }; FSelectableItemClass.prototype.layoutContent = function (width) { this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller}); this.fLabel_mc._x = 2; this.fLabel_mc._y = 0; this.fLabel_mc.setSize(width - 2); this.fLabel_mc.labelField.selectable = false; }; FSelectableItemClass.prototype.displayContent = function (itmObj, selected) { var _local2 = ""; if (itmObj.label != undefined) { _local2 = itmObj.label; } else if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } if (this.fLabel_mc.labelField.text != _local2) { this.fLabel_mc.setLabel(_local2); } var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (_local5 == undefined) { _local5 = (selected ? 16777215 : 0); } this.fLabel_mc.setColor(_local5); }; FSelectableItemClass.prototype.getItemIndex = function () { return(this.controller.getScrollPosition() + this.itemNum); }; FSelectableItemClass.prototype.getItemModel = function () { return(this.controller.getItemAt(this.getItemIndex())); }; FSelectableItemClass.prototype.getHostDataProvider = function () { return(this.controller.dataProvider); }; FSelectableItemClass.prototype.setHighlighted = function (flag) { fade = this.controller.styleTable.fadeRate.value; if (((fade == undefined) || (fade == 0)) || (!flag)) { this.highlight_mc._alpha = (flag ? 100 : 0); delete this.onEnterFrame; } else { this.fadeN = fade; this.fadeX = 1; this.highLight_mc._alpha = 20; this.onEnterFrame = function () { this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40; if (this.fadeX > this.fadeN) { delete this.onEnterFrame; } }; } this.highlighted = flag; }; #endinitclip
Symbol 246 MovieClip [FSelectableListSymbol] Frame 1
#initclip 71 function FSelectableListClass() { this.init(); } FSelectableListClass.prototype = new FUIComponentClass(); FSelectableListClass.prototype.init = function () { super.init(); this.enable = true; this.selected = new Array(); this.topDisplayed = (this.numDisplayed = 0); this.lastSelected = 0; this.tabChildren = false; if (this._name != undefined) { this.dataProvider = new DataProviderClass(); this.dataProvider.addView(this); } }; FSelectableListClass.prototype.addItemAt = function (index, label, data) { if ((index < 0) || (!this.enable)) { return(undefined); } this.dataProvider.addItemAt(index, {label:label, data:data}); }; FSelectableListClass.prototype.addItem = function (label, data) { if (!this.enable) { return(undefined); } this.dataProvider.addItem({label:label, data:data}); }; FSelectableListClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndex(); var _local2 = this.getItemAt(index); this.dataProvider.removeItemAt(index); return(_local2); }; FSelectableListClass.prototype.removeAll = function () { this.dataProvider.removeAll(); }; FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) { this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); }; FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) { this.lastSelID = this.dataProvider.getItemID(this.lastSelected); this.dataProvider.sortItemsBy(fieldName, order); }; FSelectableListClass.prototype.getLength = function () { return(this.dataProvider.getLength()); }; FSelectableListClass.prototype.getSelectedIndex = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (_local2 != undefined) { return(_local2); } } }; FSelectableListClass.prototype.getSelectedItem = function () { return(this.getItemAt(this.getSelectedIndex())); }; FSelectableListClass.prototype.getItemAt = function (index) { return(this.dataProvider.getItemAt(index)); }; FSelectableListClass.prototype.getEnabled = function () { return(this.enable); }; FSelectableListClass.prototype.getValue = function () { var _local2 = this.getSelectedItem(); return(((_local2.data == undefined) ? (_local2.label) : (_local2.data))); }; FSelectableListClass.prototype.setSelectedIndex = function (index, flag) { if (((index >= 0) && (index < this.getLength())) && (this.enable)) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.invalidate("updateControl"); if (flag != false) { this.executeCallBack(); } } }; FSelectableListClass.prototype.setDataProvider = function (obj) { this.setScrollPosition(0); this.clearSelected(); if (obj instanceof Array) { this.dataProvider = new DataProviderClass(); var _local2 = 0; while (_local2 < obj.length) { var _local4 = ((typeof(obj[_local2]) == "string") ? ({label:obj[_local2]}) : (obj[_local2])); this.dataProvider.addItem(_local4); _local2++; } } else { this.dataProvider = obj; } this.dataProvider.addView(this); }; FSelectableListClass.prototype.setItemSymbol = function (linkID) { this.tmpPos = this.getScrollPosition(); this.itemSymbol = linkID; this.invalidate("setSize"); this.setScrollPosition(this.tmpPos); }; FSelectableListClass.prototype.setEnabled = function (enabledFlag) { this.cleanUI(); super.setEnabled(enabledFlag); this.enable = enabledFlag; this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); var _local4 = Math.min(this.numDisplayed, this.getLength()); var _local3 = 0; while (_local3 < _local4) { this.container_mc[("fListItem" + _local3) + "_mc"].setEnabled(this.enable); _local3++; } if (this.enable) { this.invalidate("updateControl"); } }; FSelectableListClass.prototype.updateControl = function () { var _local2 = 0; while (_local2 < this.numDisplayed) { this.container_mc[("fListItem" + _local2) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + _local2), this.isSelected(this.topDisplayed + _local2)); _local2++; } }; FSelectableListClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100); this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width; this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height; var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + _local3) + "_mc", 10 + _local3, {controller:this, itemNum:_local3}); var _local4 = this.container_mc[("fListItem" + _local3) + "_mc"]; var _local5 = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset)); _local4.setSize(this.width - _local5, this.itmHgt); _local4._y = (this.itmHgt - 2) * _local3; _local3++; } this.updateControl(); }; FSelectableListClass.prototype.modelChanged = function (eventObj) { var _local4 = eventObj.firstRow; var _local6 = eventObj.lastRow; var _local8 = eventObj.event; if (_local8 == "addRows") { for (var _local2 in this.selected) { if ((this.selected[_local2].sIndex != undefined) && (this.selected[_local2].sIndex >= _local4)) { this.selected[_local2].sIndex = this.selected[_local2].sIndex + ((_local6 - _local4) + 1); this.setSelectedIndex(this.selected[_local2].sIndex, false); } } } else if (_local8 == "deleteRows") { if (_local4 == _local6) { var _local5 = _local4; if (this.selectHolder == _local5) { this.selectionDeleted = true; } if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) { this.topDisplayed--; if (this.selectionDeleted && ((_local5 - 1) >= 0)) { this.setSelectedIndex(_local5 - 1, false); } } else if (this.selectionDeleted) { var _local7 = this.getLength(); if (((_local5 == (_local7 - 1)) && (_local7 > 1)) || (_local5 > (_local7 / 2))) { this.setSelectedIndex(_local5 - 1, false); } else { this.setSelectedIndex(_local5, false); } } for (var _local2 in this.selected) { if (this.selected[_local2].sIndex > _local4) { this.selected[_local2].sIndex--; } } } else { this.clearSelected(); this.topDisplayed = 0; } } else if (_local8 == "sort") { var _local7 = this.getLength(); var _local2 = 0; while (_local2 < _local7) { if (this.isSelected(_local2)) { var _local3 = this.dataProvider.getItemID(_local2); if (_local3 == this.lastSelID) { this.lastSelected = _local2; } this.selected[String(_local3)].sIndex = _local2; } _local2++; } } this.invalidate("updateControl"); }; FSelectableListClass.prototype.measureItmHgt = function () { this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this}); this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false); this.itmHgt = this.tmpItem_mc._height; this.tmpItem_mc.removeMovieClip(); }; FSelectableListClass.prototype.selectItem = function (index, selectedFlag) { if (selectedFlag && (!this.isSelected(index))) { this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index}; } else if (!selectedFlag) { delete this.selected[String(this.dataProvider.getItemID(index))]; } }; FSelectableListClass.prototype.isSelected = function (index) { return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined); }; FSelectableListClass.prototype.clearSelected = function () { for (var _local3 in this.selected) { var _local2 = this.selected[_local3].sIndex; if (((_local2 != undefined) && (this.topDisplayed <= _local2)) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), false); } } delete this.selected; this.selected = new Array(); }; FSelectableListClass.prototype.selectionHandler = function (itemNum) { var _local2 = this.topDisplayed + itemNum; if (this.getItemAt(_local2 == undefined)) { this.changeFlag = false; return(undefined); } this.changeFlag = true; this.clearSelected(); this.selectItem(_local2, true); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); }; FSelectableListClass.prototype.moveSelBy = function (incr) { var _local3 = this.getSelectedIndex(); var _local2 = _local3 + incr; _local2 = Math.max(0, _local2); _local2 = Math.min(this.getLength() - 1, _local2); if (_local2 == _local3) { return(undefined); } if ((_local3 < this.topDisplayed) || (_local3 >= (this.topDisplayed + this.numDisplayed))) { this.setScrollPosition(_local3); } if ((_local2 >= (this.topDisplayed + this.numDisplayed)) || (_local2 < this.topDisplayed)) { this.setScrollPosition(this.topDisplayed + incr); } this.selectionHandler(_local2 - this.topDisplayed); }; FSelectableListClass.prototype.clickHandler = function (itmNum) { this.focusRect.removeMovieClip(); if (!this.focused) { this.pressFocus(); } this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FSelectableListClass.prototype.releaseHandler = function () { if (this.changeFlag) { this.executeCallBack(); } this.changeFlag = false; this.onMouseUp = undefined; }; FSelectableListClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("enabled"); _local3++; } }; FSelectableListClass.prototype.myOnKillFocus = function () { super.myOnKillFocus(); var _local3 = 0; while (_local3 < this.numDisplayed) { this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("unfocused"); _local3++; } }; #endinitclip
Instance of Symbol 244 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 246 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (construct) { }
Instance of Symbol 245 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 246 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (construct) { }
Symbol 247 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 79 function FScrollSelectListClass() { this.init(); } FScrollSelectListClass.prototype = new FSelectableListClass(); FScrollSelectListClass.prototype.getScrollPosition = function () { return(this.topDisplayed); }; FScrollSelectListClass.prototype.setScrollPosition = function (pos) { if (this.enable) { pos = Math.min(pos, this.getLength() - this.numDisplayed); pos = Math.max(pos, 0); this.scrollBar_mc.setScrollPosition(pos); } }; FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) { this.permaScrollBar = !flag; this.setSize(this.width, this.height); }; FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) { super.setEnabled(enabledFlag); this.scrollBar_mc.setEnabled(this.enable); }; FScrollSelectListClass.prototype.setSize = function (w, h) { var _local3 = this.getScrollPosition(); super.setSize(w, h); if (this.scrollBar_mc != undefined) { this.removed = true; } this.scrollBar_mc = undefined; this.initScrollBar(); this.setScrollPosition(_local3); }; FScrollSelectListClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); this.invalidate("initScrollBar"); }; FScrollSelectListClass.prototype.initScrollBar = function () { if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) { if (this.removed) { this.scrollBar_mc.removeMovieClip(); this.scrollBar_mc = undefined; this.scrollOffset = undefined; this.invalidate("setSize"); } } else { if (this.scrollBar_mc == undefined) { this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable}); this.scrollBar_mc = this.container_mc.scrollBar_mc; this.scrollBar_mc.setChangeHandler("scrollHandler", this); this.scrollBar_mc.setSize(this.height); this.scrollBar_mc._x = this.width - this.scrollBar_mc._width; this.scrollBar_mc._y = 0; this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1); this.scrollOffset = this.scrollBar_mc._width; this.invalidate("setSize"); } this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed); } }; FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) { var _local2 = scrollBar.getScrollPosition(); this.topDisplayed = _local2; if (this.lastPosition != _local2) { this.updateControl(); } this.lastPosition = _local2; }; FScrollSelectListClass.prototype.clickHandler = function (itmNum) { super.clickHandler(itmNum); if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.releaseHandler = function () { clearInterval(this.dragScrolling); this.dragScrolling = undefined; super.releaseHandler(); }; FScrollSelectListClass.prototype.dragScroll = function () { clearInterval(this.dragScrolling); if (this.container_mc._ymouse < 0) { this.setScrollPosition(this.getScrollPosition() - 1); this.selectionHandler(0); this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) { this.setScrollPosition(this.getScrollPosition() + 1); this.selectionHandler(this.numDisplayed - 1); this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.myOnKeyDown = function () { if (this.focused) { this.keyCodes = new Array(40, 38, 34, 33, 36, 35); this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength()); var _local2 = 0; while (_local2 < this.keyCodes.length) { if (Key.isDown(this.keyCodes[_local2])) { this.moveSelBy(this.keyIncrs[_local2]); return(undefined); } _local2++; } this.findInputText(); } }; FScrollSelectListClass.prototype.findInputText = function () { var _local2 = Key.getAscii(); if ((_local2 >= 33) && (_local2 <= 126)) { this.findString(String.fromCharCode(_local2)); } }; FScrollSelectListClass.prototype.findString = function (str) { if (this.getLength() == 0) { return(undefined); } var _local4 = this.getSelectedIndex(); var _local6 = 0; var _local2 = _local4 + 1; while (_local2 != _local4) { var _local3 = this.getItemAt(_local2).label.substring(0, str.length); if ((str == _local3) || (str.toUpperCase() == _local3.toUpperCase())) { _local6 = _local2 - _local4; break; } if (_local2 >= (this.getLength() - 1)) { _local2 = -1; } _local2++; } if (_local6 != 0) { this.moveSelBy(_local6); } }; #endinitclip
Instance of Symbol 243 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 247 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (construct) { _targetInstanceName = ""; horizontal = false; } onClipEvent (load) { this._width = (this._height = 1); }
Instance of Symbol 246 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 247 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (construct) { }
Symbol 248 MovieClip [FComboBoxItemSymbol] Frame 1
#initclip 82 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 251 MovieClip [FComboBoxSymbol] Frame 1
#initclip 85 function FComboBoxClass() { _global._popUpLevel = ((_global._popUpLevel == undefined) ? 20000 : (_global._popUpLevel + 1)); this.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); var _local5 = this.superHolder.createEmptyMovieClip("testCont", 20000); var _local6 = _local5.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); if (_local6._name == undefined) { this.superHolder.removeMovieClip(); this.superHolder = this._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); } else { _local5.removeMovieClip(); } if (this.rowCount == undefined) { this.rowCount = 8; this.editable = false; } this.itemSymbol = "FComboBoxItemSymbol"; this.init(); this.permaScrollBar = false; this.proxyBox_mc.gotoAndStop(1); this.width = this._width; this.height = (this.proxyBox_mc._height * this._yscale) / 100; var _local4 = 0; while (_local4 < this.labels.length) { this.addItem(this.labels[_local4], this.data[_local4]); _local4++; } this.lastSelected = 0; this.selectItem(0); this._xscale = (this._yscale = 100); this.opened = false; this.setSize(this.width); this.highlightTop(false); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.onUnload = function () { this.superHolder.removeMovieClip(); }; this.setSelectedIndex(0, false); this.value = ""; this.focusEnabled = true; this.changeFlag = false; } FComboBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FComboBoxSymbol", FComboBoxClass); FComboBoxClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); var _local3 = eventObj.event; if ((_local3 == "addRows") || (_local3 == "deleteRows")) { var _local6 = (eventObj.lastRow - eventObj.firstRow) + 1; var _local7 = ((_local3 == "addRows") ? 1 : -1); var _local4 = this.getLength(); var _local8 = _local4 - (_local7 * _local6); if ((this.rowCount > _local8) || (this.rowCount > _local4)) { this.invalidate("setSize"); } if (this.getSelectedIndex() == undefined) { this.setSelectedIndex(0, false); } } else if (_local3 == "updateAll") { this.invalidate("setSize"); } }; FComboBoxClass.prototype.removeAll = function () { if (!this.enable) { return(undefined); } super.removeAll(); if (this.editable) { this.value = ""; } this.invalidate("setSize"); }; FComboBoxClass.prototype.setSize = function (w) { if ((((w == undefined) || (typeof(w) != "number")) || (w <= 0)) || (!this.enable)) { return(undefined); } this.proxyBox_mc._width = w; this.container_mc.removeMovieClip(); this.measureItmHgt(); this.container_mc = this.superHolder.createEmptyMovieClip("container", 3); this.container_mc.tabChildren = false; this.setPopUpLocation(this.container_mc); this.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); this.boundingBox_mc = this.container_mc.boundingBox_mc; this.boundingBox_mc.component = this; this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc._height = this.itmHgt; this.numDisplayed = Math.min(this.rowCount, this.getLength()); if (this.numDisplayed < 3) { this.numDisplayed = Math.min(3, this.getLength()); } this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); this.attachMovie("DownArrow", "downArrow", 10); this.downArrow._y = 0; this.downArrow._width = this.itmHgt; this.downArrow._height = this.itmHgt; this.downArrow._x = this.proxyBox_mc._width - this.downArrow._width; this.setEditable(this.editable); this.container_mc._visible = this.opened; this.highlightTop(false); this.fader = this.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4); this.registerSkinElement(this.fader.boundingBox, "background"); this.fader._width = this.width; this.fader._height = this.height; this.fader._visible = false; }; FComboBoxClass.prototype.setDataProvider = function (dp) { super.setDataProvider(dp); this.invalidate("setSize"); this.setSelectedIndex(0); }; FComboBoxClass.prototype.getValue = function () { if (this.editable) { return(this.fLabel_mc.getLabel()); } return(super.getValue()); }; FComboBoxClass.prototype.getRowCount = function () { return(this.rowCount); }; FComboBoxClass.prototype.setRowCount = function (count) { this.rowCount = ((this.getLength() > count) ? (Math.max(count, 3)) : (count)); this.setSize(this.width); var _local2 = this.getLength(); if ((_local2 - this.getScrollPosition()) < this.rowCount) { this.setScrollPosition(_local2 - Math.min(this.rowCount, _local2)); this.invalidate("updateControl"); } }; FComboBoxClass.prototype.setEditable = function (editableFlag) { if (!this.enable) { return(undefined); } this.editable = editableFlag; if (!this.editable) { this.onPress = this.pressHandler; this.useHandCursor = false; this.trackAsMenu = true; this.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:this, itemNum:-1}); this.fLabel_mc.onRollOver = undefined; this.fLabel_mc.setSize((this.width - this.itmHgt) + 1, this.itmHgt); this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); this.highlightTop(false); } else { this.attachMovie("FLabelSymbol", "fLabel_mc", 5); this.fLabel_txt = this.fLabel_mc.labelField; this.fLabel_txt.type = "input"; this.fLabel_txt._x = 4; this.fLabel_txt.onSetFocus = this.onLabelFocus; this.fLabel_mc.setSize((this.width - this.itmHgt) - 3); delete this.onPress; this.fLabel_txt.onKillFocus = function () { this._parent._parent.myOnKillFocus(); }; this.fLabel_mc.setLabel(this.value); this.fLabel_txt.onChanged = function () { this._parent._parent.findInputText(); }; this.downArrow.onPress = this.buttonPressHandler; this.downArrow.useHandCursor = false; this.downArrow.trackAsMenu = true; } }; FComboBoxClass.prototype.setEnabled = function (enabledFlag) { enabledFlag = (((enabledFlag == undefined) || (typeof(enabledFlag) != "boolean")) ? true : (enabledFlag)); super.setEnabled(enabledFlag); this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); this.downArrow.gotoAndStop((this.enable ? 1 : 3)); if (this.editable) { this.fLabel_txt.type = (enabledFlag ? "input" : "dynamic"); this.fLabel_txt.selectable = enabledFlag; } else if (enabledFlag) { this.fLabel_mc.drawItem(this.topLabel, false); this.setSelectedIndex(this.getSelectedIndex(), false); } this.fLabel_mc.setEnabled(this.enable); this.fLabel_txt.onSetFocus = (enabledFlag ? (this.onLabelFocus) : undefined); }; FComboBoxClass.prototype.setSelectedIndex = function (index, flag) { super.setSelectedIndex(index, flag); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); } else { this.value = ((flag != undefined) ? "" : (this.getSelectedItem().label)); this.fLabel_mc.setLabel(this.value); } this.invalidate("updateControl"); }; FComboBoxClass.prototype.setValue = function (value) { if (this.editable) { this.fLabel_mc.setLabel(value); this.value = value; } }; FComboBoxClass.prototype.pressHandler = function () { this.focusRect.removeMovieClip(); if (this.enable) { if (!this.opened) { this.onMouseUp = this.releaseHandler; } else { this.onMouseUp = undefined; } this.changeFlag = false; if (!this.focused) { this.pressFocus(); this.clickFilter = (this.editable ? false : true); } if (!this.clickFilter) { this.openOrClose(!this.opened); } else { this.clickFilter = false; } } }; FComboBoxClass.prototype.clickHandler = function (itmNum) { if (!this.focused) { if (this.editable) { this.fLabel_txt.onKillFocus = undefined; } this.pressFocus(); } super.clickHandler(itmNum); this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FComboBoxClass.prototype.highlightTop = function (flag) { if (!this.editable) { this.fLabel_mc.drawItem(this.topLabel, flag); } }; FComboBoxClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); this.fLabel_mc.highlight_mc.gotoAndStop("enabled"); this.highlightTop(true); }; FComboBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this._height + 4); }; FComboBoxClass.prototype.myOnKillFocus = function () { if (Selection.getFocus().indexOf("labelField") != -1) { return(undefined); } super.myOnKillFocus(); delete this.fLabel_txt.onKeyDown; this.openOrClose(false); this.highlightTop(false); }; FComboBoxClass.prototype.setPopUpLocation = function (mcRef) { mcRef._x = this._x; var _local2 = {x:this._x, y:this._y + this.proxyBox_mc._height}; this._parent.localToGlobal(_local2); mcRef._parent.globalToLocal(_local2); mcRef._x = _local2.x; mcRef._y = _local2.y; if ((this.height + mcRef._y) >= Stage.height) { this.upward = true; mcRef._y = (_local2.y - this.height) - this.proxyBox_mc._height; } else { this.upward = false; } }; FComboBoxClass.prototype.openOrClose = function (flag) { if (this.getLength() == 0) { return(undefined); } this.setPopUpLocation(this.container_mc); if ((this.lastSelected != -1) && ((this.lastSelected < this.topDisplayed) || (this.lastSelected > (this.topDisplayed + this.numDisplayed)))) { super.moveSelBy(this.lastSelected - this.getSelectedIndex()); } if (!flag) { (this.downArrow.gotoAndStop(1));// not popped } else { (this.downArrow.gotoAndStop(2));// not popped } if (flag == this.opened) { return(undefined); } this.highlightTop(!flag); this.fadeRate = this.styleTable.popUpFade.value; if (((!flag) || (this.fadeRate == undefined)) || (this.fadeRate == 0)) { this.opened = (this.container_mc._visible = flag); return(undefined); } this.setPopUpLocation(this.fader); this.time = 0; this.const = 85 / Math.sqrt(this.fadeRate); this.fader._alpha = 85; this.container_mc._visible = (this.fader._visible = true); this.onEnterFrame = function () { this.fader._alpha = 100 - ((this.const * Math.sqrt(++this.time)) + 15); if (this.time >= this.fadeRate) { this.fader._visible = false; delete this.onEnterFrame; this.opened = true; } }; }; FComboBoxClass.prototype.fireChange = function () { this.lastSelected = this.getSelectedIndex(); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, true); } else { this.value = this.getSelectedItem().label; this.fLabel_mc.setLabel(this.value); } this.executeCallback(); }; FComboBoxClass.prototype.releaseHandler = function () { var _local3 = this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse); if (this.changeFlag) { if (_local3) { this.fireChange(); } this.openOrClose(!this.opened); } else if (_local3) { this.openOrClose(false); } else { this.onMouseDown = function () { if ((!this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse)) && (!this.hitTest(_root._xmouse, _root._ymouse))) { this.onMouseDown = undefined; this.openOrClose(false); } }; } this.changeFlag = false; this.onMouseUp = undefined; clearInterval(this.dragScrolling); this.dragScrolling = undefined; }; FComboBoxClass.prototype.moveSelBy = function (itemNum) { if (itemNum != 0) { super.moveSelBy(itemNum); if (this.editable) { this.setValue(this.getSelectedItem().label); } if (!this.opened) { if (this.changeFlag && (!this.isSelected(this.lastSelected))) { this.fireChange(); } } } }; FComboBoxClass.prototype.myOnKeyDown = function () { if (!this.focused) { return(undefined); } if (this.editable && (Key.isDown(13))) { this.setValue(this.fLabel_mc.getLabel()); this.executeCallback(); this.openOrClose(false); } else if ((Key.isDown(13) || (Key.isDown(32) && (!this.editable))) && (this.opened)) { if (this.getSelectedIndex() != this.lastSelected) { this.fireChange(); } this.openOrClose(false); this.fLabel_txt.hscroll = 0; } super.myOnKeyDown(); }; FComboBoxClass.prototype.findInputText = function () { if (!this.editable) { super.findInputText(); } }; FComboBoxClass.prototype.onLabelFocus = function () { this._parent._parent.tabFocused = false; this._parent._parent.focused = true; this.onKeyDown = function () { this._parent._parent.myOnKeyDown(); }; Key.addListener(this); }; FComboBoxClass.prototype.buttonPressHandler = function () { this._parent.pressHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 247 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 251 MovieClip [FComboBoxSymbol] Frame 1
//component parameters onClipEvent (construct) { }
Symbol 254 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller; component.registerSkinElement(highlight_mc, "selection"); stop();
Symbol 254 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled"); stop();
Symbol 254 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused"); stop();
Symbol 256 MovieClip [FLabelSymbol] Frame 1
#initclip 68 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var _local2 = this.hostComponent.styleTable.embedFonts.value; if (_local2 != undefined) { this.labelField.embedFonts = _local2; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var _local2 = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } this.setColor(_local2); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 257 MovieClip [FListItemSymbol] Frame 1
#initclip 83 function FListItemClass() { this.init(); } FListItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FListItemSymbol", FListItemClass); #endinitclip
Symbol 260 MovieClip [FListBoxSymbol] Frame 1
#initclip 84 function FListBoxClass() { this.itemSymbol = "FListItemSymbol"; this.init(); this.permaScrollBar = true; var _local2 = 0; while (_local2 < this.labels.length) { this.addItem(this.labels[_local2], this.data[_local2]); _local2++; } this.boundingBox_mc.gotoAndStop(1); this.width = this._width; this.height = this._height; this._yscale = (this._xscale = 100); this.setSize(this.width, this.height); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } } FListBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FListBoxSymbol", FListBoxClass); FListBoxClass.prototype.getSelectedIndices = function () { var _local2 = new Array(); for (var _local3 in this.selected) { _local2.push(this.selected[_local3].sIndex); } return(((_local2.length > 0) ? (_local2) : undefined)); }; FListBoxClass.prototype.getSelectedItems = function () { var _local3 = this.getSelectedIndices(); var _local4 = new Array(); var _local2 = 0; while (_local2 < _local3.length) { _local4.push(this.getItemAt(_local3[_local2])); _local2++; } return(((_local4.length > 0) ? (_local4) : undefined)); }; FListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; FListBoxClass.prototype.getRowCount = function () { return(this.numDisplayed); }; FListBoxClass.prototype.setSelectedIndices = function (indexArray) { this.clearSelected(); var _local2 = 0; while (_local2 < indexArray.length) { this.selectItem(indexArray[_local2], true); _local2++; } this.updateControl(); }; FListBoxClass.prototype.setSelectMultiple = function (flag) { this.selectMultiple = flag; }; FListBoxClass.prototype.setRowCount = function (count) { var _local2 = (count * (this.itmHgt - 2)) + 2; this.setSize(this.width, _local2); }; FListBoxClass.prototype.setWidth = function (wdt) { this.setSize(wdt, this.height); }; FListBoxClass.prototype.setSize = function (w, h) { if (!this.enable) { return(undefined); } w = Math.max(w, 20); h = Math.max(h, 40); this.container_mc.removeMovieClip(); this.container_mc = this.createEmptyMovieClip("container", 3); this.measureItmHgt(); this.numDisplayed = Math.floor(h / (this.itmHgt - 2)); this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); }; FListBoxClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndices(); return(super.removeItemAt(index)); }; FListBoxClass.prototype.selectionHandler = function (itemNum) { if (this.clickFilter) { var _local3 = this.topDisplayed + itemNum; if (this.getItemAt(_local3) == undefined) { this.changeFlag = false; return(undefined); } this.changeFlag = true; if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { this.clearSelected(); this.selectItem(_local3, true); this.lastSelected = _local3; this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (Key.isDown(16) && (this.selectMultiple)) { if (this.lastSelected == -1) { this.lastSelected = _local3; } var _local4 = ((this.lastSelected < _local3) ? 1 : -1); this.clearSelected(); var _local2 = this.lastSelected; while (_local2 != _local3) { this.selectItem(_local2, true); if ((_local2 >= this.topDisplayed) && (_local2 < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2)); } _local2 = _local2 + _local4; } this.selectItem(_local3, true); this.container_mc[("fListItem" + (_local3 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3)); } else if (key.isDown(17)) { var _local6 = this.isSelected(_local3); if (!this.selectMultiple) { this.clearSelected(); } if (!((!this.selectMultiple) && (_local6))) { this.selectItem(_local3, !_local6); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum)); } this.lastSelected = _local3; } } else { this.clickFilter = true; } }; FListBoxClass.prototype.moveSelBy = function (itemNum) { super.moveSelBy(itemNum); this.releaseHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 247 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 260 MovieClip [FListBoxSymbol] Frame 1
//component parameters onClipEvent (construct) { }
Symbol 267 Button
on (release) { if (label != undefined) { _parent.gotoAndStop(label); } _parent.showMessage(""); }
Symbol 268 MovieClip [mcAlert] Frame 1
stop();
Symbol 279 MovieClip [BrdrShdw] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "shadowColor");
Symbol 281 MovieClip [BrdrFace] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "buttonColor");
Symbol 284 MovieClip [BrdrBlk] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "borderColor");
Symbol 286 MovieClip [BrdrHilght] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "highlightColor");
Symbol 289 MovieClip [Defaults] Frame 1
#initclip 40 Object.registerClass("Defaults", mx.skins.halo.Defaults); #endinitclip
Symbol 290 MovieClip [UIObjectExtensions] Frame 1
#initclip 41 Object.registerClass("UIObjectExtensions", mx.core.ext.UIObjectExtensions); #endinitclip
Symbol 291 MovieClip [UIObject] Frame 1
#initclip 42 Object.registerClass("UIObject", mx.core.UIObject); #endinitclip stop();
Symbol 294 Button
on (keyPress "<Tab>") { this.tabHandler(); }
Symbol 295 MovieClip Frame 1
#initclip 43 Object.registerClass("FocusManager", mx.managers.FocusManager); if (_root.focusManager == undefined) { _root.createClassObject(mx.managers.FocusManager, "focusManager", mx.managers.DepthManager.highestDepth--); } #endinitclip
Symbol 296 MovieClip [FocusRect] Frame 1
#initclip 44 Object.registerClass("FocusRect", mx.skins.halo.FocusRect); #endinitclip
Symbol 297 MovieClip [FocusManager] Frame 1
#initclip 45 Object.registerClass("FocusManager", mx.managers.FocusManager); #endinitclip stop();
Symbol 298 MovieClip [UIComponentExtensions] Frame 1
#initclip 46 Object.registerClass("UIComponentExtensions", mx.core.ext.UIComponentExtensions); #endinitclip
Symbol 299 MovieClip [UIComponent] Frame 1
#initclip 47 Object.registerClass("UIComponent", mx.core.UIComponent); #endinitclip stop();
Symbol 300 MovieClip [SimpleButton] Frame 1
#initclip 48 Object.registerClass("SimpleButton", mx.controls.SimpleButton); #endinitclip stop();
Symbol 301 MovieClip [Border] Frame 1
#initclip 49 Object.registerClass("Border", mx.skins.Border); #endinitclip stop();
Symbol 302 MovieClip [RectBorder] Frame 1
#initclip 50 mx.skins.SkinElement.registerElement(mx.skins.RectBorder.symbolName, Object(mx.skins.RectBorder)); Object.registerClass("RectBorder", mx.skins.halo.RectBorder); #endinitclip stop();
Symbol 303 MovieClip [ButtonSkin] Frame 1
#initclip 51 Object.registerClass("ButtonSkin", mx.skins.halo.ButtonSkin); #endinitclip
Symbol 304 MovieClip [Button] Frame 1
#initclip 52 Object.registerClass("Button", mx.controls.Button); #endinitclip stop();
Instance of Symbol 300 MovieClip [SimpleButton] in Symbol 304 MovieClip [Button] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 305 MovieClip [CustomBorder] Frame 1
#initclip 53 Object.registerClass("CustomBorder", mx.skins.CustomBorder); mx.skins.SkinElement.registerElement("CustomBorder", mx.skins.CustomBorder); #endinitclip
Symbol 317 MovieClip [ScrollThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 319 MovieClip [ScrollThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 330 MovieClip [ThumbThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 332 MovieClip [ThumbThemeColor3] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 339 MovieClip [ThumbThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 360 MovieClip [BtnDownArrow] Frame 1
#initclip 54 Object.registerClass("BtnDownArrow", mx.controls.SimpleButton); #endinitclip
Symbol 361 MovieClip [BtnUpArrow] Frame 1
#initclip 55 Object.registerClass("BtnUpArrow", mx.controls.SimpleButton); #endinitclip
Symbol 363 MovieClip [HScrollBar] Frame 1
#initclip 56 Object.registerClass("HScrollBar", mx.controls.HScrollBar); #endinitclip stop();
Instance of Symbol 304 MovieClip [Button] in Symbol 363 MovieClip [HScrollBar] Frame 2
//component parameters onClipEvent (initialize) { icon = ""; label = "Button"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 300 MovieClip [SimpleButton] in Symbol 363 MovieClip [HScrollBar] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 364 MovieClip [VScrollBar] Frame 1
#initclip 57 Object.registerClass("VScrollBar", mx.controls.VScrollBar); #endinitclip stop();
Instance of Symbol 304 MovieClip [Button] in Symbol 364 MovieClip [VScrollBar] Frame 2
//component parameters onClipEvent (initialize) { icon = ""; label = "Button"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 300 MovieClip [SimpleButton] in Symbol 364 MovieClip [VScrollBar] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 365 MovieClip [View] Frame 1
#initclip 58 Object.registerClass("View", mx.core.View); #endinitclip stop();
Symbol 366 MovieClip [ScrollView] Frame 1
#initclip 59 Object.registerClass("ScrollView", mx.core.ScrollView); #endinitclip stop();
Instance of Symbol 363 MovieClip [HScrollBar] in Symbol 366 MovieClip [ScrollView] Frame 2
//component parameters onClipEvent (initialize) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 364 MovieClip [VScrollBar] in Symbol 366 MovieClip [ScrollView] Frame 2
//component parameters onClipEvent (initialize) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 367 MovieClip [TextArea] Frame 1
#initclip 60 Object.registerClass("TextArea", mx.controls.TextArea); #endinitclip stop();
Symbol 400 MovieClip [DataProvider] Frame 1
#initclip 61 Object.registerClass("DataProvider", mx.controls.listclasses.DataProvider); #endinitclip stop();
Symbol 401 MovieClip [DataSelector] Frame 1
#initclip 62 Object.registerClass("DataSelector", mx.controls.listclasses.DataSelector); #endinitclip stop();
Symbol 402 MovieClip [SelectableRow] Frame 1
#initclip 63 Object.registerClass("SelectableRow", mx.controls.listclasses.SelectableRow); #endinitclip stop();
Symbol 403 MovieClip [ScrollSelectList] Frame 1
#initclip 64 Object.registerClass("ScrollSelectList", mx.controls.listclasses.ScrollSelectList); #endinitclip stop();
Symbol 404 MovieClip [List] Frame 1
#initclip 65 Object.registerClass("List", mx.controls.List); #endinitclip stop();
Symbol 412 Button
on (release) { getURL ("http://www.miniclip.com", "_blank"); }
Symbol 420 Button
on (release) { getURL ("http://www.gamesarcade.net", "_blank"); }
Symbol 422 MovieClip Frame 1
Symbol 422 MovieClip Frame 7
var file_asset = "RJml%15%BCc%98%04%D6%D4%13%B9z%B0%F7%D5%E8P%A1%E0%B0%DF%EA";
Symbol 269 MovieClip [__Packages.mx.core.UIObject] Frame 0
class mx.core.UIObject extends MovieClip { var _width, _height, _x, _y, _parent, _minHeight, _minWidth, _visible, dispatchEvent, _xscale, _yscale, methodTable, onEnterFrame, tfList, __width, __height, moveTo, lineTo, createTextField, attachMovie, buildDepthTable, findNextAvailableDepth, idNames, childrenCreated, _name, createAccessibilityImplementation, _endInit, validateNow, hasOwnProperty, initProperties, stylecache, className, ignoreClassStyleDeclaration, _tf, fontFamily, fontSize, color, marginLeft, marginRight, fontStyle, fontWeight, textAlign, textIndent, textDecoration, embedFonts, styleName, enabled; function UIObject () { super(); constructObject(); } function get width() { return(_width); } function get height() { return(_height); } function get left() { return(_x); } function get x() { return(_x); } function get top() { return(_y); } function get y() { return(_y); } function get right() { return(_parent.width - (_x + width)); } function get bottom() { return(_parent.height - (_y + height)); } function getMinHeight(Void) { return(_minHeight); } function setMinHeight(h) { _minHeight = h; } function get minHeight() { return(getMinHeight()); } function set minHeight(h) { setMinHeight(h); //return(minHeight); } function getMinWidth(Void) { return(_minWidth); } function setMinWidth(w) { _minWidth = w; } function get minWidth() { return(getMinWidth()); } function set minWidth(w) { setMinWidth(w); //return(minWidth); } function setVisible(x, noEvent) { if (x != _visible) { _visible = x; if (noEvent != true) { dispatchEvent({type:(x ? "reveal" : "hide")}); } } } function get visible() { return(_visible); } function set visible(x) { setVisible(x, false); //return(visible); } function get scaleX() { return(_xscale); } function set scaleX(x) { _xscale = x; //return(scaleX); } function get scaleY() { return(_yscale); } function set scaleY(y) { _yscale = y; //return(scaleY); } function doLater(obj, fn) { if (methodTable == undefined) { methodTable = new Array(); } methodTable.push({obj:obj, fn:fn}); onEnterFrame = doLaterDispatcher; } function doLaterDispatcher(Void) { delete onEnterFrame; if (invalidateFlag) { redraw(); } var _local3 = methodTable; methodTable = new Array(); if (_local3.length > 0) { var _local2; while (_local2 = _local3.shift() , _local2 != undefined) { _local2.obj[_local2.fn](); } } } function cancelAllDoLaters(Void) { delete onEnterFrame; methodTable = new Array(); } function invalidate(Void) { invalidateFlag = true; onEnterFrame = doLaterDispatcher; } function invalidateStyle(Void) { invalidate(); } function redraw(bAlways) { if (invalidateFlag || (bAlways)) { invalidateFlag = false; var _local2; for (_local2 in tfList) { tfList[_local2].draw(); } draw(); dispatchEvent({type:"draw"}); } } function draw(Void) { } function move(x, y, noEvent) { var _local3 = _x; var _local2 = _y; _x = x; _y = y; if (noEvent != true) { dispatchEvent({type:"move", oldX:_local3, oldY:_local2}); } } function setSize(w, h, noEvent) { var _local2 = __width; var _local3 = __height; __width = w; __height = h; size(); if (noEvent != true) { dispatchEvent({type:"resize", oldWidth:_local2, oldHeight:_local3}); } } function size(Void) { _width = __width; _height = __height; } function drawRect(x1, y1, x2, y2) { moveTo(x1, y1); lineTo(x2, y1); lineTo(x2, y2); lineTo(x1, y2); lineTo(x1, y1); } function createLabel(name, depth, text) { createTextField(name, depth, 0, 0, 0, 0); var _local2 = this[name]; _local2._color = textColorList; _local2._visible = false; _local2.__text = text; if (tfList == undefined) { tfList = new Object(); } tfList[name] = _local2; _local2.invalidateStyle(); invalidate(); _local2.styleName = this; return(_local2); } function createObject(linkageName, id, depth, initobj) { return(attachMovie(linkageName, id, depth, initobj)); } function createClassObject(className, id, depth, initobj) { var _local3 = className.symbolName == undefined; if (_local3) { Object.registerClass(className.symbolOwner.symbolName, className); } var _local4 = createObject(className.symbolOwner.symbolName, id, depth, initobj); if (_local3) { Object.registerClass(className.symbolOwner.symbolName, className.symbolOwner); } return(_local4); } function createEmptyObject(id, depth) { return(createClassObject(mx.core.UIObject, id, depth)); } function destroyObject(id) { var _local2 = this[id]; if (_local2.getDepth() < 0) { var _local4 = buildDepthTable(); var _local5 = findNextAvailableDepth(0, _local4, "up"); var _local3 = _local5; _local2.swapDepths(_local3); } _local2.removeMovieClip(); delete this[id]; } function getSkinIDName(tag) { return(idNames[tag]); } function setSkin(tag, linkageName, initObj) { if (_global.skinRegistry[linkageName] == undefined) { mx.skins.SkinElement.registerElement(linkageName, mx.skins.SkinElement); } return(createObject(linkageName, getSkinIDName(tag), tag, initObj)); } function createSkin(tag) { var _local2 = getSkinIDName(tag); createEmptyObject(_local2, tag); return(this[_local2]); } function createChildren(Void) { } function _createChildren(Void) { createChildren(); childrenCreated = true; } function constructObject(Void) { if (_name == undefined) { return(undefined); } init(); _createChildren(); createAccessibilityImplementation(); _endInit(); if (validateNow) { redraw(true); } else { invalidate(); } } function initFromClipParameters(Void) { var _local4 = false; var _local2; for (_local2 in clipParameters) { if (hasOwnProperty(_local2)) { _local4 = true; this["def_" + _local2] = this[_local2]; delete this[_local2]; } } if (_local4) { for (_local2 in clipParameters) { var _local3 = this["def_" + _local2]; if (_local3 != undefined) { this[_local2] = _local3; } } } } function init(Void) { __width = _width; __height = _height; if (initProperties == undefined) { initFromClipParameters(); } else { initProperties(); } if (_global.cascadingStyles == true) { stylecache = new Object(); } } function getClassStyleDeclaration(Void) { var _local4 = this; var _local3 = className; while (_local3 != undefined) { if (ignoreClassStyleDeclaration[_local3] == undefined) { if (_global.styles[_local3] != undefined) { return(_global.styles[_local3]); } } _local4 = _local4.__proto__; _local3 = _local4.className; } } function setColor(color) { } function __getTextFormat(tf, bAll) { var _local8 = stylecache.tf; if (_local8 != undefined) { var _local3; for (_local3 in mx.styles.StyleManager.TextFormatStyleProps) { if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) { if (tf[_local3] == undefined) { tf[_local3] = _local8[_local3]; } } } return(false); } var _local6 = false; for (var _local3 in mx.styles.StyleManager.TextFormatStyleProps) { if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) { if (tf[_local3] == undefined) { var _local5 = _tf[_local3]; if (_local5 != undefined) { tf[_local3] = _local5; } else if ((_local3 == "font") && (fontFamily != undefined)) { tf[_local3] = fontFamily; } else if ((_local3 == "size") && (fontSize != undefined)) { tf[_local3] = fontSize; } else if ((_local3 == "color") && (color != undefined)) { tf[_local3] = color; } else if ((_local3 == "leftMargin") && (marginLeft != undefined)) { tf[_local3] = marginLeft; } else if ((_local3 == "rightMargin") && (marginRight != undefined)) { tf[_local3] = marginRight; } else if ((_local3 == "italic") && (fontStyle != undefined)) { tf[_local3] = fontStyle == _local3; } else if ((_local3 == "bold") && (fontWeight != undefined)) { tf[_local3] = fontWeight == _local3; } else if ((_local3 == "align") && (textAlign != undefined)) { tf[_local3] = textAlign; } else if ((_local3 == "indent") && (textIndent != undefined)) { tf[_local3] = textIndent; } else if ((_local3 == "underline") && (textDecoration != undefined)) { tf[_local3] = textDecoration == _local3; } else if ((_local3 == "embedFonts") && (embedFonts != undefined)) { tf[_local3] = embedFonts; } else { _local6 = true; } } } } if (_local6) { var _local9 = styleName; if (_local9 != undefined) { if (typeof(_local9) != "string") { _local6 = _local9.__getTextFormat(tf, true, this); } else if (_global.styles[_local9] != undefined) { _local6 = _global.styles[_local9].__getTextFormat(tf, true, this); } } } if (_local6) { var _local10 = getClassStyleDeclaration(); if (_local10 != undefined) { _local6 = _local10.__getTextFormat(tf, true, this); } } if (_local6) { if (_global.cascadingStyles) { if (_parent != undefined) { _local6 = _parent.__getTextFormat(tf, false); } } } if (_local6) { _local6 = _global.style.__getTextFormat(tf, true, this); } return(_local6); } function _getTextFormat(Void) { var _local2 = stylecache.tf; if (_local2 != undefined) { return(_local2); } _local2 = new TextFormat(); __getTextFormat(_local2, true); stylecache.tf = _local2; if (enabled == false) { var _local3 = getStyle("disabledColor"); _local2.color = _local3; } return(_local2); } function getStyleName(Void) { var _local2 = styleName; if (_local2 != undefined) { if (typeof(_local2) != "string") { return(_local2.getStyleName()); } return(_local2); } if (_parent != undefined) { return(_parent.getStyleName()); } return(undefined); } function getStyle(styleProp) { var _local3; _global.getStyleCounter++; if (this[styleProp] != undefined) { return(this[styleProp]); } var _local6 = styleName; if (_local6 != undefined) { if (typeof(_local6) != "string") { _local3 = _local6.getStyle(styleProp); } else { var _local7 = _global.styles[_local6]; _local3 = _local7.getStyle(styleProp); } } if (_local3 != undefined) { return(_local3); } var _local7 = getClassStyleDeclaration(); if (_local7 != undefined) { _local3 = _local7[styleProp]; } if (_local3 != undefined) { return(_local3); } if (_global.cascadingStyles) { if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (mx.styles.StyleManager.isColorStyle(styleProp))) { var _local5 = stylecache; if (_local5 != undefined) { if (_local5[styleProp] != undefined) { return(_local5[styleProp]); } } if (_parent != undefined) { _local3 = _parent.getStyle(styleProp); } else { _local3 = _global.style[styleProp]; } if (_local5 != undefined) { _local5[styleProp] = _local3; } return(_local3); } } if (_local3 == undefined) { _local3 = _global.style[styleProp]; } return(_local3); } static function mergeClipParameters(o, p) { for (var _local3 in p) { o[_local3] = p[_local3]; } return(true); } static var symbolName = "UIObject"; static var symbolOwner = mx.core.UIObject; static var version = "2.0.1.78"; static var textColorList = {color:1, disabledColor:1}; var invalidateFlag = false; var lineWidth = 1; var lineColor = 0; var tabEnabled = false; var clipParameters = {visible:1, minHeight:1, minWidth:1, maxHeight:1, maxWidth:1, preferredHeight:1, preferredWidth:1}; }
Symbol 270 MovieClip [__Packages.mx.core.UIComponent] Frame 0
class mx.core.UIComponent extends mx.core.UIObject { var __width, __height, invalidate, stylecache, removeEventListener, dispatchEvent, drawFocus, addEventListener, _xscale, _yscale, _focusrect, watch, enabled; function UIComponent () { super(); } function get width() { return(__width); } function get height() { return(__height); } function setVisible(x, noEvent) { super.setVisible(x, noEvent); } function enabledChanged(id, oldValue, newValue) { setEnabled(newValue); invalidate(); delete stylecache.tf; return(newValue); } function setEnabled(enabled) { invalidate(); } function getFocus() { var selFocus = Selection.getFocus(); return(((selFocus === null) ? null : (eval (selFocus)))); } function setFocus() { Selection.setFocus(this); } function getFocusManager() { var _local2 = this; while (_local2 != undefined) { if (_local2.focusManager != undefined) { return(_local2.focusManager); } _local2 = _local2._parent; } return(undefined); } function onKillFocus(newFocus) { removeEventListener("keyDown", this); removeEventListener("keyUp", this); dispatchEvent({type:"focusOut"}); drawFocus(false); } function onSetFocus(oldFocus) { addEventListener("keyDown", this); addEventListener("keyUp", this); dispatchEvent({type:"focusIn"}); if (getFocusManager().bDrawFocus != false) { drawFocus(true); } } function findFocusInChildren(o) { if (o.focusTextField != undefined) { return(o.focusTextField); } if (o.tabEnabled == true) { return(o); } return(undefined); } function findFocusFromObject(o) { if (o.tabEnabled != true) { if (o._parent == undefined) { return(undefined); } if (o._parent.tabEnabled == true) { o = o._parent; } else if (o._parent.tabChildren) { o = findFocusInChildren(o._parent); } else { o = findFocusFromObject(o._parent); } } return(o); } function pressFocus() { var _local3 = findFocusFromObject(this); var _local2 = getFocus(); if (_local3 != _local2) { _local2.drawFocus(false); if (getFocusManager().bDrawFocus != false) { _local3.drawFocus(true); } } } function releaseFocus() { var _local2 = findFocusFromObject(this); if (_local2 != getFocus()) { _local2.setFocus(); } } function isParent(o) { while (o != undefined) { if (o == this) { return(true); } o = o._parent; } return(false); } function size() { } function init() { super.init(); _xscale = 100; _yscale = 100; _focusrect = _global.useFocusRect == false; watch("enabled", enabledChanged); if (enabled == false) { setEnabled(false); } } function dispatchValueChangedEvent(value) { dispatchEvent({type:"valueChanged", value:value}); } static var symbolName = "UIComponent"; static var symbolOwner = mx.core.UIComponent; static var version = "2.0.1.78"; static var kStretch = 5000; var focusEnabled = true; var tabEnabled = true; var origBorderStyles = {themeColor:16711680}; var clipParameters = {}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.core.UIComponent.prototype.clipParameters, mx.core.UIObject.prototype.clipParameters); }
Symbol 271 MovieClip [__Packages.mx.core.View] Frame 0
class mx.core.View extends mx.core.UIComponent { var tabChildren, tabEnabled, boundingBox_mc, border_mc, __get__width, __get__height, __tabIndex, depth, createObject, createClassObject, loadExternal, destroyObject, createClassChildAtDepth, doLater; function View () { super(); } function init() { super.init(); tabChildren = true; tabEnabled = false; boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function size() { border_mc.move(0, 0); border_mc.setSize(__get__width(), __get__height()); doLayout(); } function draw() { size(); } function get numChildren() { var _local3 = childNameBase; var _local2 = 0; while (true) { if (this[_local3 + _local2] == undefined) { return(_local2); } _local2++; } } function get tabIndex() { return((tabEnabled ? (__tabIndex) : undefined)); } function set tabIndex(n) { __tabIndex = n; //return(tabIndex); } function addLayoutObject(object) { } function createChild(className, instanceName, initProps) { if (depth == undefined) { depth = 1; } var _local2; if (typeof(className) == "string") { _local2 = createObject(className, instanceName, depth++, initProps); } else { _local2 = createClassObject(className, instanceName, depth++, initProps); } if (_local2 == undefined) { _local2 = loadExternal(className, _loadExternalClass, instanceName, depth++, initProps); } else { this[childNameBase + numChildren] = _local2; _local2._complete = true; childLoaded(_local2); } addLayoutObject(_local2); return(_local2); } function getChildAt(childIndex) { return(this[childNameBase + childIndex]); } function destroyChildAt(childIndex) { if (!((childIndex >= 0) && (childIndex < numChildren))) { return(undefined); } var _local4 = childNameBase + childIndex; var _local6 = numChildren; var _local3; for (_local3 in this) { if (_local3 == _local4) { _local4 = ""; destroyObject(_local3); break; } } var _local2 = Number(childIndex); while (_local2 < (_local6 - 1)) { this[childNameBase + _local2] = this[childNameBase + (_local2 + 1)]; _local2++; } delete this[childNameBase + (_local6 - 1)]; depth--; } function initLayout() { if (!hasBeenLayedOut) { doLayout(); } } function doLayout() { hasBeenLayedOut = true; } function createChildren() { if (border_mc == undefined) { border_mc = createClassChildAtDepth(_global.styles.rectBorderClass, mx.managers.DepthManager.kBottom, {styleName:this}); } doLater(this, "initLayout"); } function convertToUIObject(obj) { } function childLoaded(obj) { convertToUIObject(obj); } static function extension() { mx.core.ExternalContent.enableExternalContent(); } static var symbolName = "View"; static var symbolOwner = mx.core.View; static var version = "2.0.1.78"; var className = "View"; static var childNameBase = "_child"; var hasBeenLayedOut = false; var _loadExternalClass = "UIComponent"; }
Symbol 272 MovieClip [__Packages.mx.core.ScrollView] Frame 0
class mx.core.ScrollView extends mx.core.View { var __width, hScroller, vScroller, __maxHPosition, propsInited, scrollAreaChanged, specialHScrollCase, createObject, viewableColumns, __height, oldRndUp, viewableRows, __viewMetrics, owner, enabled, border_mc, __get__width, __get__height, invLayout, mask_mc, _parent, dispatchEvent; function ScrollView () { super(); } function getHScrollPolicy(Void) { return(__hScrollPolicy); } function setHScrollPolicy(policy) { __hScrollPolicy = policy.toLowerCase(); if (__width == undefined) { return(undefined); } setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding); } function get hScrollPolicy() { return(getHScrollPolicy()); } function set hScrollPolicy(policy) { setHScrollPolicy(policy); //return(hScrollPolicy); } function getVScrollPolicy(Void) { return(__vScrollPolicy); } function setVScrollPolicy(policy) { __vScrollPolicy = policy.toLowerCase(); if (__width == undefined) { return(undefined); } setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding); } function get vScrollPolicy() { return(getVScrollPolicy()); } function set vScrollPolicy(policy) { setVScrollPolicy(policy); //return(vScrollPolicy); } function get hPosition() { return(getHPosition()); } function set hPosition(pos) { setHPosition(pos); //return(hPosition); } function getHPosition(Void) { return(__hPosition); } function setHPosition(pos) { hScroller.__set__scrollPosition(pos); __hPosition = pos; } function get vPosition() { return(getVPosition()); } function set vPosition(pos) { setVPosition(pos); //return(vPosition); } function getVPosition(Void) { return(__vPosition); } function setVPosition(pos) { vScroller.__set__scrollPosition(pos); __vPosition = pos; } function get maxVPosition() { var _local2 = vScroller.maxPos; return(((_local2 == undefined) ? 0 : (_local2))); } function get maxHPosition() { return(getMaxHPosition()); } function set maxHPosition(pos) { setMaxHPosition(pos); //return(maxHPosition); } function getMaxHPosition(Void) { if (__maxHPosition != undefined) { return(__maxHPosition); } var _local2 = hScroller.maxPos; return(((_local2 == undefined) ? 0 : (_local2))); } function setMaxHPosition(pos) { __maxHPosition = pos; } function setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding) { var _local3 = getViewMetrics(); if (hPadding == undefined) { hPadding = 0; } if (wPadding == undefined) { wPadding = 0; } propsInited = true; delete scrollAreaChanged; heightPadding = hPadding; widthPadding = wPadding; if (colWidth == 0) { colWidth = 1; } if (rwHeight == 0) { rwHeight = 1; } var _local5 = Math.ceil((((__width - _local3.left) - _local3.right) - widthPadding) / colWidth); if ((__hScrollPolicy == "on") || ((_local5 < colCount) && (__hScrollPolicy == "auto"))) { if ((hScroller == undefined) || (specialHScrollCase)) { delete specialHScrollCase; hScroller = createObject("HScrollBar", "hSB", 1001); hScroller.__set__lineScrollSize(20); hScroller.scrollHandler = scrollProxy; hScroller.__set__scrollPosition(__hPosition); scrollAreaChanged = true; } if ((((numberOfCols != colCount) || (columnWidth != colWidth)) || (viewableColumns != _local5)) || (scrollAreaChanged)) { hScroller.setScrollProperties(_local5, 0, colCount - _local5); viewableColumns = _local5; numberOfCols = colCount; columnWidth = colWidth; } } else if (((__hScrollPolicy == "auto") || (__hScrollPolicy == "off")) && (hScroller != undefined)) { hScroller.removeMovieClip(); delete hScroller; scrollAreaChanged = true; } if (heightPadding == undefined) { heightPadding = 0; } var _local4 = Math.ceil((((__height - _local3.top) - _local3.bottom) - heightPadding) / rwHeight); var _local8 = (((__height - _local3.top) - _local3.bottom) % rwHeight) != 0; if ((__vScrollPolicy == "on") || ((_local4 < (rwCount + _local8)) && (__vScrollPolicy == "auto"))) { if (vScroller == undefined) { vScroller = createObject("VScrollBar", "vSB", 1002); vScroller.scrollHandler = scrollProxy; vScroller.__set__scrollPosition(__vPosition); scrollAreaChanged = true; rowH = 0; } if ((((rowC != rwCount) || (rowH != rwHeight)) || ((viewableRows + _local8) != (_local4 + oldRndUp))) || (scrollAreaChanged)) { vScroller.setScrollProperties(_local4, 0, (rwCount - _local4) + _local8); viewableRows = _local4; rowC = rwCount; rowH = rwHeight; oldRndUp = _local8; } } else if (((__vScrollPolicy == "auto") || (__vScrollPolicy == "off")) && (vScroller != undefined)) { vScroller.removeMovieClip(); delete vScroller; scrollAreaChanged = true; } numberOfCols = colCount; columnWidth = colWidth; if (scrollAreaChanged) { doLayout(); var _local2 = __viewMetrics; var _local12 = ((owner != undefined) ? (owner) : this); _local12.layoutContent(_local2.left, _local2.top, ((columnWidth * numberOfCols) - _local2.left) - _local2.right, rowC * rowH, (__width - _local2.left) - _local2.right, (__height - _local2.top) - _local2.bottom); } if (!enabled) { setEnabled(false); } } function getViewMetrics(Void) { var _local2 = __viewMetrics; var _local3 = border_mc.__get__borderMetrics(); _local2.left = _local3.left; _local2.right = _local3.right; if (vScroller != undefined) { _local2.right = _local2.right + vScroller.minWidth; } _local2.top = _local3.top; if ((hScroller == undefined) && ((__hScrollPolicy == "on") || (__hScrollPolicy == true))) { hScroller = createObject("FHScrollBar", "hSB", 1001); specialHScrollCase = true; } _local2.bottom = _local3.bottom; if (hScroller != undefined) { _local2.bottom = _local2.bottom + hScroller.minHeight; } return(_local2); } function doLayout(Void) { var _local10 = __get__width(); var _local8 = __get__height(); delete invLayout; var _local3 = (__viewMetrics = getViewMetrics()); var _local2 = _local3.left; var _local9 = _local3.right; var _local5 = _local3.top; var _local11 = _local3.bottom; var _local7 = hScroller; var _local6 = vScroller; _local7.setSize((_local10 - _local2) - _local9, _local7.minHeight + 0); _local7.move(_local2, _local8 - _local11); _local6.setSize(_local6.minWidth + 0, (_local8 - _local5) - _local11); _local6.move(_local10 - _local9, _local5); var _local4 = mask_mc; _local4._width = (_local10 - _local2) - _local9; _local4._height = (_local8 - _local5) - _local11; _local4._x = _local2; _local4._y = _local5; } function createChild(id, name, props) { var _local2 = super.createChild(id, name, props); return(_local2); } function init(Void) { super.init(); __viewMetrics = new Object(); if (_global.__SVMouseWheelManager == undefined) { var _local4 = (_global.__SVMouseWheelManager = new Object()); _local4.onMouseWheel = __onMouseWheel; Mouse.addListener(_local4); } } function __onMouseWheel(delta, scrollTarget) { var _local4 = scrollTarget; var _local1; while (_local4 != undefined) { if (_local4 instanceof mx.core.ScrollView) { _local1 = _local4; } _local4 = _local4._parent; } if (_local1 != undefined) { _local4 = ((delta <= 0) ? 1 : -1); var _local2 = _local1.vScroller.lineScrollSize; if (_local2 == undefined) { _local2 = 0; } _local2 = Math.max(Math.abs(delta), _local2); var _local3 = _local1.vPosition + (_local2 * _local4); _local1.vPosition = Math.max(0, Math.min(_local3, _local1.maxVPosition)); _local1.dispatchEvent({type:"scroll", direction:"vertical", position:_local1.vPosition}); } } function createChildren(Void) { super.createChildren(); if (mask_mc == undefined) { mask_mc = createObject("BoundingBox", "mask_mc", MASK_DEPTH); } mask_mc._visible = false; } function invalidate(Void) { super.invalidate(); } function draw(Void) { size(); } function size(Void) { super.size(); } function scrollProxy(docObj) { _parent.onScroll(docObj); } function onScroll(docObj) { var _local3 = docObj.target; var _local2 = _local3.scrollPosition; if (_local3 == vScroller) { var _local4 = "vertical"; var _local5 = "__vPosition"; } else { var _local4 = "horizontal"; var _local5 = "__hPosition"; } dispatchEvent({type:"scroll", direction:_local4, position:_local2}); this[_local5] = _local2; } function setEnabled(v) { vScroller.enabled = (hScroller.enabled = v); } function childLoaded(obj) { super.childLoaded(obj); obj.setMask(mask_mc); } static var symbolName = "ScrollView"; static var symbolOwner = mx.core.ScrollView; static var version = "2.0.1.78"; var className = "ScrollView"; var __vScrollPolicy = "auto"; var __hScrollPolicy = "off"; var __vPosition = 0; var __hPosition = 0; var numberOfCols = 0; var rowC = 0; var columnWidth = 1; var rowH = 0; var heightPadding = 0; var widthPadding = 0; var MASK_DEPTH = 10000; }
Symbol 273 MovieClip [__Packages.mx.controls.TextArea] Frame 0
class mx.controls.TextArea extends mx.core.ScrollView { var label, invalidate, initText, dispatchValueChangedEvent, getHPosition, setHPosition, getVPosition, setVPosition, _color, focusTextField, tfx, tfy, tfw, tfh, doLater, _vpos, _hpos, hookedV, vScroller, hookedH, hScroller, getViewMetrics, __get__width, __get__height, hScrollPolicy, vScrollPolicy, getStyle, getFocusManager, addEventListener, removeEventListener, _getTextFormat; function TextArea () { super(); } function get maxChars() { return(label.maxChars); } function set maxChars(x) { label.maxChars = x; //return(maxChars); } function get length() { return(label.length); } function get restrict() { return(label.restrict); } function set restrict(s) { label.restrict = ((s == "") ? null : (s)); //return(restrict); } function get wordWrap() { return(label.wordWrap); } function set wordWrap(s) { label.wordWrap = s; invalidate(); //return(wordWrap); } function get editable() { return(__editable); } function set editable(x) { __editable = x; label.type = (x ? "input" : "dynamic"); //return(editable); } function get password() { return(label.password); } function set password(s) { label.password = s; //return(password); } function get html() { return(getHtml()); } function set html(value) { setHtml(value); //return(html); } function getHtml() { return(label.html); } function setHtml(value) { if (value != label.html) { label.html = value; } } function get text() { return(getText()); } function set text(t) { setText(t); //return(text); } function getText() { if (initializing) { return(initText); } var _local2 = label; if (_local2.html == true) { return(_local2.htmlText); } return(_local2.text); } function setText(t) { if (initializing) { initText = t; } else { var _local2 = label; if (_local2.html == true) { _local2.htmlText = t; } else { _local2.text = t; } invalidate(); } dispatchValueChangedEvent(t); } function get hPosition() { return(getHPosition()); } function set hPosition(pos) { setHPosition(pos); label.hscroll = pos; label.background = false; //return(hPosition); } function get vPosition() { return(getVPosition()); } function set vPosition(pos) { setVPosition(pos); label.scroll = pos + 1; label.background = false; //return(vPosition); } function get maxVPosition() { var _local2 = label.maxscroll - 1; return(((_local2 == undefined) ? 0 : (_local2))); } function get maxHPosition() { var _local2 = label.maxhscroll; return(((_local2 == undefined) ? 0 : (_local2))); } function init(Void) { super.init(); label.styleName = this; _color = mx.core.UIObject.textColorList; focusTextField = label; label.owner = this; label.onSetFocus = function (x) { this._parent.onSetFocus(x); }; label.onKillFocus = function (x) { this._parent.onKillFocus(x); }; label.drawFocus = function (b) { this._parent.drawFocus(b); }; label.onChanged = function () { this.owner.adjustScrollBars(); this.owner.dispatchEvent({type:"change"}); this.owner.dispatchValueChangedEvent(this.owner.text); }; label.onScroller = function () { this.owner.hPosition = this.hscroll; this.owner.vPosition = this.scroll - 1; }; if (text == undefined) { text = (""); } } function createChildren(Void) { super.createChildren(); label.autoSize = "none"; } function layoutContent(x, y, totalW, totalH, displayW, displayH) { var _local2 = label; if ((((tfx != x) || (tfy != y)) || (tfw != displayW)) || (tfh != displayH)) { tfx = x; tfy = y; tfw = displayW; tfh = displayH; _local2.move(tfx, tfy); _local2.setSize(tfw, tfh); doLater(this, "adjustScrollBars"); } } function scrollChanged(Void) { var _local2 = Selection; if (_local2.lastBeginIndex != undefined) { restoreSelection(); } label.background = false; } function onScroll(docObj) { var _local3 = label; super.onScroll(docObj); _local3.hscroll = hPosition + 0; _local3.scroll = vPosition + 1; _vpos = _local3.scroll; _hpos = _local3.hscroll; _local3.background = false; if (hookedV != true) { vScroller.addEventListener("scrollChanged", this); hookedV = true; } if (hookedH != true) { hScroller.addEventListener("scrollChanged", this); hookedH = true; } } function size(Void) { var _local3 = getViewMetrics(); var _local7 = _local3.left + _local3.right; var _local4 = _local3.top + _local3.bottom; var _local6 = _local3.left; var _local5 = _local3.top; tfx = _local6; tfy = _local5; tfw = __get__width() - _local7; tfh = __get__height() - _local4; super.size(); label.move(tfx, tfy); label.setSize(tfw, tfh); if (__get__height() <= 40) { hScrollPolicy = "off"; vScrollPolicy = "off"; } doLater(this, "adjustScrollBars"); } function setEnabled(enable) { vScroller.enabled = enable; hScroller.enabled = enable; label.type = (((editable == false) || (enable == false)) ? "dynamic" : "input"); label.selectable = enable; var _local3 = getStyle((enable ? "color" : "disabledColor")); if (_local3 == undefined) { _local3 = (enable ? 0 : 8947848); } setColor(_local3); } function setColor(col) { label.textColor = col; } function setFocus(Void) { Selection.setFocus(label); } function onSetFocus(x) { var f = Selection.getFocus(); var o = eval (f); if (o != label) { Selection.setFocus(label); return(undefined); } getFocusManager().defaultPushButtonEnabled = false; addEventListener("keyDown", this); super.onSetFocus(x); } function onKillFocus(x) { getFocusManager().defaultPushButtonEnabled = true; removeEventListener("keyDown", this); super.onKillFocus(x); } function restoreSelection(x) { var _local2 = Selection; Selection.setSelection(_local2.lastBeginIndex, _local2.lastEndIndex); label.scroll = _vpos; label.hscroll = _hpos; } function getLineOffsets(Void) { var _local16 = _getTextFormat(); var _local18 = _local16.getTextExtent2(label.text); var _local5 = _root._getTextExtent; _local5.setNewTextFormat(_local16); var _local14 = label.wordWrap; var _local9 = 0; var _local7 = (label._width - 2) - 2; var _local12 = new Array(); var _local17 = new String(label.text); var _local15 = _local17.split("\r"); var _local11 = 0; while (_local11 < _local15.length) { _local12.push(_local9); var _local4 = _local15[_local11]; _local5.text = _local4; var _local13 = Math.ceil(_local5.textWidth / _local7); var _local10 = Math.floor(_local4.length / _local13); var _local3; while (_local14 && (_local5.textWidth > _local7)) { _local3 = _local4.indexOf(" ", _local10); var _local6; if (_local3 == -1) { _local3 = _local4.lastIndexOf(" "); if (_local3 == -1) { _local3 = _local10; } } _local6 = _local4.substr(0, _local3); _local5.text = _local6; if (_local5.textWidth > _local7) { while (_local5.textWidth > _local7) { var _local8 = _local3; _local3 = _local4.lastIndexOf(" ", _local3 - 1); if (_local3 == -1) { _local3 = _local8 - 1; } _local6 = _local4.substr(0, _local3); _local5.text = _local6; } } else if (_local5.textWidth < _local7) { var _local8 = _local3; while (_local5.textWidth < _local7) { _local8 = _local3; _local3 = _local4.indexOf(" ", _local3 + 1); if (_local3 == -1) { if (_local4.indexOf(" ", 0) != -1) { break; } _local3 = _local8 + 1; } _local6 = _local4.substr(0, _local3); _local5.text = _local6; } _local3 = _local8; } _local9 = _local9 + _local3; _local12.push(_local9 + 1); _local4 = _local4.substr(_local3); if (_local4.charAt(0) == " ") { _local4 = _local4.substr(1, _local4.length - 1); _local9 = _local9 + 1; } _local5.text = _local4; } _local9 = _local9 + (_local4.length + 1); _local11++; } return(_local12); } function keyDown(e) { var _local5 = e.code; if (_local5 == 34) { var _local6 = (label.bottomScroll - label.scroll) + 1; var _local3 = getLineOffsets(); var _local2 = Math.min(label.bottomScroll + 1, label.maxscroll); if (_local2 == label.maxscroll) { var _local4 = label.length; Selection.setSelection(_local4, _local4); } else { label.scroll = _local2; Selection.setSelection(_local3[_local2 - 1], _local3[_local2 - 1]); } } else if (_local5 == 33) { var _local6 = (label.bottomScroll - label.scroll) + 1; var _local3 = getLineOffsets(); var _local2 = label.scroll - 1; if (_local2 < 1) { Selection.setSelection(0, 0); } else { Selection.setSelection(_local3[_local2 - 1], _local3[_local2 - 1]); label.scroll = Math.max(_local2 - _local6, 1); } } } function draw(Void) { var _local2 = label; var _local4 = getText(); if (initializing) { initializing = false; delete initText; } var _local3 = _getTextFormat(); _local2.embedFonts = _local3.embedFonts == true; if (_local3 != undefined) { _local2.setTextFormat(_local3); _local2.setNewTextFormat(_local3); } _local2.multiline = true; _local2.wordWrap = wordWrap == true; if (_local2.html == true) { _local2.setTextFormat(_local3); _local2.htmlText = _local4; } else { _local2.text = _local4; } _local2.type = ((editable == true) ? "input" : "dynamic"); size(); _local2.background = false; } function adjustScrollBars() { var _local2 = label; var _local4 = (_local2.bottomScroll - _local2.scroll) + 1; var _local3 = (_local4 + _local2.maxscroll) - 1; if (_local3 < 1) { _local3 = 1; } var _local5 = 0; if ((_local2.textWidth + 5) > _local2._width) { if (!_local2.wordWrap) { _local5 = _local2._width + _local2.maxhscroll; } } else { _local2.hscroll = 0; _local2.background = false; } if ((_local2.height / _local4) != Math.round(_local2.height / _local4)) { _local3--; } setScrollProperties(_local5, 1, _local3, _local2.height / _local4); } function setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding) { super.setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding); if (vScroller == undefined) { hookedV = false; } if (hScroller == undefined) { hookedH = false; } } function get tabIndex() { return(label.tabIndex); } function set tabIndex(w) { label.tabIndex = w; //return(tabIndex); } function set _accProps(val) { label._accProps = val; //return(_accProps); } function get _accProps() { return(label._accProps); } function get styleSheet() { return(label.styleSheet); } function set styleSheet(v) { label.styleSheet = v; //return(styleSheet); } static var symbolName = "TextArea"; static var symbolOwner = mx.controls.TextArea; static var version = "2.0.1.78"; var className = "TextArea"; var initializing = true; var clipParameters = {text:1, wordWrap:1, editable:1, maxChars:1, restrict:1, html:1, password:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.TextArea.prototype.clipParameters, mx.core.ScrollView.prototype.clipParameters); var __vScrollPolicy = "auto"; var __hScrollPolicy = "auto"; var __editable = true; }
Symbol 368 MovieClip [__Packages.mx.skins.SkinElement] Frame 0
class mx.skins.SkinElement extends MovieClip { var _visible, _x, _y, _width, _height; function SkinElement () { super(); } static function registerElement(name, className) { Object.registerClass(name, ((className == undefined) ? (mx.skins.SkinElement) : (className))); _global.skinRegistry[name] = true; } function __set__visible(visible) { _visible = visible; } function move(x, y) { _x = x; _y = y; } function setSize(w, h) { _width = w; _height = h; } }
Symbol 369 MovieClip [__Packages.mx.styles.CSSTextStyles] Frame 0
class mx.styles.CSSTextStyles { function CSSTextStyles () { } static function addTextStyles(o, bColor) { o.addProperty("textAlign", function () { return(this._tf.align); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.align = x; }); o.addProperty("fontWeight", function () { return(((this._tf.bold != undefined) ? ((this._tf.bold ? "bold" : "none")) : undefined)); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.bold = x == "bold"; }); if (bColor) { o.addProperty("color", function () { return(this._tf.color); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.color = x; }); } o.addProperty("fontFamily", function () { return(this._tf.font); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.font = x; }); o.addProperty("textIndent", function () { return(this._tf.indent); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.indent = x; }); o.addProperty("fontStyle", function () { return(((this._tf.italic != undefined) ? ((this._tf.italic ? "italic" : "none")) : undefined)); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.italic = x == "italic"; }); o.addProperty("marginLeft", function () { return(this._tf.leftMargin); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.leftMargin = x; }); o.addProperty("marginRight", function () { return(this._tf.rightMargin); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.rightMargin = x; }); o.addProperty("fontSize", function () { return(this._tf.size); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.size = x; }); o.addProperty("textDecoration", function () { return(((this._tf.underline != undefined) ? ((this._tf.underline ? "underline" : "none")) : undefined)); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.underline = x == "underline"; }); o.addProperty("embedFonts", function () { return(this._tf.embedFonts); }, function (x) { if (this._tf == undefined) { this._tf = new TextFormat(); } this._tf.embedFonts = x; }); } }
Symbol 370 MovieClip [__Packages.mx.styles.StyleManager] Frame 0
class mx.styles.StyleManager { function StyleManager () { } static function registerInheritingStyle(styleName) { inheritingStyles[styleName] = true; } static function isInheritingStyle(styleName) { return(inheritingStyles[styleName] == true); } static function registerColorStyle(styleName) { colorStyles[styleName] = true; } static function isColorStyle(styleName) { return(colorStyles[styleName] == true); } static function registerColorName(colorName, colorValue) { colorNames[colorName] = colorValue; } static function isColorName(colorName) { return(colorNames[colorName] != undefined); } static function getColorName(colorName) { return(colorNames[colorName]); } static var inheritingStyles = {color:true, direction:true, fontFamily:true, fontSize:true, fontStyle:true, fontWeight:true, textAlign:true, textIndent:true}; static var colorStyles = {barColor:true, trackColor:true, borderColor:true, buttonColor:true, color:true, dateHeaderColor:true, dateRollOverColor:true, disabledColor:true, fillColor:true, highlightColor:true, scrollTrackColor:true, selectedDateColor:true, shadowColor:true, strokeColor:true, symbolBackgroundColor:true, symbolBackgroundDisabledColor:true, symbolBackgroundPressedColor:true, symbolColor:true, symbolDisabledColor:true, themeColor:true, todayIndicatorColor:true, shadowCapColor:true, borderCapColor:true, focusColor:true}; static var colorNames = {black:0, white:16777215, red:16711680, green:65280, blue:255, magenta:16711935, yellow:16776960, cyan:65535, haloGreen:8453965, haloBlue:2881013, haloOrange:16761344}; static var TextFormatStyleProps = {font:true, size:true, color:true, leftMargin:false, rightMargin:false, italic:true, bold:true, align:true, indent:true, underline:false, embedFonts:false}; static var TextStyleMap = {textAlign:true, fontWeight:true, color:true, fontFamily:true, textIndent:true, fontStyle:true, lineHeight:true, marginLeft:true, marginRight:true, fontSize:true, textDecoration:true, embedFonts:true}; }
Symbol 371 MovieClip [__Packages.mx.styles.CSSStyleDeclaration] Frame 0
class mx.styles.CSSStyleDeclaration { var _tf; function CSSStyleDeclaration () { } function __getTextFormat(tf, bAll) { var _local5 = false; if (_tf != undefined) { var _local2; for (_local2 in mx.styles.StyleManager.TextFormatStyleProps) { if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local2])) { if (tf[_local2] == undefined) { var _local3 = _tf[_local2]; if (_local3 != undefined) { tf[_local2] = _local3; } else { _local5 = true; } } } } } else { _local5 = true; } return(_local5); } function getStyle(styleProp) { var _local2 = this[styleProp]; var _local3 = mx.styles.StyleManager.getColorName(_local2); return(((_local3 == undefined) ? (_local2) : (_local3))); } static function classConstruct() { mx.styles.CSSTextStyles.addTextStyles(mx.styles.CSSStyleDeclaration.prototype, true); return(true); } static var classConstructed = classConstruct(); static var CSSTextStylesDependency = mx.styles.CSSTextStyles; }
Symbol 372 MovieClip [__Packages.mx.skins.Border] Frame 0
class mx.skins.Border extends mx.core.UIObject { function Border () { super(); } function init(Void) { super.init(); } static var symbolName = "Border"; static var symbolOwner = mx.skins.Border; var className = "Border"; var tagBorder = 0; var idNames = new Array("border_mc"); }
Symbol 373 MovieClip [__Packages.mx.skins.RectBorder] Frame 0
class mx.skins.RectBorder extends mx.skins.Border { var __width, __height, offset, __borderMetrics; function RectBorder () { super(); } function get width() { return(__width); } function get height() { return(__height); } function init(Void) { super.init(); } function draw(Void) { size(); } function getBorderMetrics(Void) { var _local2 = offset; if (__borderMetrics == undefined) { __borderMetrics = {left:_local2, top:_local2, right:_local2, bottom:_local2}; } else { __borderMetrics.left = _local2; __borderMetrics.top = _local2; __borderMetrics.right = _local2; __borderMetrics.bottom = _local2; } return(__borderMetrics); } function get borderMetrics() { return(getBorderMetrics()); } function drawBorder(Void) { } function size(Void) { drawBorder(); } function setColor(Void) { drawBorder(); } static var symbolName = "RectBorder"; static var symbolOwner = mx.skins.RectBorder; static var version = "2.0.1.78"; var className = "RectBorder"; var borderStyleName = "borderStyle"; var borderColorName = "borderColor"; var shadowColorName = "shadowColor"; var highlightColorName = "highlightColor"; var buttonColorName = "buttonColor"; var backgroundColorName = "backgroundColor"; }
Symbol 374 MovieClip [__Packages.mx.managers.DepthManager] Frame 0
class mx.managers.DepthManager { var _childCounter, createClassObject, createObject, _parent, swapDepths, _topmost, getDepth; function DepthManager () { MovieClip.prototype.createClassChildAtDepth = createClassChildAtDepth; MovieClip.prototype.createChildAtDepth = createChildAtDepth; MovieClip.prototype.setDepthTo = setDepthTo; MovieClip.prototype.setDepthAbove = setDepthAbove; MovieClip.prototype.setDepthBelow = setDepthBelow; MovieClip.prototype.findNextAvailableDepth = findNextAvailableDepth; MovieClip.prototype.shuffleDepths = shuffleDepths; MovieClip.prototype.getDepthByFlag = getDepthByFlag; MovieClip.prototype.buildDepthTable = buildDepthTable; _global.ASSetPropFlags(MovieClip.prototype, "createClassChildAtDepth", 1); _global.ASSetPropFlags(MovieClip.prototype, "createChildAtDepth", 1); _global.ASSetPropFlags(MovieClip.prototype, "setDepthTo", 1); _global.ASSetPropFlags(MovieClip.prototype, "setDepthAbove", 1); _global.ASSetPropFlags(MovieClip.prototype, "setDepthBelow", 1); _global.ASSetPropFlags(MovieClip.prototype, "findNextAvailableDepth", 1); _global.ASSetPropFlags(MovieClip.prototype, "shuffleDepths", 1); _global.ASSetPropFlags(MovieClip.prototype, "getDepthByFlag", 1); _global.ASSetPropFlags(MovieClip.prototype, "buildDepthTable", 1); } static function sortFunction(a, b) { if (a.getDepth() > b.getDepth()) { return(1); } return(-1); } static function test(depth) { if (depth == reservedDepth) { return(false); } return(true); } static function createClassObjectAtDepth(className, depthSpace, initObj) { var _local1; switch (depthSpace) { case kCursor : _local1 = holder.createClassChildAtDepth(className, kTopmost, initObj); break; case kTooltip : _local1 = holder.createClassChildAtDepth(className, kTop, initObj); break; } return(_local1); } static function createObjectAtDepth(linkageName, depthSpace, initObj) { var _local1; switch (depthSpace) { case kCursor : _local1 = holder.createChildAtDepth(linkageName, kTopmost, initObj); break; case kTooltip : _local1 = holder.createChildAtDepth(linkageName, kTop, initObj); break; } return(_local1); } function createClassChildAtDepth(className, depthFlag, initObj) { if (_childCounter == undefined) { _childCounter = 0; } var _local3 = buildDepthTable(); var _local2 = getDepthByFlag(depthFlag, _local3); var _local6 = "down"; if (depthFlag == kBottom) { _local6 = "up"; } var _local5; if (_local3[_local2] != undefined) { _local5 = _local2; _local2 = findNextAvailableDepth(_local2, _local3, _local6); } var _local4 = createClassObject(className, "depthChild" + (_childCounter++), _local2, initObj); if (_local5 != undefined) { _local3[_local2] = _local4; shuffleDepths(_local4, _local5, _local3, _local6); } if (depthFlag == kTopmost) { _local4._topmost = true; } return(_local4); } function createChildAtDepth(linkageName, depthFlag, initObj) { if (_childCounter == undefined) { _childCounter = 0; } var _local3 = buildDepthTable(); var _local2 = getDepthByFlag(depthFlag, _local3); var _local6 = "down"; if (depthFlag == kBottom) { _local6 = "up"; } var _local5; if (_local3[_local2] != undefined) { _local5 = _local2; _local2 = findNextAvailableDepth(_local2, _local3, _local6); } var _local4 = createObject(linkageName, "depthChild" + (_childCounter++), _local2, initObj); if (_local5 != undefined) { _local3[_local2] = _local4; shuffleDepths(_local4, _local5, _local3, _local6); } if (depthFlag == kTopmost) { _local4._topmost = true; } return(_local4); } function setDepthTo(depthFlag) { var _local2 = _parent.buildDepthTable(); var _local3 = _parent.getDepthByFlag(depthFlag, _local2); if (_local2[_local3] != undefined) { shuffleDepths(this, _local3, _local2, undefined); } else { swapDepths(_local3); } if (depthFlag == kTopmost) { _topmost = true; } else { delete _topmost; } } function setDepthAbove(targetInstance) { if (targetInstance._parent != _parent) { return(undefined); } var _local2 = targetInstance.getDepth() + 1; var _local3 = _parent.buildDepthTable(); if ((_local3[_local2] != undefined) && (getDepth() < _local2)) { _local2 = _local2 - 1; } if (_local2 > highestDepth) { _local2 = highestDepth; } if (_local2 == highestDepth) { _parent.shuffleDepths(this, _local2, _local3, "down"); } else if (_local3[_local2] != undefined) { _parent.shuffleDepths(this, _local2, _local3, undefined); } else { swapDepths(_local2); } } function setDepthBelow(targetInstance) { if (targetInstance._parent != _parent) { return(undefined); } var _local6 = targetInstance.getDepth() - 1; var _local3 = _parent.buildDepthTable(); if ((_local3[_local6] != undefined) && (getDepth() > _local6)) { _local6 = _local6 + 1; } var _local4 = lowestDepth + numberOfAuthortimeLayers; var _local5; for (_local5 in _local3) { var _local2 = _local3[_local5]; if (_local2._parent != undefined) { _local4 = Math.min(_local4, _local2.getDepth()); } } if (_local6 < _local4) { _local6 = _local4; } if (_local6 == _local4) { _parent.shuffleDepths(this, _local6, _local3, "up"); } else if (_local3[_local6] != undefined) { _parent.shuffleDepths(this, _local6, _local3, undefined); } else { swapDepths(_local6); } } function findNextAvailableDepth(targetDepth, depthTable, direction) { var _local5 = lowestDepth + numberOfAuthortimeLayers; if (targetDepth < _local5) { targetDepth = _local5; } if (depthTable[targetDepth] == undefined) { return(targetDepth); } var _local2 = targetDepth; var _local1 = targetDepth; if (direction == "down") { while (depthTable[_local1] != undefined) { _local1--; } return(_local1); } while (depthTable[_local2] != undefined) { _local2++; } return(_local2); } function shuffleDepths(subject, targetDepth, depthTable, direction) { var _local9 = lowestDepth + numberOfAuthortimeLayers; var _local8 = _local9; var _local5; for (_local5 in depthTable) { var _local7 = depthTable[_local5]; if (_local7._parent != undefined) { _local9 = Math.min(_local9, _local7.getDepth()); } } if (direction == undefined) { if (subject.getDepth() > targetDepth) { direction = "up"; } else { direction = "down"; } } var _local1 = new Array(); for (_local5 in depthTable) { var _local7 = depthTable[_local5]; if (_local7._parent != undefined) { _local1.push(_local7); } } _local1.sort(sortFunction); if (direction == "up") { var _local3; var _local11; do { if (_local1.length <= 0) { break; } _local3 = _local1.pop(); } while (_local3 != subject); do { if (_local1.length <= 0) { break; } _local11 = subject.getDepth(); _local3 = _local1.pop(); var _local4 = _local3.getDepth(); if (_local11 > (_local4 + 1)) { if (_local4 >= 0) { subject.swapDepths(_local4 + 1); } else if ((_local11 > _local8) && (_local4 < _local8)) { subject.swapDepths(_local8); } } subject.swapDepths(_local3); } while (_local4 != targetDepth); } else if (direction == "down") { var _local3; do { if (_local1.length <= 0) { break; } _local3 = _local1.shift(); } while (_local3 != subject); do { if (_local1.length <= 0) { break; } var _local11 = _local3.getDepth(); _local3 = _local1.shift(); var _local4 = _local3.getDepth(); if ((_local11 < (_local4 - 1)) && (_local4 > 0)) { subject.swapDepths(_local4 - 1); } subject.swapDepths(_local3); } while (_local4 != targetDepth); } } function getDepthByFlag(depthFlag, depthTable) { var _local2 = 0; if ((depthFlag == kTop) || (depthFlag == kNotopmost)) { var _local5 = 0; var _local7 = false; var _local8; for (_local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { if (!_local9._topmost) { _local2 = Math.max(_local2, _local9.getDepth()); } else if (!_local7) { _local5 = _local9.getDepth(); _local7 = true; } else { _local5 = Math.min(_local5, _local9.getDepth()); } } } } _local2 = _local2 + 20; if (_local7) { if (_local2 >= _local5) { _local2 = _local5 - 1; } } } else if (depthFlag == kBottom) { for (var _local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { _local2 = Math.min(_local2, _local9.getDepth()); } } } _local2 = _local2 - 20; } else if (depthFlag == kTopmost) { for (var _local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { _local2 = Math.max(_local2, _local9.getDepth()); } } } _local2 = _local2 + 100; } if (_local2 >= highestDepth) { _local2 = highestDepth; } var _local6 = lowestDepth + numberOfAuthortimeLayers; for (var _local9 in depthTable) { var _local4 = depthTable[_local9]; if (_local4._parent != undefined) { _local6 = Math.min(_local6, _local4.getDepth()); } } if (_local2 <= _local6) { _local2 = _local6; } return(_local2); } function buildDepthTable(Void) { var _local5 = new Array(); var _local4; for (_local4 in this) { var _local2 = this[_local4]; var _local3 = typeof(_local2); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local2.__getTextFormat != undefined))) { if (_local2._parent == this) { _local5[_local2.getDepth()] = _local2; } } } return(_local5); } static var reservedDepth = 1048575; static var highestDepth = 1048574; static var lowestDepth = -16383; static var numberOfAuthortimeLayers = 383; static var kCursor = 101; static var kTooltip = 102; static var kTop = 201; static var kBottom = 202; static var kTopmost = 203; static var kNotopmost = 204; static var holder = _root.createEmptyMovieClip("reserved", reservedDepth); static var __depthManager = new mx.managers.DepthManager(); }
Symbol 375 MovieClip [__Packages.mx.events.EventDispatcher] Frame 0
class mx.events.EventDispatcher { function EventDispatcher () { } static function _removeEventListener(queue, event, handler) { if (queue != undefined) { var _local4 = queue.length; var _local1; _local1 = 0; while (_local1 < _local4) { var _local2 = queue[_local1]; if (_local2 == handler) { queue.splice(_local1, 1); return(undefined); } _local1++; } } } static function initialize(object) { if (_fEventDispatcher == undefined) { _fEventDispatcher = new mx.events.EventDispatcher(); } object.addEventListener = _fEventDispatcher.addEventListener; object.removeEventListener = _fEventDispatcher.removeEventListener; object.dispatchEvent = _fEventDispatcher.dispatchEvent; object.dispatchQueue = _fEventDispatcher.dispatchQueue; } function dispatchQueue(queueObj, eventObj) { var _local7 = "__q_" + eventObj.type; var _local4 = queueObj[_local7]; if (_local4 != undefined) { var _local5; for (_local5 in _local4) { var _local1 = _local4[_local5]; var _local3 = typeof(_local1); if ((_local3 == "object") || (_local3 == "movieclip")) { if (_local1.handleEvent != undefined) { _local1.handleEvent(eventObj); } if (_local1[eventObj.type] != undefined) { if (exceptions[eventObj.type] == undefined) { _local1[eventObj.type](eventObj); } } } else { _local1.apply(queueObj, [eventObj]); } } } } function dispatchEvent(eventObj) { if (eventObj.target == undefined) { eventObj.target = this; } this[eventObj.type + "Handler"](eventObj); dispatchQueue(this, eventObj); } function addEventListener(event, handler) { var _local3 = "__q_" + event; if (this[_local3] == undefined) { this[_local3] = new Array(); } _global.ASSetPropFlags(this, _local3, 1); _removeEventListener(this[_local3], event, handler); this[_local3].push(handler); } function removeEventListener(event, handler) { var _local2 = "__q_" + event; _removeEventListener(this[_local2], event, handler); } static var _fEventDispatcher = undefined; static var exceptions = {move:1, draw:1}; }
Symbol 376 MovieClip [__Packages.mx.events.UIEventDispatcher] Frame 0
class mx.events.UIEventDispatcher extends mx.events.EventDispatcher { var dispatchQueue, owner, __sentLoadEvent, __origAddEventListener; function UIEventDispatcher () { super(); } static function addKeyEvents(obj) { if (obj.keyHandler == undefined) { var _local1 = (obj.keyHandler = new Object()); _local1.owner = obj; _local1.onKeyDown = _fEventDispatcher.onKeyDown; _local1.onKeyUp = _fEventDispatcher.onKeyUp; } Key.addListener(obj.keyHandler); } static function removeKeyEvents(obj) { Key.removeListener(obj.keyHandler); } static function addLoadEvents(obj) { if (obj.onLoad == undefined) { obj.onLoad = _fEventDispatcher.onLoad; obj.onUnload = _fEventDispatcher.onUnload; if (obj.getBytesTotal() == obj.getBytesLoaded()) { obj.doLater(obj, "onLoad"); } } } static function removeLoadEvents(obj) { delete obj.onLoad; delete obj.onUnload; } static function initialize(obj) { if (_fEventDispatcher == undefined) { _fEventDispatcher = new mx.events.UIEventDispatcher(); } obj.addEventListener = _fEventDispatcher.__addEventListener; obj.__origAddEventListener = _fEventDispatcher.addEventListener; obj.removeEventListener = _fEventDispatcher.removeEventListener; obj.dispatchEvent = _fEventDispatcher.dispatchEvent; obj.dispatchQueue = _fEventDispatcher.dispatchQueue; } function dispatchEvent(eventObj) { if (eventObj.target == undefined) { eventObj.target = this; } this[eventObj.type + "Handler"](eventObj); dispatchQueue(mx.events.EventDispatcher, eventObj); dispatchQueue(this, eventObj); } function onKeyDown(Void) { owner.dispatchEvent({type:"keyDown", code:Key.getCode(), ascii:Key.getAscii(), shiftKey:Key.isDown(16), ctrlKey:Key.isDown(17)}); } function onKeyUp(Void) { owner.dispatchEvent({type:"keyUp", code:Key.getCode(), ascii:Key.getAscii(), shiftKey:Key.isDown(16), ctrlKey:Key.isDown(17)}); } function onLoad(Void) { if (__sentLoadEvent != true) { dispatchEvent({type:"load"}); } __sentLoadEvent = true; } function onUnload(Void) { dispatchEvent({type:"unload"}); } function __addEventListener(event, handler) { __origAddEventListener(event, handler); var _local3 = lowLevelEvents; for (var _local5 in _local3) { if (mx.events.UIEventDispatcher[_local5][event] != undefined) { var _local2 = _local3[_local5][0]; mx.events.UIEventDispatcher[_local2](this); } } } function removeEventListener(event, handler) { var _local6 = "__q_" + event; mx.events.EventDispatcher._removeEventListener(this[_local6], event, handler); if (this[_local6].length == 0) { var _local2 = lowLevelEvents; for (var _local5 in _local2) { if (mx.events.UIEventDispatcher[_local5][event] != undefined) { var _local3 = _local2[_local5][1]; mx.events.UIEventDispatcher[_local2[_local5][1]](this); } } } } static var keyEvents = {keyDown:1, keyUp:1}; static var loadEvents = {load:1, unload:1}; static var lowLevelEvents = {keyEvents:["addKeyEvents", "removeKeyEvents"], loadEvents:["addLoadEvents", "removeLoadEvents"]}; static var _fEventDispatcher = undefined; }
Symbol 377 MovieClip [__Packages.mx.core.ExternalContent] Frame 0
class mx.core.ExternalContent { var createObject, numChildren, prepList, doLater, loadList, dispatchEvent, loadedList, childLoaded; function ExternalContent () { } function loadExternal(url, placeholderClassName, instanceName, depth, initProps) { var _local2; _local2 = createObject(placeholderClassName, instanceName, depth, initProps); this[mx.core.View.childNameBase + numChildren] = _local2; if (prepList == undefined) { prepList = new Object(); } prepList[instanceName] = {obj:_local2, url:url, complete:false, initProps:initProps}; prepareToLoadMovie(_local2); return(_local2); } function prepareToLoadMovie(obj) { obj.unloadMovie(); doLater(this, "waitForUnload"); } function waitForUnload() { var _local3; for (_local3 in prepList) { var _local2 = prepList[_local3]; if (_local2.obj.getBytesTotal() == 0) { if (loadList == undefined) { loadList = new Object(); } loadList[_local3] = _local2; _local2.obj.loadMovie(_local2.url); delete prepList[_local3]; doLater(this, "checkLoadProgress"); } else { doLater(this, "waitForUnload"); } } } function checkLoadProgress() { var _local3; for (_local3 in loadList) { var _local2 = loadList[_local3]; _local2.loaded = _local2.obj.getBytesLoaded(); _local2.total = _local2.obj.getBytesTotal(); if (_local2.total > 0) { _local2.obj._visible = false; dispatchEvent({type:"progress", target:_local2.obj, current:_local2.loaded, total:_local2.total}); if (_local2.loaded == _local2.total) { if (loadedList == undefined) { loadedList = new Object(); } loadedList[_local3] = _local2; delete loadList[_local3]; doLater(this, "contentLoaded"); } } else if (_local2.total == -1) { if (_local2.failedOnce != undefined) { _local2.failedOnce++; if (_local2.failedOnce > 3) { dispatchEvent({type:"complete", target:_local2.obj, current:_local2.loaded, total:_local2.total}); delete loadList[_local3]; } } else { _local2.failedOnce = 0; } } doLater(this, "checkLoadProgress"); } } function contentLoaded() { var _local4; for (_local4 in loadedList) { var _local2 = loadedList[_local4]; _local2.obj._visible = true; _local2.obj._complete = true; var _local3; for (_local3 in _local2.initProps) { _local2.obj[_local3] = _local2.initProps[_local3]; } childLoaded(_local2.obj); dispatchEvent({type:"complete", target:_local2.obj, current:_local2.loaded, total:_local2.total}); delete loadedList[_local4]; } } function convertToUIObject(obj) { if (obj.setSize == undefined) { var _local2 = mx.core.UIObject.prototype; obj.addProperty("width", _local2.__get__width, null); obj.addProperty("height", _local2.__get__height, null); obj.addProperty("left", _local2.__get__left, null); obj.addProperty("x", _local2.__get__x, null); obj.addProperty("top", _local2.__get__top, null); obj.addProperty("y", _local2.__get__y, null); obj.addProperty("right", _local2.__get__right, null); obj.addProperty("bottom", _local2.__get__bottom, null); obj.addProperty("visible", _local2.__get__visible, _local2.__set__visible); obj.move = mx.core.UIObject.prototype.move; obj.setSize = mx.core.UIObject.prototype.setSize; obj.size = mx.core.UIObject.prototype.size; mx.events.UIEventDispatcher.initialize(obj); } } static function enableExternalContent() { } static function classConstruct() { var _local1 = mx.core.View.prototype; var _local2 = mx.core.ExternalContent.prototype; _local1.loadExternal = _local2.loadExternal; _local1.prepareToLoadMovie = _local2.prepareToLoadMovie; _local1.waitForUnload = _local2.waitForUnload; _local1.checkLoadProgress = _local2.checkLoadProgress; _local1.contentLoaded = _local2.contentLoaded; _local1.convertToUIObject = _local2.convertToUIObject; return(true); } static var classConstructed = classConstruct(); static var ViewDependency = mx.core.View; }
Symbol 378 MovieClip [__Packages.mx.skins.CustomBorder] Frame 0
class mx.skins.CustomBorder extends mx.skins.Border { var __width, __height, l_mc, setSkin, minHeight, minWidth, m_mc, r_mc; function CustomBorder () { super(); } function get width() { return(__width); } function get height() { return(__height); } function init(Void) { super.init(); } function createChildren(Void) { } function draw(Void) { if (l_mc == undefined) { var _local2 = setSkin(tagL, leftSkin); if (horizontal) { minHeight = l_mc._height; minWidth = l_mc._width; } else { minHeight = l_mc._height; minWidth = l_mc._width; } } if (m_mc == undefined) { setSkin(tagM, middleSkin); if (horizontal) { minHeight = m_mc._height; minWidth = minWidth + m_mc._width; } else { minHeight = minHeight + m_mc._height; minWidth = m_mc._width; } } if (r_mc == undefined) { setSkin(tagR, rightSkin); if (horizontal) { minHeight = r_mc._height; minWidth = minWidth + r_mc._width; } else { minHeight = minHeight + r_mc._height; minWidth = r_mc._width; } } size(); } function size(Void) { l_mc.move(0, 0); if (horizontal) { r_mc.move(width - r_mc.width, 0); m_mc.move(l_mc.width, 0); m_mc.setSize(r_mc.x - m_mc.x, m_mc.height); } else { r_mc.move(0, height - r_mc.height, 0); m_mc.move(0, l_mc.height); m_mc.setSize(m_mc.width, r_mc.y - m_mc.y); } } static var symbolName = "CustomBorder"; static var symbolOwner = mx.skins.CustomBorder; static var version = "2.0.1.78"; var className = "CustomBorder"; static var tagL = 0; static var tagM = 1; static var tagR = 2; var idNames = new Array("l_mc", "m_mc", "r_mc"); var leftSkin = "F3PieceLeft"; var middleSkin = "F3PieceMiddle"; var rightSkin = "F3PieceRight"; var horizontal = true; }
Symbol 379 MovieClip [__Packages.mx.controls.scrollClasses.ScrollThumb] Frame 0
class mx.controls.scrollClasses.ScrollThumb extends mx.skins.CustomBorder { var useHandCursor, ymin, ymax, datamin, datamax, scrollMove, lastY, _ymouse, _y, _parent, onMouseMove, grip_mc, setSkin, gripSkin, __get__width, __get__height; function ScrollThumb () { super(); } function createChildren(Void) { super.createChildren(); useHandCursor = false; } function setRange(_ymin, _ymax, _datamin, _datamax) { ymin = _ymin; ymax = _ymax; datamin = _datamin; datamax = _datamax; } function dragThumb(Void) { scrollMove = _ymouse - lastY; scrollMove = scrollMove + _y; if (scrollMove < ymin) { scrollMove = ymin; } else if (scrollMove > ymax) { scrollMove = ymax; } _parent.isScrolling = true; _y = scrollMove; var _local2 = Math.round(((datamax - datamin) * (_y - ymin)) / (ymax - ymin)) + datamin; _parent.scrollPosition = _local2; _parent.dispatchScrollEvent("ThumbTrack"); updateAfterEvent(); } function stopDragThumb(Void) { _parent.isScrolling = false; _parent.dispatchScrollEvent("ThumbPosition"); _parent.dispatchScrollChangedEvent(); delete onMouseMove; } function onPress(Void) { _parent.pressFocus(); lastY = _ymouse; onMouseMove = dragThumb; super.onPress(); } function onRelease(Void) { _parent.releaseFocus(); stopDragThumb(); super.onRelease(); } function onReleaseOutside(Void) { _parent.releaseFocus(); stopDragThumb(); super.onReleaseOutside(); } function draw() { super.draw(); if (grip_mc == undefined) { setSkin(3, gripSkin); } } function size() { super.size(); grip_mc.move((__get__width() - grip_mc.width) / 2, (__get__height() - grip_mc.height) / 2); } static var symbolOwner = mx.skins.CustomBorder.symbolOwner; var className = "ScrollThumb"; var btnOffset = 0; var horizontal = false; var idNames = new Array("l_mc", "m_mc", "r_mc", "grip_mc"); }
Symbol 380 MovieClip [__Packages.mx.controls.SimpleButton] Frame 0
class mx.controls.SimpleButton extends mx.core.UIComponent { static var emphasizedStyleDeclaration; var preset, boundingBox_mc, useHandCursor, skinName, linkLength, iconName, destroyObject, __width, _width, __height, _height, __emphaticStyleName, styleName, enabled, invalidate, pressFocus, dispatchEvent, autoRepeat, interval, getStyle, releaseFocus, createLabel, invalidateStyle; function SimpleButton () { super(); } function init(Void) { super.init(); if (preset == undefined) { boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } useHandCursor = false; } function createChildren(Void) { if (preset != undefined) { var _local2 = this[idNames[preset]]; this[refNames[preset]] = _local2; skinName = _local2; if (falseOverSkin.length == 0) { rolloverSkin = fus; } if (falseOverIcon.length == 0) { rolloverIcon = fui; } initializing = false; } else if (__state == true) { setStateVar(true); } else { if (falseOverSkin.length == 0) { rolloverSkin = fus; } if (falseOverIcon.length == 0) { rolloverIcon = fui; } } } function setIcon(tag, linkageName) { return(setSkin(tag + 8, linkageName)); } function changeIcon(tag, linkageName) { linkLength = linkageName.length; var _local2 = stateNames[tag] + "Icon"; this[_local2] = linkageName; this[idNames[tag + 8]] = _local2; setStateVar(getState()); } function changeSkin(tag, linkageName) { var _local2 = stateNames[tag] + "Skin"; this[_local2] = linkageName; this[idNames[tag]] = _local2; setStateVar(getState()); } function viewIcon(varName) { var _local4 = varName + "Icon"; var _local3 = this[_local4]; if (typeof(_local3) == "string") { var _local5 = _local3; if (__emphasized) { if (this[_local3 + "Emphasized"].length > 0) { _local3 = _local3 + "Emphasized"; } } if (this[_local3].length == 0) { return(undefined); } _local3 = setIcon(tagMap[_local5], this[_local3]); if ((_local3 == undefined) && (_global.isLivePreview)) { _local3 = setIcon(0, "ButtonIcon"); } this[_local4] = _local3; } iconName._visible = false; iconName = _local3; iconName._visible = true; } function removeIcons() { var _local3 = 0; while (_local3 < 2) { var _local2 = 8; while (_local2 < 16) { destroyObject(idNames[_local2]); this[stateNames[_local2 - 8] + "Icon"] = ""; _local2++; } _local3++; } refresh(); } function setSkin(tag, linkageName, initobj) { var _local3 = super.setSkin(tag, linkageName, ((initobj != undefined) ? (initobj) : ({styleName:this}))); calcSize(tag, _local3); return(_local3); } function calcSize(Void) { __width = _width; __height = _height; } function viewSkin(varName, initObj) { var _local3 = varName + "Skin"; var _local2 = this[_local3]; if (typeof(_local2) == "string") { var _local4 = _local2; if (__emphasized) { if (this[_local2 + "Emphasized"].length > 0) { _local2 = _local2 + "Emphasized"; } } if (this[_local2].length == 0) { return(undefined); } _local2 = setSkin(tagMap[_local4], this[_local2], ((initObj != undefined) ? (initObj) : ({styleName:this}))); this[_local3] = _local2; } skinName._visible = false; skinName = _local2; skinName._visible = true; } function showEmphasized(e) { if (e && (!__emphatic)) { if (emphasizedStyleDeclaration != undefined) { __emphaticStyleName = styleName; styleName = emphasizedStyleDeclaration; } __emphatic = true; } else { if (__emphatic) { styleName = __emphaticStyleName; } __emphatic = false; } } function refresh(Void) { var _local2 = getState(); if (enabled == false) { viewIcon("disabled"); viewSkin("disabled"); } else { viewSkin(phase); viewIcon(phase); } setView(phase == "down"); iconName.enabled = enabled; } function setView(offset) { if (iconName == undefined) { return(undefined); } var _local2 = (offset ? (btnOffset) : 0); iconName._x = ((__width - iconName._width) / 2) + _local2; iconName._y = ((__height - iconName._height) / 2) + _local2; } function setStateVar(state) { if (state) { if (trueOverSkin.length == 0) { rolloverSkin = tus; } else { rolloverSkin = trs; } if (trueOverIcon.length == 0) { rolloverIcon = tui; } else { rolloverIcon = tri; } upSkin = tus; downSkin = tds; disabledSkin = dts; upIcon = tui; downIcon = tdi; disabledIcon = dti; } else { if (falseOverSkin.length == 0) { rolloverSkin = fus; } else { rolloverSkin = frs; } if (falseOverIcon.length == 0) { rolloverIcon = fui; } else { rolloverIcon = fri; } upSkin = fus; downSkin = fds; disabledSkin = dfs; upIcon = fui; downIcon = fdi; disabledIcon = dfi; } __state = state; } function setState(state) { if (state != __state) { setStateVar(state); invalidate(); } } function size(Void) { refresh(); } function draw(Void) { if (initializing) { initializing = false; skinName.visible = true; iconName.visible = true; } size(); } function getState(Void) { return(__state); } function setToggle(val) { __toggle = val; if (__toggle == false) { setState(false); } } function getToggle(Void) { return(__toggle); } function set toggle(val) { setToggle(val); //return(toggle); } function get toggle() { return(getToggle()); } function set value(val) { setSelected(val); //return(value); } function get value() { return(getSelected()); } function set selected(val) { setSelected(val); //return(selected); } function get selected() { return(getSelected()); } function setSelected(val) { if (__toggle) { setState(val); } else { setState((initializing ? (val) : (__state))); } } function getSelected() { return(__state); } function setEnabled(val) { if (enabled != val) { super.setEnabled(val); invalidate(); } } function onPress(Void) { pressFocus(); phase = "down"; refresh(); dispatchEvent({type:"buttonDown"}); if (autoRepeat) { interval = setInterval(this, "onPressDelay", getStyle("repeatDelay")); } } function onPressDelay(Void) { dispatchEvent({type:"buttonDown"}); if (autoRepeat) { clearInterval(interval); interval = setInterval(this, "onPressRepeat", getStyle("repeatInterval")); } } function onPressRepeat(Void) { dispatchEvent({type:"buttonDown"}); updateAfterEvent(); } function onRelease(Void) { releaseFocus(); phase = "rollover"; if (interval != undefined) { clearInterval(interval); delete interval; } if (getToggle()) { setState(!getState()); } else { refresh(); } dispatchEvent({type:"click"}); } function onDragOut(Void) { phase = "up"; refresh(); dispatchEvent({type:"buttonDragOut"}); } function onDragOver(Void) { if (phase != "up") { onPress(); return(undefined); } phase = "down"; refresh(); } function onReleaseOutside(Void) { releaseFocus(); phase = "up"; if (interval != undefined) { clearInterval(interval); delete interval; } } function onRollOver(Void) { phase = "rollover"; refresh(); } function onRollOut(Void) { phase = "up"; refresh(); } function getLabel(Void) { return(fui.text); } function setLabel(val) { if (typeof(fui) == "string") { createLabel("fui", 8, val); fui.styleName = this; } else { fui.text = val; } var _local4 = fui._getTextFormat(); var _local2 = _local4.getTextExtent2(val); fui._width = _local2.width + 5; fui._height = _local2.height + 5; iconName = fui; setView(__state); } function get emphasized() { return(__emphasized); } function set emphasized(val) { __emphasized = val; var _local2 = 0; while (_local2 < 8) { this[idNames[_local2]] = stateNames[_local2] + "Skin"; if (typeof(this[idNames[_local2 + 8]]) == "movieclip") { this[idNames[_local2 + 8]] = stateNames[_local2] + "Icon"; } _local2++; } showEmphasized(__emphasized); setStateVar(__state); invalidateStyle(); //return(emphasized); } function keyDown(e) { if (e.code == 32) { onPress(); } } function keyUp(e) { if (e.code == 32) { onRelease(); } } function onKillFocus(newFocus) { super.onKillFocus(); if (phase != "up") { phase = "up"; refresh(); } } static var symbolName = "SimpleButton"; static var symbolOwner = mx.controls.SimpleButton; static var version = "2.0.1.78"; var className = "SimpleButton"; var style3dInset = 4; var btnOffset = 1; var __toggle = false; var __state = false; var __emphasized = false; var __emphatic = false; static var falseUp = 0; static var falseDown = 1; static var falseOver = 2; static var falseDisabled = 3; static var trueUp = 4; static var trueDown = 5; static var trueOver = 6; static var trueDisabled = 7; var falseUpSkin = "SimpleButtonUp"; var falseDownSkin = "SimpleButtonIn"; var falseOverSkin = ""; var falseDisabledSkin = "SimpleButtonUp"; var trueUpSkin = "SimpleButtonIn"; var trueDownSkin = ""; var trueOverSkin = ""; var trueDisabledSkin = "SimpleButtonIn"; var falseUpIcon = ""; var falseDownIcon = ""; var falseOverIcon = ""; var falseDisabledIcon = ""; var trueUpIcon = ""; var trueDownIcon = ""; var trueOverIcon = ""; var trueDisabledIcon = ""; var phase = "up"; var fui = "falseUpIcon"; var fus = "falseUpSkin"; var fdi = "falseDownIcon"; var fds = "falseDownSkin"; var frs = "falseOverSkin"; var fri = "falseOverIcon"; var dfi = "falseDisabledIcon"; var dfs = "falseDisabledSkin"; var tui = "trueUpIcon"; var tus = "trueUpSkin"; var tdi = "trueDownIcon"; var tds = "trueDownSkin"; var trs = "trueOverSkin"; var tri = "trueOverIcon"; var dts = "trueDisabledSkin"; var dti = "trueDisabledIcon"; var rolloverSkin = mx.controls.SimpleButton.prototype.frs; var rolloverIcon = mx.controls.SimpleButton.prototype.fri; var upSkin = mx.controls.SimpleButton.prototype.fus; var downSkin = mx.controls.SimpleButton.prototype.fds; var disabledSkin = mx.controls.SimpleButton.prototype.dfs; var upIcon = mx.controls.SimpleButton.prototype.fui; var downIcon = mx.controls.SimpleButton.prototype.fdi; var disabledIcon = mx.controls.SimpleButton.prototype.dfi; var initializing = true; var idNames = ["fus", "fds", "frs", "dfs", "tus", "tds", "trs", "dts", "fui", "fdi", "fri", "dfi", "tui", "tdi", "tri", "dti"]; var stateNames = ["falseUp", "falseDown", "falseOver", "falseDisabled", "trueUp", "trueDown", "trueOver", "trueDisabled"]; var refNames = ["upSkin", "downSkin", "rolloverSkin", "disabledSkin"]; var tagMap = {falseUpSkin:0, falseDownSkin:1, falseOverSkin:2, falseDisabledSkin:3, trueUpSkin:4, trueDownSkin:5, trueOverSkin:6, trueDisabledSkin:7, falseUpIcon:0, falseDownIcon:1, falseOverIcon:2, falseDisabledIcon:3, trueUpIcon:4, trueDownIcon:5, trueOverIcon:6, trueDisabledIcon:7}; }
Symbol 381 MovieClip [__Packages.mx.controls.scrollClasses.ScrollBar] Frame 0
class mx.controls.scrollClasses.ScrollBar extends mx.core.UIComponent { var isScrolling, scrollTrack_mc, scrollThumb_mc, __height, tabEnabled, focusEnabled, boundingBox_mc, setSkin, upArrow_mc, _minHeight, _minWidth, downArrow_mc, createObject, createClassObject, enabled, _height, dispatchEvent, minMode, maxMode, plusMode, minusMode, _parent, getStyle, scrolling, _ymouse; function ScrollBar () { super(); } function get scrollPosition() { return(_scrollPosition); } function set scrollPosition(pos) { _scrollPosition = pos; if (isScrolling != true) { pos = Math.min(pos, maxPos); pos = Math.max(pos, minPos); var _local3 = (((pos - minPos) * (scrollTrack_mc.height - scrollThumb_mc._height)) / (maxPos - minPos)) + scrollTrack_mc.top; scrollThumb_mc.move(0, _local3); } //return(scrollPosition); } function get pageScrollSize() { return(largeScroll); } function set pageScrollSize(lScroll) { largeScroll = lScroll; //return(pageScrollSize); } function set lineScrollSize(sScroll) { smallScroll = sScroll; //return(lineScrollSize); } function get lineScrollSize() { return(smallScroll); } function get virtualHeight() { return(__height); } function init(Void) { super.init(); _scrollPosition = 0; tabEnabled = false; focusEnabled = false; boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function createChildren(Void) { if (scrollTrack_mc == undefined) { setSkin(skinIDTrack, scrollTrackName); } scrollTrack_mc.visible = false; var _local3 = new Object(); _local3.enabled = false; _local3.preset = mx.controls.SimpleButton.falseDisabled; _local3.initProperties = 0; _local3.autoRepeat = true; _local3.tabEnabled = false; var _local2; if (upArrow_mc == undefined) { _local2 = createButton(upArrowName, "upArrow_mc", skinIDUpArrow, _local3); } _local2.buttonDownHandler = onUpArrow; _local2.clickHandler = onScrollChanged; _minHeight = _local2.height; _minWidth = _local2.width; if (downArrow_mc == undefined) { _local2 = createButton(downArrowName, "downArrow_mc", skinIDDownArrow, _local3); } _local2.buttonDownHandler = onDownArrow; _local2.clickHandler = onScrollChanged; _minHeight = _minHeight + _local2.height; } function createButton(linkageName, id, skinID, o) { if (skinID == skinIDUpArrow) { o.falseUpSkin = upArrowUpName; o.falseDownSkin = upArrowDownName; o.falseOverSkin = upArrowOverName; } else { o.falseUpSkin = downArrowUpName; o.falseDownSkin = downArrowDownName; o.falseOverSkin = downArrowOverName; } var _local3 = createObject(linkageName, id, skinID, o); this[id].visible = false; this[id].useHandCursor = false; return(_local3); } function createThumb(Void) { var _local2 = new Object(); _local2.validateNow = true; _local2.tabEnabled = false; _local2.leftSkin = thumbTopName; _local2.middleSkin = thumbMiddleName; _local2.rightSkin = thumbBottomName; _local2.gripSkin = thumbGripName; createClassObject(mx.controls.scrollClasses.ScrollThumb, "scrollThumb_mc", skinIDThumb, _local2); } function setScrollProperties(pSize, mnPos, mxPos, ls) { var _local4; var _local2 = scrollTrack_mc; pageSize = pSize; largeScroll = (((ls != undefined) && (ls > 0)) ? (ls) : (pSize)); minPos = Math.max(mnPos, 0); maxPos = Math.max(mxPos, 0); _scrollPosition = Math.max(minPos, _scrollPosition); _scrollPosition = Math.min(maxPos, _scrollPosition); if (((maxPos - minPos) > 0) && (enabled)) { var _local5 = _scrollPosition; if (!initializing) { upArrow_mc.enabled = true; downArrow_mc.enabled = true; } _local2.onPress = (_local2.onDragOver = startTrackScroller); _local2.onRelease = releaseScrolling; _local2.onDragOut = (_local2.stopScrolling = stopScrolling); _local2.onReleaseOutside = releaseScrolling; _local2.useHandCursor = false; if (scrollThumb_mc == undefined) { createThumb(); } var _local3 = scrollThumb_mc; if (scrollTrackOverName.length > 0) { _local2.onRollOver = trackOver; _local2.onRollOut = trackOut; } _local4 = (pageSize / ((maxPos - minPos) + pageSize)) * _local2.height; if (_local4 < _local3.minHeight) { if (_local2.height < _local3.minHeight) { _local3.__set__visible(false); } else { _local4 = _local3.minHeight; _local3.__set__visible(true); _local3.setSize(_minWidth, _local3.minHeight + 0); } } else { _local3.__set__visible(true); _local3.setSize(_minWidth, _local4); } _local3.setRange(upArrow_mc.__get__height() + 0, (virtualHeight - downArrow_mc.__get__height()) - _local3.__get__height(), minPos, maxPos); _local5 = Math.min(_local5, maxPos); scrollPosition = (Math.max(_local5, minPos)); } else { scrollThumb_mc.__set__visible(false); if (!initializing) { upArrow_mc.enabled = false; downArrow_mc.enabled = false; } delete _local2.onPress; delete _local2.onDragOver; delete _local2.onRelease; delete _local2.onDragOut; delete _local2.onRollOver; delete _local2.onRollOut; delete _local2.onReleaseOutside; } if (initializing) { scrollThumb_mc.__set__visible(false); } } function setEnabled(enabledFlag) { super.setEnabled(enabledFlag); setScrollProperties(pageSize, minPos, maxPos, largeScroll); } function draw(Void) { if (initializing) { initializing = false; scrollTrack_mc.visible = true; upArrow_mc.__set__visible(true); downArrow_mc.__set__visible(true); } size(); } function size(Void) { if (_height == 1) { return(undefined); } if (upArrow_mc == undefined) { return(undefined); } var _local3 = upArrow_mc.__get__height(); var _local2 = downArrow_mc.__get__height(); upArrow_mc.move(0, 0); var _local4 = scrollTrack_mc; _local4._y = _local3; _local4._height = (virtualHeight - _local3) - _local2; downArrow_mc.move(0, virtualHeight - _local2); setScrollProperties(pageSize, minPos, maxPos, largeScroll); } function dispatchScrollEvent(detail) { dispatchEvent({type:"scroll", detail:detail}); } function isScrollBarKey(k) { if (k == 36) { if (scrollPosition != 0) { scrollPosition = (0); dispatchScrollEvent(minMode); } return(true); } if (k == 35) { if (scrollPosition < maxPos) { scrollPosition = (maxPos); dispatchScrollEvent(maxMode); } return(true); } return(false); } function scrollIt(inc, mode) { var _local3 = smallScroll; if (inc != "Line") { _local3 = ((largeScroll == 0) ? (pageSize) : (largeScroll)); } var _local2 = _scrollPosition + (mode * _local3); if (_local2 > maxPos) { _local2 = maxPos; } else if (_local2 < minPos) { _local2 = minPos; } if (scrollPosition != _local2) { scrollPosition = (_local2); var _local4 = ((mode < 0) ? (minusMode) : (plusMode)); dispatchScrollEvent(inc + _local4); } } function startTrackScroller(Void) { _parent.pressFocus(); if (_parent.scrollTrackDownName.length > 0) { if (_parent.scrollTrackDown_mc == undefined) { _parent.setSkin(skinIDTrackDown, scrollTrackDownName); } else { _parent.scrollTrackDown_mc.visible = true; } } _parent.trackScroller(); _parent.scrolling = setInterval(_parent, "scrollInterval", getStyle("repeatDelay"), "Page", -1); } function scrollInterval(inc, mode) { clearInterval(scrolling); if (inc == "Page") { trackScroller(); } else { scrollIt(inc, mode); } scrolling = setInterval(this, "scrollInterval", getStyle("repeatInterval"), inc, mode); } function trackScroller(Void) { if ((scrollThumb_mc._y + scrollThumb_mc.__get__height()) < _ymouse) { scrollIt("Page", 1); } else if (scrollThumb_mc._y > _ymouse) { scrollIt("Page", -1); } } function dispatchScrollChangedEvent(Void) { dispatchEvent({type:"scrollChanged"}); } function stopScrolling(Void) { clearInterval(_parent.scrolling); _parent.scrollTrackDown_mc.visible = false; } function releaseScrolling(Void) { _parent.releaseFocus(); stopScrolling(); _parent.dispatchScrollChangedEvent(); } function trackOver(Void) { if (_parent.scrollTrackOverName.length > 0) { if (_parent.scrollTrackOver_mc == undefined) { _parent.setSkin(skinIDTrackOver, scrollTrackOverName); } else { _parent.scrollTrackOver_mc.visible = true; } } } function trackOut(Void) { _parent.scrollTrackOver_mc.visible = false; } function onUpArrow(Void) { _parent.scrollIt("Line", -1); } function onDownArrow(Void) { _parent.scrollIt("Line", 1); } function onScrollChanged(Void) { _parent.dispatchScrollChangedEvent(); } static var symbolOwner = mx.core.UIComponent; var className = "ScrollBar"; var minPos = 0; var maxPos = 0; var pageSize = 0; var largeScroll = 0; var smallScroll = 1; var _scrollPosition = 0; var scrollTrackName = "ScrollTrack"; var scrollTrackOverName = ""; var scrollTrackDownName = ""; var upArrowName = "BtnUpArrow"; var upArrowUpName = "ScrollUpArrowUp"; var upArrowOverName = "ScrollUpArrowOver"; var upArrowDownName = "ScrollUpArrowDown"; var downArrowName = "BtnDownArrow"; var downArrowUpName = "ScrollDownArrowUp"; var downArrowOverName = "ScrollDownArrowOver"; var downArrowDownName = "ScrollDownArrowDown"; var thumbTopName = "ScrollThumbTopUp"; var thumbMiddleName = "ScrollThumbMiddleUp"; var thumbBottomName = "ScrollThumbBottomUp"; var thumbGripName = "ScrollThumbGripUp"; static var skinIDTrack = 0; static var skinIDTrackOver = 1; static var skinIDTrackDown = 2; static var skinIDUpArrow = 3; static var skinIDDownArrow = 4; static var skinIDThumb = 5; var idNames = new Array("scrollTrack_mc", "scrollTrackOver_mc", "scrollTrackDown_mc", "upArrow_mc", "downArrow_mc"); var clipParameters = {minPos:1, maxPos:1, pageSize:1, scrollPosition:1, lineScrollSize:1, pageScrollSize:1, visible:1, enabled:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.scrollClasses.ScrollBar.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters); var initializing = true; }
Symbol 382 MovieClip [__Packages.mx.controls.HScrollBar] Frame 0
class mx.controls.HScrollBar extends mx.controls.scrollClasses.ScrollBar { var _minHeight, _minWidth, _xscale, _rotation, __width, scrollIt; function HScrollBar () { super(); } function getMinWidth(Void) { return(_minHeight); } function getMinHeight(Void) { return(_minWidth); } function init(Void) { super.init(); _xscale = -100; _rotation = -90; } function get virtualHeight() { return(__width); } function isScrollBarKey(k) { if (k == 37) { scrollIt("Line", -1); return(true); } if (k == 39) { scrollIt("Line", 1); return(true); } return(super.isScrollBarKey(k)); } static var symbolName = "HScrollBar"; static var symbolOwner = mx.core.UIComponent; static var version = "2.0.1.78"; var className = "HScrollBar"; var minusMode = "Left"; var plusMode = "Right"; var minMode = "AtLeft"; var maxMode = "AtRight"; }
Symbol 383 MovieClip [__Packages.mx.controls.Button] Frame 0
class mx.controls.Button extends mx.controls.SimpleButton { var initializing, labelPath, initIcon, getState, enabled, phase, idNames, __width, __height, setState, invalidate, iconName, refresh, createLabel, _iconLinkageName, removeIcons, hitArea_mc, createEmptyObject; function Button () { super(); } function init(Void) { super.init(); } function draw() { if (initializing) { labelPath.visible = true; } super.draw(); if (initIcon != undefined) { _setIcon(initIcon); } delete initIcon; } function onRelease(Void) { super.onRelease(); } function createChildren(Void) { super.createChildren(); } function setSkin(tag, linkageName, initobj) { return(super.setSkin(tag, linkageName, initobj)); } function viewSkin(varName) { var _local3 = (getState() ? "true" : "false"); _local3 = _local3 + (enabled ? (phase) : "disabled"); super.viewSkin(varName, {styleName:this, borderStyle:_local3}); } function invalidateStyle(c) { labelPath.invalidateStyle(c); super.invalidateStyle(c); } function setColor(c) { var _local2 = 0; while (_local2 < 8) { this[idNames[_local2]].redraw(true); _local2++; } } function setEnabled(enable) { labelPath.enabled = enable; super.setEnabled(enable); } function calcSize(tag, ref) { if ((__width == undefined) || (__height == undefined)) { return(undefined); } if (tag < 7) { ref.setSize(__width, __height, true); } } function size(Void) { setState(getState()); setHitArea(__width, __height); var _local3 = 0; while (_local3 < 8) { var _local4 = idNames[_local3]; if (typeof(this[_local4]) == "movieclip") { this[_local4].setSize(__width, __height, true); } _local3++; } super.size(); } function set labelPlacement(val) { __labelPlacement = val; invalidate(); //return(labelPlacement); } function get labelPlacement() { return(__labelPlacement); } function getLabelPlacement(Void) { return(__labelPlacement); } function setLabelPlacement(val) { __labelPlacement = val; invalidate(); } function getBtnOffset(Void) { if (getState()) { var _local2 = btnOffset; } else if (phase == "down") { var _local2 = btnOffset; } else { var _local2 = 0; } return(_local2); } function setView(offset) { var _local16 = (offset ? (btnOffset) : 0); var _local12 = getLabelPlacement(); var _local7 = 0; var _local6 = 0; var _local9 = 0; var _local8 = 0; var _local5 = 0; var _local4 = 0; var _local3 = labelPath; var _local2 = iconName; var _local15 = _local3.textWidth; var _local14 = _local3.textHeight; var _local10 = (__width - borderW) - borderW; var _local11 = (__height - borderW) - borderW; if (_local2 != undefined) { _local7 = _local2._width; _local6 = _local2._height; } if ((_local12 == "left") || (_local12 == "right")) { if (_local3 != undefined) { _local9 = Math.min(_local10 - _local7, _local15 + 5); _local3._width = _local9; _local8 = Math.min(_local11, _local14 + 5); _local3._height = _local8; } if (_local12 == "right") { _local5 = _local7; if (centerContent) { _local5 = _local5 + (((_local10 - _local9) - _local7) / 2); } _local2._x = _local5 - _local7; } else { _local5 = (_local10 - _local9) - _local7; if (centerContent) { _local5 = _local5 / 2; } _local2._x = _local5 + _local9; } _local4 = 0; _local2._y = _local4; if (centerContent) { _local2._y = (_local11 - _local6) / 2; _local4 = (_local11 - _local8) / 2; } if (!centerContent) { _local2._y = _local2._y + Math.max(0, (_local8 - _local6) / 2); } } else { if (_local3 != undefined) { _local9 = Math.min(_local10, _local15 + 5); _local3._width = _local9; _local8 = Math.min(_local11 - _local6, _local14 + 5); _local3._height = _local8; } _local5 = (_local10 - _local9) / 2; _local2._x = (_local10 - _local7) / 2; if (_local12 == "top") { _local4 = (_local11 - _local8) - _local6; if (centerContent) { _local4 = _local4 / 2; } _local2._y = _local4 + _local8; } else { _local4 = _local6; if (centerContent) { _local4 = _local4 + (((_local11 - _local8) - _local6) / 2); } _local2._y = _local4 - _local6; } } var _local13 = borderW + _local16; _local3._x = _local5 + _local13; _local3._y = _local4 + _local13; _local2._x = _local2._x + _local13; _local2._y = _local2._y + _local13; } function set label(lbl) { setLabel(lbl); //return(label); } function setLabel(label) { if (label == "") { labelPath.removeTextField(); refresh(); return(undefined); } if (labelPath == undefined) { var _local2 = createLabel("labelPath", 200, label); _local2._width = _local2.textWidth + 5; _local2._height = _local2.textHeight + 5; if (initializing) { _local2.visible = false; } } else { delete labelPath.__text; labelPath.text = label; refresh(); } } function getLabel(Void) { return(((labelPath.__text != undefined) ? (labelPath.__text) : (labelPath.text))); } function get label() { return(getLabel()); } function _getIcon(Void) { return(_iconLinkageName); } function get icon() { if (initializing) { return(initIcon); } return(_iconLinkageName); } function _setIcon(linkage) { if (initializing) { if (linkage == "") { return(undefined); } initIcon = linkage; } else { if (linkage == "") { removeIcons(); return(undefined); } super.changeIcon(0, linkage); super.changeIcon(1, linkage); super.changeIcon(3, linkage); super.changeIcon(4, linkage); super.changeIcon(5, linkage); _iconLinkageName = linkage; refresh(); } } function set icon(linkage) { _setIcon(linkage); //return(icon); } function setHitArea(w, h) { if (hitArea_mc == undefined) { createEmptyObject("hitArea_mc", 100); } var _local2 = hitArea_mc; _local2.clear(); _local2.beginFill(16711680); _local2.drawRect(0, 0, w, h); _local2.endFill(); _local2.setVisible(false); } static var symbolName = "Button"; static var symbolOwner = mx.controls.Button; var className = "Button"; static var version = "2.0.1.78"; var btnOffset = 0; var _color = "buttonColor"; var __label = "default value"; var __labelPlacement = "right"; var falseUpSkin = "ButtonSkin"; var falseDownSkin = "ButtonSkin"; var falseOverSkin = "ButtonSkin"; var falseDisabledSkin = "ButtonSkin"; var trueUpSkin = "ButtonSkin"; var trueDownSkin = "ButtonSkin"; var trueOverSkin = "ButtonSkin"; var trueDisabledSkin = "ButtonSkin"; var falseUpIcon = ""; var falseDownIcon = ""; var falseOverIcon = ""; var falseDisabledIcon = ""; var trueUpIcon = ""; var trueDownIcon = ""; var trueOverIcon = ""; var trueDisabledIcon = ""; var clipParameters = {labelPlacement:1, icon:1, toggle:1, selected:1, label:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.Button.prototype.clipParameters, mx.controls.SimpleButton.prototype.clipParameters); var centerContent = true; var borderW = 1; }
Symbol 384 MovieClip [__Packages.mx.skins.ColoredSkinElement] Frame 0
class mx.skins.ColoredSkinElement { var getStyle, _color, onEnterFrame; function ColoredSkinElement () { } function setColor(c) { if (c != undefined) { var _local2 = new Color(this); _local2.setRGB(c); } } function draw(Void) { setColor(getStyle(_color)); onEnterFrame = undefined; } function invalidateStyle(Void) { onEnterFrame = draw; } static function setColorStyle(p, colorStyle) { if (p._color == undefined) { p._color = colorStyle; } p.setColor = mixins.setColor; p.invalidateStyle = mixins.invalidateStyle; p.draw = mixins.draw; p.setColor(p.getStyle(colorStyle)); } static var mixins = new mx.skins.ColoredSkinElement(); }
Symbol 385 MovieClip [__Packages.mx.core.ext.UIObjectExtensions] Frame 0
class mx.core.ext.UIObjectExtensions { function UIObjectExtensions () { } static function addGeometry(tf, ui) { tf.addProperty("width", ui.__get__width, null); tf.addProperty("height", ui.__get__height, null); tf.addProperty("left", ui.__get__left, null); tf.addProperty("x", ui.__get__x, null); tf.addProperty("top", ui.__get__top, null); tf.addProperty("y", ui.__get__y, null); tf.addProperty("right", ui.__get__right, null); tf.addProperty("bottom", ui.__get__bottom, null); tf.addProperty("visible", ui.__get__visible, ui.__set__visible); } static function Extensions() { if (bExtended == true) { return(true); } bExtended = true; var _local6 = mx.core.UIObject.prototype; var _local9 = mx.skins.SkinElement.prototype; addGeometry(_local9, _local6); mx.events.UIEventDispatcher.initialize(_local6); var _local13 = mx.skins.ColoredSkinElement; mx.styles.CSSTextStyles.addTextStyles(_local6); var _local5 = MovieClip.prototype; _local5.getTopLevel = _local6.getTopLevel; _local5.createLabel = _local6.createLabel; _local5.createObject = _local6.createObject; _local5.createClassObject = _local6.createClassObject; _local5.createEmptyObject = _local6.createEmptyObject; _local5.destroyObject = _local6.destroyObject; _global.ASSetPropFlags(_local5, "getTopLevel", 1); _global.ASSetPropFlags(_local5, "createLabel", 1); _global.ASSetPropFlags(_local5, "createObject", 1); _global.ASSetPropFlags(_local5, "createClassObject", 1); _global.ASSetPropFlags(_local5, "createEmptyObject", 1); _global.ASSetPropFlags(_local5, "destroyObject", 1); _local5.__getTextFormat = _local6.__getTextFormat; _local5._getTextFormat = _local6._getTextFormat; _local5.getStyleName = _local6.getStyleName; _local5.getStyle = _local6.getStyle; _global.ASSetPropFlags(_local5, "__getTextFormat", 1); _global.ASSetPropFlags(_local5, "_getTextFormat", 1); _global.ASSetPropFlags(_local5, "getStyleName", 1); _global.ASSetPropFlags(_local5, "getStyle", 1); var _local7 = TextField.prototype; addGeometry(_local7, _local6); _local7.addProperty("enabled", function () { return(this.__enabled); }, function (x) { this.__enabled = x; this.invalidateStyle(); }); _local7.move = _local9.move; _local7.setSize = _local9.setSize; _local7.invalidateStyle = function () { this.invalidateFlag = true; }; _local7.draw = function () { if (this.invalidateFlag) { this.invalidateFlag = false; var _local2 = this._getTextFormat(); this.setTextFormat(_local2); this.setNewTextFormat(_local2); this.embedFonts = _local2.embedFonts == true; if (this.__text != undefined) { if (this.text == "") { this.text = this.__text; } delete this.__text; } this._visible = true; } }; _local7.setColor = function (color) { this.textColor = color; }; _local7.getStyle = _local5.getStyle; _local7.__getTextFormat = _local6.__getTextFormat; _local7.setValue = function (v) { this.text = v; }; _local7.getValue = function () { return(this.text); }; _local7.addProperty("value", function () { return(this.getValue()); }, function (v) { this.setValue(v); }); _local7._getTextFormat = function () { var _local2 = this.stylecache.tf; if (_local2 != undefined) { return(_local2); } _local2 = new TextFormat(); this.__getTextFormat(_local2); this.stylecache.tf = _local2; if (this.__enabled == false) { if (this.enabledColor == undefined) { var _local4 = this.getTextFormat(); this.enabledColor = _local4.color; } var _local3 = this.getStyle("disabledColor"); _local2.color = _local3; } else if (this.enabledColor != undefined) { if (_local2.color == undefined) { _local2.color = this.enabledColor; } } return(_local2); }; _local7.getPreferredWidth = function () { this.draw(); return(this.textWidth + 4); }; _local7.getPreferredHeight = function () { this.draw(); return(this.textHeight + 4); }; TextFormat.prototype.getTextExtent2 = function (s) { var _local3 = _root._getTextExtent; if (_local3 == undefined) { _root.createTextField("_getTextExtent", -2, 0, 0, 1000, 100); _local3 = _root._getTextExtent; _local3._visible = false; } _root._getTextExtent.text = s; var _local4 = this.align; this.align = "left"; _root._getTextExtent.setTextFormat(this); this.align = _local4; return({width:_local3.textWidth, height:_local3.textHeight}); }; if (_global.style == undefined) { _global.style = new mx.styles.CSSStyleDeclaration(); _global.cascadingStyles = true; _global.styles = new Object(); _global.skinRegistry = new Object(); if (_global._origWidth == undefined) { _global.origWidth = Stage.width; _global.origHeight = Stage.height; } } var _local4 = _root; while (_local4._parent != undefined) { _local4 = _local4._parent; } _local4.addProperty("width", function () { return(Stage.width); }, null); _local4.addProperty("height", function () { return(Stage.height); }, null); _global.ASSetPropFlags(_local4, "width", 1); _global.ASSetPropFlags(_local4, "height", 1); return(true); } static var bExtended = false; static var UIObjectExtended = Extensions(); static var UIObjectDependency = mx.core.UIObject; static var SkinElementDependency = mx.skins.SkinElement; static var CSSTextStylesDependency = mx.styles.CSSTextStyles; static var UIEventDispatcherDependency = mx.events.UIEventDispatcher; }
Symbol 386 MovieClip [__Packages.mx.skins.halo.Defaults] Frame 0
class mx.skins.halo.Defaults { var beginGradientFill, beginFill, moveTo, lineTo, curveTo, endFill; function Defaults () { } static function setThemeDefaults() { var _local2 = _global.style; _local2.themeColor = 8453965 /* 0x80FF4D */; _local2.disabledColor = 8684164 /* 0x848284 */; _local2.modalTransparency = 0; _local2.filled = true; _local2.stroked = true; _local2.strokeWidth = 1; _local2.strokeColor = 0; _local2.fillColor = 16777215 /* 0xFFFFFF */; _local2.repeatInterval = 35; _local2.repeatDelay = 500; _local2.fontFamily = "_sans"; _local2.fontSize = 12; _local2.selectionColor = 13500353 /* 0xCDFFC1 */; _local2.rollOverColor = 14942166 /* 0xE3FFD6 */; _local2.useRollOver = true; _local2.backgroundDisabledColor = 14540253 /* 0xDDDDDD */; _local2.selectionDisabledColor = 14540253 /* 0xDDDDDD */; _local2.selectionDuration = 200; _local2.openDuration = 250; _local2.borderStyle = "inset"; _local2.color = 734012 /* 0x0B333C */; _local2.textSelectedColor = 24371; _local2.textRollOverColor = 2831164 /* 0x2B333C */; _local2.textDisabledColor = 16777215 /* 0xFFFFFF */; _local2.vGridLines = true; _local2.hGridLines = false; _local2.vGridLineColor = 6710886 /* 0x666666 */; _local2.hGridLineColor = 6710886 /* 0x666666 */; _local2.headerColor = 15395562 /* 0xEAEAEA */; _local2.indentation = 17; _local2.folderOpenIcon = "TreeFolderOpen"; _local2.folderClosedIcon = "TreeFolderClosed"; _local2.defaultLeafIcon = "TreeNodeIcon"; _local2.disclosureOpenIcon = "TreeDisclosureOpen"; _local2.disclosureClosedIcon = "TreeDisclosureClosed"; _local2.popupDuration = 150; _local2.todayColor = 6710886 /* 0x666666 */; _local2 = (_global.styles.ScrollSelectList = new mx.styles.CSSStyleDeclaration()); _local2.backgroundColor = 16777215 /* 0xFFFFFF */; _local2.borderColor = 13290186 /* 0xCACACA */; _local2.borderStyle = "inset"; _local2 = (_global.styles.ComboBox = new mx.styles.CSSStyleDeclaration()); _local2.borderStyle = "inset"; _local2 = (_global.styles.NumericStepper = new mx.styles.CSSStyleDeclaration()); _local2.textAlign = "center"; _local2 = (_global.styles.RectBorder = new mx.styles.CSSStyleDeclaration()); _local2.borderColor = 14015965 /* 0xD5DDDD */; _local2.buttonColor = 7305079 /* 0x6F7777 */; _local2.shadowColor = 15658734 /* 0xEEEEEE */; _local2.highlightColor = 12897484 /* 0xC4CCCC */; _local2.shadowCapColor = 14015965 /* 0xD5DDDD */; _local2.borderCapColor = 9542041 /* 0x919999 */; var _local4 = new Object(); _local4.borderColor = 16711680 /* 0xFF0000 */; _local4.buttonColor = 16711680 /* 0xFF0000 */; _local4.shadowColor = 16711680 /* 0xFF0000 */; _local4.highlightColor = 16711680 /* 0xFF0000 */; _local4.shadowCapColor = 16711680 /* 0xFF0000 */; _local4.borderCapColor = 16711680 /* 0xFF0000 */; mx.core.UIComponent.prototype.origBorderStyles = _local4; var _local3; _local3 = (_global.styles.TextInput = new mx.styles.CSSStyleDeclaration()); _local3.backgroundColor = 16777215 /* 0xFFFFFF */; _local3.borderStyle = "inset"; _global.styles.TextArea = _global.styles.TextInput; _local3 = (_global.styles.Window = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "default"; _local3 = (_global.styles.windowStyles = new mx.styles.CSSStyleDeclaration()); _local3.fontWeight = "bold"; _local3 = (_global.styles.dataGridStyles = new mx.styles.CSSStyleDeclaration()); _local3.fontWeight = "bold"; _local3 = (_global.styles.Alert = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "alert"; _local3 = (_global.styles.ScrollView = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "inset"; _local3 = (_global.styles.View = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "none"; _local3 = (_global.styles.ProgressBar = new mx.styles.CSSStyleDeclaration()); _local3.color = 11187123 /* 0xAAB3B3 */; _local3.fontWeight = "bold"; _local3 = (_global.styles.AccordionHeader = new mx.styles.CSSStyleDeclaration()); _local3.fontWeight = "bold"; _local3.fontSize = "11"; _local3 = (_global.styles.Accordion = new mx.styles.CSSStyleDeclaration()); _local3.borderStyle = "solid"; _local3.backgroundColor = 16777215 /* 0xFFFFFF */; _local3.borderColor = 9081738 /* 0x8A938A */; _local3.headerHeight = 22; _local3.marginLeft = (_local3.marginRight = (_local3.marginTop = (_local3.marginBottom = -1))); _local3.verticalGap = -1; _local3 = (_global.styles.DateChooser = new mx.styles.CSSStyleDeclaration()); _local3.borderColor = 9542041 /* 0x919999 */; _local3.headerColor = 16777215 /* 0xFFFFFF */; _local3 = (_global.styles.CalendarLayout = new mx.styles.CSSStyleDeclaration()); _local3.fontSize = 10; _local3.textAlign = "right"; _local3.color = 2831164 /* 0x2B333C */; _local3 = (_global.styles.WeekDayStyle = new mx.styles.CSSStyleDeclaration()); _local3.fontWeight = "bold"; _local3.fontSize = 11; _local3.textAlign = "center"; _local3.color = 2831164 /* 0x2B333C */; _local3 = (_global.styles.TodayStyle = new mx.styles.CSSStyleDeclaration()); _local3.color = 16777215 /* 0xFFFFFF */; _local3 = (_global.styles.HeaderDateText = new mx.styles.CSSStyleDeclaration()); _local3.fontSize = 12; _local3.fontWeight = "bold"; _local3.textAlign = "center"; } function drawRoundRect(x, y, w, h, r, c, alpha, rot, gradient, ratios) { if (typeof(r) == "object") { var _local18 = r.br; var _local16 = r.bl; var _local15 = r.tl; var _local10 = r.tr; } else { var _local10 = r; var _local15 = _local10; var _local16 = _local15; var _local18 = _local16; } if (typeof(c) == "object") { if (typeof(alpha) != "object") { var _local9 = [alpha, alpha]; } else { var _local9 = alpha; } if (ratios == undefined) { ratios = [0, 255]; } var _local14 = h * 0.7; if (typeof(rot) != "object") { var _local11 = {matrixType:"box", x:-_local14, y:_local14, w:w * 2, h:h * 4, r:rot * 0.0174532925199433 /* Math.PI/180 */}; } else { var _local11 = rot; } if (gradient == "radial") { beginGradientFill("radial", c, _local9, ratios, _local11); } else { beginGradientFill("linear", c, _local9, ratios, _local11); } } else if (c != undefined) { beginFill(c, alpha); } r = _local18; var _local13 = r - (r * 0.707106781186547); var _local12 = r - (r * 0.414213562373095); moveTo(x + w, (y + h) - r); lineTo(x + w, (y + h) - r); curveTo(x + w, (y + h) - _local12, (x + w) - _local13, (y + h) - _local13); curveTo((x + w) - _local12, y + h, (x + w) - r, y + h); r = _local16; _local13 = r - (r * 0.707106781186547); _local12 = r - (r * 0.414213562373095); lineTo(x + r, y + h); curveTo(x + _local12, y + h, x + _local13, (y + h) - _local13); curveTo(x, (y + h) - _local12, x, (y + h) - r); r = _local15; _local13 = r - (r * 0.707106781186547); _local12 = r - (r * 0.414213562373095); lineTo(x, y + r); curveTo(x, y + _local12, x + _local13, y + _local13); curveTo(x + _local12, y, x + r, y); r = _local10; _local13 = r - (r * 0.707106781186547); _local12 = r - (r * 0.414213562373095); lineTo((x + w) - r, y); curveTo((x + w) - _local12, y, (x + w) - _local13, y + _local13); curveTo(x + w, y + _local12, x + w, y + r); lineTo(x + w, (y + h) - r); if (c != undefined) { endFill(); } } static function classConstruct() { mx.core.ext.UIObjectExtensions.Extensions(); setThemeDefaults(); mx.core.UIObject.prototype.drawRoundRect = mx.skins.halo.Defaults.prototype.drawRoundRect; return(true); } static var classConstructed = classConstruct(); static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration; static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; static var UIObjectDependency = mx.core.UIObject; }
Symbol 387 MovieClip [__Packages.mx.managers.SystemManager] Frame 0
class mx.managers.SystemManager { static var _xAddEventListener, addEventListener, __addEventListener, _xRemoveEventListener, removeEventListener, __removeEventListener, form, __screen, dispatchEvent; function SystemManager () { } static function init(Void) { if (_initialized == false) { _initialized = true; mx.events.EventDispatcher.initialize(mx.managers.SystemManager); Mouse.addListener(mx.managers.SystemManager); Stage.addListener(mx.managers.SystemManager); _xAddEventListener = addEventListener; addEventListener = __addEventListener; _xRemoveEventListener = removeEventListener; removeEventListener = __removeEventListener; } } static function addFocusManager(f) { form = f; f.focusManager.activate(); } static function removeFocusManager(f) { } static function onMouseDown(Void) { var _local1 = form; _local1.focusManager._onMouseDown(); } static function onResize(Void) { var _local7 = Stage.width; var _local6 = Stage.height; var _local9 = _global.origWidth; var _local8 = _global.origHeight; var _local3 = Stage.align; var _local5 = (_local9 - _local7) / 2; var _local4 = (_local8 - _local6) / 2; if (_local3 == "T") { _local4 = 0; } else if (_local3 == "B") { _local4 = _local8 - _local6; } else if (_local3 == "L") { _local5 = 0; } else if (_local3 == "R") { _local5 = _local9 - _local7; } else if (_local3 == "LT") { _local4 = 0; _local5 = 0; } else if (_local3 == "TR") { _local4 = 0; _local5 = _local9 - _local7; } else if (_local3 == "LB") { _local4 = _local8 - _local6; _local5 = 0; } else if (_local3 == "RB") { _local4 = _local8 - _local6; _local5 = _local9 - _local7; } if (__screen == undefined) { __screen = new Object(); } __screen.x = _local5; __screen.y = _local4; __screen.width = _local7; __screen.height = _local6; _root.focusManager.relocate(); dispatchEvent({type:"resize"}); } static function get screen() { init(); if (__screen == undefined) { onResize(); } return(__screen); } static var _initialized = false; static var idleFrames = 0; static var isMouseDown = false; static var forms = new Array(); }
Symbol 388 MovieClip [__Packages.mx.managers.FocusManager] Frame 0
class mx.managers.FocusManager extends mx.core.UIComponent { var __defaultPushButton, defPushButton, form, move, tabEnabled, _width, _height, _x, _y, _alpha, _parent, tabCapture, watch, lastMouse, _visible, lastFocus, doLater, lastSelFocus, cancelAllDoLaters, _searchKey, _lastTarget, _firstNode, _nextIsNext, _nextNode, _lastx, _prevNode, _needPrev, _foundList, _prevObj, _nextObj, _firstObj, _lastObj, _lastNode, lastTabFocus, findFocusFromObject; function FocusManager () { super(); } function get defaultPushButton() { return(__defaultPushButton); } function set defaultPushButton(x) { if (x != __defaultPushButton) { __defaultPushButton.__set__emphasized(false); __defaultPushButton = x; defPushButton = x; x.__set__emphasized(true); } //return(defaultPushButton); } function getMaxTabIndex(o) { var _local3 = 0; var _local6; for (_local6 in o) { var _local2 = o[_local6]; if (_local2._parent == o) { if (_local2.tabIndex != undefined) { if (_local2.tabIndex > _local3) { _local3 = _local2.tabIndex; } } if (_local2.tabChildren == true) { var _local4 = getMaxTabIndex(_local2); if (_local4 > _local3) { _local3 = _local4; } } } } return(_local3); } function getNextTabIndex(Void) { return(getMaxTabIndex(form) + 1); } function get nextTabIndex() { return(getNextTabIndex()); } function relocate(Void) { var _local2 = mx.managers.SystemManager.__get__screen(); move(_local2.x - 1, _local2.y - 1); } function init(Void) { super.init(); tabEnabled = false; _width = (_height = 1); _x = (_y = -1); _alpha = 0; _parent.focusManager = this; _parent.tabChildren = true; _parent.tabEnabled = false; form = _parent; _parent.addEventListener("hide", this); _parent.addEventListener("reveal", this); mx.managers.SystemManager.init(); mx.managers.SystemManager.addFocusManager(form); tabCapture.tabIndex = 0; watch("enabled", enabledChanged); Selection.addListener(this); lastMouse = new Object(); _global.ASSetPropFlags(_parent, "focusManager", 1); _global.ASSetPropFlags(_parent, "tabChildren", 1); _global.ASSetPropFlags(_parent, "tabEnabled", 1); } function enabledChanged(id, oldValue, newValue) { _visible = newValue; return(newValue); } function activate(Void) { Key.addListener(this); activated = (_visible = true); if (lastFocus != undefined) { bNeedFocus = true; if (!mx.managers.SystemManager.isMouseDown) { doLater(this, "restoreFocus"); } } } function deactivate(Void) { Key.removeListener(this); activated = (_visible = false); var _local2 = getSelectionFocus(); var _local3 = getActualFocus(_local2); if (isOurFocus(_local3)) { lastSelFocus = _local2; lastFocus = _local3; } cancelAllDoLaters(); } function isOurFocus(o) { if (o.focusManager == this) { return(true); } while (o != undefined) { if (o.focusManager != undefined) { return(false); } if (o._parent == _parent) { return(true); } o = o._parent; } return(false); } function onSetFocus(o, n) { if (n == null) { if (activated) { bNeedFocus = true; } } else { var _local2 = getFocus(); if (isOurFocus(_local2)) { bNeedFocus = false; lastFocus = _local2; lastSelFocus = n; } } } function restoreFocus(Void) { var _local2 = lastSelFocus.hscroll; if (_local2 != undefined) { var _local5 = lastSelFocus.scroll; var _local4 = lastSelFocus.background; } lastFocus.setFocus(); var _local3 = Selection; Selection.setSelection(_local3.lastBeginIndex, _local3.lastEndIndex); if (_local2 != undefined) { lastSelFocus.scroll = _local5; lastSelFocus.hscroll = _local2; lastSelFocus.background = _local4; } } function onUnload(Void) { mx.managers.SystemManager.removeFocusManager(form); } function setFocus(o) { if (o == null) { Selection.setFocus(null); } else if (o.setFocus == undefined) { Selection.setFocus(o); } else { o.setFocus(); } } function getActualFocus(o) { var _local1 = o._parent; while (_local1 != undefined) { if (_local1.focusTextField != undefined) { while (_local1.focusTextField != undefined) { o = _local1; _local1 = _local1._parent; if (_local1 == undefined) { return(undefined); } if (_local1.focusTextField == undefined) { return(o); } } } if (_local1.tabEnabled != true) { return(o); } o = _local1; _local1 = o._parent; } return(undefined); } function getSelectionFocus() { var m = Selection.getFocus(); var o = eval (m); return(o); } function getFocus(Void) { var _local2 = getSelectionFocus(); return(getActualFocus(_local2)); } function walkTree(p, index, groupName, dir, lookup, firstChild) { var _local5 = true; var _local11; for (_local11 in p) { var _local2 = p[_local11]; if ((((_local2._parent == p) && (_local2.enabled != false)) && (_local2._visible != false)) && ((_local2.tabEnabled == true) || ((_local2.tabEnabled != false) && ((((((((_local2.onPress != undefined) || (_local2.onRelease != undefined)) || (_local2.onReleaseOutside != undefined)) || (_local2.onDragOut != undefined)) || (_local2.onDragOver != undefined)) || (_local2.onRollOver != undefined)) || (_local2.onRollOut != undefined)) || (_local2 instanceof TextField))))) { if (_local2._searchKey == _searchKey) { continue; } _local2._searchKey = _searchKey; if (_local2 != _lastTarget) { if (((_local2.groupName != undefined) || (groupName != undefined)) && (_local2.groupName == groupName)) { continue; } if ((_local2 instanceof TextField) && (_local2.selectable == false)) { continue; } if (_local5 || (((_local2.groupName != undefined) && (_local2.groupName == _firstNode.groupName)) && (_local2.selected == true))) { if (firstChild) { _firstNode = _local2; firstChild = false; } } if (_nextIsNext == true) { if ((((_local2.groupName != undefined) && (_local2.groupName == _nextNode.groupName)) && (_local2.selected == true)) || ((_nextNode == undefined) && ((_local2.groupName == undefined) || ((_local2.groupName != undefined) && (_local2.groupName != groupName))))) { _nextNode = _local2; } } if ((_local2.groupName == undefined) || (groupName != _local2.groupName)) { if (((_lastx.groupName != undefined) && (_local2.groupName == _lastx.groupName)) && (_lastx.selected == true)) { } else { _lastx = _local2; } } } else { _prevNode = _lastx; _needPrev = false; _nextIsNext = true; } if (_local2.tabIndex != undefined) { if (_local2.tabIndex == index) { if (_foundList[_local2._name] == undefined) { if (_needPrev) { _prevObj = _local2; _needPrev = false; } _nextObj = _local2; } } if (dir && (_local2.tabIndex > index)) { if (((_nextObj == undefined) || ((_nextObj.tabIndex > _local2.tabIndex) && (((_local2.groupName == undefined) || (_nextObj.groupName == undefined)) || (_local2.groupName != _nextObj.groupName)))) || ((((_nextObj.groupName != undefined) && (_nextObj.groupName == _local2.groupName)) && (_nextObj.selected != true)) && ((_local2.selected == true) || (_nextObj.tabIndex > _local2.tabIndex)))) { _nextObj = _local2; } } else if ((!dir) && (_local2.tabIndex < index)) { if (((_prevObj == undefined) || ((_prevObj.tabIndex < _local2.tabIndex) && (((_local2.groupName == undefined) || (_prevObj.groupName == undefined)) || (_local2.groupName != _prevObj.groupName)))) || ((((_prevObj.groupName != undefined) && (_prevObj.groupName == _local2.groupName)) && (_prevObj.selected != true)) && ((_local2.selected == true) || (_prevObj.tabIndex < _local2.tabIndex)))) { _prevObj = _local2; } } if (((_firstObj == undefined) || ((_local2.tabIndex < _firstObj.tabIndex) && (((_local2.groupName == undefined) || (_firstObj.groupName == undefined)) || (_local2.groupName != _firstObj.groupName)))) || ((((_firstObj.groupName != undefined) && (_firstObj.groupName == _local2.groupName)) && (_firstObj.selected != true)) && ((_local2.selected == true) || (_local2.tabIndex < _firstObj.tabIndex)))) { _firstObj = _local2; } if (((_lastObj == undefined) || ((_local2.tabIndex > _lastObj.tabIndex) && (((_local2.groupName == undefined) || (_lastObj.groupName == undefined)) || (_local2.groupName != _lastObj.groupName)))) || ((((_lastObj.groupName != undefined) && (_lastObj.groupName == _local2.groupName)) && (_lastObj.selected != true)) && ((_local2.selected == true) || (_local2.tabIndex > _lastObj.tabIndex)))) { _lastObj = _local2; } } if (_local2.tabChildren) { getTabCandidateFromChildren(_local2, index, groupName, dir, _local5 && (firstChild)); } _local5 = false; } else if (((_local2._parent == p) && (_local2.tabChildren == true)) && (_local2._visible != false)) { if (_local2 == _lastTarget) { if (_local2._searchKey == _searchKey) { continue; } _local2._searchKey = _searchKey; if (_prevNode == undefined) { var _local3 = _lastx; var _local7 = false; while (_local3 != undefined) { if (_local3 == _local2) { _local7 = true; break; } _local3 = _local3._parent; } if (_local7 == false) { _prevNode = _lastx; } } _needPrev = false; if (_nextNode == undefined) { _nextIsNext = true; } } else if (!((_local2.focusManager != undefined) && (_local2.focusManager._parent == _local2))) { if (_local2._searchKey == _searchKey) { continue; } _local2._searchKey = _searchKey; getTabCandidateFromChildren(_local2, index, groupName, dir, _local5 && (firstChild)); } _local5 = false; } } _lastNode = _lastx; if (lookup) { if (p._parent != undefined) { if (p != _parent) { if ((_prevNode == undefined) && (dir)) { _needPrev = true; } else if ((_nextNode == undefined) && (!dir)) { _nextIsNext = false; } _lastTarget = _lastTarget._parent; getTabCandidate(p._parent, index, groupName, dir, true); } } } } function getTabCandidate(o, index, groupName, dir, firstChild) { var _local2; var _local3 = true; if (o == _parent) { _local2 = o; _local3 = false; } else { _local2 = o._parent; if (_local2 == undefined) { _local2 = o; _local3 = false; } } walkTree(_local2, index, groupName, dir, _local3, firstChild); } function getTabCandidateFromChildren(o, index, groupName, dir, firstChild) { walkTree(o, index, groupName, dir, false, firstChild); } function getFocusManagerFromObject(o) { while (o != undefined) { if (o.focusManager != undefined) { return(o.focusManager); } o = o._parent; } return(undefined); } function tabHandler(Void) { bDrawFocus = true; var _local5 = getSelectionFocus(); var _local4 = getActualFocus(_local5); if (_local4 != _local5) { _local5 = _local4; } if (getFocusManagerFromObject(_local5) != this) { _local5 == undefined; } if (_local5 == undefined) { _local5 = form; } else if (_local5.tabIndex != undefined) { if ((_foundList != undefined) || (_foundList.tabIndex != _local5.tabIndex)) { _foundList = new Object(); _foundList.tabIndex = _local5.tabIndex; } _foundList[_local5._name] = _local5; } var _local3 = Key.isDown(16) != true; _searchKey = getTimer(); _needPrev = true; _nextIsNext = false; _lastx = undefined; _firstNode = undefined; _lastNode = undefined; _nextNode = undefined; _prevNode = undefined; _firstObj = undefined; _lastObj = undefined; _nextObj = undefined; _prevObj = undefined; _lastTarget = _local5; var _local6 = _local5; getTabCandidate(_local6, ((_local5.tabIndex == undefined) ? 0 : (_local5.tabIndex)), _local5.groupName, _local3, true); var _local2; if (_local3) { if (_nextObj != undefined) { _local2 = _nextObj; } else { _local2 = _firstObj; } } else if (_prevObj != undefined) { _local2 = _prevObj; } else { _local2 = _lastObj; } if (_local2.tabIndex != _local5.tabIndex) { _foundList = new Object(); _foundList.tabIndex = _local2.tabIndex; _foundList[_local2._name] = _local2; } else { if (_foundList == undefined) { _foundList = new Object(); _foundList.tabIndex = _local2.tabIndex; } _foundList[_local2._name] = _local2; } if (_local2 == undefined) { if (_local3 == false) { if (_nextNode != undefined) { _local2 = _nextNode; } else { _local2 = _firstNode; } } else if ((_prevNode == undefined) || (_local5 == form)) { _local2 = _lastNode; } else { _local2 = _prevNode; } } if (_local2 == undefined) { return(undefined); } lastTabFocus = _local2; setFocus(_local2); if (_local2.emphasized != undefined) { if (defPushButton != undefined) { _local5 = defPushButton; defPushButton = _local2; _local5.emphasized = false; _local2.emphasized = true; } } else if ((defPushButton != undefined) && (defPushButton != __defaultPushButton)) { _local5 = defPushButton; defPushButton = __defaultPushButton; _local5.emphasized = false; __defaultPushButton.__set__emphasized(true); } } function onKeyDown(Void) { mx.managers.SystemManager.idleFrames = 0; if (defaultPushButtonEnabled) { if (Key.getCode() == 13) { if (defaultPushButton != undefined) { doLater(this, "sendDefaultPushButtonEvent"); } } } } function sendDefaultPushButtonEvent(Void) { defPushButton.dispatchEvent({type:"click"}); } function getMousedComponentFromChildren(x, y, o) { for (var _local7 in o) { var _local2 = o[_local7]; if (((_local2._visible && (_local2.enabled)) && (_local2._parent == o)) && (_local2._searchKey != _searchKey)) { _local2._searchKey = _searchKey; if (_local2.hitTest(x, y, true)) { if ((_local2.onPress != undefined) || (_local2.onRelease != undefined)) { return(_local2); } var _local3 = getMousedComponentFromChildren(x, y, _local2); if (_local3 != undefined) { return(_local3); } return(_local2); } } } return(undefined); } function mouseActivate(Void) { if (!bNeedFocus) { return(undefined); } _searchKey = getTimer(); var _local2 = getMousedComponentFromChildren(lastMouse.x, lastMouse.y, form); if (_local2 instanceof mx.core.UIComponent) { return(undefined); } _local2 = findFocusFromObject(_local2); if (_local2 == lastFocus) { return(undefined); } if (_local2 == undefined) { doLater(this, "restoreFocus"); return(undefined); } var _local3 = _local2.hscroll; if (_local3 != undefined) { var _local6 = _local2.scroll; var _local5 = _local2.background; } setFocus(_local2); var _local4 = Selection; Selection.setSelection(_local4.lastBeginIndex, _local4.lastEndIndex); if (_local3 != undefined) { _local2.scroll = _local6; _local2.hscroll = _local3; _local2.background = _local5; } } function _onMouseDown(Void) { bDrawFocus = false; if (lastFocus != undefined) { lastFocus.drawFocus(false); } mx.managers.SystemManager.idleFrames = 0; var _local3 = Selection; _local3.lastBeginIndex = Selection.getBeginIndex(); _local3.lastEndIndex = Selection.getEndIndex(); lastMouse.x = _root._xmouse; lastMouse.y = _root._ymouse; _root.localToGlobal(lastMouse); } function onMouseUp(Void) { if (_visible) { doLater(this, "mouseActivate"); } } function handleEvent(e) { if (e.type == "reveal") { mx.managers.SystemManager.activate(form); } else { mx.managers.SystemManager.deactivate(form); } } static function enableFocusManagement() { if (!initialized) { initialized = true; Object.registerClass("FocusManager", mx.managers.FocusManager); if (_root.focusManager == undefined) { _root.createClassObject(mx.managers.FocusManager, "focusManager", mx.managers.DepthManager.highestDepth--); } } } static var symbolName = "FocusManager"; static var symbolOwner = mx.managers.FocusManager; static var version = "2.0.1.78"; var className = "FocusManager"; var bNeedFocus = false; var bDrawFocus = false; var defaultPushButtonEnabled = true; var activated = true; static var initialized = false; static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; }
Symbol 389 MovieClip [__Packages.mx.skins.halo.FocusRect] Frame 0
class mx.skins.halo.FocusRect extends mx.skins.SkinElement { var boundingBox_mc, _xscale, _yscale, clear, beginFill, drawRoundRect, endFill, _visible; function FocusRect () { super(); boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function draw(o) { o.adjustFocusRect(); } function setSize(w, h, r, a, rectCol) { _xscale = (_yscale = 100); clear(); if (typeof(r) == "object") { r.br = ((r.br > 2) ? (r.br - 2) : 0); r.bl = ((r.bl > 2) ? (r.bl - 2) : 0); r.tr = ((r.tr > 2) ? (r.tr - 2) : 0); r.tl = ((r.tl > 2) ? (r.tl - 2) : 0); beginFill(rectCol, a * 0.3); drawRoundRect(0, 0, w, h, r); drawRoundRect(2, 2, w - 4, h - 4, r); endFill(); r.br = ((r.br > 1) ? (r.br + 1) : 0); r.bl = ((r.bl > 1) ? (r.bl + 1) : 0); r.tr = ((r.tr > 1) ? (r.tr + 1) : 0); r.tl = ((r.tl > 1) ? (r.tl + 1) : 0); beginFill(rectCol, a * 0.3); drawRoundRect(1, 1, w - 2, h - 2, r); r.br = ((r.br > 1) ? (r.br - 1) : 0); r.bl = ((r.bl > 1) ? (r.bl - 1) : 0); r.tr = ((r.tr > 1) ? (r.tr - 1) : 0); r.tl = ((r.tl > 1) ? (r.tl - 1) : 0); drawRoundRect(2, 2, w - 4, h - 4, r); endFill(); } else { var _local5; if (r != 0) { _local5 = r - 2; } else { _local5 = 0; } beginFill(rectCol, a * 0.3); drawRoundRect(0, 0, w, h, r); drawRoundRect(2, 2, w - 4, h - 4, _local5); endFill(); beginFill(rectCol, a * 0.3); if (r != 0) { _local5 = r - 2; r = r - 1; } else { _local5 = 0; r = 0; } drawRoundRect(1, 1, w - 2, h - 2, r); drawRoundRect(2, 2, w - 4, h - 4, _local5); endFill(); } } function handleEvent(e) { if (e.type == "unload") { _visible = true; } else if (e.type == "resize") { e.target.adjustFocusRect(); } else if (e.type == "move") { e.target.adjustFocusRect(); } } static function classConstruct() { mx.core.UIComponent.prototype.drawFocus = function (focused) { var _local2 = this._parent.focus_mc; if (!focused) { _local2._visible = false; this.removeEventListener("unload", _local2); this.removeEventListener("move", _local2); this.removeEventListener("resize", _local2); } else { if (_local2 == undefined) { _local2 = this._parent.createChildAtDepth("FocusRect", mx.managers.DepthManager.kTop); _local2.tabEnabled = false; this._parent.focus_mc = _local2; } else { _local2._visible = true; } _local2.draw(this); if (_local2.getDepth() < this.getDepth()) { _local2.setDepthAbove(this); } this.addEventListener("unload", _local2); this.addEventListener("move", _local2); this.addEventListener("resize", _local2); } }; mx.core.UIComponent.prototype.adjustFocusRect = function () { var _local2 = this.getStyle("themeColor"); if (_local2 == undefined) { _local2 = 8453965 /* 0x80FF4D */; } var _local3 = this._parent.focus_mc; _local3.setSize(this.width + 4, this.height + 4, 0, 100, _local2); _local3.move(this.x - 2, this.y - 2); }; TextField.prototype.drawFocus = mx.core.UIComponent.prototype.drawFocus; TextField.prototype.adjustFocusRect = mx.core.UIComponent.prototype.adjustFocusRect; mx.skins.halo.FocusRect.prototype.drawRoundRect = mx.skins.halo.Defaults.prototype.drawRoundRect; return(true); } static var classConstructed = classConstruct(); static var DefaultsDependency = mx.skins.halo.Defaults; static var UIComponentDependency = mx.core.UIComponent; }
Symbol 390 MovieClip [__Packages.mx.managers.OverlappedWindows] Frame 0
class mx.managers.OverlappedWindows { function OverlappedWindows () { } static function checkIdle(Void) { if (mx.managers.SystemManager.idleFrames > 10) { mx.managers.SystemManager.dispatchEvent({type:"idle"}); } else { mx.managers.SystemManager.idleFrames++; } } static function __addEventListener(e, o, l) { if (e == "idle") { if (mx.managers.SystemManager.interval == undefined) { mx.managers.SystemManager.interval = setInterval(mx.managers.SystemManager.checkIdle, 100); } } mx.managers.SystemManager._xAddEventListener(e, o, l); } static function __removeEventListener(e, o, l) { if (e == "idle") { if (mx.managers.SystemManager._xRemoveEventListener(e, o, l) == 0) { clearInterval(mx.managers.SystemManager.interval); } } else { mx.managers.SystemManager._xRemoveEventListener(e, o, l); } } static function onMouseDown(Void) { mx.managers.SystemManager.idleFrames = 0; mx.managers.SystemManager.isMouseDown = true; var _local5 = _root; var _local3; var _local8 = _root._xmouse; var _local7 = _root._ymouse; if (mx.managers.SystemManager.form.modalWindow == undefined) { if (mx.managers.SystemManager.forms.length > 1) { var _local6 = mx.managers.SystemManager.forms.length; var _local4; _local4 = 0; while (_local4 < _local6) { var _local2 = mx.managers.SystemManager.forms[_local4]; if (_local2._visible) { if (_local2.hitTest(_local8, _local7)) { if (_local3 == undefined) { _local3 = _local2.getDepth(); _local5 = _local2; } else if (_local3 < _local2.getDepth()) { _local3 = _local2.getDepth(); _local5 = _local2; } } } _local4++; } if (_local5 != mx.managers.SystemManager.form) { mx.managers.SystemManager.activate(_local5); } } } var _local9 = mx.managers.SystemManager.form; _local9.focusManager._onMouseDown(); } static function onMouseMove(Void) { mx.managers.SystemManager.idleFrames = 0; } static function onMouseUp(Void) { mx.managers.SystemManager.isMouseDown = false; mx.managers.SystemManager.idleFrames = 0; } static function activate(f) { if (mx.managers.SystemManager.form != undefined) { if ((mx.managers.SystemManager.form != f) && (mx.managers.SystemManager.forms.length > 1)) { var _local1 = mx.managers.SystemManager.form; _local1.focusManager.deactivate(); } } mx.managers.SystemManager.form = f; f.focusManager.activate(); } static function deactivate(f) { if (mx.managers.SystemManager.form != undefined) { if ((mx.managers.SystemManager.form == f) && (mx.managers.SystemManager.forms.length > 1)) { var _local5 = mx.managers.SystemManager.form; _local5.focusManager.deactivate(); var _local3 = mx.managers.SystemManager.forms.length; var _local1; var _local2; _local1 = 0; while (_local1 < _local3) { if (mx.managers.SystemManager.forms[_local1] == f) { _local1 = _local1 + 1; while (_local1 < _local3) { if (mx.managers.SystemManager.forms[_local1]._visible == true) { _local2 = mx.managers.SystemManager.forms[_local1]; } _local1++; } mx.managers.SystemManager.form = _local2; break; } if (mx.managers.SystemManager.forms[_local1]._visible == true) { _local2 = mx.managers.SystemManager.forms[_local1]; } _local1++; } _local5 = mx.managers.SystemManager.form; _local5.focusManager.activate(); } } } static function addFocusManager(f) { mx.managers.SystemManager.forms.push(f); mx.managers.SystemManager.activate(f); } static function removeFocusManager(f) { var _local3 = mx.managers.SystemManager.forms.length; var _local1; _local1 = 0; while (_local1 < _local3) { if (mx.managers.SystemManager.forms[_local1] == f) { if (mx.managers.SystemManager.form == f) { mx.managers.SystemManager.deactivate(f); } mx.managers.SystemManager.forms.splice(_local1, 1); return(undefined); } _local1++; } } static function enableOverlappedWindows() { if (!initialized) { initialized = true; mx.managers.SystemManager.checkIdle = checkIdle; mx.managers.SystemManager.__addEventListener = __addEventListener; mx.managers.SystemManager.__removeEventListener = __removeEventListener; mx.managers.SystemManager.onMouseDown = onMouseDown; mx.managers.SystemManager.onMouseMove = onMouseMove; mx.managers.SystemManager.onMouseUp = onMouseUp; mx.managers.SystemManager.activate = activate; mx.managers.SystemManager.deactivate = deactivate; mx.managers.SystemManager.addFocusManager = addFocusManager; mx.managers.SystemManager.removeFocusManager = removeFocusManager; } } static var initialized = false; static var SystemManagerDependency = mx.managers.SystemManager; }
Symbol 391 MovieClip [__Packages.mx.styles.CSSSetStyle] Frame 0
class mx.styles.CSSSetStyle { var styleName, stylecache, _color, setColor, invalidateStyle; function CSSSetStyle () { } function _setStyle(styleProp, newValue) { this[styleProp] = newValue; if (mx.styles.StyleManager.TextStyleMap[styleProp] != undefined) { if (styleProp == "color") { if (isNaN(newValue)) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } } _level0.changeTextStyleInChildren(styleProp); return(undefined); } if (mx.styles.StyleManager.isColorStyle(styleProp)) { if (isNaN(newValue)) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } if (styleProp == "themeColor") { var _local7 = mx.styles.StyleManager.colorNames.haloBlue; var _local6 = mx.styles.StyleManager.colorNames.haloGreen; var _local8 = mx.styles.StyleManager.colorNames.haloOrange; var _local4 = {}; _local4[_local7] = 12188666 /* 0xB9FBFA */; _local4[_local6] = 13500353 /* 0xCDFFC1 */; _local4[_local8] = 16766319 /* 0xFFD56F */; var _local5 = {}; _local5[_local7] = 13958653 /* 0xD4FDFD */; _local5[_local6] = 14942166 /* 0xE3FFD6 */; _local5[_local8] = 16772787 /* 0xFFEEB3 */; var _local9 = _local4[newValue]; var _local10 = _local5[newValue]; if (_local9 == undefined) { _local9 = newValue; } if (_local10 == undefined) { _local10 = newValue; } setStyle("selectionColor", _local9); setStyle("rollOverColor", _local10); } _level0.changeColorStyleInChildren(styleName, styleProp, newValue); } else { if ((styleProp == "backgroundColor") && (isNaN(newValue))) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } _level0.notifyStyleChangeInChildren(styleName, styleProp, newValue); } } function changeTextStyleInChildren(styleProp) { var _local4 = getTimer(); var _local5; for (_local5 in this) { var _local2 = this[_local5]; if (_local2._parent == this) { if (_local2.searchKey != _local4) { if (_local2.stylecache != undefined) { delete _local2.stylecache.tf; delete _local2.stylecache[styleProp]; } _local2.invalidateStyle(styleProp); _local2.changeTextStyleInChildren(styleProp); _local2.searchKey = _local4; } } } } function changeColorStyleInChildren(sheetName, colorStyle, newValue) { var _local6 = getTimer(); var _local7; for (_local7 in this) { var _local2 = this[_local7]; if (_local2._parent == this) { if (_local2.searchKey != _local6) { if (((_local2.getStyleName() == sheetName) || (sheetName == undefined)) || (sheetName == "_global")) { if (_local2.stylecache != undefined) { delete _local2.stylecache[colorStyle]; } if (typeof(_local2._color) == "string") { if (_local2._color == colorStyle) { var _local4 = _local2.getStyle(colorStyle); if (colorStyle == "color") { if (stylecache.tf.color != undefined) { stylecache.tf.color = _local4; } } _local2.setColor(_local4); } } else if (_local2._color[colorStyle] != undefined) { if (typeof(_local2) != "movieclip") { _local2._parent.invalidateStyle(); } else { _local2.invalidateStyle(colorStyle); } } } _local2.changeColorStyleInChildren(sheetName, colorStyle, newValue); _local2.searchKey = _local6; } } } } function notifyStyleChangeInChildren(sheetName, styleProp, newValue) { var _local5 = getTimer(); var _local6; for (_local6 in this) { var _local2 = this[_local6]; if (_local2._parent == this) { if (_local2.searchKey != _local5) { if (((_local2.styleName == sheetName) || ((_local2.styleName != undefined) && (typeof(_local2.styleName) == "movieclip"))) || (sheetName == undefined)) { if (_local2.stylecache != undefined) { delete _local2.stylecache[styleProp]; delete _local2.stylecache.tf; } delete _local2.enabledColor; _local2.invalidateStyle(styleProp); } _local2.notifyStyleChangeInChildren(sheetName, styleProp, newValue); _local2.searchKey = _local5; } } } } function setStyle(styleProp, newValue) { if (stylecache != undefined) { delete stylecache[styleProp]; delete stylecache.tf; } this[styleProp] = newValue; if (mx.styles.StyleManager.isColorStyle(styleProp)) { if (isNaN(newValue)) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } if (styleProp == "themeColor") { var _local10 = mx.styles.StyleManager.colorNames.haloBlue; var _local9 = mx.styles.StyleManager.colorNames.haloGreen; var _local11 = mx.styles.StyleManager.colorNames.haloOrange; var _local6 = {}; _local6[_local10] = 12188666 /* 0xB9FBFA */; _local6[_local9] = 13500353 /* 0xCDFFC1 */; _local6[_local11] = 16766319 /* 0xFFD56F */; var _local7 = {}; _local7[_local10] = 13958653 /* 0xD4FDFD */; _local7[_local9] = 14942166 /* 0xE3FFD6 */; _local7[_local11] = 16772787 /* 0xFFEEB3 */; var _local12 = _local6[newValue]; var _local13 = _local7[newValue]; if (_local12 == undefined) { _local12 = newValue; } if (_local13 == undefined) { _local13 = newValue; } setStyle("selectionColor", _local12); setStyle("rollOverColor", _local13); } if (typeof(_color) == "string") { if (_color == styleProp) { if (styleProp == "color") { if (stylecache.tf.color != undefined) { stylecache.tf.color = newValue; } } setColor(newValue); } } else if (_color[styleProp] != undefined) { invalidateStyle(styleProp); } changeColorStyleInChildren(undefined, styleProp, newValue); } else { if ((styleProp == "backgroundColor") && (isNaN(newValue))) { newValue = mx.styles.StyleManager.getColorName(newValue); this[styleProp] = newValue; if (newValue == undefined) { return(undefined); } } invalidateStyle(styleProp); } if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (styleProp == "styleName")) { var _local8; var _local5 = newValue; if (styleProp == "styleName") { _local8 = ((typeof(newValue) == "string") ? (_global.styles[newValue]) : (_local5)); _local5 = _local8.themeColor; if (_local5 != undefined) { _local8.rollOverColor = (_local8.selectionColor = _local5); } } notifyStyleChangeInChildren(undefined, styleProp, newValue); } } static function enableRunTimeCSS() { } static function classConstruct() { var _local2 = MovieClip.prototype; var _local3 = mx.styles.CSSSetStyle.prototype; mx.styles.CSSStyleDeclaration.prototype.setStyle = _local3._setStyle; _local2.changeTextStyleInChildren = _local3.changeTextStyleInChildren; _local2.changeColorStyleInChildren = _local3.changeColorStyleInChildren; _local2.notifyStyleChangeInChildren = _local3.notifyStyleChangeInChildren; _local2.setStyle = _local3.setStyle; _global.ASSetPropFlags(_local2, "changeTextStyleInChildren", 1); _global.ASSetPropFlags(_local2, "changeColorStyleInChildren", 1); _global.ASSetPropFlags(_local2, "notifyStyleChangeInChildren", 1); _global.ASSetPropFlags(_local2, "setStyle", 1); var _local4 = TextField.prototype; _local4.setStyle = _local2.setStyle; _local4.changeTextStyleInChildren = _local3.changeTextStyleInChildren; return(true); } static var classConstructed = classConstruct(); static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration; }
Symbol 392 MovieClip [__Packages.mx.core.ext.UIComponentExtensions] Frame 0
class mx.core.ext.UIComponentExtensions { function UIComponentExtensions () { } static function Extensions() { if (bExtended == true) { return(true); } bExtended = true; TextField.prototype.setFocus = function () { Selection.setFocus(this); }; TextField.prototype.onSetFocus = function (oldFocus) { if (this.tabEnabled != false) { if (this.getFocusManager().bDrawFocus) { this.drawFocus(true); } } }; TextField.prototype.onKillFocus = function (oldFocus) { if (this.tabEnabled != false) { this.drawFocus(false); } }; TextField.prototype.drawFocus = mx.core.UIComponent.prototype.drawFocus; TextField.prototype.getFocusManager = mx.core.UIComponent.prototype.getFocusManager; mx.managers.OverlappedWindows.enableOverlappedWindows(); mx.styles.CSSSetStyle.enableRunTimeCSS(); mx.managers.FocusManager.enableFocusManagement(); } static var bExtended = false; static var UIComponentExtended = Extensions(); static var UIComponentDependency = mx.core.UIComponent; static var FocusManagerDependency = mx.managers.FocusManager; static var OverlappedWindowsDependency = mx.managers.OverlappedWindows; }
Symbol 393 MovieClip [__Packages.mx.skins.halo.RectBorder] Frame 0
class mx.skins.halo.RectBorder extends mx.skins.RectBorder { var offset, getStyle, borderStyleName, __borderMetrics, className, borderColorName, backgroundColorName, shadowColorName, highlightColorName, buttonColorName, __get__width, __get__height, clear, _color, drawRoundRect, beginFill, drawRect, endFill; function RectBorder () { super(); } function init(Void) { borderWidths.default = 3; super.init(); } function getBorderMetrics(Void) { if (offset == undefined) { var _local3 = getStyle(borderStyleName); offset = borderWidths[_local3]; } if ((getStyle(borderStyleName) == "default") || (getStyle(borderStyleName) == "alert")) { __borderMetrics = {left:3, top:1, right:3, bottom:3}; return(__borderMetrics); } return(super.getBorderMetrics()); } function drawBorder(Void) { var _local6 = _global.styles[className]; if (_local6 == undefined) { _local6 = _global.styles.RectBorder; } var _local5 = getStyle(borderStyleName); var _local7 = getStyle(borderColorName); if (_local7 == undefined) { _local7 = _local6[borderColorName]; } var _local8 = getStyle(backgroundColorName); if (_local8 == undefined) { _local8 = _local6[backgroundColorName]; } var _local16 = getStyle("backgroundImage"); if (_local5 != "none") { var _local14 = getStyle(shadowColorName); if (_local14 == undefined) { _local14 = _local6[shadowColorName]; } var _local13 = getStyle(highlightColorName); if (_local13 == undefined) { _local13 = _local6[highlightColorName]; } var _local12 = getStyle(buttonColorName); if (_local12 == undefined) { _local12 = _local6[buttonColorName]; } var _local11 = getStyle(borderCapColorName); if (_local11 == undefined) { _local11 = _local6[borderCapColorName]; } var _local10 = getStyle(shadowCapColorName); if (_local10 == undefined) { _local10 = _local6[shadowCapColorName]; } } offset = borderWidths[_local5]; var _local9 = offset; var _local3 = __get__width(); var _local4 = __get__height(); clear(); _color = undefined; if (_local5 == "none") { } else if (_local5 == "inset") { _color = colorList; draw3dBorder(_local11, _local12, _local7, _local13, _local14, _local10); } else if (_local5 == "outset") { _color = colorList; draw3dBorder(_local11, _local7, _local12, _local14, _local13, _local10); } else if (_local5 == "alert") { var _local15 = getStyle("themeColor"); drawRoundRect(0, 5, _local3, _local4 - 5, 5, 6184542, 10); drawRoundRect(1, 4, _local3 - 2, _local4 - 5, 4, [6184542, 6184542], 10, 0, "radial"); drawRoundRect(2, 0, _local3 - 4, _local4 - 2, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(2, 0, _local3 - 4, _local4 - 2, 3, _local15, 50); drawRoundRect(3, 1, _local3 - 6, _local4 - 4, 2, 16777215, 100); } else if (_local5 == "default") { drawRoundRect(0, 5, _local3, _local4 - 5, {tl:5, tr:5, br:0, bl:0}, 6184542, 10); drawRoundRect(1, 4, _local3 - 2, _local4 - 5, {tl:4, tr:4, br:0, bl:0}, [6184542, 6184542], 10, 0, "radial"); drawRoundRect(2, 0, _local3 - 4, _local4 - 2, {tl:3, tr:3, br:0, bl:0}, [12897484, 11844796], 100, 0, "radial"); drawRoundRect(3, 1, _local3 - 6, _local4 - 4, {tl:2, tr:2, br:0, bl:0}, 16777215, 100); } else if (_local5 == "dropDown") { drawRoundRect(0, 0, _local3 + 1, _local4, {tl:4, tr:0, br:0, bl:4}, [13290186, 7895160], 100, -10, "linear"); drawRoundRect(1, 1, _local3 - 1, _local4 - 2, {tl:3, tr:0, br:0, bl:3}, 16777215, 100); } else if (_local5 == "menuBorder") { var _local15 = getStyle("themeColor"); drawRoundRect(4, 4, _local3 - 2, _local4 - 3, 0, [6184542, 6184542], 10, 0, "radial"); drawRoundRect(4, 4, _local3 - 1, _local4 - 2, 0, 6184542, 10); drawRoundRect(0, 0, _local3 + 1, _local4, 0, [0, 14342874], 100, 250, "linear"); drawRoundRect(0, 0, _local3 + 1, _local4, 0, _local15, 50); drawRoundRect(2, 2, _local3 - 3, _local4 - 4, 0, 16777215, 100); } else if (_local5 == "comboNonEdit") { } else { beginFill(_local7); drawRect(0, 0, _local3, _local4); drawRect(1, 1, _local3 - 1, _local4 - 1); endFill(); _color = borderColorName; } if (_local8 != undefined) { beginFill(_local8); drawRect(_local9, _local9, __get__width() - _local9, __get__height() - _local9); endFill(); } } function draw3dBorder(c1, c2, c3, c4, c5, c6) { var _local3 = __get__width(); var _local2 = __get__height(); beginFill(c1); drawRect(0, 0, _local3, _local2); drawRect(1, 0, _local3 - 1, _local2); endFill(); beginFill(c2); drawRect(1, 0, _local3 - 1, 1); endFill(); beginFill(c3); drawRect(1, _local2 - 1, _local3 - 1, _local2); endFill(); beginFill(c4); drawRect(1, 1, _local3 - 1, 2); endFill(); beginFill(c5); drawRect(1, _local2 - 2, _local3 - 1, _local2 - 1); endFill(); beginFill(c6); drawRect(1, 2, _local3 - 1, _local2 - 2); drawRect(2, 2, _local3 - 2, _local2 - 2); endFill(); } static function classConstruct() { mx.core.ext.UIObjectExtensions.Extensions(); _global.styles.rectBorderClass = mx.skins.halo.RectBorder; _global.skinRegistry.RectBorder = true; return(true); } static var symbolName = "RectBorder"; static var symbolOwner = mx.skins.halo.RectBorder; static var version = "2.0.1.78"; var borderCapColorName = "borderCapColor"; var shadowCapColorName = "shadowCapColor"; var colorList = {highlightColor:0, borderColor:0, buttonColor:0, shadowColor:0, borderCapColor:0, shadowCapColor:0}; var borderWidths = {none:0, solid:1, inset:2, outset:2, alert:3, dropDown:2, menuBorder:2, comboNonEdit:2}; static var classConstructed = classConstruct(); static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; }
Symbol 394 MovieClip [__Packages.mx.skins.halo.ButtonSkin] Frame 0
class mx.skins.halo.ButtonSkin extends mx.skins.RectBorder { var __get__width, __get__height, getStyle, _parent, clear, drawRoundRect, __get__x, __get__y; function ButtonSkin () { super(); } function init() { super.init(); } function size() { drawHaloRect(__get__width(), __get__height()); } function drawHaloRect(w, h) { var _local6 = getStyle("borderStyle"); var _local4 = getStyle("themeColor"); var _local5 = _parent.emphasized; clear(); switch (_local6) { case "falseup" : if (_local5) { drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 75); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 85, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 75); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100); } else { drawRoundRect(0, 0, w, h, 5, 9542041, 100); drawRoundRect(1, 1, w - 2, h - 2, 4, [13291985, 16250871], 100, 0, "radial"); drawRoundRect(2, 2, w - 4, h - 4, 3, [9542041, 13818586], 100, 0, "radial"); drawRoundRect(3, 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(3, 4, w - 6, h - 7, 2, 16316664, 100); } break; case "falsedown" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, _local4, 20); break; case "falserollover" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 50); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 100, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 50); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100); break; case "falsedisabled" : drawRoundRect(0, 0, w, h, 5, 13159628, 100); drawRoundRect(1, 1, w - 2, h - 2, 4, 15921906, 100); drawRoundRect(2, 2, w - 4, h - 4, 3, 13949401, 100); drawRoundRect(3, 3, w - 6, h - 6, 2, 15921906, 100); break; case "trueup" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 10066329, 100); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16250871, 100); break; case "truedown" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 10066329, 100); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, _local4, 20); break; case "truerollover" : drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100); drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 50); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 100, 0, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 40); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial"); drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 40); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100); break; case "truedisabled" : drawRoundRect(0, 0, w, h, 5, 13159628, 100); drawRoundRect(1, 1, w - 2, h - 2, 4, 15921906, 100); drawRoundRect(2, 2, w - 4, h - 4, 3, 13949401, 100); drawRoundRect(3, 3, w - 6, h - 6, 2, 15921906, 100); } } static function classConstruct() { mx.core.ext.UIObjectExtensions.Extensions(); _global.skinRegistry.ButtonSkin = true; return(true); } static var symbolName = "ButtonSkin"; static var symbolOwner = mx.skins.halo.ButtonSkin; var className = "ButtonSkin"; var backgroundColorName = "buttonColor"; static var classConstructed = classConstruct(); static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; }
Symbol 395 MovieClip [__Packages.mx.controls.VScrollBar] Frame 0
class mx.controls.VScrollBar extends mx.controls.scrollClasses.ScrollBar { var scrollIt; function VScrollBar () { super(); } function init(Void) { super.init(); } function isScrollBarKey(k) { if (k == 38) { scrollIt("Line", -1); return(true); } if (k == 40) { scrollIt("Line", 1); return(true); } if (k == 33) { scrollIt("Page", -1); return(true); } if (k == 34) { scrollIt("Page", 1); return(true); } return(super.isScrollBarKey(k)); } static var symbolName = "VScrollBar"; static var symbolOwner = mx.core.UIComponent; static var version = "2.0.1.78"; var className = "VScrollBar"; var minusMode = "Up"; var plusMode = "Down"; var minMode = "AtTop"; var maxMode = "AtBottom"; }
Symbol 396 MovieClip [__Packages.mx.controls.listclasses.DataSelector] Frame 0
class mx.controls.listclasses.DataSelector extends Object { var __vPosition, setVPosition, __dataProvider, enabled, lastSelID, lastSelected, selected, invUpdateControl, invalidate, multipleSelection, updateControl, __rowCount, rows; function DataSelector () { super(); } static function Initialize(obj) { var _local3 = mixinProps; var _local4 = _local3.length; obj = obj.prototype; var _local1 = 0; while (_local1 < _local4) { obj[_local3[_local1]] = mixins[_local3[_local1]]; _local1++; } mixins.createProp(obj, "dataProvider", true); mixins.createProp(obj, "length", false); mixins.createProp(obj, "value", false); mixins.createProp(obj, "selectedIndex", true); mixins.createProp(obj, "selectedIndices", true); mixins.createProp(obj, "selectedItems", false); mixins.createProp(obj, "selectedItem", true); return(true); } function createProp(obj, propName, setter) { var p = (propName.charAt(0).toUpperCase() + propName.substr(1)); var _local2 = null; var _local4 = function (Void) { return(this["get" + p]()); }; if (setter) { _local2 = function (val) { this["set" + p](val); }; } obj.addProperty(propName, _local4, _local2); } function setDataProvider(dP) { if (__vPosition != 0) { setVPosition(0); } clearSelected(); __dataProvider.removeEventListener(this); __dataProvider = dP; dP.addEventListener("modelChanged", this); modelChanged({eventName:"updateAll"}); } function getDataProvider(Void) { return(__dataProvider); } function addItemAt(index, label, data) { if ((index < 0) || (!enabled)) { return(undefined); } var _local2 = __dataProvider; if (_local2 == undefined) { _local2 = (__dataProvider = new Array()); _local2.addEventListener("modelChanged", this); index = 0; } if ((typeof(label) == "object") || (typeof(_local2.getItemAt(0)) == "string")) { _local2.addItemAt(index, label); } else { _local2.addItemAt(index, {label:label, data:data}); } } function addItem(label, data) { addItemAt(__dataProvider.length, label, data); } function removeItemAt(index) { return(__dataProvider.removeItemAt(index)); } function removeAll(Void) { __dataProvider.removeAll(); } function replaceItemAt(index, newLabel, newData) { if (typeof(newLabel) == "object") { __dataProvider.replaceItemAt(index, newLabel); } else { __dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); } } function sortItemsBy(fieldName, order) { lastSelID = __dataProvider.getItemID(lastSelected); __dataProvider.sortItemsBy(fieldName, order); } function sortItems(compareFunc, order) { lastSelID = __dataProvider.getItemID(lastSelected); __dataProvider.sortItems(compareFunc, order); } function getLength(Void) { return(__dataProvider.length); } function getItemAt(index) { return(__dataProvider.getItemAt(index)); } function modelChanged(eventObj) { var _local3 = eventObj.firstItem; var _local6 = eventObj.lastItem; var _local7 = eventObj.eventName; if (_local7 == undefined) { _local7 = eventObj.event; _local3 = eventObj.firstRow; _local6 = eventObj.lastRow; if (_local7 == "addRows") { _local7 = (eventObj.eventName = "addItems"); } else if (_local7 == "deleteRows") { _local7 = (eventObj.eventName = "removeItems"); } else if (_local7 == "updateRows") { _local7 = (eventObj.eventName = "updateItems"); } } if (_local7 == "addItems") { for (var _local2 in selected) { var _local5 = selected[_local2]; if ((_local5 != undefined) && (_local5 >= _local3)) { selected[_local2] = selected[_local2] + ((_local6 - _local3) + 1); } } } else if (_local7 == "removeItems") { if (__dataProvider.length == 0) { delete selected; } else { var _local9 = eventObj.removedIDs; var _local10 = _local9.length; var _local2 = 0; while (_local2 < _local10) { var _local4 = _local9[_local2]; if (selected[_local4] != undefined) { delete selected[_local4]; } _local2++; } for (_local2 in selected) { if (selected[_local2] >= _local3) { selected[_local2] = selected[_local2] - ((_local6 - _local3) + 1); } } } } else if (_local7 == "sort") { if (typeof(__dataProvider.getItemAt(0)) != "object") { delete selected; } else { var _local10 = __dataProvider.length; var _local2 = 0; while (_local2 < _local10) { if (isSelected(_local2)) { var _local4 = __dataProvider.getItemID(_local2); if (_local4 == lastSelID) { lastSelected = _local2; } selected[_local4] = _local2; } _local2++; } } } else if (_local7 == "filterModel") { setVPosition(0); } invUpdateControl = true; invalidate(); } function getValue(Void) { var _local2 = getSelectedItem(); if (typeof(_local2) != "object") { return(_local2); } return(((_local2.data == undefined) ? (_local2.label) : (_local2.data))); } function getSelectedIndex(Void) { for (var _local3 in selected) { var _local2 = selected[_local3]; if (_local2 != undefined) { return(_local2); } } } function setSelectedIndex(index) { if (((index >= 0) && (index < __dataProvider.length)) && (enabled)) { delete selected; selectItem(index, true); lastSelected = index; invUpdateControl = true; invalidate(); } else if (index == undefined) { clearSelected(); } } function getSelectedIndices(Void) { var _local2 = new Array(); for (var _local3 in selected) { _local2.push(selected[_local3]); } _local2.reverse(); return(((_local2.length > 0) ? (_local2) : undefined)); } function setSelectedIndices(indexArray) { if (multipleSelection != true) { return(undefined); } delete selected; var _local3 = 0; while (_local3 < indexArray.length) { var _local2 = indexArray[_local3]; if ((_local2 >= 0) && (_local2 < __dataProvider.length)) { selectItem(_local2, true); } _local3++; } invUpdateControl = true; updateControl(); } function getSelectedItems(Void) { var _local3 = getSelectedIndices(); var _local4 = new Array(); var _local2 = 0; while (_local2 < _local3.length) { _local4.push(getItemAt(_local3[_local2])); _local2++; } return(((_local4.length > 0) ? (_local4) : undefined)); } function getSelectedItem(Void) { return(__dataProvider.getItemAt(getSelectedIndex())); } function selectItem(index, selectedFlag) { if (selected == undefined) { selected = new Object(); } var _local2 = __dataProvider.getItemID(index); if (_local2 == undefined) { return(undefined); } if (selectedFlag && (!isSelected(index))) { selected[_local2] = index; } else if (!selectedFlag) { delete selected[_local2]; } } function isSelected(index) { var _local2 = __dataProvider.getItemID(index); if (_local2 == undefined) { return(false); } return(selected[_local2] != undefined); } function clearSelected(transition) { var _local3 = 0; for (var _local4 in selected) { var _local2 = selected[_local4]; if (((_local2 != undefined) && (__vPosition <= _local2)) && (_local2 < (__vPosition + __rowCount))) { rows[_local2 - __vPosition].drawRow(rows[_local2 - __vPosition].item, "normal", transition && ((_local3 % 3) == 0)); } _local3++; } delete selected; } static var mixins = new mx.controls.listclasses.DataSelector(); static var mixinProps = ["setDataProvider", "getDataProvider", "addItem", "addItemAt", "removeAll", "removeItemAt", "replaceItemAt", "sortItemsBy", "sortItems", "getLength", "getItemAt", "modelChanged", "calcPreferredWidthFromData", "calcPreferredHeightFromData", "getValue", "getSelectedIndex", "getSelectedItem", "getSelectedIndices", "getSelectedItems", "selectItem", "isSelected", "clearSelected", "setSelectedIndex", "setSelectedIndices"]; }
Symbol 397 MovieClip [__Packages.mx.controls.listclasses.DataProvider] Frame 0
class mx.controls.listclasses.DataProvider extends Object { var length, splice, dispatchEvent, sortOn, reverse, sort; function DataProvider (obj) { super(); } static function Initialize(obj) { var _local4 = mixinProps; var _local6 = _local4.length; obj = obj.prototype; var _local3 = 0; while (_local3 < _local6) { obj[_local4[_local3]] = mixins[_local4[_local3]]; _global.ASSetPropFlags(obj, _local4[_local3], 1); _local3++; } mx.events.EventDispatcher.initialize(obj); _global.ASSetPropFlags(obj, "addEventListener", 1); _global.ASSetPropFlags(obj, "removeEventListener", 1); _global.ASSetPropFlags(obj, "dispatchEvent", 1); _global.ASSetPropFlags(obj, "dispatchQueue", 1); Object.prototype.LargestID = 0; Object.prototype.getID = function () { if (this.__ID__ == undefined) { this.__ID__ = Object.prototype.LargestID++; _global.ASSetPropFlags(this, "__ID__", 1); } return(this.__ID__); }; _global.ASSetPropFlags(Object.prototype, "LargestID", 1); _global.ASSetPropFlags(Object.prototype, "getID", 1); return(true); } function addItemAt(index, value) { if (index < length) { splice(index, 0, value); } else if (index > length) { trace("Cannot add an item past the end of the DataProvider"); return(undefined); } this[index] = value; updateViews("addItems", index, index); } function addItem(value) { addItemAt(length, value); } function addItemsAt(index, newItems) { index = Math.min(length, index); newItems.unshift(index, 0); splice.apply(this, newItems); newItems.splice(0, 2); updateViews("addItems", index, (index + newItems.length) - 1); } function removeItemsAt(index, len) { var _local3 = new Array(); var _local2 = 0; while (_local2 < len) { _local3.push(getItemID(index + _local2)); _local2++; } var _local6 = splice(index, len); dispatchEvent({type:"modelChanged", eventName:"removeItems", firstItem:index, lastItem:(index + len) - 1, removedItems:_local6, removedIDs:_local3}); } function removeItemAt(index) { var _local2 = this[index]; removeItemsAt(index, 1); return(_local2); } function removeAll(Void) { splice(0); updateViews("removeItems", 0, length - 1); } function replaceItemAt(index, itemObj) { if ((index < 0) || (index >= length)) { return(undefined); } var _local3 = getItemID(index); this[index] = itemObj; this[index].__ID__ = _local3; updateViews("updateItems", index, index); } function getItemAt(index) { return(this[index]); } function getItemID(index) { var _local2 = this[index]; if ((typeof(_local2) != "object") && (_local2 != undefined)) { return(index); } return(_local2.getID()); } function sortItemsBy(fieldName, order) { if (typeof(order) == "string") { sortOn(fieldName); if (order.toUpperCase() == "DESC") { reverse(); } } else { sortOn(fieldName, order); } updateViews("sort"); } function sortItems(compareFunc, optionFlags) { sort(compareFunc, optionFlags); updateViews("sort"); } function editField(index, fieldName, newData) { this[index][fieldName] = newData; dispatchEvent({type:"modelChanged", eventName:"updateField", firstItem:index, lastItem:index, fieldName:fieldName}); } function getEditingData(index, fieldName) { return(this[index][fieldName]); } function updateViews(event, first, last) { dispatchEvent({type:"modelChanged", eventName:event, firstItem:first, lastItem:last}); } static var mixinProps = ["addView", "addItem", "addItemAt", "removeAll", "removeItemAt", "replaceItemAt", "getItemAt", "getItemID", "sortItemsBy", "sortItems", "updateViews", "addItemsAt", "removeItemsAt", "getEditingData", "editField"]; static var evtDipatcher = mx.events.EventDispatcher; static var mixins = new mx.controls.listclasses.DataProvider(); }
Symbol 398 MovieClip [__Packages.mx.controls.listclasses.ScrollSelectList] Frame 0
class mx.controls.listclasses.ScrollSelectList extends mx.core.ScrollView { var invLayoutContent, rows, topRowZ, listContent, __dataProvider, __vPosition, tW, layoutX, layoutY, tH, invRowHeight, invalidate, __height, invUpdateControl, __cellRenderer, __labelFunction, __iconField, __iconFunction, getLength, baseRowZ, lastPosition, propertyTable, isSelected, changeFlag, clearSelected, selectItem, lastSelected, wasKeySelected, dispatchEvent, dragScrolling, _ymouse, scrollInterval, isPressed, onMouseUp, getSelectedIndex, enabled, tabEnabled, tabChildren, createEmptyMovieClip, border_mc; function ScrollSelectList () { super(); } function layoutContent(x, y, w, h) { delete invLayoutContent; var _local4 = Math.ceil(h / __rowHeight); roundUp = (h % __rowHeight) != 0; var _local12 = _local4 - __rowCount; if (_local12 < 0) { var _local3 = _local4; while (_local3 < __rowCount) { rows[_local3].removeMovieClip(); delete rows[_local3]; _local3++; } topRowZ = topRowZ + _local12; } else if (_local12 > 0) { if (rows == undefined) { rows = new Array(); } var _local3 = __rowCount; while (_local3 < _local4) { var _local2 = (rows[_local3] = listContent.createObject(__rowRenderer, "listRow" + (topRowZ++), topRowZ, {owner:this, styleName:this, rowIndex:_local3})); _local2._x = x; _local2._y = Math.round((_local3 * __rowHeight) + y); _local2.setSize(w, __rowHeight); _local2.drawRow(__dataProvider.getItemAt(__vPosition + _local3), getStateAt(__vPosition + _local3)); _local2.lastY = _local2._y; _local3++; } } if (w != tW) { var _local11 = ((_local12 > 0) ? (__rowCount) : (_local4)); var _local3 = 0; while (_local3 < _local11) { rows[_local3].setSize(w, __rowHeight); _local3++; } } if ((layoutX != x) || (layoutY != y)) { var _local3 = 0; while (_local3 < _local4) { rows[_local3]._x = x; rows[_local3]._y = Math.round((_local3 * __rowHeight) + y); _local3++; } } __rowCount = _local4; layoutX = x; layoutY = y; tW = w; tH = h; } function getRowHeight(Void) { return(__rowHeight); } function setRowHeight(v) { __rowHeight = v; invRowHeight = true; invalidate(); } function get rowHeight() { return(getRowHeight()); } function set rowHeight(w) { setRowHeight(w); //return(rowHeight); } function setRowCount(v) { __rowCount = v; } function getRowCount(Void) { var _local2 = ((__rowCount == 0) ? (Math.ceil(__height / __rowHeight)) : (__rowCount)); return(_local2); } function get rowCount() { return(getRowCount()); } function set rowCount(w) { setRowCount(w); //return(rowCount); } function setEnabled(v) { super.setEnabled(v); invUpdateControl = true; invalidate(); } function setCellRenderer(cR) { __cellRenderer = cR; var _local2 = 0; while (_local2 < rows.length) { rows[_local2].setCellRenderer(true); _local2++; } invUpdateControl = true; invalidate(); } function set cellRenderer(cR) { setCellRenderer(cR); //return(cellRenderer); } function get cellRenderer() { return(__cellRenderer); } function set labelField(field) { setLabelField(field); //return(labelField); } function setLabelField(field) { __labelField = field; invUpdateControl = true; invalidate(); } function get labelField() { return(__labelField); } function set labelFunction(func) { setLabelFunction(func); //return(labelFunction); } function setLabelFunction(func) { __labelFunction = func; invUpdateControl = true; invalidate(); } function get labelFunction() { return(__labelFunction); } function set iconField(field) { setIconField(field); //return(iconField); } function setIconField(field) { __iconField = field; invUpdateControl = true; invalidate(); } function get iconField() { return(__iconField); } function set iconFunction(func) { setIconFunction(func); //return(iconFunction); } function setIconFunction(func) { __iconFunction = func; invUpdateControl = true; invalidate(); } function get iconFunction() { return(__iconFunction); } function setVPosition(pos) { if (pos < 0) { return(undefined); } if ((pos > 0) && (pos > ((getLength() - __rowCount) + roundUp))) { return(undefined); } var _local8 = pos - __vPosition; if (_local8 == 0) { return(undefined); } __vPosition = pos; var _local10 = _local8 > 0; _local8 = Math.abs(_local8); if (_local8 >= __rowCount) { updateControl(); } else { var _local4 = new Array(); var _local9 = __rowCount - _local8; var _local12 = _local8 * __rowHeight; var _local11 = _local9 * __rowHeight; var _local6 = (_local10 ? 1 : -1); var _local3 = 0; while (_local3 < __rowCount) { if (((_local3 < _local8) && (_local10)) || ((_local3 >= _local9) && (!_local10))) { rows[_local3]._y = rows[_local3]._y + Math.round(_local6 * _local11); var _local5 = _local3 + (_local6 * _local9); var _local7 = __vPosition + _local5; _local4[_local5] = rows[_local3]; _local4[_local5].rowIndex = _local5; _local4[_local5].drawRow(__dataProvider.getItemAt(_local7), getStateAt(_local7), false); } else { rows[_local3]._y = rows[_local3]._y - Math.round(_local6 * _local12); var _local5 = _local3 - (_local6 * _local8); _local4[_local5] = rows[_local3]; _local4[_local5].rowIndex = _local5; } _local3++; } rows = _local4; _local3 = 0; while (_local3 < __rowCount) { rows[_local3].swapDepths(baseRowZ + _local3); _local3++; } } lastPosition = pos; super.setVPosition(pos); } function setPropertiesAt(index, obj) { var _local2 = __dataProvider.getItemID(index); if (_local2 == undefined) { return(undefined); } if (propertyTable == undefined) { propertyTable = new Object(); } propertyTable[_local2] = obj; rows[index - __vPosition].drawRow(__dataProvider.getItemAt(index), getStateAt(index)); } function getPropertiesAt(index) { var _local2 = __dataProvider.getItemID(index); if (_local2 == undefined) { return(undefined); } return(propertyTable[_local2]); } function getStyle(styleProp) { var _local2 = super.getStyle(styleProp); var _local3 = mx.styles.StyleManager.colorNames[_local2]; if (_local3 != undefined) { _local2 = _local3; } return(_local2); } function updateControl(Void) { var _local2 = 0; while (_local2 < __rowCount) { rows[_local2].drawRow(__dataProvider.getItemAt(_local2 + __vPosition), getStateAt(_local2 + __vPosition)); _local2++; } delete invUpdateControl; } function getStateAt(index) { return((isSelected(index) ? "selected" : "normal")); } function selectRow(rowIndex, transition) { if (!selectable) { return(undefined); } var _local3 = __vPosition + rowIndex; var _local8 = __dataProvider.getItemAt(_local3); var _local5 = rows[rowIndex]; if (_local8 == undefined) { return(undefined); } if (transition == undefined) { transition = true; } changeFlag = true; if (((!multipleSelection) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { clearSelected(transition); selectItem(_local3, true); lastSelected = _local3; _local5.drawRow(_local5.item, getStateAt(_local3), transition); } else if (Key.isDown(16) && (multipleSelection)) { if (lastSelected == undefined) { lastSelected = _local3; } var _local4 = ((lastSelected < _local3) ? 1 : -1); clearSelected(false); var _local2 = lastSelected; while (_local2 != _local3) { selectItem(_local2, true); if ((_local2 >= __vPosition) && (_local2 < (__vPosition + __rowCount))) { rows[_local2 - __vPosition].drawRow(rows[_local2 - __vPosition].item, "selected", false); } _local2 = _local2 + _local4; } selectItem(_local3, true); _local5.drawRow(_local5.item, "selected", transition); } else if (Key.isDown(17)) { var _local7 = isSelected(_local3); if ((!multipleSelection) || (wasKeySelected)) { clearSelected(transition); } if (!((!multipleSelection) && (_local7))) { selectItem(_local3, !_local7); var _local9 = ((!_local7) ? "selected" : "normal"); _local5.drawRow(_local5.item, _local9, transition); } lastSelected = _local3; } if (wasKeySelected) { dispatchEvent({type:"change"}); } delete wasKeySelected; } function dragScroll(Void) { clearInterval(dragScrolling); if (_ymouse < 0) { setVPosition(__vPosition - 1); selectRow(0, false); var _local2 = Math.min((-_ymouse) - 30, 0); scrollInterval = (((0.593 * _local2) * _local2) + 1) + minScrollInterval; dragScrolling = setInterval(this, "dragScroll", scrollInterval); dispatchEvent({type:"scroll", direction:"vertical", position:__vPosition}); } else if (_ymouse > __height) { var _local3 = __vPosition; setVPosition(__vPosition + 1); if (_local3 != __vPosition) { selectRow((__rowCount - 1) - roundUp, false); } var _local2 = Math.min((_ymouse - __height) - 30, 0); scrollInterval = (((0.593 * _local2) * _local2) + 1) + minScrollInterval; dragScrolling = setInterval(this, "dragScroll", scrollInterval); dispatchEvent({type:"scroll", direction:"vertical", position:__vPosition}); } else { dragScrolling = setInterval(this, "dragScroll", 15); } updateAfterEvent(); } function __onMouseUp(Void) { clearInterval(dragScrolling); delete dragScrolling; delete dragScrolling; delete isPressed; delete onMouseUp; if (!selectable) { return(undefined); } if (changeFlag) { dispatchEvent({type:"change"}); } delete changeFlag; } function moveSelBy(incr) { if (!selectable) { setVPosition(__vPosition + incr); return(undefined); } var _local3 = getSelectedIndex(); if (_local3 == undefined) { _local3 = -1; } var _local2 = _local3 + incr; _local2 = Math.max(0, _local2); _local2 = Math.min(getLength() - 1, _local2); if (_local2 == _local3) { return(undefined); } if ((_local3 < __vPosition) || (_local3 >= (__vPosition + __rowCount))) { setVPosition(_local3); } if ((_local2 >= ((__vPosition + __rowCount) - roundUp)) || (_local2 < __vPosition)) { setVPosition(__vPosition + incr); } wasKeySelected = true; selectRow(_local2 - __vPosition, false); } function keyDown(e) { if (selectable) { if (findInputText()) { return(undefined); } } if (e.code == 40) { moveSelBy(1); } else if (e.code == 38) { moveSelBy(-1); } else if (e.code == 34) { if (selectable) { var _local3 = getSelectedIndex(); if (_local3 == undefined) { _local3 = 0; } setVPosition(_local3); } moveSelBy((__rowCount - 1) - roundUp); } else if (e.code == 33) { if (selectable) { var _local3 = getSelectedIndex(); if (_local3 == undefined) { _local3 = 0; } setVPosition(_local3); } moveSelBy((1 - __rowCount) + roundUp); } else if (e.code == 36) { moveSelBy(-__dataProvider.length); } else if (e.code == 35) { moveSelBy(__dataProvider.length); } } function findInputText(Void) { var _local2 = Key.getAscii(); if ((_local2 >= 33) && (_local2 <= 126)) { findString(String.fromCharCode(_local2)); return(true); } } function findString(str) { if (__dataProvider.length == 0) { return(undefined); } var _local4 = getSelectedIndex(); if (_local4 == undefined) { _local4 = 0; } var _local6 = 0; var _local3 = _local4 + 1; while (_local3 != _local4) { var _local2 = __dataProvider.getItemAt(_local3); if (_local2 instanceof XMLNode) { _local2 = _local2.attributes[__labelField]; } else if (typeof(_local2) != "string") { _local2 = String(_local2[__labelField]); } _local2 = _local2.substring(0, str.length); if ((str == _local2) || (str.toUpperCase() == _local2.toUpperCase())) { _local6 = _local3 - _local4; break; } if (_local3 >= (getLength() - 1)) { _local3 = -1; } _local3++; } if (_local6 != 0) { moveSelBy(_local6); } } function onRowPress(rowIndex) { if (!enabled) { return(undefined); } isPressed = true; dragScrolling = setInterval(this, "dragScroll", 15); onMouseUp = __onMouseUp; if (!selectable) { return(undefined); } selectRow(rowIndex); } function onRowRelease(rowIndex) { } function onRowRollOver(rowIndex) { if (!enabled) { return(undefined); } var _local2 = rows[rowIndex].item; if (getStyle("useRollOver") && (_local2 != undefined)) { rows[rowIndex].drawRow(_local2, "highlighted", false); } dispatchEvent({type:"itemRollOver", index:rowIndex + __vPosition}); } function onRowRollOut(rowIndex) { if (!enabled) { return(undefined); } if (getStyle("useRollOver")) { rows[rowIndex].drawRow(rows[rowIndex].item, getStateAt(rowIndex + __vPosition), false); } dispatchEvent({type:"itemRollOut", index:rowIndex + __vPosition}); } function onRowDragOver(rowIndex) { if (((!enabled) || (isPressed != true)) || (!selectable)) { return(undefined); } if (dropEnabled) { } else if (dragScrolling) { selectRow(rowIndex, false); } else { onMouseUp = __onMouseUp; onRowPress(rowIndex); } } function onRowDragOut(rowIndex) { if (!enabled) { return(undefined); } if (dragEnabled) { } else { onRowRollOut(rowIndex); } } function init(Void) { super.init(); tabEnabled = true; tabChildren = false; if (__dataProvider == undefined) { __dataProvider = new Array(); __dataProvider.addEventListener("modelChanged", this); } baseRowZ = (topRowZ = 10); } function createChildren(Void) { super.createChildren(); listContent = createEmptyMovieClip("content_mc", CONTENTDEPTH); invLayoutContent = true; invalidate(); } function draw(Void) { if (invRowHeight) { delete invRowHeight; __rowCount = 0; listContent.removeMovieClip(); listContent = createEmptyMovieClip("content_mc", CONTENTDEPTH); } if (invUpdateControl) { updateControl(); } border_mc.draw(); } function invalidateStyle(propName) { if (isRowStyle[propName]) { invUpdateControl = true; invalidate(); } else { var _local3 = 0; while (_local3 < __rowCount) { rows[_local3].invalidateStyle(propName); _local3++; } } super.invalidateStyle(propName); } static var mixIt1 = mx.controls.listclasses.DataSelector.Initialize(mx.controls.listclasses.ScrollSelectList); static var mixIt2 = mx.controls.listclasses.DataProvider.Initialize(Array); var CONTENTDEPTH = 100; var __hPosition = 0; var __rowRenderer = "SelectableRow"; var __rowHeight = 22; var __rowCount = 0; var __labelField = "label"; var minScrollInterval = 30; var dropEnabled = false; var dragEnabled = false; var className = "ScrollSelectList"; var isRowStyle = {styleName:true, backgroundColor:true, selectionColor:true, rollOverColor:true, selectionDisabledColor:true, backgroundDisabledColor:true, textColor:true, textSelectedColor:true, textRollOverColor:true, textDisabledColor:true, alternatingRowColors:true, defaultIcon:true}; var roundUp = 0; var selectable = true; var multipleSelection = false; }
Symbol 399 MovieClip [__Packages.mx.controls.List] Frame 0
class mx.controls.List extends mx.controls.listclasses.ScrollSelectList { var border_mc, __labels, setDataProvider, roundUp, __get__rowCount, __dataProvider, __maxHPosition, invScrollProps, invalidate, __vPosition, getViewMetrics, setSize, __width, __rowHeight, totalWidth, totalHeight, displayWidth, __hScrollPolicy, vScroller, __hPosition, listContent, data, mask_mc, __height, __rowCount, invRowHeight, invLayoutContent, setScrollProperties, oldVWidth; function List () { super(); } function setEnabled(v) { super.setEnabled(v); border_mc.backgroundColorName = (v ? "backgroundColor" : "backgroundDisabledColor"); border_mc.invalidate(); } function get labels() { return(__labels); } function set labels(lbls) { __labels = lbls; setDataProvider(lbls); //return(labels); } function setVPosition(pos) { pos = Math.min((__dataProvider.length - __get__rowCount()) + roundUp, pos); pos = Math.max(0, pos); super.setVPosition(pos); } function setHPosition(pos) { pos = Math.max(Math.min(__maxHPosition, pos), 0); super.setHPosition(pos); hScroll(pos); } function setMaxHPosition(pos) { __maxHPosition = pos; invScrollProps = true; invalidate(); } function setHScrollPolicy(policy) { if ((policy.toLowerCase() == "auto") && (!autoHScrollAble)) { return(undefined); } super.setHScrollPolicy(policy); if (policy == "off") { setHPosition(0); setVPosition(Math.min((__dataProvider.length - __get__rowCount()) + roundUp, __vPosition)); } } function setRowCount(rC) { if (isNaN(rC)) { return(undefined); } var _local2 = getViewMetrics(); setSize(__width, ((__rowHeight * rC) + _local2.top) + _local2.bottom); } function layoutContent(x, y, tW, tH, dW, dH) { totalWidth = tW; totalHeight = tH; displayWidth = dW; var _local4 = (((__hScrollPolicy == "on") || (__hScrollPolicy == "auto")) ? (Math.max(tW, dW)) : (dW)); super.layoutContent(x, y, _local4, dH); } function modelChanged(eventObj) { super.modelChanged(eventObj); var _local3 = eventObj.eventName; if ((((_local3 == "addItems") || (_local3 == "removeItems")) || (_local3 == "updateAll")) || (_local3 == "filterModel")) { invScrollProps = true; invalidate("invScrollProps"); } } function onScroll(eventObj) { var _local3 = eventObj.target; if (_local3 == vScroller) { setVPosition(_local3.scrollPosition); } else { hScroll(_local3.scrollPosition); } super.onScroll(eventObj); } function hScroll(pos) { __hPosition = pos; listContent._x = -pos; } function init(Void) { super.init(); if (labels.length > 0) { var _local6 = new Array(); var _local3 = 0; while (_local3 < labels.length) { _local6.addItem({label:labels[_local3], data:data[_local3]}); _local3++; } setDataProvider(_local6); } __maxHPosition = 0; } function createChildren(Void) { super.createChildren(); listContent.setMask(mask_mc); border_mc.move(0, 0); border_mc.setSize(__width, __height); } function getRowCount(Void) { var _local2 = getViewMetrics(); return(((__rowCount == 0) ? (Math.ceil(((__height - _local2.top) - _local2.bottom) / __rowHeight)) : (__rowCount))); } function size(Void) { super.size(); configureScrolling(); var _local3 = getViewMetrics(); layoutContent(_local3.left, _local3.top, __width + __maxHPosition, totalHeight, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom); } function draw(Void) { if (invRowHeight) { invScrollProps = true; super.draw(); listContent.setMask(mask_mc); invLayoutContent = true; } if (invScrollProps) { configureScrolling(); delete invScrollProps; } if (invLayoutContent) { var _local3 = getViewMetrics(); layoutContent(_local3.left, _local3.top, __width + __maxHPosition, totalHeight, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom); } super.draw(); } function configureScrolling(Void) { var _local2 = __dataProvider.length; if (__vPosition > Math.max(0, (_local2 - getRowCount()) + roundUp)) { setVPosition(Math.max(0, Math.min((_local2 - getRowCount()) + roundUp, __vPosition))); } var _local3 = getViewMetrics(); var _local4 = ((__hScrollPolicy != "off") ? (((__maxHPosition + __width) - _local3.left) - _local3.right) : ((__width - _local3.left) - _local3.right)); if (_local2 == undefined) { _local2 = 0; } setScrollProperties(_local4, 1, _local2, __rowHeight); if (oldVWidth != _local4) { invLayoutContent = true; } oldVWidth = _local4; } static var symbolOwner = mx.controls.List; static var symbolName = "List"; static var version = "2.0.0.377"; var clipParameters = {rowHeight:1, enabled:1, visible:1, labels:1}; var scrollDepth = 1; var __vScrollPolicy = "on"; var autoHScrollAble = false; }
Symbol 405 MovieClip [__Packages.mx.effects.Tween] Frame 0
class mx.effects.Tween extends Object { static var IntervalToken; var arrayMode, listener, initVal, endVal, startTime, updateFunc, endFunc, ID; function Tween (listenerObj, init, end, dur) { super(); if (listenerObj == undefined) { return; } if (typeof(init) != "number") { arrayMode = true; } listener = listenerObj; initVal = init; endVal = end; if (dur != undefined) { duration = dur; } startTime = getTimer(); if (duration == 0) { doInterval(); } else { AddTween(this); } } static function AddTween(tween) { tween.ID = ActiveTweens.length; ActiveTweens.push(tween); if (IntervalToken == undefined) { Dispatcher.DispatchTweens = DispatchTweens; IntervalToken = setInterval(Dispatcher, "DispatchTweens", Interval); } } static function RemoveTweenAt(index) { var _local2 = ActiveTweens; if (((index >= _local2.length) || (index < 0)) || (index == undefined)) { return(undefined); } _local2.splice(index, 1); var _local4 = _local2.length; var _local1 = index; while (_local1 < _local4) { _local2[_local1].ID--; _local1++; } if (_local4 == 0) { clearInterval(IntervalToken); delete IntervalToken; } } static function DispatchTweens(Void) { var _local2 = ActiveTweens; var _local3 = _local2.length; var _local1 = 0; while (_local1 < _local3) { _local2[_local1].doInterval(); _local1++; } updateAfterEvent(); } function doInterval() { var _local2 = getTimer() - startTime; var _local3 = getCurVal(_local2); if (_local2 >= duration) { endTween(); } else if (updateFunc != undefined) { listener[updateFunc](_local3); } else { listener.onTweenUpdate(_local3); } } function getCurVal(curTime) { if (arrayMode) { var _local3 = new Array(); var _local2 = 0; while (_local2 < initVal.length) { _local3[_local2] = easingEquation(curTime, initVal[_local2], endVal[_local2] - initVal[_local2], duration); _local2++; } return(_local3); } return(easingEquation(curTime, initVal, endVal - initVal, duration)); } function endTween() { if (endFunc != undefined) { listener[endFunc](endVal); } else { listener.onTweenEnd(endVal); } RemoveTweenAt(ID); } function setTweenHandlers(update, end) { updateFunc = update; endFunc = end; } function easingEquation(t, b, c, d) { return(((c / 2) * (Math.sin(Math.PI * ((t / d) - 0.5)) + 1)) + b); } static var ActiveTweens = new Array(); static var Interval = 10; static var Dispatcher = new Object(); var duration = 3000; }
Symbol 406 MovieClip [__Packages.mx.controls.listclasses.SelectableRow] Frame 0
class mx.controls.listclasses.SelectableRow extends mx.core.UIComponent { var __height, cell, owner, rowIndex, icon_mc, createObject, __width, backGround, highlight, highlightColor, createLabel, createClassObject, listOwner, tabEnabled, item, createEmptyMovieClip, drawRect, isChangedToSelected, bGTween, grandOwner; function SelectableRow () { super(); } function setValue(itmObj, state) { var _local7 = __height; var _local2 = cell; var _local5 = owner; var _local8 = itemToString(itmObj); if (_local2.getValue() != _local8) { _local2.setValue(_local8, itmObj, state); } var _local4 = _local5.getPropertiesAt(rowIndex + _local5.__vPosition).icon; if (_local4 == undefined) { _local4 = _local5.__iconFunction(itmObj); if (_local4 == undefined) { _local4 = itmObj[_local5.__iconField]; if (_local4 == undefined) { _local4 = _local5.getStyle("defaultIcon"); } } } var _local3 = icon_mc; if ((_local4 != undefined) && (itmObj != undefined)) { _local3 = createObject(_local4, "icon_mc", 20); _local3._x = 2; _local3._y = (_local7 - _local3._height) / 2; _local2._x = 4 + _local3._width; } else { _local3.removeMovieClip(); _local2._x = 2; } var _local9 = ((_local3 == undefined) ? 0 : (_local3._width)); _local2.setSize(__width - _local9, Math.min(_local7, _local2.getPreferredHeight())); _local2._y = (_local7 - _local2._height) / 2; } function size(Void) { var _local3 = backGround; var _local2 = cell; var _local4 = __height; var _local5 = __width; var _local6 = ((icon_mc == undefined) ? 0 : (icon_mc._width)); _local2.setSize(_local5 - _local6, Math.min(_local4, _local2.getPreferredHeight())); _local2._y = (_local4 - _local2._height) / 2; icon_mc._y = (_local4 - icon_mc._height) / 2; _local3._x = 0; _local3._width = _local5; _local3._height = _local4; drawRowFill(_local3, normalColor); drawRowFill(highlight, highlightColor); } function setCellRenderer(forceSizing) { var _local3 = owner.__cellRenderer; var _local4; if (cell != undefined) { _local4 = cell._x; cell.removeMovieClip(); cell.removeTextField(); } var _local2; if (_local3 == undefined) { _local2 = (cell = createLabel("cll", 0, {styleName:this})); _local2.styleName = owner; _local2.selectable = false; _local2.tabEnabled = false; _local2.background = false; _local2.border = false; } else if (typeof(_local3) == "string") { _local2 = (cell = createObject(_local3, "cll", 0, {styleName:this})); } else { _local2 = (cell = createClassObject(_local3, "cll", 0, {styleName:this})); } _local2.owner = this; _local2.listOwner = owner; _local2.getCellIndex = getCellIndex; _local2.getDataLabel = getDataLabel; if (_local4 != undefined) { _local2._x = _local4; } if (forceSizing) { size(); } } function getCellIndex(Void) { return({columnIndex:0, itemIndex:owner.rowIndex + listOwner.__vPosition}); } function getDataLabel() { return(listOwner.labelField); } function init(Void) { super.init(); tabEnabled = false; } function createChildren(Void) { setCellRenderer(false); setupBG(); setState(state, false); } function drawRow(itmObj, state, transition) { item = itmObj; setState(state, transition); setValue(itmObj, state, transition); } function itemToString(itmObj) { if (itmObj == undefined) { return(" "); } var _local2 = owner.__labelFunction(itmObj); if (_local2 == undefined) { _local2 = ((itmObj instanceof XMLNode) ? (itmObj.attributes[owner.__labelField]) : (itmObj[owner.__labelField])); if (_local2 == undefined) { _local2 = " "; if (typeof(itmObj) == "object") { for (var _local4 in itmObj) { if (_local4 != "__ID__") { _local2 = (itmObj[_local4] + ", ") + _local2; } } _local2 = _local2.substring(0, _local2.length - 2); } else { _local2 = itmObj; } } } return(_local2); } function setupBG(Void) { var _local2 = (backGround = createEmptyMovieClip("bG_mc", LOWEST_DEPTH)); drawRowFill(_local2, normalColor); highlight = createEmptyMovieClip("tran_mc", LOWEST_DEPTH + 10); _local2.owner = this; _local2.grandOwner = owner; _local2.onPress = bGOnPress; _local2.onRelease = bGOnRelease; _local2.onRollOver = bGOnRollOver; _local2.onRollOut = bGOnRollOut; _local2.onDragOver = bGOnDragOver; _local2.onDragOut = bGOnDragOut; _local2.useHandCursor = false; _local2.trackAsMenu = true; _local2.drawRect = drawRect; highlight.drawRect = drawRect; } function drawRowFill(mc, newClr) { mc.clear(); mc.beginFill(newClr); mc.drawRect(1, 0, __width, __height); mc.endFill(); mc._width = __width; mc._height = __height; } function setState(newState, transition) { var _local2 = highlight; var _local8 = backGround; var _local4 = __height; var _local3 = owner; if (!_local3.enabled) { if ((newState == "selected") || (state == "selected")) { highlightColor = _local3.getStyle("selectionDisabledColor"); drawRowFill(_local2, highlightColor); _local2._visible = true; _local2._y = 0; _local2._height = _local4; } else { _local2._visible = false; normalColor = _local3.getStyle("backgroundDisabledColor"); drawRowFill(_local8, normalColor); } cell.__enabled = false; cell.setColor(_local3.getStyle("disabledColor")); } else { cell.__enabled = true; if (transition && ((newState == state) || ((newState == "highlighted") && (state == "selected")))) { isChangedToSelected = true; return(undefined); } var _local6 = _local3.getStyle("selectionDuration"); var _local7 = 0; if (isChangedToSelected && (newState == "selected")) { transition = false; } var _local10 = transition && (_local6 != 0); if (newState == "normal") { _local7 = _local3.getStyle("color"); normalColor = getNormalColor(); drawRowFill(_local8, normalColor); if (_local10) { _local6 = _local6 / 2; _local2._height = _local4; _local2._width = __width; _local2._y = 0; bGTween = new mx.effects.Tween(this, _local4 + 2, _local4 * 0.2, _local6, 5); } else { _local2._visible = false; } delete isChangedToSelected; } else { highlightColor = _local3.getStyle(((newState == "highlighted") ? "rollOverColor" : "selectionColor")); drawRowFill(_local2, highlightColor); _local2._visible = true; _local7 = _local3.getStyle(((newState == "highlighted") ? "textRollOverColor" : "textSelectedColor")); if (_local10) { _local2._height = _local4 * 0.5; _local2._y = (_local4 - _local2._height) / 2; bGTween = new mx.effects.Tween(this, _local2._height, _local4 + 2, _local6, 5); var _local9 = _local3.getStyle("selectionEasing"); if (_local9 != undefined) { bGTween.easingEquation = _local9; } } else { _local2._y = 0; _local2._height = _local4; } } cell.setColor(_local7); } state = newState; } function onTweenUpdate(val) { highlight._height = val; highlight._y = (__height - val) / 2; } function onTweenEnd(val) { onTweenUpdate(val); highlight._visible = state != "normal"; } function getNormalColor(Void) { var _local3; var _local2 = owner; if (!owner.enabled) { _local3 = _local2.getStyle("backgroundDisabledColor"); } else { var _local5 = rowIndex + _local2.__vPosition; _local3 = _local2.getPropertiesAt(_local5).backgroundColor; if (_local3 == undefined) { var _local4 = _local2.getStyle("alternatingRowColors"); if (_local4 == undefined) { _local3 = _local2.getStyle("backgroundColor"); } else { _local3 = _local4[_local5 % _local4.length]; } } } return(_local3); } function invalidateStyle(propName) { cell.invalidateStyle(propName); super.invalidateStyle(propName); } function bGOnPress(Void) { grandOwner.pressFocus(); grandOwner.onRowPress(owner.rowIndex); } function bGOnRelease(Void) { grandOwner.releaseFocus(); grandOwner.onRowRelease(owner.rowIndex); } function bGOnRollOver(Void) { grandOwner.onRowRollOver(owner.rowIndex); } function bGOnRollOut(Void) { grandOwner.onRowRollOut(owner.rowIndex); } function bGOnDragOver(Void) { grandOwner.onRowDragOver(owner.rowIndex); } function bGOnDragOut(Void) { grandOwner.onRowDragOut(owner.rowIndex); } static var LOWEST_DEPTH = -16384; var state = "normal"; var disabledColor = 15263976; var normalColor = 16777215; }
Symbol 427 MovieClip Frame 1
var isRunLocally = _url.indexOf("file://"); this.createEmptyMovieClip("mcLobby", this.getNextHighestDepth()); if (isRunLocally > -1) { trace(" [G] Loaded local copy of lobby."); mcLobby.loadMovie("N://swfcontent/lobby.swf"); } else { trace(" [G] Loaded external copy of lobby."); mcLobby.loadMovie("http://www.miniclip.com/swfcontent/lobby.swf?cacheBuster=v0.1"); } stop();
Instance of Symbol 426 MovieClip in Symbol 427 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Symbol 447 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick2.play(); } MiniclipGameEvent("backToLobby"); _root.goBack(); }
Symbol 448 MovieClip Frame 1
stop();
Symbol 448 MovieClip Frame 2
_root.addsuccess = "false"; var blnIsWinning = 0; var id1 = _root.txtP1Name; var id2 = _root.txtP2Name; var score1 = _root.nP1Score; var score2 = _root.nP2Score; var word1 = ""; var word2 = ""; var p1len = 0; var p2len = 0; i = 0; while (i <= 10) { if (_root.arrP1Words[i].length > p1len) { p1len = _root.arrP1Words[i].length; word1 = _root.arrP1Words[i]; } if (_root.arrP2Words[i].length > p2len) { p2len = _root.arrP2Words[i].length; word2 = _root.arrP2Words[i]; } i++; } if (_root.LOCAL_USER == _root.txtP1Name) { if (score1 > score2) { blnIsWinning = 1; } } else if (score2 > score1) { blnIsWinning = 1; } txtP1N = id1 + ":"; txtP2N = id2 + ":"; txtP1S = _root.nP1Score; txtP2S = _root.nP2Score; gotoAndStop (5);
Symbol 448 MovieClip Frame 3
debug("2. Gave local user points."); if (_root.addsuccess == "true") { gotoAndStop (5); }
Symbol 448 MovieClip Frame 4
Symbol 448 MovieClip Frame 5
MiniclipGameEvent("opponentLeft"); stop();
Symbol 452 MovieClip Frame 1
stop();
Symbol 454 MovieClip Frame 1
stop();
Symbol 456 MovieClip Frame 1
stop();
Symbol 458 MovieClip Frame 1
stop();
Symbol 460 MovieClip Frame 1
stop();
Symbol 462 MovieClip Frame 1
stop();
Symbol 464 MovieClip Frame 1
stop();
Symbol 466 MovieClip Frame 1
stop();
Symbol 472 Button
on (release) { _root.iGotClicked(this); }
Symbol 476 MovieClip Frame 1
stop(); letter = null;
Symbol 483 Button
on (release, keyPress "<Enter>") { if ((message.text != "") && (message.text != undefined)) { chatSend(message.text); message.text = ""; } } on (rollOver) { graphic.gotoAndStop(2); } on (rollOut, release, dragOut, releaseOutside) { graphic.gotoAndStop(1); }
Symbol 488 MovieClip Frame 1
stop();
Symbol 491 Button
on (release) { sendRestart(); restart(); }
Symbol 494 Button
on (release) { this.gotoAndStop(1); } on (rollOver) { graphic.gotoAndStop(2); } on (rollOut, release, dragOut, releaseOutside) { graphic.gotoAndStop(1); }
Symbol 498 MovieClip Frame 1
stop();
Symbol 502 MovieClip Frame 1
stop();
Symbol 504 Button
on (release) { goBack(); }
Symbol 513 Button
on (release) { if (_root.blnMusic == 1) { unloadMovieNum (5); _root.blnMusic = 0; } else if (musoMode == 1) { loadMovieNum ("music.swf", 5); _root.blnMusic = 1; } else { loadMovieNum ("music2.swf", 5); _root.blnMusic = 1; } }
Symbol 518 Button
on (release) { if (_root.blnFX == 1) { _root.blnFX = 0; } else { _root.blnFX = 1; } }
Symbol 522 Button
on (release) { movQuit.gotoAndStop(2); }
Symbol 526 Button
on (release) { movQuit.gotoAndStop(2); }
Symbol 527 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick1.play(); } getURL ("javascript:void(window.open('help2.htm','reg','toolbar=no,location=no,scrollbars=no,width=440,height=438'));"); }
Symbol 541 MovieClip Frame 13
stop();
Symbol 542 MovieClip Frame 1
stop();
Symbol 542 MovieClip Frame 2
stop();
Symbol 570 Button
on (release) { if ((_root.MODE == 1) && (_root.myTurn)) { if (_root.blnFX == 1) { _root.sndClick2.gotoAndPlay(2); } nRand = random(_root.strCons.length); _root.charTemp = substring(_root.strCons, nRand, 1); _root.strLetters = _root.strLetters + _root.charTemp; eval ("_root.movL" + _root.nLCount).charL = _root.charTemp; _root.doPlay(_root.strLetters, 1); _root.nLCount++; if (_root.nLCount >= 10) { _root.MODE = -1; } } }
Symbol 575 Button
on (release) { if ((_root.MODE == 1) && (_root.myTurn)) { if (_root.blnFX == 1) { _root.sndClick2.gotoAndPlay(2); } var nRand = random(_root.strVows.length); debug("_root.strVows.length: " + _root.strVows.length); _root.charTemp = substring(_root.strVows, nRand, 1); debug("_root.charTemp: " + _root.charTemp); _root.strLetters = _root.strLetters + _root.charTemp; debug("_root.strLetters: " + _root.strLetters); eval ("_root.movL" + _root.nLCount).charL = _root.charTemp; _root.doPlay(_root.strLetters, 1); _root.nLCount++; if (_root.nLCount >= 10) { _root.MODE = -1; } } }
Symbol 579 MovieClip Frame 1
stop();
Symbol 579 MovieClip Frame 10
_root.nLCount = 1; _root.strLetters = ""; _root.charTemp = ""; stop();
Symbol 579 MovieClip Frame 15
gotoAndStop (1);
Symbol 579 MovieClip Frame 21
stop();
Symbol 594 Button
on (release) { if (_root.blnFX == 1) { _root.sndBS.gotoAndPlay(2); } _root.strEntry = _root.strEntry.substr(0, _root.strEntry.length - 1); _root.txtEntry = _root.strEntry.substr(0, _root.strEntry.length - 1); _root.nLCount = 1; _root.arrButtEnabled[_root.arrLastClicked[Number(_root.strEntry.length + 1)]] = 1; eval ("_root.movL" + Number(_root.arrLastClicked[Number(_root.strEntry.length + 1)] + 1)).cover.gotoAndStop(1); if (_root.strEntry.length == 0) { _root.txtEntry1 = ""; } if (_root.strEntry.length <= 1) { _root.txtEntry2 = ""; } if (_root.strEntry.length <= 2) { _root.txtEntry3 = ""; } if (_root.strEntry.length <= 3) { _root.txtEntry4 = ""; } if (_root.strEntry.length <= 4) { _root.txtEntry5 = ""; } if (_root.strEntry.length <= 5) { _root.txtEntry6 = ""; } if (_root.strEntry.length <= 6) { _root.txtEntry7 = ""; } if (_root.strEntry.length <= 7) { _root.txtEntry8 = ""; } if (_root.strEntry.length <= 8) { _root.txtEntry9 = ""; } }
Symbol 597 Button
on (release) { if (_root.MODE == 3) { if (_root.blnFX == 1) { _root.sndAdd.gotoAndPlay(2); } strTemp = this._name; strName = strTemp.substr(4, 1); if (_parent.arrButtEnabled[Number(strName) - 1] == 1) { charAdd = _root.strLetters.substr(Number(strName) - 1, 1); _root.strEntry = _root.strEntry + charAdd; _root.txtEntry = _root.strEntry; _root.txtEntry1 = _root.strEntry.charAt(0); _root.txtEntry2 = _root.strEntry.charAt(1); _root.txtEntry3 = _root.strEntry.charAt(2); _root.txtEntry4 = _root.strEntry.charAt(3); _root.txtEntry5 = _root.strEntry.charAt(4); _root.txtEntry6 = _root.strEntry.charAt(5); _root.txtEntry7 = _root.strEntry.charAt(6); _root.txtEntry8 = _root.strEntry.charAt(7); _root.txtEntry9 = _root.strEntry.charAt(8); _root.arrButtEnabled[Number(strName) - 1] = 0; _root.arrLastClicked[_root.strEntry.length] = Number(strName) - 1; cover.gotoAndStop(2); } } }
Symbol 599 MovieClip Frame 1
stop();
Symbol 599 MovieClip Frame 2
stop();
Symbol 600 MovieClip Frame 1
stop();
Symbol 622 MovieClip Frame 1
stop();
Symbol 622 MovieClip Frame 2
stop();
Symbol 622 MovieClip Frame 3
stop();
Symbol 629 Button
on (release) { _root.stopTimeOut(); if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.fEndRound(); gotoAndStop (6); }
Symbol 632 MovieClip Frame 1
stop();
Symbol 632 MovieClip Frame 2
txtP1Word = _root.P1SUBMIT; txtP2Word = _root.P2SUBMIT; _root.checksuccess = "false"; var p1word = _root.P1SUBMIT; var p2word = _root.P2SUBMIT; var type = 1; _root.fChangeMusic(2); _root.p1 = ""; _root.p2 = ""; var nErr = 0; if (p1word.length < 2) { txtP1Msg = _root.arrPlayers[0] + " submitted an invalid word"; p1word = "n6"; } else { txtP1Msg = ((_root.arrPlayers[0] + " submitted a ") + p1word.length) + " letter word:"; } if (p2word.length < 3) { txtP2Msg = _root.arrPlayers[1] + " submitted an invalid word"; p2word = "n6"; } else { txtP2Msg = ((_root.arrPlayers[1] + " submitted a ") + p2word.length) + " letter word:"; } this.createEmptyMovieClip("sendToDatabase", this.getNextHighestDepth()); sendToDatabase.p1 = p1word; sendToDatabase.p2 = p2word; sendToDatabase.loadVariables("http://www.miniclip.com/php/checkword.php", "POST"); play();
Symbol 632 MovieClip Frame 3
if (sendToDatabase.checksuccess == "true") { _root.p1 = sendToDatabase.p1; _root.p2 = sendToDatabase.p2; debug("sendToDatabase.p1: " + sendToDatabase.p1); debug("sendToDatabase.p2: " + sendToDatabase.p2); removeMovieClip(sendToDatabase); gotoAndStop (5); } else { nErr++; if (nErr > 100) { gotoAndPlay (2); } play(); }
Symbol 632 MovieClip Frame 4
gotoAndPlay (3);
Symbol 632 MovieClip Frame 5
_root.clickButtonTimeOut = function () { if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.fEndRound(); gotoAndStop (6); }; _root.setTimeOut(10, _root.clickButtonTimeOut); var sc1 = 0; var sc2 = 0; if (_root.p1 == "true") { movP1Ticks.gotoAndStop(2); sc1 = p1word.length; _root.arrP1Words[_root.nRound] = p1word; if (sc1 == 9) { sc1 = 18; } } else { movP1Ticks.gotoAndStop(3); } if (_root.p2 == "true") { movP2Ticks.gotoAndStop(2); sc2 = p2word.length; _root.arrP2Words[_root.nRound] = p2word; if (sc2 == 9) { sc2 = 18; } } else { movP2Ticks.gotoAndStop(3); } if (sc1 > sc2) { sc2 = 0; } if (sc2 > sc1) { sc1 = 0; } if (sc1 > 0) { txtScores = txtScores + ((((_root.arrPlayers[0] + " scores ") + sc1) + " with the word: ") + p1word); } else { txtScores = txtScores + (((((_root.arrPlayers[0] + " scores ") + sc1) + " because ") + p1word) + " is not in our dictionary."); } if (sc2 > 0) { txtScores = txtScores + ((((_root.arrPlayers[1] + " scores ") + sc2) + " with the word: ") + p2word); } else { txtScores = txtScores + (((((_root.arrPlayers[1] + " scores ") + sc2) + " because ") + p2word) + " is not in our dictionary."); } _root.nP1Score = _root.nP1Score + sc1; _root.nP2Score = _root.nP2Score + sc2; _root.txtP1Score = _root.nP1Score; _root.txtP2Score = _root.nP2Score; _root.movScores.txtP1Score = _root.nP1Score; _root.movScores.txtP1Score2 = _root.nP1Score; _root.movScores.txtP2Score = _root.nP2Score; _root.movScores.txtP2Score2 = _root.nP2Score; stop();
Symbol 632 MovieClip Frame 6
stop();
Symbol 640 MovieClip Frame 1
stop();
Symbol 640 MovieClip Frame 2
txtP1N = _root.arrPlayers[0] + ":"; txtP2N = _root.arrPlayers[1] + ":"; txtP1S = _root.nP1Score; txtP2S = _root.nP2Score; if (_root.nRound == _root.nConRound) { txtRnd = "BONUS ROUND"; txtRnd2 = "Find the 9 letter word!"; } else { txtRnd = "ROUND " + _root.nRound; txtRnd2 = ""; } play();
Symbol 640 MovieClip Frame 90
if (_root.CONUNRND == 1) { _root.movTheButts.gotoAndPlay(2); } else if (_root.LOCAL_USER == _root.arrPlayers[_root.P_TURN]) { _root.setTimeOut(20, _root.fillInLetters); _root.movTheButts.gotoAndPlay(2); } else { _root.setTimeOut(20, undefined); } _root.fChangeMusic(1); gotoAndStop (1);
Symbol 648 Button
on (release) { _root.fEndRound(); gotoAndStop (6); }
Symbol 651 MovieClip Frame 1
stop();
Symbol 651 MovieClip Frame 2
txtP1Word = _root.P1SUBMIT; txtP2Word = _root.P2SUBMIT; _root.checksuccess = "false"; var p1nums = _root.P1SUBMIT; var p2nums = _root.P2SUBMIT; txtTarg = _root.nTheTarget; _root.p1 = ""; _root.p2 = ""; var nErr = 0; txtP1Msg = _root.arrPlayers[0] + " submitted:"; txtP2Msg = _root.arrPlayers[1] + " submitted:"; loadVariablesNum (_root.BASE + "/checknumbers.asp", 0, "POST"); play();
Symbol 651 MovieClip Frame 3
if (_root.checksuccess == "true") { gotoAndStop (5); } else { nErr++; if (nErr > 250) { gotoAndPlay (2); } play(); }
Symbol 651 MovieClip Frame 4
gotoAndPlay (3);
Symbol 651 MovieClip Frame 5
var sc1 = 0; var sc2 = 0; if (_root.p1 == "true") { if ((_root.p1calc >= (_root.nTheTarget - 10)) && (_root.p1calc <= (_root.nTheTarget + 10))) { if (_root.p1calc == _root.nTheTarget) { sc1 = 10; } else if ((_root.p1calc >= (_root.nTheTarget - 10)) && (_root.p1calc < _root.nTheTarget)) { sc1 = 10 - (_root.nTheTarget - _root.p1calc); } else if ((_root.p1calc <= (_root.nTheTarget + 10)) && (_root.p1calc > _root.nTheTarget)) { sc1 = 10 - (_root.p1calc - _root.nTheTarget); } movP1Ticks.gotoAndStop(2); txtP1Word = txtP1Word + (" = " + _root.p1calc); } else { txtP1Word = txtP1Word + (" = " + _root.p1calc); movP1Ticks.gotoAndStop(3); } } else { movP1Ticks.gotoAndStop(3); } if (_root.p2 == "true") { if ((_root.p2calc >= (_root.nTheTarget - 10)) && (_root.p2calc <= (_root.nTheTarget + 10))) { if (_root.p2calc == _root.nTheTarget) { sc2 = 10; } else if ((_root.p2calc >= (_root.nTheTarget - 10)) && (_root.p2calc < _root.nTheTarget)) { sc2 = 10 - (_root.nTheTarget - _root.p2calc); } else if ((_root.p2calc <= (_root.nTheTarget + 10)) && (_root.p2calc > _root.nTheTarget)) { sc2 = 10 - (_root.p2calc - _root.nTheTarget); } movP2Ticks.gotoAndStop(2); txtP2Word = txtP2Word + (" = " + _root.p2calc); } else { txtP2Word = txtP2Word + (" = " + _root.p2calc); movP2Ticks.gotoAndStop(3); } } else { movP2Ticks.gotoAndStop(3); } if (sc1 > 0) { txtScores = txtScores + ((((_root.arrPlayers[0] + " scores ") + sc1) + " with the number ") + p1calc); } else { txtScores = txtScores + (_root.arrPlayers[0] + " scores zilch."); } if (sc2 > 0) { txtScores = txtScores + ((((_root.arrPlayers[1] + " scores ") + sc2) + " with the word: ") + p2calc); } else { txtScores = txtScores + (_root.arrPlayers[1] + " scores zilch."); } _root.nP1Score = _root.nP1Score + sc1; _root.nP2Score = _root.nP2Score + sc2; _root.movScores.txtP1Score = _root.nP1Score; _root.movScores.txtP2Score = _root.nP2Score; _root.movScores.txtP1Score2 = _root.nP1Score; _root.movScores.txtP2Score2 = _root.nP2Score; stop();
Symbol 651 MovieClip Frame 6
stop();
Symbol 662 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.doPlay("", 9); _root.stopTimeOut(); }
Symbol 665 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.client_nc.close(); _root.gotoAndPlay("LOADED"); _root.fResetVars(); }
Symbol 670 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.fResetVars(); MiniclipGameEvent("backToLobby"); _root.gotoAndPlay("Holding Room"); }
Symbol 675 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.doPlay("nostring", 9); _root.GAMEOVER = 2; gotoAndStop (8); }
Symbol 678 MovieClip Frame 1
stop();
Symbol 678 MovieClip Frame 2
_root.addsuccess = "false"; _root.GAMEOVER = 1; if (_root.LOCAL_USER == _root.arrPlayers[0]) { var errcnt = 0; var word1 = ""; var word2 = ""; var p1len = 0; var p2len = 0; i = 0; while (i <= 10) { if (_root.arrP1Words[i].length > p1len) { p1len = _root.arrP1Words[i].length; word1 = _root.arrP1Words[i]; } if (_root.arrP2Words[i].length > p2len) { p2len = _root.arrP2Words[i].length; word2 = _root.arrP2Words[i]; } i++; } var id1 = _root.arrPlayers[0]; var id2 = _root.arrPlayers[1]; var score1 = _root.nP1Score; var score2 = _root.nP2Score; } else { gotoAndPlay (6); } txtP1N = (_root.arrPlayers[0] + _root.arrIDs[1]) + ":"; txtP2N = (_root.arrPlayers[1] + _root.arrIDs[0]) + ":"; txtP1S = _root.nP1Score; txtP2S = _root.nP2Score; if (_root.nP1Score > _root.nP2Score) { debug(("Awarded " + _root.gamePlayer0) + "win."); MiniclipGameEvent("rewardUserWin", _root.gamePlayer0); } else if (_root.nP1Score < _root.nP2Score) { debug(("Awarded " + _root.gamePlayer1) + "win."); MiniclipGameEvent("rewardUserWin", _root.gamePlayer1); } else { debug("Draw. No change to rating."); }
Symbol 678 MovieClip Frame 3
if ((_root.addsuccess == "true") || true) { errcnt++; if (errcnt > 750) { gotoAndPlay (6); } gotoAndStop (5); } gotoAndPlay (6);
Symbol 678 MovieClip Frame 4
gotoAndPlay (3);
Symbol 678 MovieClip Frame 5
var sc1 = 0; var sc2 = 0; _root.GAMEOVER = 1; _root.txtP1Score = _root.nP1Score; _root.txtP2Score = _root.nP2Score; stop();
Symbol 678 MovieClip Frame 6
txtP1N = _root.arrPlayers[0]; txtP2N = _root.arrPlayers[1]; txtP1S = _root.nP1Score; txtP2S = _root.nP2Score; play();
Symbol 678 MovieClip Frame 7
_root.GAMEOVER = 2; stop();
Symbol 678 MovieClip Frame 8
stop();
Symbol 678 MovieClip Frame 22
_root.fResetVars(); _root.gotoAndPlay("PLAY"); gotoAndStop (1);
Symbol 682 MovieClip Frame 1
stop();
Symbol 682 MovieClip Frame 39
_root.consuccess = ""; if (_root.LOCAL_USER == _root.arrPlayers[0]) { var randomConundrum = random(_parent.arrConundrums.length); _root.theconundrum = _parent.arrConundrums[randomConundrum]; _root.theconundrum = _root.theconundrum.toUpperCase(); _root.consuccess = "true"; debug("[G] Conondrum created: NOT TELLING"); } else { stop(); }
Symbol 682 MovieClip Frame 40
if (_root.consuccess == "true") { _root.doPlay(_root.theconundrum, 5); gotoAndPlay (42); }
Symbol 682 MovieClip Frame 41
gotoAndPlay (40);
Symbol 682 MovieClip Frame 43
gotoAndStop (1);
Symbol 685 Button
on (release) { _root.stopTimeOut(); if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.fEndRound(); gotoAndStop (6); }
Symbol 691 MovieClip Frame 1
stop();
Symbol 691 MovieClip Frame 2
_root.checksuccess = "false"; var type = 1; if (_root.blnFX == 1) { _root.sndYes.play(); } _root.p1 = ""; _root.p2 = ""; var nErr = 0; if (_root.P1SUBMIT != "") { txtP1Msg = _root.arrPlayers[0] + " submitted:"; txtP1Word = _root.P1SUBMIT; var p1word = _root.P1SUBMIT; var p2word = "n6"; _root.arrAttempted[0] = 1; } else { txtP1Msg = _root.arrPlayers[1] + " submitted:"; txtP1Word = _root.P2SUBMIT; var p1word = _root.P2SUBMIT; var p2word = "n6"; _root.arrAttempted[1] = 1; } this.createEmptyMovieClip("sendToDatabase", this.getNextHighestDepth()); sendToDatabase.p1 = p1word; sendToDatabase.p2 = p2word; sendToDatabase.loadVariables("http://www.miniclip.com/php/checkword.php", "POST"); play();
Symbol 691 MovieClip Frame 3
if (sendToDatabase.checksuccess == "true") { _root.p1 = sendToDatabase.p1; _root.p2 = sendToDatabase.p2; removeMovieClip(sendToDatabase); gotoAndStop (5); } else { nErr++; if (nErr > 100) { gotoAndPlay (2); } play(); }
Symbol 691 MovieClip Frame 4
gotoAndPlay (3);
Symbol 691 MovieClip Frame 5
_root.clickButtonTimeOut = function () { if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.fEndRound(); gotoAndStop (6); }; _root.setTimeOut(10, _root.clickButtonTimeOut); var sc1 = 0; var sc2 = 0; if (_root.p1 == "true") { movP1Ticks.gotoAndStop(2); if (_root.P1SUBMIT != "") { sc1 = 10; sc2 = 0; } else { sc1 = 0; sc2 = 10; } } else { gotoAndPlay (10); } if (sc1 > 0) { txtScores = txtScores + (_root.arrPlayers[0] + " scores 10 points"); } else { txtScores = txtScores + (((((_root.arrPlayers[0] + " scores ") + sc1) + " because ") + p1word) + " is not in our dictionary."); } if (sc2 > 0) { txtScores = txtScores + (_root.arrPlayers[1] + " scores 10 points"); } else { txtScores = txtScores + (((((_root.arrPlayers[1] + " scores ") + sc2) + " because ") + p2word) + " is not in our dictionary."); } _root.nP1Score = _root.nP1Score + sc1; _root.nP2Score = _root.nP2Score + sc2; _root.txtP1Score = _root.nP1Score; _root.txtP2Score = _root.nP2Score; _root.movScores.txtP1Score = _root.nP1Score; _root.movScores.txtP1Score2 = _root.nP1Score; _root.movScores.txtP2Score = _root.nP2Score; _root.movScores.txtP2Score2 = _root.nP2Score; stop();
Symbol 691 MovieClip Frame 6
stop();
Symbol 691 MovieClip Frame 7
_root.clickButtonTimeOut = function () { if (_root.blnFX == 1) { _root.sndClick2.play(); } _root.fEndRound(); gotoAndStop (6); }; _root.setTimeOut(10, _root.clickButtonTimeOut); if (_root.blnFX == 1) { _root.sndNo.play(); } txtAnswer = _root.strConAnswer; stop();
Symbol 691 MovieClip Frame 10
_root.stopTimeOut(); if (_root.blnFX == 1) { _root.sndNo.play(); } if (_root.P1SUBMIT != "") { txtInfo = ((((_root.arrPlayers[0] + " has submitted an incorrect answer: ") + _root.P1SUBMIT) + ". ") + _root.arrPlayers[1]) + " you may continue to play."; } else { txtInfo = ((((_root.arrPlayers[1] + " has submitted an incorrect answer: ") + _root.P2SUBMIT) + ". ") + _root.arrPlayers[0]) + " you may continue to play."; } play();
Symbol 691 MovieClip Frame 78
_root.stopTimeOut(); _root.MODE = 3; gotoAndStop (1);
Symbol 694 MovieClip Frame 1
stop();
Symbol 694 MovieClip Frame 2
if (_root.blnFX == 1) { _root.sndNo.play(); } play();
Symbol 694 MovieClip Frame 38
gotoAndStop (1);
Symbol 694 MovieClip Frame 81
if (_root.blnFX == 1) { _root.sndNo.play(); }
Symbol 699 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick2.play(); } gotoAndStop (1); }
Symbol 703 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick2.play(); } MiniclipGameEvent("backToLobby"); _root.goBack(); }
Symbol 705 MovieClip Frame 1
stop();
Symbol 705 MovieClip Frame 2
stop();
Symbol 715 MovieClip Frame 1
stop();
Symbol 715 MovieClip Frame 2
stop();
Symbol 715 MovieClip Frame 3
stop();
Symbol 715 MovieClip Frame 4
stop();
Symbol 715 MovieClip Frame 5
stop();
Symbol 715 MovieClip Frame 6
stop();
Symbol 715 MovieClip Frame 7
stop();
Symbol 715 MovieClip Frame 8
stop();
Symbol 715 MovieClip Frame 9
stop();
Symbol 715 MovieClip Frame 10
stop();
Symbol 715 MovieClip Frame 11
stop();
Symbol 715 MovieClip Frame 12
stop();
Symbol 715 MovieClip Frame 13
stop();
Symbol 715 MovieClip Frame 14
stop();
Symbol 715 MovieClip Frame 15
stop();
Symbol 715 MovieClip Frame 16
stop();
Symbol 715 MovieClip Frame 17
stop();
Symbol 715 MovieClip Frame 18
stop();
Symbol 715 MovieClip Frame 19
stop();
Symbol 715 MovieClip Frame 20
stop();
Symbol 715 MovieClip Frame 21
stop();
Symbol 715 MovieClip Frame 22
stop();
Symbol 715 MovieClip Frame 23
stop();
Symbol 715 MovieClip Frame 24
stop();
Symbol 715 MovieClip Frame 25
stop();
Symbol 715 MovieClip Frame 26
stop();
Symbol 715 MovieClip Frame 27
stop();
Symbol 715 MovieClip Frame 28
stop();
Symbol 715 MovieClip Frame 29
stop();
Symbol 715 MovieClip Frame 30
stop();
Symbol 715 MovieClip Frame 31
stop();
Symbol 715 MovieClip Frame 32
stop();
Symbol 715 MovieClip Frame 33
stop();
Symbol 715 MovieClip Frame 34
stop();
Symbol 715 MovieClip Frame 35
stop();
Symbol 715 MovieClip Frame 36
stop();
Symbol 715 MovieClip Frame 37
stop();
Symbol 715 MovieClip Frame 38
stop();
Symbol 715 MovieClip Frame 39
stop();
Symbol 715 MovieClip Frame 40
stop();
Symbol 715 MovieClip Frame 41
stop();
Symbol 715 MovieClip Frame 42
stop();
Symbol 715 MovieClip Frame 43
stop();
Symbol 715 MovieClip Frame 44
stop();
Symbol 715 MovieClip Frame 45
stop();
Symbol 715 MovieClip Frame 46
stop();
Symbol 715 MovieClip Frame 47
stop();
Symbol 715 MovieClip Frame 48
stop();
Symbol 715 MovieClip Frame 49
stop();
Symbol 715 MovieClip Frame 50
stop();
Symbol 715 MovieClip Frame 51
stop();
Symbol 715 MovieClip Frame 52
stop();
Symbol 715 MovieClip Frame 53
stop();
Symbol 715 MovieClip Frame 54
stop();
Symbol 715 MovieClip Frame 55
stop();
Symbol 715 MovieClip Frame 56
stop();
Symbol 715 MovieClip Frame 57
stop();
Symbol 715 MovieClip Frame 58
stop();
Symbol 715 MovieClip Frame 59
stop();
Symbol 715 MovieClip Frame 60
stop();
Symbol 715 MovieClip Frame 61
stop();
Symbol 715 MovieClip Frame 62
stop();
Symbol 715 MovieClip Frame 63
stop();
Symbol 715 MovieClip Frame 64
stop();
Symbol 715 MovieClip Frame 65
stop();
Symbol 715 MovieClip Frame 66
stop();
Symbol 715 MovieClip Frame 67
stop();
Symbol 715 MovieClip Frame 68
stop();
Symbol 715 MovieClip Frame 69
stop();
Symbol 715 MovieClip Frame 70
stop();
Symbol 715 MovieClip Frame 71
stop();
Symbol 715 MovieClip Frame 72
stop();
Symbol 715 MovieClip Frame 73
stop();
Symbol 715 MovieClip Frame 74
stop();
Symbol 715 MovieClip Frame 75
stop();
Symbol 715 MovieClip Frame 76
stop();
Symbol 715 MovieClip Frame 77
stop();
Symbol 715 MovieClip Frame 78
stop();
Symbol 715 MovieClip Frame 79
stop();
Symbol 715 MovieClip Frame 80
stop();
Symbol 715 MovieClip Frame 81
stop();
Symbol 715 MovieClip Frame 82
stop();
Symbol 715 MovieClip Frame 83
stop();
Symbol 715 MovieClip Frame 84
stop();
Symbol 715 MovieClip Frame 85
stop();
Symbol 715 MovieClip Frame 86
stop();
Symbol 715 MovieClip Frame 87
stop();
Symbol 715 MovieClip Frame 88
stop();
Symbol 715 MovieClip Frame 89
stop();
Symbol 715 MovieClip Frame 90
stop();
Symbol 715 MovieClip Frame 91
stop();
Symbol 715 MovieClip Frame 92
stop();
Symbol 715 MovieClip Frame 93
stop();
Symbol 715 MovieClip Frame 94
stop();
Symbol 715 MovieClip Frame 95
stop();
Symbol 715 MovieClip Frame 96
stop();
Symbol 715 MovieClip Frame 97
stop();
Symbol 715 MovieClip Frame 98
stop();
Symbol 715 MovieClip Frame 99
stop();
Symbol 715 MovieClip Frame 100
stop();
Symbol 715 MovieClip Frame 101
stop();
Symbol 715 MovieClip Frame 102
stop();
Symbol 715 MovieClip Frame 103
stop();
Symbol 715 MovieClip Frame 104
stop();
Symbol 715 MovieClip Frame 105
stop();
Symbol 715 MovieClip Frame 106
stop();
Symbol 715 MovieClip Frame 107
stop();
Symbol 715 MovieClip Frame 108
stop();
Symbol 715 MovieClip Frame 109
stop();
Symbol 715 MovieClip Frame 110
stop();
Symbol 715 MovieClip Frame 111
stop();
Symbol 715 MovieClip Frame 112
stop();
Symbol 715 MovieClip Frame 113
stop();
Symbol 715 MovieClip Frame 114
stop();
Symbol 715 MovieClip Frame 115
stop();
Symbol 715 MovieClip Frame 116
stop();
Symbol 715 MovieClip Frame 117
stop();
Symbol 715 MovieClip Frame 118
stop();
Symbol 715 MovieClip Frame 119
stop();
Symbol 715 MovieClip Frame 120
stop();
Symbol 715 MovieClip Frame 121
stop();
Symbol 715 MovieClip Frame 122
stop();
Symbol 715 MovieClip Frame 123
stop();
Symbol 715 MovieClip Frame 124
stop();
Symbol 715 MovieClip Frame 125
stop();
Symbol 715 MovieClip Frame 126
stop();
Symbol 715 MovieClip Frame 127
stop();
Symbol 715 MovieClip Frame 128
stop();
Symbol 715 MovieClip Frame 129
stop();
Symbol 715 MovieClip Frame 130
stop();
Symbol 715 MovieClip Frame 131
stop();
Symbol 715 MovieClip Frame 132
stop();
Symbol 715 MovieClip Frame 133
stop();
Symbol 715 MovieClip Frame 134
stop();
Symbol 715 MovieClip Frame 135
stop();
Symbol 715 MovieClip Frame 136
stop();
Symbol 715 MovieClip Frame 137
stop();
Symbol 715 MovieClip Frame 138
stop();
Symbol 715 MovieClip Frame 139
stop();
Symbol 715 MovieClip Frame 140
stop();
Symbol 715 MovieClip Frame 141
stop();
Symbol 715 MovieClip Frame 142
stop();
Symbol 715 MovieClip Frame 143
stop();
Symbol 715 MovieClip Frame 144
stop();
Symbol 715 MovieClip Frame 145
stop();
Symbol 715 MovieClip Frame 146
stop();
Symbol 715 MovieClip Frame 147
stop();
Symbol 715 MovieClip Frame 148
stop();
Symbol 715 MovieClip Frame 149
stop();
Symbol 715 MovieClip Frame 150
stop();
Symbol 715 MovieClip Frame 151
stop();
Symbol 715 MovieClip Frame 152
stop();
Symbol 715 MovieClip Frame 153
stop();
Symbol 715 MovieClip Frame 154
stop();
Symbol 715 MovieClip Frame 155
stop();
Symbol 715 MovieClip Frame 156
stop();
Symbol 715 MovieClip Frame 157
stop();
Symbol 715 MovieClip Frame 158
stop();
Symbol 715 MovieClip Frame 159
stop();
Symbol 715 MovieClip Frame 160
stop();
Symbol 715 MovieClip Frame 161
stop();
Symbol 715 MovieClip Frame 162
stop();
Symbol 715 MovieClip Frame 163
stop();
Symbol 715 MovieClip Frame 164
stop();
Symbol 715 MovieClip Frame 165
stop();
Symbol 715 MovieClip Frame 166
stop();
Symbol 715 MovieClip Frame 167
stop();
Symbol 715 MovieClip Frame 168
stop();
Symbol 715 MovieClip Frame 169
stop();
Symbol 715 MovieClip Frame 170
stop();
Symbol 715 MovieClip Frame 171
stop();
Symbol 715 MovieClip Frame 172
stop();
Symbol 715 MovieClip Frame 173
stop();
Symbol 715 MovieClip Frame 174
stop();
Symbol 715 MovieClip Frame 175
stop();
Symbol 715 MovieClip Frame 176
stop();
Symbol 715 MovieClip Frame 177
stop();
Symbol 715 MovieClip Frame 178
stop();
Symbol 715 MovieClip Frame 179
stop();
Symbol 715 MovieClip Frame 180
stop();
Symbol 723 Button
on (release) { if (_root.blnFX == 1) { _root.sndClick2.play(); } if (arrPlayers[0] == LOCAL_USER) { if (arrAttempted[0] == 0) { if (txtEntry.length >= 9) { doPlay(txtEntry, 6); } else { movConMsgs.gotoAndPlay(80); } } else { movConMsgs.gotoAndPlay(2); } } else if (arrAttempted[1] == 0) { if (txtEntry.length >= 9) { doPlay(txtEntry, 6); } else { movConMsgs.gotoAndPlay(80); } } else { movConMsgs.gotoAndPlay(2); } }
Symbol 736 Button
on (release) { txtEntry = txtEntry + "("; blnNumEnabled = 1; }
Symbol 738 Button
on (release) { txtEntry = txtEntry + ")"; blnNumEnabled = 1; }
Symbol 740 Button
on (release) { txtEntry = txtEntry + "+"; blnNumEnabled = 1; }
Symbol 742 Button
on (release) { txtEntry = txtEntry + "/"; blnNumEnabled = 1; }
Symbol 743 Button
on (release) { txtEntry = txtEntry + "-"; blnNumEnabled = 1; }
Symbol 745 Button
on (release) { txtEntry = txtEntry + "*"; blnNumEnabled = 1; }
Symbol 748 Button
on (release) { if (_root.MODE == 3) { strTemp = this._name; strName = strTemp.substr(4, 1); if ((_root.arrButtEnabled[Number(strName) - 1] == 1) and (_root.blnNumEnabled == 1)) { charAdd = _root.arrNumbers[Number(strName) - 1]; _root.txtEntry = _root.txtEntry + charAdd; _root.arrButtEnabled[Number(strName) - 1] = 0; _root.blnNumEnabled = 0; } } }
Symbol 758 Button
on (release) { if (((!CECIL) && (MODE == 1)) && (LOCAL_USER == arrPlayers[P_TURN])) { nRand = random(length(strBigNums)); charTemp = substring(strBigNums, nRand, 1); charTemp = Number(charTemp) * 25; strNumbers = strNumbers + (charTemp + ","); eval ("movL" + nLCount).charL = charTemp; doPlay(strNumbers, 2); var arrNumbers = strNumbers.split(","); nLCount++; if (nLCount >= 7) { CECIL = 1; } } }
Symbol 760 Button
on (release) { if (((!CECIL) && (MODE == 1)) && (LOCAL_USER == arrPlayers[P_TURN])) { nRand = random(length(strSmallNums)); charTemp = substring(strSmallNums, nRand, 1); strNumbers = strNumbers + (charTemp + ","); eval ("movL" + nLCount).charL = Number(charTemp); doPlay(strNumbers, 2); var arrNumbers = strNumbers.split(","); nLCount++; if (nLCount >= 7) { CECIL = 1; } } }

Library Items

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

Instance Names

"mcGA"Frame 1Symbol 421 Button
"comLobby"Frame 35Symbol 427 MovieClip
"movLeaver"Frame 49Symbol 448 MovieClip
"sndClick2"Frame 49Symbol 452 MovieClip
"sndClick1"Frame 49Symbol 454 MovieClip
"sndYes"Frame 49Symbol 456 MovieClip
"sndNo"Frame 49Symbol 458 MovieClip
"sndSwish"Frame 49Symbol 460 MovieClip
"sndAdd"Frame 49Symbol 462 MovieClip
"sndBS"Frame 49Symbol 464 MovieClip
"sndCrowd"Frame 49Symbol 466 MovieClip
"piece1_1"Frame 49Symbol 476 MovieClip
"piece2_1"Frame 49Symbol 476 MovieClip
"piece3_1"Frame 49Symbol 476 MovieClip
"piece1_2"Frame 49Symbol 476 MovieClip
"piece2_2"Frame 49Symbol 476 MovieClip
"piece3_2"Frame 49Symbol 476 MovieClip
"piece1_3"Frame 49Symbol 476 MovieClip
"piece2_3"Frame 49Symbol 476 MovieClip
"piece3_3"Frame 49Symbol 476 MovieClip
"noHit"Frame 49Symbol 480 MovieClip
"message"Frame 49Symbol 482 EditableText
"graphic"Frame 49Symbol 488 MovieClip
"chatBox"Frame 49Symbol 489 EditableText
"popup"Frame 49Symbol 502 MovieClip
"bar"Frame 49Symbol 243 MovieClip [FScrollBarSymbol]
"movBounce1"Frame 96Symbol 542 MovieClip
"movBounce2"Frame 98Symbol 542 MovieClip
"movBounce3"Frame 100Symbol 542 MovieClip
"movBounce4"Frame 102Symbol 542 MovieClip
"movBounce5"Frame 104Symbol 542 MovieClip
"movBounce6"Frame 106Symbol 542 MovieClip
"movBounce7"Frame 108Symbol 542 MovieClip
"movBounce8"Frame 110Symbol 542 MovieClip
"movBounce9"Frame 112Symbol 542 MovieClip
"movScores"Frame 144Symbol 560 MovieClip
"movTheButts"Frame 148Symbol 579 MovieClip
"movScores"Frame 148Symbol 560 MovieClip
"fps"Frame 155Symbol 584 MovieClip
" "Frame 158Symbol 585 EditableText
" "Frame 158Symbol 588 EditableText
"movL1"Frame 158Symbol 600 MovieClip
"movL2"Frame 158Symbol 600 MovieClip
"movL3"Frame 158Symbol 600 MovieClip
"movL4"Frame 158Symbol 600 MovieClip
"movL5"Frame 158Symbol 600 MovieClip
"movL6"Frame 158Symbol 600 MovieClip
"movL7"Frame 158Symbol 600 MovieClip
"movL8"Frame 158Symbol 600 MovieClip
"movL9"Frame 158Symbol 600 MovieClip
"movSubmit"Frame 158Symbol 632 MovieClip
"movMsgs"Frame 158Symbol 640 MovieClip
"movNumbersUp"Frame 158Symbol 651 MovieClip
"movMsgs"Frame 158Symbol 640 MovieClip
"movMsgs2"Frame 158Symbol 678 MovieClip
"movDoCon"Frame 158Symbol 682 MovieClip
"movConSubmit"Frame 158Symbol 691 MovieClip
"movConMsgs"Frame 158Symbol 694 MovieClip
"movQuit"Frame 158Symbol 705 MovieClip
"movTimer"Frame 159Symbol 715 MovieClip
"movL5"Frame 172Symbol 749 MovieClip
"movL4"Frame 172Symbol 749 MovieClip
"movL3"Frame 172Symbol 749 MovieClip
"movL2"Frame 172Symbol 749 MovieClip
"movL1"Frame 172Symbol 749 MovieClip
"movL6"Frame 172Symbol 749 MovieClip
"movCecil"Frame 172Symbol 755 MovieClip
"classHolder"Symbol 9 MovieClip [GWListBoxClass] Frame 1Symbol 7 MovieClip
"baseclass"Symbol 9 MovieClip [GWListBoxClass] Frame 1Symbol 8 MovieClip [GWBaseClass]
"BL"Symbol 30 MovieClip Frame 1Symbol 13 MovieClip
"BR"Symbol 30 MovieClip Frame 1Symbol 15 MovieClip
"B"Symbol 30 MovieClip Frame 1Symbol 17 MovieClip
"TL"Symbol 30 MovieClip Frame 1Symbol 19 MovieClip
"TR"Symbol 30 MovieClip Frame 1Symbol 21 MovieClip
"R"Symbol 30 MovieClip Frame 1Symbol 23 MovieClip
"L"Symbol 30 MovieClip Frame 1Symbol 25 MovieClip
"T"Symbol 30 MovieClip Frame 1Symbol 27 MovieClip
"C"Symbol 30 MovieClip Frame 1Symbol 29 MovieClip
"base_mc"Symbol 33 MovieClip Frame 1Symbol 30 MovieClip
"arrow_mc"Symbol 33 MovieClip Frame 1Symbol 32 MovieClip
"base_mc"Symbol 34 MovieClip Frame 1Symbol 30 MovieClip
"arrow_mc"Symbol 34 MovieClip Frame 1Symbol 32 MovieClip
"off_mc"Symbol 35 MovieClip Frame 1Symbol 33 MovieClip
"down_mc"Symbol 35 MovieClip Frame 1Symbol 34 MovieClip
"up_mc"Symbol 35 MovieClip Frame 1Symbol 33 MovieClip
"base_mc"Symbol 38 MovieClip Frame 1Symbol 30 MovieClip
"arrow_mc"Symbol 38 MovieClip Frame 1Symbol 37 MovieClip
"base_mc"Symbol 39 MovieClip Frame 1Symbol 30 MovieClip
"arrow_mc"Symbol 39 MovieClip Frame 1Symbol 37 MovieClip
"off_mc"Symbol 40 MovieClip Frame 1Symbol 38 MovieClip
"down_mc"Symbol 40 MovieClip Frame 1Symbol 39 MovieClip
"up_mc"Symbol 40 MovieClip Frame 1Symbol 38 MovieClip
"C"Symbol 60 MovieClip Frame 1Symbol 43 MovieClip
"TR"Symbol 60 MovieClip Frame 1Symbol 45 MovieClip
"TL"Symbol 60 MovieClip Frame 1Symbol 47 MovieClip
"T"Symbol 60 MovieClip Frame 1Symbol 49 MovieClip
"BR"Symbol 60 MovieClip Frame 1Symbol 51 MovieClip
"BL"Symbol 60 MovieClip Frame 1Symbol 53 MovieClip
"B"Symbol 60 MovieClip Frame 1Symbol 55 MovieClip
"R"Symbol 60 MovieClip Frame 1Symbol 57 MovieClip
"L"Symbol 60 MovieClip Frame 1Symbol 59 MovieClip
"base_mc"Symbol 63 MovieClip Frame 1Symbol 60 MovieClip
"mid_mc"Symbol 63 MovieClip Frame 1Symbol 62 MovieClip
"track_mc"Symbol 64 MovieClip Frame 1Symbol 11 MovieClip
"top_mc"Symbol 64 MovieClip Frame 1Symbol 35 MovieClip
"bot_mc"Symbol 64 MovieClip Frame 1Symbol 40 MovieClip
"thumb_mc"Symbol 64 MovieClip Frame 1Symbol 63 MovieClip
"classHolder"Symbol 65 MovieClip [GWScrollerClass] Frame 1Symbol 7 MovieClip
"baseclass"Symbol 65 MovieClip [GWScrollerClass] Frame 1Symbol 8 MovieClip [GWBaseClass]
"scrollbar_mc"Symbol 66 MovieClip [GWScrollBarSilver] Frame 1Symbol 64 MovieClip
"darkshadow_mc"Symbol 70 MovieClip [GWPanel] Frame 1Symbol 69 MovieClip
"highlight3D_mc"Symbol 70 MovieClip [GWPanel] Frame 1Symbol 69 MovieClip
"shadow_mc"Symbol 70 MovieClip [GWPanel] Frame 1Symbol 69 MovieClip
"highlight_mc"Symbol 70 MovieClip [GWPanel] Frame 1Symbol 69 MovieClip
"face_mc"Symbol 70 MovieClip [GWPanel] Frame 1Symbol 69 MovieClip
"baseclass"Symbol 70 MovieClip [GWPanel] Frame 1Symbol 8 MovieClip [GWBaseClass]
"classHolder"Symbol 72 MovieClip [GWLabelClass] Frame 1Symbol 7 MovieClip
"base"Symbol 72 MovieClip [GWLabelClass] Frame 1Symbol 8 MovieClip [GWBaseClass]
"item_mc"Symbol 74 MovieClip [GWListBoxSilver] Frame 1Symbol 73 MovieClip [GWListItemClass]
"frame_mc"Symbol 74 MovieClip [GWListBoxSilver] Frame 1Symbol 70 MovieClip [GWPanel]
"face_mc"Symbol 88 MovieClip Frame 1Symbol 77 MovieClip
"arrow_mc"Symbol 88 MovieClip Frame 1Symbol 79 MovieClip
"highlight_mc"Symbol 88 MovieClip Frame 1Symbol 81 MovieClip
"shadow_mc"Symbol 88 MovieClip Frame 1Symbol 83 MovieClip
"darkshadow_mc"Symbol 88 MovieClip Frame 1Symbol 85 MovieClip
"highlight3D_mc"Symbol 88 MovieClip Frame 1Symbol 87 MovieClip
"darkshadow_mc"Symbol 98 MovieClip Frame 1Symbol 89 MovieClip
"highlight3D_mc"Symbol 98 MovieClip Frame 1Symbol 90 MovieClip
"highlight_mc"Symbol 98 MovieClip Frame 1Symbol 92 MovieClip
"shadow_mc"Symbol 98 MovieClip Frame 1Symbol 94 MovieClip
"face_mc"Symbol 98 MovieClip Frame 1Symbol 95 MovieClip
"arrow_mc"Symbol 98 MovieClip Frame 1Symbol 97 MovieClip
"highlight3D_mc"Symbol 107 MovieClip Frame 1Symbol 99 MovieClip
"darkshadow_mc"Symbol 107 MovieClip Frame 1Symbol 100 MovieClip
"highlight_mc"Symbol 107 MovieClip Frame 1Symbol 101 MovieClip
"shadow_mc"Symbol 107 MovieClip Frame 1Symbol 102 MovieClip
"face_mc"Symbol 107 MovieClip Frame 1Symbol 104 MovieClip
"arrow_mc"Symbol 107 MovieClip Frame 1Symbol 106 MovieClip
"up"Symbol 108 MovieClip [UpArrow] Frame 1Symbol 88 MovieClip
"down"Symbol 108 MovieClip [UpArrow] Frame 2Symbol 98 MovieClip
"disabled"Symbol 108 MovieClip [UpArrow] Frame 3Symbol 107 MovieClip
"highlight3D_mc"Symbol 115 MovieClip Frame 1Symbol 110 MovieClip
"darkshadow_mc"Symbol 115 MovieClip Frame 1Symbol 112 MovieClip
"highlight_mc"Symbol 115 MovieClip Frame 1Symbol 113 MovieClip
"shadow_mc"Symbol 115 MovieClip Frame 1Symbol 114 MovieClip
"highlight3D_mc"Symbol 122 MovieClip Frame 1Symbol 116 MovieClip
"darkshadow_mc"Symbol 122 MovieClip Frame 1Symbol 117 MovieClip
"shadow_mc"Symbol 122 MovieClip Frame 1Symbol 119 MovieClip
"face_mc"Symbol 122 MovieClip Frame 1Symbol 120 MovieClip
"highlight_mc"Symbol 122 MovieClip Frame 1Symbol 121 MovieClip
"shadow_mc"Symbol 127 MovieClip Frame 1Symbol 123 MovieClip
"darkshadow_mc"Symbol 127 MovieClip Frame 1Symbol 125 MovieClip
"highlight3D_mc"Symbol 127 MovieClip Frame 1Symbol 126 MovieClip
"mc_sliderTop"Symbol 128 MovieClip [ScrollThumb] Frame 1Symbol 115 MovieClip
"mc_sliderMid"Symbol 128 MovieClip [ScrollThumb] Frame 1Symbol 122 MovieClip
"mc_sliderBot"Symbol 128 MovieClip [ScrollThumb] Frame 1Symbol 127 MovieClip
"face_mc"Symbol 136 MovieClip Frame 1Symbol 129 MovieClip
"arrow_mc"Symbol 136 MovieClip Frame 1Symbol 131 MovieClip
"highlight_mc"Symbol 136 MovieClip Frame 1Symbol 132 MovieClip
"shadow_mc"Symbol 136 MovieClip Frame 1Symbol 133 MovieClip
"darkshadow_mc"Symbol 136 MovieClip Frame 1Symbol 134 MovieClip
"highlight3D_mc"Symbol 136 MovieClip Frame 1Symbol 135 MovieClip
"darkshadow_mc"Symbol 144 MovieClip Frame 1Symbol 137 MovieClip
"highlight3D_mc"Symbol 144 MovieClip Frame 1Symbol 138 MovieClip
"highlight_mc"Symbol 144 MovieClip Frame 1Symbol 139 MovieClip
"shadow_mc"Symbol 144 MovieClip Frame 1Symbol 140 MovieClip
"face_mc"Symbol 144 MovieClip Frame 1Symbol 141 MovieClip
"arrow_mc"Symbol 144 MovieClip Frame 1Symbol 143 MovieClip
"highlight3D_mc"Symbol 152 MovieClip Frame 1Symbol 145 MovieClip
"darkshadow_mc"Symbol 152 MovieClip Frame 1Symbol 146 MovieClip
"highlight_mc"Symbol 152 MovieClip Frame 1Symbol 147 MovieClip
"shadow_mc"Symbol 152 MovieClip Frame 1Symbol 148 MovieClip
"face_mc"Symbol 152 MovieClip Frame 1Symbol 149 MovieClip
"arrow_mc"Symbol 152 MovieClip Frame 1Symbol 151 MovieClip
"up"Symbol 153 MovieClip [DownArrow] Frame 1Symbol 136 MovieClip
"down"Symbol 153 MovieClip [DownArrow] Frame 2Symbol 144 MovieClip
"disabled"Symbol 153 MovieClip [DownArrow] Frame 3Symbol 152 MovieClip
"mcRating"Symbol 167 MovieClip [mcUserInfo] Frame 1Symbol 166 MovieClip
"mcRating"Symbol 202 MovieClip [mcGame] Frame 1Symbol 166 MovieClip
"mcPlay"Symbol 202 MovieClip [mcGame] Frame 1Symbol 186 MovieClip
"mcCancel"Symbol 202 MovieClip [mcGame] Frame 2Symbol 193 MovieClip
"mcPlay"Symbol 202 MovieClip [mcGame] Frame 3Symbol 186 MovieClip
"darkshadow_mc"Symbol 218 MovieClip Frame 1Symbol 211 MovieClip
"shadow_mc"Symbol 218 MovieClip Frame 1Symbol 213 MovieClip
"highlight_mc"Symbol 218 MovieClip Frame 1Symbol 215 MovieClip
"highlight3D_mc"Symbol 218 MovieClip Frame 1Symbol 217 MovieClip
"background_mc"Symbol 221 MovieClip Frame 1Symbol 220 MovieClip
"background_mc"Symbol 224 MovieClip Frame 1Symbol 223 MovieClip
"background_mc"Symbol 226 MovieClip Frame 1Symbol 225 MovieClip
"disabled_mc"Symbol 229 MovieClip Frame 1Symbol 228 MovieClip
"dot_mc"Symbol 232 MovieClip Frame 1Symbol 231 MovieClip
"frb_frame_mc"Symbol 233 MovieClip [frb_states] Frame 1Symbol 218 MovieClip
"boundingBox"Symbol 236 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 234 MovieClip
"boundingBox2"Symbol 236 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 234 MovieClip
"boundingBox_mc"Symbol 239 MovieClip [FRadioButtonSymbol] Frame 1Symbol 236 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 239 MovieClip [FRadioButtonSymbol] Frame 1Symbol 238 MovieClip
"track_mc"Symbol 242 MovieClip Frame 1Symbol 241 MovieClip
"scrollTrack_mc"Symbol 243 MovieClip [FScrollBarSymbol] Frame 1Symbol 242 MovieClip
"dPAsset"Symbol 246 MovieClip [FSelectableListSymbol] Frame 1Symbol 244 MovieClip [DataProviderSymbol]
"ItemAsset"Symbol 246 MovieClip [FSelectableListSymbol] Frame 1Symbol 245 MovieClip [FSelectableItemSymbol]
"scrollBarAsset"Symbol 247 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 243 MovieClip [FScrollBarSymbol]
"superClassAsset"Symbol 247 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 246 MovieClip [FSelectableListSymbol]
"superClassAsset"Symbol 251 MovieClip [FComboBoxSymbol] Frame 1Symbol 247 MovieClip [FScrollSelectListSymbol]
"itemAsset"Symbol 251 MovieClip [FComboBoxSymbol] Frame 1Symbol 248 MovieClip [FComboBoxItemSymbol]
"proxyBox_mc"Symbol 251 MovieClip [FComboBoxSymbol] Frame 1Symbol 236 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 251 MovieClip [FComboBoxSymbol] Frame 1Symbol 250 MovieClip
"highlight_mc"Symbol 254 MovieClip [FHighlightSymbol] Frame 1Symbol 253 MovieClip
"highlight_mc2"Symbol 254 MovieClip [FHighlightSymbol] Frame 2Symbol 253 MovieClip
"highlight_mc3"Symbol 254 MovieClip [FHighlightSymbol] Frame 3Symbol 253 MovieClip
"labelField"Symbol 256 MovieClip [FLabelSymbol] Frame 1Symbol 255 EditableText
"itemAsset"Symbol 260 MovieClip [FListBoxSymbol] Frame 1Symbol 257 MovieClip [FListItemSymbol]
"superClassAsset"Symbol 260 MovieClip [FListBoxSymbol] Frame 1Symbol 247 MovieClip [FScrollSelectListSymbol]
"boundingBox_mc"Symbol 260 MovieClip [FListBoxSymbol] Frame 1Symbol 236 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 260 MovieClip [FListBoxSymbol] Frame 1Symbol 259 MovieClip
"dtMsg"Symbol 268 MovieClip [mcAlert] Frame 1Symbol 262 EditableText
"btnOK"Symbol 268 MovieClip [mcAlert] Frame 1Symbol 267 Button
"b"Symbol 282 MovieClip [SimpleButtonDown] Frame 1Symbol 279 MovieClip [BrdrShdw]
"face"Symbol 282 MovieClip [SimpleButtonDown] Frame 1Symbol 281 MovieClip [BrdrFace]
"b"Symbol 287 MovieClip [SimpleButtonIn] Frame 1Symbol 284 MovieClip [BrdrBlk]
"it"Symbol 287 MovieClip [SimpleButtonIn] Frame 1Symbol 286 MovieClip [BrdrHilght]
"g"Symbol 287 MovieClip [SimpleButtonIn] Frame 1Symbol 279 MovieClip [BrdrShdw]
"face"Symbol 287 MovieClip [SimpleButtonIn] Frame 1Symbol 281 MovieClip [BrdrFace]
"ob"Symbol 288 MovieClip [SimpleButtonUp] Frame 1Symbol 284 MovieClip [BrdrBlk]
"ol"Symbol 288 MovieClip [SimpleButtonUp] Frame 1Symbol 281 MovieClip [BrdrFace]
"ib"Symbol 288 MovieClip [SimpleButtonUp] Frame 1Symbol 279 MovieClip [BrdrShdw]
"il"Symbol 288 MovieClip [SimpleButtonUp] Frame 1Symbol 286 MovieClip [BrdrHilght]
"face"Symbol 288 MovieClip [SimpleButtonUp] Frame 1Symbol 281 MovieClip [BrdrFace]
"boundingBox_mc"Symbol 296 MovieClip [FocusRect] Frame 1Symbol 277 MovieClip [BoundingBox]
"tabCapture"Symbol 297 MovieClip [FocusManager] Frame 1Symbol 294 Button
"boundingBox_mc"Symbol 300 MovieClip [SimpleButton] Frame 1Symbol 277 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 304 MovieClip [Button] Frame 1Symbol 277 MovieClip [BoundingBox]
"dfs"Symbol 360 MovieClip [BtnDownArrow] Frame 1Symbol 308 MovieClip [ScrollTrack]
"dfs"Symbol 361 MovieClip [BtnUpArrow] Frame 1Symbol 308 MovieClip [ScrollTrack]
"boundingBox_mc"Symbol 363 MovieClip [HScrollBar] Frame 1Symbol 277 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 364 MovieClip [VScrollBar] Frame 1Symbol 277 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 365 MovieClip [View] Frame 1Symbol 277 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 366 MovieClip [ScrollView] Frame 1Symbol 277 MovieClip [BoundingBox]
"label"Symbol 367 MovieClip [TextArea] Frame 1Symbol 275 EditableText
"boundingBox_mc"Symbol 404 MovieClip [List] Frame 1Symbol 277 MovieClip [BoundingBox]
"gameButton"Symbol 476 MovieClip Frame 1Symbol 472 Button
"graphic"Symbol 502 MovieClip Frame 2Symbol 498 MovieClip
"msg"Symbol 502 MovieClip Frame 2Symbol 499 EditableText
"msg"Symbol 502 MovieClip Frame 11Symbol 500 EditableText
"P1score"Symbol 560 MovieClip Frame 1Symbol 557 EditableText
"cover"Symbol 600 MovieClip Frame 1Symbol 599 MovieClip
"movP1Ticks"Symbol 632 MovieClip Frame 5Symbol 622 MovieClip
"movP2Ticks"Symbol 632 MovieClip Frame 5Symbol 622 MovieClip
"movP1Ticks"Symbol 632 MovieClip Frame 6Symbol 622 MovieClip
"movP2Ticks"Symbol 632 MovieClip Frame 6Symbol 622 MovieClip
"movP1Ticks"Symbol 640 MovieClip Frame 2Symbol 622 MovieClip
"movP2Ticks"Symbol 640 MovieClip Frame 2Symbol 622 MovieClip
"movP1Ticks"Symbol 651 MovieClip Frame 5Symbol 622 MovieClip
"movP2Ticks"Symbol 651 MovieClip Frame 5Symbol 622 MovieClip
"movP1Ticks"Symbol 651 MovieClip Frame 6Symbol 622 MovieClip
"movP2Ticks"Symbol 651 MovieClip Frame 6Symbol 622 MovieClip
"movP1Ticks"Symbol 678 MovieClip Frame 7Symbol 622 MovieClip
"movP2Ticks"Symbol 678 MovieClip Frame 7Symbol 622 MovieClip
"movP1Ticks"Symbol 691 MovieClip Frame 5Symbol 622 MovieClip
"movP2Ticks"Symbol 691 MovieClip Frame 5Symbol 622 MovieClip
"movP1Ticks"Symbol 691 MovieClip Frame 6Symbol 622 MovieClip
"movP2Ticks"Symbol 691 MovieClip Frame 6Symbol 622 MovieClip
"movP1Ticks"Symbol 691 MovieClip Frame 7Symbol 622 MovieClip
"movP2Ticks"Symbol 691 MovieClip Frame 7Symbol 622 MovieClip
"movP1Ticks"Symbol 691 MovieClip Frame 10Symbol 622 MovieClip
"movP2Ticks"Symbol 691 MovieClip Frame 10Symbol 622 MovieClip
"movP1Ticks"Symbol 694 MovieClip Frame 2Symbol 622 MovieClip
"movP2Ticks"Symbol 694 MovieClip Frame 2Symbol 622 MovieClip
"movP1Ticks"Symbol 694 MovieClip Frame 80Symbol 622 MovieClip
"movP2Ticks"Symbol 694 MovieClip Frame 80Symbol 622 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 5 as "mcTimer"
ExportAssets (56)Timeline Frame 1Symbol 8 as "GWBaseClass"
ExportAssets (56)Timeline Frame 1Symbol 9 as "GWListBoxClass"
ExportAssets (56)Timeline Frame 1Symbol 8 as "GWBaseClass"
ExportAssets (56)Timeline Frame 1Symbol 65 as "GWScrollerClass"
ExportAssets (56)Timeline Frame 1Symbol 66 as "GWScrollBarSilver"
ExportAssets (56)Timeline Frame 1Symbol 8 as "GWBaseClass"
ExportAssets (56)Timeline Frame 1Symbol 70 as "GWPanel"
ExportAssets (56)Timeline Frame 1Symbol 8 as "GWBaseClass"
ExportAssets (56)Timeline Frame 1Symbol 72 as "GWLabelClass"
ExportAssets (56)Timeline Frame 1Symbol 73 as "GWListItemClass"
ExportAssets (56)Timeline Frame 1Symbol 70 as "GWPanel"
ExportAssets (56)Timeline Frame 1Symbol 74 as "GWListBoxSilver"
ExportAssets (56)Timeline Frame 1Symbol 75 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 108 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 128 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 153 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 167 as "mcUserInfo"
ExportAssets (56)Timeline Frame 1Symbol 169 as "mcGames"
ExportAssets (56)Timeline Frame 1Symbol 179 as "mcGameInfo"
ExportAssets (56)Timeline Frame 1Symbol 202 as "mcGame"
ExportAssets (56)Timeline Frame 1Symbol 208 as "fps"
ExportAssets (56)Timeline Frame 1Symbol 209 as "frb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 233 as "frb_states"
ExportAssets (56)Timeline Frame 1Symbol 236 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 239 as "FRadioButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 244 as "DataProviderSymbol"
ExportAssets (56)Timeline Frame 1Symbol 245 as "FSelectableItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 246 as "FSelectableListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 247 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 248 as "FComboBoxItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 236 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 251 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 254 as "FHighlightSymbol"
ExportAssets (56)Timeline Frame 1Symbol 256 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 257 as "FListItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 247 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 236 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 260 as "FListBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 268 as "mcAlert"
ExportAssets (56)Timeline Frame 1Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 277 as "BoundingBox"
ExportAssets (56)Timeline Frame 1Symbol 279 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 281 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 282 as "SimpleButtonDown"
ExportAssets (56)Timeline Frame 1Symbol 284 as "BrdrBlk"
ExportAssets (56)Timeline Frame 1Symbol 286 as "BrdrHilght"
ExportAssets (56)Timeline Frame 1Symbol 287 as "SimpleButtonIn"
ExportAssets (56)Timeline Frame 1Symbol 288 as "SimpleButtonUp"
ExportAssets (56)Timeline Frame 1Symbol 289 as "Defaults"
ExportAssets (56)Timeline Frame 1Symbol 290 as "UIObjectExtensions"
ExportAssets (56)Timeline Frame 1Symbol 291 as "UIObject"
ExportAssets (56)Timeline Frame 1Symbol 296 as "FocusRect"
ExportAssets (56)Timeline Frame 1Symbol 297 as "FocusManager"
ExportAssets (56)Timeline Frame 1Symbol 298 as "UIComponentExtensions"
ExportAssets (56)Timeline Frame 1Symbol 299 as "UIComponent"
ExportAssets (56)Timeline Frame 1Symbol 300 as "SimpleButton"
ExportAssets (56)Timeline Frame 1Symbol 301 as "Border"
ExportAssets (56)Timeline Frame 1Symbol 302 as "RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 303 as "ButtonSkin"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 305 as "CustomBorder"
ExportAssets (56)Timeline Frame 1Symbol 308 as "ScrollTrack"
ExportAssets (56)Timeline Frame 1Symbol 315 as "ScrollDownArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 317 as "ScrollThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 319 as "ScrollThemeColor2"
ExportAssets (56)Timeline Frame 1Symbol 320 as "ScrollDownArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 321 as "ScrollDownArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 322 as "ScrollDownArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 328 as "ScrollThumbBottomDisabled"
ExportAssets (56)Timeline Frame 1Symbol 330 as "ThumbThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 332 as "ThumbThemeColor3"
ExportAssets (56)Timeline Frame 1Symbol 333 as "ScrollThumbBottomDown"
ExportAssets (56)Timeline Frame 1Symbol 334 as "ScrollThumbBottomOver"
ExportAssets (56)Timeline Frame 1Symbol 335 as "ScrollThumbBottomUp"
ExportAssets (56)Timeline Frame 1Symbol 337 as "ScrollThumbGripDisabled"
ExportAssets (56)Timeline Frame 1Symbol 339 as "ThumbThemeColor2"
ExportAssets (56)Timeline Frame 1Symbol 340 as "ScrollThumbGripDown"
ExportAssets (56)Timeline Frame 1Symbol 341 as "ScrollThumbGripOver"
ExportAssets (56)Timeline Frame 1Symbol 342 as "ScrollThumbGripUp"
ExportAssets (56)Timeline Frame 1Symbol 344 as "ScrollThumbMiddleDisabled"
ExportAssets (56)Timeline Frame 1Symbol 345 as "ScrollThumbMiddleDown"
ExportAssets (56)Timeline Frame 1Symbol 349 as "ScrollThumbMiddleOver"
ExportAssets (56)Timeline Frame 1Symbol 350 as "ScrollThumbMiddleUp"
ExportAssets (56)Timeline Frame 1Symbol 351 as "ScrollThumbTopDisabled"
ExportAssets (56)Timeline Frame 1Symbol 352 as "ScrollThumbTopDown"
ExportAssets (56)Timeline Frame 1Symbol 353 as "ScrollThumbTopOver"
ExportAssets (56)Timeline Frame 1Symbol 354 as "ScrollThumbTopUp"
ExportAssets (56)Timeline Frame 1Symbol 355 as "ScrollTrackDisabled"
ExportAssets (56)Timeline Frame 1Symbol 356 as "ScrollUpArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 357 as "ScrollUpArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 358 as "ScrollUpArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 359 as "ScrollUpArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 360 as "BtnDownArrow"
ExportAssets (56)Timeline Frame 1Symbol 361 as "BtnUpArrow"
ExportAssets (56)Timeline Frame 1Symbol 362 as "ScrollBarAssets"
ExportAssets (56)Timeline Frame 1Symbol 363 as "HScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 364 as "VScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 365 as "View"
ExportAssets (56)Timeline Frame 1Symbol 366 as "ScrollView"
ExportAssets (56)Timeline Frame 1Symbol 367 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 367 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 400 as "DataProvider"
ExportAssets (56)Timeline Frame 1Symbol 401 as "DataSelector"
ExportAssets (56)Timeline Frame 1Symbol 402 as "SelectableRow"
ExportAssets (56)Timeline Frame 1Symbol 403 as "ScrollSelectList"
ExportAssets (56)Timeline Frame 1Symbol 404 as "List"
ExportAssets (56)Timeline Frame 1Symbol 404 as "List"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 269 as "__Packages.mx.core.UIObject"
ExportAssets (56)Timeline Frame 1Symbol 270 as "__Packages.mx.core.UIComponent"
ExportAssets (56)Timeline Frame 1Symbol 271 as "__Packages.mx.core.View"
ExportAssets (56)Timeline Frame 1Symbol 272 as "__Packages.mx.core.ScrollView"
ExportAssets (56)Timeline Frame 1Symbol 273 as "__Packages.mx.controls.TextArea"
ExportAssets (56)Timeline Frame 1Symbol 368 as "__Packages.mx.skins.SkinElement"
ExportAssets (56)Timeline Frame 1Symbol 369 as "__Packages.mx.styles.CSSTextStyles"
ExportAssets (56)Timeline Frame 1Symbol 370 as "__Packages.mx.styles.StyleManager"
ExportAssets (56)Timeline Frame 1Symbol 371 as "__Packages.mx.styles.CSSStyleDeclaration"
ExportAssets (56)Timeline Frame 1Symbol 372 as "__Packages.mx.skins.Border"
ExportAssets (56)Timeline Frame 1Symbol 373 as "__Packages.mx.skins.RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 374 as "__Packages.mx.managers.DepthManager"
ExportAssets (56)Timeline Frame 1Symbol 375 as "__Packages.mx.events.EventDispatcher"
ExportAssets (56)Timeline Frame 1Symbol 376 as "__Packages.mx.events.UIEventDispatcher"
ExportAssets (56)Timeline Frame 1Symbol 377 as "__Packages.mx.core.ExternalContent"
ExportAssets (56)Timeline Frame 1Symbol 378 as "__Packages.mx.skins.CustomBorder"
ExportAssets (56)Timeline Frame 1Symbol 379 as "__Packages.mx.controls.scrollClasses.ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 380 as "__Packages.mx.controls.SimpleButton"
ExportAssets (56)Timeline Frame 1Symbol 381 as "__Packages.mx.controls.scrollClasses.ScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 382 as "__Packages.mx.controls.HScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 383 as "__Packages.mx.controls.Button"
ExportAssets (56)Timeline Frame 1Symbol 384 as "__Packages.mx.skins.ColoredSkinElement"
ExportAssets (56)Timeline Frame 1Symbol 385 as "__Packages.mx.core.ext.UIObjectExtensions"
ExportAssets (56)Timeline Frame 1Symbol 386 as "__Packages.mx.skins.halo.Defaults"
ExportAssets (56)Timeline Frame 1Symbol 387 as "__Packages.mx.managers.SystemManager"
ExportAssets (56)Timeline Frame 1Symbol 388 as "__Packages.mx.managers.FocusManager"
ExportAssets (56)Timeline Frame 1Symbol 389 as "__Packages.mx.skins.halo.FocusRect"
ExportAssets (56)Timeline Frame 1Symbol 390 as "__Packages.mx.managers.OverlappedWindows"
ExportAssets (56)Timeline Frame 1Symbol 391 as "__Packages.mx.styles.CSSSetStyle"
ExportAssets (56)Timeline Frame 1Symbol 392 as "__Packages.mx.core.ext.UIComponentExtensions"
ExportAssets (56)Timeline Frame 1Symbol 393 as "__Packages.mx.skins.halo.RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 394 as "__Packages.mx.skins.halo.ButtonSkin"
ExportAssets (56)Timeline Frame 1Symbol 395 as "__Packages.mx.controls.VScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 396 as "__Packages.mx.controls.listclasses.DataSelector"
ExportAssets (56)Timeline Frame 1Symbol 397 as "__Packages.mx.controls.listclasses.DataProvider"
ExportAssets (56)Timeline Frame 1Symbol 398 as "__Packages.mx.controls.listclasses.ScrollSelectList"
ExportAssets (56)Timeline Frame 1Symbol 399 as "__Packages.mx.controls.List"
ExportAssets (56)Timeline Frame 1Symbol 405 as "__Packages.mx.effects.Tween"
ExportAssets (56)Timeline Frame 1Symbol 406 as "__Packages.mx.controls.listclasses.SelectableRow"
ExportAssets (56)Timeline Frame 49Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 50Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 51Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 52Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 53Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 54Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 55Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 56Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 57Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 58Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 59Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 60Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 61Symbol 243 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 62Symbol 243 as "FScrollBarSymbol"

Labels

"loader"Frame 2
"INIT"Frame 13
"Holding Room"Frame 35
"Game2"Frame 49
"CHECKERING"Frame 50
"PLAY"Frame 52
"START"Frame 85
"CARRYON"Frame 87
"GAME"Frame 159
"CONUNDRUM"Frame 166
"NUMBERS"Frame 172
"Disconnected"Frame 264
"done"Symbol 5 MovieClip [mcTimer] Frame 4
"Symbol_36"Symbol 75 MovieClip [FUIComponentSymbol] Frame 1
"Symbol_22"Symbol 211 MovieClip Frame 1
"Symbol_23"Symbol 213 MovieClip Frame 1
"unselectedEnabled"Symbol 233 MovieClip [frb_states] Frame 1
"press"Symbol 233 MovieClip [frb_states] Frame 2
"unselectedDisabled"Symbol 233 MovieClip [frb_states] Frame 3
"selectedDisabled"Symbol 233 MovieClip [frb_states] Frame 4
"selectedEnabled"Symbol 233 MovieClip [frb_states] Frame 5
"enabled"Symbol 236 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 236 MovieClip [FBoundingBoxSymbol] Frame 2
"Symbol_354"Symbol 244 MovieClip [DataProviderSymbol] Frame 1
"enabled"Symbol 254 MovieClip [FHighlightSymbol] Frame 1
"disabled"Symbol 254 MovieClip [FHighlightSymbol] Frame 2
"unfocused"Symbol 254 MovieClip [FHighlightSymbol] Frame 3
"Symbol_32"Symbol 256 MovieClip [FLabelSymbol] Frame 1
"x"Symbol 476 MovieClip Frame 2
"o"Symbol 476 MovieClip Frame 7
"Game Started"Symbol 502 MovieClip Frame 2
"Game Over"Symbol 502 MovieClip Frame 11
"Player Left"Symbol 502 MovieClip Frame 20

Dynamic Text Variables

txtSecondsSymbol 3 EditableText"0"
txtUsernameSymbol 156 EditableText"n/a"
txtWonSymbol 159 EditableText"0"
txtLostSymbol 161 EditableText"0"
txtInfoSymbol 171 EditableText" "
txtNameSymbol 187 EditableText"n/a"
txtNameSymbol 195 EditableText"n/a"
txtNameSymbol 197 EditableText"n/a"
txtNameSymbol 201 EditableText"n/a"
txtFPSSymbol 207 EditableText"0"
txtMsgSymbol 262 EditableText""
txtP1SSymbol 441 EditableText""
txtP2SSymbol 442 EditableText""
txtP1NSymbol 443 EditableText""
txtP2NSymbol 444 EditableText" "
d9Symbol 449 EditableText""
whoseTurnSymbol 478 EditableText""
txtP1Name2Symbol 533 EditableText""
txtP2Name2Symbol 534 EditableText""
txtP1NameSymbol 536 EditableText""
txtP2NameSymbol 537 EditableText""
txtP1NameSymbol 552 EditableText""
txtP1Name2Symbol 553 EditableText""
txtP1ScoreSymbol 554 EditableText""
txtP1Score2Symbol 555 EditableText" "
txtP2ScoreSymbol 556 EditableText""
txtP2Score2Symbol 557 EditableText" "
txtP2Name2Symbol 558 EditableText""
txtP2Name2Symbol 559 EditableText""
fpsSymbol 581 EditableText""
txtMsgsSymbol 585 EditableText""
txtRoundSymbol 586 EditableText""
txtRound2Symbol 587 EditableText""
txtMsgs2Symbol 588 EditableText""
charLSymbol 595 EditableText""
txtEntrySymbol 602 EditableText""
txtEntry1Symbol 603 EditableText""
txtEntry2Symbol 604 EditableText""
txtEntry3Symbol 605 EditableText""
txtEntry4Symbol 606 EditableText""
txtEntry5Symbol 607 EditableText""
txtEntry6Symbol 608 EditableText""
txtEntry7Symbol 609 EditableText""
txtEntry8Symbol 610 EditableText""
txtEntry9Symbol 611 EditableText""
txtP1MsgSymbol 612 EditableText"Player 1 has submitted a 6 letter word"
txtP2MsgSymbol 613 EditableText"Player 2 has submitted a 6 letter word"
txtP1WordSymbol 614 EditableText""
txtP2WordSymbol 615 EditableText""
txtRndSymbol 634 EditableText""
txtP1SSymbol 635 EditableText""
txtP2SSymbol 636 EditableText""
txtP1NSymbol 637 EditableText""
txtP2NSymbol 638 EditableText""
txtRnd2Symbol 639 EditableText""
txtP1MsgSymbol 641 EditableText"Player 1 has submitted a 6 letter word:"
txtP2MsgSymbol 642 EditableText"Player 2 has submitted a 7 letter word:"
txtP1WordSymbol 643 EditableText""
txtP2WordSymbol 644 EditableText""
txtTargSymbol 645 EditableText""
txtP1SSymbol 655 EditableText""
txtP2SSymbol 656 EditableText""
txtP1NSymbol 657 EditableText""
txtP2NSymbol 658 EditableText""
txtLeaverSymbol 666 EditableText""
txtP1SSymbol 671 EditableText""
txtP2SSymbol 672 EditableText""
txtP1NSymbol 673 EditableText""
txtP2NSymbol 674 EditableText""
txtP1MsgSymbol 683 EditableText"Player 1 has submitted a 6 letter word:"
txtP1WordSymbol 684 EditableText""
txtAnswerSymbol 686 EditableText""
txtInfoSymbol 689 EditableText" "
txtP1WordSymbol 690 EditableText"Incorrect Submission"
txtTimer1Symbol 711 EditableText""
txtTimer3Symbol 712 EditableText""
txtTimer2Symbol 713 EditableText""
txtEntrySymbol 724 EditableText""
txtEntry1Symbol 725 EditableText""
txtEntry2Symbol 726 EditableText""
txtEntry3Symbol 727 EditableText""
txtEntry4Symbol 728 EditableText""
txtEntry5Symbol 729 EditableText""
txtEntry6Symbol 730 EditableText""
txtEntry7Symbol 731 EditableText""
txtEntry8Symbol 732 EditableText""
txtEntry9Symbol 733 EditableText""
charLSymbol 747 EditableText""
txtN1Symbol 752 EditableText""
txtN2Symbol 753 EditableText""
txtN3Symbol 754 EditableText""
txtEntrySymbol 761 EditableText""




http://swfchan.com/6/26405/info.shtml
Created: 22/5 -2019 17:25:38 Last modified: 22/5 -2019 17:25:38 Server time: 14/05 -2024 11:42:57