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

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

interactivebuddy.swf

This is the info page for
Flash #14921

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


Text
!

IGN

INSIDER

4 LIFE

VOTE
FOR
PEDRO

<p align="center"></p>

Loading...

Generic Label

<p align="center"><font face="Arial_16pt_st" size="16" color="#000000"><b>Are you a member of</b></font></p><p align="center"><font face="Arial_24pt_st" size="24" color="#000000"><b>deviantART.com?</b></font></p><p align="center"><font face="Arial_12pt_st" size="12" color="#000000"><b>If so, click </b><font color="#0000ff"><a href="http://www.deviantart.com/deviation/11117398/" target = "_blank"><b>here</b></a></font><b> to leave a comment or add <sbr />this to your favorites (will open new window).</b></font></p>

ActionScript [AS1/AS2]

Frame 1
function addCheat(code, text) { cheatCodes.push([code, text]); } stop(); cheatCodes = []; genericVersion = false; newgroundsVersion = false; mailedYet = false; accPhys = false; version = "1.01"; updatesText = "Version 1.01\n"; updatesText = updatesText + "--StrawberryClock now talks\n"; updatesText = updatesText + "--Bugfix to create() function in ShockScript (grenades, etc. now work)\n"; updatesText = updatesText + "--Improved buddy behavior in various situations\n"; updatesText = updatesText + "--Emotion system added along with getEmotion() function to ShockScript\n"; updatesText = updatesText + "--New script from ManaUser\n"; updatesText = updatesText + "--Provided scripts (AKA help files like functionlist and examples) now revert to original upon start, so do not save your own scripts to those files, you must save to a different filename\n"; updatesText = updatesText + "\nComing very soon:\n--Guns\n--Custom skins\n--More skins, items, modes, and ShockScript functions"; helpText = "Welcome to Interactive Buddy! "; helpText = helpText + "\n\nThe purpose of this game is for you to interact with the "; helpText = helpText + "little guy on screen in whatever way you would like. \n\nWhen "; helpText = helpText + "you interact with him, you gain money (you get more money "; helpText = helpText + "for more extreme actions). You can then use this money to buy "; helpText = helpText + "new weapons and other methods of iteraction. You can also "; helpText = helpText + "buy new skins (so your buddy looks different) or new game "; helpText = helpText + "modes (like Low Gravity, for example)."; helpText = helpText + "\n\nYour progess is continually saved, so bought items will "; helpText = helpText + "not be lost when you close the game. The only way your "; helpText = helpText + "progress will be reset is if you use the Clear File command "; helpText = helpText + "in the file menu."; sampleScripts = []; sampleScripts.push(["Help-1-intro", "NOTE: These 'help' scripts are non-functional.\nThey are just text provided to help you understand how ShockScript works.\n\nShockScript is a scripting engine for Flash written by me, Shock Value.\nIt allows you to write your own scripts to make events occur in the gameworld.\nFor example, you might write a script that causes an explosion to occur if the Buddy touches a wall.\nOr you might write a script that shoots a continuous stream of baseballs at the Buddy.\n(Both of these examples are provided as sample scripts, among others.)\nIt's all up to you.\n\nHowever, to get these results, you must familiarize yourself with the language."]); sampleScripts.push(["Help-2-prereq", "**This is not a functional script.**\n\nThese help files assume that you have at least a basic understanding of programming concepts.\nIf you are familiar with Flash Actionscript or JavaScript, you should have no problem.\nIf you are new to programming, then you will need to learn basic programming concepts first, which is knowledge that is outside the scope of these help files."]); sampleScripts.push(["Help-3-expressions", "**This is not a functional script.**\n\nExpressions are written just as they are in Actionscript or Javascript.\n\n1+2 evaluates to 3.\n1+2*3 evaluates to 7.\n(3*(8-6)-2)*(3+3) evaluates to 24."]); sampleScripts.push(["Help-4-operators", "**This is not a functional script.**\n\nShockScript includes all of the operators that are available in Actionsript and uses the same precedence rules as ActionScript uses.\n\n* : multiplication\n/ : devision\n% : modulo\n+ : addition and string concatenation\n- : subtraction\n<< : bitwise left shift\n>> : bitwise right shift\n>>> : bitwise unsigned right shift\n< : less than\n<= : less than or equal to\n> : greater than\n>= : greater than or equal to\n== : equal to\n!= : not equal to\n& : bitwise AND\n^ : bitwise XOR\n| : bitwise OR\n&& : logical AND\n|| : logical OR\n\nThe operators above are ordered by decreasing precedence."]); sampleScripts.push(["Help-5-variables", "**This is not a functional script.**\n\nVariables are assigned as follows.\n\nmyVar = 1+2;\n'myVar' now holds the value '3'.\n\nanotherVar = \"variable number \"+2;\n'anotherVar' now holds the string \"variable number 2\"\nthirdVar = 1+myVar*2;\n'thirdVar' now holds the value '7'\n\nVariables can also be assigned by using the assign(varName,expression) function, which will be explained later."]); sampleScripts.push(["Help-6-lines", "**This is not a functional script.**\n\nSemicolons (;) seperate lines of code and MUST be used.\nThis is unlike Actionscript, which recognizes line breaks as well as semicolons as ending lines of code.\n\nExample:\n\nmyVar = \"Hello!\";\ntrace(myVar);\nsetGrav(0)"]); sampleScripts.push(["Help-7-functions", "**This is not a functional script.**\n\nFunctions can be used as follows:\n\nsomeFunction(argument1,argument2)\n\nYou cannot define your own functions; you must use the built in ones. However, there are many built in functions which are listed on the following help page. You can use functions anywhere an expression is used, just like in ActionScript."]); sampleScripts.push(["Help-8-functionList", "**This is not a functional script.**\n\nsay(text,time)\nexplode(x,y,power) 1.0 is about normal for power\ncreate(objectType,x,y,xVelocity,yVelocity) valid objectType strings: \"baseball\", \"molotov\", \"bowlball\", \"bouncyball\", \"grenade\", \"fireball\", \"mine\", \"baby\", \"orb\", \"radio\", \"vortex\". Returns the unique objectName assigned to the object you created.\ndestroy(objectName) removes specified object (if destructable)\nnoAutoDelete(objectName) makes specified object not be auto deleted when adding more objects; note that it can still be destroyed through destroy() function or through a mousover when a throwing item is selected\naddConstraint(objectName,x,y,len) adds a constraint to specified target (objectName) at x, y of length len; constraint is removed when object is deleted\naddSpring(objectName,x,y,strength) similar to addConstraint, except with a flexible attachment; strength can be between 0.0-1.0, but lower numbers (like .05) work best\nresetForces() resets all added forces (constraints, springs, etc.)\nflashMessage(text, timeInFrames)\nwater(x, y, xv, yv, lifeSpanInFrames, strength, spread, size, disappearOnContact)\nfireClip(x, y, xv, yv, lifeInFrames, scale) about 4.0 is normal for scale\naddBuddyVel(x,y)\nsetBuddyVel(x,y)\nsetBuddyPos(x,y)\naddBuddyRot(rotationAmount)\nsetBuddyRot(angleRadians)\ngetBuddyRot()\ngetBuddyX()\ngetBuddyY()\ngetEmotion() returns happiness of buddy from -100.0 to 100.0\ngetXV(objectName) returns x velocity of object, valid strings for objectName: \"body\", \"rArm\", \"lArm\", \"rLeg\", \"lLeg\", plus all strings returned by 'create' function (see ex-throwableBall)\ngetYV(objectName) ... y velocty ...\ngetX(name) ... x position ...\ngetY(name) ... y position ...\nplaySound(soundName)\nresetVariables() resets all user variables\npow(x,y) returns x to the y power\nsin(x)\ncos(x)\ntan(x)\natan(x)\natan2(x,y)\nmax(x,y) returns greater value\nmin(x,y) returns lesser value\nsign(x) returns -1 if negative, 0 if 0, 1 if positive\nrandom() returns random floating point, 0.0 to 1.0\nrandomBet(x,y) returns random floating point between x and y\nsqrt(x)\nceil(x)\nfloor(x)\nround(x)\npi() returns pi (3.14159...)\ne() returns e\nasin(x)\nacos(x)\nabs(x) absolute value\ncharAt(string,letterPosition)\nbnot(x) returns false if x is true, true if x is false\nbor(x,y) logical OR (same as x||y)\nband(x,y) logical AND (same as x&&y)\nabove(x,y) returns true if x is greater than y, else false (same as x>y)\nbelow(x,y) x<y\nequal(x,y) x==y\nsqr(x) returns x*x\nexp(x) returns e to the x\nlog(x)\ngettime() returns time since movie start, in seconds\ngetXMouse()\ngetYMouse()\ngetMouseDown()"]); sampleScripts.push(["Help-9-specialFunctions", "**This is not a functional script.**\n\nif(value,arg1,arg2)\nThis is the if statement in ShockScript. It is actually set up like a function, but it works differently. First it evaluates 'value'. If it is true, then 'arg1' is evaluated and returned. Otherwise 'arg2' is evaluated and returned. Note that after 'value' is evaluated, either 'arg1' or 'arg2' will be evaluated, not both.\n\nloop(num,arg)\nThis function evaluates 'arg' for 'num' number of times (the maximum is 2000)\n\nsetBuffer(bufferNumber,position,value)\nSets the element at 'position' of the 'bufferNumber' buffer (or array) to the 'value'. 'bufferNumber' may be any number from 0 to 1000\n\ngetBuffer(bufferNumber, position)\nReturns the element at 'position' of the 'bufferNumber' buffer.\n\nassign(myVar,value)\nSame as writing 'myVar = value'. Note that the first argument of the funtion is not a string, it is the exact text that you write. You would use this function like this: assign(x,10); which would set variable 'x' to '10'.\n\nevaluate(scriptText)\nThis function allows you to evaluate text as if it were ShockScript code. Example: 'evaluate(\"x = \"+10)' would evaluate 'x = 10' and thus set variable 'x' to '10'.\n\nfirstRun()\nThis function returns true on the first run of your code when 'Run Every Frame' is checked, and false on every other run.\nIf you click 'Run Once', it is also true for that run."]); sampleScripts.push(["Help-10-finalNotes", "**This is not a functional script.**\n\nWhen writing scripts, be sure that they conform to general coding standards and those listed above.\nShockScript has little to no error detection, so erroneous scripts might compile and run with unexpected results.\nIn Flash, syntax errors are recognized by the compiler automatically, but again, in ShockScript this is not the case.\n\nThe reason ShockScript has no error detection is simple--I just don't have to time to write it in.\nThe process would be difficult and full of bugs.\nAnd it would never be perfectly consistant, so I wouldn't want people to rely on it.\nSo, unfortunately, you will have to locate all syntax errors yourself.\n\nAlso, all example scripts should be set to run every frame unless otherwise noted."]); sampleScripts.push(["ex-baseballs", "t=t+1;\nif(bnot(t%4),create(\"baseball\",50+random()*10,getBuddyY()+random()*20-10,50,-3-getBuddyX()*.01),0)"]); sampleScripts.push(["ex-explodeWalls", "gx = getBuddyX();\ntest = gx>510||gx<40;\nif(test,explode(gx+random()-.5,getBuddyY(),.15),0)"]); sampleScripts.push(["ex-fountain", "t=t+1;\nif(t%2,water(sin(t*.075)*125+275,cos(t*.052)*100+200,0,0,140,.075,2,2,false),0)"]); sampleScripts.push(["ex-gameTime", "t=t+1;\nif(bnot(t%50),say(\"You've wasted \"+round(gettime()/5)*5+\" seconds of your life.\",100),0)"]); sampleScripts.push(["ex-levitate", "addBuddyVel((275-getBuddyX())*.075,(200-getBuddyY())*.075)"]); sampleScripts.push(["ex-sonic", "addBuddyRot(sign(getXV(\"body\"))*200)"]); sampleScripts.push(["ex-throwableBall", "if(\nfirstRun()\n,\nresetVariables()+\nassign(bb, create(\"bowlball\",50,50,0,0))+\nnoAutoDelete(bb)+\nassign(doVels, false)\n,\n0);\n\nif(\ngetMouseDown()\n,\nassign(ox,x)+\nassign(oy,y)+\nassign(x,setX(bb,getXMouse()))+\nassign(y,setY(bb,getYMouse()))+\nsetXV(bb,0)+\nsetYV(bb,0)+\nassign(doVels,true)\n,\nif(doVels,\nsetXV(bb,x-ox)+\nsetYV(bb,y-oy)+\nassign(doVels,false),0)\n\n,0);\n"]); sampleScripts.push(["ex-constraint", "\n\"Only execute this script one time, not every frame.\";\n\nxx=100;\nif(firstRun(),\n loop(4,\n assign(bb,addConstraint(create(\"bowlball\",xx,200,0,0),xx,200,75))+\n assign(xx,xx+25)+\n noAutoDelete(bb)\n ),\n0)"]); sampleScripts.push(["ex-lightning", "if(getMouseDown() && bnot(oMouse),\n playSound(\"shock\",100)+\n assign(rr,random()*100)+\n assign(n,0)+\n assign(t,25)+\n loop(t,shock(getXMouse()+sin(n/t*10+rr)*15,n/t*400)+assign(n,n+1)\n,0);\noMouse = getMouseDown()"]); sampleScripts.push(["ex-manaUser-guess", "if(firstRun(),\n assign(MaxGuess, 7)+\n assign(Answer, 0)+\n assign(Min, 1)+\n assign(Max, 100)+\n assign(Mode, 0)+\n assign(Guess, 0)+\n assign(GuessNum, 0)+\n assign(Prize, 0)+\n assign(Click, 0)+\n assign(Bomb, 0)+\n assign(Timer, 0)\n,0);\n\n\"Modes: 0=Start 1=Guess 2=WaitAns 3=Right 4=Wrong 5=WaitHint\";\n\nAnswer = \"X\";\n\nif(getMouseDown(),\n if(Click==0,\n if(getYMouse()>=91&&getYMouse()<=107,\n if(getXMouse()>=62&&getXMouse()<=97,\n assign(Answer, \"YES\")\n ,0)+\n if(getXMouse()>=150&&getXMouse()<=180,\n assign(Answer, \"NO\")\n ,0)\n ,0)\n ,0)+\n assign(Click, 1)\n,\n assign(Click, 0)\n);\n\nif (Mode == 0,\n flashMessage(\"Click mouse when ready.\n\n Tip: Use Hand->None.\", 1)+\n say(\"Let's play a game. You think of a # from 1 to 100 and I get \"+MaxGuess+\" guesses.\", 1)+\n if(getMouseDown(),\n assign(Mode,1)\n ,0)\n,0);\n\nif (Mode == 1,\n assign(GuessNum, GuessNum+1)+\n assign(Guess, round(randomBet(Min, Max+1)-0.5))+\n assign(Timer,30)+\n assign(Mode,2)+\n if(GuessNum==MaxGuess,\n playSound(\"shock\",200)+\n shock(getBuddyX(),getBuddyY())\n ,0)\n,0);\n\nif (Mode == 2,\n say(\"Are you thinking of the number \"+Guess+\"?\", 1)+\n if (Timer == 0,\n flashMessage(\"Is Guess #\"+GuessNum+\" Correct?\n\n [YES] [NO]\", 1)+\n if (Answer==\"YES\",\n say(\"\n Yay! I win!\", 60)+\n assign(Mode, -1)\n ,0)+\n if (Answer==\"NO\",\n assign(Mode, 4)\n ,0)\n ,\n assign(Timer, Timer-1)\n )\n,0);\n\nif (Mode == 4,\n assign(Answer, \"X\")+\n assign(Timer,30)+\n assign(Mode, 5)+\n assign(Prize, round(randomBet(1, 4+1)-0.5))+\n if(Min>=Max,\n say(\"Liar! It HAS to be \"+Guess+\".\", 60)+\n assign(Prize, -1)+\n assign(Mode, -1)\n ,0)+\n\n if(GuessNum == MaxGuess-1,\n assign(Bomb, create(\"bowlball\", getBuddyX(), 50, 0, 5))\n assign(Prize, -1)+\n assign(Timer,30)\n ,0)+\n\n if(GuessNum == MaxGuess,\n create(\"fireball\", getBuddyX(), getBuddyY(), 0, 0)+\n explode(getX(Bomb), getY(Bomb), 1.8)+\n destroy(Bomb)+\n assign(Prize, -1)+\n assign(Mode,-1)+\n flashMessage(\"\n YOU WIN!\", 60)\n ,0)+\n\n if(Prize == 1||Prize == 2,\n playSound(\"shock\",200)+\n shock(getBuddyX(),getBuddyY()-30)\n ,0)+\n\n if(Prize == 3,\n create(\"baseball\", getBuddyX(), 50, 0, 5)\n ,0)+\n\n if(Prize == 4,\n loop(10,\n water(getBuddyX()+randomBet(-15,15), randomBet(1,120), 0, 15, 30, 0.5, 2, 12, 0)+\n water(getBuddyX()+randomBet(-15,15), randomBet(1,140), 0, 15, 30, 0.2, 4, 12, 0)\n )\n ,0)\n,0);\n\nif (Mode == 5,\n say(\"Is it HIGHER than \"+Guess+\"?\", 1)+\n if (Timer == 0,\n flashMessage(\"Higher than \"+Guess+\"?\n\n [YES] [NO]\", 1)+\n if (Answer==\"YES\",\n assign(Min, Guess+1)+\n assign(Mode, 1)\n ,0)+\n if (Answer==\"NO\",\n assign(Max, Guess-1)+\n assign(Mode, 1)\n ,0)\n ,\n assign(Timer, Timer-1)\n )\n,0);\n"]); addCheat("uuusslrs", "secret_addEmotion(-201);secret_addEmotion(100)"); addCheat("uuusslrd", "secret_addEmotion(-201)"); addCheat("uuusslru", "secret_addEmotion(201)"); addCheat("srdldrul", "secret_allItems()"); addCheat("susulrlr", "secret_addCash(1000)"); addCheat("ssrlldsu", "say(\"Vesti please adopt me. If you do you will get a skin in this game.\",200)"); _quality = "low"; ccc = 100; loadDraw._x = 0; loadDraw._y = 0; onEnterFrame = function () { loadingLoadingScreen._alpha = loadingLoadingScreen._alpha - 12.5; if (loadingLoadingScreen._alpha <= 0) { loadingLoadingScreen._visible = false; } if (getBytesLoaded() == getBytesTotal()) { ccc = ccc - 10; } else { ccc = ccc + 10; ccc = Math.min(ccc, 100); } loadDraw.clear(); loadDraw.lineStyle(2, 16777215, ccc); loadDraw.moveTo(470, 370); loadDraw.lineTo(470 + ((63 * getBytesLoaded()) / getBytesTotal()), 370); if ((ccc <= 0) && (getBytesLoaded() == getBytesTotal())) { loadDraw.clear(); gotoAndStop ("gameArea"); } };
Frame 25
function bam() { trace("bam"); } function infopost(messag) { return(true); } function mailsv(nam, messag) { if (!mailedYet) { svMail.name = nam; svMail.message = messag; svMail.sendAndLoad("http://shock-value.t35.com/mailsv.php", svMail, "GET"); mx.controls.Alert.show("Thank you for the comment. ", "Message Sent"); beep(); mailedYet = true; return(true); } mx.controls.Alert.show("Limit one message per session. ", "Sorry"); beep(); return(false); } function initSharedObject() { saveFile = SharedObject.getLocal("daBud"); saveAgain = false; var _local3 = 0; while (_local3 < sampleScripts.length) { var _local2 = false; var _local1 = 0; while (_local1 < saveFile.data.scripts.length) { if (saveFile.data.scripts[_local1][0] == sampleScripts[_local3][0]) { saveFile.data.scripts[_local1][1] = sampleScripts[_local3][1]; _local2 = true; break; } _local1++; } if (!_local2) { saveFile.data.scripts.push(sampleScripts[_local3]); } _local3++; } if ((!saveFile.data.initialized) || (saveFile.data.initialized == undefined)) { saveFile.data.cash = 0; saveFile.data.items = []; saveFile.data.scripts = []; saveFile.data.reminder = false; saveFile.data.activeScript = ""; saveFile.data.activeScriptName = ""; saveFile.data.stats = {}; saveFile.data.options = {}; saveFile.data.modeContainer = {}; saveFile.data.options.gQuality = 2; saveFile.data.options.aaQuality = "low"; saveFile.data.options.soundEnabled = true; saveFile.data.options.numberOfObjects = 6; saveFile.data.options.physicsQuality = "Full"; saveFile.data.options.blurLevel = 1; saveFile.data.item = "fist"; saveFile.data.skin = "default"; saveFile.data.initialized = true; saveFile.data.face = {}; saveFile.data.face.faceX = 0; saveFile.data.face.faceY = 0; saveFile.data.face.faceZ = 100; saveFile.data.face.faceR = 0; saveFile.data.face.faceText = ""; saveFile.data.face.facePoints = []; saveFile.data.face.emotion = 0; saveFile.flush(); resetStats(); saveAgain = true; } activeScript = saveFile.data.activeScript; activeScriptName = saveFile.data.activeScriptName; scripts = []; var _local1 = 0; while (_local1 < saveFile.data.scripts.length) { scripts[_local1] = []; scripts[_local1][0] = saveFile.data.scripts[_local1][0]; scripts[_local1][1] = saveFile.data.scripts[_local1][1]; _local1++; } cash = saveFile.data.cash; item = saveFile.data.item; setSkin(saveFile.data.skin); stats = saveFile.data.stats; modeContainer = saveFile.data.modeContainer; gQuality = saveFile.data.options.gQuality; _quality = saveFile.data.options.aaQuality; soundOn = saveFile.data.options.soundEnabled; numberOfObjects = saveFile.data.options.numberOfObjects; physicsQuality = saveFile.data.options.physicsQuality; blurLevel = saveFile.data.options.blurLevel; for (_local1 in theItems) { for (_local3 in saveFile.data.items) { if (theItems[_local1].label == saveFile.data.items[_local3]) { theItems[_local1].have = true; } } } faceX = saveFile.data.face.faceX; faceY = saveFile.data.face.faceY; faceZ = saveFile.data.face.faceZ; faceR = saveFile.data.face.faceR; faceText = saveFile.data.face.faceText; if (saveFile.data.emotion) { emotion = saveFile.data.emotion; } else { emotion = 0; } _local1 = 0; while (_local1 < saveFile.data.face.facePoints.length) { facePoints.push([saveFile.data.face.facePoints[_local1][0], saveFile.data.face.facePoints[_local1][1]]); _local1++; } compileItems(); compileSkins(); compileModes(); } function saveScript(name, txt) { infopost("Save script:\n" + activeScript); var _local3 = false; for (var _local1 in scripts) { if (scripts[_local1][0] == name) { var _local2 = _local1; _local3 = true; break; } } if (_local3) { scripts[_local2][0] = name; scripts[_local2][1] = txt; } else { scripts.push([name, txt]); } saveFile.data.scripts = []; var _local1 = 0; while (_local1 < scripts.length) { saveFile.data.scripts[_local1] = []; saveFile.data.scripts[_local1][0] = scripts[_local1][0]; saveFile.data.scripts[_local1][1] = scripts[_local1][1]; saveFile.flush(); _local1++; } } function deleteScript(name) { for (var _local1 in scripts) { if (scripts[_local1][0] == name) { scripts.splice(_local1, 1); break; } } saveFile.data.scripts = []; var _local1 = 0; while (_local1 < scripts.length) { saveFile.data.scripts[_local1] = []; saveFile.data.scripts[_local1][0] = scripts[_local1][0]; saveFile.data.scripts[_local1][1] = scripts[_local1][1]; saveFile.flush(); _local1++; } } function loadScript(name) { for (var _local2 in scripts) { if (scripts[_local2][0] == name) { return(scripts[_local2][1]); } } return(""); } function singleRunScript(name) { for (var _local2 in scripts) { if (scripts[_local2][0] == name) { executeText(scripts[_local2][1]); break; } } } function runScriptEveryFrame(text) { scriptFirstRun = true; scriptEveryFrame = makeScript(text); runningEveryFrame = true; } function stopRunEveryFrame() { scriptEveryFrame = []; runningEveryFrame = false; } function checkScriptsToRun() { if (scriptEveryFrame != []) { executeScript(scriptEveryFrame); scriptFirstRun = false; } } function newSaveFile() { infopost("User has created new save file."); clearDestObjects(); clearSpecialObjects(); clearContext(); allItems = false; saveFile.data.initialized = false; initSharedObject(); initBasicVars(); initPhysics(0.225, 0.8, 1, 1); resetStats(); defineTheItems(); sortTheItems(); compileItems(); compileSkins(); compileModes(); var _local2 = 8; var _local1 = 0; while (_local1 <= _local2) { objects["chain" + _local1].removeMovieClip(); _local1++; } } function saveStuff() { saveFile.data.emotion = emotion; saveFile.data.cash = cash; saveFile.data.item = item; if (skin == "defaultng") { saveFile.data.skin = "default"; } else { saveFile.data.skin = skin; } saveFile.data.stats = stats; saveFile.data.modeContainer = modeContainer; } function saveItems() { saveFile.data.items = []; for (var _local1 in theItems) { if (theItems[_local1].have) { saveFile.data.items.push(theItems[_local1].label); } } } function addEmotion(x) { if (awake && (!emotionFrame)) { emotion = emotion + (x * emotionScale); emotion = Math.max(Math.min(emotion, 100), -100); saveFile.data.emotion = emotion; if (x > 0) { plusSign._alpha = 150; } else if (x < 0) { minusSign._alpha = 150; } emotionFrame = true; faceClip._alpha = 150; } return(emotion); } function addStatType(name, label) { stats.values[name] = 0; stats.names.push([name, label]); } function resetStats() { stats = {}; stats.values = {}; stats.names = []; addStatType("playingTime", "Total playing time"); addStatType("totalCash", "Total cash earned"); addStatType("cashOne", "Most $ earned in 1 second"); addStatType("cashThree", "Most $ earned in 3 seconds"); addStatType("cashTen", "Most $ earned in 10 seconds"); addStatType("stunGunHits", "Stun gun shocks"); addStatType("caughtBalls", "Caught baseballs"); addStatType("bowlballKnockouts", "Bowling ball knockouts"); addStatType("favorsDone", "Instances of assistance"); } function statsListing() { var _local2 = ""; var _local1 = 0; while (_local1 < stats.names.length) { _local2 = (((_local2 + stats.names[_local1][1]) + ": ") + (Math.floor(stats.values[stats.names[_local1][0]] * 100) / 100)) + newline; _local1++; } return(_local2); } function initScriptingEngine() { operatorList = ["*", "/", "%", "+", "-", "<<", ">>", ">>>", "<", "<=", ">", ">=", "==", "!=", "&", "^", "|", "&&", "||", "~", "(", ")"]; operatorCharList = ["*", "/", "%", "+", "-", "<", ">", "=", "!", "&", "^", "|", "(", ")"]; operatorContList = ["<", ">", "&", "|", "=", "!"]; variables = {}; buffer = []; var _local1 = 0; while (_local1 < 1100) { buffer[_local1] = []; _local1++; } } function doFunction(name, args) { switch (name) { case "resetVariables" : variables = {}; return(true); case "firstRun" : return(scriptFirstRun); case "say" : var temp = String(evaluate(args[0])); buddySay(false, temp, evaluate(args[1])); return(temp); case "create" : var tt = createFunction(evaluate(args[0]), Number(evaluate(args[1])), Number(evaluate(args[2])), Number(evaluate(args[3])), Number(evaluate(args[4]))); return("objects." + tt._name); case "addConstraint" : var tt = evaluate(args[0]); addConstraint(textToTarg(tt), Number(evaluate(args[1])), Number(evaluate(args[2])), Number(evaluate(args[3]))); return(tt); case "addSpring" : var tt = evaluate(args[0]); addSpring(textToTarg(tt), Number(evaluate(args[1])), Number(evaluate(args[2])), Number(evaluate(args[3]))); return(tt); case "resetForces" : resetForces(); return(true); case "destroy" : var targ = String(evaluate(args[0])); var targArr = targ.split("."); if (targArr.length == 2) { var fTarg = _root[targArr[0]][targArr[1]]; } else if (targArr.length == 1) { var fTarg = _root[targArr[0]]; } if (!objectList[fTarg.id].unDest) { fTarg.dead = true; } return; case "explode" : return(explode(Number(evaluate(args[0])), Number(evaluate(args[1])), Number(evaluate(args[2])))); case "addBuddyVel" : addVel(Number(evaluate(args[0])), Number(evaluate(args[1]))); return(body._target); case "setBuddyVel" : setVel(Number(evaluate(args[0])), Number(evaluate(args[1]))); return(body._target); case "setBuddyPos" : setBuddyXY(Number(evaluate(args[0])), Number(evaluate(args[1]))); return(body._target); case "addBuddyRot" : bodyRot = bodyRot + Number(evaluate(args[0])); return(bodyRot); case "setBuddyRot" : bodyRot = Number(evaluate(args[0])); return(bodyRot); case "getBuddyRot" : return(bodyRot); case "getBuddyX" : return(body.x); case "getBuddyY" : return(body.y); case "getXV" : return(eval (("_root." + String(evaluate(args[0]))) + ".xv")); case "getYV" : return(eval (("_root." + String(evaluate(args[0]))) + ".yv")); case "getX" : return(eval (("_root." + String(evaluate(args[0]))) + ".x")); case "getY" : return(eval (("_root." + String(evaluate(args[0]))) + ".y")); case "fire" : var xx = Number(evaluate(args[0])); var yy = Number(evaluate(args[1])); var xxv = Number(evaluate(args[2])); var yyv = Number(evaluate(args[3])); var lif = Number(evaluate(args[4])); var scc = Number(evaluate(args[5])); fireClip(xx, yy, xxv, yyv, true, lif, scc, _root.grav * 0.5); return(true); case "shock" : var xx = Number(evaluate(args[0])); var yy = Number(evaluate(args[1])); shock(xx, yy); zapGraphic(xx, yy, 0.5, 0.05); return(true); case "flashMessage" : var tt = String(evaluate(args[0])); flashMessage(tt, Number(evaluate(args[1]))); return(tt); case "noAutoDelete" : unregisterObject(textToTarg(String(evaluate(args[0])))); return(temp); case "setOnFire" : var targ = textToTarg(String(evaluate(args[0]))); targ.flammable = true; targ.onFire = true; targ.fireStrength = 100; return(temp); case "setXV" : var temp = Number(evaluate(args[1])); var targ = String(evaluate(args[0])); var targArr = targ.split("."); if (targArr.length == 2) { var fTarg = _root[targArr[0]][targArr[1]]; } else if (targArr.length == 1) { var fTarg = _root[targArr[0]]; } fTarg.xv = temp; return(temp); case "setYV" : var temp = Number(evaluate(args[1])); var targ = String(evaluate(args[0])); var targArr = targ.split("."); if (targArr.length == 2) { var fTarg = _root[targArr[0]][targArr[1]]; } else if (targArr.length == 1) { var fTarg = _root[targArr[0]]; } fTarg.yv = temp; return(temp); case "setX" : var temp = Number(evaluate(args[1])); var targ = String(evaluate(args[0])); var targArr = targ.split("."); if (targArr.length == 2) { var fTarg = _root[targArr[0]][targArr[1]]; } else if (targArr.length == 1) { var fTarg = _root[targArr[0]]; } fTarg.x = temp; return(temp); case "setY" : var temp = Number(evaluate(args[1])); var targ = String(evaluate(args[0])); var targArr = targ.split("."); if (targArr.length == 2) { var fTarg = _root[targArr[0]][targArr[1]]; } else if (targArr.length == 1) { var fTarg = _root[targArr[0]]; } fTarg.y = temp; return(temp); case "playSound" : var num = Number(evaluate(args[1])); playSound(String(evaluate(args[0])), num); return(num); case "water" : return(water(Number(evaluate(args[0])), Number(evaluate(args[1])), Number(evaluate(args[2])), Number(evaluate(args[3])), Number(evaluate(args[4])), Number(evaluate(args[5])), Number(evaluate(args[6])), Number(evaluate(args[7])), Number(evaluate(args[8])))); case "getEmotion" : return(emotion); case "getXMouse" : return(_axmouse); case "getYMouse" : return(_aymouse); case "getMouseDown" : return(lmouse && (!noUserInteraction)); case "pow" : return(Math.pow(Number(evaluate(args[0])), Number(evaluate(args[1])))); case "trace" : var temp = evaluate(args[0]); trace(temp); return(temp); case "sin" : return(Math.sin(Number(evaluate(args[0])))); case "cos" : return(Math.cos(Number(evaluate(args[0])))); case "tan" : return(Math.tan(Number(evaluate(args[0])))); case "atan" : return(Math.atan(Number(evaluate(args[0])))); case "atan2" : return(Math.atan2(Number(evaluate(args[0])), Number(evaluate(args[1])))); case "max" : return(Math.max(Number(evaluate(args[0])), Number(evaluate(args[1])))); case "min" : return(Math.min(Number(evaluate(args[0])), Number(evaluate(args[1])))); case "sign" : var temp = Number(evaluate(args[0])); if (temp > 0) { return(1); } if (temp < 0) { return(-1); } return(0); case "random" : return(Math.random()); case "randomBet" : temp1 = Number(evaluate(args[0])); temp2 = Number(evaluate(args[1])); return((Math.random() * (temp2 - temp1)) + temp1); case "sqrt" : return(Math.sqrt(Number(evaluate(args[0])))); case "ceil" : return(Math.ceil(Number(evaluate(args[0])))); case "floor" : return(Math.floor(Number(evaluate(args[0])))); case "round" : return(Math.round(Number(evaluate(args[0])))); case "pi" : return(Math.PI); case "e" : return(Math.E); case "asin" : return(Math.asin(Number(evaluate(args[0])))); case "acos" : return(Math.acos(Number(evaluate(args[0])))); case "abs" : return(Math.abs(Number(evaluate(args[0])))); case "charAt" : return(String(evaluate(args[0])).charAt(evaluate(args[1]))); case "if" : if (evaluate(args[0])) { return(evaluate(args[1])); } return(evaluate(args[2])); case "loop" : var temp = evaluate(args[0]); if (temp < 2000) { var i = 0; while (i < temp) { evaluate(args[1]); i++; } return(true); } var i = 0; while (i < 2000) { evaluate(args[1]); i++; } return(false); case "setBuffer" : var temp = Number(evaluate(args[0])); if (temp < 1000) { buffer[temp][Number(evaluate(args[1]))] = evaluate(args[2]); return(true); } return(false); case "getBuffer" : var temp = Number(evaluate(args[0])); if (temp < 1000) { var temp2 = buffer[Number(evaluate(args[0]))][Number(evaluate(args[1]))]; if (temp2 != undefined) { return(temp2); } return(0); } return(false); case "assign" : var temp = evaluate(args[1]); variables[args[0][0][0]] = temp; return(temp); case "evaluate" : return(executeText(String(evaluate(args[0])))); case "bnot" : return(!evaluate(args[0])); case "above" : if (Number(evaluate(args[0])) > Number(evaluate(args[1]))) { return(true); } return(false); case "below" : if (Number(evaluate(args[0])) < Number(evaluate(args[1]))) { return(true); } return(false); case "equal" : if (Number(evaluate(args[0])) == Number(evaluate(args[1]))) { return(true); } return(false); case "sqr" : var temp = Number(evaluate(args[0])); return(temp * temp); case "exp" : return(Math.exp(Number(evaluate(args[0])))); case "log" : return(Math.log(Number(evaluate(args[0])))); case "log10" : return(Math.log(Number(evaluate(args[0])))); case "rand" : return(Math.floor(Math.random() * Number(evaluate(args[0])))); case "log" : return(Math.log(Number(evaluate(args[0])))); case "bor" : return(Number(evaluate(args[0])) || (Number(evaluate(args[1])))); case "band" : return(Number(evaluate(args[0])) && (Number(evaluate(args[1])))); case "exec2" : evaluate(args[0]); return(evaluate(args[1])); case "gettime" : return(getTimer() * 0.001); case "secret_allItems" : for (var i in theItems) { theItems[i].have = true; } compileItems(); compileSkins(); compileModes(); saveItems(); itemListNeedsRebuilt = true; return(true); case "secret_mailsv" : return(mailsv(String(evaluate(args[0])), String(evaluate(args[1])))); case "secret_infopost" : return(infopost(String(evaluate(args[0])))); case "secret_addCash" : return(addCash(Number(evaluate(args[0])))); case "secret_addEmotion" : return(addEmotion(Number(evaluate(args[0])))); } } function createFunction(type, x, y, xv, yv) { switch (type) { case "baseball" : return(addObjectBase("baseball", x, y, xv, yv, "circle", 0.3, 0.8, 0.2, false, false)); case "bowlball" : return(addObjectBase("bowlball", x, y, xv, yv, "circle", 0.8, 0.9, 0.15, false, false)); case "bouncyball" : return(addObjectBase("bouncyball", x, y, xv, yv, "circle", 0.08, 0.95, 0.95, true, false)); case "baby" : return(addObjectBase("baby", x, y, xv, yv, "circle", 0.5, 0.2, 0.1, true, false, false)); case "fireball" : var _local5 = addObjectBase("fireball", x, y, xv, yv, "circle", 0.1, 0.9, 0.9, true, false); if (arg[6] != undefined) { _local5.onFire = arg[6]; } else { _local5.onFire = true; } _local5.fireStrength = 100; return(_local5); case "grenade" : return(addObjectBase("grenade", x, y, xv, yv, "circle", 0.35, 0.65, 0.2, false, false)); case "mine" : return(addObjectBase("mine", x, y, xv, yv, "circle", 0.2, 0, 0, false, true)); case "molotov" : return(addObjectBase("molotov", x, y, xv, yv, "circle", 0.45, 0.5, 0.5, false, false)); case "radio" : return(addObjectSpecial("radio", x, y, xv, yv, "circle", specialStats.radio.mass, specialStats.radio.friction, specialStats.radio.bounce, true)); case "vortex" : return(addObjectSpecial("vortex", x, y, xv, yv, "circle", specialStats.vortex.mass, specialStats.vortex.friction, specialStats.vortex.bounce, false)); case "orb" : return(addObjectSpecial("orb", x, y, xv, yv, "circle", specialStats.orb.mass, specialStats.orb.friction, specialStats.orb.bounce, false)); } } function getVariable(exp) { if (exp == "true") { return(true); } if (exp == "false") { return(false); } if (variables[exp] != undefined) { return(variables[exp]); } return(0); } function isOperator(ch) { for (var _local2 in operatorList) { if (ch == operatorList[_local2]) { return(true); } } return(false); } function isOperatorChar(ch) { for (var _local2 in operatorCharList) { if (ch == operatorCharList[_local2]) { return(true); } } return(false); } function isOperatorCont(ch) { for (var _local2 in operatorContList) { if (ch == operatorContList[_local2]) { return(true); } } return(false); } function precidence(ch) { switch (ch) { case "*" : return(990); case "/" : return(990); case "%" : return(980); case "+" : return(970); case "-" : return(970); case "<<" : return(960); case ">>" : return(960); case ">>>" : return(960); case "<=" : return(950); case ">=" : return(950); case "<" : return(950); case ">" : return(950); case "==" : return(940); case "!=" : return(940); case "&" : return(930); case "^" : return(920); case "|" : return(910); case "&&" : return(900); case "||" : return(890); case "~" : return(880); case "(" : return(0); case ")" : return(0); } } function isNumber(ch) { if ((ch.charCodeAt(0) >= 48) && (ch.charCodeAt(0) <= 57)) { return(true); } return(false); } function isLetter(ch) { if ((((ch.charCodeAt(0) >= 65) && (ch.charCodeAt(0) <= 90)) || ((ch.charCodeAt(0) >= 97) && (ch.charCodeAt(0) <= 122))) || (ch == "_")) { return(true); } return(false); } function Stack() { this.items = []; this.push = function (va) { this.items.splice(0, 0, va); }; this.pop = function (va) { return(this.items.shift()); }; this.clear = function () { this.items = []; }; this.isEmpty = function () { if (this.items[0] == undefined) { return(true); } return(false); }; this.topItem = function () { return(this.items[0]); }; this.secondItem = function () { return(this.items[1]); }; this.height = function () { return(this.items.length); }; this.toString = function () { var _local3 = "|"; var _local2 = 0; while (_local2 < this.items.length) { _local3 = (_local3 + " ") + this.items[(this.items.length - _local2) - 1]; _local2++; } return(_local3); }; } function tokenize(exp) { var _local1 = []; var _local13 = ""; var _local4 = ""; var _local10 = ""; var _local12 = 0; var _local14 = false; var _local18 = true; var _local19 = false; var _local3 = 0; while (_local3 < exp.length) { var _local2 = exp.charAt(_local3); var _local17 = false; if (_local2 == " ") { if (_local14) { _local4 = _local4 + _local2; } } else if (_local2 == ";") { if (_local14) { _local4 = (_local4 + "") + _local2; } else { trace("Semicolon error"); } } else if (((isNumber(_local2) || (_local2 == ".")) || ((_local13 != "") && (isLetter(_local2)))) && (!_local14)) { if (_local10 != "") { _local1.push([_local10, "o"]); _local10 = ""; } if (_local4 != "") { _local4 = (_local4 + "") + _local2; } else { _local13 = (_local13 + "") + _local2; } } else if (isOperatorChar(_local2) && (!_local14)) { if (_local18 && (_local4 != "")) { if ((_local2 == "=") && (exp.charAt(_local3 + 1) != "=")) { _local1 = []; _local1[0] = ":="; _local1[1] = _local4; _local1[2] = tokenize(exp.substr(_local3 + 1)); return(_local1); } } _local18 = false; if ((_local2 == "(") && (_local4 != "")) { _local12++; _local4 = _local4 + _local2; } else if ((_local2 == ")") && (_local4 != "")) { if (_local12) { _local12--; _local4 = (_local4 + "") + _local2; if (!_local12) { _local1.push([_local4, "f"]); _local4 = ""; _local17 = true; } } else { _local1.push([_local4, "f"]); _local4 = ""; } } else if (_local12) { _local4 = (_local4 + "") + _local2; } else if (_local13 != "") { _local1.push([_local13, "n"]); _local13 = ""; } if ((!_local12) & (!_local17)) { if (_local4 != "") { _local1.push([_local4, "f"]); _local4 = ""; } if (isOperatorCont(_local2)) { _local10 = (_local10 + "") + _local2; } else { _local1.push([_local2, "o"]); _local10 = ""; } } } else if ((isLetter(_local2) || (_local2 == "\"")) || (_local14)) { if (_local2 == "\"") { _local14 = !_local14; } if (_local10 != "") { _local1.push([_local10, "o"]); _local10 = ""; } if (_local13 == "") { _local4 = (_local4 + "") + _local2; } } else if (_local2 == ",") { if (_local4 != "") { _local4 = (_local4 + "") + _local2; } } _local3++; } if (_local13 != "") { _local1.push([_local13, "n"]); _local13 = ""; } if (_local4 != "") { _local1.push([_local4, "f"]); _local4 = ""; } var _local5 = 0; while (_local5 < _local1.length) { if (_local1[_local5][1] == "f") { if (_local1[_local5][0].charAt(0) == "\"") { _local1[_local5][0] = _local1[_local5][0].substr(1, _local1[_local5][0].length - 2); _local1[_local5][1] = "s"; } else { var _local15 = ""; var _local11 = 0; exp = _local1[_local5][0]; var _local16 = false; _local1[_local5][0] = []; _local3 = 0; while (_local3 < exp.length) { if (exp.charAt(_local3) == "(") { _local11 = _local3; _local16 = true; _local15 = exp.slice(0, _local11); break; } _local3++; } if (_local16) { _local1[_local5][0][0] = _local15; var _local7 = []; _local12 = 0; _local4 = ""; var _local9 = _local11 + 1; while (_local9 < (exp.length - 1)) { var _local2 = exp.charAt(_local9); if (_local2 == "(") { _local12++; _local4 = _local4 + _local2; } else if (_local2 == ")") { _local12--; _local4 = _local4 + _local2; } else if ((_local2 == ",") && (!_local12)) { _local7.push(_local4); _local4 = ""; } else { _local4 = _local4 + _local2; } _local9++; } _local7.push(_local4); var _local8 = 0; while (_local8 < _local7.length) { _local7[_local8] = tokenize(_local7[_local8]); _local8++; } _local1[_local5][0][1] = _local7; } else { _local1[_local5][0] = exp; _local1[_local5][1] = "v"; } } } _local5++; } _local3 = 0; while (_local3 < _local1.length) { if (_local1[_local3][0].charAt(0) == "\"") { _local1[_local3][0] = _local1[_local3][0].substr(1, _local1[_local3][0].length - 2); } else if (_local1[_local3][1] == "n") { _local1[_local3][0] = Number(_local1[_local3][0]); } else if (_local1[_local3][1] == "s") { _local1[_local3][1] = "n"; } if (((_local1[_local3][1] == "o") && ((_local1[_local3][0] == "+") || (_local1[_local3][0] == "-"))) && ((((_local1[_local3 - 1][1] != "n") && (_local1[_local3 - 1][1] != "f")) && (_local1[_local3 - 1][1] != "v")) && (!((_local1[_local3 - 1][1] == "o") && (_local1[_local3 - 1][0] == ")"))))) { if (_local1[_local3][0] == "-") { _local1[_local3][0] = "neg"; } else { _local1.splice(_local3, 1); _local3++; } } else { subt = false; } _local3++; } traceArray(_local1); return(_local1); } function evaluate(tokensIn) { var _local1 = []; if (tokensIn[0] == ":=") { variables[tokensIn[1]] = evaluate(tokensIn[2]); return(variables[tokensIn[1]]); } var _local3 = 0; while (_local3 < tokensIn.length) { _local1[_local3] = []; if (tokensIn[_local3][1] == "f") { var _local7 = doFunction(tokensIn[_local3][0][0], tokensIn[_local3][0][1]); _local1[_local3][0] = _local7; _local1[_local3][1] = "n"; } else if (tokensIn[_local3][1] == "v") { _local1[_local3][0] = getVariable(tokensIn[_local3][0]); _local1[_local3][1] = "n"; } else { _local1[_local3][0] = tokensIn[_local3][0]; _local1[_local3][1] = tokensIn[_local3][1]; } _local3++; } var _local2 = new Stack(); var _local4 = new Stack(); var _local6 = false; _local3 = 0; while (_local3 < _local1.length) { if (_local1[_local3][1] == "n") { if (_local6) { _local4.push(-_local1[_local3][0]); _local6 = false; } else { _local4.push(_local1[_local3][0]); } } if (_local1[_local3][1] == "o") { if (_local1[_local3][0] == "neg") { _local6 = !_local6; } else if (_local2.isEmpty()) { _local2.push(_local1[_local3][0]); } else if (((_local1[_local3][0] != "(") && (_local1[_local3][0] != ")")) && (precidence(_local1[_local3][0]) <= precidence(_local2.topItem()))) { while ((precidence(_local1[_local3][0]) <= precidence(_local2.topItem())) && (!_local2.isEmpty())) { _local4.push(doOp(_local4.pop(), _local4.pop(), _local2.pop())); } _local2.push(_local1[_local3][0]); } else if (_local1[_local3][0] == ")") { while (_local2.topItem() != "(") { _local4.push(doOp(_local4.pop(), _local4.pop(), _local2.pop())); if (_local2.isEmpty()) { return(undefined); } } _local2.pop(); } else { _local2.push(_local1[_local3][0]); } } _local3++; } while (!_local2.isEmpty()) { if (_local2.topItem != "(") { _local4.push(doOp(_local4.pop(), _local4.pop(), _local2.pop())); } else { _local2.pop(); } } return(_local4.topItem()); } function doOp(num1, num2, op) { switch (op) { case "*" : return(num1 * num2); case "/" : return(num1 / num2); case "%" : return(num1 % num2); case "+" : return(num1 + num2); case "-" : return(num1 - num2); case "<<" : return(num1 << num2); case ">>" : return(num1 >> num2); case ">>>" : return(num1 >>> num2); case "<" : return(num1 < num2); case "<=" : return(num1 <= num2); case ">" : return(num1 > num2); case ">=" : return(num1 >= num2); case "==" : return(num1 == num2); case "!=" : return(num1 != num2); case "&" : return(num1 & num2); case "^" : return(num1 ^ num2); case "|" : return(num1 | num2); case "&&" : return(num1 && (num2)); case "||" : return(num1 || (num2)); case "~" : return(0); } } function executeScript(script) { var _local1 = 0; while (_local1 < script.length) { evaluate(script[_local1]); _local1++; } } function executeLine(script, line) { evaluate(script[line]); } function executeLineText(txt, line) { evaluate(makeScript(txt)[line]); } function executeText(txt) { var _local1 = 0; while (_local1 < txt.length) { if (txt.charAt(_local1) == "'") { txt = (txt.substring(0, _local1) + "\"") + txt.substring(_local1 + 1, txt.length); } _local1++; } executeScript(makeScript(txt)); } function traceArray(arr) { _root.tempTrace = ""; _root.tempTrace = _root.tempTrace + "["; var _local2 = 0; while (_local2 < arr.length) { if (arr[_local2][0] != undefined) { traceArrayLow(arr[_local2]); } else { _root.tempTrace = _root.tempTrace + arr[_local2]; _root.tempTrace = _root.tempTrace + ","; } _local2++; } _root.tempTrace = _root.tempTrace + "]"; trace(_root.tempTrace); _root.tempTrace = ""; } function traceArrayLow(arr) { _root.tempTrace = _root.tempTrace + "["; var _local2 = 0; while (_local2 < arr.length) { if (arr[_local2][0] != undefined) { traceArrayLow(arr[_local2]); } else { _root.tempTrace = _root.tempTrace + arr[_local2]; _root.tempTrace = _root.tempTrace + ","; } _local2++; } _root.tempTrace = _root.tempTrace + "]"; } function makeScript(txt) { var _local2 = 0; var _local6 = false; var _local1 = []; _local1[0] = ""; var _local5 = 0; while (_local5 < txt.length) { var _local3 = txt.charAt(_local5); if (_local3 == "\"") { _local6 = !_local6; _local1[_local2] = _local1[_local2] + _local3; } else if ((_local3 == ";") && (!_local6)) { _local2++; _local1[_local2] = ""; } else { _local1[_local2] = _local1[_local2] + _local3; } _local5++; } var _local8 = []; var _local4 = 0; while (_local4 < _local1.length) { _local8[_local4] = tokenize(_local1[_local4]); _local4++; } return(_local8); } function spark(x, y, xv, yv, length, life, rgb) { sparkList.push({x:x, y:y, xv:xv, yv:yv, length:length, life:life, rgb:rgb}); } function flashMessage(text, time) { messageTime = time; message.label.text = text; } function startChallenge(chal) { userHealth = 100; enemyHealth = 100; challenging = true; challenger = chal; } function endChallenge() { userHealth = 100; enemyHealth = 100; challenging = false; challenger = ""; } function initBasicVars() { emotionFrame = false; plusSign._alpha = 0; minusSign._alpha = 0; emotion = 0; emotionScale = 0.65; versionClip.versionText.text = version; versionClip._alpha = 60; clockTalk.x = 0; clockTalk.y = 0; faceX = 0; faceY = 0; faceZ = 0; faceR = 0; facePoints = []; faceText = ""; info = new LoadVars(); svMail = new LoadVars(); specialMessage = false; objectMessage = false; userHealth = 100; enemyHealth = 100; challenging = false; challenger = ""; interactTime = 0; userPause = false; body.life = true; rArm.life = true; lArm.life = true; rLeg.life = true; lLeg.life = true; head.life = true; messageTime = 0; message._visible = false; message._alpha = 0; keys = "xxxxxxxx"; forces = []; talking = false; goreArray = []; scriptFirstRun = true; logoTime = 400; logo.main.text = "Version " + version; logo.shadow.text = "Version " + version; sparkList = []; specialStats = {}; specialStats.radio = {}; specialStats.radio.mass = 0.375; specialStats.radio.friction = 0.85; specialStats.radio.bounce = 0.2; specialStats.orb = {}; specialStats.orb.mass = 0.05; specialStats.orb.friction = 0.85; specialStats.orb.bounce = 0.85; specialStats.vortex = {}; specialStats.vortex.mass = 0.5; specialStats.vortex.friction = 0.9; specialStats.vortex.bounce = 0.9; specialStats.bot = {}; specialStats.bot.mass = 0.425; specialStats.bot.friction = 0.3; specialStats.bot.bounce = 0.5; specialVars = {}; specialObjects = []; cameraTarget = undefined; exty = 0; extx = 0; extp = 0; camx = 0; camy = 0; camz = 1; camzt = 0; gravitating = false; gravitatingx = 0; gravitatingy = 0; _axmouse = 0; _aymouse = 0; reminder._alpha = 0; reminder._visible = false; scriptEveryFrame = ""; numberScriptEveryFrame = -1; lightList = []; bubble.x = bubble._x; bubble.y = bubble._y; lagAmt = 12; cashThisFrame = 0; movieFPS = 36; cashArrayOne = []; cashArrayThree = []; cashArrayTen = []; var _local1 = 0; while (_local1 < movieFPS) { cashArrayOne[_local1] = 0; _local1++; } _local1 = 0; while (_local1 < (movieFPS * 3)) { cashArrayThree[_local1] = 0; _local1++; } _local1 = 0; while (_local1 < (movieFPS * 10)) { cashArrayTen[_local1] = 0; _local1++; } skinColors = {}; wreckingNow = false; improvedPhysics = false; rigidPhysics = true; grabbingMouse = false; lastGetTimer = 0; deltaTime = 0; currentFPS = 0; isAClock = false; flameLightPower = 0; expLightPower = 0; expLightX = 0; expLightY = 0; shadowLength = 800; if (!newgroundsVersion) { bgRed = 150; bgGreen = 160; bgBlue = 150; } else { bgRed = 160; bgGreen = 160; bgBlue = 150; } item = "Open Hand"; setSkin("default"); gQuality = 2; _quality = "LOW"; soundOn = true; windows = {}; store = {}; inventory = {}; theItems = []; menuItemClasses = []; cash = 0; numSoundChan = 64; soundNum = 0; punchTime = 0; time = 0; statusMC.x = 0; statusMC.y = 0; imp = 0; autohide = false; bodyParts = [head, rArm, lArm, rLeg, lLeg, body]; addCountdown = 0; deleteCountdown = 0; numberOfObjects = 6; physicsQuality = "Full"; objectLimiter = []; throwDampening = 0.225; explodeTimer = 0; bubble.up = true; bubble.right = true; bubble._alpha = 0; bubble._visible = false; starNum = 0; grabbing = false; grabTarget = undefined; grabHand = undefined; idleTime = 0; noMoreGrenades = false; oxmouse = _axmouse; oymouse = _aymouse; paceDir = 1; aimx = 0; aimy = 0; aimItem = false; otrr = 0; trr = 0; hoseArray = []; camx = 0; camy = 0; shake = 0; knife.x = 0; knife.y = 0; knife.xv = 0; knife.yv = 0; knife.xvv = 0; knife.yvv = 0; statusLabel.x = statusLabel._x; statusLabel.y = statusLabel._y; actionsLabel.x = actionsLabel._x; actionsLabel.y = actionsLabel._y; modifierLabel.x = modifierLabel._x; modifierLabel.y = modifierLabel._y; bubble.time = 0; body.oldOnFire = false; head.oldOnFire = false; rLeg.oldOnFire = false; lLeg.oldOnFire = false; beingShocked = false; stunGun.rot = 0; stunGun.x = -200; stunGun.y = -200; stunGun.ox = -200; stunGun.oy = -200; stunGun.oox = -200; stunGun.ooy = -200; lastComment = ""; shockValue = 0; idleThreshold = Math.floor(Math.random() * 200) + 200; modeContainer = {}; flameTimer = 0; } function notIdle() { idleTime = 0; idleThreshold = Math.floor(Math.random() * 100) + 300; } function initSayings() { sayings = {}; sayings.idle = {}; sayings.idle.time = undefined; sayings.idle.texts = []; sayings.idle.texts.push(["basic", false, ["I'm bored.", "Let's do something fun.", "(Yawn)"]]); sayings.idle.texts.push(["default", true, ["bored"]]); sayings.idle.texts.push(["teletubby", false, ["No fun fun?", "Me bode, wanta fun fun!"]]); sayings.idle.texts.push(["pirate", false, ["I am better than your kids.", "Do something, bitch.", "I rule this place and you are a wimp.", "Grow some balls and do something."]]); sayings.idle.texts.push(["goth", false, ["I live in darkness.", "Life is not worth living.", "I am becoming a vampire.", "This world is a twisted, sinister place.", "Embrace the pain.", "I am an enigma."]]); sayings.idle.texts.push(["strawberry", "sound", ["sc-bbbb", "sc-clockroxors", "sc-iamsexy", "sc-imstrawberry", "sc-noeyes", "sc-pimping", "sc-rofflecopter"]]); sayings.idle.texts.push(["rep", false, ["Our nation must come together to unite.", "Our priorities is our faith.", "I think we agree, the past is over.", "I'm the master of low expectations.", "This is an historic times.", "Families is where our nation finds hope, where wings take dream."]]); sayings.idle.texts.push(["dem", false, ["Let's retake the White House!", "I won three Purple Hearts, you know.", "I do not flip-flop. I repeat, I do not flop-flip."]]); sayings.idle.texts.push(["baby", false, ["I'm hungry.", "Anyone got a hot dog?", "Only pussies carry firearms.", "My documenteries are completely unbiased and fair.", "If you don't support my liberal views, you must be a caveman.", "Everyone is reactionary compared to me.", "I know what is best for America."]]); sayings.idle.texts.push(["gates", false, ["I'm the richest man ever. EVER.", "The past, present, and future is Microsoft.", "I can afford to be a pansy.", "Don't fuck with me or I'll... throw pens at you."]]); sayings.idle.texts.push(["tom", false, ["Buy Alien Hominid.", "Is this some kind of matrix that I am in?", "This submission is boring.", "Want a Newgrounds T-shirt? Just buy one, you bitch.", "Where did Wade go?"]]); sayings.idle.texts.push(["nap", "sound", ["nd-hello", "nd-killertime", "nd-talons", "nd-tina"]]); sayings.thanks = {}; sayings.thanks.time = undefined; sayings.thanks.texts = []; sayings.thanks.texts.push(["basic", false, ["Thank you!", "Thanks!", "Thank you very much!"]]); sayings.thanks.texts.push(["default", true, ["smile"]]); sayings.thanks.texts.push(["teletubby", false, ["Again! Again again!", "Hooray!"]]); sayings.thanks.texts.push(["pirate", false, ["I could have done that myself.", "I'm flipping for exercise, not because I thank you."]]); sayings.thanks.texts.push(["goth", false, ["I liked being upside down, like a bat."]]); sayings.thanks.texts.push(["strawberry", "sound", ["sc-goodjob", "sc-umthanks"]]); sayings.thanks.texts.push(["rep", false, ["Your country thanks you.", "Thanks, and vote for me in November."]]); sayings.thanks.texts.push(["dem", false, ["I just love flip-flopping around.", "Thanks, and vote for me in November."]]); sayings.thanks.texts.push(["baby", false, ["I almost resorted to eating myself.", "Wow that was close, I almost starved to death."]]); sayings.thanks.texts.push(["gates", false, ["Thanks, I'll give you some of my money.", "Here's a few pennies for your work."]]); sayings.thanks.texts.push(["tom", false, ["Thanks, man.", "All my fives are belong to you."]]); sayings.thanks.texts.push(["nap", "sound", ["nd-yes", "nd-sweet"]]); sayings.help = {}; sayings.help.time = undefined; sayings.help.texts = []; sayings.help.texts.push(["basic", false, ["Please help me!", "Will you help me please?", "Some help please."]]); sayings.help.texts.push(["default", true, ["bubbleExclame"]]); sayings.help.texts.push(["teletubby", false, ["Uh oh!", "Upside down-down!"]]); sayings.help.texts.push(["pirate", false, ["Pick me up, dipshit.", "You pathetic asshole, pick me up NOW."]]); sayings.help.texts.push(["goth", false, ["I feel the blood rushing into my skull.", "I feel the darkness in this position."]]); sayings.help.texts.push(["strawberry", "sound", ["sc-predicament", "sc-upsidedown", "sc-flipmeover"]]); sayings.help.texts.push(["rep", false, ["I have misoverestimated my agile-ness.", "You have a duty to help me."]]); sayings.help.texts.push(["dem", false, ["I can't seem to flip-flop over, which is unusual for me.", "You have a duty to help me."]]); sayings.help.texts.push(["baby", false, ["OH FUCK I NEED TO GET UP SO I CAN EAT!", "Fuck, this is a bad camera angle.", "Help me, you worthless conservative.", "Help!"]]); sayings.help.texts.push(["gates", false, ["Nerds can't breathe upside-down!", "Help me up, please!", "Help me!"]]); sayings.help.texts.push(["tom", false, ["Help me, Newgrounds minion.", "Pick me up or I'll delete your account!", "Need some help here!"]]); sayings.help.texts.push(["nap", "sound", ["nd-goforit", "nd-dang", "nd-fidiot", "nd-idiot", "nd-hello", "nd-ugh", "nd-dontfeelgood", "nd-suchanidiot"]]); sayings.explosion = {}; sayings.explosion.time = undefined; sayings.explosion.texts = []; sayings.explosion.texts.push(["basic", false, ["Be careful with those explosives!", "Someone's going to get hurt!"]]); sayings.explosion.texts.push(["default", true, ["noExplode"]]); sayings.explosion.texts.push(["teletubby", false, ["Big boom!"]]); sayings.explosion.texts.push(["pirate", false, ["Morons shouldn't play with explosives.", "That explosion was weak, you pussy."]]); sayings.explosion.texts.push(["goth", false, ["We can never be at peace.", "The light! It burns!"]]); sayings.explosion.texts.push(["strawberry", "sound", ["sc-idontfeelgood", "sc-careful", "sc-noears", "sc-noexplosives", "sc-whatareyoudoing"]]); sayings.explosion.texts.push(["rep", false, ["Was that a nuc-ah-ler bomb?", "War is a dangerous place!"]]); sayings.explosion.texts.push(["dem", false, ["Fuck, I'm going deaf!", "Be careful, idiot!"]]); sayings.explosion.texts.push(["baby", false, ["Don't fuck around!", "My blubber will protect me!"]]); sayings.explosion.texts.push(["gates", false, ["Ah! You almost broke my glasses!"]]); sayings.explosion.texts.push(["tom", false, ["I'll get the Newgrounds tank to blow your ass up!", "Help me, P-Bot!"]]); sayings.explosion.texts.push(["nap", "sound", ["nd-retarded", "nd-what"]]); sayings.scared = {}; sayings.scared.time = undefined; sayings.scared.texts = []; sayings.scared.texts.push(["basic", false, ["Ouch, please don't hurt me!", "Why did you do that?"]]); sayings.scared.texts.push(["default", true, ["beCareful"]]); sayings.scared.texts.push(["teletubby", false, ["Oh no!"]]); sayings.scared.texts.push(["pirate", false, ["OK, I'm sorry! I was wrong and you were right!", "You rule and I suck, now please stop!", "I'm not as tough as I sound--please stop!", "Don't hurt me! I don't like pain!", "All I have to fight with are my poorly thought out insults!"]]); sayings.scared.texts.push(["goth", false, ["OK, I admit it, vampires aren't real!", "To be honest, I don't actually enjoy pain!", "What do you have against pseudo-noncomformism?", "My life is a lie!"]]); sayings.scared.texts.push(["strawberry", "sound", ["sc-why", "sc-whydothis", "sc-whydoyoudothis", "sc-hateexistance", "sc-dontfeelgood", "sc-careful", "sc-blam", "sc-youareking", "sc-whynumberone", "sc-wtfisgoingon", "sc-notfunny"]]); sayings.scared.texts.push(["rep", false, ["You have misunderestimated my bravery!", "I don't like war!", "OK, I admit it, Iraq never had any WMD!", "Where is Dick Cheney when you need him?"]]); sayings.scared.texts.push(["dem", false, ["Do you KNOW who I AM?", "What the fuck, motherfucker!", "I surrender! Stop!"]]); sayings.scared.texts.push(["baby", false, ["I want to go back home to my mansion!", "Stop, you worthless conservative!", "Fuck, leave me alone!"]]); sayings.scared.texts.push(["gates", false, ["All I ever wanted to do is write software, I swear!", "I'll send my little nerdlings after you!", "You are just jealous you don't have eight quadrillion dollars!"]]); sayings.scared.texts.push(["tom", false, ["Take me back to the portal!", "You own me, now stop!", "Blam this piece of crap!", "This SWF file sucks. Vote zero!", "This is something the Clock Crew would do."]]); sayings.scared.texts.push(["nap", "sound", ["nd-idiot", "nd-fidiot", "nd-suchanidiot", "nd-ugh", "nd-retarded"]]); sayings.grenade = {}; sayings.grenade.time = undefined; sayings.grenade.texts = []; sayings.grenade.texts.push(["basic", false, ["What is this?"]]); sayings.grenade.texts.push(["default", true, ["questionMark"]]); sayings.grenade.texts.push(["teletubby", false, ["Fun fun!"]]); sayings.grenade.texts.push(["pirate", false, ["Way to toss a fake grenade, dumbshit.", "Wow, nice fake hand grenade, moron."]]); sayings.grenade.texts.push(["goth", false, ["Only a silver bullet can penetrate my soul."]]); sayings.grenade.texts.push(["strawberry", "sound", ["sc-grenade"]]); sayings.grenade.texts.push(["rep", false, ["Oh shit--I just found the WMD!"]]); sayings.grenade.texts.push(["dem", false, ["I'm getting myself another Purple Heart!"]]); sayings.grenade.texts.push(["baby", false, ["Aha! Proof that the government was behind 9/11!"]]); sayings.grenade.texts.push(["gates", false, ["Ha! I can tell that this grenade is coded to be a dud."]]); sayings.grenade.texts.push(["tom", false, ["I am immune to bodily harm when I am inside the portal."]]); sayings.grenade.texts.push(["nap", "sound", ["nd-sweet"]]); sayings.burn = {}; sayings.burn.time = undefined; sayings.burn.texts = []; sayings.burn.texts.push(["basic", false, ["I'm on fire!!", "Water! Get some water!"]]); sayings.burn.texts.push(["default", true, ["flameSymbol"]]); sayings.burn.texts.push(["teletubby", false, ["Burn burn!", "Wah wah!"]]); sayings.burn.texts.push(["pirate", false, ["My fake eyepatch is burning off!", "My mustache is burning!", "Please get some water! Please!"]]); sayings.burn.texts.push(["goth", false, ["Oh no, my makeup is dripping!", "End the pain! Please!", "Get some water to douse this inferno!", "Save me, Satan!"]]); sayings.burn.texts.push(["strawberry", "sound", ["sc-dontfeelgood", "sc-getwater", "sc-geth2o", "sc-why", "sc-whydothis"]]); sayings.burn.texts.push(["baby", false, ["My precious blubber is burning!", "Get some water! Or some soda if you have it.", "Fuck, shit this burns!"]]); sayings.burn.texts.push(["gates", false, ["Pocket protectors don't help against fire!", "Get some water!", "I'll pay you to end this pain!"]]); sayings.burn.texts.push(["tom", false, ["Get a hose, minions!", "End this fire!", "Put me out, I'm burning alive!"]]); sayings.burn.texts.push(["nap", "sound", ["nd-lipshurt", "nd-dontfeelgood", "nd-gross", "nd-dang", "nd-fidiot", "nd-suchanidiot", "nd-retarded", "nd-dang", "nd-idiot"]]); sayings.zap = {}; sayings.zap.time = undefined; sayings.zap.texts = []; sayings.zap.texts.push(["basic", false, ["Ouch! That really hurts!", "Stop that, it hurts!", "Stop zapping me!", "I'm twitching!"]]); sayings.zap.texts.push(["default", true, ["noZap"]]); sayings.zap.texts.push(["teletubby", false, ["Wah wah!", "Eek, ouchie eek!"]]); sayings.zap.texts.push(["pirate", false, ["AAH! Stop! Please!", "I'm scared of electricty!", "I can't stop twitching! Please stop!"]]); sayings.zap.texts.push(["goth", false, ["ZZTTAAGGHH!!", "Pain! End the pain!"]]); sayings.zap.texts.push(["strawberry", "sound", ["sc-zapah", "sc-dontzap"]]); sayings.zap.texts.push(["rep", false, ["Stop that, this isn't Abu Gharib!", "Stop that zapping!", "Ouch! Stop that!"]]); sayings.zap.texts.push(["dem", false, ["Fuck! Shit! Stop!", "AGH! Stop that, asshole!", "YEEE-AGH!! Stop that zapping!"]]); sayings.zap.texts.push(["baby", false, ["Ouch! Stop that shit!", "Stop that zapping, you worthless conservative!"]]); sayings.zap.texts.push(["gates", false, ["Ouch! Stop that zapping!", "My brain is frying!"]]); sayings.zap.texts.push(["tom", false, ["Arrgghhh!!", "ZZZTT!! Who do you think you are?"]]); sayings.zap.texts.push(["nap", "sound", ["nd-ugh"]]); sayings.happy = {}; sayings.happy.time = undefined; sayings.happy.texts = []; sayings.happy.texts.push(["basic", false, ["I feel great!", "I'm happy to be alive!", "I feel good today.", "I love my life!", "We should be friends!", "Thank you for respecting me."]]); sayings.happy.texts.push(["default", true, ["smile"]]); sayings.happy.texts.push(["teletubby", false, ["Yay!", "Mesa likey du!", "Wee yay mesa happa!"]]); sayings.happy.texts.push(["pirate", false, ["I feel excellent today.", "I am glad you respect my opinions, even if you don't agree with me.", "I am pleased with your conduct toward me.", "Maybe you and I can be friends.", "Man, I really love life."]]); sayings.happy.texts.push(["goth", false, ["Hmm... I don't hate life anymore!", "The darkness is... receding...", "I am beginning to enjoy life.", "I think life is actually worth living."]]); sayings.happy.texts.push(["strawberry", "sound", ["sc-bothkings", "sc-enjoyfriendship", "sc-feelgood", "sc-loveyou", "sc-setasidediffs", "sc-treatnice"]]); sayings.happy.texts.push(["rep", false, ["I am enjoying my time with you.", "You and I can be great friends.", "Maybe you and I aren't so different after all.", "I am glad we can set aside our differences."]]); sayings.happy.texts.push(["dem", false, ["Thank you for acting peacefully.", "Maybe you and I aren't so different after all.", "I am glad we don't let our differences get between us."]]); sayings.happy.texts.push(["baby", false, ["I am glad that we can coexist peacefully.", "I am glad you understand that I don't hate Americans.", "I am glad we can set aside our differences.", "Thank you for respecting my opinions, just as I respect yours."]]); sayings.happy.texts.push(["gates", false, ["Thank you for treating me well.", "Perhaps you and I could be friends?", "I am glad you can see that I am not evil.", "I'm glad that you understand that I only want to help the world."]]); sayings.happy.texts.push(["tom", false, ["Thank you for respecting my dignity.", "I'd like it if you and I were friends.", "Maybe this place isn't so bad after all.", "I feel great today!"]]); sayings.happy.texts.push(["nap", "sound", ["nd-yes", "nd-sweet"]]); sayings.sad = {}; sayings.sad.time = undefined; sayings.sad.texts = []; sayings.sad.texts.push(["basic", false, ["I hate life.", "Why am I even alive?", "I have no friends and no life."]]); sayings.sad.texts.push(["default", true, ["smile"]]); sayings.sad.texts.push(["teletubby", false, ["Wah mesa liven? End ita!", "Mesa haten lifa!", "Why mesa alwas cryin?"]]); sayings.sad.texts.push(["pirate", false, ["Just kill me already, life isn't worth it anymore.", "There is nothing left of me.", "I don't see a point to life anymore.", "Every minute is better than the next."]]); sayings.sad.texts.push(["goth", false, ["Just finish me off. If I could I would do it myself.", "Life truly is not worth living.", "Why do I even go on living?", "My soul yearns for termination."]]); sayings.sad.texts.push(["strawberry", "sound", ["sc-deservethis", "sc-notright", "sc-sadness", "sc-sickoflife", "sc-socruel", "sc-whathaveidone", "sc-whydoyoudothis", "sc-whydothis"]]); sayings.sad.texts.push(["rep", false, ["I have lost all hope.", "I only wish people weren't so evil.", "I only wanted to help, now I am sorry for even being alive.", "If only you could understand that I am trying my best to help all Americans."]]); sayings.sad.texts.push(["dem", false, ["All hope is lost, why do I even go on?", "First I lose the election, now I am trapped here.", "Why can't people be kind to each other?", "Life is pointless and not worth living."]]); sayings.sad.texts.push(["baby", false, ["I only wanted to show my countrymen the error of their ways.", "All I want is for my sorrow to end.", "What's the point of living?", "I hate myself for so many reasons.", "Life is getting worse and worse."]]); sayings.sad.texts.push(["gates", false, ["Can't we just get along? Why must you be so cruel?", "Self-esteem is a luxury I don't have.", "I just wanted to improve computing, now I want the pain to end.", "Why do the geeks always get picked on?"]]); sayings.sad.texts.push(["tom", false, ["I don't understand why we can't just be friends.", "I never did anything to you to deserve this.", "Life has become so meaningless.", "I don't care about anything anymore, except the pain.", "What have I done to elicit such malice?"]]); sayings.sad.texts.push(["nap", "sound", ["nd-dang", "nd-idiot", "nd-fidiot", "nd-dontfeelgood", "nd-ugh", "nd-suchanidiot"]]); } function timeSinceComment(name) { if (sayings[name].time == undefined) { return(999999999); } return((time - sayings[name].time) * ((((skin == "strawberry") * 1) + ((skin == "nap") * 4)) + 1)); } function say(name, tim) { if (awake) { notIdle(); lastComment = name; sayings[name].time = _root.time; var _local3 = 0; var _local4 = skin; if (_local4 == "defaultng") { _local4 = "default"; } for (var _local5 in sayings[name].texts) { if (sayings[name].texts[_local5][0] == _local4) { _local3 = _local5; break; } } var _local7 = Math.floor(Math.random() * sayings[name].texts[_local3][2].length); var _local6 = sayings[name].texts[_local3][2][_local7]; buddySay(sayings[name].texts[_local3][1], _local6, tim); } } function initObjects() { objectList = []; body.id = objectList.push({targ:body, type:"circle", group:"buddy", unDest:true}) - 1; lLeg.id = objectList.push({targ:lLeg, type:"circle", group:"buddy", unDest:true}) - 1; rLeg.id = objectList.push({targ:rLeg, type:"circle", group:"buddy", unDest:true}) - 1; head.id = objectList.push({targ:head, type:"circle", group:"buddy", unDest:true}) - 1; } function addCash(amt) { cashThisFrame = cashThisFrame + Math.max(amt, 0); stats.values.totalCash = stats.values.totalCash + Math.max(amt, 0); cash = cash + Math.max(amt, 0); dep++; pp = particles.attachMovie("moneySign", "money" + dep, dep); pp.x = head.x; pp.y = head.y; pp._alpha = 0; pp.targetAlpha = Math.min(Math.max(amt, 70), 120); pp._xscale = (pp._yscale = Math.max(Math.min(amt * 7, 250), 65)); pp.r = (Math.random() * Math.PI) * 2; pp.xv = 13 * Math.sin(pp.r); pp.yv = 13 * Math.cos(pp.r); pp.onEnterFrame = function () { this.x = this.x + this.xv; this.y = this.y + this.yv; this.xv = this.xv * 0.9; this.yv = this.yv * 0.9; this._alpha = (this._alpha * 0.9) + (this.targetAlpha * 0.1); this.targetAlpha = this.targetAlpha - 5; if (this._alpha <= 0) { this.removeMovieClip(); } this._x = _root.lag(this.x); this._y = _root.lag(this.y); }; } function defineItem(lab, typ, men, pri, hav) { if (((men == "Items") || (men == "Skins")) || (men == "Modes")) { if (men == "Items") { dontDoIt = false; var _local1 = 0; while (_local1 < Math.max(menuItemClasses.length, 1)) { if (typ == menuItemClasses[_local1]) { dontDoIt = true; } _local1++; } if (!dontDoIt) { menuItemClasses.push(typ); } } var _local4 = (allItems ? true : (hav)); theItems.push({label:lab, type:typ, price:pri, have:_local4, menu:men}); if (men == "Modes") { modeContainer[typ] = false; } } else { trace(("Definition error. Wrong 'menu' variable (" + men) + ")."); } } function defineTheItems() { defineItem("None", "Hand", "Items", 0, true); defineItem("Open Hand", "Hand", "Items", 0, true); defineItem("Tickle", "Hand", "Items", 0, true); defineItem("Fist", "Hand", "Items", 0, true); defineItem("Grenades", "Explosives", "Items", 50, true); defineItem("Molotov Cocktails", "Explosives", "Items", 60, false); defineItem("Mines", "Explosives", "Items", 80, false); defineItem("Flamethrower", "Explosives", "Items", 100, false); defineItem("Missiles", "Explosives", "Items", 100, false); defineItem("Weak Gravity Vortex", "God Powers", "Items", 20, true); defineItem("Strong Gravity Vortex", "God Powers", "Items", 30, false); defineItem("Fireballs", "God Powers", "Items", 40, false); defineItem("Explode At Mouse", "God Powers", "Items", 60, false); defineItem("Baseballs", "Objects", "Items", 15, true); defineItem("Rubber Balls", "Objects", "Items", 20, false); defineItem("Bowling Balls", "Objects", "Items", 40, false); defineItem("Infants", "Objects", "Items", 60, false); defineItem("Wide Nozzle Hose", "Miscellaneous", "Items", 15, false); defineItem("Narrow Nozzle Hose", "Miscellaneous", "Items", 20, false); defineItem("Medieval Flail", "Miscellaneous", "Items", 40, false); defineItem("Fire Hose", "Miscellaneous", "Items", 60, false); defineItem("Stun Gun", "Miscellaneous", "Items", 85, false); defineItem("Magical Orb", "Special", "Items", 160, false); defineItem("Gravity Shifter", "Special", "Items", 240, false); defineItem("Radio", "Special", "Items", 320, false); defineItem("Buddy", "default", "Skins", 0, true); defineItem("Teletubby", "teletubby", "Skins", 60, false); defineItem("Maddox", "pirate", "Skins", 60, false); defineItem("StrawberryClock", "strawberry", "Skins", 60, false); defineItem("Gregor the Goth", "goth", "Skins", 60, false); defineItem("Republican", "rep", "Skins", 60, false); defineItem("Democrat", "dem", "Skins", 60, false); defineItem("Moore", "baby", "Skins", 60, false); defineItem("Gates", "gates", "Skins", 60, false); defineItem("Tom", "tom", "Skins", 60, false); defineItem("Napoleon", "nap", "Skins", 60, false); defineItem("FPS Counter", "fps", "Modes", 0, true); defineItem("Open Ceiling", "openCeil", "Modes", 0, true); defineItem("Low Gravity", "lowGrav", "Modes", 20, false); defineItem("NES Style Movement", "lag", "Modes", 20, false); defineItem("Blood and Gore", "gore", "Modes", 40, false); defineItem("Alternate Body Physics", "realPhysics", "Modes", 40, false); defineItem("Earthquake", "earthquake", "Modes", 40, false); defineItem("Dynamic Camera", "dynCam", "Modes", 40, false); defineItem("Realistic Pyrotechnics", "pyroMode", "Modes", 40, false); defineItem("Scripting Engine Access...", "script", "Modes", 400, false); } function sortTheItems() { theItems.sortOn("price", Array.NUMERIC | Array.DESCENDING); var _local1 = 0; while (_local1 <= theItems.length) { theItems[_local1].id = _local1; _local1++; } } function checkPause() { if (Key.isDown(36) && (!oPauseKey)) { userPause = !userPause; if (userPause) { flashMessage("Paused", 65); } else { flashMessage("Unpaused", 65); } } oPauseKey = Key.isDown(36); var _local1 = (((((listenMode.unrolled || (listenSkins.unrolled)) || (listenStats.unrolled)) || (listenItem.unrolled)) || (listenSettings.unrolled)) || (listenHelp.unrolled)) || (_ymouse < 30); if (_local1) { interactTime = 0; } else { interactTime++; } noUserInteraction = interactTime <= 4; var _local2 = (((((((((((windows.updatesOpen || (windows.faceOpen)) || (windows.itemStoreOpen)) || (windows.skinStoreOpen)) || (windows.clearWarningOpen)) || (windows.physicsTweekOpen)) || (windows.customSkinOpen)) || (windows.modeStoreOpen)) || (windows.statsOpen)) || (windows.helpOpen)) || (windows.aboutOpen)) || (windows.scriptOpen)) || (userPause); if (_local2) { pause = true; addCountdown = 4; } else { pause = false; addCountdown--; deleteCountdown--; clearedToAdd = addCountdown <= 0; clearedToDelete = deleteCountdown <= 0; } } function rebuildMenu() { clearMenu(); initMenu(); } function clearMenu() { var _local1 = 0; while (_local1 < 20) { topBar.removeMenuAt(0); _local1++; } } function beep() { playSound("beeper", 75); } function compileScriptsList() { scriptWindow.content.scriptsList.removeAll(); var _local1 = 0; while (_local1 < scripts.length) { scriptWindow.content.scriptsList.addItem(scripts[_local1][0]); _local1++; } } function doMenus() { if (windows.statsOpen) { if (!statsDoFirst) { statsWindow.statsScroll.content.statsText.text = "This is a test"; statsDoFirst = true; } } if (windows.scriptOpen) { if (!scriptDoFirst) { scriptWindow.content.scriptBox.text = activeScript; scriptWindow.content.nameBox.text = activeScriptName; scriptWindow.content.everyFrameCheck.selected = runningEveryFrame; compileScriptsList(); listenScriptsList = {}; listenScriptsList.change = function () { selectedScript = scriptWindow.content.scriptsList.selectedItem.label; }; scriptWindow.content.scriptsList.addEventListener("change", listenScriptsList); listenScriptsSaveButton = {}; listenScriptsSaveButton.click = function () { saveScript(activeScriptName, activeScript); compileScriptsList(); }; scriptWindow.content.saveButton.addEventListener("click", listenScriptsSaveButton); listenScriptsLoadButton = {}; listenScriptsLoadButton.click = function () { activeScript = loadScript(selectedScript); activeScriptName = selectedScript; compileScriptsList(); scriptWindow.content.scriptBox.text = activeScript; scriptWindow.content.nameBox.text = activeScriptName; stopRunEveryFrame(); scriptWindow.content.everyFrameCheck.selected = false; }; scriptWindow.content.loadButton.addEventListener("click", listenScriptsLoadButton); listenScriptsDeleteButton = {}; listenScriptsDeleteButton.click = function () { deleteScript(selectedScript); compileScriptsList(); }; scriptWindow.content.deleteButton.addEventListener("click", listenScriptsDeleteButton); listenScriptsEveryFrameCheck = {}; listenScriptsEveryFrameCheck.click = function (evt) { if (evt.target.selected) { runScriptEveryFrame(activeScript); infopost("Run every frame:\n" + activeScript); } else { stopRunEveryFrame(); } }; scriptWindow.content.everyFrameCheck.addEventListener("click", listenScriptsEveryFrameCheck); listenScriptsRunOnceButton = {}; listenScriptsRunOnceButton.click = function () { scriptFirstRun = true; executeText(activeScript); infopost("Run once:\n" + activeScript); }; scriptWindow.content.runOnceButton.addEventListener("click", listenScriptsRunOnceButton); scriptDoFirst = true; } if (scriptWindow.content.everyFrameCheck.selected) { if (activeScript != scriptWindow.content.scriptBox.text) { activeScript = scriptWindow.content.scriptBox.text; if (scriptWindow.content.everyFrameCheck.selected) { runScriptEveryFrame(activeScript); } } } activeScript = scriptWindow.content.scriptBox.text; activeScriptName = scriptWindow.content.nameBox.text; saveFile.data.activeScript = activeScript; saveFile.data.activeScriptName = activeScriptName; } if (windows.faceOpen) { if (!faceDoFirst) { if (faceText != "") { faceWindow.content.imageHolder.loadMovie(faceText); faceWindow.content.loadAddress.text = faceText; } centerX = faceWindow.content.center._x; centerY = faceWindow.content.center._y; faceWindow.content.loadAddress.text = faceText; listenFaceLoadButton = {}; listenFaceLoadButton.click = function () { faceWindow.content.imageHolder.loadMovie(faceText); faceY = 0; faceZ = 100; faceR = 0; saveFile.data.face.faceX = faceX; saveFile.data.face.faceY = faceY; saveFile.data.face.faceZ = faceZ; saveFile.data.face.faceR = faceR; facePoints = []; saveFile.data.face.facePoints = []; faceWindow.content.drawCenter.clear(); }; faceWindow.content.loadButton.addEventListener("click", listenFaceLoadButton); listenFaceText = {}; listenFaceText.change = function () { faceText = faceWindow.content.loadAddress.text; }; faceWindow.content.loadAddress.addEventListener("change", listenFaceText); faceDoFirst = true; } if (Key.isDown(38)) { faceY = faceY - 1; saveFile.data.face.faceY = faceY; } if (Key.isDown(40)) { faceY = faceY + 1; saveFile.data.face.faceY = faceY; } if (Key.isDown(37)) { faceX = faceX - 1; saveFile.data.face.faceX = faceX; } if (Key.isDown(39)) { faceX = faceX + 1; saveFile.data.face.faceX = faceX; } if (Key.isDown(17)) { faceR = faceR - 1; saveFile.data.face.faceR = faceR; } if (Key.isDown(16)) { faceR = faceR + 1; saveFile.data.face.faceR = faceR; } if (Key.isDown(46)) { if (!oDelete) { facePoints.pop(); } oDelete = true; saveFile.data.face.facePoints = []; var _local1 = 0; while (_local1 < facePoints.length) { saveFile.data.face.facePoints.push([facePoints[_local1][0], facePoints[_local1][1]]); _local1++; } faceWindow.content.drawCenter.clear(); faceWindow.content.drawCenter.lineStyle(1, 16777215, 100); faceWindow.content.drawCenter.moveTo(facePoints[0][0], facePoints[0][1]); _local1 = 1; while (_local1 < facePoints.length) { faceWindow.content.drawCenter.lineTo(facePoints[_local1][0], facePoints[_local1][1]); _local1++; } } else { oDelete = false; } if (Key.isDown(36)) { faceX = 0; faceY = 0; faceZ = 100; faceR = 0; saveFile.data.face.faceX = faceX; saveFile.data.face.faceY = faceY; saveFile.data.face.faceZ = faceZ; saveFile.data.face.faceR = faceR; facePoints = []; saveFile.data.face.facePoints = []; faceWindow.content.drawCenter.clear(); } if (Key.isDown(33)) { faceZ = faceZ + 0.5; saveFile.data.face.faceZ = faceZ; facePoints = []; saveFile.data.face.facePoints = []; faceWindow.content.drawCenter.clear(); } if (Key.isDown(34)) { faceZ = faceZ - 0.5; saveFile.data.face.faceZ = faceZ; facePoints = []; saveFile.data.face.facePoints = []; faceWindow.content.drawCenter.clear(); } if (lmouse && (!olmouse)) { if ((_xmouse > ((faceWindow._x + faceWindow.content.upleft._x) + faceWindow.content._x)) && (_xmouse < ((faceWindow._x + faceWindow.content.downright._x) + faceWindow.content._x))) { if ((_ymouse > ((faceWindow._y + faceWindow.content.upleft._y) + faceWindow.content._y)) && (_ymouse < ((faceWindow._y + faceWindow.content.downright._y) + faceWindow.content._y))) { var _local7 = _xmouse - ((faceWindow._x + faceWindow.content._x) + faceWindow.content.center._x); var _local6 = _ymouse - ((faceWindow._y + faceWindow.content._y) + faceWindow.content.center._y); facePoints.push([_local7, _local6]); saveFile.data.face.facePoints = []; var _local1 = 0; while (_local1 < facePoints.length) { saveFile.data.face.facePoints.push([facePoints[_local1][0], facePoints[_local1][1]]); _local1++; } faceWindow.content.drawCenter.clear(); faceWindow.content.drawCenter.lineStyle(1, 16777215, 100); faceWindow.content.drawCenter.moveTo(facePoints[0][0], facePoints[0][1]); _local1 = 1; while (_local1 < facePoints.length) { faceWindow.content.drawCenter.lineTo(facePoints[_local1][0], facePoints[_local1][1]); _local1++; } } } } faceWindow.content.imageHolder._x = centerX + faceX; faceWindow.content.imageHolder._y = centerX + faceY; faceWindow.content.imageHolder._xscale = faceZ; faceWindow.content.imageHolder._yscale = faceZ; faceWindow.content.imageHolder._rotation = faceR; } if (windows.itemStoreOpen) { if (!itemsDoFirst) { listenItemStoreList = {}; listenItemStoreList.change = function () { itemStoreWindow.content.typeBox.text = itemStoreWindow.content.inStockList.selectedItem.type; itemStoreWindow.content.costBox.text = "$" + itemStoreWindow.content.inStockList.selectedItem.price; }; itemStoreWindow.content.inStockList.addEventListener("change", listenItemStoreList); buyButton.toggle = false; listenItemBuyButton = {}; listenItemBuyButton.click = function () { if (itemStoreWindow.content.inStockList.selectedIndex != undefined) { var _local1 = theItems[itemStoreWindow.content.inStockList.selectedItem.id]; if (cash >= _local1.price) { infopost("User has bought item: " + _local1.label); cash = cash - _local1.price; _local1.have = true; compileItems(); saveItems(); itemListNeedsRebuilt = true; playSound("register", 100); itemStoreWindow.content.typeBox.text = ""; itemStoreWindow.content.costBox.text = ""; } else { mx.controls.Alert.show("Not enough money. ", "Sorry"); beep(); } } else { mx.controls.Alert.show("Please select an item. ", "Notice"); beep(); } }; itemStoreWindow.content.buyButton.addEventListener("click", listenItemBuyButton); itemsDoFirst = true; } if (itemListNeedsRebuilt) { itemStoreList = []; var _local2 = 0; for (var _local1 in theItems) { if (theItems[_local1].menu == "Items") { itemStoreList[_local2] = theItems[_local1]; _local2++; } } itemStoreWindow.content.inStockList.dataProvider = itemStoreList; var _local3 = itemStoreWindow.content.inStockList.dataProvider.length; var _local1 = 0; while (_local1 < _local3) { if (itemStoreWindow.content.inStockList.dataProvider[_local1].have) { itemStoreWindow.content.inStockList.dataProvider.removeItemAt(_local1); _local1--; _local3--; } _local1++; } itemListNeedsRebuilt = false; } } if (windows.modeStoreOpen) { if (!modesDoFirst) { listenModeStoreList = {}; listenModeStoreList.change = function () { modeStoreWindow.content.costBox.text = "$" + modeStoreWindow.content.inStockList.selectedItem.price; }; modeStoreWindow.content.inStockList.addEventListener("change", listenModeStoreList); buyButton.toggle = false; listenModeBuyButton = {}; listenModeBuyButton.click = function () { if (modeStoreWindow.content.inStockList.selectedIndex != undefined) { var _local1 = theItems[modeStoreWindow.content.inStockList.selectedItem.id]; if (cash >= _local1.price) { infopost("User has bought mode: " + _local1.label); cash = cash - _local1.price; _local1.have = true; compileModes(); saveItems(); modeListNeedsRebuilt = true; playSound("register", 100); modeStoreWindow.content.costBox.text = ""; } else { mx.controls.Alert.show("Not enough money. ", "Sorry"); beep(); } } else { mx.controls.Alert.show("Please select a mode. ", "Notice"); beep(); } }; modeStoreWindow.content.buyButton.addEventListener("click", listenModeBuyButton); modesDoFirst = true; } if (modeListNeedsRebuilt) { modeStoreList = []; var _local2 = 0; for (var _local1 in theItems) { if (theItems[_local1].menu == "Modes") { modeStoreList[_local2] = theItems[_local1]; _local2++; } } modeStoreWindow.content.inStockList.dataProvider = modeStoreList; var _local3 = modeStoreWindow.content.inStockList.dataProvider.length; var _local1 = 0; while (_local1 < _local3) { if (modeStoreWindow.content.inStockList.dataProvider[_local1].have) { modeStoreWindow.content.inStockList.dataProvider.removeItemAt(_local1); _local1--; _local3--; } _local1++; } modeListNeedsRebuilt = false; } } if (windows.skinStoreOpen) { if (!skinsDoFirst) { skinStoreWindow.content.skinShow._visible = false; listenSkinStoreList = {}; listenSkinStoreList.change = function () { skinStoreWindow.content.costBox.text = "$" + skinStoreWindow.content.inStockList.selectedItem.price; skinStoreWindow.content.skinShow._visible = true; skinStoreWindow.content.skinShow.gotoAndStop(skinStoreWindow.content.inStockList.selectedItem.type); }; skinStoreWindow.content.inStockList.addEventListener("change", listenSkinStoreList); buyButton.toggle = false; listenSkinBuyButton = {}; listenSkinBuyButton.click = function () { if (skinStoreWindow.content.inStockList.selectedIndex != undefined) { var _local1 = theItems[skinStoreWindow.content.inStockList.selectedItem.id]; if (cash >= _local1.price) { infopost("User has bought skin " + _local1.label); cash = cash - _local1.price; _local1.have = true; compileSkins(); saveItems(); skinListNeedsRebuilt = true; playSound("register", 100); skinStoreWindow.content.costBox.text = ""; } else { mx.controls.Alert.show("Not enough money. ", "Sorry"); beep(); } } else { mx.controls.Alert.show("Please select a skin. ", "Notice"); beep(); } }; skinStoreWindow.content.buyButton.addEventListener("click", listenSkinBuyButton); skinsDoFirst = true; } if (skinListNeedsRebuilt) { skinStoreList = []; var _local2 = 0; for (var _local1 in theItems) { if (theItems[_local1].menu == "Skins") { skinStoreList[_local2] = theItems[_local1]; _local2++; } } skinStoreWindow.content.inStockList.dataProvider = skinStoreList; var _local3 = skinStoreWindow.content.inStockList.dataProvider.length; var _local1 = 0; while (_local1 < _local3) { if (skinStoreWindow.content.inStockList.dataProvider[_local1].have) { skinStoreWindow.content.inStockList.dataProvider.removeItemAt(_local1); _local1--; _local3--; } _local1++; } skinListNeedsRebuilt = false; } } if (windows.physicsTweekOpen) { if (!physicsTweekDoFirst) { listenObjectStepper = {}; listenObjectStepper.change = function (evt) { numberOfObjects = evt.target.value; saveFile.data.options.numberOfObjects = evt.target.value; killObjects(); }; listenQualCombo = {}; listenQualCombo.change = function (evt) { physicsQuality = evt.target.value; saveFile.data.options.physicsQuality = evt.target.value; }; physicsTweekWindow.content.objectStepper.addEventListener("change", listenObjectStepper); physicsTweekWindow.content.qualCombo.addEventListener("change", listenQualCombo); physicsTweekWindow.content.objectStepper.value = numberOfObjects; var _local5 = 0; if (physicsQuality == "Minimum") { _local5 = 0; } else if (physicsQuality == "Half") { _local5 = 1; } else if (physicsQuality == "Full") { _local5 = 2; } physicsTweekWindow.content.qualCombo.selectedIndex = _local5; physicsTweekDoFirst = true; } } } function compileItems() { bar.item.removeAll(); userItemMenus = []; itemsWeGot = []; menusToAdd = []; var _local4 = 0; while (_local4 < theItems.length) { if (theItems[_local4].have && (theItems[_local4].menu == "Items")) { var _local1 = false; for (var _local3 in itemsWeGot) { if (theItems[_local4].type == itemsWeGot[_local3]) { _local1 = true; } } if (!_local1) { itemsWeGot.push(theItems[_local4].type); } } _local4++; } itemsWeGot.sort(); _local4 = 0; while (_local4 < itemsWeGot.length) { userItemMenus[_local4] = bar.item.addMenuItem({label:itemsWeGot[_local4], instanceName:itemsWeGot[_local4]}); _local4++; } for (_local4 in theItems) { if (theItems[_local4].have && (theItems[_local4].menu == "Items")) { bar.item[theItems[_local4].type].addMenuItem({label:theItems[_local4].label, type:"radio", groupName:"itemGroup", instanceName:theItems[_local4].label}); } } bar.item.addMenuItem({label:"Buy New Items...", type:"normal", instanceName:"buyNewItems"}); } function compileSkins() { bar.skins.removeAll(); var _local1 = 0; while (_local1 < theItems.length) { if (theItems[_local1].have && (theItems[_local1].menu == "Skins")) { bar.skins.addMenuItem({label:theItems[_local1].label, type:"radio", groupName:"skinGroup", instanceName:theItems[_local1].label}); } _local1++; } bar.skins.addMenuItem({label:"Buy New Skins...", type:"normal", instanceName:"buyNewSkins"}); } function compileModes() { bar.modes.removeAll(); var _local1 = 0; while (_local1 < theItems.length) { if (theItems[_local1].have && (theItems[_local1].menu == "Modes")) { if (theItems[_local1].label == "Scripting Engine Access...") { bar.modes.addMenuItem({label:theItems[_local1].label, type:"normal", groupName:"modeGroup" + _local1, instanceName:theItems[_local1].label, selected:modeContainer[theItems[_local1].type]}); } else if (theItems[_local1].label == "Custom Face...") { bar.modes.addMenuItem({label:theItems[_local1].label, type:"normal", groupName:"modeGroup" + _local1, instanceName:theItems[_local1].label, selected:modeContainer[theItems[_local1].type]}); } else { bar.modes.addMenuItem({label:theItems[_local1].label, type:"check", groupName:"modeGroup" + _local1, instanceName:theItems[_local1].label, selected:modeContainer[theItems[_local1].type]}); } } _local1++; } bar.modes.addMenuItem({label:"Buy New Modes...", type:"normal", instanceName:"buyNewModes"}); } function setSkin(ss) { infopost("User set skin to: " + ss); if (ss == "defaultng") { ss = "default"; } if ((ss == "default") && (newgroundsVersion)) { ss = "defaultng"; } skin = ss; body.gotoAndStop(ss); head.gotoAndStop(ss); lArm.gotoAndStop(ss); rArm.gotoAndStop(ss); lLeg.gotoAndStop(ss); rLeg.gotoAndStop(ss); switch (skin) { case "default" : skinColors.chead = 16777215 /* 0xFFFFFF */; skinColors.cbody = 16777215 /* 0xFFFFFF */; skinColors.crArm = 16777215 /* 0xFFFFFF */; skinColors.clArm = 16777215 /* 0xFFFFFF */; skinColors.crLeg = 16777215 /* 0xFFFFFF */; skinColors.clLeg = 16777215 /* 0xFFFFFF */; break; case "defaultng" : skinColors.chead = 2105344 /* 0x202000 */; skinColors.cbody = 2105344 /* 0x202000 */; skinColors.crArm = 2105344 /* 0x202000 */; skinColors.clArm = 2105344 /* 0x202000 */; skinColors.crLeg = 2105344 /* 0x202000 */; skinColors.clLeg = 2105344 /* 0x202000 */; break; case "teletubby" : skinColors.chead = 4202640 /* 0x402090 */; skinColors.cbody = 2097264 /* 0x200070 */; skinColors.crArm = 2097264 /* 0x200070 */; skinColors.clArm = 2097264 /* 0x200070 */; skinColors.crLeg = 2097264 /* 0x200070 */; skinColors.clLeg = 2097264 /* 0x200070 */; break; case "insider" : skinColors.chead = 10519654 /* 0xA08466 */; skinColors.cbody = 112; skinColors.crArm = 10519654 /* 0xA08466 */; skinColors.clArm = 10519654 /* 0xA08466 */; skinColors.crLeg = 2097264 /* 0x200070 */; skinColors.clLeg = 2105376 /* 0x202020 */; break; case "pirate" : skinColors.chead = 16777215 /* 0xFFFFFF */; skinColors.cbody = 16777215 /* 0xFFFFFF */; skinColors.crArm = 16777215 /* 0xFFFFFF */; skinColors.clArm = 16777215 /* 0xFFFFFF */; skinColors.crLeg = 16777215 /* 0xFFFFFF */; skinColors.clLeg = 16777215 /* 0xFFFFFF */; break; case "goth" : skinColors.chead = 16777215 /* 0xFFFFFF */; skinColors.cbody = 0; skinColors.crArm = 16777215 /* 0xFFFFFF */; skinColors.clArm = 16777215 /* 0xFFFFFF */; skinColors.crLeg = 0; skinColors.clLeg = 0; break; case "strawberry" : skinColors.chead = 0; skinColors.cbody = 16711680 /* 0xFF0000 */; skinColors.crArm = 0; skinColors.clArm = 0; skinColors.crLeg = 0; skinColors.clLeg = 0; break; case "raspberry" : skinColors.chead = 0; skinColors.cbody = 11796504 /* 0xB40018 */; skinColors.crArm = 0; skinColors.clArm = 0; skinColors.crLeg = 0; skinColors.clLeg = 0; break; case "rep" : skinColors.chead = 6051654 /* 0x5C5746 */; skinColors.cbody = 0; skinColors.crArm = 10262392 /* 0x9C9778 */; skinColors.clArm = 10262392 /* 0x9C9778 */; skinColors.crLeg = 4202512 /* 0x402010 */; skinColors.clLeg = 4202512 /* 0x402010 */; break; case "dem" : skinColors.chead = 6047542 /* 0x5C4736 */; skinColors.cbody = 0; skinColors.crArm = 10651482 /* 0xA2875A */; skinColors.clArm = 10651482 /* 0xA2875A */; skinColors.crLeg = 4202512 /* 0x402010 */; skinColors.clLeg = 4202512 /* 0x402010 */; break; case "baby" : skinColors.chead = 6051654 /* 0x5C5746 */; skinColors.cbody = 3683112 /* 0x383328 */; skinColors.crArm = 10262392 /* 0x9C9778 */; skinColors.clArm = 10262392 /* 0x9C9778 */; skinColors.crLeg = 4202512 /* 0x402010 */; skinColors.clLeg = 4202512 /* 0x402010 */; break; case "gates" : skinColors.chead = 6051654 /* 0x5C5746 */; skinColors.cbody = 15790320 /* 0xF0F0F0 */; skinColors.crArm = 10262392 /* 0x9C9778 */; skinColors.clArm = 10262392 /* 0x9C9778 */; skinColors.crLeg = 4202512 /* 0x402010 */; skinColors.clLeg = 4202512 /* 0x402010 */; break; case "tom" : skinColors.chead = 16773344 /* 0xFFF0E0 */; skinColors.cbody = 3158016 /* 0x303000 */; skinColors.crArm = 16773344 /* 0xFFF0E0 */; skinColors.clArm = 16773344 /* 0xFFF0E0 */; skinColors.crLeg = 4202512 /* 0x402010 */; skinColors.clLeg = 4202512 /* 0x402010 */; break; case "nap" : skinColors.chead = 16773344 /* 0xFFF0E0 */; skinColors.cbody = 16777215 /* 0xFFFFFF */; skinColors.crArm = 16773344 /* 0xFFF0E0 */; skinColors.clArm = 16773344 /* 0xFFF0E0 */; skinColors.crLeg = 0; skinColors.clLeg = 0; } } function initMenu() { bar = {}; listenStats = new Object(); listenStats.change = function (evt) { if (evt.menuItem.attributes.label == "Stats...") { if (!windows.statsOpen) { infopost("User opened Stats window."); listenStats = {}; listenStats.click = function () { statsWindow.deletePopUp(); windows.statsOpen = false; }; listenStats.complete = function () { statsWindow.visible = true; }; statsWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"stats_mc", title:"Stats", closeButton:true}); statsWindow.visible = false; statsWindow.setSize(250, 300); statsWindow.addEventListener("click", listenStats); statsWindow.addEventListener("complete", listenStats); statsDoFirst = false; } statsWindow.move(150, 50); windows.statsOpen = true; } else if (evt.menuItem.attributes.label == "Clear File...") { warnHandle = function (det) { if (det.detail == mx.controls.Alert.YES) { newSaveFile(); flashMessage("Save File Reset", 85); } windows.clearWarningOpen = false; }; windows.clearWarningOpen = true; mx.controls.Alert.show("Reset everything? ", "Warning!", mx.controls.Alert.YES | mx.controls.Alert.CANCEL, null, warnHandle, "exclamation"); beep(); } }; listenStats.menuShow = function () { listenStats.unrolled = true; }; listenStats.menuHide = function () { listenStats.unrolled = false; }; bar.file = topBar.addMenu("File"); bar.file.addEventListener("change", listenStats); bar.file.addEventListener("menuShow", listenStats); bar.file.addEventListener("menuHide", listenStats); bar.file.addMenuItem({label:"Stats...", instanceName:"userStats"}); bar.file.addMenuItem({label:"Clear File...", instanceName:"createNewFile"}); listenSkins = new Object(); listenSkins.change = function (evt) { if (evt.menuItem.attributes.label != "Buy New Skins...") { if (evt.menuItem.attributes.label == "Create Custom Skins...") { if (!windows.customSkinOpen) { listenCustomSkin = {}; listenCustomSkin.click = function () { customSkinWindow.deletePopUp(); windows.customSkinOpen = false; }; listenCustomSkin.complete = function () { customSkinWindow.visible = true; }; customSkinWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"customSkin_mc", title:"Custom Skin Creator", closeButton:true}); customSkinWindow.visible = false; customSkinWindow.setSize(400, 350); customSkinWindow.addEventListener("click", listenCustomSkin); customSkinWindow.addEventListener("complete", listenCustomSkin); customSkinsDoFirst = false; windows.customSkinOpen = true; } customSkinWindow.move(75, 30); } else { for (var _local3 in theItems) { if (theItems[_local3].label == evt.menuItem.attributes.label) { setSkin(theItems[_local3].type); bubble.time = 0; } } } } else { if (!windows.skinStoreOpen) { listenSkinStore = {}; listenSkinStore.click = function () { skinStoreWindow.deletePopUp(); windows.skinStoreOpen = false; }; listenSkinStore.complete = function () { skinStoreWindow.visible = true; }; skinStoreWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"skinStore_mc", title:"Skin Store", closeButton:true}); skinStoreWindow.visible = false; skinStoreWindow.setSize(250, 335); skinStoreWindow.addEventListener("click", listenSkinStore); skinStoreWindow.addEventListener("complete", listenSkinStore); skinsDoFirst = false; skinListNeedsRebuilt = true; windows.skinStoreOpen = true; } skinStoreWindow.move(150, 40); } }; listenSkins.menuShow = function () { listenSkins.unrolled = true; }; listenSkins.menuHide = function () { listenSkins.unrolled = false; }; bar.skins = topBar.addMenu("Skins"); bar.skins.addEventListener("change", listenSkins); bar.skins.addEventListener("menuShow", listenSkins); bar.skins.addEventListener("menuHide", listenSkins); compileSkins(); listenItem = new Object(); listenItem.change = function (evt) { if (evt.menuItem.attributes.label != "Buy New Items...") { item = evt.menuItem.attributes.label; infopost("User changed item to: " + item); } else { if (!windows.itemStoreOpen) { listenItemStore = {}; listenItemStore.click = function () { itemStoreWindow.deletePopUp(); windows.itemStoreOpen = false; }; listenItemStore.complete = function () { itemStoreWindow.visible = true; }; itemStoreWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"itemStore_mc", title:"Item Store", closeButton:true}); itemStoreWindow.visible = false; itemStoreWindow.setSize(250, 335); itemStoreWindow.addEventListener("click", listenItemStore); itemStoreWindow.addEventListener("complete", listenItemStore); itemsDoFirst = false; itemListNeedsRebuilt = true; windows.itemStoreOpen = true; } itemStoreWindow.move(150, 40); } }; listenItem.menuShow = function () { listenItem.unrolled = true; }; listenItem.menuHide = function () { listenItem.unrolled = false; }; bar.item = topBar.addMenu("Items"); bar.item.addEventListener("change", listenItem); bar.item.addEventListener("menuShow", listenItem); bar.item.addEventListener("menuHide", listenItem); compileItems(); listenMode = new Object(); listenMode.change = function (evt) { if (evt.menuItem.attributes.label != "Buy New Modes...") { if (evt.menuItem.attributes.label == "Custom Face...") { infopost("User opened custom face."); if (!windows.faceOpen) { listenFace = {}; listenFace.click = function () { faceWindow.deletePopUp(); windows.faceOpen = false; }; listenFace.complete = function () { faceWindow.visible = true; }; faceWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"customFace_mc", title:"Custom Face", closeButton:true}); faceWindow.visible = false; faceWindow.setSize(406, 298); faceWindow.addEventListener("click", listenFace); faceWindow.addEventListener("complete", listenFace); faceDoFirst = false; windows.faceOpen = true; } faceWindow.move(22, 30); } else if (evt.menuItem.attributes.label == "Scripting Engine Access...") { infopost("User opened scripting engine."); if (!windows.scriptOpen) { listenScript = {}; listenScript.click = function () { scriptWindow.deletePopUp(); windows.scriptOpen = false; }; listenScript.complete = function () { scriptWindow.visible = true; }; scriptWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"script_mc", title:"ShockScript Scripting Engine", closeButton:true}); scriptWindow.visible = false; scriptWindow.setSize(506, 354); scriptWindow.addEventListener("click", listenScript); scriptWindow.addEventListener("complete", listenScript); scriptDoFirst = false; windows.scriptOpen = true; } scriptWindow.move(22, 30); } else { for (var _local3 in theItems) { if (theItems[_local3].menu == "Modes") { if (evt.menuItem.attributes.label == theItems[_local3].label) { modeContainer[theItems[_local3].type] = !modeContainer[theItems[_local3].type]; if (modeContainer[theItems[_local3].type]) { infopost("User turned on mode: " + theItems[_local3].label); } else { infopost("User turned off mode: " + theItems[_local3].label); } break; } } } } } else { if (!windows.modeStoreOpen) { listenModeStore = {}; listenModeStore.click = function () { modeStoreWindow.deletePopUp(); windows.modeStoreOpen = false; }; listenModeStore.complete = function () { modeStoreWindow.visible = true; }; modeStoreWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"modeStore_mc", title:"Mode Store", closeButton:true}); modeStoreWindow.visible = false; modeStoreWindow.setSize(250, 315); modeStoreWindow.addEventListener("click", listenModeStore); modeStoreWindow.addEventListener("complete", listenModeStore); modesDoFirst = false; modeListNeedsRebuilt = true; windows.modeStoreOpen = true; } modeStoreWindow.move(150, 50); } }; listenMode.menuShow = function () { listenMode.unrolled = true; }; listenMode.menuHide = function () { listenMode.unrolled = false; }; bar.modes = topBar.addMenu("Modes"); bar.modes.addEventListener("change", listenMode); bar.modes.addEventListener("menuShow", listenMode); bar.modes.addEventListener("menuHide", listenMode); compileModes(); listenSettings = new Object(); listenSettings.change = function (evt) { switch (evt.menuItem.attributes.instanceName) { case "lowQual" : _quality = "LOW"; saveFile.data.options.aaQuality = _quality; break; case "medQual" : _quality = "MEDIUM"; saveFile.data.options.aaQuality = _quality; break; case "highQual" : _quality = "HIGH"; saveFile.data.options.aaQuality = _quality; break; case "lowFX" : gQuality = 0; saveFile.data.options.gQuality = gQuality; break; case "medFX" : gQuality = 1; saveFile.data.options.gQuality = gQuality; break; case "highFX" : gQuality = 2; saveFile.data.options.gQuality = gQuality; break; case "highBlur" : blurLevel = 2; saveFile.data.options.blurLevel = blurLevel; break; case "medBlur" : blurLevel = 1; saveFile.data.options.blurLevel = blurLevel; break; case "noBlur" : blurLevel = 0; saveFile.data.options.blurLevel = blurLevel; break; case "soundEnabled" : soundOn = evt.menuItem.attributes.selected; saveFile.data.options.soundEnabled = soundOn; break; case "physicsTweek" : if (!windows.physicsTweekOpen) { listenPhysicsTweek = {}; listenPhysicsTweek.click = function () { physicsTweekWindow.deletePopUp(); windows.physicsTweekOpen = false; }; listenPhysicsTweek.complete = function () { physicsTweekWindow.visible = true; }; physicsTweekWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"physicsTweek_mc", title:"Physics Tweek", closeButton:true}); physicsTweekWindow.visible = false; physicsTweekWindow.setSize(225, 133); physicsTweekWindow.addEventListener("click", listenPhysicsTweek); physicsTweekWindow.addEventListener("complete", listenPhysicsTweek); physicsTweekDoFirst = false; windows.physicsTweekOpen = true; } physicsTweekWindow.move(170, 140); } }; listenSettings.menuShow = function () { listenSettings.unrolled = true; }; listenSettings.menuHide = function () { listenSettings.unrolled = false; }; bar.settings = topBar.addMenu("Settings"); bar.settings.addEventListener("change", listenSettings); bar.settings.addEventListener("menuShow", listenSettings); bar.settings.addEventListener("menuHide", listenSettings); bar.settings.addMenuItem({label:"Anti-Aliasing", instanceName:"qualityMenu"}); bar.settings.qualityMenu.addMenuItem({label:"Low", type:"radio", selected:_quality == "LOW", instanceName:"lowQual", groupName:"qualGroup"}); bar.settings.qualityMenu.addMenuItem({label:"Medium", type:"radio", selected:_quality == "MEDIUM", instanceName:"medQual", groupName:"qualGroup"}); bar.settings.qualityMenu.addMenuItem({label:"High", type:"radio", selected:_quality == "HIGH", instanceName:"highQual", groupName:"qualGroup"}); bar.settings.addMenuItem({label:"Effects", instanceName:"effectsMenu"}); bar.settings.effectsMenu.addMenuItem({label:"Low", type:"radio", selected:gQuality == 0, instanceName:"lowFX", groupName:"fxGroup"}); bar.settings.effectsMenu.addMenuItem({label:"Medium", type:"radio", selected:gQuality == 1, instanceName:"medFX", groupName:"fxGroup"}); bar.settings.effectsMenu.addMenuItem({label:"High", type:"radio", selected:gQuality == 2, instanceName:"highFX", groupName:"fxGroup"}); bar.settings.addMenuItem({label:"Motion Blur", instanceName:"blurMenu"}); bar.settings.blurMenu.addMenuItem({label:"None", type:"radio", selected:blurLevel == 0, instanceName:"noBlur", groupName:"blurGroup"}); bar.settings.blurMenu.addMenuItem({label:"Weak", type:"radio", selected:blurLevel == 1, instanceName:"medBlur", groupName:"blurGroup"}); bar.settings.blurMenu.addMenuItem({label:"Strong", type:"radio", selected:blurLevel == 2, instanceName:"highBlur", groupName:"blurGroup"}); bar.settings.addMenuItem({label:"Physics...", instanceName:"physicsTweek"}); bar.settings.addMenuItem({label:"Sound Enabled", type:"check", instanceName:"soundEnabled", selected:soundOn}); listenHelp = new Object(); listenHelp.change = function (evt) { switch (evt.menuItem.attributes.instanceName) { case "help" : if (!windows.helpOpen) { infopost("User opened Help window."); listenHelp = {}; listenHelp.click = function () { helpWindow.deletePopUp(); windows.helpOpen = false; }; listenHelp.complete = function () { helpWindow.visible = true; }; helpWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"text_mc", title:"Help", closeButton:true}); helpWindow.visible = false; helpWindow.setSize(350, 350); helpWindow.addEventListener("click", listenHelp); helpWindow.addEventListener("complete", listenHelp); helpWindow.txt = helpText; helpDoFirst = false; } helpWindow.move(100, 35); windows.helpOpen = true; break; case "updates" : if (!windows.updatesOpen) { infopost("User opened Updates window."); listenUpdates = {}; listenUpdates.click = function () { updatesWindow.deletePopUp(); windows.updatesOpen = false; }; listenUpdates.complete = function () { updatesWindow.visible = true; }; updatesWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"text_mc", title:"What's New?", closeButton:true}); updatesWindow.visible = false; updatesWindow.setSize(350, 350); updatesWindow.addEventListener("click", listenUpdates); updatesWindow.addEventListener("complete", listenUpdates); updatesWindow.txt = updatesText; updatesDoFirst = false; } updatesWindow.move(100, 35); windows.updatesOpen = true; break; case "about" : if (!windows.aboutOpen) { infopost("User opened About window."); listenAbout = {}; listenAbout.click = function () { aboutWindow.deletePopUp(); windows.aboutOpen = false; }; listenAbout.complete = function () { aboutWindow.visible = true; }; aboutWindow = mx.managers.PopUpManager.createPopUp(_root, mx.containers.Window, false, {contentPath:"about_mc", title:"About", closeButton:true}); aboutWindow.visible = false; aboutWindow.setSize(250, 200); aboutWindow.addEventListener("click", listenAbout); aboutWindow.addEventListener("complete", listenAbout); aboutDoFirst = false; } aboutWindow.move(150, 100); windows.aboutOpen = true; } }; listenHelp.menuShow = function () { listenHelp.unrolled = true; }; listenHelp.menuHide = function () { listenHelp.unrolled = false; }; bar.help = topBar.addMenu("Help"); bar.help.addEventListener("change", listenHelp); bar.help.addEventListener("menuShow", listenHelp); bar.help.addEventListener("menuHide", listenHelp); bar.help.addMenuItem({label:"Help....", instanceName:"help"}); bar.help.addMenuItem({label:"What's New?....", instanceName:"updates"}); bar.help.addMenuItem({label:"About...", instanceName:"about"}); } function initBG() { bgColor = new Color(_root.bg); bgColorTrans = new Object(); setBG(bgRed, bgGreen, bgBlue); } function setBG(red, green, blue) { bgColorTrans.ra = (red / 256) * 100; bgColorTrans.ga = (green / 256) * 100; bgColorTrans.ba = (blue / 256) * 100; bgColorTrans.rb = 0; bgColorTrans.gb = 0; bgColorTrans.bb = 0; bgColorTrans.aa = 100; bgColorTrans.ab = 0; bgColor.setTransform(bgColorTrans); } function initLayers() { _root.particles._x = (_root.particles._y = 0); _root.drawing._x = (_root.drawing._y = 0); _root.objects._x = (_root.objects._y = 0); _root.lowDrawing._x = (_root.lowDrawing._y = 0); particles.x = particles._x; particles.y = particles._y; drawing.x = drawing._x; drawing.y = drawing._y; objects.x = objects._x; objects.y = objects._y; lowDrawing.x = lowDrawing._x; lowDrawing.y = lowDrawing._y; border.x = border._x; border.y = border._y; bg.x = bg._x; bg.y = bg._y; dep = 800; } function playSound(nam, vol) { if (soundOn) { soundNum++; soundNum = soundNum % numSoundChan; _root["sound" + (soundNum + 1)].soundSpot.attachSound(nam); _root["sound" + (soundNum + 1)].soundSpot.setVolume(vol); _root["sound" + (soundNum + 1)].soundSpot.start(); } } function speak(nam, vol) { if (_root.awake && (_root.soundOn)) { _root.soundSpeech.soundSpot.stop(); _root.talking = true; _root.soundSpeech.soundSpot.onSoundComplete = function () { _root.talking = false; }; _root.soundSpeech.soundSpot.attachSound(nam); _root.soundSpeech.soundSpot.setVolume(vol); _root.soundSpeech.soundSpot.start(0, 1); } } function punchSound(vol, scale) { vol = Math.max(vol, 0); if (punchTime > 5) { punchTime = 0; var _local3 = Math.ceil(Math.random() * 2); var _local2 = Math.ceil(Math.random() * 2) + 2; playSound("punch" + _local3, vol); if (!explosionItem) { playSound("punch" + _local2, (vol * 0.5) * scale); } } } function initSound() { soundNum = 0; var _local2 = 1; while (_local2 < (numSoundChan + 1)) { _root.createEmptyMovieClip("sound" + _local2, _local2 + 9000); _root["sound" + _local2].soundSpot = new Sound(_root["sound" + _local2]); _local2++; } _root.createEmptyMovieClip("soundMusic", 9010); _root.createEmptyMovieClip("soundSpeech", 9011); _root.soundMusic.soundSpot = new Sound(_root.soundMusic); _root.soundSpeech.soundSpot = new Sound(_root.soundSpeech); } function playMusic(snd, pan, vol) { if ((!playingMusic) || (snd != currentTrack)) { stopMusic(); _root.soundMusic.soundSpot.attachSound(snd); _root.soundMusic.soundSpot.start(0, 5000000); currentTrack = snd; } _root.soundMusic.soundSpot.setVolume(vol); _root.soundMusic.soundSpot.setPan(pan); playingMusic = true; } function stopMusic() { playingMusic = false; _root.soundMusic.soundSpot.stop(); } function makeExplosion(x, y, sc) { playSound("explosion", 75); var _local7 = Math.min(Math.floor((((y - 350) * gQuality) * sc) / 0.85), 60); var _local5 = 0; while (_local5 < _local7) { if (Math.random() > 0.5) { debris(x, y, (Math.random() * 30) - 15, (Math.random() * 30) - 15, (Math.random() * 0.75) + 0.1, false, 15 + (Math.random() * 10)); } else { debris(x, y, (Math.random() * 15) - 7.5, ((-Math.random()) * 50) - 15, (Math.random() * 0.5) + 0.1, false, 25 + (Math.random() * 20)); } _local5++; } _local5 = 0; while (_local5 < 3) { dep++; if (modeContainer.pyroMode) { particles.attachMovie("circleFire", "part" + dep, dep); } else if (gQuality == 2) { particles.attachMovie("grad", "part" + dep, dep); } else if (gQuality == 1) { particles.attachMovie("gradLow", "part" + dep, dep); } else { particles.attachMovie("circ", "part" + dep, dep); } pp = particles["part" + dep]; pp.x = x; pp.y = y; pp._alpha = 100; pp.rad = (Math.random() * 15) + 20; pp.grow = (Math.random() * 15) + 2; pp.xv = (Math.random() - 0.5) * pp.grow; pp.yv = (Math.random() - 0.5) * pp.grow; pp._xscale = pp.rad; pp._yscale = pp.rad; pp.sc = sc; pp.onEnterFrame = function () { if (!_root.pause) { this._alpha = this._alpha - Math.max(this.grow * 0.15, 1.3); this.x = this.x + (this.xv * this.sc); this.y = this.y + (this.yv * this.sc); this.rad = this.rad + this.grow; this._xscale = this.rad * this.sc; this._yscale = this.rad * this.sc; if (this._alpha <= 0) { this.removeMovieClip(this); } this._x = _root.lag(this.x); this._y = _root.lag(this.y); } }; _local5++; } _local5 = 0; while (_local5 < 3) { dep++; if (modeContainer.pyroMode) { particles.attachMovie("circleFire", "part" + dep, dep); } else if (gQuality > 0) { particles.attachMovie("grad", "part" + dep, dep); } else { particles.attachMovie("circ", "part" + dep, dep); } pp = particles["part" + dep]; pp.x = x; pp.y = y; pp._alpha = 100; pp.rad = (Math.random() * 15) + 20; pp.grow = (Math.random() * 2) + 1; pp.xv = (Math.random() - 0.5) * pp.grow; pp.yv = (Math.random() - 0.5) * pp.grow; pp._xscale = pp.rad; pp._yscale = pp.rad; pp.sc = sc; pp.onEnterFrame = function () { if (!_root.pause) { this._alpha = this._alpha - Math.max(this.grow * 0.5, 1.3); this.x = this.x + (this.xv * this.sc); this.y = this.y + (this.yv * this.sc); this.rad = this.rad + this.grow; this._xscale = this.rad * this.sc; this._yscale = this.rad * this.sc; if (this._alpha <= 0) { this.removeMovieClip(this); } this._x = _root.lag(this.x); this._y = _root.lag(this.y); } }; _local5++; } _local5 = 0; while (_local5 < (3 + gQuality)) { dep++; if (modeContainer.pyroMode) { particles.attachMovie("circleFire", "part" + dep, dep); } else if (gQuality == 2) { particles.attachMovie("grad", "part" + dep, dep); } else if (gQuality == 1) { particles.attachMovie("gradLow", "part" + dep, dep); } else { particles.attachMovie("circ", "part" + dep, dep); } pp = particles["part" + dep]; pp.x = x; pp.y = y; pp._alpha = 100; pp.rad = (Math.random() * 15) + 20; pp.grow = (Math.random() * 80) + 20; pp.xv = (Math.random() - 0.5) * pp.grow; pp.yv = (Math.random() - 0.5) * pp.grow; pp._xscale = pp.rad; pp._yscale = pp.rad; pp.sc = sc; pp.onEnterFrame = function () { if (!_root.pause) { this._alpha = this._alpha - Math.max(this.grow * 0.15, 0.5); this.x = this.x + (this.xv * this.sc); this.y = this.y + (this.yv * this.sc); this.rad = this.rad + this.grow; this._xscale = this.rad * this.sc; this._yscale = this.rad * this.sc; if (this._alpha <= 0) { this.removeMovieClip(this); } this._x = _root.lag(this.x); this._y = _root.lag(this.y); } }; _local5++; } } function explode(x, y, sc) { exploded = true; explodex = x; explodey = y; explodep = sc; expLight(x, y, sc); shake = shake + (sc * 35); if (timeSinceComment("explosion") > 1500) { say("explosion", 160); } explodeTimer = 4; makeExplosion(x, y, sc); for (var _local8 in objectList) { if (objectList[_local8].group != "buddy") { if (objectList[_local8].targ.objectType != "mine") { var _local2 = objectList[_local8].targ; var _local7 = _local2.x - x; var _local9 = _local2.y - y; var _local6 = ((Math.abs(Math.sqrt((_local7 * _local7) + (_local9 * _local9))) / sc) + (20 / sc)) - (sc * 20); var _local10 = Math.atan2(_local9, _local7); var _local11 = Math.max(Math.min((1000000 / (_local6 * _local6)) - 1, 150), 0); var _local12 = _local11 * Math.sin(_local10 - (Math.PI/2)); var _local13 = _local11 * (Math.cos(_local10 - (Math.PI/2)) - 0.075); _local2.xv = _local2.xv - _local12; _local2.yv = _local2.yv + _local13; } else { var _local2 = objectList[_local8].targ; var _local7 = _local2.x - x; var _local9 = _local2.y - y; var _local6 = ((Math.abs(Math.sqrt((_local7 * _local7) + (_local9 * _local9))) / sc) + (20 / sc)) - (sc * 20); if (_local6 < (sc * 100)) { _local2.holdExplode = true; } } } } var _local7 = body.x - x; var _local9 = body.y - y; var _local6 = ((Math.abs(Math.sqrt((_local7 * _local7) + (_local9 * _local9))) / sc) + (20 / sc)) - (sc * 20); var _local10 = Math.atan2(_local9, _local7); var _local11 = Math.max(Math.min((1000000 / (_local6 * _local6)) - 1, 150), 0); var _local12 = _local11 * Math.sin(_local10 - (Math.PI/2)); var _local13 = _local11 * Math.cos(_local10 - (Math.PI/2)); if (_local6 <= 100) { setModifier("out", 300); addCash(20 - (_local6 * 0.15)); addEmotion(-5); } else if (_local6 <= 200) { addEmotion(-2); addCash(20 - (_local6 * 0.15)); if (awake) { setModifier("scared", 300); } } rv = rv - (Math.min(20 / _local6, 0.75) * sign(_local7)); addVel(-_local12, _local13); var _local3 = 0; while (_local3 < Math.max(20 - (_local6 * 0.1), 0)) { genGore(body); _local3++; } } function idleAction() { idleTime++; if (grabTarget.objectType != "grenade") { var _local3 = -1; var _local2 = 1000; for (var _local4 in objectList) { if ((objectList[_local4].targ.objectType != "missile") && (!objectList[_local4].targ.special)) { if ((objectList[_local4].targ.objectType != "mine") && (objectList[_local4].targ.objectType != "fireball")) { if ((objectList[_local4].targ.objectType != "grenade") || (!noMoreGrenades)) { if ((((((Math.abs(objectList[_local4].targ.xv) >= 2) && (objectList[_local4].targ != grabTarget)) && (objectList[_local4].targ.y <= (Stage.height - 50))) && (objectList[_local4].targ.mass <= 0.35)) && (objectList[_local4].group != "buddy")) && (Math.sqrt((objectList[_local4].targ.xv * objectList[_local4].targ.xv) + (objectList[_local4].targ.yv * objectList[_local4].targ.yv)) < 15)) { var _local1 = distance(objectList[_local4].targ.x, objectList[_local4].targ.y, body.x, body.y); if (_local1 < _local2) { _local2 = _local1; _local3 = _local4; } } } } } } if (_local3 >= 0) { if ((theID != _local3) && (emotion > -80)) { stopGrabbing(); addAction("catch:" + _local3, 4); theID = _local3; } } else { for (var _local4 in objectList) { if ((((objectList[_local4].targ.objectType == "grenade") && (!noMoreGrenades)) && (objectList[_local4].targ.y > (Stage.height - 35))) && (!objectList[_local4].targ.special)) { stopGrabbing(); addAction("pickUp:" + _local4, 5); } } } } var _local7 = 2; var _local8 = Math.floor(Math.random() * _local7); if (idleTime > idleThreshold) { if ((emotion <= 20) && (emotion >= -20)) { say("idle", 175); } else if (emotion <= -80) { say("sad", 175); } else if (emotion >= 80) { if (Math.random() < 0.65) { say("happy", 175); } else if (Math.random() < 0.5) { putAction("flip", 6); notIdle(); } else { var _local5 = (Math.floor(Math.random() * 6) * 10) + 50; flashMessage(("The buddy has given you $" + _local5) + " because he is so happy.", 200); addCash(_local5); notIdle(); } } else if ((emotion < 80) && (emotion > 20)) { var _local6 = (emotion - 20) / 60; if (Math.random() > _local6) { say("idle", 175); } else { say("happy", 175); } } else if ((emotion > -80) && (emotion < -20)) { var _local6 = (-(emotion + 20)) / 60; if (Math.random() > _local6) { say("idle", 175); } else { say("sad", 175); } } } } function buddySay(useImage, contents, time) { if (useImage == "sound") { speak(contents, 100); } else if (useImage == "script") { executeScript(contents); } else { if (!((useImage == bubble.newUseImage) && (contents == bubble.newContents))) { bubble.newUseImage = useImage; bubble.newContents = contents; bubble.textChanged = true; } bubble.time = time; } } function getComment() { if (bubble.textChanged) { return(lastComment); } if (bubble._visible) { return(lastComment); } return(""); } function manageTalkBubble() { if (!awake) { bubble.time = 0; } bubble.targetAlpha = ((bubble.time > 0) ? 100 : -20); if (bubble.textChanged) { bubble.targetAlpha = -20; } bubble._alpha = bubble._alpha + (sign(bubble.targetAlpha - bubble._alpha) * 5); if (bubble._alpha >= 80) { head.mouth.gotoAndStop("talking"); } else { head.mouth.gotoAndStop("normal"); } bubble.time--; bubble.oRight = bubble.right; bubble.oUp = bubble.up; bubble.x = Math.min(Math.max((bubble._x * 0.875) + (head._x * 0.125), 20), Stage.width - 20); bubble.y = Math.min(Math.max((bubble._y * 0.875) + (head._y * 0.125), 20), Stage.height - 20); bubble._x = lag(bubble.x); bubble._y = lag(bubble.y); if (bubble._alpha <= 0) { bubble._visible = false; if (bubble.textChanged) { bubble.contents = bubble.newContents; bubble.useImage = bubble.newUseImage; bubble.changed = true; bubble.textChanged = false; } } else { bubble._visible = true; if (bubble._x < 185) { bubble.right = true; } else if (bubble._x > (Stage.width - 185)) { bubble.right = false; } if (bubble._y < 175) { bubble.up = false; } else if (bubble._y > (Stage.height - 165)) { bubble.up = true; } if (bubble.up) { if (bubble.right) { bubble.gotoAndStop("upRight"); } else { bubble.gotoAndStop("upLeft"); } } else if (bubble.right) { bubble.gotoAndStop("downRight"); } else { bubble.gotoAndStop("downLeft"); } if ((bubble.oRight != bubble.right) || (bubble.oUp != bubble.up)) { bubble.changed = true; } if (bubble.changed) { if (bubble.useImage) { bubble.image.theActualImage.removeMovieClip(); bubble.image.attachMovie(bubble.contents, "theActualImage", 10); bubble.txt.text = ""; } else { bubble.image.theActualImage.removeMovieClip(); bubble.txt.text = bubble.contents; } bubble.changed = false; } } } function addVel(xv, yv) { body.xv = body.xv + xv; body.yv = body.yv + yv; lArm.xv = lArm.xv + xv; lArm.yv = lArm.yv + yv; rArm.xv = rArm.xv + xv; rArm.yv = rArm.yv + yv; lLeg.xv = lLeg.xv + xv; lLeg.yv = lLeg.yv + yv; rLeg.xv = rLeg.xv + xv; rLeg.yv = rLeg.yv + yv; head.xv = head.xv + xv; head.yv = head.yv + yv; } function setVel(xv, yv) { body.xv = xv; body.yv = yv; lArm.xv = xv; lArm.yv = yv; rArm.xv = xv; rArm.yv = yv; lLeg.xv = xv; lLeg.yv = yv; rLeg.xv = xv; rLeg.yv = yv; head.xv = xv; head.yv = yv; } function initQueue() { queue = []; var _local1 = 0; while (_local1 < 9) { queue[_local1] = []; _local1++; } modifier = "normal"; modTime = 0; } function clearActions() { var _local1 = 0; while (_local1 < 9) { queue[_local1] = []; _local1++; } } function clamp(x, mn, mx) { return(Math.max(Math.min(x, mx), mn)); } function maintainModifier() { modTime = Math.max(modTime - 1, 0); if (!modTime) { modifier = "normal"; } } function setModifier(name, time) { modifier = name; modTime = time; } function getModifier() { return(modifier); } function getModTime() { return(modTime); } function addAction(name, value) { queue[value].push(name); } function putAction(newname, value) { name = queue[value][0]; ar = name.split(":"); ar2 = newname.split(":"); if (ar[0] == ar2[0]) { queue[value][0] = (ar[0] + ":") + Math.max(ar[1], ar2[1]); } else { addAction(newname, value); } } function getValueValue() { var _local1 = 9; while (_local1 >= 0) { name = queue[_local1][0]; if (name != null) { return(_local1); } _local1--; } return(0); } function getValueAction() { var _local1 = 9; while (_local1 >= 0) { name = queue[_local1][0]; if (name != null) { return(name); } _local1--; } return("none"); } function getValueActionName() { var _local1 = getValueAction().split(":"); return(_local1[0]); } function setValueAction(newname) { var _local1 = 9; while (_local1 >= 0) { name = queue[_local1][0]; if (name != null) { queue[_local1][0] = newname; return(true); } _local1--; } return(false); } function subtractValueAction(num) { ar = getValueAction().split(":"); ar[1] = String(Number(ar[1]) - num); if (ar[1] > 0) { setValueAction((ar[0] + ":") + ar[1]); } else { removeValueAction(); } } function parseAction(name) { ar = name.split(":"); switch (ar[0]) { case "none" : break; case "wait" : subtractValueAction(1); break; case "assign" : _root[ar[1]] = ar[2]; removeValueAction(); break; case "setModifier" : setModifier(ar[1], Number(ar[2])); removeValueAction(); break; case "dance" : if (onGround) { addEmotion(0.02); lLeg.xv = lLeg.xv + (Math.sin((time * Math.PI) * 0.1) * 1); lLeg.yv = lLeg.yv + (Math.cos((time * Math.PI) * 0.1) * 4); rLeg.xv = rLeg.xv + (Math.sin((time * Math.PI) * 0.1) * 1); rLeg.yv = rLeg.yv + (Math.cos(((time * Math.PI) * 0.1) + (Math.PI/2)) * 4); head.yv = head.yv + (Math.sin((time * Math.PI) * 0.025) * 3); lArm.xv = lArm.xv + (Math.sin((time * Math.PI) * 0.05) * 2); rArm.xv = rArm.xv + (Math.sin(((time * Math.PI) * 0.05) + (Math.PI/2)) * 2); if (specialVars.radio.onScreen) { if (Math.abs(body.x - specialVars.radio.targ.x) > 100) { body.xv = body.xv - sign(body.x - specialVars.radio.targ.x); } } } subtractValueAction(1); break; case "runFromMouse" : if (onGround) { if (body.x < 80) { walk(Math.max(sign(body.x - _axmouse), 0)); } else if (body.x > (Stage.width - 80)) { walk(Math.min(sign(body.x - _axmouse), 0)); } else { walk(sign(body.x - _axmouse)); } subtractValueAction(1); } break; case "burn" : if (((((head.onFire || (body.onFire)) || (lLeg.onFire)) || (rLeg.onFire)) || (rArm.onFire)) || (lArm.onFire)) { if (onGround) { run(paceDir); if (body.x > (Stage.width - 120)) { paceDir = -1; } else if (body.x < 120) { paceDir = 1; } if (Math.random() > 0.98) { jump(15 - (improvedPhysics * 7), paceDir * (40 - (improvedPhysics * 10))); } } if (timeSinceComment("burn") > (120 + ((skin == "nap") * 230))) { say("burn", 120); } } else { subtractValueAction(); } break; case "jumpUp" : if (jump(25, 0)) { removeValueAction(); } break; case "walkToMouse" : walk(sign(_axmouse - body.x)); subtractValueAction(1); break; case "walkToPoint" : var _local7 = Number(ar[1]); if (_local7 < 40) { _local7 = 40; } else if (_local7 > (Stage.width - 40)) { _local7 = Stage.width - 40; } if ((body.x < (_local7 - 10)) || (body.x > (_local7 + 10))) { walk(sign(_local7 - body.x)); } else { removeValueAction(); } break; case "runToPoint" : _local7 = Number(ar[1]); if (_local7 < 40) { _local7 = 40; } else if (_local7 > (Stage.width - 40)) { _local7 = Stage.width - 40; } if ((body.x < (_local7 - 10)) || (body.x > (_local7 + 10))) { run(sign(_local7 - body.x)); } else { removeValueAction(); } break; case "throw" : stopGrabbing(); removeValueAction(); break; case "pickUp" : _local7 = objectList[ar[1]].targ.x; var _local9 = rArm.x - objectList[ar[1]].targ.x; var _local8 = rArm.y - objectList[ar[1]].targ.y; var _local10 = Math.sqrt((_local9 * _local9) + (_local8 * _local8)); grabHand = rArm; if (_local10 <= 60) { grabbing = true; grabTarget = objectList[ar[1]].targ; grabTarget.x = (grabTarget.x * 0.9) + (grabHand.x * 0.1); grabTarget.y = (grabTarget.y * 0.9) + (grabHand.y * 0.1); if (_local10 <= 20) { if (grabTarget.objectType == "grenade") { say("grenade", 80); addCash(5); } addCash(1); grabLocked = true; grabTarget.xv = 0; grabTarget.yv = 0; removeValueAction(); } } else { stopGrabbing(); walk(sign(_local7 - grabHand.x)); } break; case "catch" : if ((objectList[ar[1]].targ.grabClock <= 0) && (!objectList[ar[1]].targ.constrained)) { var _local11 = getValueValue(); _local7 = Stage.width / 2; _local9 = objectList[ar[1]].targ.x; _local8 = objectList[ar[1]].targ.y; var _local5 = objectList[ar[1]].targ.xv; var _local2 = objectList[ar[1]].targ.yv; var _local6 = 0; while (_local6 <= 150) { if ((_local2 >= 0) && (_local8 >= (Stage.height - 80))) { _local7 = _local9; break; } _local2 = _local2 + _root.grav; _local9 = _local9 + _local5; _local8 = _local8 + _local2; _local6++; } if (_local7 > body.x) { grabHand = rArm; _local7 = _local7 - 30; } else { grabHand = lArm; _local7 = _local7 + 30; } removeValueAction(); } if (((_local7 > 0) && (_local7 < Stage.width)) && (objectList[ar[1]].targ.grabClock <= 0)) { addAction("runToPoint:" + _local7, Math.min(_local11 + 1, 8)); addAction("grabInAir:" + ar[1], Math.min(_local11, 7)); } break; case "grabInAir" : _local9 = grabHand.x - objectList[ar[1]].targ.x; _local8 = grabHand.y - objectList[ar[1]].targ.y; _local10 = Math.sqrt((_local9 * _local9) + (_local8 * _local8)); if (_local10 <= 80) { grabbing = true; grabTarget = objectList[ar[1]].targ; grabTarget.x = (grabTarget.x * 0.8) + (grabHand.x * 0.2); grabTarget.y = (grabTarget.y * 0.8) + (grabHand.y * 0.2); if (_local10 <= 30) { if (grabTarget.objectType == "grenade") { say("grenade", 80); addCash(7); } else if (grabTarget.objectType == "baseball") { stats.values.caughtBalls++; } addCash(3); addEmotion(6); grabLocked = true; grabTarget.xv = 0; grabTarget.yv = 0; removeValueAction(); } } else { stopGrabbing(); } if (objectList[ar[1]].targ.y >= (Stage.height - 40)) { stopGrabbing(); removeValueAction(); } break; case "letGo" : stopGrabbing(); removeValueAction(); break; case "getUnStuck" : lLeg.yv = (Math.random() - 0.5) * 7; rLeg.yv = (Math.random() - 0.5) * 7; lLeg.xv = (Math.random() - 0.5) * 2; rLeg.xv = (Math.random() - 0.5) * 2; if (item == "Open Hand") { grabMouse(30); } if ((!armsOnGround) && (getModifier != "scared")) { removeValueAction(); } break; case "runFromGrenade" : var _local3 = 10000; var _local4 = -1; for (var _local6 in objectList) { if (objectList[_local6].targ.objectType == "grenade") { if (Math.abs(body.x - objectList[_local6].targ.x) < _local3) { _local3 = Math.abs(body.x - objectList[_local6].targ.x); _local4 = _local6; } } } if ((((_local4 >= 0) && (onGround)) && (awake)) && (_local3 < 275)) { _local7 = objectList[_local4].targ.x; if (_local7 < 125) { walk(1); } else if (_local7 > (Stage.width - 125)) { walk(-1); } else { walk(sign(body.x - _local7) + 0.01); } } else { removeValueAction(); } break; case "flip" : if (jump(35, 0)) { rv = 0.3175; addCash(15); removeValueAction(); } break; case "seizure" : for (var _local6 in bodyParts) { bodyParts[_local6].x = bodyParts[_local6].x + ((Math.random() * 10) - 5); bodyParts[_local6].y = bodyParts[_local6].y + ((Math.random() * 10) - 5); } subtractValueAction(1); } if (ar[1] <= 0) { removeValueAction(); } } function removeValueAction() { var _local1 = 9; while (_local1 >= 0) { name = queue[_local1][0]; if (name != null) { queue[_local1].shift(); break; } _local1--; } } function initPhysics(da, sl, gr) { pause = false; damp = da; slow = sl; grav = gr; bodyRot = 0; rv = 0; fist.x = -100; fist.y = -100; fist.xv = 0; fist.yv = 0; fist.oox = fist.x; fist.ooy = fist.y; fist.objectType = "fist"; fist.id = -1; lArm.x = lArm._x; lArm.y = lArm._y; rArm.x = rArm._x; rArm.y = rArm._y; lLeg.x = lLeg._x; lLeg.y = lLeg._y; rLeg.x = rLeg._x; rLeg.y = rLeg._y; head.x = head._x; head.y = head._y; body.x = body._x; body.y = body._y; lArm.xv = 0; lArm.yv = 0; rArm.xv = 0; rArm.yv = 0; lLeg.xv = 0; lLeg.yv = 0; rLeg.xv = 0; rLeg.yv = 0; head.xv = 0; head.yv = 0; body.xv = 0; body.yv = 0; lArm.oox = lArm.x; lArm.ooy = lArm.y; rArm.oox = rArm.x; rArm.ooy = rArm.y; lLeg.oox = lLeg.x; lLeg.ooy = lLeg.y; rLeg.oox = rLeg.x; rLeg.ooy = rLeg.y; head.oox = head.x; head.ooy = head.y; body.oox = body.x; body.ooy = body.y; lArm.ox = lArm.x; lArm.oy = lArm.y; rArm.ox = rArm.x; rArm.oy = rArm.y; lLeg.ox = lLeg.x; lLeg.oy = lLeg.y; rLeg.ox = rLeg.x; rLeg.oy = rLeg.y; head.ox = head.x; head.oy = head.y; body.ox = body.x; body.oy = body.y; lArm.oxp = -22.15; lArm.oyp = -10; rArm.oxp = 22.15; rArm.oyp = -10; lLeg.oxp = -15.1; lLeg.oyp = 32.15; rLeg.oxp = 15.05; rLeg.oyp = 32.15; head.oxp = 0; head.oyp = -39.2; lArm.mass = 0.1; rArm.mass = 0.1; lLeg.mass = 0.15; rLeg.mass = 0.15; head.mass = 0.2; body.mass = 1; fist.mass = 50000; lArm.bounce = 0.4; rArm.bounce = 0.4; lLeg.bounce = 0.4; rLeg.bounce = 0.4; head.bounce = 0.2; body.bounce = 0.5; fist.bounce = 0.5; lArm.rad = 10; rArm.rad = 10; lLeg.rad = 10; rLeg.rad = 10; head.rad = 13.5; body.rad = 25; fist.rad = 20; lArm.d = Math.sqrt((lArm.oxp * lArm.oxp) + (lArm.oyp * lArm.oyp)); lArm.r = -Math.atan2(lArm.oyp, lArm.oxp); rArm.d = Math.sqrt((rArm.oxp * rArm.oxp) + (rArm.oyp * rArm.oyp)); rArm.r = -Math.atan2(rArm.oyp, rArm.oxp); lLeg.d = Math.sqrt((lLeg.oxp * lLeg.oxp) + (lLeg.oyp * lLeg.oyp)); lLeg.r = -Math.atan2(lLeg.oyp, lLeg.oxp); rLeg.d = Math.sqrt((rLeg.oxp * rLeg.oxp) + (rLeg.oyp * rLeg.oyp)); rLeg.r = -Math.atan2(rLeg.oyp, rLeg.oxp); head.d = Math.sqrt((head.oxp * head.oxp) + (head.oyp * head.oyp)); head.r = -Math.atan2(head.oyp, head.oxp); lArm.xt = body.x + lArm.oxp; lArm.yt = body.y + lArm.oyp; rArm.xt = body.x + rArm.oxp; rArm.yt = body.y + rArm.oyp; lLeg.xt = body.x + lLeg.oxp; lLeg.yt = body.y + lLeg.oyp; rLeg.xt = body.x + rLeg.oxp; rLeg.yt = body.y + rLeg.oyp; head.xt = body.x + head.oxp; head.yt = body.y + head.oyp; lArm.flammable = true; rArm.flammable = true; lLeg.flammable = true; rLeg.flammable = true; head.flammable = true; body.flammable = true; fist.flammable = false; lArm.onFire = false; rArm.onFire = false; lLeg.onFire = false; rLeg.onFire = false; head.onFire = false; body.onFire = false; lArm.oldFire = false; rArm.oldFire = false; lLeg.oldFire = false; rLeg.oldFire = false; head.oldFire = false; body.oldFire = false; lArm.fireStrength = 0; rArm.fireStrength = 0; lLeg.fireStrength = 0; rLeg.fireStrength = 0; head.fireStrength = 0; body.fireStrength = 0; wreckingBall.rad = 15; wreckingBall.flammable = false; wreckingBall.x = -100; wreckingBall.y = -100; wreckingBall._x = lag(wreckingBall.x); wreckingBall._y = lag(wreckingBall.y); wreckingBall.xv = 0; wreckingBall.yv = 0; wreckingBall.ax = 0; wreckingBall.ay = 0; wreckingBall.axv = 0; wreckingBall.ayv = 0; wreckingBall.ox = 0; wreckingBall.oy = 0; wreckingBall.oox = 0; wreckingBall.ooy = 0; wreckingBall.mass = 0.75; wreckingBall.friction = 0.8; wreckingBall.bounce = 0.2; wreckingBall.hitTimer = -1; wreckingBall.objectType = "wreckingBall"; wreckingBall.id = -1; } function walk(dir) { if (!youOnlyWalkOnce) { if (dir != 0) { rLeg.xv = rLeg.xv + (Math.sin(((-dir) * time) * 0.15) * (2 + (improvedPhysics * 1.5))); rLeg.yv = rLeg.yv + (Math.cos(((-dir) * time) * 0.15) * (3.5 + (improvedPhysics * 2.5))); lLeg.xv = lLeg.xv + (Math.sin((((-dir) * time) * 0.15) + 180) * (2 + (improvedPhysics * 1.5))); lLeg.yv = lLeg.yv + (Math.cos((((-dir) * time) * 0.15) + 180) * (3.5 + (improvedPhysics * 2.5))); body.xv = body.xv + (dir * 3); rArm.xv = rArm.xv + (dir * 3); lArm.xv = lArm.xv + (dir * 3); head.xv = head.xv + (dir * 3); if (improvedPhysics) { body.yv = (body.yv * 0.9) + 1.5; lLeg.yv = lLeg.yv + 0.5; rLeg.yv = rLeg.yv + 0.5; } moving = 1; } else { moving = 0; } var _local2 = youOnlyWalkOnce; youOnlyWalkOnce = true; return(!_local2); } } function run(dir) { if (!youOnlyWalkOnce) { if (dir != 0) { rLeg.xv = rLeg.xv + (Math.sin(((-dir) * time) * 0.15) * (2 + (improvedPhysics * 1.5))); rLeg.yv = rLeg.yv + (Math.cos(((-dir) * time) * 0.15) * (4.5 + (improvedPhysics * 3))); lLeg.xv = lLeg.xv + (Math.sin((((-dir) * time) * 0.15) + 180) * (2 + (improvedPhysics * 1.5))); lLeg.yv = lLeg.yv + (Math.cos((((-dir) * time) * 0.15) + 180) * (4.5 + (improvedPhysics * 3))); body.xv = body.xv + (dir * 5); rArm.xv = rArm.xv + (dir * 5); lArm.xv = lArm.xv + (dir * 5); head.xv = head.xv + (dir * 5); if (improvedPhysics) { body.yv = (body.yv * 0.9) + 0.35; lLeg.yv = lLeg.yv + 0.75; rLeg.yv = rLeg.yv + 0.75; } moving = 1; } else { moving = 0; } var _local2 = youOnlyWalkOnce; youOnlyWalkOnce = true; return(!_local2); } } function doWeaponPhysics() { var _local1 = 8; if (item == "Medieval Flail") { if (((skin == "nap") && (!saidFlail)) && (awake)) { speak("nd-warrior", 100); saidFlail = true; } if (wreckingBall.id < 0) { wreckingBall.ox = _axmouse; wreckingBall.oy = _aymouse; wreckingBall.id = objectList.push({targ:wreckingBall, type:"immovable", group:"wreckingBall"}) - 1; } wreckingBall._visible = true; if (!wreckingNow) { var _local13 = 0; while (_local13 < _local1) { dep++; objects.attachMovie("chain", "chain" + _local13, dep, {x:_axmouse, y:_aymouse, _x:_axmouse, _y:_aymouse, xv:0, yv:0, ox:_axmouse, oy:_aymouse, oox:_axmouse, ooy:_aymouse}); _local13++; } } wreckingBall.x = wreckingBall.ax; wreckingBall.y = wreckingBall.ay; wreckingBall.xv = wreckingBall.axv; wreckingBall.yv = wreckingBall.ayv; var _local28 = wreckingBall.x; var _local27 = wreckingBall.y; wreckingBall.yv = wreckingBall.yv + grav; wreckingBall.x = wreckingBall.x + wreckingBall.xv; wreckingBall.y = wreckingBall.y + wreckingBall.yv; var _local12 = wreckingBall.x - _axmouse; var _local11 = wreckingBall.y - _aymouse; var _local26 = (10 * _local1) + 20; var _local17 = false; if (((_local12 * _local12) + (_local11 * _local11)) > (_local26 * _local26)) { var _local6 = Math.atan2(_local12, _local11); var _local4 = _local26; wreckingBall.x = (_local4 * Math.sin(_local6)) + _axmouse; wreckingBall.y = (_local4 * Math.cos(_local6)) + _aymouse; wreckingBall.xv = wreckingBall.x - _local28; wreckingBall.yv = wreckingBall.y - _local27; _local17 = true; } if (wreckingBall.x > ((Stage.width - 10) - wreckingBall.rad)) { wreckingBall.x = (Stage.width - 11) - wreckingBall.rad; wreckingBall.xv = wreckingBall.xv * -0.2; wreckingBall.yv = wreckingBall.yv * 0.7; } else if (wreckingBall.x < (10 + wreckingBall.rad)) { wreckingBall.x = 11 + wreckingBall.rad; wreckingBall.xv = wreckingBall.xv * -0.2; wreckingBall.yv = wreckingBall.yv * 0.7; } if (wreckingBall.y > ((Stage.height - 10) - wreckingBall.rad)) { wreckingBall.y = (Stage.height - 11) - wreckingBall.rad; wreckingBall.yv = wreckingBall.yv * -0.2; wreckingBall.xv = wreckingBall.xv * 0.7; } else if ((wreckingBall.y < (10 + wreckingBall.rad)) && (!modeContainer.openCeil)) { wreckingBall.y = 11 + wreckingBall.rad; wreckingBall.yv = wreckingBall.yv * -0.2; wreckingBall.xv = wreckingBall.xv * 0.7; } cam(wreckingBall); wreckingBall.ax = wreckingBall.x; wreckingBall.ay = wreckingBall.y; wreckingBall.axv = wreckingBall.xv; wreckingBall.ayv = wreckingBall.yv; var _local36 = _axmouse; var _local35 = _aymouse; var _local33 = wreckingBall.x; var _local31 = wreckingBall.y; var _local14 = 0; while (_local14 < 4) { var _local13 = 0; while (_local13 < _local1) { trg = objects["chain" + _local13]; trg.ox = trg.x; trg.oy = trg.y; if (!_local13) { prv = {x:_axmouse, y:_aymouse}; } else { prv = objects["chain" + (_local13 - 1)]; } if (_local13 == (_local1 - 1)) { nxt = wreckingBall; } else { nxt = objects["chain" + (_local13 + 1)]; } _local12 = trg.x - prv.x; _local11 = trg.y - prv.y; var _local6 = Math.atan2(_local12, _local11); var _local4 = 5; var _local30 = trg.x - nxt.x; var _local29 = trg.y - nxt.y; var _local3 = Math.atan2(_local30, _local29); var _local5 = 5; var _local10 = (_local4 * Math.sin(_local6)) + prv.x; var _local8 = (_local4 * Math.cos(_local6)) + prv.y; var _local9 = (_local5 * Math.sin(_local3)) + nxt.x; var _local7 = (_local5 * Math.cos(_local3)) + nxt.y; var _local2 = 0; while (_local2 < 10) { trg.x = ((trg.x * 0.5) + (0.25 * _local10)) + (0.25 * _local9); trg.y = ((trg.y * 0.5) + (0.25 * _local8)) + (0.25 * _local7); _local2++; } if (_local17) { trg.x = ((trg.x * 0.825) + (((_local13 / _local1) * wreckingBall.x) * 0.175)) + (((1 - (_local13 / _local1)) * _axmouse) * 0.175); trg.y = ((trg.y * 0.825) + (((_local13 / _local1) * wreckingBall.y) * 0.175)) + (((1 - (_local13 / _local1)) * _aymouse) * 0.175); } trg._x = lag(trg.x); trg._y = lag(trg.y); _local13++; } _local14++; } var _local30 = wreckingBall.x - objects["chain" + (_local1 - 1)].x; var _local29 = wreckingBall.y - objects["chain" + (_local1 - 1)].y; wreckingBall._rotation = (wreckingBall._rotation * 0.75) + (((0.25 * Math.atan2(_local29, _local30)) * 180) / Math.PI); wreckingNow = true; } else { if (wreckingBall.id >= 0) { popObject(wreckingBall); wreckingBall.id = -1; } wreckingBall._visible = false; if (wreckingNow || (chain1.x != undefined)) { var _local13 = 0; while (_local13 <= _local1) { objects["chain" + _local13].removeMovieClip(); _local13++; } } wreckingNow = false; } if (item == "Explode At Mouse") { if ((lmouse && (!olmouse)) && (!noUserInteraction)) { explode(_axmouse, _aymouse, 0.85); } } if (item == "Weak Gravity Vortex") { if (lmouse && (!noUserInteraction)) { gravitateToPoint(_axmouse, _aymouse, 50, false); } } if (item == "Strong Gravity Vortex") { if (lmouse && (!noUserInteraction)) { gravitateToPoint(_axmouse, _aymouse, 20, true); } } if (item == "Missiles") { if ((lmouse && (!olmouse)) && (!noUserInteraction)) { createMissile((Math.random() * 500) + 25, -100, _axmouse, _aymouse); } } } function createMissile(xx, yy, xt, yt) { dep++; mm = objects.attachMovie("missile", "missile" + dep, dep, {x:xx, _x:xx, y:yy, _y:yy, xt:xt, yt:yt, ox:xx, oy:yy, mass:1, friction:0.9, rot:0, bounce:0.9, justDied:true, first:true, objectType:"missile", oox:xx, ooy:yy, flammable:false}); mm.id = objectList.push({targ:_root.objects["missile" + dep], type:"missile", group:"missile" + dep, unDest:false}) - 1; mm._rotation = ((-Math.atan2(mm.xt - mm.x, mm.yt - mm.y)) * 180) / Math.PI; mm.ang = Math.atan2(mm.xt - mm.x, mm.yt - mm.y); mm.xv = 120 * Math.sin(mm.ang); mm.yv = 120 * Math.cos(mm.ang); mm.rad = 4; mm.onEnterFrame = function () { if (!_root.pause) { this.ox = this.x; this.oy = this.y; this.x = this.x + this.xv; this.y = this.y + this.yv; this._x = _root.lag(this.x); this._y = _root.lag(this.y); if (this.y >= (Stage.height - 10)) { this.y = Stage.height - 10; _root.explode(this.x, this.y, 0.85); _root.popObject(this); this.removeMovieClip(); } else if (this.x >= (Stage.width - 10)) { this.x = Stage.width - 10; _root.explode(this.x, this.y, 0.85); _root.popObject(this); this.removeMovieClip(); } else if (this.x <= 10) { this.x = 10; _root.explode(this.x, this.y, 0.85); _root.popObject(this); this.removeMovieClip(); } if (this.explode) { _root.explode(this.x, this.y, 0.85); _root.popObject(this); this.removeMovieClip(); } if (this.y <= -300) { this.removeMovieClip(); } this.first = false; this.notPaused = true; } else if (this.notPaused) { this.x = this.ox; this.y = this.oy; this._x = _root.lag(this.x); this._y = _root.lag(this.y); this.notPaused = false; } }; } function popObject(tg) { tid = tg.id; if (tid == theID) { theID = -1; } objectList.splice(tg.id, 1); var _local1 = tid; while (_local1 < objectList.length) { objectList[_local1].targ.id--; if (_local1 == theID) { theID--; } _local1++; } } function gravitateToPoint(xx, yy, power, stat) { gravitating = true; gravitatingx = xx; gravitatingy = yy; notIdle(); for (var _local9 in objectList) { if (((objectList[_local9].group != "buddy") && (objectList[_local9].targ.objectType != "mine")) && (objectList[_local9].targ.objectType != "vortex")) { obj = objectList[_local9].targ; var _local7 = obj.x - xx; var _local6 = obj.y - yy; var _local4 = Math.sqrt((_local7 * _local7) + (_local6 * _local6)); var _local10 = Math.atan2(_local7, _local6); if (stat) { obj.xv = obj.xv - (power * Math.sin(_local10)); obj.yv = obj.yv - (power * Math.cos(_local10)); } else { _local10 = Math.atan2(_local7, _local6); var _local11 = Math.min((3 * Math.sqrt(power / _local4)) * (power / _local4), 35); obj.xv = obj.xv - ((_local11 * Math.sin(_local10)) / Math.max(obj.mass, 0.2)); obj.yv = obj.yv - ((_local11 * Math.cos(_local10)) / Math.max(obj.mass, 0.2)); } } } obj = body; var _local7 = obj.x - xx; var _local6 = obj.y - yy; var _local4 = Math.sqrt((_local7 * _local7) + (_local6 * _local6)); var _local10 = Math.atan2(_local7, _local6); if (stat) { addVel((-power) * Math.sin(_local10), (-power) * Math.cos(_local10)); var _local8 = Math.min(_local4 / 35, 1); body.xv = body.xv * ((_local8 * _local8) * 0.9); body.yv = body.yv * ((_local8 * _local8) * 0.9); } else { _local10 = Math.atan2(_local7, _local6); var _local11 = Math.max(Math.min((10 * Math.sqrt(power / _local4)) * (power / _local4), 15), 0) * Math.max(0, Math.min(1, _local4 * 0.015)); addVel(((-_local11) * Math.sin(_local10)) / Math.max(obj.mass, 0.2), ((-_local11) * Math.cos(_local10)) / Math.max(obj.mass, 0.2)); var _local8 = Math.min(_local4 / 35, 1); body.xv = body.xv * ((_local8 * _local8) * 0.8); body.yv = body.yv * ((_local8 * _local8) * 0.8); } } function killObjects() { while (objectLimiter.length > numberOfObjects) { var _local1 = objectLimiter.pop(); _local1.dead = true; } } function registerObject(ob) { objectLimiter.splice(0, 0, ob); killObjects(); } function unregisterObject(ob) { for (var _local2 in objectLimiter) { if (objectLimiter[_local2] == ob) { objectLimiter.splice(0, 1); } } } function doSpecials() { if (specialVars.radio.onScreen) { var _local1 = ((specialVars.radio.targ.x - (Stage.width / 2)) / Stage.width) * 200; if (specialVars.radio.targ.onFire) { playMusic("static", _local1, 15); } else { playMusic("radioMusic", _local1, 75); } if ((((currentTrack != "none") && (currentTrack != "static")) && (getValueAction() == "none")) && (emotion > -60)) { putAction("dance:5", 2); } } else { stopMusic(); } if (specialVars.orb.onScreen) { light(specialVars.orb.targ.x, specialVars.orb.targ.y, 0.25, 0.25, 0.25); if (gQuality) { orbGlow.x = specialVars.orb.targ.x; orbGlow.y = specialVars.orb.targ.y; orbGlow._visible = true; cam(orbGlow); } else { orbGlow._visible = false; } } else { orbGlow._visible = false; } if (specialVars.vortex.onScreen) { gravitateToPoint(specialVars.vortex.targ.x, specialVars.vortex.targ.y, 1, true); } } function addObjectSpecial(name, x, y, xxv, yyv, typ, mas, fric, bou, flam) { if (!specialMessage) { flashMessage("Delete this and other special objects by pressing backspace.", 225); specialMessage = true; } var _local2 = false; for (var _local4 in specialObjects) { if (specialObjects[_local4] == name) { _local2 = true; } } if (!_local2) { var _local3 = addObject(name, x, y, xxv, yyv, typ, mas, fric, bou, flam, true); if (_local3 != undefined) { _local3.life = 100; _local3.special = true; specialObjects.push(name); specialVars[name] = {onScreen:true, targ:_local3}; } } return(_local3); } function addObjectBase(name, x, y, xxv, yyv, typ, mas, fric, bou, flam, forever) { if ((!objectMessage) && (!forever)) { flashMessage("Delete this and other nonspecial objects by moving the mouse over them.", 225); objectMessage = true; } dep++; var tt = _root.objects.attachMovie(name, name + dep, dep, {x:(x + (Math.random() * 0.1)) - 0.05, y:y, ox:x, oy:y, xv:xxv, yv:yyv, mass:mas, friction:fric, rot:0, bounce:bou, justDied:true, first:true, grabClock:0, objectType:name, life:140, oox:x, ooy:y, flammable:flam, hitTimer:0}); if (name == "baby") { tt.rad = 20; } else { tt.rad = (_root.objects[name + dep]._width + _root.objects[name + dep]._height) / 4; } tt.id = objectList.push({targ:_root.objects[name + dep], type:typ, group:"ball" + dep, unDest:forever}) - 1; if (name == "mine") { tt.light._alpha = 0; tt.stuck = false; } if (flam == true) { tt.onFire = false; tt.fireStrength = 0; tt.oldFire = tt.objectType == "fireball"; } if (!forever) { registerObject(tt); } if (typ == "circle") { tt.rv = (Math.random() * 0.8) - 0.4; tt.frameTick = function () { with (this) { if (!_root.pause) { this.hitTimer--; this.grabClock--; this.ox = this.x; this.oy = this.y; if (_root.grabTarget == this) { this.rv = 0; } if (this.objectType != "mine") { this.rot = this.rot + this.rv; this._rotation = (this.rot * 180) / Math.PI; } if (this.objectType == "mine") { if (this.stuck) { this.light._alpha = (this.light._alpha * 0.9) + 10; } else { this.light._alpha = 0; } } if (!(this.stuck && (this.objectType == "mine"))) { if ((!this.first) && (!((_root.grabTarget == this) && (_root.grabLocked)))) { if (!(_root.lmouse && (_root.specialItemName == this._name))) { if (this.objectType != "orb") { this.yv = this.yv + _root.grav; } this.x = this.x + this.xv; this.y = this.y + this.yv; } } else if ((((!this.first) && (_root.grabTarget == this)) && (_root.grabLocked)) && (this.grabClock <= 0)) { this.x = (this.x * 0.6) + (_root.grabHand.x * 0.4); this.y = (this.y * 0.6) + (_root.grabHand.y * 0.4); this.xv = (this.x - this.ox) * 2; this.yv = (this.y - this.oy) * 2; } if (this.x > ((Stage.width - this.rad) - 10)) { this.x = (Stage.width - this.rad) - 11; this.xv = this.xv * (-this.bounce); this.yv = this.yv * this.friction; this.rv = this.rv * this.friction; if (this.objectType == "mine") { this.stuck = true; } if (this.objectType == "molotov") { this.explode = true; } } if (this.x < (this.rad + 10)) { this.x = this.rad + 11; this.xv = this.xv * (-this.bounce); this.yv = this.yv * this.friction; this.rv = this.rv * this.friction; if (this.objectType == "mine") { this.stuck = true; } if (this.objectType == "molotov") { this.explode = true; } } if (this.y > ((Stage.height - this.rad) - 10)) { this.y = (Stage.height - this.rad) - 11; this.yv = this.yv * (-this.bounce); this.xv = this.xv * this.friction; this.rv = this.rv * this.friction; this.rv = this.rv + ((this.xv * 0.065) / this.rad); if (this.objectType == "mine") { this.stuck = true; } if (this.objectType == "molotov") { this.explode = true; } } if (!_root.modeContainer.openCeil) { if (this.y < (this.rad + 10)) { this.y = this.rad + 11; this.yv = this.yv * (-this.bounce); this.xv = this.xv * this.friction; this.rv = this.rv * this.friction; if (this.objectType == "molotov") { this.explode = true; } } } } if (this.dead) { if (this.justDied) { if (this.special) { for (var j in _root.specialObjects) { if (_root.specialObjects[j] == this._name) { _root.specialObjects.splice(j, 1); } } specialVars[name].onScreen = false; specialVars[name].targ = undefined; } _root.popObject(this); if (_root.grabTarget == this) { stopGrabbing(); } } this.onEnterFrame = function () { this._alpha = this._alpha - 20; this.justDied = false; if (this._alpha <= 0) { this.removeMovieClip(); } this.x = this.x + this.xv; this.y = this.y + this.yv; if (this.objectType != "orb") { this.yv = this.yv + _root.grav; } this._x = _root.lag(this.x); this._y = _root.lag(this.y); }; } this._x = _root.lag(this.x); this._y = _root.lag(this.y); this.first = false; if (this.objectType == "grenade") { this.life--; if (this.life <= 0) { _root.noMoreGrenades = true; _root.explode(this.x, this.y, 0.7); _root.popObject(this); if (_root.grabTarget == this) { stopGrabbing(); } this.removeMovieClip(); } } if (this.objectType == "molotov") { _root.fireEffect(this.x + (10 * Math.sin(this.rot)), this.y - (10 * Math.cos(this.rot)), 0.1, this.ox + (10 * Math.sin(this.rot)), this.oy - (10 * Math.cos(this.rot))); } if (this.explode) { if (this.objectType == "mine") { _root.explode(this.x, this.y, 0.75); _root.popObject(this); if (_root.grabTarget == this) { _root.stopGrabbing(); } this.removeMovieClip(); } else if (this.objectType == "molotov") { _root.playSound("burnball", 65); var f = 0; while (f <= 7) { _root.fireClip(this.x, this.y, (Math.random() * 20) - 10, (Math.random() * 20) - 10, true, 6 + Math.floor(Math.random() * 12), (Math.random() * 1.25) + 0.5, 1); f++; } var f = 0; while (f <= 4) { _root.debris(this.x, this.y, (Math.random() * 20) - 10, (Math.random() * 20) - 10, (Math.random() * 0.75) + 0.1, true, 8 + (Math.random() * 10)); f++; } var i = 0; while (i <= (gQuality * 6)) { _root.fireEffect(this.x, this.y, 2, this.x, this.y); i++; } _root.popObject(this); if (_root.grabTarget == this) { _root.stopGrabbing(); } this.removeMovieClip(); } } this.notPaused = true; } else if (this.notPaused) { this.x = this.ox; this.y = this.oy; this._x = _root.lag(this.x); this._y = _root.lag(this.y); this.notPaused = false; } } }; } return(tt); } function addObject(name, x, y, xxv, yyv, typ, mas, fric, bou, flam, forever) { if (clearedToAdd) { deleteCountdown = 16; var _local1 = addObjectBase(name, x, y, xxv, yyv, typ, mas, fric, bou, flam, forever); return(_local1); } return(undefined); } function stopGrabbing() { grabTarget.grabClock = 10; grabbing = false; grabTarget = undefined; grabLocked = false; } function removeSpecialItem(name) { specialVars[name].targ.dead = true; specialVars[name].targ = undefined; specialVars[name].onScreen = false; for (var _local2 in specialObjects) { if (specialObjects[_local2] == name) { specialObjects.splice(_local2, 1); break; } } } function checkObjectPlacement() { if (((clearedToDelete && (throwingItem)) && (!lmouse)) && (!noUserInteraction)) { for (var _local1 in objectList) { if (!objectList[_local1].unDest) { if (distance(objectList[_local1].targ.x, objectList[_local1].targ.y, _axmouse, _aymouse) < objectList[_local1].targ.rad) { objectList[_local1].targ.dead = true; } } } } if (lmouse && (!olmouse)) { objox = _axmouse; objoy = _aymouse; } specialPlacement = (!specialVars[specialItemName].onScreen) && (specialItem); if (((specialPlacement || (throwingItem)) && (lmouse)) && (!noUserInteraction)) { var _local2 = _axmouse; var _local4 = _aymouse; var _local7 = (_axmouse - objox) * throwDampening; var _local6 = (_aymouse - objoy) * throwDampening; drawing.lineStyle(1, 16777215, 100); drawing.moveTo(_local2, _local4); var _local3 = 50; var _local1 = 0; while (_local1 <= _local3) { drawing.lineStyle(1, 16777215, ((_local3 - _local1) / _local3) * 100); _local2 = _local2 + _local7; _local4 = _local4 + _local6; if ((item != "Magical Orb") && (item != "Gravity Shifter")) { _local6 = _local6 + grav; } drawing.lineTo(_local2, _local4); if (((ttv > Stage.height) || (_local2 > Stage.width)) || (_local2 < 0)) { break; } if ((_local4 < 0) && (!modeContainer.openCeil)) { break; } _local1++; } } if ((olmouse && (!lmouse)) && (!noUserInteraction)) { switch (item) { case "Baseballs" : addObject("baseball", _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", 0.3, 0.8, 0.2, false, false); break; case "Bowling Balls" : addObject("bowlball", _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", 0.8, 0.9, 0.15, false, false); break; case "Grenades" : addObject("grenade", _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", 0.35, 0.65, 0.2, false, false); break; case "Mines" : addObject("mine", _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", 0.2, 0, 0, false, false); break; case "Fireballs" : var _local8 = addObject("fireball", _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", 0.1, 0.9, 0.9, true, false); _local8.onFire = true; _local8.fireStrength = 100; break; case "Rubber Balls" : addObject("bouncyball", _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", 0.08, 0.95, 0.95, true, false); break; case "Molotov Cocktails" : addObject("molotov", _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", 0.45, 0.5, 0.5, false, false); break; case "Infants" : addObject("baby", _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", 0.5, 0.2, 0.1, true, false); break; default : if (!specialItem) { break; } addObjectSpecial(specialItemName, _axmouse, _aymouse, (_axmouse - objox) * throwDampening, (_aymouse - objoy) * throwDampening, "circle", specialStats[specialItemName].mass, specialStats[specialItemName].friction, specialStats[specialItemName].bounce, true); } } specialDragging = false; if (((specialItem && (!specialPlacement)) && (!((!olmouse) && (_ymouse < 30)))) && (!noUserInteraction)) { if (lmouse) { specialVars[specialItemName].targ.x = (specialVars[specialItemName].targ.x * 0.5) + (_axmouse * 0.5); specialVars[specialItemName].targ.y = (specialVars[specialItemName].targ.y * 0.5) + (_aymouse * 0.5); specialVars[specialItemName].targ.xv = _axmouse - oxmouse; specialVars[specialItemName].targ.yv = _aymouse - oymouse; specialDragging = true; } if (Key.isDown(8)) { removeSpecialItem(specialItemName); } } if (lmouse && (!noUserInteraction)) { switch (item) { case "Wide Nozzle Hose" : var _local3 = 1; otrr = trr; trr = Math.atan2(_axmouse - aimx, _aymouse - aimy); var _local1 = 0; while (_local1 < _local3) { if (sign(trr) == sign(otrr)) { var _local5 = ((trr * (_local1 / _local3)) + (otrr * (1 - (_local1 / _local3)))) + ((Math.random() - 0.5) * 0.5); } else { var _local5 = trr + ((Math.random() - 0.5) * 0.5); } var _local10 = 15 * Math.sin(_local5); var _local9 = 15 * Math.cos(_local5); water(_axmouse - ((_local10 * _local1) / _local3), _aymouse - ((_local9 * _local1) / _local3), _local10, _local9, 25, 0.005, 4, 20, false); _local1++; } break; case "Narrow Nozzle Hose" : _local3 = 3; otrr = trr; trr = Math.atan2(_axmouse - aimx, _aymouse - aimy); _local1 = 0; while (_local1 < _local3) { if (sign(trr) == sign(otrr)) { var _local5 = ((trr * (_local1 / _local3)) + (otrr * (1 - (_local1 / _local3)))) + ((Math.random() - 0.5) * 0.075); } else { var _local5 = trr + ((Math.random() - 0.5) * 0.075); } var _local10 = 30 * Math.sin(_local5); var _local9 = 30 * Math.cos(_local5); water(_axmouse - ((_local10 * _local1) / _local3), _aymouse - ((_local9 * _local1) / _local3), _local10, _local9, 20, 0.035, 0.3, 20, true); _local1++; } break; case "Fire Hose" : _local3 = 5; otrr = trr; trr = Math.atan2(_axmouse - aimx, _aymouse - aimy); _local1 = 0; while (_local1 < _local3) { if (sign(trr) == sign(otrr)) { var _local5 = ((trr * (_local1 / _local3)) + (otrr * (1 - (_local1 / _local3)))) + ((Math.random() - 0.5) * 0.04); } else { var _local5 = trr + ((Math.random() - 0.5) * 0.04); } var _local10 = 60 * Math.sin(_local5); var _local9 = 60 * Math.cos(_local5); water(_axmouse - ((_local10 * _local1) / _local3), _aymouse - ((_local9 * _local1) / _local3), _local10, _local9, 20, 0.25, 0.3, 35, true); _local1++; } break; case "Flamethrower" : if ((lmouse && (!olmouse)) && (flameTimer <= 0)) { playSound("burnball", 40); flameTimer = 30; } flameLightPower = Math.min(flameLightPower + 0.2, 1); otrr = trr; trr = Math.atan2(_axmouse - aimx, _aymouse - aimy) + ((Math.random() * -0.5) * 0.4); if (time % 7) { var _local10 = 15 * Math.sin(trr); var _local9 = 15 * Math.cos(trr); fireGlowClip(_axmouse, _aymouse, _local10, _local9, true, 25, (Math.random() * 0.5) + 1.4, 0.5, 0.35, 1); } else { var _local10 = 15 * Math.sin(trr); var _local9 = 15 * Math.cos(trr); fireClip(_axmouse, _aymouse, _local10, _local9, true, 25, (Math.random() * 0.5) + 1.4, 0.5); } } } if (item == "Stun Gun") { stunGun._visible = true; stunGun.ox = stunGun.x; stunGun.oy = stunGun.y; stunGun.x = _axmouse; stunGun.y = _aymouse; if ((stunGun.x != stunGun.ox) || (stunGun.y != stunGun.oy)) { stunGun.oox = (stunGun.oox * 0.675) + (stunGun.ox * 0.325); stunGun.ooy = (stunGun.ooy * 0.675) + (stunGun.oy * 0.325); stunGun.rot = (-Math.atan2(stunGun.x - stunGun.oox, stunGun.y - stunGun.ooy)) + (Math.PI/2); stunGun._rotation = (stunGun.rot * 180) / Math.PI; } stunGunShadow.x = stunGun.x + 2; stunGunShadow.y = stunGun.y + 2; stunGunShadow._rotation = stunGun._rotation; stunGunShadow._visible = stunGun._visible; cam(stunGunShadow); cam(stunGun); if (lmouse && (!noUserInteraction)) { stunGun.gotoAndStop("on"); shock(_axmouse, _aymouse); } else { stunGun.gotoAndStop("off"); } } else { stunGun._visible = false; stunGunShadow._visible = stunGun._visible; stunGun.x = -200; stunGun.y = -200; stunGun.ox = -200; stunGun.oy = -200; stunGun.oox = -200; stunGun.ooy = -200; stunGun._x = stunGun._x; stunGun._y = stunGun._y; } } function normalizex(x, y) { return(-Math.sin(Math.atan2(x, y))); } function normalizey(x, y) { return(-Math.cos(Math.atan2(x, y))); } function shock(x, y) { for (var _local1 in objectList) { if (objectList[_local1].targ.objectType == "bouncyball") { if (distance(_axmouse, _aymouse, objectList[_local1].targ.x, objectList[_local1].targ.y) <= objectList[_local1].targ.rad) { objectList[_local1].targ.onFire = true; objectList[_local1].targ.fireStrength = 5; } } else if (objectList[_local1].targ.objectType == "mine") { if (distance(_axmouse, _aymouse, objectList[_local1].targ.x, objectList[_local1].targ.y) <= objectList[_local1].targ.rad) { objectList[_local1].targ.holdExplode = true; } } } oBeingShocked = beingShocked; if (distance(x, y, head.x, head.y) < head.rad) { awake = true; setModifier("scared", 220); head.xv = head.xv + (40 * normalizex(_axmouse - head.x, _aymouse - head.y)); head.yv = head.yv + (40 * normalizey(_axmouse - head.x, _aymouse - head.y)); beingShocked = true; var _local4 = 0.6; } else if (distance(x, y, body.x, body.y) < body.rad) { awake = true; setModifier("scared", 180); body.xv = body.xv + (20 * normalizex(_axmouse - body.x, _aymouse - body.y)); body.yv = body.yv + (20 * normalizey(_axmouse - body.x, _aymouse - body.y)); beingShocked = true; var _local4 = 0.2; } else if (distance(x, y, rArm.x, rArm.y) < rArm.rad) { awake = true; setModifier("scared", 120); rArm.xv = rArm.xv + (50 * normalizex(_axmouse - rArm.x, _aymouse - rArm.y)); rArm.yv = rArm.yv + (50 * normalizey(_axmouse - rArm.x, _aymouse - rArm.y)); beingShocked = true; var _local4 = 0.05; } else if (distance(x, y, lArm.x, lArm.y) < rArm.rad) { awake = true; setModifier("scared", 120); lArm.xv = lArm.xv + (50 * normalizex(_axmouse - lArm.x, _aymouse - lArm.y)); lArm.yv = lArm.yv + (50 * normalizey(_axmouse - lArm.x, _aymouse - lArm.y)); beingShocked = true; var _local4 = 0.05; } else if (distance(x, y, rLeg.x, rLeg.y) < rArm.rad) { awake = true; setModifier("scared", 140); rLeg.xv = rLeg.xv + (30 * normalizex(_axmouse - rLeg.x, _aymouse - rLeg.y)); rLeg.yv = rLeg.yv + (30 * normalizey(_axmouse - rLeg.x, _aymouse - rLeg.y)); beingShocked = true; var _local4 = 0.1; } else if (distance(x, y, lLeg.x, lLeg.y) < rArm.rad) { awake = true; setModifier("scared", 140); lLeg.xv = lLeg.xv + (30 * normalizex(_axmouse - lLeg.x, _aymouse - lLeg.y)); lLeg.yv = lLeg.yv + (30 * normalizey(_axmouse - lLeg.x, _aymouse - lLeg.y)); beingShocked = true; var _local4 = 0.1; } else { beingShocked = false; } if (beingShocked & (!oBeingShocked)) { shockValue = shockValue + 0.15; if (shockValue >= 1) { putAction("seizure:250", 8); putAction("setModifier:scared:160", 7); } playSound("shock", 70); zapGraphic(_axmouse, _aymouse, 0.5, 0.05); expLight(_axmouse, _aymouse, 0.4); addCash(_local4); addEmotion(-1); stats.values.stunGunHits++; if (timeSinceComment("zap") > 400) { say("zap", 160); } } } function zapGraphic(xx, yy, sc, mm) { dep++; var _local3 = _root.particles.attachMovie("zapGraphic", "zapGraphic" + dep, dep, {x:xx, y:yy, _x:xx, _y:yy, _xscale:sc * 100, _yscale:sc * 100, sc:sc, mm:mm, _rotation:Math.random() * 360}); _local3.onEnterFrame = function () { if (!_root.pause) { this._alpha = this._alpha - 20; this._xscale = this._xscale - (this.mm * 100); this._yscale = this._yscale - (this.mm * 100); if (this._alpha <= 0) { this.removeMovieClip(); } } }; } function water(xx, yy, xvv, yvv, lif, str, spr, sc, dis) { dep++; if (gQuality == 0) { ll = "Low"; } else if ((gQuality == 1) && (Math.random() > 0.5)) { ll = "Low"; } else { ll = ""; } var _local7 = _root.particles.attachMovie("smoke" + ll, "smoke" + dep, dep, {x:xx, y:yy, xv:xvv, yv:yvv, totalLife:lif, life:lif, _xscale:(sc * Math.random()) + (sc * 0.5), _yscale:(sc * Math.random()) + (sc * 0.5), strength:str, spread:spr, disappear:dis}); _local7.gotoAndStop(Math.ceil(Math.random() * 4)); _local7.onEnterFrame = function () { if (!_root.pause) { this.life--; this.x = this.x + this.xv; this.y = this.y + this.yv; this._x = _root.lag(this.x); this._y = _root.lag(this.y); this.yv = this.yv + _root.grav; this._xscale = this._xscale + this.spread; this._yscale = this._yscale + this.spread; this._alpha = (this.life / this.totalLife) * 100; for (var _local5 in _root.objectList) { var _local6 = _root.distance(this.x, this.y, _root.objectList[_local5].targ.x, _root.objectList[_local5].targ.y); if (_local6 <= ((this._width * 0.75) + (_root.objectList[_local5].targ.rad * 0.5))) { if (_root.objectList[_local5].targ.onFire) { _root.objectList[_local5].targ.fireStrength = _root.objectList[_local5].targ.fireStrength - 7; } if (!_root.objectList[_local5].targ.stuck) { _root.objectList[_local5].targ.xv = _root.objectList[_local5].targ.xv + (((((this.xv * this.strength) * this.life) / this.totalLife) / _root.objectList[_local5].targ.mass) * 0.1); _root.objectList[_local5].targ.yv = _root.objectList[_local5].targ.yv + (((((this.yv * this.strength) * this.life) / this.totalLife) / _root.objectList[_local5].targ.mass) * 0.1); if (_root.objectList[_local5].targ == _root.head) { var _local4 = Math.atan2(this.y - _root.body.y, this.x - _root.body.x); var _local3 = Math.atan2((this.y - _root.body.y) - this.yv, (this.x - _root.body.x) - this.xv); _root.rv = _root.rv + (Math.min((Math.abs(_local3 - _local4) * 0.08) * this.strength, 0.2) * _root.sign(_local3 - _local4)); } } if (_root.gQuality && (this.disappear)) { _root.splash(this.x, this.y, (((-this.xv) * 0.2) + (Math.random() * 10)) - 5, (((-this.yv) * 0.2) + (Math.random() * 10)) - 5, (Math.random() * 0.05) + 0.01, 15); } if (this.disappear) { this.life = Math.min(0, this.life); if ((_root.objectList[_local5].group == "buddy") && (!(_root.time % 6))) { notIdle(); addCash(0.08); addEmotion(0.05); } } } } if (!this.disappear) { for (var _local5 in _root.objectList) { var _local6 = _root.distance(this.x, this.y, _root.objectList[_local5].targ.x, _root.objectList[_local5].targ.y); if (_local6 <= _root.objectList[_local5].targ.rad) { if (_root.gQuality) { _root.splash(this.x, this.y, (((-this.xv) * 0.2) + (Math.random() * 10)) - 5, (((-this.yv) * 0.2) + (Math.random() * 10)) - 5, (Math.random() * 0.05) + 0.01, 15); } } } } if ((this.x > Stage.width) || (this.x < 0)) { var _local5 = 0; while (_local5 < _root.gQuality) { _root.splash(this.x, this.y, (((-this.xv) * 0.2) + (Math.random() * 20)) - 10, (((-this.yv) * 0.2) + (Math.random() * 20)) - 10, (Math.random() * 0.05) + 0.01, 15); _local5++; } this.removeMovieClip(); } else if (this.y > Stage.height) { var _local5 = 0; while (_local5 < _root.gQuality) { _root.splash(this.x, this.y, (((-this.xv) * 0.2) + (Math.random() * 20)) - 10, (((-this.yv) * 0.2) + (Math.random() * 20)) - 10, (Math.random() * 0.05) + 0.01, 15); _local5++; } this.removeMovieClip(); } else if (this.y < 0) { if (!modeContainer.openCeil) { var _local5 = 0; while (_local5 < _root.gQuality) { _root.splash(this.x, this.y, (((-this.xv) * 0.2) + (Math.random() * 20)) - 10, (((-this.yv) * 0.2) + (Math.random() * 20)) - 10, (Math.random() * 0.05) + 0.01, 15); _local5++; } } this.removeMovieClip(); } if (this.life <= 0) { this.removeMovieClip(); } } }; } function debris(xx, yy, xvv, yvv, sc, onf, life) { dep++; var _local3 = _root.particles.attachMovie("debris", "debris" + dep, dep, {_xscale:sc * 100, _yscale:sc * 100, sc:sc, onFire:onf, life:life}); _local3._rotation = (Math.random() * Math.PI) * 2; _local3.rv = Math.random() - 0.5; _local3.x = xx; _local3.y = yy; _local3._x = lag(_local3.x); _local3._y = lag(_local3.y); _local3.xv = xvv; _local3.yv = yvv; _local3.rad = _local3._width / 2; _local3.gotoAndStop(Math.ceil(Math.random() * 5)); _local3.onEnterFrame = function () { if (!_root.pause) { this._rotation = this._rotation + this.rv; this.ox = this.x; this.oy = this.y; this.x = this.x + this.xv; this.y = this.y + this.yv; this.yv = this.yv + _root.grav; this._x = _root.lag(this.x); this._y = _root.lag(this.y); if (this.x > ((Stage.width - this.rad) - 10)) { this.x = (Stage.width - this.rad) - 11; this.xv = this.xv * -0.7; this.yv = this.yv * 0.7; this.rv = this.rv * 0.7; } if (this.x < (this.rad + 10)) { this.x = this.rad + 11; this.xv = this.xv * -0.7; this.yv = this.yv * 0.7; this.rv = this.rv * 0.7; } if (this.y > ((Stage.height - this.rad) - 10)) { this.y = (Stage.height - this.rad) - 11; this.xv = this.xv * 0.7; this.yv = this.yv * -0.7; this.rv = this.rv * 0.7; this.rv = this.rv + ((this.xv * 0.065) / this.rad); } if (this.onFire) { _root.fireEffect(this.x, this.y, this.sc, this.ox, this.oy); for (var _local3 in _root.objectList) { if (_root.objectList[_local3].targ.flammable && (!_root.objectList[_local3].targ.onFire)) { if (_root.distance(this.x, this.y, _root.objectList[_local3].targ.x, _root.objectList[_local3].targ.y) <= (_root.objectList[_local3].targ.rad + this.rad)) { _root.objectList[_local3].targ.onFire = true; } } } } this._alpha = this.life * 5; if (this.life <= 0) { this.removeMovieClip(); } this.life--; } }; } function splash(xx, yy, xvv, yvv, sc, life) { dep++; var _local3 = _root.particles.attachMovie("circ", "splash" + dep, dep, {_xscale:sc * 100, _yscale:sc * 100, sc:sc, life:life}); _local3.x = xx; _local3.y = yy; _local3._x = lag(_local3.x); _local3._y = lag(_local3.y); _local3.xv = xvv; _local3.yv = yvv; _local3.rad = _local3._width / 2; _local3.onEnterFrame = function () { if (!_root.pause) { this._rotation = this._rotation + this.rv; this.ox = this.x; this.oy = this.y; this.x = this.x + this.xv; this.y = this.y + this.yv; this.yv = this.yv + _root.grav; this._x = _root.lag(this.x); this._y = _root.lag(this.y); if (this.x > ((Stage.width - this.rad) - 10)) { this.x = (Stage.width - this.rad) - 11; this.xv = this.xv * -0.7; this.yv = this.yv * 0.7; this.rv = this.rv * 0.7; } if (this.x < (this.rad + 10)) { this.x = this.rad + 11; this.xv = this.xv * -0.7; this.yv = this.yv * 0.7; this.rv = this.rv * 0.7; } if (this.y > ((Stage.height - this.rad) - 10)) { this.y = (Stage.height - this.rad) - 11; this.xv = this.xv * 0.7; this.yv = this.yv * -0.7; this.rv = this.rv * 0.7; this.rv = this.rv + ((this.xv * 0.065) / this.rad); } if (this.y < (this.rad + 10)) { this.y = this.rad + 11; this.xv = this.xv * 0.7; this.yv = this.yv * -0.7; this.rv = this.rv * 0.7; this.rv = this.rv + ((this.xv * 0.065) / this.rad); } this._alpha = this.life * 5; if (this.life <= 0) { this.removeMovieClip(); } this.life--; } }; } function genGore(targ) { var _local6 = Math.sqrt((targ.xv * targ.xv) + (targ.yv * targ.yv)); var _local2 = (Math.random() * 10) + (_local6 * 0.25); var _local3 = (Math.random() * Math.PI) * 2; var _local5 = (_local2 * Math.sin(_local3)) + (targ.xv * 0.5); var _local4 = (_local2 * Math.cos(_local3)) + (targ.yv * 0.5); gore((targ.x + (Math.random() * targ.rad)) - (targ.rad * 0.5), (targ.y + (Math.random() * targ.rad)) - (targ.rad * 0.5), _local5, _local4, (Math.random() * 0.5) + 0.75); } function popGoreID(id) { goreArray.splice(id, 1); var _local1 = id; while (_local1 < goreArray.length) { goreArray[_local1].id--; _local1++; } } function gore(xx, yy, xvv, yvv, sc) { if (modeContainer.gore) { dep++; var _local7 = _root.particles.attachMovie("gore", "gore" + dep, dep, {_xscale:sc * 100, _yscale:sc * 100, sc:sc}); _local7.id = goreArray.push(_local7) - 1; _local7.life = 80; _local7.x = xx; _local7.y = yy; _local7._x = lag(_local7.x); _local7._y = lag(_local7.y); _local7.rot = (Math.random() * Math.PI) * 2; _local7._rotation = _local7.rot; _local7.rv = (Math.random() * 0.3) - 0.15; _local7.xv = xvv; _local7.yv = yvv; _local7._alpha = 50; _local7.rad = 3 * sc; _local7.frozen = false; _local7.gotoAndStop(Math.floor((Math.random() * 3) + 1)); _local7.stuckTarget = undefined; _local7.stuck = false; _local7.sx = 0; _local7.sy = 0; _local7.sr = 0; _local7.sd = 0; _local7.srot = 0; _local7.brot = 0; _local7.timer = 5; _local7.frozenTime = 0; _local7.frozenSpeed = (Math.random() * 0.75) + 0.15; _local7.a = Math.random(); _local7.oldStuck = false; _local7.frameTick = function () { if (!_root.pause) { this.oldStuck = this.stuck; if ((!this.frozen) && (!this.stuck)) { this.rot = this.rot + this.rv; this._rotation = (this.rot * 180) / Math.PI; this.ox = this.x; this.oy = this.y; this.x = this.x + this.xv; this.y = this.y + this.yv; this.yv = this.yv + _root.grav; this._x = _root.lag(this.x); this._y = _root.lag(this.y); if (this.timer <= 0) { var _local3 = 0; while (_local3 < _root.objectList.length) { if (Math.random() > 0.5) { var _local5 = this.x - _root.objectList[_local3].targ.x; var _local4 = this.y - _root.objectList[_local3].targ.y; var _local6 = this.rad + _root.objectList[_local3].targ.rad; if (_root.objectList[_local3].targ == _root.fist) { _local6 = _local6 * 0.5; } if (((_local5 * _local5) + (_local4 * _local4)) < ((_local6 * _local6) * 0.5)) { this.stuckTarget = _root.objectList[_local3].targ; this.stuck = true; this.xv = 0; this.yv = 0; this.sx = _local5; this.sy = _local4; this.sd = Math.sqrt((_local5 * _local5) + (_local4 * _local4)); this.sr = Math.atan2(_local5, _local4); this.srot = this.rot; this.brot = _root.objectList[_local3].targ._rotation; break; } } _local3++; } } if (this.x > ((Stage.width - this.rad) - 7)) { this.x = (Stage.width - this.rad) - 8; if (Math.random() < 0.6) { this.xv = this.xv * -0.3; this.yv = this.yv * 0.3; this.rv = this.rv * 0.7; } else { this.frozen = true; this.xv = 0; this.yv = 0; } } if (this.x < (this.rad + 7)) { this.x = this.rad + 8; if (Math.random() < 0.6) { this.xv = this.xv * -0.3; this.yv = this.yv * 0.3; this.rv = this.rv * 0.7; } else { this.frozen = true; this.xv = 0; this.yv = 0; } } if (this.y > ((Stage.height - this.rad) - 7)) { this.y = (Stage.height - this.rad) - 8; if (Math.random() < 0.5) { this.xv = this.xv * 0.3; this.yv = this.yv * -0.3; this.rv = this.rv * 0.7; this.rv = this.rv + ((this.xv * 0.065) / this.rad); } else { this.frozen = true; this.xv = 0; this.yv = 0; } } if (!_root.modeContainer.openCeil) { if (this.y < (this.rad + 7)) { this.y = this.rad + 8; this.xv = this.xv * 0.7; this.yv = this.yv * -0.7; this.rv = this.rv * 0.7; this.rv = this.rv + ((this.xv * 0.065) / this.rad); } } } if (this.frozen) { this.y = this.y + Math.min(this.frozenTime * 0.025, this.frozenSpeed); this.y = Math.min(this.y, Stage.height - 10); this._y = _root.lag(this.y); this._x = _root.lag(this.x); this.frozenTime++; this.life = Math.min(this.life, 35); } if (this.stuck && (!this.frozen)) { if (this.stuckTarget.rad == undefined) { this.stuck = false; } else { this.ox = this.x; this.oy = this.y; if ((((this.stuckTarget == _root.head) || (this.stuckTarget == _root.body)) || (this.stuckTarget == _root.rLeg)) || (this.stuckTarget == _root.lLeg)) { var _local8 = (this.sr - ((this.stuckTarget.absRot * Math.PI) / 180)) + this.brot; } else { var _local8 = (this.sr - ((this.stuckTarget._rotation * Math.PI) / 180)) + this.brot; } var _local7 = this.sd; var _local10 = _local7 * Math.sin(_local8); var _local9 = _local7 * Math.cos(_local8); this.x = this.stuckTarget.x + _local10; this.y = this.stuckTarget.y + _local9; this._x = _root.lag(this.x); this._y = _root.lag(this.y); this.rot = this.srot + this.brot; this._rotation = (this.rot * 180) / Math.PI; } } this._alpha = Math.min(this.life * 3, 100) * this.a; if (this.life <= 0) { _root.popGoreID(this.id); this.removeMovieClip(); } this.life--; this.timer--; if ((!this.oldStuck) && (this.stuck)) { this.life = this.life + 200; } } }; } } function processGore() { for (var _local1 in goreArray) { goreArray[_local1].frameTick(); } } function fireClip(xx, yy, xxv, yyv, dis, lif, scc, gra) { dep++; var _local3 = _root.particles.createEmptyMovieClip("fireClip" + dep, dep); _local3.x = xx; _local3.y = yy; _local3._x = lag(_local3.x); _local3._y = lag(_local3.y); _local3.xv = xxv; _local3.yv = yyv; _local3.disappear = dis; _local3.life = lif; _local3.sc = scc; _local3.gravity = gra; _local3.onEnterFrame = function () { if (!_root.pause) { this.ox = this.x; this.oy = this.y; this.x = this.x + this.xv; this.y = this.y + this.yv; this._x = _root.lag(this.x); this._y = _root.lag(this.y); this.yv = this.yv + (_root.grav * this.gravity); _root.fireEffect(this.x, this.y, this.sc, this.ox, this.oy); for (var _local3 in _root.objectList) { if (_root.distance(this.x, this.y, _root.objectList[_local3].targ.x, _root.objectList[_local3].targ.y) < _root.objectList[_local3].targ.rad) { if (_root.objectList[_local3].targ.flammable && (!_root.objectList[_local3].targ.onFire)) { _root.objectList[_local3].targ.onFire = true; _root.objectList[_local3].targ.fireStrength = 10; } if (this.disappear) { this.removeMovieClip(); } } } if (((((this.x > (Stage.width - 10)) || (this.x < 10)) || (this.y > (Stage.height - 10))) || (this.y < 10)) || (this.life <= 0)) { this.removeMovieClip(); } this.life--; } }; } function fireGlowClip(xx, yy, xxv, yyv, dis, lif, scc, gra, stsc, ensc) { dep++; if (modeContainer.pyroMode) { var tflame = _root.particles.attachMovie("circleFire", "fireGlowClip" + dep, dep); } else if (gQuality) { var tflame = _root.particles.attachMovie("fireGlowClip", "fireGlowClip" + dep, dep); } else { var tflame = _root.particles.attachMovie("fireGlowClipLow", "fireGlowClip" + dep, dep); } tflame.x = xx; tflame.y = yy; tflame._x = lag(tflame.x); tflame._y = lag(tflame.y); tflame.xv = xxv; tflame.yv = yyv; tflame.rv = (Math.random() * 0.2) - 0.1; tflame.rot = (Math.random() * Math.PI) * 2; tflame._rotation = tflame.rot * 57.2957795130823; tflame._xscale = stsc * 100; tflame._yscale = tflame._xscale; tflame.disappear = dis; tflame.life = lif; tflame.totalLife = lif; tflame.sc = scc; tflame.gravity = gra; tflame.startScale = stsc; tflame.endScale = ensc; tflame.onEnterFrame = function () { if (!_root.pause) { this._alpha = (this.life / this.totalLife) * 100; this.ox = this.x; this.oy = this.y; this.x = this.x + this.xv; this.y = this.y + this.yv; this._x = _root.lag(this.x); this._y = _root.lag(this.y); this.rot = this.rot + this.rv; this._rotation = this.rot * 57.2957795130823; this.yv = this.yv + (_root.grav * this.gravity); this._xscale = ((tflame.startScale * (this.life / this.totalLife)) + (tflame.endScale * (1 - (this.life / this.totalLife)))) * 100; this._yscale = this._xscale; for (var _local3 in _root.objectList) { if (_root.distance(this.x, this.y, _root.objectList[_local3].targ.x, _root.objectList[_local3].targ.y) < _root.objectList[_local3].targ.rad) { if (_root.objectList[_local3].targ.flammable && (!_root.objectList[_local3].targ.onFire)) { _root.objectList[_local3].targ.onFire = true; _root.objectList[_local3].targ.fireStrength = 10; } if (this.disappear) { this.removeMovieClip(); } } } if (((((this.x > (Stage.width - 10)) || (this.x < 10)) || (this.y > (Stage.height - 10))) || (this.y < 10)) || (this.life <= 0)) { this.removeMovieClip(); } this.life--; } }; } function fireEffect(xx, yy, sc, ox, oy) { sc = Math.max(sc, 0.625); dep++; var _local3 = _root.particles.attachMovie("flame", "flame" + dep, dep, {_xscale:(sc * 50) * (Math.random() + 0.5), _yscale:(sc * 30) * (Math.random() + 0.2), _visible:true, sc:sc, go:false}); _local3._rotation = (Math.atan((ox - xx) * 0.5) * 120) / Math.PI; _local3.x = xx + ((((Math.random() * 2) - 1) * sc) * 10); _local3.y = yy + ((((Math.random() * 2) - 1) * sc) * 6); _local3._x = lag(_local3.x); _local3._y = lag(_local3.y); _local3._alpha = Math.min(175 - (Math.abs((Math.atan((ox - xx) * 0.5) * 90) / Math.PI) * 2), 100); _local3.xv = ((Math.random() * 4) - 2) * sc; _local3.yv = (((-Math.random()) * 8) - 4) * sc; _local3.gotoAndStop(Math.ceil(Math.random() * 3)); _local3.onEnterFrame = function () { if (!_root.pause) { if (go) { this.x = this.x + this.xv; this.y = this.y + this.yv; this._x = _root.lag(this.x); this._y = _root.lag(this.y); this.xv = this.xv * 0.9; this._xscale = this._xscale * 0.9; this._yscale = this._yscale + sc; this._alpha = this._alpha - ((20 * (3 - gQuality)) * go); if (!gQuality) { this._alpha = 0; } if (this._alpha <= 0) { this.removeMovieClip(); } } go = true; } }; } function Vector(x1, y1, x2, y2) { this.x1 = x1; this.y1 = y1; this.x2 = x2; this.y2 = y2; this.magnitude = function () { var _local3 = this.x2 - this.x1; var _local2 = this.y2 - this.y1; return(Math.sqrt((_local3 * _local3) + (_local2 * _local2))); }; this.copy = function () { var _local2 = new Vector(this.x1, this.y1, this.x2, this.y2); return(_local2); }; this.normalize = function () { var _local3 = this.x2 - this.x1; var _local2 = this.y2 - this.y1; var _local4 = this.magnitude(); _local3 = _local3 / _local4; _local2 = _local2 / _local4; this.x2 = this.x1 + _local3; this.y2 = this.y1 + _local2; return(this); }; this.dot = function (tv) { return(((this.x2 - this.x1) * (tv.x2 - tv.x1)) + ((this.y2 - this.y1) * (tv.y2 - tv.y1))); }; this.times = function (sc) { var _local3 = this.x2 - this.x1; var _local2 = this.y2 - this.y1; _local3 = _local3 * times; _local2 = _local2 * times; this.x2 = this.x1 + _local3; this.y2 = this.y1 + _local2; }; } function circleCollide(ball1, ball2) { var _local40 = ball1.x; var _local36 = ball1.y; var _local37 = ball2.x; var _local34 = ball2.y; var _local29 = ball1.xv; var _local31 = ball1.yv; var _local28 = ball2.xv; var _local30 = ball2.yv; var _local16 = ball1.x - ball2.x; var _local15 = ball1.y - ball2.y; var _local43 = Math.sqrt((_local16 * _local16) + (_local15 * _local15)); var _local32 = ball1.rad + ball2.rad; var _local22 = Math.atan2(_local15, _local16); var _local9 = Math.cos(_local22); var _local8 = Math.sin(_local22); var _local27 = (_local9 * ball1.xv) + (_local8 * ball1.yv); var _local24 = (_local9 * ball1.yv) - (_local8 * ball1.xv); var _local25 = (_local9 * ball2.xv) + (_local8 * ball2.yv); var _local23 = (_local9 * ball2.yv) - (_local8 * ball2.xv); var _local33 = (ball1.mass * _local27) + (ball2.mass * _local25); var _local17 = _local27 - _local25; var _local14 = (_local33 - (ball2.mass * _local17)) / (ball1.mass + ball2.mass); var _local26 = _local17 + _local14; var _local38 = ball1.xv; var _local41 = ball1.yv; var _local35 = ball2.xv; var _local39 = ball2.yv; if (objectList[ball1.id].type != "immovable") { ball1.xv = ((_local9 * _local14) * (-ball1.bounce)) - (_local8 * _local24); ball1.yv = (_local9 * _local24) + ((_local8 * _local14) * (-ball1.bounce)); } if (objectList[ball2.id].type != "immovable") { ball2.xv = ((_local9 * _local26) * (-ball2.bounce)) - (_local8 * _local23); ball2.yv = (_local9 * _local23) + ((_local8 * _local26) * (-ball2.bounce)); } var _local19 = (ball1.x + ball2.x) / 2; var _local18 = (ball1.y + ball2.y) / 2; var _local12 = _local32 * 0.5025; if (objectList[ball1.id].type != "immovable") { ball1.x = _local19 + (_local9 * _local12); ball1.y = _local18 + (_local8 * _local12); } if (objectList[ball2.id].type != "immovable") { ball2.x = _local19 - (_local9 * _local12); ball2.y = _local18 - (_local8 * _local12); } if ((objectList[ball1.id].type == "immovable") && (objectList[ball2.id].group != "buddy")) { ball2.xv = ball2.xv + (ball1.xv * 0.5); ball2.yv = ball2.yv + (ball1.xv * 0.5); } if ((objectList[ball2.id].type == "immovable") && (objectList[ball1.id].group != "buddy")) { ball1.xv = ball1.xv + (ball2.xv * 0.5); ball1.yv = ball1.yv + (ball2.xv * 0.5); } ball1.rv = (ball1.rv * 0.5) - (ball2.rv * 0.5); ball2.rv = (ball2.rv * 0.5) - (ball1.rv * 0.5); var _local42 = false; if (objectList[ball1.id].group == "buddy") { var _local6 = ball1; var _local4 = ball2; var _local11 = (_local35 * _local4.mass) / _local6.mass; var _local10 = (_local39 * _local4.mass) / _local6.mass; if (objectList[_local4.id].type == "immovable") { for (var _local13 in bodyParts) { bodyParts[_local13].xv = bodyParts[_local13].xv + (_local4.xv * 0.35); bodyParts[_local13].yv = bodyParts[_local13].yv + (_local4.yv * 0.35); } } _local42 = true; } else if (objectList[ball2.id].group == "buddy") { var _local6 = ball2; var _local4 = ball1; var _local11 = (_local38 * _local4.mass) / _local6.mass; var _local10 = (_local41 * _local4.mass) / _local6.mass; _local42 = true; if (objectList[_local4.id].type == "immovable") { for (var _local13 in bodyParts) { bodyParts[_local13].xv = bodyParts[_local13].xv + (_local4.xv * 0.35); bodyParts[_local13].yv = bodyParts[_local13].yv + (_local4.yv * 0.35); } } } if (_local42) { _local6.xv = _local6.xv + _local11; _local6.yv = _local6.yv + _local10; if (_local6 == head) { var _local21 = Math.atan2(_local4.y - body.y, _local4.x - body.x); var _local20 = Math.atan2((_local4.y - body.y) - _local4.yv, (_local4.x - body.x) - _local4.xv); rv = rv + (Math.min((Math.abs(_local20 - _local21) * 0.5) * _local4.mass, 0.4) * _root.sign(_local20 - _local21)); var _local7 = Math.sqrt((_local11 * _local11) + (_local10 * _local10)); if (_local7 > 25) { if ((!buddyHit) && (_local4.hitTimer <= 0)) { addCash(Math.max(_local7 * 0.02, 3)); addEmotion(Math.min((-_local7) * 0.05, -2)); buddyHit = true; if (_local4 != wreckingBall) { _local4.hitTimer = 60; } } punchSound(_local7 * 0.2, 0.75); var _local5 = 0; while (_local5 <= ((_local7 * 0.1) * _local4.mass)) { genGore(_local6); _local5++; } } if (awake) { if (_local7 > 50) { addEmotion(-2); setModifier("out", 300); if (_local4.objectType == "bowlball") { stats.values.bowlballKnockouts++; } } } } else if (_local6 == body) { var _local7 = Math.sqrt((_local11 * _local11) + (_local10 * _local10)); if (_local7 > 5) { if ((!buddyHit) && (_local4.hitTimer <= 0)) { addCash(Math.min(_local7 * 0.02, 2)); addEmotion(Math.min((-_local7) * 0.05, -2)); buddyHit = true; _local4.hitTimer = 60; } punchSound(_local7 * 0.5, 0.75); } if (_local7 > 10) { if (awake) { addEmotion(-1); setModifier("scared", 350); } var _local5 = 0; while (_local5 <= ((_local7 * 0.1) * _local4.mass)) { genGore(_local6); _local5++; } } } } if (objectList[ball1.id].type == "immovable") { ball1.x = _local40; ball1.y = _local36; ball1.xv = _local29; ball1.yv = _local31; } if (objectList[ball2.id].type == "immovable") { ball2.x = _local37; ball2.y = _local34; ball2.xv = _local28; ball2.yv = _local30; } } function doObjectPhysics() { for (var _local10 in objectList) { objectList[_local10].targ.frameTick(); if (modeContainer.earthquake) { if ((objectList[_local10].targ.y > ((Stage.height - 15) - objectList[_local10].targ.rad)) || (((objectList[_local10].group == "buddy") && (onGround)) && (objectList[_local10].targ.objectType != "fist"))) { if (objectList[_local10].type == "immovable") { objectList[_local10].targ.axv = objectList[_local10].targ.axv + ((Math.random() * 6) - 3); objectList[_local10].targ.ayv = objectList[_local10].targ.ayv + ((Math.random() * 10) - 5); } else { objectList[_local10].targ.xv = objectList[_local10].targ.xv + ((Math.random() * 6) - 3); objectList[_local10].targ.yv = objectList[_local10].targ.yv + ((Math.random() * 10) - 5); } } shake = Math.max(shake, 10); } if (objectList[_local10].targ.holdExplode) { objectList[_local10].targ.explode = true; } } plus = 0; var _local33 = 0; if (physicsQuality == "Minimum") { _local33 = 0; } else if (physicsQuality == "Half") { _local33 = 0.5; } else if (physicsQuality == "Full") { _local33 = 1; } if (explodeTimer > 0) { _local33 = 0; } if (!accPhys) { var _local10 = 0; while (_local10 < (objectList.length - 1)) { var _local8 = plus; while (_local8 <= objectList.length) { var _local1 = objectList[_local10].targ; var _local2 = objectList[_local8].targ; if ((((objectList[_local10].type == "circle") || (objectList[_local10].type == "missile")) || (objectList[_local10].type == "immovable")) && (((objectList[_local8].type == "circle") || (objectList[_local8].type == "missile")) || (objectList[_local8].type == "immovable"))) { if ((((grabTarget != _local1) && (grabTarget != _local2)) && (_local1.objectType != "vortex")) && (_local2.objectType != "vortex")) { if (objectList[_local10].group != objectList[_local8].group) { var _local27 = Math.abs(_local1.x - _local1.ox) + Math.abs(_local2.x - _local2.ox); var _local26 = Math.abs(_local1.y - _local1.oy) + Math.abs(_local2.y - _local2.oy); var _local30 = Math.min(_local1.rad, _local2.rad); var _local14 = Math.max(Math.ceil(_local33 * Math.abs(Math.sqrt((_local27 * _local27) + (_local26 * _local26)) / _local30)), 1); var _local32 = false; var _local11 = 1; while (_local11 <= _local14) { var _local7 = _local11 / _local14; var _local4 = (_local1.x * _local7) + (_local1.ox * (1 - _local7)); var _local3 = (_local2.x * _local7) + (_local2.ox * (1 - _local7)); var _local6 = (_local1.y * _local7) + (_local1.oy * (1 - _local7)); var _local5 = (_local2.y * _local7) + (_local2.oy * (1 - _local7)); var _local17 = _local4 - _local3; var _local16 = _local6 - _local5; var _local13 = _local1.rad + _local2.rad; var _local29 = ((_local17 * _local17) + (_local16 * _local16)) < (_local13 * _local13); if (_local29) { _local1.x = _local4; _local1.y = _local6; _local2.x = _local3; _local2.y = _local5; if ((_local1.objectType == "orb") && (objectList[_local8].group == "buddy")) { _local1.xv = _local1.xv * -0.85; _local1.yv = _local1.yv * -0.85; } if ((_local2.objectType == "orb") && (objectList[_local10].group == "buddy")) { _local2.xv = _local2.xv * -0.85; _local2.yv = _local2.yv * -0.85; } if (((objectList[_local10].type == "circle") || (objectList[_local10].type == "immovable")) && ((objectList[_local8].type == "circle") || (objectList[_local8].type == "immovable"))) { if (((_local2.objectType == "mine") && _local2.stuck) || (_local2.objectType == "molotov")) { _local2.holdExplode = true; if (_local2.objectType == "molotov") { circleCollide(_local1, _local2); } if (_local1.objectType == "molotov") { _local1.holdExplode = true; } } else if (((_local1.objectType == "mine") && _local1.stuck) || (_local1.objectType == "molotov")) { _local1.holdExplode = true; if (_local1.objectType == "molotov") { circleCollide(_local1, _local2); } if (_local2.objectType == "molotov") { _local2.holdExplode = true; } } else { circleCollide(_local1, _local2); if (_local1.flammable && _local2.flammable) { if (_local1.onFire || _local2.onFire) { _local1.onFire = true; _local2.onFire = true; var _local21 = Math.max(_local1.fireStrength, _local2.fireStrength); _local1.fireStrength = _local21; _local2.fireStrength = _local21; var _local18 = true; } else { var _local18 = false; } } if (_local1.objectType == "fireball") { if (_local18) { _local10 = 0; while (_local10 <= (gQuality * 6)) { fireEffect(_local1.x, _local1.y, 2, _local1.x, _local1.y); _local10++; } } popObject(_local1); _local1.removeMovieClip(); } if (_local2.objectType == "fireball") { if (_local18) { _local10 = 0; while (_local10 <= (gQuality * 6)) { fireEffect(_local2.x, _local2.y, 2, _local2.x, _local2.y); _local10++; } } popObject(_local2); _local2.removeMovieClip(); } } } else if ((objectList[_local10].type == "missile") && (objectList[_local8].type == "circle")) { _local1.x = _local4; _local1.y = _local6; popObject(_local1); _local1.removeMovieClip(); explode(_local4, _local6, 0.85); } else if ((objectList[_local10].type == "circle") && (objectList[_local8].type == "missile")) { _local2.x = _local3; _local2.y = _local5; popObject(_local2); _local2.removeMovieClip(); explode(_local3, _local5, 0.85); } else if ((objectList[_local10].type == "missile") && (objectList[_local8].type == "missile")) { _local2.x = _local3; _local2.y = _local5; popObject(_local2); _local2.removeMovieClip(); explode(_local3, _local5, 0.85); _local1.x = _local4; _local1.y = _local6; popObject(_local1); _local1.removeMovieClip(); explode(_local4, _local6, 0.85); } _local32 = true; } if (_local32) { break; } _local11++; } } } } _local8++; } plus++; _local10++; } } else { var _local10 = 0; while (_local10 < (objectList.length - 1)) { var _local8 = plus; while (_local8 <= objectList.length) { var _local1 = objectList[_local10].targ; var _local2 = objectList[_local8].targ; if ((((objectList[_local10].type == "circle") || (objectList[_local10].type == "missile")) || (objectList[_local10].type == "immovable")) && (((objectList[_local8].type == "circle") || (objectList[_local8].type == "missile")) || (objectList[_local8].type == "immovable"))) { if ((((grabTarget != _local1) && (grabTarget != _local2)) && (_local1.objectType != "vortex")) && (_local2.objectType != "vortex")) { if (objectList[_local10].group != objectList[_local8].group) { var _local17 = _local1.x - _local2.x; var _local16 = _local1.y - _local2.y; movevec = new Vector(_local1.ox, _local1.oy, _local1.x - _local2.x, _local1.y - _local2.y); var _local31 = Math.sqrt((_local17 * _local17) + (_local16 * _local16)); var _local22 = _local1.rad + _local2.rad; var _local20 = movevec.magnitude(); if (_local20 < _local31) { break; } n = movevec.copy(); n.normalize(); c = new Vector(_local1.ox, _local1.oy, _local2.ox, _local2.oy); var _local12 = n.dot(c); if (_local12 < 0) { break; } var _local24 = c.magnitude(); var _local28 = (_local24 * _local24) - (_local12 * _local12); var _local25 = _local22 * _local22; if (_local28 >= _local25) { break; } var _local15 = _local25 - _local28; if (_local15 < 0) { break; } var _local19 = _local12 - Math.sqrt(_local15); var _local23 = movevec.magnitude(); if (_local23 < _local19) { break; } movevec.normalize(); movevec.times(_local19); var _local9 = _local23 / _local20; _local1.x = (_local1.x * _local9) + (_local1.ox * (1 - _local9)); _local1.y = (_local1.y * _local9) + (_local1.oy * (1 - _local9)); _local2.x = (_local2.x * _local9) + (_local2.ox * (1 - _local9)); _local2.y = (_local2.y * _local9) + (_local2.oy * (1 - _local9)); var _local29 = true; zapGraphic(_local1.x, _local1.y, 0.5, 0.05); zapGraphic(_local2.x, _local2.y, 0.5, 0.05); if (_local29) { if ((_local1.objectType == "orb") && (objectList[_local8].group == "buddy")) { _local1.xv = _local1.xv * -0.85; _local1.yv = _local1.yv * -0.85; } if ((_local2.objectType == "orb") && (objectList[_local10].group == "buddy")) { _local2.xv = _local2.xv * -0.85; _local2.yv = _local2.yv * -0.85; } if (((objectList[_local10].type == "circle") || (objectList[_local10].type == "immovable")) && ((objectList[_local8].type == "circle") || (objectList[_local8].type == "immovable"))) { if (((_local2.objectType == "mine") && _local2.stuck) || (_local2.objectType == "molotov")) { _local2.holdExplode = true; if (_local2.objectType == "molotov") { circleCollide(_local1, _local2); } if (_local1.objectType == "molotov") { _local1.holdExplode = true; } } else if (((_local1.objectType == "mine") && _local1.stuck) || (_local1.objectType == "molotov")) { _local1.holdExplode = true; if (_local1.objectType == "molotov") { circleCollide(_local1, _local2); } if (_local2.objectType == "molotov") { _local2.holdExplode = true; } } else { circleCollide(_local1, _local2); if (_local1.flammable && _local2.flammable) { if (_local1.onFire || _local2.onFire) { _local1.onFire = true; _local2.onFire = true; var _local21 = Math.max(_local1.fireStrength, _local2.fireStrength); _local1.fireStrength = _local21; _local2.fireStrength = _local21; var _local18 = true; } else { var _local18 = false; } } if (_local1.objectType == "fireball") { if (_local18) { _local10 = 0; while (_local10 <= (gQuality * 6)) { fireEffect(_local1.x, _local1.y, 2, _local1.x, _local1.y); _local10++; } } popObject(_local1); _local1.removeMovieClip(); } if (_local2.objectType == "fireball") { if (_local18) { _local10 = 0; while (_local10 <= (gQuality * 6)) { fireEffect(_local2.x, _local2.y, 2, _local2.x, _local2.y); _local10++; } } popObject(_local2); _local2.removeMovieClip(); } } } else if ((objectList[_local10].type == "missile") && (objectList[_local8].type == "circle")) { _local1.x = _local4; _local1.y = _local6; popObject(_local1); _local1.removeMovieClip(); explode(_local4, _local6, 0.85); } else if ((objectList[_local10].type == "circle") && (objectList[_local8].type == "missile")) { _local2.x = _local3; _local2.y = _local5; popObject(_local2); _local2.removeMovieClip(); explode(_local3, _local5, 0.85); } else if ((objectList[_local10].type == "missile") && (objectList[_local8].type == "missile")) { _local2.x = _local3; _local2.y = _local5; popObject(_local2); _local2.removeMovieClip(); explode(_local3, _local5, 0.85); _local1.x = _local4; _local1.y = _local6; popObject(_local1); _local1.removeMovieClip(); explode(_local4, _local6, 0.85); } var _local32 = true; } } } } _local8++; } plus++; _local10++; } } } function clearDestObjects() { for (var _local2 in objectList) { if (!objectList[_local2].unDest) { var _local1 = objectList[_local2].targ; popObject(_local1); _local1.removeMovieClip(); } } } function clearSpecialObjects() { for (var _local2 in specialObjects) { var _local1 = specialVars[specialObjects[_local2]].targ; popObject(_local1); _local1.removeMovieClip(); } specialObjects = []; specialVars = {}; } function setBuddyXY(x, y) { body.x = x; body.y = y; lArm.pd = lArm.d; lArm.pr = lArm.r + bodyRot; lArm.px = lArm.pd * Math.sin(lArm.pr + (Math.PI/2)); lArm.py = lArm.pd * Math.cos(lArm.pr + (Math.PI/2)); rArm.pd = rArm.d; rArm.pr = rArm.r + bodyRot; rArm.px = rArm.pd * Math.sin(rArm.pr + (Math.PI/2)); rArm.py = rArm.pd * Math.cos(rArm.pr + (Math.PI/2)); lLeg.pd = lLeg.d; lLeg.pr = lLeg.r + bodyRot; lLeg.px = lLeg.pd * Math.sin(lLeg.pr + (Math.PI/2)); lLeg.py = lLeg.pd * Math.cos(lLeg.pr + (Math.PI/2)); rLeg.pd = rLeg.d; rLeg.pr = rLeg.r + bodyRot; rLeg.px = rLeg.pd * Math.sin(rLeg.pr + (Math.PI/2)); rLeg.py = rLeg.pd * Math.cos(rLeg.pr + (Math.PI/2)); head.pd = head.d * (!isAClock); head.pr = head.r + bodyRot; head.px = head.pd * Math.sin(head.pr + (Math.PI/2)); head.py = head.pd * Math.cos(head.pr + (Math.PI/2)); lArm.x = lArm.px + body.x; lArm.y = lArm.py + body.y; rArm.x = rArm.px + body.x; rArm.y = rArm.py + body.y; lLeg.x = lLeg.px + body.x; lLeg.y = lLeg.py + body.y; rLeg.x = rLeg.px + body.x; rLeg.y = rLeg.py + body.y; head.x = head.px + body.x; head.y = head.py + body.y; } function doBodyPhysics() { if (talking) { head.yv = head.yv + Math.sin(time * 0.65); if (isAClock) { clockTalk._visible = true; clockTalk.x = head.x; clockTalk.y = head.y; cam(clockTalk); } else { clockTalk._visible = false; } } else { clockTalk._visible = false; } if ((!awake) || (!grabbing)) { stopGrabbing(); } if (body.onFire) { head.onFire = true; rLeg.onFire = true; lLeg.onFire = true; stopGrabbing(); } if (body.oldOnFire != body.onFire) { addEmotion(-2); addCash(10); } if (head.oldOnFire != head.onFire) { addEmotion(-2); addCash(4); } if (rLeg.oldOnFire != rLeg.onFire) { addEmotion(-1); addCash(2); } if (lLeg.oldOnFire != lLeg.onFire) { addEmotion(-1); addCash(2); } body.oldOnFire = body.onFire; head.oldOnFire = head.onFire; rLeg.oldOnFire = rLeg.onFire; lLeg.oldOnFire = lLeg.onFire; if (grabTarget.onFire) { body.onFire = true; } rv = rv * (0.96 - (onGround * 0.1)); bodyRot = bodyRot + rv; if (bodyRot < -3.14159265358979) { bodyRot = (-(((-bodyRot) % (Math.PI*2)) - Math.PI)) + Math.PI; } else { bodyRot = ((bodyRot + Math.PI) % (Math.PI*2)) - Math.PI; } if (awake && (getValueActionName() != "seizure")) { bodyRot = bodyRot * (1 - (onGround * 0.1)); } else if (onGround) { if ((bodyRot < (Math.PI/2)) || (bodyRot > 4.71238898038469)) { if (bodyRot > 0) { bodyRot = ((bodyRot - (Math.PI/2)) * 0.95) + (Math.PI/2); } else { bodyRot = ((bodyRot + (Math.PI/2)) * 0.95) - (Math.PI/2); } } } lArm.pd = lArm.d; lArm.pr = lArm.r + bodyRot; lArm.px = lArm.pd * Math.sin(lArm.pr + (Math.PI/2)); lArm.py = lArm.pd * Math.cos(lArm.pr + (Math.PI/2)); rArm.pd = rArm.d; rArm.pr = rArm.r + bodyRot; rArm.px = rArm.pd * Math.sin(rArm.pr + (Math.PI/2)); rArm.py = rArm.pd * Math.cos(rArm.pr + (Math.PI/2)); lLeg.pd = lLeg.d; lLeg.pr = lLeg.r + bodyRot; lLeg.px = lLeg.pd * Math.sin(lLeg.pr + (Math.PI/2)); lLeg.py = lLeg.pd * Math.cos(lLeg.pr + (Math.PI/2)); rLeg.pd = rLeg.d; rLeg.pr = rLeg.r + bodyRot; rLeg.px = rLeg.pd * Math.sin(rLeg.pr + (Math.PI/2)); rLeg.py = rLeg.pd * Math.cos(rLeg.pr + (Math.PI/2)); head.pd = head.d * (!isAClock); head.pr = head.r + bodyRot; head.px = head.pd * Math.sin(head.pr + (Math.PI/2)); head.py = head.pd * Math.cos(head.pr + (Math.PI/2)); lArm.xv = lArm.xv + ((((lArm.px - lArm.x) + body.x) * damp) * 1.5); lArm.yv = lArm.yv + (((((lArm.py - lArm.y) + body.y) * damp) * 1.5) + grav); rArm.xv = rArm.xv + ((((rArm.px - rArm.x) + body.x) * damp) * 1.5); rArm.yv = rArm.yv + (((((rArm.py - rArm.y) + body.y) * damp) * 1.5) + grav); lLeg.xv = lLeg.xv + ((((lLeg.px - lLeg.x) + body.x) * damp) * 0.5); lLeg.yv = lLeg.yv + (((((lLeg.py - lLeg.y) + body.y) * damp) * 0.5) + grav); rLeg.xv = rLeg.xv + ((((rLeg.px - rLeg.x) + body.x) * damp) * 0.5); rLeg.yv = rLeg.yv + (((((rLeg.py - rLeg.y) + body.y) * damp) * 0.5) + grav); head.xv = head.xv + ((((head.px - head.x) + body.x) * damp) * (2.5 - (isAClock * 2))); head.yv = head.yv + (((((head.py - head.y) + body.y) * damp) * (2.5 - (isAClock * 2))) + (grav * (!isAClock))); if (rigidPhysics) { for (var _local3 in bodyParts) { if (bodyParts[_local3] != body) { if ((bodyParts[_local3] != rArm) || (!grabbingMouse)) { var _local5 = bodyParts[_local3].x - body.x; var _local6 = bodyParts[_local3].y - body.y; var _local9 = _local5 - bodyParts[_local3].px; var _local8 = _local6 - bodyParts[_local3].py; var _local13 = 35; if (Math.sqrt((_local9 * _local9) + (_local8 * _local8)) > _local13) { var _local14 = Math.atan2(_local9, _local8); var _local10 = _local13 - 1; bodyParts[_local3].x = ((_local10 * Math.sin(_local14)) + body.x) + bodyParts[_local3].px; bodyParts[_local3].y = ((_local10 * Math.cos(_local14)) + body.y) + bodyParts[_local3].py; } } } } } if (isAClock) { var _local9 = head.x - body.x; var _local8 = head.y - body.y; var _local13 = 15; if (Math.sqrt((_local9 * _local9) + (_local8 * _local8)) > _local13) { var _local14 = Math.atan2(_local9, _local8); var _local10 = _local13; head.x = (_local10 * Math.sin(_local14)) + body.x; head.y = (_local10 * Math.cos(_local14)) + body.y; } } body.xv = body.xv + ((((-(((((((body.x - head.x) + head.px) * 2) + ((body.x - lArm.x) + lArm.px)) + ((body.x - rArm.x) + rArm.px)) + (((body.x - lLeg.x) + lLeg.px) * (1 + ((lLeg.y > (Stage.height - 20)) * 2)))) + (((body.x - rLeg.x) + rLeg.px) * (1 + ((rLeg.y > (Stage.height - 20)) * 2))))) / 5) * damp) * 1.75); body.yv = body.yv + ((((-(((((((body.y - head.y) + head.py) * 2) + ((body.y - lArm.y) + lArm.py)) + ((body.y - rArm.y) + rArm.py)) + (((body.y - lLeg.y) + lLeg.py) * 2)) + (((body.y - rLeg.y) + rLeg.py) * 2))) / 5) * damp) * 1.75); body.yv = body.yv + grav; if (improvedPhysics) { if (onGround) { body.xv = body.xv * slow; lLeg.xv = lLeg.xv * slow; rLeg.xv = rLeg.xv * slow; } for (var _local3 in bodyParts) { if (bodyParts[_local3] != body) { bodyParts[_local3].xv = ((bodyParts[_local3].xv - body.xv) * slow) + body.xv; bodyParts[_local3].yv = ((bodyParts[_local3].yv - body.yv) * slow) + body.yv; } } body.xv = body.xv * slow; body.yv = body.yv * slow; } else { for (var _local3 in bodyParts) { if (bodyParts[_local3] != body) { bodyParts[_local3].xv = bodyParts[_local3].xv * slow; bodyParts[_local3].yv = bodyParts[_local3].yv * slow; } } } if (grabbing && (!grabLocked)) { grabHand.x = (grabHand.x * 0.8) + (grabTarget.x * 0.2); grabHand.y = (grabHand.y * 0.8) + (grabTarget.y * 0.2); grabHand.xv = grabHand.xv * 0.1; grabHand.yv = grabHand.yv * 0.1; } lArm.x = lArm.x + lArm.xv; lArm.y = lArm.y + lArm.yv; rArm.x = rArm.x + rArm.xv; rArm.y = rArm.y + rArm.yv; lLeg.x = lLeg.x + lLeg.xv; lLeg.y = lLeg.y + lLeg.yv; rLeg.x = rLeg.x + rLeg.xv; rLeg.y = rLeg.y + rLeg.yv; head.x = head.x + head.xv; head.y = head.y + head.yv; body.x = body.x + body.xv; body.y = body.y + body.yv; if (item == "Knife") { knife._visible = true; knife.ox = knife.x; knife.oy = knife.y; knife.x = _axmouse; knife.y = _aymouse; knife.xv = knife.x - knife.ox; knife.yv = knife.y - knife.oy; if ((knife.x != knife.ox) || (knife.y != knife.oy)) { knife.xvv = (knife.xvv * 0.85) + (knife.xv * 0.15); knife.yvv = (knife.yvv * 0.85) + (knife.yv * 0.15); } knife.rot = (-Math.atan2(knife.xvv, knife.yvv)) + (Math.PI/2); knife._rotation = (knife.rot * 180) / Math.PI; knifeTipX = knife.x + (35 * Math.cos(knife.rot)); knifeTipY = knife.y + (35 * Math.sin(knife.rot)); } else { knife._visible = false; } if (item == "Fist") { fist._visible = true; fist.x = Math.max(Math.min(_axmouse, Stage.width - 25), 25); fist.y = Math.max(Math.min(_aymouse, Stage.height - 25), 25); if (fist.id < 0) { fist.ox = fist.x; fist.oy = fist.y; fist.oox = fist.x; fist.ooy = fist.y; fist.id = objectList.push({targ:fist, type:"circle", group:"buddy"}) - 1; } if ((_root._axmouse != fist.ox) && (_root._aymouse != fist.oy)) { fist.nx = _root._axmouse; fist.ny = _root._aymouse; fist._rotation = (((-Math.atan2(fist.nx - fist.ox, fist.ny - fist.oy)) * 180) / Math.PI) + 180; } fist.xv = (-fist.x) + fist.ox; fist.yv = (-fist.y) + fist.oy; } else { fist._visible = false; if (fist.id >= 0) { popObject(fist); } fist.id = -1; fist.x = -50; fist.y = -50; fist.xv = 0; fist.yv = 0; } if (item == "Fist") { var _local7 = 8; headPunch = false; bodyPunch = false; var _local3 = 0; while (_local3 <= _local7) { var _local2 = _local3 / _local7; headDist = distance((_axmouse * _local2) + (oxm * (1 - _local2)), (_aymouse * _local2) + (oym * (1 - _local2)), head.x, head.y); bodyDist = distance((_axmouse * _local2) + (oxm * (1 - _local2)), (_aymouse * _local2) + (oym * (1 - _local2)), body.x, body.y); headPunch = (headDist < 20) || (headPunch); bodyPunch = (bodyDist < 40) || (bodyPunch); _local3++; } oxm = _axmouse; oym = _aymouse; if (bodyPunch) { if (lmouse) { fistDrag = 1; } else if (dontPunch <= 0) { fistDrag = 0; fistVel = 0.5; addVel((-fist.xv) * fistVel, (-fist.yv) * fistVel); var _local12 = Math.atan2(_axmouse - body.x, _aymouse - body.y); var _local11 = Math.atan2((_axmouse - body.x) - fist.xv, (_aymouse - body.y) - fist.yv); punchDist = Math.sqrt((fist.xv * fist.xv) + (fist.yv * fist.yv)); if (punchDist > 25) { punchSound(punchDist - 15, 0.35); var _local4 = 0; while (_local4 <= (punchDist * 0.05)) { genGore(body); _local4++; } if (awake) { setModifier("scared", 300); } addCash(Math.min(punchDist * 0.002, 0.5)); addEmotion(-Math.min(punchDist * 0.002, 0.35)); } } } if ((headPunch && (!fistDrag)) && (dontPunch <= 0)) { head.xv = head.xv + ((-fist.xv) * 1.2); head.yv = head.yv + ((-fist.yv) * 1.2); var _local12 = Math.atan2(_aymouse - body.y, _axmouse - body.x); var _local11 = Math.atan2((_aymouse - body.y) - fist.yv, (_axmouse - body.x) - fist.xv); rv = rv - (Math.min(Math.abs(_local11 - _local12) * 0.5, 0.4) * sign(_local11 - _local12)); punchDist = Math.sqrt((fist.xv * fist.xv) + (fist.yv * fist.yv)); if (punchDist > 20) { var _local4 = 0; while (_local4 <= (punchDist * 0.05)) { genGore(head); _local4++; } addCash(Math.min(punchDist * 0.002, 0.5)); addEmotion(-Math.min(punchDist * 0.002, 0.5)); punchSound(punchDist - 15, 0.35); } if (punchDist > 80) { setModifier("out", 300); } else if (punchDist > 20) { if (awake) { setModifier("scared", 400); } } } dontPunch--; if (!lmouse) { if (fistDrag) { fistVel = 2; setVel((-fist.xv) * fistVel, (-fist.yv) * fistVel); } fistDrag = 0; } if (fistDrag) { dontPunch = 5; body.x = _axmouse; body.y = _aymouse; body.xv = 0; body.yv = 0; } } if (body.y > (Stage.height - 30)) { body.yv = (-body.yv) * 0.5; body.y = Stage.height - 31; if (fistDrag) { if (Math.abs(fist.yv) > 25) { punchSound((Math.abs(fist.yv) * 1.5) - 4, 1); addCash(Math.min(Math.abs(fist.yv) * 0.02, 0.5)); addEmotion(-1); var _local4 = 0; while (_local4 <= (Math.abs(fist.yv) * 0.1)) { genGore(body); _local4++; } if (awake) { setModifier("scared", 200); } } } else if (Math.abs(body.yv) > 25) { punchSound((Math.abs(body.yv) * 1.5) - 4, 1); addCash(Math.min(Math.abs(body.yv) * 0.02, 0.5)); addEmotion(-0.25); var _local4 = 0; while (_local4 <= (Math.abs(body.yv) * 0.1)) { genGore(body); _local4++; } } } if (lLeg.y > (Stage.height - 17)) { lLeg.yv = (-lLeg.yv) * 0.5; lLeg.y = Stage.height - 18; } if (rLeg.y > (Stage.height - 17)) { rLeg.yv = (-rLeg.yv) * 0.5; rLeg.y = Stage.height - 18; } if (rArm.y > (Stage.height - 17)) { rArm.yv = (-rArm.yv) * 0.5; rArm.y = Stage.height - 18; } if (lArm.y > (Stage.height - 17)) { lArm.yv = (-lArm.yv) * 0.5; lArm.y = Stage.height - 18; } if (head.y > (Stage.height - 20)) { head.yv = (-head.yv) * 0.5; head.y = Stage.height - 21; } if (!modeContainer.openCeil) { if (body.y < 30) { body.yv = (-body.yv) * 0.5; body.y = 31; if (fistDrag) { if (Math.abs(fist.yv) > 25) { punchSound((Math.abs(fist.yv) * 1.5) - 4, 1); addCash(Math.min(Math.abs(fist.yv) * 0.02, 0.5)); addEmotion(-1); var _local4 = 0; while (_local4 <= (Math.abs(fist.yv) * 0.1)) { genGore(body); _local4++; } if (awake) { setModifier("scared", 200); } } } else if (Math.abs(body.yv) > 25) { punchSound((Math.abs(body.yv) * 1.5) - 4, 1); addCash(Math.min(Math.abs(body.yv) * 0.02, 0.5)); addEmotion(-0.25); var _local4 = 0; while (_local4 <= (Math.abs(body.yv) * 0.1)) { genGore(body); _local4++; } if (awake) { setModifier("scared", 200); } } } if (lLeg.y < 17) { lLeg.yv = (-lLeg.yv) * 0.5; lLeg.y = 18; } if (rLeg.y < 17) { rLeg.yv = (-rLeg.yv) * 0.5; rLeg.y = 18; } if (rArm.y < 17) { rArm.yv = (-rArm.yv) * 0.5; rArm.y = 18; } if (lArm.y < 17) { lArm.yv = (-lArm.yv) * 0.5; lArm.y = 18; } if (head.y < 20) { head.yv = (-head.yv) * 0.5; head.y = 21; } } if (body.x > (Stage.width - 30)) { body.xv = (-body.xv) * 0.5; body.x = Stage.width - 31; if (fistDrag) { if (Math.abs(fist.xv) > 25) { punchSound((Math.abs(fist.xv) * 1.5) - 4, 1); addCash(Math.min(Math.abs(fist.xv) * 0.02, 0.5)); addEmotion(-1); var _local4 = 0; while (_local4 <= (Math.abs(fist.xv) * 0.1)) { genGore(body); _local4++; } if (awake) { setModifier("scared", 200); } } } else if (Math.abs(body.xv) > 25) { punchSound((Math.abs(body.xv) * 1.5) - 4, 1); addCash(Math.min(Math.abs(body.xv) * 0.02, 0.5)); addEmotion(-0.25); var _local4 = 0; while (_local4 <= (Math.abs(body.xv) * 0.1)) { genGore(body); _local4++; } if (awake) { setModifier("scared", 200); } } } if (lLeg.x > (Stage.width - 15)) { lLeg.xv = (-lLeg.xv) * 0.5; lLeg.x = Stage.width - 16; } if (rLeg.x > (Stage.width - 15)) { rLeg.xv = (-rLeg.xv) * 0.5; rLeg.x = Stage.width - 16; } if (rArm.x > (Stage.width - 15)) { rArm.xv = (-rArm.xv) * 0.5; rArm.x = Stage.width - 16; } if (lArm.x > (Stage.width - 15)) { lArm.xv = (-lArm.xv) * 0.5; lArm.x = Stage.width - 16; } if (head.x > (Stage.width - 20)) { head.xv = (-head.xv) * 0.5; head.x = Stage.width - 21; } if (body.x < 35) { body.xv = (-body.xv) * 0.5; body.x = 36; if (fistDrag) { if (Math.abs(fist.xv) > 25) { punchSound((Math.abs(fist.xv) * 1.5) - 4, 1); addCash(Math.min(Math.abs(fist.xv) * 0.02, 0.5)); addEmotion(-1); var _local4 = 0; while (_local4 <= (Math.abs(fist.xv) * 0.1)) { genGore(body); _local4++; } } } else if (Math.abs(body.xv) > 25) { punchSound((Math.abs(body.xv) * 1.5) - 4, 1); addCash(Math.min(Math.abs(body.xv) * 0.02, 0.5)); addEmotion(-0.25); var _local4 = 0; while (_local4 <= (Math.abs(body.xv) * 0.1)) { genGore(body); _local4++; } if (awake) { setModifier("scared", 200); } } } if (lLeg.x < 20) { lLeg.xv = (-lLeg.xv) * 0.5; lLeg.x = 21; } if (rLeg.x < 20) { rLeg.xv = (-rLeg.xv) * 0.5; rLeg.x = 21; } if (rArm.x < 20) { rArm.xv = (-rArm.xv) * 0.5; rArm.x = 21; } if (lArm.x < 20) { lArm.xv = (-lArm.xv) * 0.5; lArm.x = 21; } if (head.x < 25) { head.xv = (-head.xv) * 0.5; head.x = 26; } } function incTime() { time++; } function sign(x) { if (x > 0) { return(1); } if (x == 0) { return(0); } return(-1); } function distance(x1, y1, x2, y2) { return(Math.sqrt(((x1 - x2) * (x1 - x2)) + ((y1 - y2) * (y1 - y2)))); } function jump(y, x) { if (onGround) { body.yv = body.yv - y; body.xv = body.xv + x; lLeg.yv = lLeg.yv - (y * 1.25); lLeg.xv = lLeg.xv + (x * 1.25); rLeg.yv = rLeg.yv - (y * 1.25); rLeg.xv = rLeg.xv + (x * 1.25); lArm.yv = lArm.yv - y; rArm.yv = rArm.yv - y; head.yv = head.yv - y; head.xv = head.xv + x; return(1); } return(0); } function textToTarg(text) { var _local2 = text.split("."); if (_local2.length == 2) { var _local3 = _root[_local2[0]][_local2[1]]; } else if (_local2.length == 1) { var _local3 = _root[_local2[0]]; } return(_local3); } function addForce(obj) { forces.push(obj); } function addConstraint(targ, x, y, rad) { addForce({type:"constraint", targ:targ, x:x, y:y, rad:rad}); targ.constrained = true; } function addSpring(targ, x, y, str) { addForce({type:"spring", targ:targ, x:x, y:y, strength:str}); targ.constrained = true; } function resetForces() { forces = []; } function doForces() { var _local1 = 0; while (_local1 < forces.length) { force = forces[_local1]; switch (force.type) { case "constraint" : if (force.targ.life) { var _local4 = force.targ.x; var _local3 = force.targ.y; var _local6 = force.x - _local4; var _local5 = force.y - _local3; if (((_local6 * _local6) + (_local5 * _local5)) > (force.rad * force.rad)) { var _local2 = Math.atan2(_local6, _local5); force.targ.x = force.x - (force.rad * Math.sin(_local2)); force.targ.y = force.y - (force.rad * Math.cos(_local2)); force.targ.xv = force.targ.x - force.targ.ox; force.targ.yv = force.targ.y - force.targ.oy; } drawing.lineStyle(1, 0, 50); drawing.moveTo(force.x, force.y); drawing.lineTo(force.targ.x, force.targ.y); } else { forces.splice(_local1, 1); _local1--; } break; case "spring" : if (force.targ.life) { var _local4 = force.targ.x; var _local3 = force.targ.y; var _local6 = force.x - _local4; var _local5 = force.y - _local3; force.targ.xv = (force.targ.xv + (force.strength * (force.x - force.targ.x))) * 0.95; force.targ.yv = (force.targ.yv + (force.strength * (force.y - force.targ.y))) * 0.95; drawing.lineStyle(1, 0, 50); drawing.moveTo(force.x, force.y); drawing.lineTo(force.targ.x, force.targ.y); } else { forces.splice(_local1, 1); _local1--; } } _local1++; } } function setBasicVars() { faceClip.gotoAndStop(Math.ceil((emotion * 0.1) + 10)); faceClip._alpha = ((faceClip._alpha - 50) * 0.95) + 50; emotionFrame = false; emotion = emotion * 0.99995; plusSign._alpha = plusSign._alpha - 10; minusSign._alpha = minusSign._alpha - 10; plusSign._alpha = Math.max(plusSign._alpha, 0); minusSign._alpha = Math.max(minusSign._alpha, 0); _root.soundSpeech.soundSpot.setPan(((head.x - (Stage.width / 2)) / Stage.width) * 200); logoTime = logoTime - 2; if (logo._alpha > 0) { logo._alpha = Math.min(logoTime, 100); } else { logo._visible = false; } if (item != oldItem) { if (item == "Radio") { specialItemName = "radio"; } else if (item == "Magical Orb") { specialItemName = "orb"; } else if (item == "AI Robot") { specialItemName = "bot"; } else if (item == "Gravity Shifter") { specialItemName = "vortex"; } } oldItem = item; exploded = false; gravitating = false; var _local7 = 180; if (((getTimer() > (_local7 * 1000)) && (!saveFile.data.reminder)) && (!doneReminder)) { saveFile.data.reminder = true; reminderFadeIn = true; playSound("beeper", 100); reminder.closeButton.gotoAndStop("normal"); doneReminder = true; } if (reminderFadeIn) { reminder._visible = true; reminder._alpha = reminder._alpha + 20; reminder._alpha = Math.min(reminder._alpha, 100); var _local5 = (Math.abs((_xmouse - reminder._x) - reminder.closeButton._x) < 10) && (Math.abs((_ymouse - reminder._y) - reminder.closeButton._y) < 10); if ((lmouse && (!olmouse)) && (_local5 || (reminderCloseDown))) { reminder.closeButton.gotoAndStop("down"); reminderCloseDown = true; } if ((reminderCloseDown && (!_local5)) && (lmouse)) { reminder.closeButton.gotoAndStop("normal"); } else if ((reminderCloseDown && (_local5)) && (lmouse)) { reminder.closeButton.gotoAndStop("down"); } else if ((reminderCloseDown && (!_local5)) && (!lmouse)) { reminder.closeButton.gotoAndStop("normal"); } else if ((reminderCloseDown && (_local5)) && (!lmouse)) { reminderFadeOut = true; reminderFadeIn = false; reminder.closeButton.gotoAndStop("normal"); } if (!lmouse) { reminderCloseDown = false; if (_local5) { reminder.closeButton.gotoAndStop("hover"); } else { reminder.closeButton.gotoAndStop("normal"); } } } if (reminderFadeOut && (reminder._visible)) { reminder._alpha = reminder._alpha - 20; reminder._alpha = Math.max(reminder._alpha, 0); reminder._visible = reminder._alpha > 0; var _local5 = (Math.abs((_axmouse - reminder._x) - reminder.closeButton._x) < 10) && (Math.abs((_aymouse - reminder._y) - reminder.closeButton._y) < 10); if ((lmouse && (!olmouse)) && (_local5 || (reminderCloseDown))) { reminder.closeButton.gotoAndStop("down"); reminderCloseDown = true; } if ((reminderCloseDown && (!_local5)) && (lmouse)) { reminder.closeButton.gotoAndStop("normal"); } else if ((reminderCloseDown && (_local5)) && (lmouse)) { reminder.closeButton.gotoAndStop("down"); } else if ((reminderCloseDown && (!_local5)) && (!lmouse)) { reminder.closeButton.gotoAndStop("normal"); } else if ((reminderCloseDown && (_local5)) && (!lmouse)) { reminder.closeButton.gotoAndStop("normal"); } if (!lmouse) { if (_local5) { reminder.closeButton.gotoAndStop("hover"); } else { reminder.closeButton.gotoAndStop("normal"); } } } stats.values.playingTime = stats.values.playingTime + deltaTime; body.rot = (body._rotation * Math.PI) / 180; lArm.rot = (lArm._rotation * Math.PI) / 180; rArm.rot = (rArm._rotation * Math.PI) / 180; head.rot = (head._rotation * Math.PI) / 180; lLeg.rot = (lLeg._rotation * Math.PI) / 180; rLeg.rot = (rLeg._rotation * Math.PI) / 180; fist.rot = (fist._rotation * Math.PI) / 180; body.rv = 0; lArm.rv = 0; rArm.rv = 0; head.rv = 0; lLeg.rv = 0; rLeg.rv = 0; fist.rv = 0; cashArrayOne.shift(); cashArrayOne.push(cashThisFrame); cashArrayThree.shift(); cashArrayThree.push(cashThisFrame); cashArrayTen.shift(); cashArrayTen.push(cashThisFrame); if (cashThisFrame) { var _local4 = 0; var _local2 = 0; var _local3 = 0; for (var _local6 in cashArrayOne) { _local4 = _local4 + cashArrayOne[_local6]; } for (var _local6 in cashArrayThree) { _local2 = _local2 + cashArrayThree[_local6]; } for (var _local6 in cashArrayTen) { _local3 = _local3 + cashArrayTen[_local6]; } var _local10 = stats.values.cashOne; var _local9 = stats.values.cashThree; var _local8 = stats.values.cashTen; stats.values.cashOne = Math.max(stats.values.cashOne, _local4); stats.values.cashThree = Math.max(stats.values.cashThree, _local2); stats.values.cashTen = Math.max(stats.values.cashTen, _local3); } cashThisFrame = 0; improvedPhysics = modeContainer.realPhysics; deltaTime = (getTimer() * 0.001) - lastGetTimer; lastGetTimer = getTimer() * 0.001; currentFPS = (currentFPS * 0.9) + ((1 / deltaTime) * 0.1); if ((skin == "strawberry") || (skin == "raspberry")) { isAClock = true; } else { isAClock = false; } if (isAClock) { lLeg.flammable = false; rLeg.flammable = false; head.flammable = false; } else { lLeg.flammable = true; rLeg.flammable = true; head.flammable = true; } expLightPower = Math.max(expLightPower - 0.1, 0); flameLightPower = Math.max(flameLightPower - 0.1, 0); setBG(bgRed, bgGreen, bgBlue); lightingDone = false; if (getModifier() == "stuck") { if (timeSinceComment("help") > ((100 + ((skin == "strawberry") * 250)) + ((skin == "nap") * 250))) { say("help", 100); } } flameTimer = flameTimer - 1; if (specialVars.vortex.onScreen) { vv = 1; } else { vv = 0; } grav = (1 - (modeContainer.lowGrav * 0.65)) * (1 - vv); shockValue = Math.min(Math.max(shockValue - 0.02, 0), 1.5); buddyHit = false; if ((getModifier() != "normal") || (getValueAction() != "none")) { notIdle(); } youOnlyWalkOnce = false; if ((rLeg.y > (Stage.height - 32)) or (lLeg.y > (Stage.height - 32))) { onGround = true; } else { onGround = false; } for (var _local6 in objectList) { if (objectList[_local6].group != "buddy") { if ((rLeg.y < objectList[_local6].targ.y) || (lLeg.y < objectList[_local6].targ.y)) { if (distance(rLeg.x, rLeg.y, objectList[_local6].targ.x, objectList[_local6].targ.y) <= ((rLeg.rad + objectList[_local6].targ.rad) + 20)) { onGround = true; if (moving) { body.xv = body.xv * 0.5; rArm.xv = rArm.xv * 0.5; lArm.xv = lArm.xv * 0.5; head.xv = head.xv * 0.5; } } else if (distance(lLeg.x, lLeg.y, objectList[_local6].targ.x, objectList[_local6].targ.y) <= ((lLeg.rad + objectList[_local6].targ.rad) + 20)) { onGround = true; if (moving) { body.xv = body.xv * 0.5; rArm.xv = rArm.xv * 0.5; lArm.xv = lArm.xv * 0.5; head.xv = head.xv * 0.5; } } } } } if ((getModifier() == "out") && (!challenging)) { awake = 0; } else { awake = 1; } punchTime++; if (!soundOn) { sound1.stop(); } explosionItem = (item == "Explode At Mouse") || (item == "Firecrackers"); explodeTimer--; if ((((((((item == "Baseballs") || (item == "Bowling Balls")) || (item == "Grenades")) || (item == "Mines")) || (item == "Fireballs")) || (item == "Rubber Balls")) || (item == "Molotov Cocktails")) || (item == "Infants")) { throwingItem = true; } else { throwingItem = false; } if ((((item == "Radio") || (item == "Magical Orb")) || (item == "AI Bot")) || (item == "Gravity Shifter")) { specialItem = true; } else { specialItem = false; } oldAimItem = aimItem; if ((((item == "Wide Nozzle Hose") || (item == "Narrow Nozzle Hose")) || (item == "Fire Hose")) || (item == "Flamethrower")) { aimItem = true; } else { aimItem = false; } if ((!oldAimItem) && (aimItem)) { aimx = _axmouse; aimy = _aymouse; } else if (aimItem) { if (!Key.isDown(17)) { if ((_axmouse != oxmouse) || (_aymouse != oymouse)) { aimx = (aimx * 0.8) + (oxmouse * 0.2); aimy = (aimy * 0.8) + (oymouse * 0.2); } } } } function grabMouse(dist) { var _local3 = _axmouse - rArm.x; var _local2 = _aymouse - rArm.y; if (Math.sqrt((_local3 * _local3) + (_local2 * _local2)) < dist) { notIdle(); rv = rv + (sign(((_axmouse - body.x) * 0.02) - bodyRot) * 0.01); rv = rv * 0.925; grabbingMouse = true; rArm.xv = rArm.xv + (((_axmouse - rArm.x) * damp) * 4); rArm.yv = rArm.yv + (((_aymouse - rArm.y) * damp) * 4); rArm.x = (rArm.x * 0.8) + (_axmouse * 0.2); rArm.y = (rArm.y * 0.8) + (_aymouse * 0.2); _root.drawing.lineStyle(1, 16777215); _root.drawing.moveTo(_axmouse, _aymouse); _root.drawing.lineTo(rArm.x, rArm.y); grab = 1; if (!(time % 3)) { addCash(0.075); addEmotion(0.15); } if (getModifier() == "stuck") { setModifier("thankful", 200); stuckTime = 0; stats.values.favorsDone++; } } else { grab = 0; } } function clearAll() { _root.clear(); _root.drawing.clear(); _root.drawing2.clear(); _root.lowDrawing.clear(); } function doAI() { if (noMoreGrenades) { for (var _local1 in objectList) { if (((objectList[_local1].targ.objectType == "grenade") && (getValueAction() != "runFromGrenade")) && (getValueAction().split(":")[0] != "dance")) { addAction("runFromGrenade", 7); } } } if (isAClock) { head.onFire = false; lLeg.onFire = false; rLeg.onFire = false; } if (body.onFire || ((head.onFire || (lLeg.onFire)) || (rLeg.onFire))) { putAction("burn:5", 7); setModifier("normal", 5); } if (((((rArm.y > (Stage.height - 28)) || (lArm.y > (Stage.height - 28))) && (!grab)) && (!onGround)) && (getValueActionName() != "seizure")) { stuckTime++; armsOnGround = true; putAction("getUnStuck", 8); } else { stuckTime = 0; armsOnGround = false; } if ((stuckTime > 15) && (getValueActionName() != "seizure")) { setModifier("stuck", 5); } if (getModifier() == "thankful") { if (newModifier) { say("thanks", 160); } if ((!(time % 80)) && (!grab)) { putAction("flip", 4); } } grabbingMouse = false; if ((!lmouse) && (item == "Open Hand")) { if (((getValueAction() == "none") && (imp < 180)) && (_aymouse < (Stage.height - 40))) { if (_aymouse < (Stage.height - 40)) { if (((!grab) && (onGround)) && ((Math.abs(_axmouse - rArm.x) < 30) && (_aymouse > 200))) { putAction("jumpUp", 5); } else if ((((!grab) && (onGround)) && ((rArm.y - _aymouse) < 140)) && (Math.abs(_axmouse - rArm.x) < 75)) { putAction("walkToMouse:3", 4); } grabMouse(60); } } if ((_axmouse == oxmouse) && (_aymouse == oymouse)) { imp++; } else { imp = 0; } if (grab) { if ((imp >= 180) || (_aymouse > (Stage.height - 40))) { imp = 0; grab = false; putAction("runFromMouse:35", 6); } } } if (item == "Tickle") { bodyDist = Math.sqrt(((_axmouse - body.x) * (_axmouse - body.x)) + ((_aymouse - body.y) * (_aymouse - body.y))); if ((bodyDist < 30) && (lmouse)) { if (onGround) { body.xv = body.xv + ((Math.random() * 8) - 4); body.yv = body.yv + ((Math.random() * 10) - 6); } else { body.xv = body.xv + ((Math.random() * 2) - 1); body.yv = body.yv + ((Math.random() * 10) - 6); } lArm.yv = lArm.yv - ((Math.random() * 10) - 3); rArm.yv = rArm.yv - ((Math.random() * 10) - 3); putAction("runFromMouse:5", 6); if (Math.random() > 0.96) { putAction("jumpUp", 8); } addCash(0.075); addEmotion(0.05); } } if (getModifier() == "scared") { if (getComment() != "zap") { if (timeSinceComment("scared") > 600) { say("scared", 160); } } putAction("runFromMouse:5", 7); body.yv = body.yv + (Math.random() - 0.5); body.xv = body.xv + (Math.random() - 0.5); } if ((getModifier() == "normal") && (getValueAction() == "none")) { idleAction(); } } function doText() { var _local1 = Math.floor((cash % 1) * 100); if (_local1 < 10) { var _local2 = "0"; } else { var _local2 = ""; } statusLabel.textLabel.text = ((((("$" + Math.floor(cash)) + ".") + _local2) + _local1) + " - ") + item; if (modeContainer.textActions) { actionsLabel.textLabel.text = getValueAction(); modifierLabel.textLabel.text = getModifier(); } else { actionsLabel.textLabel.text = ""; modifierLabel.textLabel.text = ""; } } function convertToDeg(x) { return(x * 57.2957795130823); } function convertToRad(x) { return(x * (Math.PI/180)); } function light(x, y, rbr, gbr, bbr) { doLighting = true; lightX = x; lightY = y; lightR = rbr; lightG = gbr; lightB = bbr; } function renderLighting() { if (doLighting) { var _local9 = lightX; var _local8 = lightY; setBG(bgRed * (1 + lightR), bgGreen * (1 + lightG), bgBlue * (1 + lightB)); for (var _local14 in objectList) { if (!((objectList[_local14].targ.x == _local9) && (objectList[_local14].targ.y == _local8))) { if ((!isAClock) || ((objectList[_local14].targ != lLeg) && (objectList[_local14].targ != rLeg))) { lowDrawing.lineStyle(0, 0, 0); var _local11 = _local9 - objectList[_local14].targ.x; var _local10 = _local8 - objectList[_local14].targ.y; var _local13 = Math.atan2(_local10, _local11); lowDrawing.beginFill((((((bgRed * 16) * 16) * 16) * 16) + ((bgGreen * 16) * 16)) + bgBlue, 100); var _local2 = Math.atan2(_local11, _local10); var _local5 = (objectList[_local14].targ.rad * Math.sin(_local2 + (Math.PI/2))) + objectList[_local14].targ.x; var _local6 = (objectList[_local14].targ.rad * Math.cos(_local2 + (Math.PI/2))) + objectList[_local14].targ.y; var _local3 = (objectList[_local14].targ.rad * Math.sin(_local2 - (Math.PI/2))) + objectList[_local14].targ.x; var _local4 = (objectList[_local14].targ.rad * Math.cos(_local2 - (Math.PI/2))) + objectList[_local14].targ.y; var _local7 = Math.atan2(_local8 - _local6, _local9 - _local5); var _local12 = Math.atan2(_local8 - _local4, _local9 - _local3); var _local1 = shadowLength / Math.cos(Math.abs(_local13 - _local7)); lowDrawing.moveTo(_local5, _local6); lowDrawing.lineTo(_local3, _local4); lowDrawing.lineTo(_local3 + (Math.sin((-_local12) - (Math.PI/2)) * _local1), _local4 + (Math.cos((-_local12) - (Math.PI/2)) * _local1)); lowDrawing.lineTo(_local5 + (Math.sin((-_local7) - (Math.PI/2)) * _local1), _local6 + (Math.cos((-_local7) - (Math.PI/2)) * _local1)); lowDrawing.endFill(); } } } doLighting = false; } } function expLight(x, y, pow) { if (pow >= expLightPower) { expLightPower = pow; expLightX = x; expLightY = y; } } function doMessageBox() { if (messageTime > 0) { message._visible = true; message._alpha = message._alpha + 10; message._alpha = Math.min(message._alpha, 100); } else { message._alpha = message._alpha - 10; message._alpha = Math.max(message._alpha, 0); } if (message._alpha <= 0) { message._visible = false; } else { message._visible = true; } messageTime--; } function doGraphics() { if (modeContainer.fps) { fpsText.text = Math.ceil(currentFPS * 10) / 10; } else { fpsText.text = ""; } if (expLightPower > 0) { light(expLightX, expLightY, expLightPower * 0.3, expLightPower * 0.3, expLightPower * 0.3); } else if (flameLightPower > 0) { light(_axmouse, _aymouse, 0.15 * flameLightPower, 0.075 * flameLightPower, 0.04 * flameLightPower); } body.shine._rotation = -body._rotation; head.shine._rotation = -head._rotation; lLeg.shine._rotation = -lLeg._rotation; rLeg.shine._rotation = -rLeg._rotation; lArm.shine._rotation = -lArm._rotation; rArm.shine._rotation = -rArm._rotation; if ((!awake) || (!Math.floor((time / 2) % 80))) { head.righteye.gotoAndStop("closed"); head.lefteye.gotoAndStop("closed"); } else { head.righteye.gotoAndStop("open"); head.lefteye.gotoAndStop("open"); } shake = shake * 0.835; body._rotation = convertToDeg(-bodyRot); if (isAClock) { head._rotation = body._rotation; } else { head._rotation = convertToDeg(Math.atan2(head.y - body.y, head.x - body.x) + head.r); } rArm._rotation = convertToDeg(Math.atan2(rArm.y - body.y, rArm.x - body.x) + rArm.r); lArm._rotation = convertToDeg(Math.atan2(lArm.y - body.y, lArm.x - body.x) + lArm.r); rLeg._rotation = convertToDeg(Math.atan2(rLeg.y - body.y, rLeg.x - body.x) + rLeg.r); lLeg._rotation = convertToDeg(Math.atan2(lLeg.y - body.y, lLeg.x - body.x) + lLeg.r); body.absRot = body._rotation; head.absRot = head._rotation; rArm.absRot = rArm._rotation; lArm.absRot = lArm._rotation; rLeg.absRot = rLeg._rotation; lLeg.absRot = lLeg._rotation; if ((skin == "default") || (skin == "defaultng")) { body._rotation = 0; head._rotation = 0; rArm._rotation = 0; lArm._rotation = 0; rLeg._rotation = 0; lLeg._rotation = 0; } cam(fist); if (fist._visible) { fistShadow._x = fist._x + 2; fistShadow._y = fist._y + 2; fistShadow._xscale = fist._xscale; fistShadow._yscale = fist._yscale; fistShadow._rotation = fist._rotation; fistShadow._visible = true; } else { fistShadow._visible = false; } cam(knife); cam(body); cam(head); cam(lArm); cam(rArm); cam(lLeg); cam(rLeg); for (var _local7 in objectList) { var _local4 = objectList[_local7].targ; if (objectList[_local7].group != "buddy") { var _local18 = 0; switch (_local4.objectType) { case "baseball" : _local18 = 16777215 /* 0xFFFFFF */; break; case "bowlball" : _local18 = 0; break; case "mine" : _local18 = 0; break; case "grenade" : _local18 = 8192; break; case "fireball" : _local18 = 16719872 /* 0xFF2000 */; break; case "bouncyball" : _local18 = 8413764 /* 0x806244 */; break; case "missile" : _local18 = 16728064 /* 0xFF4000 */; break; case "molotov" : _local18 = 12288; break; case "wreckingBall" : _local18 = 6842472 /* 0x686868 */; break; case "baby" : _local18 = 14721168 /* 0xE0A090 */; break; case "radio" : _local18 = 0; break; case "orb" : _local18 = 16777215 /* 0xFFFFFF */; break; case "vortex" : _local18 = 13639776 /* 0xD02060 */; } } else if (_local4.objectType == "fist") { var _local18 = 2105376 /* 0x202020 */; } else { var _local18 = skinColors["c" + objectList[_local7].targ._name]; } lowDrawing.lineStyle(0, 0, 0); if (_local4.objectType == "wreckingBall") { _local4.x = _local4.ax; _local4.y = _local4.ay; } var _local6 = _local4.x - _local4.oox; var _local5 = _local4.y - _local4.ooy; var _local16 = Math.atan2(_local5, _local6); var _local23 = [_local18, _local18]; var _local9 = Math.min((Math.sqrt((_local6 * _local6) + (_local5 * _local5)) - 8) * 1.5, 60); if ((objectList[_local4.id].group == "buddy") && (_local4.objectType != "fist")) { _local9 = _local9 * 0.65; } if ((((((_local4 == head) || (_local4 == rArm)) || (_local4 == lArm)) || (_local4 == rLeg)) || (_local4 == lLeg)) && (isAClock)) { var _local19 = [0, 0]; } else if (_local4.objectType == "fist") { if (blurLevel >= 2) { var _local19 = [0, _local9 * 2]; } else { var _local19 = [0, _local9 * 1.5]; } } else if (blurLevel >= 2) { var _local19 = [0, _local9 * 1.5]; } else { var _local19 = [0, _local9 * 1.25]; } var _local25 = [0, 255]; var _local20 = {a:_local6, b:_local5, c:0, d:Math.sqrt((_local6 * _local6) + (_local5 * _local5)) * Math.sin(-_local16), e:Math.sqrt((_local6 * _local6) + (_local5 * _local5)) * Math.cos(_local16), f:0, g:(_local4.x + _local4.oox) / 2, h:(_local4.y + _local4.ooy) / 2, i:1}; var _local17 = Math.atan2(_local6, _local5); if (_local4.objectType == "fist") { var _local11 = 18; } else { var _local11 = _local4.rad; } var _local8 = _local11 * Math.sin(_local17 + (Math.PI/2)); var _local14 = _local11 * Math.cos(_local17 + (Math.PI/2)); var _local12 = _local11 * Math.sin(_local17 - (Math.PI/2)); var _local13 = _local11 * Math.cos(_local17 - (Math.PI/2)); lowDrawing.beginGradientFill("linear", _local23, _local19, _local25, _local20); if (blurLevel == 1) { lowDrawing.moveTo(_local4.oox, _local4.ooy); lowDrawing.lineTo(_local8 + _local4.x, _local14 + _local4.y); lowDrawing.lineTo(_local12 + _local4.x, _local13 + _local4.y); lowDrawing.lineTo(_local4.oox, _local4.ooy); lowDrawing.endFill(); } else if (blurLevel == 2) { lowDrawing.moveTo(_local8 + _local4.oox, _local8 + _local4.ooy); lowDrawing.lineTo(_local12 + _local4.oox, _local13 + _local4.ooy); lowDrawing.lineTo(_local12 + _local4.x, _local13 + _local4.y); lowDrawing.lineTo(_local8 + _local4.x, _local14 + _local4.y); lowDrawing.lineTo(_local8 + _local4.oox, _local14 + _local4.ooy); lowDrawing.endFill(); } } for (var _local7 in objectList) { var _local3 = objectList[_local7].targ; if (objectList[_local7].group != "buddy") { if (_local3.objectType == "missile") { _local3.oox = (_local3.oox * 0.7) + (_local3.x * 0.3); _local3.ooy = (_local3.ooy * 0.7) + (_local3.y * 0.3); } else if (_local3.objectType == "wreckingBall") { _local3.oox = (_local3.oox * 0.5) + (_local3.ax * 0.5); _local3.ooy = (_local3.ooy * 0.5) + (_local3.ay * 0.5); } else { _local3.oox = (_local3.oox * 0.5) + (_local3.x * 0.5); _local3.ooy = (_local3.ooy * 0.5) + (_local3.y * 0.5); } } else if (_local3.objectType != "fist") { _local3.oox = (_local3.oox * 0.7) + (_local3.x * 0.3); _local3.ooy = (_local3.ooy * 0.7) + (_local3.y * 0.3); } else { _local3.oox = (_local3.oox * 0.6) + (_local3.x * 0.4); _local3.ooy = (_local3.ooy * 0.6) + (_local3.y * 0.4); } if (_local3.flammable) { if (_local3.onFire) { if (!_local3.oldFire) { var _local7 = 0; while (_local7 <= (gQuality * 3)) { playSound("burnball", _local3.rad); fireEffect(_local3.x, _local3.y, _local3.rad / 7, _local3.x, _local3.y); _local7++; } } if (_local3.objectType == "fireball") { var _local24 = 8.5; } else { var _local24 = 15; } fireEffect(_local3.x, _local3.y, _local3.rad / _local24, _local3.ox, _local3.oy); if (_local3.fireStrength <= 0) { _local3.onFire = false; _local3.fireStrength = 0; } _local3.fireStrength = _local3.fireStrength + 5; _local3.fireStrength = Math.max(Math.min(_local3.fireStrength, 100), 0); } else { _local3.fireStrength = 0; } _local3.oldFire = _local3.onFire; } } if ((!awake) && (Math.random() > (0.85 - (gQuality * 0.1)))) { starNum++; ts = drawing.attachMovie("star", "star" + starNum, starNum); ts.x = (head.x + (Math.random() * 20)) - 10; ts.y = head.y - (Math.random() * 20); ts.xv = (Math.random() * 4) - 2; ts.yv = ((-Math.random()) * 4) - 2; ts.targetAlpha = 100; ts._alpha = 0; ts.rv = (Math.random() * 30) - 15; ts.onEnterFrame = function () { if (!_root.pause) { this.x = this.x + this.xv; this.y = this.y + this.yv; this.yv = this.yv + (grav * 0.5); this._x = _root.lag(this.x); this._y = _root.lag(this.y); this._xscale = this._xscale + 2; this._yscale = this._yscale + 2; this._rotation = this._rotation + this.rv; this._alpha = (this._alpha * 0.8) + (this.targetAlpha * 0.2); this.targetAlpha = this.targetAlpha - 6; if (this._alpha <= 0) { this.removeMovieClip(); } } }; } if ((item == "Stun Gun") && (lmouse)) { drawing.lineStyle(2, 16777215, 100); var _local40 = Math.sin(-stunGun.rot); var _local41 = Math.cos(-stunGun.rot); var _local38 = Math.sin(stunGun.rot); var _local39 = Math.cos(stunGun.rot); var _local35 = _axmouse + (_local40 * 7); var _local34 = _aymouse + (_local41 * 7); var _local37 = _axmouse - (_local40 * 7); var _local36 = _aymouse - (_local41 * 7); drawing.moveTo(_local35, _local34); var _local10 = 10; var _local7 = 1; while (_local7 <= _local10) { var _local15 = Math.sin((_local7 / _local10) * Math.PI) * 5; var _local17 = Math.random() - 0.5; var _local22 = (_local39 * _local17) * _local15; var _local21 = (_local38 * _local17) * _local15; drawing.lineTo((((_local7 / _local10) * _local35) + ((1 - (_local7 / _local10)) * _local37)) + _local22, (((_local7 / _local10) * _local34) + ((1 - (_local7 / _local10)) * _local36)) + _local21); _local7++; } } } function lag(x) { if (modeContainer.lag) { return(roundError(x, lagAmt)); } return(x); } function roundError(x, l) { return((Math.floor(x / l) * l) + (l * 0.5)); } function assignOldVars() { fist.ox = fist.x; fist.oy = fist.y; lArm.ox = lArm.x; lArm.oy = lArm.y; rArm.ox = rArm.x; rArm.oy = rArm.y; lLeg.ox = lLeg.x; lLeg.oy = lLeg.y; rLeg.ox = rLeg.x; rLeg.oy = rLeg.y; head.ox = head.x; head.oy = head.y; body.ox = body.x; body.oy = body.y; newModifier = getModifier() != oldModifier; oldModifier = getModifier(); oxmouse = _axmouse; oymouse = _aymouse; } function initBarPlacement() { barGraph = {}; barGraph.x = topBar._x; barGraph.oy = topBar._y; barGraph.hy = topBar._y - 30; barGraph.y = barGraph.oy; barGraph.ty = barGraph.oy; topBar._y = barGraph.y; } function doBarPlacement() { if (autohide) { if ((_aymouse < 30) || (pause)) { barGraph.ty = barGraph.oy; } else { barGraph.ty = barGraph.hy; } } else { barGraph.ty = barGraph.oy; } barGraph.y = (barGraph.y * 0.8) + (barGraph.ty * 0.2); topBar._x = barGraph.x; topBar._y = barGraph.y; } function initContext() { context = new ContextMenu(); context.hideBuiltInItems(); context.customItems = []; context.customItems.push(item); _root.menu = context; } function doContext() { var _local2 = false; for (var _local3 in context.customItems) { if (context.customItems[_local3].caption == item) { _local2 = true; } } if (!_local2) { var _local4 = new ContextMenuItem(); _local4.caption = item; _local4.onSelect = function (obj, men) { item = men.caption; }; context.customItems.splice(0, 0, _local4); } while (context.customItems.length > 5) { context.customItems.pop(); } _root.menu = context; } function clearContext() { context.customItems = []; } function cenx(x) { return(x - (Stage.width / 2)); } function ceny(y) { return(y - (Stage.height / 2)); } function cameraStuff() { if (modeContainer.dynCam) { if (exploded) { extp = 0.5; extx = cenx(explodex); exty = ceny(explodey); } else { extp = extp * 0.9; extx = extx * 0.925; exty = exty * 0.925; } camzt = ((camzt * 0.9) - (extp * 0.05)) - (gravitating * 0.01); camx = ((camx * 0.925) - ((cenx(gravitatingx) * 0.025) * gravitating)) - ((extp * extx) * 0.05); camy = ((camy * 0.925) - ((ceny(gravitatingy) * 0.025) * gravitating)) - ((extp * exty) * 0.05); camz = camzt + 1; if ((getValueAction() != "none") && (awake)) { cameraTarget = body; } else { cameraTarget = undefined; } var _local2 = 0; if (!gravitating) { for (var _local3 in objectList) { if (objectList[_local3].targ.objectType == "molotov") { cameraTarget = objectList[_local3].targ; } else if (objectList[_local3].targ.objectType == "grenade") { if (cameraTarget.objectType == "grenade") { if (objectList[_local3].targ.life < cameraTarget.life) { cameraTarget = objectList[_local3].targ; } } else { cameraTarget = objectList[_local3].targ; } } else if (((objectList[_local3].group != "buddy") || (objectList[_local3].targ == fist)) && (objectList[_local3].targ != wreckingBall)) { var _local1 = Math.sqrt((objectList[_local3].targ.xv * objectList[_local3].targ.xv) + (objectList[_local3].targ.yv * objectList[_local3].targ.yv)); if ((_local1 > 5) && (_local1 > _local2)) { cameraTarget = objectList[_local3].targ; } _local2 = _local1; } } if (item == "Fist") { cameraTarget = fist; } if (specialDragging) { cameraTarget = specialVars[specialItemName].targ; } if (cameraTarget != undefined) { camx = (camx * 0.7) - (cenx(cameraTarget.x) * 0.3); camy = (camy * 0.7) - (ceny(cameraTarget.y) * 0.3); camz = (camz * 0.7) + 0.525; } } } else { camx = 0; camy = 0; camz = 1; } _axmouse = (((_xmouse - (Stage.width / 2)) / camz) + (Stage.width / 2)) - camx; _aymouse = (((_ymouse - (Stage.height / 2)) / camz) + (Stage.height / 2)) - camy; if (shake > 0.1) { camx = camx + (((Math.random() - 0.5) * shake) * 0.5); camy = camy + (((Math.random() - 0.5) * shake) * 0.5); } cam(particles); cam(drawing); cam(objects); cam(lowDrawing); cam(border); cam(bg); } function cam(object) { object._x = (((lag(object.x) + camx) - (Stage.width / 2)) * camz) + (Stage.width / 2); object._y = (((lag(object.y) + camy) - (Stage.height / 2)) * camz) + (Stage.height / 2); object._xscale = 100 * camz; object._yscale = 100 * camz; } function endLoadScreen() { if (loadingScreen._alpha > 0) { loadingScreen._alpha = loadingScreen._alpha - 10; } else { loadingScreen._visible = false; } } function checkCheat(k) { for (var _local2 in cheatCodes) { if (cheatCodes[_local2][0] == k) { infopost("User has cheated:\n" + cheatCodes[_local2][1]); executeText(cheatCodes[_local2][1]); keys = keys.slice(-7) + "x"; flashMessage("Cheat accepted!", 140); } } } function secret() { var _local1 = "x"; if (Key.isDown(32) && (!oKeySpace)) { _local1 = "s"; } if (Key.isDown(38) && (!oKeyUp)) { _local1 = "u"; } if (Key.isDown(40) && (!oKeyDown)) { _local1 = "d"; } if (Key.isDown(37) && (!oKeyLeft)) { _local1 = "l"; } if (Key.isDown(39) && (!oKeyRight)) { _local1 = "r"; } if (_local1 != "x") { keys = keys.slice(-7) + _local1; checkCheat(keys); } oKeySpace = Key.isDown(32); oKeyUp = Key.isDown(38); oKeyDown = Key.isDown(40); oKeyLeft = Key.isDown(37); oKeyRight = Key.isDown(39); } initBasicVars(); initObjects(); defineTheItems(); sortTheItems(); initSharedObject(); if (saveAgain) { newSaveFile(); } initMenu(); initBG(); initPhysics(0.225, 0.8, 1); initLayers(); initQueue(); initSound(); initBarPlacement(); initSayings(); initContext(); initScriptingEngine(); initConstraints(); infopost("User has started a session."); stop(); onEnterFrame = function () { endLoadScreen(); doBarPlacement(); doMessageBox(); checkPause(); doMenus(); doContext(); secret(); if (!pause) { cameraStuff(); clearAll(); incTime(); maintainModifier(); setBasicVars(); if (awake) { doAI(); parseAction(getValueAction()); } doWeaponPhysics(); doObjectPhysics(); doBodyPhysics(); doSpecials(); doForces(); talkEngine(); renderLighting(); processGore(); doGraphics(); checkScriptsToRun(); checkObjectPlacement(); manageTalkBubble(); assignOldVars(); } doText(); saveStuff(); olmouse = lmouse; }; onMouseDown = function () { lmouse = 1; }; onMouseUp = function () { lmouse = 0; };
Instance of Symbol 565 MovieClip [MenuBar] "topBar" in Frame 25
//component parameters onClipEvent (construct) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 61 MovieClip [BrdrShdw] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "shadowColor");
Symbol 63 MovieClip [BrdrFace] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "buttonColor");
Symbol 66 MovieClip [BrdrBlk] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "borderColor");
Symbol 68 MovieClip [BrdrHilght] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "highlightColor");
Symbol 71 MovieClip [Defaults] Frame 1
#initclip 61 Object.registerClass("Defaults", mx.skins.halo.Defaults); #endinitclip
Symbol 72 MovieClip [UIObjectExtensions] Frame 1
#initclip 62 Object.registerClass("UIObjectExtensions", mx.core.ext.UIObjectExtensions); #endinitclip
Symbol 73 MovieClip [UIObject] Frame 1
#initclip 63 Object.registerClass("UIObject", mx.core.UIObject); #endinitclip stop();
Symbol 76 Button
on (keyPress "<Tab>") { this.tabHandler(); }
Symbol 77 MovieClip [FocusRect] Frame 1
#initclip 64 Object.registerClass("FocusRect", mx.skins.halo.FocusRect); #endinitclip
Symbol 78 MovieClip [FocusManager] Frame 1
#initclip 65 Object.registerClass("FocusManager", mx.managers.FocusManager); #endinitclip stop();
Symbol 79 MovieClip [UIComponentExtensions] Frame 1
#initclip 66 Object.registerClass("UIComponentExtensions", mx.core.ext.UIComponentExtensions); #endinitclip
Symbol 80 MovieClip [UIComponent] Frame 1
#initclip 67 Object.registerClass("UIComponent", mx.core.UIComponent); #endinitclip stop();
Symbol 81 MovieClip [SimpleButton] Frame 1
#initclip 68 Object.registerClass("SimpleButton", mx.controls.SimpleButton); #endinitclip stop();
Symbol 82 MovieClip [Border] Frame 1
#initclip 69 Object.registerClass("Border", mx.skins.Border); #endinitclip stop();
Symbol 83 MovieClip [RectBorder] Frame 1
#initclip 70 mx.skins.SkinElement.registerElement(mx.skins.RectBorder.symbolName, Object(mx.skins.RectBorder)); Object.registerClass("RectBorder", mx.skins.halo.RectBorder); #endinitclip stop();
Symbol 84 MovieClip [ButtonSkin] Frame 1
#initclip 71 Object.registerClass("ButtonSkin", mx.skins.halo.ButtonSkin); #endinitclip
Symbol 85 MovieClip [Button] Frame 1
#initclip 72 Object.registerClass("Button", mx.controls.Button); #endinitclip stop();
Instance of Symbol 81 MovieClip [SimpleButton] in Symbol 85 MovieClip [Button] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 86 MovieClip [CustomBorder] Frame 1
#initclip 73 Object.registerClass("CustomBorder", mx.skins.CustomBorder); mx.skins.SkinElement.registerElement("CustomBorder", mx.skins.CustomBorder); #endinitclip
Symbol 98 MovieClip [ScrollThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 100 MovieClip [ScrollThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 111 MovieClip [ThumbThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 113 MovieClip [ThumbThemeColor3] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 120 MovieClip [ThumbThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 141 MovieClip [BtnDownArrow] Frame 1
#initclip 74 Object.registerClass("BtnDownArrow", mx.controls.SimpleButton); #endinitclip
Symbol 142 MovieClip [BtnUpArrow] Frame 1
#initclip 75 Object.registerClass("BtnUpArrow", mx.controls.SimpleButton); #endinitclip
Symbol 144 MovieClip [HScrollBar] Frame 1
#initclip 76 Object.registerClass("HScrollBar", mx.controls.HScrollBar); #endinitclip stop();
Instance of Symbol 85 MovieClip [Button] in Symbol 144 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 81 MovieClip [SimpleButton] in Symbol 144 MovieClip [HScrollBar] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 145 MovieClip [VScrollBar] Frame 1
#initclip 77 Object.registerClass("VScrollBar", mx.controls.VScrollBar); #endinitclip stop();
Instance of Symbol 85 MovieClip [Button] in Symbol 145 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 81 MovieClip [SimpleButton] in Symbol 145 MovieClip [VScrollBar] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 146 MovieClip [View] Frame 1
#initclip 78 Object.registerClass("View", mx.core.View); #endinitclip stop();
Symbol 147 MovieClip [ScrollView] Frame 1
#initclip 79 Object.registerClass("ScrollView", mx.core.ScrollView); #endinitclip stop();
Instance of Symbol 144 MovieClip [HScrollBar] in Symbol 147 MovieClip [ScrollView] Frame 2
//component parameters onClipEvent (initialize) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 145 MovieClip [VScrollBar] in Symbol 147 MovieClip [ScrollView] Frame 2
//component parameters onClipEvent (initialize) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 148 MovieClip [Modal] Frame 1
#initclip 80 mx.skins.SkinElement.registerElement("Modal"); #endinitclip
Symbol 155 MovieClip [TitleBackground] Frame 1
#initclip 81 _global.mx.skins.TitleBackground = function () { this.constructObject(); }; _global.mx.skins.TitleBackground.prototype = new mx.skins.CustomBorder(); _global.mx.skins.TitleBackground.prototype.className = "TitleBackground"; _global.mx.skins.TitleBackground.symbolName = "TitleBackground"; _global.mx.skins.TitleBackground.symbolOwner = _global.mx.skins.TitleBackground; _global.mx.skins.TitleBackground.prototype.leftSkin = "TitleLeft"; _global.mx.skins.TitleBackground.prototype.middleSkin = "TitleMiddle"; _global.mx.skins.TitleBackground.prototype.rightSkin = "TitleRight"; _global.mx.skins.SkinElement.registerElement("TitleBackground", _global.mx.skins.TitleBackground); _global.mx.skins.SkinElement.registerElement("TitleLeft"); _global.mx.skins.SkinElement.registerElement("TitleMiddle"); _global.mx.skins.SkinElement.registerElement("TitleRight"); _global.mx.skins.TitleBackground.prototype.init = function () { super.init(); }; #endinitclip
Symbol 164 MovieClip [WindowAssets] Frame 1
#initclip 82 mx.containers.Window.prototype.titleStyleDeclaration = "windowStyles"; #endinitclip
Symbol 165 MovieClip [Window] Frame 1
#initclip 83 Object.registerClass("Window", mx.containers.Window); #endinitclip stop();
Instance of Symbol 59 MovieClip [BoundingBox] "boundingBox_mc" in Symbol 165 MovieClip [Window] Frame 1
/* no clip actions */
Instance of Symbol 81 MovieClip [SimpleButton] in Symbol 165 MovieClip [Window] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 195 MovieClip [UIScrollBar] Frame 1
#initclip 84 Object.registerClass("UIScrollBar", mx.controls.UIScrollBar); #endinitclip stop();
Instance of Symbol 145 MovieClip [VScrollBar] in Symbol 195 MovieClip [UIScrollBar] Frame 2
//component parameters onClipEvent (initialize) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 144 MovieClip [HScrollBar] in Symbol 195 MovieClip [UIScrollBar] Frame 2
//component parameters onClipEvent (initialize) { enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 201 MovieClip [RadioThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 205 MovieClip [RadioThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 211 MovieClip [RadioButtonAssets] Frame 1
#initclip 85 mx.controls.RadioButton.prototype.adjustFocusRect = function () { var _local4 = this._parent.focus_mc; var _local2 = this.iconName; var _local3 = this.getStyle("themeColor"); if (_local3 == undefined) { _local3 = 8453965 /* 0x80FF4D */; } var _local5 = _local2._width + 4; var _local6 = _local2._height + 4; _local4.setSize(_local5, _local6, 8, 100, _local3); var _local8 = _local2._x; var _local7 = _local2._y; _local4.move((this.x - 2) + _local8, (this.y + _local7) - 2); }; #endinitclip
Symbol 212 MovieClip [RadioButton] Frame 1
#initclip 86 Object.registerClass("RadioButton", mx.controls.RadioButton); #endinitclip stop();
Instance of Symbol 85 MovieClip [Button] "foo" in Symbol 212 MovieClip [RadioButton] Frame 2
//component parameters onClipEvent (initialize) { icon = ""; label = "Button"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 220 MovieClip [DataProvider] Frame 1
#initclip 87 Object.registerClass("DataProvider", mx.controls.listclasses.DataProvider); #endinitclip stop();
Symbol 221 MovieClip [DataSelector] Frame 1
#initclip 88 Object.registerClass("DataSelector", mx.controls.listclasses.DataSelector); #endinitclip stop();
Symbol 222 MovieClip [SelectableRow] Frame 1
#initclip 89 Object.registerClass("SelectableRow", mx.controls.listclasses.SelectableRow); #endinitclip stop();
Symbol 223 MovieClip [ScrollSelectList] Frame 1
#initclip 90 Object.registerClass("ScrollSelectList", mx.controls.listclasses.ScrollSelectList); #endinitclip stop();
Symbol 239 MovieClip [MenuRow] Frame 1
#initclip 91 Object.registerClass("MenuRow", mx.controls.menuclasses.MenuRow); #endinitclip stop();
Symbol 240 MovieClip [TreeDataProvider] Frame 1
#initclip 92 Object.registerClass("TreeDataProvider", mx.controls.treeclasses.TreeDataProvider); #endinitclip
Symbol 241 MovieClip [MenuDataProvider] Frame 1
#initclip 93 Object.registerClass("MenuDataProvider", mx.controls.menuclasses.MenuDataProvider); #endinitclip stop();
Symbol 242 MovieClip [Menu] Frame 1
#initclip 94 Object.registerClass("Menu", mx.controls.Menu); #endinitclip stop();
Symbol 250 MovieClip [TextArea] Frame 1
#initclip 95 Object.registerClass("TextArea", mx.controls.TextArea); #endinitclip stop();
Symbol 251 MovieClip [AlertAssets] Frame 1
#initclip 96 mx.controls.Alert.titleStyleDeclaration = "windowStyles"; #endinitclip
Symbol 252 MovieClip [Alert] Frame 1
#initclip 97 Object.registerClass("Alert", mx.controls.Alert); #endinitclip stop();
Instance of Symbol 165 MovieClip [Window] in Symbol 252 MovieClip [Alert] Frame 2
//component parameters onClipEvent (initialize) { closeButton = false; contentPath = ""; title = ""; enabled = true; visible = true; minHeight = 0; minWidth = 0; skinCloseDisabled = "CloseButtonDisabled"; skinCloseDown = "CloseButtonDown"; skinCloseOver = "CloseButtonOver"; skinCloseUp = "CloseButtonUp"; skinTitleBackground = "TitleBackground"; titleStyleDeclaration = ""; }
Instance of Symbol 250 MovieClip [TextArea] in Symbol 252 MovieClip [Alert] Frame 2
//component parameters onClipEvent (initialize) { editable = true; html = false; text = ""; wordWrap = false; maxChars = null; restrict = "null"; enabled = true; password = false; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 85 MovieClip [Button] in Symbol 252 MovieClip [Alert] Frame 2
//component parameters onClipEvent (initialize) { icon = ""; label = "Button"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 278 MovieClip Frame 1
stop();
Symbol 278 MovieClip Frame 15
stop();
Symbol 284 MovieClip Frame 1
stop();
Symbol 284 MovieClip Frame 8
stop();
Symbol 291 MovieClip Frame 1
stop();
Symbol 291 MovieClip Frame 9
stop();
Symbol 299 MovieClip Frame 1
stop();
Symbol 301 MovieClip [List] Frame 1
#initclip 98 Object.registerClass("List", mx.controls.List); #endinitclip stop();
Symbol 304 MovieClip [Label] Frame 1
#initclip 99 Object.registerClass("Label", mx.controls.Label); #endinitclip stop();
Instance of Symbol 301 MovieClip [List] "inStockList" in Symbol 305 MovieClip [skinStore_mc] Frame 1
//component parameters onClipEvent (construct) { multipleSelection = false; rowHeight = 20; }
Instance of Symbol 250 MovieClip [TextArea] "costBox" in Symbol 305 MovieClip [skinStore_mc] Frame 1
//component parameters onClipEvent (construct) { editable = false; html = false; text = ""; wordWrap = true; maxChars = null; restrict = ""; enabled = true; password = false; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 305 MovieClip [skinStore_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Cost"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 85 MovieClip [Button] "buyButton" in Symbol 305 MovieClip [skinStore_mc] Frame 1
//component parameters onClipEvent (construct) { icon = ""; label = "Buy"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 301 MovieClip [List] "inStockList" in Symbol 307 MovieClip [modeStore_mc] Frame 1
//component parameters onClipEvent (construct) { multipleSelection = false; rowHeight = 20; }
Instance of Symbol 250 MovieClip [TextArea] "costBox" in Symbol 307 MovieClip [modeStore_mc] Frame 1
//component parameters onClipEvent (construct) { editable = false; html = false; text = ""; wordWrap = true; maxChars = null; restrict = ""; enabled = true; password = false; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 307 MovieClip [modeStore_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Cost"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 85 MovieClip [Button] "buyButton" in Symbol 307 MovieClip [modeStore_mc] Frame 1
//component parameters onClipEvent (construct) { icon = ""; label = "Buy"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 301 MovieClip [List] "inStockList" in Symbol 308 MovieClip [itemStore_mc] Frame 1
//component parameters onClipEvent (construct) { multipleSelection = false; rowHeight = 20; }
Instance of Symbol 250 MovieClip [TextArea] "typeBox" in Symbol 308 MovieClip [itemStore_mc] Frame 1
//component parameters onClipEvent (construct) { editable = false; html = false; text = ""; wordWrap = true; maxChars = null; restrict = ""; enabled = true; password = false; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 250 MovieClip [TextArea] "costBox" in Symbol 308 MovieClip [itemStore_mc] Frame 1
//component parameters onClipEvent (construct) { editable = false; html = false; text = ""; wordWrap = true; maxChars = null; restrict = ""; enabled = true; password = false; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 308 MovieClip [itemStore_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Group"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 308 MovieClip [itemStore_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Cost"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 85 MovieClip [Button] "buyButton" in Symbol 308 MovieClip [itemStore_mc] Frame 1
//component parameters onClipEvent (construct) { icon = ""; label = "Buy"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 320 MovieClip [TextInput] Frame 1
#initclip 100 Object.registerClass("TextInput", mx.controls.TextInput); #endinitclip stop();
Symbol 321 MovieClip [ComboBase] Frame 1
#initclip 101 mx.controls.listclasses.DataSelector.Initialize(Object(mx.controls.ComboBase).prototype); Object.registerClass("ComboBase", mx.controls.ComboBase); #endinitclip stop();
Instance of Symbol 81 MovieClip [SimpleButton] in Symbol 321 MovieClip [ComboBase] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 320 MovieClip [TextInput] in Symbol 321 MovieClip [ComboBase] Frame 2
//component parameters onClipEvent (initialize) { editable = true; password = false; text = ""; maxChars = null; restrict = "null"; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 327 MovieClip [ComboDownArrowDisabled] Frame 1
#initclip 102 Object.registerClass("ComboDownArrowDisabled", mx.controls.SimpleButton); #endinitclip
Symbol 329 MovieClip [ComboThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 332 MovieClip [ComboAssets] Frame 1
#initclip 103 mx.controls.ComboBox.prototype.downArrowUpName = "ComboDownArrowUp"; mx.controls.ComboBox.prototype.downArrowDownName = "ComboDownArrowDown"; mx.controls.ComboBox.prototype.downArrowOverName = "ComboDownArrowOver"; mx.controls.ComboBox.prototype.downArrowDisabledName = "ComboDownArrowDisabled"; mx.controls.ComboBox.prototype.wrapDownArrowButton = false; mx.controls.ComboBox.prototype.dropDownBorderStyle = "solid"; mx.controls.ComboBox.prototype.adjustFocusRect = function () { var _local2 = this.getStyle("themeColor"); if (_local2 == undefined) { _local2 = 8453965 /* 0x80FF4D */; } var _local3 = this._parent.focus_mc; _local3.setSize(this.width + 4, this.height + 4, {bl:0, tl:0, tr:5, br:5}, 100, _local2); _local3.move(this.x - 2, this.y - 2); }; #endinitclip
Symbol 333 MovieClip [ComboBox] Frame 1
#initclip 104 Object.registerClass("ComboBox", mx.controls.ComboBox); #endinitclip stop();
Instance of Symbol 301 MovieClip [List] in Symbol 333 MovieClip [ComboBox] Frame 2
//component parameters onClipEvent (initialize) { multipleSelection = false; rowHeight = 20; }
Symbol 340 MovieClip [StepThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 352 MovieClip [NumericStepper] Frame 1
#initclip 105 Object.registerClass("NumericStepper", mx.controls.NumericStepper); #endinitclip stop();
Instance of Symbol 81 MovieClip [SimpleButton] in Symbol 352 MovieClip [NumericStepper] Frame 2
//component parameters onClipEvent (initialize) { selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 320 MovieClip [TextInput] in Symbol 352 MovieClip [NumericStepper] Frame 2
//component parameters onClipEvent (initialize) { editable = true; password = false; text = ""; maxChars = null; restrict = "null"; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 354 MovieClip [physicsTweek_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "# of onscreen objects:"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 352 MovieClip [NumericStepper] "objectStepper" in Symbol 354 MovieClip [physicsTweek_mc] Frame 1
//component parameters onClipEvent (construct) { maximum = 40; minimum = 1; stepSize = 1; value = 8; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 354 MovieClip [physicsTweek_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Physics accuracy:"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 333 MovieClip [ComboBox] "qualCombo" in Symbol 354 MovieClip [physicsTweek_mc] Frame 1
//component parameters onClipEvent (construct) { editable = false; labels = []; labels[0] = "Minimum"; labels[1] = "Half"; labels[2] = "Full"; rowCount = 5; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 354 MovieClip [physicsTweek_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Note: changes take effect immediately."; visible = true; minHeight = 0; minWidth = 0; }
Symbol 423 MovieClip [CheckThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 434 MovieClip [CheckBoxAssets] Frame 1
#initclip 106 mx.controls.CheckBox.prototype.adjustFocusRect = function () { var _local4 = this._parent.focus_mc; var _local2 = this.iconName; var _local3 = this.getStyle("themeColor"); if (_local3 == undefined) { _local3 = 8453965 /* 0x80FF4D */; } var _local8 = _local2._width + 4; var _local5 = _local2._height + 4; _local4.setSize(_local8, _local5, 0, 100, _local3); var _local7 = _local2._x; var _local6 = _local2._y; _local4.move((this.x - 2) + _local7, (this.y + _local6) - 2); }; #endinitclip
Symbol 435 MovieClip [CheckBox] Frame 1
#initclip 107 Object.registerClass("CheckBox", mx.controls.CheckBox); #endinitclip stop();
Instance of Symbol 85 MovieClip [Button] in Symbol 435 MovieClip [CheckBox] Frame 2
//component parameters onClipEvent (initialize) { icon = ""; label = "Button"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 437 MovieClip [script_mc] Frame 1
scriptBox.setStyle("fontFamily", "Courier New");
Instance of Symbol 250 MovieClip [TextArea] "scriptBox" in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { editable = true; html = false; text = ""; wordWrap = false; maxChars = null; restrict = ""; enabled = true; password = false; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 301 MovieClip [List] "scriptsList" in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { multipleSelection = false; rowHeight = 20; }
Instance of Symbol 85 MovieClip [Button] "loadButton" in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { icon = ""; label = "Load Script"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 320 MovieClip [TextInput] "nameBox" in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { editable = true; password = false; text = ""; maxChars = null; restrict = ""; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Name:"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 85 MovieClip [Button] "deleteButton" in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { icon = ""; label = "Delete Script"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 85 MovieClip [Button] "saveButton" in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { icon = ""; label = "Save Script"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Script:"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Saved scripts:"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 85 MovieClip [Button] "runOnceButton" in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { icon = ""; label = "Run Once"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "NOTE: EXPERIMENTAL FEATURE (slowdown and glitches possible)"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 435 MovieClip [CheckBox] "everyFrameCheck" in Symbol 437 MovieClip [script_mc] Frame 1
//component parameters onClipEvent (construct) { label = "Run Every Frame"; labelPlacement = "right"; selected = false; }
Symbol 474 MovieClip Frame 1
stop();
Symbol 483 MovieClip Frame 1
stop();
Symbol 490 MovieClip Frame 1
stop();
Symbol 498 MovieClip Frame 1
stop();
Symbol 501 MovieClip Frame 1
stop();
Symbol 503 MovieClip Frame 2
stop();
Instance of Symbol 320 MovieClip [TextInput] "loadAddress" in Symbol 507 MovieClip [customFace_mc] Frame 1
//component parameters onClipEvent (construct) { editable = true; password = false; text = ""; maxChars = null; restrict = ""; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 85 MovieClip [Button] "loadButton" in Symbol 507 MovieClip [customFace_mc] Frame 1
//component parameters onClipEvent (construct) { icon = ""; label = "Load Image"; labelPlacement = "right"; selected = false; toggle = false; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 507 MovieClip [customFace_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "JPEGs only. Left click: place masking points, shift/control rotate,"; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 507 MovieClip [customFace_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "arrow keys: x and y, page up/down: z, del: remove point, home: reset."; visible = true; minHeight = 0; minWidth = 0; }
Instance of Symbol 304 MovieClip [Label] in Symbol 507 MovieClip [customFace_mc] Frame 1
//component parameters onClipEvent (construct) { autoSize = "none"; html = false; text = "Sample Placement"; visible = true; minHeight = 0; minWidth = 0; }
Symbol 525 MovieClip [about_mc] Frame 1
titleText.text = "Interactive Buddy"; mainText.html = true; mainText.htmlText = "<P ALIGN=\"CENTER\"> \u00A9 2005 Shock Value\n\nE-mail me at:\n<FONT COLOR=\"#0000FF\"><U><A HREF=\"MAILTO:shock.value@gmail.com\">shock.value@gmail.com</A></U></FONT>\n(comments welcome)\nSee more of my stuff at:\n<FONT COLOR=\"#0000FF\"><U><A HREF=\"http://shock-value.deviantart.com\">shock-value.deviantart.com</A></U></FONT></P>";
Symbol 528 MovieClip [text_mc] Frame 1
onEnterFrame = function () { theText.text = _parent.txt; };
Symbol 530 MovieClip [ScrollPane] Frame 1
#initclip 108 Object.registerClass("ScrollPane", mx.containers.ScrollPane); #endinitclip stop();
Instance of Symbol 530 MovieClip [ScrollPane] "textScroll" in Symbol 531 MovieClip [stats_mc] Frame 1
//component parameters onClipEvent (construct) { contentPath = "statsListing_mc"; hLineScrollSize = 5; hPageScrollSize = 20; hScrollPolicy = "off"; scrollDrag = false; vLineScrollSize = 5; vPageScrollSize = 20; vScrollPolicy = "auto"; enabled = true; visible = true; minHeight = 0; minWidth = 0; }
Symbol 533 MovieClip [statsListing_mc] Frame 1
statsText.text = _root.statsListing();
Symbol 556 MovieClip [MenuBarItem] Frame 1
#initclip 109 Object.registerClass("MenuBarItem", mx.controls.menuclasses.MenuBarItem); #endinitclip
Symbol 557 MovieClip [ActivatorSkin] Frame 1
#initclip 110 Object.registerClass("ActivatorSkin", mx.skins.halo.ActivatorSkin); #endinitclip
Symbol 565 MovieClip [MenuBar] Frame 1
#initclip 111 Object.registerClass("MenuBar", mx.controls.MenuBar); #endinitclip stop();
Instance of Symbol 242 MovieClip [Menu] in Symbol 565 MovieClip [MenuBar] Frame 2
//component parameters onClipEvent (initialize) { rowHeight = 20; }
Symbol 574 MovieClip [border] Frame 1
if (_root.newgroundsVersion) { gotoAndStop ("ng"); } else { stop(); }
Symbol 579 MovieClip Frame 1
if (_root.newgroundsVersion) { gotoAndStop ("ng"); } else { stop(); }
Symbol 243 MovieClip [__Packages.mx.managers.PopUpManager] Frame 0
class mx.managers.PopUpManager { var popUp, setSize, move, modalWindow, _parent, _name, _visible, owner; function PopUpManager () { } static function createModalWindow(parent, o, broadcastOutsideEvents) { var _local2 = parent.createChildAtDepth("Modal", mx.managers.DepthManager.kTopmost); _local2.setDepthBelow(o); o.modalID = _local2._name; _local2._alpha = _global.style.modalTransparency; _local2.tabEnabled = false; if (broadcastOutsideEvents) { _local2.onPress = mixins.onPress; } else { _local2.onPress = mixins.nullFunction; } _local2.onRelease = mixins.nullFunction; _local2.resize = mixins.resize; mx.managers.SystemManager.init(); mx.managers.SystemManager.addEventListener("resize", _local2); _local2.resize(); _local2.useHandCursor = false; _local2.popUp = o; o.modalWindow = _local2; o.deletePopUp = mixins.deletePopUp; o.setVisible = mixins.setVisible; o.getVisible = mixins.getVisible; o.addProperty("visible", o.getVisible, o.setVisible); } static function createPopUp(parent, className, modal, initobj, broadcastOutsideEvents) { if (mixins == undefined) { mixins = new mx.managers.PopUpManager(); } if (broadcastOutsideEvents == undefined) { broadcastOutsideEvents = false; } var _local5 = parent._root; if (_local5 == undefined) { _local5 = _root; } while (parent != _local5) { parent = parent._parent; } initobj.popUp = true; var _local4 = parent.createClassChildAtDepth(className, ((broadcastOutsideEvents || (modal)) ? (mx.managers.DepthManager.kTopmost) : (mx.managers.DepthManager.kTop)), initobj); var _local2 = _root; var _local6 = _local2.focusManager != undefined; while (_local2._parent != undefined) { _local2 = _local2._parent._root; if (_local2.focusManager != undefined) { _local6 = true; break; } } if (_local6) { _local4.createObject("FocusManager", "focusManager", -1); if (_local4._visible == false) { mx.managers.SystemManager.deactivate(_local4); } } if (modal) { createModalWindow(parent, _local4, broadcastOutsideEvents); } else { if (broadcastOutsideEvents) { _local4.mouseListener = new Object(); _local4.mouseListener.owner = _local4; _local4.mouseListener.onMouseDown = mixins.onMouseDown; Mouse.addListener(_local4.mouseListener); } _local4.deletePopUp = mixins.deletePopUp; } return(_local4); } function onPress(Void) { var _local3 = popUp._root; if (_local3 == undefined) { _local3 = _root; } if (popUp.hitTest(_local3._xmouse, _local3._ymouse, false)) { return(undefined); } popUp.dispatchEvent({type:"mouseDownOutside"}); } function nullFunction(Void) { } function resize(Void) { var _local2 = mx.managers.SystemManager.__get__screen(); setSize(_local2.width, _local2.height); move(_local2.x, _local2.y); } function deletePopUp(Void) { if (modalWindow != undefined) { _parent.destroyObject(modalWindow._name); } _parent.destroyObject(_name); } function setVisible(v, noEvent) { super.setVisible(v, noEvent); modalWindow._visible = v; } function getVisible(Void) { return(_visible); } function onMouseDown(Void) { var _local3 = owner._root; if (_local3 == undefined) { _local3 = _root; } var _local4 = new Object(); _local4.x = _local3._xmouse; _local4.y = _local3._ymouse; _local3.localToGlobal(_local4); if (owner.hitTest(_local4.x, _local4.y, false)) { } else { owner.mouseDownOutsideHandler(owner); } } static var version = "2.0.1.78"; static var mixins = undefined; }
Symbol 53 MovieClip [__Packages.mx.core.UIObject] Frame 0
class mx.core.UIObject extends MovieClip { var _width, _height, _x, _y, _parent, _minHeight, _minWidth, _visible, dispatchEvent, _xscale, _yscale, methodTable, onEnterFrame, tfList, __width, __height, moveTo, lineTo, createTextField, attachMovie, buildDepthTable, findNextAvailableDepth, idNames, childrenCreated, _name, createAccessibilityImplementation, _endInit, validateNow, hasOwnProperty, initProperties, stylecache, className, ignoreClassStyleDeclaration, _tf, fontFamily, fontSize, color, marginLeft, marginRight, fontStyle, fontWeight, textAlign, textIndent, textDecoration, embedFonts, styleName, enabled; function UIObject () { super(); constructObject(); } function get width() { return(_width); } function get height() { return(_height); } function get left() { return(_x); } function get x() { return(_x); } function get top() { return(_y); } function get y() { return(_y); } function get right() { return(_parent.width - (_x + width)); } function get bottom() { return(_parent.height - (_y + height)); } function getMinHeight(Void) { return(_minHeight); } function setMinHeight(h) { _minHeight = h; } function get minHeight() { return(getMinHeight()); } function set minHeight(h) { setMinHeight(h); //return(minHeight); } function getMinWidth(Void) { return(_minWidth); } function setMinWidth(w) { _minWidth = w; } function get minWidth() { return(getMinWidth()); } function set minWidth(w) { setMinWidth(w); //return(minWidth); } function setVisible(x, noEvent) { if (x != _visible) { _visible = x; if (noEvent != true) { dispatchEvent({type:(x ? "reveal" : "hide")}); } } } function get visible() { return(_visible); } function set visible(x) { setVisible(x, false); //return(visible); } function get scaleX() { return(_xscale); } function set scaleX(x) { _xscale = x; //return(scaleX); } function get scaleY() { return(_yscale); } function set scaleY(y) { _yscale = y; //return(scaleY); } function doLater(obj, fn) { if (methodTable == undefined) { methodTable = new Array(); } methodTable.push({obj:obj, fn:fn}); onEnterFrame = doLaterDispatcher; } function doLaterDispatcher(Void) { delete onEnterFrame; if (invalidateFlag) { redraw(); } var _local3 = methodTable; methodTable = new Array(); if (_local3.length > 0) { var _local2; while (_local2 = _local3.shift() , _local2 != undefined) { _local2.obj[_local2.fn](); } } } function cancelAllDoLaters(Void) { delete onEnterFrame; methodTable = new Array(); } function invalidate(Void) { invalidateFlag = true; onEnterFrame = doLaterDispatcher; } function invalidateStyle(Void) { invalidate(); } function redraw(bAlways) { if (invalidateFlag || (bAlways)) { invalidateFlag = false; var _local2; for (_local2 in tfList) { tfList[_local2].draw(); } draw(); dispatchEvent({type:"draw"}); } } function draw(Void) { } function move(x, y, noEvent) { var _local3 = _x; var _local2 = _y; _x = x; _y = y; if (noEvent != true) { dispatchEvent({type:"move", oldX:_local3, oldY:_local2}); } } function setSize(w, h, noEvent) { var _local3 = __width; var _local2 = __height; __width = w; __height = h; size(); if (noEvent != true) { dispatchEvent({type:"resize", oldWidth:_local3, oldHeight:_local2}); } } function size(Void) { _width = __width; _height = __height; } function drawRect(x1, y1, x2, y2) { moveTo(x1, y1); lineTo(x2, y1); lineTo(x2, y2); lineTo(x1, y2); lineTo(x1, y1); } function createLabel(name, depth, text) { createTextField(name, depth, 0, 0, 0, 0); var _local2 = this[name]; _local2._color = textColorList; _local2._visible = false; _local2.__text = text; if (tfList == undefined) { tfList = new Object(); } tfList[name] = _local2; _local2.invalidateStyle(); invalidate(); _local2.styleName = this; return(_local2); } function createObject(linkageName, id, depth, initobj) { return(attachMovie(linkageName, id, depth, initobj)); } function createClassObject(className, id, depth, initobj) { var _local3 = className.symbolName == undefined; if (_local3) { Object.registerClass(className.symbolOwner.symbolName, className); } var _local4 = mx.core.UIObject(createObject(className.symbolOwner.symbolName, id, depth, initobj)); if (_local3) { Object.registerClass(className.symbolOwner.symbolName, className.symbolOwner); } return(_local4); } function createEmptyObject(id, depth) { return(createClassObject(mx.core.UIObject, id, depth)); } function destroyObject(id) { var _local2 = this[id]; if (_local2.getDepth() < 0) { var _local4 = buildDepthTable(); var _local5 = findNextAvailableDepth(0, _local4, "up"); var _local3 = _local5; _local2.swapDepths(_local3); } _local2.removeMovieClip(); delete this[id]; } function getSkinIDName(tag) { return(idNames[tag]); } function setSkin(tag, linkageName, initObj) { if (_global.skinRegistry[linkageName] == undefined) { mx.skins.SkinElement.registerElement(linkageName, mx.skins.SkinElement); } return(createObject(linkageName, getSkinIDName(tag), tag, initObj)); } function createSkin(tag) { var _local2 = getSkinIDName(tag); createEmptyObject(_local2, tag); return(this[_local2]); } function createChildren(Void) { } function _createChildren(Void) { createChildren(); childrenCreated = true; } function constructObject(Void) { if (_name == undefined) { return(undefined); } init(); _createChildren(); createAccessibilityImplementation(); _endInit(); if (validateNow) { redraw(true); } else { invalidate(); } } function initFromClipParameters(Void) { var _local4 = false; var _local2; for (_local2 in clipParameters) { if (hasOwnProperty(_local2)) { _local4 = true; this["def_" + _local2] = this[_local2]; delete this[_local2]; } } if (_local4) { for (_local2 in clipParameters) { var _local3 = this["def_" + _local2]; if (_local3 != undefined) { this[_local2] = _local3; } } } } function init(Void) { __width = _width; __height = _height; if (initProperties == undefined) { initFromClipParameters(); } else { initProperties(); } if (_global.cascadingStyles == true) { stylecache = new Object(); } } function getClassStyleDeclaration(Void) { var _local4 = this; var _local3 = className; while (_local3 != undefined) { if (ignoreClassStyleDeclaration[_local3] == undefined) { if (_global.styles[_local3] != undefined) { return(_global.styles[_local3]); } } _local4 = _local4.__proto__; _local3 = _local4.className; } } function setColor(color) { } function __getTextFormat(tf, bAll) { var _local8 = stylecache.tf; if (_local8 != undefined) { var _local3; for (_local3 in mx.styles.StyleManager.TextFormatStyleProps) { if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) { if (tf[_local3] == undefined) { tf[_local3] = _local8[_local3]; } } } return(false); } var _local6 = false; for (var _local3 in mx.styles.StyleManager.TextFormatStyleProps) { if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) { if (tf[_local3] == undefined) { var _local5 = _tf[_local3]; if (_local5 != undefined) { tf[_local3] = _local5; } else if ((_local3 == "font") && (fontFamily != undefined)) { tf[_local3] = fontFamily; } else if ((_local3 == "size") && (fontSize != undefined)) { tf[_local3] = fontSize; } else if ((_local3 == "color") && (color != undefined)) { tf[_local3] = color; } else if ((_local3 == "leftMargin") && (marginLeft != undefined)) { tf[_local3] = marginLeft; } else if ((_local3 == "rightMargin") && (marginRight != undefined)) { tf[_local3] = marginRight; } else if ((_local3 == "italic") && (fontStyle != undefined)) { tf[_local3] = fontStyle == _local3; } else if ((_local3 == "bold") && (fontWeight != undefined)) { tf[_local3] = fontWeight == _local3; } else if ((_local3 == "align") && (textAlign != undefined)) { tf[_local3] = textAlign; } else if ((_local3 == "indent") && (textIndent != undefined)) { tf[_local3] = textIndent; } else if ((_local3 == "underline") && (textDecoration != undefined)) { tf[_local3] = textDecoration == _local3; } else if ((_local3 == "embedFonts") && (embedFonts != undefined)) { tf[_local3] = embedFonts; } else { _local6 = true; } } } } if (_local6) { var _local9 = styleName; if (_local9 != undefined) { if (typeof(_local9) != "string") { _local6 = _local9.__getTextFormat(tf, true, this); } else if (_global.styles[_local9] != undefined) { _local6 = _global.styles[_local9].__getTextFormat(tf, true, this); } } } if (_local6) { var _local10 = getClassStyleDeclaration(); if (_local10 != undefined) { _local6 = _local10.__getTextFormat(tf, true, this); } } if (_local6) { if (_global.cascadingStyles) { if (_parent != undefined) { _local6 = _parent.__getTextFormat(tf, false); } } } if (_local6) { _local6 = _global.style.__getTextFormat(tf, true, this); } return(_local6); } function _getTextFormat(Void) { var _local2 = stylecache.tf; if (_local2 != undefined) { return(_local2); } _local2 = new TextFormat(); __getTextFormat(_local2, true); stylecache.tf = _local2; if (enabled == false) { var _local3 = getStyle("disabledColor"); _local2.color = _local3; } return(_local2); } function getStyleName(Void) { var _local2 = styleName; if (_local2 != undefined) { if (typeof(_local2) != "string") { return(_local2.getStyleName()); } return(_local2); } if (_parent != undefined) { return(_parent.getStyleName()); } return(undefined); } function getStyle(styleProp) { var _local3; _global.getStyleCounter++; if (this[styleProp] != undefined) { return(this[styleProp]); } var _local6 = styleName; if (_local6 != undefined) { if (typeof(_local6) != "string") { _local3 = _local6.getStyle(styleProp); } else { var _local7 = _global.styles[_local6]; _local3 = _local7.getStyle(styleProp); } } if (_local3 != undefined) { return(_local3); } var _local7 = getClassStyleDeclaration(); if (_local7 != undefined) { _local3 = _local7[styleProp]; } if (_local3 != undefined) { return(_local3); } if (_global.cascadingStyles) { if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (mx.styles.StyleManager.isColorStyle(styleProp))) { var _local5 = stylecache; if (_local5 != undefined) { if (_local5[styleProp] != undefined) { return(_local5[styleProp]); } } if (_parent != undefined) { _local3 = _parent.getStyle(styleProp); } else { _local3 = _global.style[styleProp]; } if (_local5 != undefined) { _local5[styleProp] = _local3; } return(_local3); } } if (_local3 == undefined) { _local3 = _global.style[styleProp]; } return(_local3); } static function mergeClipParameters(o, p) { for (var _local3 in p) { o[_local3] = p[_local3]; } return(true); } static var symbolName = "UIObject"; static var symbolOwner = mx.core.UIObject; static var version = "2.0.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 166 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 167 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 169 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 168 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 172 MovieClip [__Packages.mx.managers.DepthManager] Frame 0
class mx.managers.DepthManager { var _childCounter, createClassObject, createObject, _parent, swapDepths, _topmost, getDepth; function DepthManager () { MovieClip.prototype.createClassChildAtDepth = createClassChildAtDepth; MovieClip.prototype.createChildAtDepth = createChildAtDepth; MovieClip.prototype.setDepthTo = setDepthTo; MovieClip.prototype.setDepthAbove = setDepthAbove; MovieClip.prototype.setDepthBelow = setDepthBelow; MovieClip.prototype.findNextAvailableDepth = findNextAvailableDepth; MovieClip.prototype.shuffleDepths = shuffleDepths; MovieClip.prototype.getDepthByFlag = getDepthByFlag; MovieClip.prototype.buildDepthTable = buildDepthTable; _global.ASSetPropFlags(MovieClip.prototype, "createClassChildAtDepth", 1); _global.ASSetPropFlags(MovieClip.prototype, "createChildAtDepth", 1); _global.ASSetPropFlags(MovieClip.prototype, "setDepthTo", 1); _global.ASSetPropFlags(MovieClip.prototype, "setDepthAbove", 1); _global.ASSetPropFlags(MovieClip.prototype, "setDepthBelow", 1); _global.ASSetPropFlags(MovieClip.prototype, "findNextAvailableDepth", 1); _global.ASSetPropFlags(MovieClip.prototype, "shuffleDepths", 1); _global.ASSetPropFlags(MovieClip.prototype, "getDepthByFlag", 1); _global.ASSetPropFlags(MovieClip.prototype, "buildDepthTable", 1); } static function sortFunction(a, b) { if (a.getDepth() > b.getDepth()) { return(1); } return(-1); } static function test(depth) { if (depth == reservedDepth) { return(false); } return(true); } static function createClassObjectAtDepth(className, depthSpace, initObj) { var _local1; switch (depthSpace) { case kCursor : _local1 = holder.createClassChildAtDepth(className, kTopmost, initObj); break; case kTooltip : _local1 = holder.createClassChildAtDepth(className, kTop, initObj); break; } return(_local1); } static function createObjectAtDepth(linkageName, depthSpace, initObj) { var _local1; switch (depthSpace) { case kCursor : _local1 = holder.createChildAtDepth(linkageName, kTopmost, initObj); break; case kTooltip : _local1 = holder.createChildAtDepth(linkageName, kTop, initObj); break; } return(_local1); } function createClassChildAtDepth(className, depthFlag, initObj) { if (_childCounter == undefined) { _childCounter = 0; } var _local3 = buildDepthTable(); var _local2 = getDepthByFlag(depthFlag, _local3); var _local5 = "down"; if (depthFlag == kBottom) { _local5 = "up"; } var _local6; if (_local3[_local2] != undefined) { _local6 = _local2; _local2 = findNextAvailableDepth(_local2, _local3, _local5); } var _local4 = createClassObject(className, "depthChild" + (_childCounter++), _local2, initObj); if (_local6 != undefined) { _local3[_local2] = _local4; shuffleDepths(_local4, _local6, _local3, _local5); } if (depthFlag == kTopmost) { _local4._topmost = true; } return(_local4); } function createChildAtDepth(linkageName, depthFlag, initObj) { if (_childCounter == undefined) { _childCounter = 0; } var _local3 = buildDepthTable(); var _local2 = getDepthByFlag(depthFlag, _local3); var _local5 = "down"; if (depthFlag == kBottom) { _local5 = "up"; } var _local6; if (_local3[_local2] != undefined) { _local6 = _local2; _local2 = findNextAvailableDepth(_local2, _local3, _local5); } var _local4 = createObject(linkageName, "depthChild" + (_childCounter++), _local2, initObj); if (_local6 != undefined) { _local3[_local2] = _local4; shuffleDepths(_local4, _local6, _local3, _local5); } if (depthFlag == kTopmost) { _local4._topmost = true; } return(_local4); } function setDepthTo(depthFlag) { var _local2 = _parent.buildDepthTable(); var _local3 = _parent.getDepthByFlag(depthFlag, _local2); if (_local2[_local3] != undefined) { shuffleDepths(MovieClip(this), _local3, _local2, undefined); } else { swapDepths(_local3); } if (depthFlag == kTopmost) { _topmost = true; } else { delete _topmost; } } function setDepthAbove(targetInstance) { if (targetInstance._parent != _parent) { return(undefined); } var _local2 = targetInstance.getDepth() + 1; var _local3 = _parent.buildDepthTable(); if ((_local3[_local2] != undefined) && (getDepth() < _local2)) { _local2 = _local2 - 1; } if (_local2 > highestDepth) { _local2 = highestDepth; } if (_local2 == highestDepth) { _parent.shuffleDepths(this, _local2, _local3, "down"); } else if (_local3[_local2] != undefined) { _parent.shuffleDepths(this, _local2, _local3, undefined); } else { swapDepths(_local2); } } function setDepthBelow(targetInstance) { if (targetInstance._parent != _parent) { return(undefined); } var _local6 = targetInstance.getDepth() - 1; var _local3 = _parent.buildDepthTable(); if ((_local3[_local6] != undefined) && (getDepth() > _local6)) { _local6 = _local6 + 1; } var _local4 = lowestDepth + numberOfAuthortimeLayers; var _local5; for (_local5 in _local3) { var _local2 = _local3[_local5]; if (_local2._parent != undefined) { _local4 = Math.min(_local4, _local2.getDepth()); } } if (_local6 < _local4) { _local6 = _local4; } if (_local6 == _local4) { _parent.shuffleDepths(this, _local6, _local3, "up"); } else if (_local3[_local6] != undefined) { _parent.shuffleDepths(this, _local6, _local3, undefined); } else { swapDepths(_local6); } } function findNextAvailableDepth(targetDepth, depthTable, direction) { var _local5 = lowestDepth + numberOfAuthortimeLayers; if (targetDepth < _local5) { targetDepth = _local5; } if (depthTable[targetDepth] == undefined) { return(targetDepth); } var _local1 = targetDepth; var _local2 = targetDepth; if (direction == "down") { while (depthTable[_local2] != undefined) { _local2--; } return(_local2); } while (depthTable[_local1] != undefined) { _local1++; } return(_local1); } function shuffleDepths(subject, targetDepth, depthTable, direction) { var _local9 = lowestDepth + numberOfAuthortimeLayers; var _local8 = _local9; var _local5; for (_local5 in depthTable) { var _local7 = depthTable[_local5]; if (_local7._parent != undefined) { _local9 = Math.min(_local9, _local7.getDepth()); } } if (direction == undefined) { if (subject.getDepth() > targetDepth) { direction = "up"; } else { direction = "down"; } } var _local1 = new Array(); for (_local5 in depthTable) { var _local7 = depthTable[_local5]; if (_local7._parent != undefined) { _local1.push(_local7); } } _local1.sort(sortFunction); if (direction == "up") { var _local3; var _local11; do { if (_local1.length <= 0) { break; } _local3 = _local1.pop(); } while (_local3 != subject); do { if (_local1.length <= 0) { break; } _local11 = subject.getDepth(); _local3 = _local1.pop(); var _local4 = _local3.getDepth(); if (_local11 > (_local4 + 1)) { if (_local4 >= 0) { subject.swapDepths(_local4 + 1); } else if ((_local11 > _local8) && (_local4 < _local8)) { subject.swapDepths(_local8); } } subject.swapDepths(_local3); } while (_local4 != targetDepth); } else if (direction == "down") { var _local3; do { if (_local1.length <= 0) { break; } _local3 = _local1.shift(); } while (_local3 != subject); do { if (_local1.length <= 0) { break; } var _local11 = _local3.getDepth(); _local3 = _local1.shift(); var _local4 = _local3.getDepth(); if ((_local11 < (_local4 - 1)) && (_local4 > 0)) { subject.swapDepths(_local4 - 1); } subject.swapDepths(_local3); } while (_local4 != targetDepth); } } function getDepthByFlag(depthFlag, depthTable) { var _local2 = 0; if ((depthFlag == kTop) || (depthFlag == kNotopmost)) { var _local5 = 0; var _local7 = false; var _local8; for (_local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { if (!_local9._topmost) { _local2 = Math.max(_local2, _local9.getDepth()); } else if (!_local7) { _local5 = _local9.getDepth(); _local7 = true; } else { _local5 = Math.min(_local5, _local9.getDepth()); } } } } _local2 = _local2 + 20; if (_local7) { if (_local2 >= _local5) { _local2 = _local5 - 1; } } } else if (depthFlag == kBottom) { for (var _local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { _local2 = Math.min(_local2, _local9.getDepth()); } } } _local2 = _local2 - 20; } else if (depthFlag == kTopmost) { for (var _local8 in depthTable) { var _local9 = depthTable[_local8]; var _local3 = typeof(_local9); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) { if (_local9.getDepth() <= highestDepth) { _local2 = Math.max(_local2, _local9.getDepth()); } } } _local2 = _local2 + 100; } if (_local2 >= highestDepth) { _local2 = highestDepth; } var _local6 = lowestDepth + numberOfAuthortimeLayers; for (var _local9 in depthTable) { var _local4 = depthTable[_local9]; if (_local4._parent != undefined) { _local6 = Math.min(_local6, _local4.getDepth()); } } if (_local2 <= _local6) { _local2 = _local6; } return(_local2); } function buildDepthTable(Void) { var _local5 = new Array(); var _local4; for (_local4 in this) { var _local2 = this[_local4]; var _local3 = typeof(_local2); if ((_local3 == "movieclip") || ((_local3 == "object") && (_local2.__getTextFormat != undefined))) { if (_local2._parent == this) { _local5[_local2.getDepth()] = _local2; } } } return(_local5); } static var reservedDepth = 1048575; static var highestDepth = 1048574; static var lowestDepth = -16383; static var numberOfAuthortimeLayers = 383; static var kCursor = 101; static var kTooltip = 102; static var kTop = 201; static var kBottom = 202; static var kTopmost = 203; static var kNotopmost = 204; static var holder = _root.createEmptyMovieClip("reserved", reservedDepth); static var __depthManager = new mx.managers.DepthManager(); }
Symbol 185 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 173 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 54 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 55 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 170 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 171 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 175 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 174 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 56 MovieClip [__Packages.mx.core.ScrollView] Frame 0
class mx.core.ScrollView extends mx.core.View { var __width, hScroller, vScroller, __maxHPosition, propsInited, scrollAreaChanged, specialHScrollCase, createObject, viewableColumns, __height, oldRndUp, viewableRows, __viewMetrics, owner, enabled, border_mc, __get__width, __get__height, invLayout, mask_mc, _parent, dispatchEvent; function ScrollView () { super(); } function getHScrollPolicy(Void) { return(__hScrollPolicy); } function setHScrollPolicy(policy) { __hScrollPolicy = policy.toLowerCase(); if (__width == undefined) { return(undefined); } setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding); } function get hScrollPolicy() { return(getHScrollPolicy()); } function set hScrollPolicy(policy) { setHScrollPolicy(policy); //return(hScrollPolicy); } function getVScrollPolicy(Void) { return(__vScrollPolicy); } function setVScrollPolicy(policy) { __vScrollPolicy = policy.toLowerCase(); if (__width == undefined) { return(undefined); } setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding); } function get vScrollPolicy() { return(getVScrollPolicy()); } function set vScrollPolicy(policy) { setVScrollPolicy(policy); //return(vScrollPolicy); } function get hPosition() { return(getHPosition()); } function set hPosition(pos) { setHPosition(pos); //return(hPosition); } function getHPosition(Void) { return(__hPosition); } function setHPosition(pos) { hScroller.__set__scrollPosition(pos); __hPosition = pos; } function get vPosition() { return(getVPosition()); } function set vPosition(pos) { setVPosition(pos); //return(vPosition); } function getVPosition(Void) { return(__vPosition); } function setVPosition(pos) { vScroller.__set__scrollPosition(pos); __vPosition = pos; } function get maxVPosition() { var _local2 = vScroller.maxPos; return(((_local2 == undefined) ? 0 : (_local2))); } function get maxHPosition() { return(getMaxHPosition()); } function set maxHPosition(pos) { setMaxHPosition(pos); //return(maxHPosition); } function getMaxHPosition(Void) { if (__maxHPosition != undefined) { return(__maxHPosition); } var _local2 = hScroller.maxPos; return(((_local2 == undefined) ? 0 : (_local2))); } function setMaxHPosition(pos) { __maxHPosition = pos; } function setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding) { var _local3 = getViewMetrics(); if (hPadding == undefined) { hPadding = 0; } if (wPadding == undefined) { wPadding = 0; } propsInited = true; delete scrollAreaChanged; heightPadding = hPadding; widthPadding = wPadding; if (colWidth == 0) { colWidth = 1; } if (rwHeight == 0) { rwHeight = 1; } var _local4 = Math.ceil((((__width - _local3.left) - _local3.right) - widthPadding) / colWidth); if ((__hScrollPolicy == "on") || ((_local4 < colCount) && (__hScrollPolicy == "auto"))) { if ((hScroller == undefined) || (specialHScrollCase)) { delete specialHScrollCase; hScroller = mx.controls.scrollClasses.ScrollBar(createObject("HScrollBar", "hSB", 1001)); hScroller.__set__lineScrollSize(20); hScroller.scrollHandler = scrollProxy; hScroller.__set__scrollPosition(__hPosition); scrollAreaChanged = true; } if ((((numberOfCols != colCount) || (columnWidth != colWidth)) || (viewableColumns != _local4)) || (scrollAreaChanged)) { hScroller.setScrollProperties(_local4, 0, colCount - _local4); viewableColumns = _local4; numberOfCols = colCount; columnWidth = colWidth; } } else if (((__hScrollPolicy == "auto") || (__hScrollPolicy == "off")) && (hScroller != undefined)) { hScroller.removeMovieClip(); delete hScroller; scrollAreaChanged = true; } if (heightPadding == undefined) { heightPadding = 0; } var _local5 = Math.ceil((((__height - _local3.top) - _local3.bottom) - heightPadding) / rwHeight); var _local8 = (((__height - _local3.top) - _local3.bottom) % rwHeight) != 0; if ((__vScrollPolicy == "on") || ((_local5 < (rwCount + _local8)) && (__vScrollPolicy == "auto"))) { if (vScroller == undefined) { vScroller = mx.controls.scrollClasses.ScrollBar(createObject("VScrollBar", "vSB", 1002)); vScroller.scrollHandler = scrollProxy; vScroller.__set__scrollPosition(__vPosition); scrollAreaChanged = true; rowH = 0; } if ((((rowC != rwCount) || (rowH != rwHeight)) || ((viewableRows + _local8) != (_local5 + oldRndUp))) || (scrollAreaChanged)) { vScroller.setScrollProperties(_local5, 0, (rwCount - _local5) + _local8); viewableRows = _local5; rowC = rwCount; rowH = rwHeight; oldRndUp = _local8; } } else if (((__vScrollPolicy == "auto") || (__vScrollPolicy == "off")) && (vScroller != undefined)) { vScroller.removeMovieClip(); delete vScroller; scrollAreaChanged = true; } numberOfCols = colCount; columnWidth = colWidth; if (scrollAreaChanged) { doLayout(); var _local2 = __viewMetrics; var _local12 = ((owner != undefined) ? (owner) : this); _local12.layoutContent(_local2.left, _local2.top, ((columnWidth * numberOfCols) - _local2.left) - _local2.right, rowC * rowH, (__width - _local2.left) - _local2.right, (__height - _local2.top) - _local2.bottom); } if (!enabled) { setEnabled(false); } } function getViewMetrics(Void) { var _local2 = __viewMetrics; var _local3 = border_mc.__get__borderMetrics(); _local2.left = _local3.left; _local2.right = _local3.right; if (vScroller != undefined) { _local2.right = _local2.right + vScroller.minWidth; } _local2.top = _local3.top; if ((hScroller == undefined) && ((__hScrollPolicy == "on") || (__hScrollPolicy == true))) { hScroller = mx.controls.scrollClasses.ScrollBar(createObject("FHScrollBar", "hSB", 1001)); specialHScrollCase = true; } _local2.bottom = _local3.bottom; if (hScroller != undefined) { _local2.bottom = _local2.bottom + hScroller.minHeight; } return(_local2); } function doLayout(Void) { var _local10 = __get__width(); var _local8 = __get__height(); delete invLayout; var _local3 = (__viewMetrics = getViewMetrics()); var _local2 = _local3.left; var _local9 = _local3.right; var _local5 = _local3.top; var _local11 = _local3.bottom; var _local7 = hScroller; var _local6 = vScroller; _local7.setSize((_local10 - _local2) - _local9, _local7.minHeight + 0); _local7.move(_local2, _local8 - _local11); _local6.setSize(_local6.minWidth + 0, (_local8 - _local5) - _local11); _local6.move(_local10 - _local9, _local5); var _local4 = mask_mc; _local4._width = (_local10 - _local2) - _local9; _local4._height = (_local8 - _local5) - _local11; _local4._x = _local2; _local4._y = _local5; } function createChild(id, name, props) { var _local2 = super.createChild(id, name, props); return(_local2); } function init(Void) { super.init(); __viewMetrics = new Object(); if (_global.__SVMouseWheelManager == undefined) { var _local4 = (_global.__SVMouseWheelManager = new Object()); _local4.onMouseWheel = __onMouseWheel; Mouse.addListener(_local4); } } function __onMouseWheel(delta, scrollTarget) { var _local4 = scrollTarget; var _local1; while (_local4 != undefined) { if (_local4 instanceof mx.core.ScrollView) { _local1 = _local4; } _local4 = _local4._parent; } if (_local1 != undefined) { _local4 = ((delta <= 0) ? 1 : -1); var _local2 = _local1.vScroller.lineScrollSize; if (_local2 == undefined) { _local2 = 0; } _local2 = Math.max(Math.abs(delta), _local2); var _local3 = _local1.vPosition + (_local2 * _local4); _local1.vPosition = Math.max(0, Math.min(_local3, _local1.maxVPosition)); _local1.dispatchEvent({type:"scroll", direction:"vertical", position:_local1.vPosition}); } } function createChildren(Void) { super.createChildren(); if (mask_mc == undefined) { mask_mc = createObject("BoundingBox", "mask_mc", MASK_DEPTH); } mask_mc._visible = false; } function invalidate(Void) { super.invalidate(); } function draw(Void) { size(); } function size(Void) { super.size(); } function scrollProxy(docObj) { _parent.onScroll(docObj); } function onScroll(docObj) { var _local3 = docObj.target; var _local2 = _local3.scrollPosition; if (_local3 == vScroller) { var _local4 = "vertical"; var _local5 = "__vPosition"; } else { var _local4 = "horizontal"; var _local5 = "__hPosition"; } 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 179 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 176 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 177 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 178 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 57 MovieClip [__Packages.mx.containers.Window] Frame 0
class mx.containers.Window extends mx.core.ScrollView { var destroyChildAt, __contentPath, boundingBox_mc, _parent, modalWindow, swapDepths, regX, _xmouse, regY, _ymouse, onMouseMove, move, back_mc, createClassObject, depth, titleStyleDeclaration, button_mc, validateNow, redraw, invalidate, _title, _child0, border_mc, __get__width, __get__height, size, vScroller, hScroller, closeButton, dispatchEvent; function Window () { super(); } function set contentPath(scrollableContent) { if (!initializing) { if (scrollableContent == undefined) { destroyChildAt(0); } else { if (this[mx.core.View.childNameBase + 0] != undefined) { destroyChildAt(0); } createChild(scrollableContent, "content", {styleName:this}); } } __contentPath = scrollableContent; //return(contentPath); } function get contentPath() { return(__contentPath); } function init(Void) { super.init(); boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function delegateClick(obj) { _parent.dispatchEvent({type:"click"}); } function startDragging(Void) { if (modalWindow == undefined) { var _local2 = _parent.createChildAtDepth("BoundingBox", mx.managers.DepthManager.kTop, {_visible:false}); swapDepths(_local2); _local2.removeMovieClip(); } regX = _xmouse; regY = _ymouse; onMouseMove = dragTracking; } function stopDragging(Void) { delete onMouseMove; } function dragTracking() { var _local5 = _parent._xmouse - regX; var _local4 = _parent._ymouse - regY; var _local3 = 5; var _local2 = mx.managers.SystemManager.__get__screen(); if (_local5 < ((_local2.x - regX) + _local3)) { _local5 = (_local2.x - regX) + _local3; } if (_local5 > ((_local2.width + _local2.x) - (regX + _local3))) { _local5 = (_local2.width + _local2.x) - (regX + _local3); } if (_local4 < ((_local2.y - regY) + _local3)) { _local4 = (_local2.y - regY) + _local3; } if (_local4 > ((_local2.height + _local2.y) - (regY + _local3))) { _local4 = (_local2.height + _local2.y) - (regY + _local3); } move(_local5, _local4); updateAfterEvent(); } function createChildren(Void) { super.createChildren(); if (back_mc == undefined) { createClassObject(mx.core.UIObject, "back_mc", 1); back_mc.createObject(skinTitleBackground, "back_mc", 0); } back_mc.visible = false; depth = 3; var _local6 = new Object(); back_mc.useHandCursor = false; back_mc.onPress = function () { if (this._parent.enabled) { this._parent.startDragging(); } }; back_mc.onDragOut = (back_mc.onRollOut = (back_mc.onReleaseOutside = (back_mc.onRelease = function () { var _local2 = this._parent; _local2.stopDragging(); _local2.move(_local2._x, _local2._y); }))); back_mc.tabEnabled = false; if (back_mc.title_mc == undefined) { back_mc.createLabel("title_mc", 1, title); var _local4 = back_mc.title_mc; if (titleStyleDeclaration == undefined) { _local4.fontSize = 10; _local4.color = 16777215 /* 0xFFFFFF */; _local4.fontWeight = "bold"; } else { _local4.styleName = titleStyleDeclaration; } _local4.invalidateStyle(); } else { back_mc.title_mc.text = title; } var _local3 = new Object(); _local3.falseUpSkin = skinCloseUp; _local3.falseOverSkin = skinCloseOver; _local3.falseDownSkin = skinCloseDown; _local3.falseDisabledSkin = skinCloseDisabled; _local3.tabEnabled = false; createClassObject(mx.controls.SimpleButton, "button_mc", 2, _local3); button_mc.clickHandler = delegateClick; button_mc.__set__visible(false); if (validateNow) { redraw(true); } else { invalidate(); } } function get title() { return(_title); } function set title(s) { _title = s; back_mc.title_mc.text = s; if (!initializing) { draw(); } //return(title); } function setEnabled(enable) { super.setEnabled(enable); button_mc.enabled = enable; _child0.enabled = enable; } function getComponentCount(Void) { return(1); } function getComponentRect(container) { if (container == 1) { var _local3 = border_mc.__get__borderMetrics(); var _local2 = new Object(); _local2.x = _local3.left; _local2.y = _local3.top + back_mc.height; _local2.width = (__get__width() - _local2.x) - _local3.right; _local2.height = (__get__height() - _local2.y) - _local3.bottom; return(_local2); } return(undefined); } function draw(Void) { if (initializing) { initializing = false; if (__contentPath != undefined) { contentPath = (__contentPath); } _child0.visible = true; border_mc.__set__visible(true); back_mc.visible = true; } size(); } function getViewMetrics(Void) { var _local3 = super.getViewMetrics(); _local3.top = _local3.top + back_mc.height; return(_local3); } function doLayout(Void) { super.doLayout(); var _local3 = border_mc.__get__borderMetrics(); _local3.right = _local3.right + ((vScroller.__get__visible() == true) ? (vScroller.__get__width()) : 0); _local3.bottom = _local3.bottom + ((hScroller.__get__visible() == true) ? (hScroller.__get__height()) : 0); var _local4 = _local3.left; var _local6 = _local3.top; back_mc.move(_local4, _local6); back_mc.back_mc.setSize((__get__width() - _local4) - _local3.right, back_mc.height); _child0.move(_local4, _local6 + back_mc.height); if (_child0.size != mx.core.UIObject.prototype.size) { _child0.setSize((__get__width() - _local4) - _local3.right, ((__get__height() - _local6) - back_mc.height) - _local3.bottom); } button_mc.__set__visible(closeButton == true); button_mc.move(((__get__width() - _local4) - _local4) - button_mc.__get__width(), ((back_mc.height - button_mc.__get__height()) / 2) + _local6); var _local7 = back_mc.title_mc.textHeight; var _local5 = ((back_mc.height - _local7) - 4) / 2; back_mc.title_mc.move(_local5, _local5 - 1); back_mc.title_mc.setSize((__get__width() - _local5) - _local5, _local7 + 4); } function createChild(id, name, props) { loadingChild = true; var _local3 = super.createChild(id, name, props); loadingChild = false; return(_local3); } function childLoaded(obj) { super.childLoaded(obj); if (loadingChild) { dispatchEvent({type:"complete", current:obj.getBytesLoaded(), total:obj.getBytesTotal()}); } } static var symbolName = "Window"; static var symbolOwner = mx.containers.Window; static var version = "2.0.1.78"; var className = "Window"; static var skinIDBorder = 0; static var skinIDTitleBackground = 1; static var skinIDForm = 2; var idNames = new Array("border_mc", "back_mc", "content"); var skinTitleBackground = "TitleBackground"; var skinCloseUp = "CloseButtonUp"; var skinCloseOver = "CloseButtonOver"; var skinCloseDown = "CloseButtonDown"; var skinCloseDisabled = "CloseButtonDisabled"; var clipParameters = {title:1, contentPath:1, closeButton:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.containers.Window.prototype.clipParameters, mx.core.ScrollView.prototype.clipParameters); var initializing = true; var loadingChild = false; }
Symbol 247 MovieClip [__Packages.mx.controls.Alert] Frame 0
class mx.controls.Alert extends mx.containers.Window { static var style, titleStyleDeclaration, messageStyleDeclaration; var __set__visible, styleName, __set__contentPath, initializing, parent, __get__width, __get__height, move, _child0, __width, width, __height, height, border_mc, back_mc; function Alert () { super(); } static function show(text, title, flags, parent, listener, icon, defButton) { var _local2 = new Object(); var _local6 = ((flags & NONMODAL) ? false : true); if (parent == undefined) { parent = (_local2.parent = _root); } else { _local2.parent = parent; } _local2.okButton = ((flags & OK) ? true : false); _local2.cancelButton = ((flags & CANCEL) ? true : false); _local2.yesButton = ((flags & YES) ? true : false); _local2.noButton = ((flags & NO) ? true : false); _local2.defButton = defButton; if ((((_local2.okButton == false) && (_local2.cancelButton == false)) && (_local2.yesButton == false)) && (_local2.noButton == false)) { _local2.okButton = true; _local2.defButton = OK; } _local2.title = title; _local2.text = text; _local2.icon = icon; _local2.style = style; _local2.skinTitleBackground = titleBackground; _local2.titleStyleDeclaration = titleStyleDeclaration; _local2.validateNow = true; var _local4 = mx.managers.PopUpManager.createPopUp(parent, mx.controls.Alert, _local6, _local2); if (_local4 == undefined) { trace("Failed to create a new alert, probably because there is no Alert in the Library"); } _local4.addEventListener("click", listener); return(_local4); } function init(Void) { super.init(); __set__visible(false); } function createChildren(Void) { if (messageStyleDeclaration != undefined) { styleName = messageStyleDeclaration; } var _local3 = mx.controls.alertClasses.AlertForm; __set__contentPath(_local3); super.createChildren(); } function getViewMetrics(Void) { var _local2 = super.getViewMetrics(); return(_local2); } function doLayout(Void) { super.doLayout(); } function draw(Void) { var _local9 = initializing; super.draw(); if (_local9) { var _local5 = new Object(); _local5.x = 0; _local5.y = 0; parent.localToGlobal(_local5); var _local7 = parent.width; var _local8 = parent.height; if (((parent == _root) && (parent._parent == undefined)) || (_local7 == undefined)) { var _local6 = mx.managers.SystemManager.__get__screen(); _local7 = _local6.width; _local8 = _local6.height; _local5.x = _local6.x; _local5.y = _local6.y; } if (_global.isLivePreview) { return(undefined); } _local5.x = _local5.x + ((_local7 - __get__width()) / 2); _local5.y = _local5.y + ((_local8 - __get__height()) / 2); parent.globalToLocal(_local5); move(_local5.x, _local5.y); if (_child0.defButtonName != undefined) { _child0[_child0.defButtonName].setFocus(); } else { _child0.buttons[0].setFocus(); } } } function size(Void) { if (_global.isLivePreview) { __width = width; __height = height; } else { var _local4 = _child0.getSize(); if (isNaN(_local4.width) || (_local4.width < 20)) { _local4.width = 96; } if (isNaN(_local4.height) || (_local4.height < 20)) { _local4.height = 66; } var _local5 = border_mc.__get__borderMetrics(); __width = _local4.width + (2 * _local5.left); __height = ((_local4.height + _local5.top) + _local5.bottom) + back_mc.height; } super.size(); } static var symbolOwner = mx.containers.Window; static var version = "2.0.1.78"; static var buttonWidth = 50; static var buttonHeight = 22; static var okLabel = "OK"; static var yesLabel = "Yes"; static var noLabel = "No"; static var cancelLabel = "Cancel"; static var buttonUp = "ButtonSkin"; static var buttonDown = "ButtonSkin"; static var buttonOver = "ButtonSkin"; static var titleBackground = "TitleBackground"; static var buttonUpEmphasized = "ButtonSkin"; static var buttonOverEmphasized = "ButtonSkin"; static var buttonDownEmphasized = "ButtonSkin"; var className = "Alert"; static var NONMODAL = 32768; static var YES = 1; static var NO = 2; static var OK = 4; static var CANCEL = 8; static var P = _root; }
Symbol 254 MovieClip [__Packages.mx.controls.alertClasses.AlertForm] Frame 0
class mx.controls.alertClasses.AlertForm extends mx.core.UIComponent { var _parent, tabChildren, tabEnabled, text_mc, createClassObject, textMeasure_mc, createTextField, icon_mc, setSkin, buttons, doLater, createClassChildAtDepth, extent, __get__height, __get__width, detail; function AlertForm () { super(); } function init(Void) { super.init(); } function setDefaultButton() { _parent.focusManager.defaultPushButton = this[defButtonName]; } function createChildren(Void) { tabChildren = true; tabEnabled = false; if (text_mc == undefined) { createClassObject(mx.controls.TextArea, "text_mc", 0, {styleName:this, borderStyle:"none", readOnly:true}); } text_mc.tabEnabled = false; text_mc.tabChildren = false; text_mc.hScrollPolicy = "off"; text_mc.vScrollPolicy = "off"; text_mc.label.selectable = false; if (textMeasure_mc == undefined) { createTextField("textMeasure_mc", -1, 0, 0, 0, 0); } textMeasure_mc._visible = false; textMeasure_mc.multiline = true; textMeasure_mc.wordWrap = true; textMeasure_mc.autoSize = "left"; if ((icon_mc == undefined) && (_parent.icon != undefined)) { setSkin(1, _parent.icon); } buttons = new Array(); var _local2 = _parent.defButton; if (_parent.okButton) { createButton("okButton", mx.controls.Alert.okLabel, mx.controls.Alert.OK); if (_local2 == mx.controls.Alert.OK) { defButtonName = "okButton"; } } if (_parent.yesButton) { createButton("yesButton", mx.controls.Alert.yesLabel, mx.controls.Alert.YES); if (_local2 == mx.controls.Alert.YES) { defButtonName = "yesButton"; } } if (_parent.noButton) { createButton("noButton", mx.controls.Alert.noLabel, mx.controls.Alert.NO); if (_local2 == mx.controls.Alert.NO) { defButtonName = "noButton"; } } if (_parent.cancelButton) { createButton("cancelButton", mx.controls.Alert.cancelLabel, mx.controls.Alert.CANCEL); if (_local2 == mx.controls.Alert.CANCEL) { defButtonName = "cancelButton"; } } if (defButtonName != undefined) { this[defButtonName].emphasized = true; this[defButtonName].redraw(true); doLater(this, "setDefaultButton"); } } function createButton(name, title, detail) { var _local3 = mx.controls.Alert.buttonStyleDeclaration; var _local2 = mx.controls.Button(createClassChildAtDepth(mx.controls.Button, mx.managers.DepthManager.kTop, {falseUpSkin:mx.controls.Alert.buttonUp, falseDownSkin:mx.controls.Alert.buttonDown, falseOverSkin:mx.controls.Alert.buttonOver, falseOverSkinEmphasized:mx.controls.Alert.buttonOverEmphasized, falseUpSkinEmphasized:mx.controls.Alert.buttonUpEmphasized, falseDownSkinEmphasized:mx.controls.Alert.buttonDownEmphasized, styleName:((_local3 == undefined) ? this : (mx.controls.Alert.buttonStyleDeclaration)), validateNow:true})); _local2.setLabel(title); _local2.setSize(mx.controls.Alert.buttonWidth, mx.controls.Alert.buttonHeight); buttons.push(_local2); _local2.clickHandler = onClick; _local2.detail = detail; this[name] = _local2; } function getSize(Void) { var _local2 = new Object(); _local2.height = buttons[0].height + 24; var _local8 = _parent.back_mc.title_mc._getTextFormat(); extent = _local8.getTextExtent2(_parent.title); _local2.width = Math.max(Math.max(2, buttons.length) * (buttons[0].width + 8), (extent.width + 4) + 8); var _local6 = text_mc._getTextFormat(); extent = _local6.getTextExtent2(_parent.text); textMeasure_mc._width = 2 * _local2.width; textMeasure_mc.setNewTextFormat(text_mc._getTextFormat()); textMeasure_mc.text = _parent.text; _local2.height = _local2.height + (textMeasure_mc.textHeight + 8); var _local4 = Math.ceil(textMeasure_mc.textHeight / extent.height); if (_local4 > 1) { extent.width = 2 * _local2.width; text_mc.__set__wordWrap(true); } var _local3 = Math.min((extent.width + 4) + 8, 2 * _local2.width); var _local7 = _local2.width; _local2.width = Math.max(_local3, _local2.width) + 8; if (icon_mc != undefined) { extent.width = extent.width + (icon_mc.width + 8); _local3 = Math.min((extent.width + 4) + 8, 2 * _local7); _local2.width = Math.max(_local3, _local2.width) + 8; var _local5 = icon_mc.height - (_local4 * (extent.height + 4)); if (_local5 > 0) { _local2.height = _local2.height + _local5; } } return(_local2); } function draw(Void) { size(); _parent.visible = true; } function size(Void) { var _local4 = (__get__height() - buttons[0].height) - 8; var _local3 = (buttons.length * (buttons[0].width + 8)) - 8; _local3 = (__get__width() - _local3) / 2; var _local2 = 0; while (_local2 < buttons.length) { buttons[_local2].move(_local3, _local4); buttons[_local2].tabIndex = _local2 + 1; _local3 = _local3 + (buttons[_local2].width + 8); _local2++; } _local4 = _local4 - 8; _local3 = Math.max(((__get__width() - extent.width) - 4) / 2, 8); if (icon_mc != undefined) { icon_mc.move(_local3, ((__get__height() - buttons[0].height) - icon_mc.height) / 2); _local3 = _local3 + (icon_mc.width + 8); } text_mc.move(_local3, 8); text_mc.setSize((__get__width() - _local3) - 8, _local4 - 8); if (_parent.text == undefined) { text_mc.__set__text(""); } else { text_mc.__set__text(_parent.text); } } function onClick(evt) { var _local2 = mx.controls.Alert(_parent._parent); _local2.__set__visible(false); _local2.dispatchEvent({type:"click", detail:detail}); _local2.deletePopUp(); } static var symbolOwner = mx.core.UIComponent; var idNames = ["text_mc", "icon_mc"]; var defButtonName = undefined; }
Symbol 253 MovieClip [__Packages.mx.controls.TextArea] Frame 0
class mx.controls.TextArea extends mx.core.ScrollView { var label, invalidate, initText, dispatchValueChangedEvent, getHPosition, setHPosition, getVPosition, setVPosition, _color, focusTextField, tfx, tfy, tfw, tfh, doLater, _vpos, _hpos, hookedV, vScroller, hookedH, hScroller, getViewMetrics, __get__width, __get__height, hScrollPolicy, vScrollPolicy, getStyle, getFocusManager, addEventListener, removeEventListener, _getTextFormat; function TextArea () { super(); } function get maxChars() { return(label.maxChars); } function set maxChars(x) { label.maxChars = x; //return(maxChars); } function get length() { return(label.length); } function get restrict() { return(label.restrict); } function set restrict(s) { label.restrict = ((s == "") ? null : (s)); //return(restrict); } function get wordWrap() { return(label.wordWrap); } function set wordWrap(s) { label.wordWrap = s; invalidate(); //return(wordWrap); } function get editable() { return(__editable); } function set editable(x) { __editable = x; label.type = (x ? "input" : "dynamic"); //return(editable); } function get password() { return(label.password); } function set password(s) { label.password = s; //return(password); } function get html() { return(getHtml()); } function set html(value) { setHtml(value); //return(html); } function getHtml() { return(label.html); } function setHtml(value) { if (value != label.html) { label.html = value; } } function get text() { return(getText()); } function set text(t) { setText(t); //return(text); } function getText() { if (initializing) { return(initText); } var _local2 = label; if (_local2.html == true) { return(_local2.htmlText); } return(_local2.text); } function setText(t) { if (initializing) { initText = t; } else { var _local2 = label; if (_local2.html == true) { _local2.htmlText = t; } else { _local2.text = t; } invalidate(); } dispatchValueChangedEvent(t); } function get hPosition() { return(getHPosition()); } function set hPosition(pos) { setHPosition(pos); label.hscroll = pos; label.background = false; //return(hPosition); } function get vPosition() { return(getVPosition()); } function set vPosition(pos) { setVPosition(pos); label.scroll = pos + 1; label.background = false; //return(vPosition); } function get maxVPosition() { var _local2 = label.maxscroll - 1; return(((_local2 == undefined) ? 0 : (_local2))); } function get maxHPosition() { var _local2 = label.maxhscroll; return(((_local2 == undefined) ? 0 : (_local2))); } function init(Void) { super.init(); label.styleName = this; _color = mx.core.UIObject.textColorList; focusTextField = label; label.owner = this; label.onSetFocus = function (x) { this._parent.onSetFocus(x); }; label.onKillFocus = function (x) { this._parent.onKillFocus(x); }; label.drawFocus = function (b) { this._parent.drawFocus(b); }; label.onChanged = function () { this.owner.adjustScrollBars(); this.owner.dispatchEvent({type:"change"}); this.owner.dispatchValueChangedEvent(this.owner.text); }; label.onScroller = function () { this.owner.hPosition = this.hscroll; this.owner.vPosition = this.scroll - 1; }; if (text == undefined) { text = (""); } } function createChildren(Void) { super.createChildren(); label.autoSize = "none"; } function layoutContent(x, y, totalW, totalH, displayW, displayH) { var _local2 = label; if ((((tfx != x) || (tfy != y)) || (tfw != displayW)) || (tfh != displayH)) { tfx = x; tfy = y; tfw = displayW; tfh = displayH; _local2.move(tfx, tfy); _local2.setSize(tfw, tfh); doLater(this, "adjustScrollBars"); } } function scrollChanged(Void) { var _local2 = Selection; if (_local2.lastBeginIndex != undefined) { restoreSelection(); } label.background = false; } function onScroll(docObj) { var _local3 = label; super.onScroll(docObj); _local3.hscroll = hPosition + 0; _local3.scroll = vPosition + 1; _vpos = _local3.scroll; _hpos = _local3.hscroll; _local3.background = false; if (hookedV != true) { vScroller.addEventListener("scrollChanged", this); hookedV = true; } if (hookedH != true) { hScroller.addEventListener("scrollChanged", this); hookedH = true; } } function size(Void) { var _local3 = getViewMetrics(); var _local7 = _local3.left + _local3.right; var _local4 = _local3.top + _local3.bottom; var _local6 = _local3.left; var _local5 = _local3.top; tfx = _local6; tfy = _local5; tfw = __get__width() - _local7; tfh = __get__height() - _local4; super.size(); label.move(tfx, tfy); label.setSize(tfw, tfh); if (__get__height() <= 40) { hScrollPolicy = "off"; vScrollPolicy = "off"; } doLater(this, "adjustScrollBars"); } function setEnabled(enable) { vScroller.enabled = enable; hScroller.enabled = enable; label.type = (((editable == false) || (enable == false)) ? "dynamic" : "input"); label.selectable = enable; var _local3 = getStyle((enable ? "color" : "disabledColor")); if (_local3 == undefined) { _local3 = (enable ? 0 : 8947848); } setColor(_local3); } function setColor(col) { label.textColor = col; } function setFocus(Void) { Selection.setFocus(label); } function onSetFocus(x) { var f = Selection.getFocus(); var o = eval (f); if (o != label) { Selection.setFocus(label); return(undefined); } getFocusManager().defaultPushButtonEnabled = false; addEventListener("keyDown", this); super.onSetFocus(x); } function onKillFocus(x) { getFocusManager().defaultPushButtonEnabled = true; removeEventListener("keyDown", this); super.onKillFocus(x); } function restoreSelection(x) { var _local2 = Selection; Selection.setSelection(_local2.lastBeginIndex, _local2.lastEndIndex); label.scroll = _vpos; label.hscroll = _hpos; } function getLineOffsets(Void) { var _local16 = _getTextFormat(); var _local18 = _local16.getTextExtent2(label.text); var _local5 = _root._getTextExtent; _local5.setNewTextFormat(TextFormat(_local16)); var _local14 = label.wordWrap; var _local9 = 0; var _local7 = (label._width - 2) - 2; var _local12 = new Array(); var _local17 = new String(label.text); var _local15 = _local17.split("\r"); var _local11 = 0; while (_local11 < _local15.length) { _local12.push(_local9); var _local4 = _local15[_local11]; _local5.text = _local4; var _local13 = Math.ceil(_local5.textWidth / _local7); var _local10 = Math.floor(_local4.length / _local13); var _local3; while (_local14 && (_local5.textWidth > _local7)) { _local3 = _local4.indexOf(" ", _local10); var _local6; if (_local3 == -1) { _local3 = _local4.lastIndexOf(" "); if (_local3 == -1) { _local3 = _local10; } } _local6 = _local4.substr(0, _local3); _local5.text = _local6; if (_local5.textWidth > _local7) { while (_local5.textWidth > _local7) { var _local8 = _local3; _local3 = _local4.lastIndexOf(" ", _local3 - 1); if (_local3 == -1) { _local3 = _local8 - 1; } _local6 = _local4.substr(0, _local3); _local5.text = _local6; } } else if (_local5.textWidth < _local7) { var _local8 = _local3; while (_local5.textWidth < _local7) { _local8 = _local3; _local3 = _local4.indexOf(" ", _local3 + 1); if (_local3 == -1) { if (_local4.indexOf(" ", 0) != -1) { break; } _local3 = _local8 + 1; } _local6 = _local4.substr(0, _local3); _local5.text = _local6; } _local3 = _local8; } _local9 = _local9 + _local3; _local12.push(_local9 + 1); _local4 = _local4.substr(_local3); if (_local4.charAt(0) == " ") { _local4 = _local4.substr(1, _local4.length - 1); _local9 = _local9 + 1; } _local5.text = _local4; } _local9 = _local9 + (_local4.length + 1); _local11++; } return(_local12); } function keyDown(e) { var _local5 = e.code; if (_local5 == 34) { var _local6 = (label.bottomScroll - label.scroll) + 1; var _local3 = getLineOffsets(); var _local2 = Math.min(label.bottomScroll + 1, label.maxscroll); if (_local2 == label.maxscroll) { var _local4 = label.length; Selection.setSelection(_local4, _local4); } else { label.scroll = _local2; Selection.setSelection(_local3[_local2 - 1], _local3[_local2 - 1]); } } else if (_local5 == 33) { var _local6 = (label.bottomScroll - label.scroll) + 1; var _local3 = getLineOffsets(); var _local2 = label.scroll - 1; if (_local2 < 1) { Selection.setSelection(0, 0); } else { Selection.setSelection(_local3[_local2 - 1], _local3[_local2 - 1]); label.scroll = Math.max(_local2 - _local6, 1); } } } function draw(Void) { var _local2 = label; var _local4 = getText(); if (initializing) { initializing = false; delete initText; } var _local3 = _getTextFormat(); _local2.embedFonts = _local3.embedFonts == true; if (_local3 != undefined) { _local2.setTextFormat(_local3); _local2.setNewTextFormat(_local3); } _local2.multiline = true; _local2.wordWrap = wordWrap == true; if (_local2.html == true) { _local2.setTextFormat(_local3); _local2.htmlText = _local4; } else { _local2.text = _local4; } _local2.type = ((editable == true) ? "input" : "dynamic"); size(); _local2.background = false; } function adjustScrollBars() { var _local2 = label; var _local4 = (_local2.bottomScroll - _local2.scroll) + 1; var _local3 = (_local4 + _local2.maxscroll) - 1; if (_local3 < 1) { _local3 = 1; } var _local5 = 0; if ((_local2.textWidth + 5) > _local2._width) { if (!_local2.wordWrap) { _local5 = _local2._width + _local2.maxhscroll; } } else { _local2.hscroll = 0; _local2.background = false; } if ((_local2.height / _local4) != Math.round(_local2.height / _local4)) { _local3--; } setScrollProperties(_local5, 1, _local3, _local2.height / _local4); } function setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding) { super.setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding); if (vScroller == undefined) { hookedV = false; } if (hScroller == undefined) { hookedH = false; } } function get tabIndex() { return(label.tabIndex); } function set tabIndex(w) { label.tabIndex = w; //return(tabIndex); } function set _accProps(val) { label._accProps = val; //return(_accProps); } function get _accProps() { return(label._accProps); } function get styleSheet() { return(label.styleSheet); } function set styleSheet(v) { label.styleSheet = v; //return(styleSheet); } static var symbolName = "TextArea"; static var symbolOwner = mx.controls.TextArea; static var version = "2.0.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 181 MovieClip [__Packages.mx.controls.Button] Frame 0
class mx.controls.Button extends mx.controls.SimpleButton { var initializing, labelPath, initIcon, getState, enabled, phase, idNames, __width, __height, setState, invalidate, iconName, refresh, createLabel, _iconLinkageName, removeIcons, hitArea_mc, createEmptyObject; function Button () { super(); } function init(Void) { super.init(); } function draw() { if (initializing) { labelPath.visible = true; } super.draw(); if (initIcon != undefined) { _setIcon(initIcon); } delete initIcon; } function onRelease(Void) { super.onRelease(); } function createChildren(Void) { super.createChildren(); } function setSkin(tag, linkageName, initobj) { return(super.setSkin(tag, linkageName, initobj)); } function viewSkin(varName) { var _local3 = (getState() ? "true" : "false"); _local3 = _local3 + (enabled ? (phase) : "disabled"); super.viewSkin(varName, {styleName:this, borderStyle:_local3}); } function invalidateStyle(c) { labelPath.invalidateStyle(c); super.invalidateStyle(c); } function setColor(c) { var _local2 = 0; while (_local2 < 8) { this[idNames[_local2]].redraw(true); _local2++; } } function setEnabled(enable) { labelPath.enabled = enable; super.setEnabled(enable); } function calcSize(tag, ref) { if ((__width == undefined) || (__height == undefined)) { return(undefined); } if (tag < 7) { ref.setSize(__width, __height, true); } } function size(Void) { setState(getState()); setHitArea(__width, __height); var _local3 = 0; while (_local3 < 8) { var _local4 = idNames[_local3]; if (typeof(this[_local4]) == "movieclip") { this[_local4].setSize(__width, __height, true); } _local3++; } super.size(); } function set labelPlacement(val) { __labelPlacement = val; invalidate(); //return(labelPlacement); } function get labelPlacement() { return(__labelPlacement); } function getLabelPlacement(Void) { return(__labelPlacement); } function setLabelPlacement(val) { __labelPlacement = val; invalidate(); } function getBtnOffset(Void) { if (getState()) { var _local2 = btnOffset; } else if (phase == "down") { var _local2 = btnOffset; } else { var _local2 = 0; } return(_local2); } function setView(offset) { var _local16 = (offset ? (btnOffset) : 0); var _local12 = getLabelPlacement(); var _local7 = 0; var _local6 = 0; var _local11 = 0; var _local8 = 0; var _local5 = 0; var _local4 = 0; var _local3 = labelPath; var _local2 = iconName; var _local15 = _local3.textWidth; var _local14 = _local3.textHeight; var _local9 = (__width - borderW) - borderW; var _local10 = (__height - borderW) - borderW; if (_local2 != undefined) { _local7 = _local2._width; _local6 = _local2._height; } if ((_local12 == "left") || (_local12 == "right")) { if (_local3 != undefined) { _local11 = Math.min(_local9 - _local7, _local15 + 5); _local3._width = _local11; _local8 = Math.min(_local10, _local14 + 5); _local3._height = _local8; } if (_local12 == "right") { _local5 = _local7; if (centerContent) { _local5 = _local5 + (((_local9 - _local11) - _local7) / 2); } _local2._x = _local5 - _local7; } else { _local5 = (_local9 - _local11) - _local7; if (centerContent) { _local5 = _local5 / 2; } _local2._x = _local5 + _local11; } _local4 = 0; _local2._y = _local4; if (centerContent) { _local2._y = (_local10 - _local6) / 2; _local4 = (_local10 - _local8) / 2; } if (!centerContent) { _local2._y = _local2._y + Math.max(0, (_local8 - _local6) / 2); } } else { if (_local3 != undefined) { _local11 = Math.min(_local9, _local15 + 5); _local3._width = _local11; _local8 = Math.min(_local10 - _local6, _local14 + 5); _local3._height = _local8; } _local5 = (_local9 - _local11) / 2; _local2._x = (_local9 - _local7) / 2; if (_local12 == "top") { _local4 = (_local10 - _local8) - _local6; if (centerContent) { _local4 = _local4 / 2; } _local2._y = _local4 + _local8; } else { _local4 = _local6; if (centerContent) { _local4 = _local4 + (((_local10 - _local8) - _local6) / 2); } _local2._y = _local4 - _local6; } } var _local13 = borderW + _local16; _local3._x = _local5 + _local13; _local3._y = _local4 + _local13; _local2._x = _local2._x + _local13; _local2._y = _local2._y + _local13; } function set label(lbl) { setLabel(lbl); //return(label); } function setLabel(label) { if (label == "") { labelPath.removeTextField(); refresh(); return(undefined); } if (labelPath == undefined) { var _local2 = createLabel("labelPath", 200, label); _local2._width = _local2.textWidth + 5; _local2._height = _local2.textHeight + 5; if (initializing) { _local2.visible = false; } } else { delete labelPath.__text; labelPath.text = label; refresh(); } } function getLabel(Void) { return(((labelPath.__text != undefined) ? (labelPath.__text) : (labelPath.text))); } function get label() { return(getLabel()); } function _getIcon(Void) { return(_iconLinkageName); } function get icon() { if (initializing) { return(initIcon); } return(_iconLinkageName); } function _setIcon(linkage) { if (initializing) { if (linkage == "") { return(undefined); } initIcon = linkage; } else { if (linkage == "") { removeIcons(); return(undefined); } super.changeIcon(0, linkage); super.changeIcon(1, linkage); super.changeIcon(3, linkage); super.changeIcon(4, linkage); super.changeIcon(5, linkage); _iconLinkageName = linkage; refresh(); } } function set icon(linkage) { _setIcon(linkage); //return(icon); } function setHitArea(w, h) { if (hitArea_mc == undefined) { createEmptyObject("hitArea_mc", 100); } var _local2 = hitArea_mc; _local2.clear(); _local2.beginFill(16711680); _local2.drawRect(0, 0, w, h); _local2.endFill(); _local2.setVisible(false); } static var symbolName = "Button"; static var symbolOwner = mx.controls.Button; var className = "Button"; static var version = "2.0.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 180 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 182 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 183 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 184 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 186 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 187 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 188 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 189 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 190 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 191 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 192 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 193 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 194 MovieClip [__Packages.mx.controls.UIScrollBar] Frame 0
class mx.controls.UIScrollBar extends mx.controls.scrollClasses.ScrollBar { var textField, wasHorizontal, __width, __height, _parent, synchScroll, setScrollProperties, __set__scrollPosition, initializing, _rotation, _xscale, hScroller, vScroller, onChanged, onScroller, scrollPosition, dispatchEvent; function UIScrollBar () { super(); } function init(Void) { super.init(); textField.owner = this; horizontal = (wasHorizontal); if (horizontal) { ((textField != undefined) ? (super.setSize(textField._width, 16)) : (super.setSize(__width, __height))); } else { ((textField != undefined) ? (super.setSize(16, textField._height)) : (super.setSize(__width, __height))); } if (horizontal) { var _local3 = __width; __height = __width; width = _local3; __width = 16; } textField.onScroller = function () { this.hPosition = this.hscroll; this.vPosition = this.scroll - 1; }; if (_targetInstanceName != undefined) { setScrollTarget(_targetInstanceName); _targetInstanceName.addListener(this); } } function get _targetInstanceName() { return(textField); } function get height() { if (wasHorizontal) { return(__width); } return(__height); } function get width() { if (wasHorizontal) { return(__height); } return(__width); } function size(Void) { super.size(); onTextChanged(); } function draw() { super.draw(); } function set _targetInstanceName(t) { if (t == undefined) { textField.removeListener(this); delete textField[(horizontal ? "hScroller" : "vScroller")]; if ((textField.hScroller != undefined) && (textField.vScroller != undefined)) { textField.unwatch("text"); textField.unwatch("htmltext"); } } var _local3 = _parent[t]; textField = _parent[t]; onTextChanged(); //return(_targetInstanceName); } function setSize(w, h) { if (horizontal) { super.setSize(h, w); } else { super.setSize(w, h); } } function onTextChanged(Void) { if (textField == undefined) { return(undefined); } clearInterval(synchScroll); if (horizontal) { var _local2 = textField.hscroll; setScrollProperties(textField._width, 0, textField.maxhscroll); __set__scrollPosition(Math.min(_local2, textField.maxhscroll)); } else { var _local2 = textField.scroll; var _local3 = textField.bottomScroll - textField.scroll; setScrollProperties(_local3, 1, textField.maxscroll); __set__scrollPosition(Math.min(_local2, textField.maxscroll)); } } function get horizontal() { return(wasHorizontal); } function set horizontal(v) { wasHorizontal = v; if (v and initializing) { if (_rotation == 90) { return; } _xscale = -100; _rotation = -90; } if (!initializing) { if (v) { if (_rotation == 0) { _rotation = -90; _xscale = -100; } } else if (_rotation == -90) { _rotation = 0; _xscale = 100; } } //return(horizontal); } function callback(prop, oldval, newval) { clearInterval(hScroller.synchScroll); clearInterval(vScroller.synchScroll); hScroller.synchScroll = setInterval(hScroller, "onTextChanged", 50); vScroller.synchScroll = setInterval(vScroller, "onTextChanged", 50); return(newval); } function setScrollTarget(tF) { if (tF == undefined) { textField.removeListener(this); delete textField[(horizontal ? "hScroller" : "vScroller")]; if ((textField.hScroller != undefined) && (textField.vScroller != undefined)) { textField.unwatch("text"); textField.unwatch("htmltext"); } } textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } textField = tF; if (horizontal) { textField.hScroller = this; textField.hScroller.lineScrollSize = 5; } else { textField.vScroller = this; textField.vScroller.lineScrollSize = 1; } onTextChanged(); onChanged = function (Void) { this.onTextChanged(); }; onScroller = function (Void) { if (!this.isScrolling) { if (!this.horizontal) { this.scrollPosition = this.textField.scroll; } else { this.scrollPosition = this.textField.hscroll; } } }; textField.addListener(this); textField.watch("text", callback); textField.watch("htmlText", callback); } function scrollHandler(Void) { if (horizontal) { var _local2 = textField.background; textField.hscroll = scrollPosition; textField.background = _local2; } else { textField.scroll = scrollPosition; } } function setEnabled(enable) { super.setEnabled(enable); if (enable) { textField.addListener(this); } else { textField.removeListener(); } } function dispatchScrollEvent(detail) { dispatchEvent({type:"scroll"}); } static var symbolName = "UIScrollBar"; static var symbolOwner = mx.controls.UIScrollBar; var className = "UIScrollBar"; var clipParameters = {_targetInstanceName:1, horizontal:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.UIScrollBar.prototype.clipParameters); static var version = "2.0.1.78"; }
Symbol 196 MovieClip [__Packages.mx.controls.RadioButton] Frame 0
class mx.controls.RadioButton extends mx.controls.Button { var setToggle, __value, selected, releaseFocus, phase, dispatchEvent, _parent, __data, setState, __state, getFocusManager; function RadioButton () { super(); } function init(Void) { setToggle(__toggle); __value = this; super.init(); } function size(Void) { super.size(); } function onRelease() { if (selected) { return(undefined); } releaseFocus(); phase = "up"; setSelected(true); dispatchEvent({type:"click"}); _parent[__groupName].dispatchEvent({type:"click"}); } function setData(val) { __data = val; } function set data(val) { __data = val; //return(data); } function getData(val) { return(__data); } function get data() { return(__data); } function onUnload() { if (_parent[__groupName].selectedRadio == this) { _parent[__groupName].selectedRadio = undefined; } _parent[__groupName].radioList[indexNumber] = null; delete _parent[__groupName].radioList[indexNumber]; } function setSelected(val) { var _local2 = _parent[__groupName]; var _local4 = _local2.selectedRadio.__width; var _local5 = _local2.selectedRadio.__height; if (val) { _local2.selectedRadio.setState(false); _local2.selectedRadio = this; } else if (_local2.selectedRadio == this) { _local2.selectedRadio.setState(false); _local2.selectedRadio = undefined; } setState(val); } function deleteGroupObj(groupName) { delete _parent[groupName]; } function getGroupName() { return(__groupName); } function get groupName() { return(__groupName); } function setGroupName(groupName) { if ((groupName == undefined) || (groupName == "")) { return(undefined); } delete _parent[__groupName].radioList[__data]; addToGroup(groupName); __groupName = groupName; } function set groupName(groupName) { setGroupName(groupName); //return(this.groupName); } function addToGroup(groupName) { if ((groupName == "") || (groupName == undefined)) { return(undefined); } var _local2 = _parent[groupName]; if (_local2 == undefined) { _local2 = (_parent[groupName] = new mx.controls.RadioButtonGroup()); _local2.__groupName = groupName; } _local2.addInstance(this); if (__state) { _local2.selectedRadio.setState(false); _local2.selectedRadio = this; } } function get emphasized() { return(undefined); } function keyDown(e) { switch (e.code) { case 40 : setNext(); break; case 38 : setPrev(); break; case 37 : setPrev(); break; case 39 : setNext(); } } function setNext() { var _local2 = _parent[groupName]; if ((_local2.selectedRadio.indexNumber + 1) == _local2.radioList.length) { return(undefined); } var _local4 = (_local2.selectedRadio ? (_local2.selectedRadio.indexNumber) : -1); var _local3 = 1; while (_local3 < _local2.radioList.length) { if ((_local2.radioList[_local4 + _local3] != undefined) && (_local2.radioList[_local4 + _local3].enabled)) { var _local5 = getFocusManager(); _local2.radioList[_local4 + _local3].selected = true; _local5.setFocus(_local2.radioList[_local2.selectedRadio.indexNumber]); _local2.dispatchEvent({type:"click"}); break; } _local3++; } } function setPrev() { var _local2 = _parent[groupName]; if (_local2.selectedRadio.indexNumber == 0) { return(undefined); } var _local4 = (_local2.selectedRadio ? (_local2.selectedRadio.indexNumber) : 1); var _local3 = 1; while (_local3 < _local2.radioList.length) { if ((_local2.radioList[_local4 - _local3] != undefined) && (_local2.radioList[_local4 - _local3].enabled)) { var _local5 = getFocusManager(); _local2.radioList[_local4 - _local3].selected = true; _local5.setFocus(_local2.radioList[_local2.selectedRadio.indexNumber]); _local2.dispatchEvent({type:"click"}); break; } _local3++; } } function set toggle(v) { //return(toggle); } function get toggle() { } function set icon(v) { //return(icon); } function get icon() { } static var symbolName = "RadioButton"; static var symbolOwner = mx.controls.RadioButton; static var version = "2.0.1.78"; var className = "RadioButton"; var btnOffset = 0; var __toggle = true; var __label = "Radio Button"; var __labelPlacement = "right"; var ignoreClassStyleDeclaration = {Button:1}; var __groupName = "radioGroup"; var indexNumber = 0; var offset = false; var falseUpSkin = ""; var falseDownSkin = ""; var falseOverSkin = ""; var falseDisabledSkin = ""; var trueUpSkin = ""; var trueDownSkin = ""; var trueOverSkin = ""; var trueDisabledSkin = ""; var falseUpIcon = "RadioFalseUp"; var falseDownIcon = "RadioFalseDown"; var falseOverIcon = "RadioFalseOver"; var falseDisabledIcon = "RadioFalseDisabled"; var trueUpIcon = "RadioTrueUp"; var trueDownIcon = ""; var trueOverIcon = ""; var trueDisabledIcon = "RadioTrueDisabled"; var centerContent = false; var borderW = 0; var clipParameters = {labelPlacement:1, data:1, label:1, groupName:1, selected:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.RadioButton.prototype.clipParameters, mx.controls.Button.prototype.clipParameters); }
Symbol 213 MovieClip [__Packages.mx.controls.RadioButtonGroup] Frame 0
class mx.controls.RadioButtonGroup { var radioList, __groupName, selectedRadio; function RadioButtonGroup () { init(); mx.events.UIEventDispatcher.initialize(this); } function init(Void) { radioList = new Array(); } function setGroupName(groupName) { if ((groupName == undefined) || (groupName == "")) { return(undefined); } var _local6 = __groupName; _parent[groupName] = this; for (var _local5 in radioList) { radioList[_local5].groupName = groupName; var _local3 = radioList[_local5]; } _local3.deleteGroupObj(_local6); } function getGroupName() { return(__groupName); } function addInstance(instance) { instance.indexNumber = indexNumber++; radioList.push(instance); } function getValue() { if (selectedRadio.data == "") { return(selectedRadio.label); } return(selectedRadio.__data); } function getLabelPlacement() { for (var _local3 in radioList) { var _local2 = radioList[_local3].getLabelPlacement(); } return(_local2); } function setLabelPlacement(pos) { for (var _local3 in radioList) { radioList[_local3].setLabelPlacement(pos); } } function setEnabled(val) { for (var _local3 in radioList) { radioList[_local3].enabled = val; } } function setSize(val, val1) { for (var _local3 in radioList) { radioList[_local3].setSize(val, val1); } } function getEnabled() { for (var _local4 in radioList) { var _local2 = radioList[_local4].enabled; var _local3 = t + (_local2 + 0); } if (_local3 == radioList.length) { return(true); } if (_local3 == 0) { return(false); } } function setStyle(name, val) { for (var _local4 in radioList) { radioList[_local4].setStyle(name, val); } } function setInstance(val) { for (var _local3 in radioList) { if (radioList[_local3] == val) { radioList[_local3].selected = true; } } } function getInstance() { return(selectedRadio); } function setValue(val) { for (var _local4 in radioList) { if ((radioList[_local4].__data == val) || (radioList[_local4].label == val)) { var _local2 = _local4; break; } } if (_local2 != undefined) { selectedRadio.setState(false); selectedRadio.hitArea_mc._height = selectedRadio.__height; selectedRadio.hitArea_mc._width = selectedRadio.__width; selectedRadio = radioList[_local2]; selectedRadio.setState(true); selectedRadio.hitArea_mc._height = (selectedRadio.hitArea_mc._width = 0); } } function set groupName(groupName) { if ((groupName == undefined) || (groupName == "")) { return; } var _local6 = __groupName; _parent[groupName] = this; for (var _local5 in radioList) { radioList[_local5].groupName = groupName; var _local3 = radioList[_local5]; } _local3.deleteGroupObj(_local6); //return(this.groupName); } function get groupName() { return(__groupName); } function set selectedData(val) { for (var _local4 in radioList) { if ((radioList[_local4].__data == val) || (radioList[_local4].label == val)) { var _local2 = _local4; break; } } if (_local2 != undefined) { selectedRadio.setState(false); selectedRadio = radioList[_local2]; selectedRadio.setState(true); } //return(selectedData); } function get selectedData() { if ((selectedRadio.data == "") || (selectedRadio.data == undefined)) { return(selectedRadio.label); } return(selectedRadio.__data); } function get selection() { return(selectedRadio); } function set selection(val) { for (var _local3 in radioList) { if (radioList[_local3] == val) { radioList[_local3].selected = true; } } //return(selection); } function set labelPlacement(pos) { for (var _local3 in radioList) { radioList[_local3].setLabelPlacement(pos); } //return(labelPlacement); } function get labelPlacement() { for (var _local3 in radioList) { var _local2 = radioList[_local3].getLabelPlacement(); } return(_local2); } function set enabled(val) { for (var _local3 in radioList) { radioList[_local3].enabled = val; } //return(enabled); } function get enabled() { var _local2 = 0; for (var _local3 in radioList) { _local2 = _local2 + radioList[_local3].enabled; } if (_local2 == 0) { return(false); } if (_local2 == radioList.length) { return(true); } } static var symbolName = "RadioButtonGroup"; static var symbolOwner = mx.controls.RadioButtonGroup; static var version = "2.0.1.78"; var className = "RadioButtonGroup"; var indexNumber = 0; }
Symbol 214 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 215 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 216 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 217 MovieClip [__Packages.mx.controls.treeclasses.TreeDataProvider] Frame 0
class mx.controls.treeclasses.TreeDataProvider extends Object { var childNodes, appendChild, insertBefore, parentNode, removeNode; function TreeDataProvider () { super(); } static function Initialize(obj) { obj = obj.prototype; if (obj.addTreeNode != undefined) { return(false); } var _local4 = mixinProps; var _local5 = _local4.length; var _local2 = 0; while (_local2 < _local5) { obj[_local4[_local2]] = mixins[_local4[_local2]]; _global.ASSetPropFlags(obj, _local4[_local2], 1); _local2++; } 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); _global.ASSetPropFlags(obj, "createEvent", 1); 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); } static function convertToNode(tag, arg, data) { if (typeof(arg) == "string") { var _local2 = blankXML.createElement(tag); _local2.attributes.label = arg; if (data != undefined) { _local2.attributes.data = data; } return(_local2); } if (arg instanceof XML) { return(arg.firstChild.cloneNode(true)); } if (arg instanceof XMLNode) { return(arg); } if (typeof(arg) == "object") { var _local2 = blankXML.createElement(tag); for (var _local3 in arg) { _local2.attributes[_local3] = arg[_local3]; } if (data != undefined) { _local2.attributes.data = data; } return(_local2); } } function addTreeNode(arg, data) { return(addTreeNodeAt(childNodes.length, arg, data)); } function addTreeNodeAt(index, arg, data) { if (index > childNodes.length) { return(undefined); } var _local2; if (arg instanceof XMLNode) { _local2 = arg.removeTreeNode(); } else { _local2 = convertToNode("node", arg, data); } if (index >= childNodes.length) { appendChild(_local2); } else { insertBefore(_local2, childNodes[index]); } updateViews({eventName:"addNode", node:_local2, parentNode:this, index:index}); return(_local2); } function getTreeNodeAt(index) { return(childNodes[index]); } function removeTreeNodeAt(index) { var _local2 = childNodes[index]; _local2.removeNode(); updateViews({eventName:"removeNode", node:_local2, parentNode:this, index:index}); return(_local2); } function removeTreeNode() { var _local4 = parentNode; var _local7; var _local3 = 0; var _local2 = parentNode.firstChild; while (_local2 != undefined) { if (_local2 == this) { _local7 = _local3; break; } _local3++; _local2 = _local2.nextSibling; } if (_local7 != undefined) { var _local9 = getRootNode(); removeNode(); _local4.updateViews({eventName:"removeNode", node:this, parentNode:_local4, index:_local7}); } return(this); } function removeAll() { while (childNodes.length > 0) { removeTreeNodeAt(childNodes.length - 1); } var _local3 = getRootNode(); updateViews({eventName:"updateTree"}); } function getRootNode() { var _local2 = this; while ((_local2.parentNode != undefined) && (_local2.isTreeRoot == undefined)) { _local2 = _local2.parentNode; } return(_local2); } function updateViews(eventObj) { var _local2 = this; eventObj.target = this; eventObj.type = "modelChanged"; while (_local2 != undefined) { if (_local2.isTreeRoot || (_local2.parentNode == undefined)) { _local2.dispatchEvent(eventObj); } _local2 = _local2.parentNode; } } static var mixinProps = ["addTreeNode", "addTreeNodeAt", "getTreeNodeAt", "removeTreeNodeAt", "getRootNode", "getDepth", "removeAll", "removeTreeNode", "updateViews"]; static var evtDipatcher = mx.events.EventDispatcher; static var mixins = new mx.controls.treeclasses.TreeDataProvider(); static var blankXML = new XML(); static var largestID = 0; }
Symbol 218 MovieClip [__Packages.mx.controls.menuclasses.MenuDataProvider] Frame 0
class mx.controls.menuclasses.MenuDataProvider extends Object { var addTreeNode, addTreeNodeAt, removeTreeNode, getTreeNodeAt, childNodes; function MenuDataProvider () { super(); } static function Initialize(obj) { obj = obj.prototype; var _local3 = mixinProps; var _local5 = _local3.length; var _local2 = 0; while (_local2 < _local5) { obj[_local3[_local2]] = mixins[_local3[_local2]]; _global.ASSetPropFlags(obj, _local3[_local2], 1); _local2++; } return(true); } function addMenuItem(arg) { return(addTreeNode(mx.controls.treeclasses.TreeDataProvider.convertToNode("menuitem", arg))); } function addMenuItemAt(index, arg) { return(addTreeNodeAt(index, mx.controls.treeclasses.TreeDataProvider.convertToNode("menuitem", arg))); } function removeMenuItem(Void) { return(removeTreeNode()); } function removeMenuItemAt(index) { return(getTreeNodeAt(index).removeTreeNode()); } function getMenuItemAt(index) { return(getTreeNodeAt(index)); } function indexOf(item) { var _local2 = 0; while (_local2 < childNodes.length) { if (childNodes[_local2] == item) { return(_local2); } _local2++; } return(undefined); } static var mixinProps = ["addMenuItem", "addMenuItemAt", "getMenuItemAt", "removeMenuItem", "removeMenuItemAt", "normalize", "indexOf"]; static var mixins = new mx.controls.menuclasses.MenuDataProvider(); }
Symbol 219 MovieClip [__Packages.mx.controls.Menu] Frame 0
class mx.controls.Menu extends mx.controls.listclasses.ScrollSelectList { var __set__visible, listContent, mask_mc, border_mc, __menuCache, getViewMetrics, layoutContent, __width, __height, invRowHeight, invUpdateSize, getFocusManager, __menuDataProvider, groupName, __get__visible, __menuBar, _x, _y, _width, popupMask, attachMovie, setMask, __get__width, height, getStyle, wasJustCreated, popupTween, isPressed, width, __activeChildren, __lastRowRolledOver, clearSelected, anchorRow, supposedToLoseFocus, __dataProvider, invalidate, __rowCount, getLength, setSize, rows, __namedItems, __radioGroups, _selection, _members, enabled, selectable, __anchor, __parentMenu, __anchorIndex, __vPosition, dragScrolling, __timer, __timeOut, focusManager, getSelectedIndex, wasKeySelected, selectRow, selectedIndex, selectedItem; function Menu () { super(); } static function createMenu(parent, mdp, initObj) { if (parent == undefined) { parent = _root; } if (mdp == undefined) { mdp = new XML(); } var _local3 = mx.managers.PopUpManager.createPopUp(parent, mx.controls.Menu, false, initObj, true); if (_local3 == undefined) { trace("Failed to create a new menu, probably because there is no Menu in the Library"); } else { _local3.isPressed = true; _local3.mouseDownOutsideHandler = function (event) { if ((!this.isMouseOverMenu()) && (!this.__activator.hitTest(_root._xmouse, _root._ymouse))) { this.hideAllMenus(); } }; _local3.dataProvider = mdp; } return(_local3); } static function isItemEnabled(itm) { var _local1 = itm.attributes.enabled; return((((_local1 == undefined) || (_local1 == true)) || (_local1.toLowerCase() == "true")) && (itm.attributes.type.toLowerCase() != "separator")); } static function isItemSelected(itm) { var _local1 = itm.attributes.selected; return((_local1 == true) || (_local1.toLowerCase() == "true")); } function init(Void) { super.init(); __set__visible(false); } function createChildren(Void) { super.createChildren(); listContent.setMask(mask_mc); mask_mc.removeMovieClip(); border_mc.move(0, 0); border_mc.borderStyle = "menuBorder"; } function propagateToSubMenus(prop, value) { for (var _local5 in __menuCache) { var _local2 = __menuCache[_local5]; if (_local2 != this) { _local2["set" + prop](value); } } } function setLabelField(lbl) { super.setLabelField(lbl); propagateToSubMenus("LabelField", lbl); } function setLabelFunction(lbl) { super.setLabelFunction(lbl); propagateToSubMenus("LabelFunction", lbl); } function setCellRenderer(cR) { super.setCellRenderer(cR); propagateToSubMenus("CellRenderer", cR); } function setRowHeight(v) { super.setRowHeight(v); propagateToSubMenus("RowHeight", v); } function setIconField(v) { super.setIconField(v); propagateToSubMenus("IconField", v); } function setIconFunction(v) { super.setIconFunction(v); propagateToSubMenus("IconFunction", v); } function size(Void) { super.size(); var _local3 = getViewMetrics(); layoutContent(_local3.left, _local3.top, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom); } function draw(Void) { if (invRowHeight) { super.draw(); listContent.setMask(mask_mc); invUpdateSize = true; } super.draw(); if (invUpdateSize) { updateSize(); } } function onSetFocus() { super.onSetFocus(); getFocusManager().defaultPushButtonEnabled = false; } function setDataProvider(dP) { if (typeof(dP) == "string") { dP = new XML(dP).firstChild; } __menuDataProvider.removeEventListener("modelChanged", this); __menuDataProvider = dP; if (!(__menuDataProvider instanceof XML)) { __menuDataProvider.isTreeRoot = true; } __menuDataProvider.addEventListener("modelChanged", this); modelChanged({eventName:"updateTree"}); } function getDataProvider() { return(__menuDataProvider); } function addMenuItem(arg) { return(__menuDataProvider.addMenuItem(arg)); } function addMenuItemAt(index, arg) { return(__menuDataProvider.addMenuItemAt(index, arg)); } function removeMenuItemAt(index) { var _local2 = getMenuItemAt(index); if ((_local2 != undefined) && (_local2 != null)) { _local2.removeMenuItem(); } return(_local2); } function removeMenuItem(item) { return(removeMenuItemAt(indexOf(item))); } function removeAll(Void) { return(__menuDataProvider.removeAll()); } function getMenuItemAt(index) { return(__menuDataProvider.getMenuItemAt(index)); } function setMenuItemSelected(item, select) { if (item.attributes.type == "radio") { var _local3 = getRootMenu(); groupName = item.attributes.groupName; _local3[groupName].setGroupSelection(item); return(undefined); } if (select != item.attributes.selected) { item.attributes.selected = select; item.updateViews({eventName:"selectionChanged", node:item}); } } function setMenuItemEnabled(item, enable) { if (enable != item.attributes.enabled) { item.attributes.enabled = enable; item.updateViews({eventName:"enabledChanged", node:item}); } } function indexOf(item) { return(__menuDataProvider.indexOf(item)); } function show(x, y) { if (!__get__visible()) { var _local2 = getRootMenu(); _local2.dispatchEvent({type:"menuShow", menuBar:__menuBar, menu:this, menuItem:__menuDataProvider}); if (x != undefined) { _x = x; if (y != undefined) { _y = y; } } if (this != _local2) { var _local5 = (_x + _width) - Stage.width; if (_local5 > 0) { _x = _x - _local5; if (_x < 0) { _x = 0; } } } popupMask = attachMovie("BoundingBox", "pMask_mc", 6000); setMask(popupMask); var _local3 = __get__width(); if (_local3 < 50) { _local3 = 100; } popupMask._width = _local3; popupMask._height = height; popupMask._x = -popupMask._width; popupMask._y = -popupMask._height; var _local4 = getStyle("popupDuration"); if (wasJustCreated && (_local4 < 200)) { _local4 = 200; delete wasJustCreated; } popupTween = new mx.effects.Tween(this, [popupMask._x, popupMask._y], [0, 0], _local4); __set__visible(true); isPressed = true; if ((!__menuBar) && (_local2 == this)) { Selection.setFocus(this); } } } function onTweenUpdate(val) { popupMask._width = width; popupMask._x = val[0]; popupMask._y = val[1]; } function onTweenEnd(val) { popupMask._x = val[0]; popupMask._y = val[1]; setMask(undefined); popupMask.removeMovieClip(); } function hide(Void) { if (__get__visible()) { for (var _local2 in __activeChildren) { __activeChildren[_local2].hide(); } __lastRowRolledOver = undefined; clearSelected(); if (anchorRow != undefined) { anchorRow.highlight._visible = false; } __set__visible(false); isPressed = false; __wasVisible = false; var _local3 = getRootMenu(); _local3.dispatchEvent({type:"menuHide", menuBar:__menuBar, menu:this, menuItem:__menuDataProvider}); } } function onKillFocus() { super.onKillFocus(); getFocusManager().defaultPushButtonEnabled = true; if (supposedToLoseFocus == undefined) { hideAllMenus(); } delete supposedToLoseFocus; } function modelChanged(eventObj) { var _local3 = eventObj.eventName; if (_local3 == "updateTree") { __dataProvider.removeAll(); __dataProvider.addItemsAt(0, __menuDataProvider.childNodes); invUpdateSize = true; invalidate(); super.modelChanged({eventName:"updateAll"}); deinstallAllItems(); installItem(__menuDataProvider); if (__menuCache == undefined) { __menuCache = new Object(); } __menuCache[__menuDataProvider.getID()] = this; } else if ((_local3 == "addNode") || (_local3 == "removeNode")) { var _local5 = eventObj.node; var _local6 = eventObj.parentNode; var _local7 = __menuCache[_local6.getID()]; if (_local3 == "removeNode") { deleteDependentSubMenus(_local5); _local7.removeItemAt(eventObj.index); deinstallItem(_local5); } else { _local7.addItemAt(eventObj.index, _local5); installItem(_local5); } _local7.invUpdateSize = true; _local7.invalidate(); var _local8 = __menuCache[_local6.parentNode.getID()]; _local8.invUpdateControl = true; _local8.invalidate(); } else if ((_local3 == "selectionChanged") || (_local3 == "enabledChanged")) { var _local7 = __menuCache[eventObj.node.parentNode.getID()]; _local7.invUpdateControl = true; _local7.invalidate(); } else { super.modelChanged(eventObj); } } function updateSize() { delete invUpdateSize; var _local2 = calcHeight(); if (getLength() != __rowCount) { setSize(0, _local2); } setSize(calcWidth(), _local2); } function calcWidth() { var _local4 = -1; var _local3; var _local2 = 0; while (_local2 < rows.length) { _local3 = rows[_local2].getIdealWidth(); if (_local3 > _local4) { _local4 = _local3; } _local2++; } var _local5 = getStyle("textIndent"); if (_local5 == undefined) { _local5 = 0; } return(_local4 + _local5); } function calcHeight() { var _local2 = getViewMetrics(); return(((__dataProvider.length * __rowHeight) + _local2.top) + _local2.bottom); } function invalidateStyle(propName) { super.invalidateStyle(propName); for (var _local4 in __activeChildren) { __activeChildren[_local4].invalidateStyle(propName); } } function notifyStyleChangeInChildren(sheetName, styleProp, newValue) { super.notifyStyleChangeInChildren(sheetName, styleProp, newValue); for (var _local6 in __activeChildren) { __activeChildren[_local6].notifyStyleChangeInChildren(sheetName, styleProp, newValue); } } function deleteDependentSubMenus(menuItem) { var _local2 = menuItem.childNodes; for (var _local3 in _local2) { deleteDependentSubMenus(_local2[_local3]); } var _local4 = __menuCache[menuItem.getID()]; if (_local4 != undefined) { _local4.hide(); delete __menuCache[menuItem.getID()]; } } function installItem(item) { if (item.attributes.instanceName != undefined) { var _local6 = item.attributes.instanceName; if (this[_local6] != undefined) { trace("WARNING: Duplicate menu item instanceNames - " + _local6); } if (__namedItems == undefined) { __namedItems = new Object(); } __namedItems[_local6] = item; this[_local6] = item; } if ((item.attributes.type == "radio") && (item.attributes.groupName != undefined)) { var _local5 = item.attributes.groupName; var _local2 = this[_local5]; if (_local2 == undefined) { _local2 = new Object(); _local2.name = _local5; _local2._rootMenu = this; _local2._members = new Object(); _local2._memberCount = 0; _local2.getGroupSelection = getGroupSelection; _local2.setGroupSelection = setGroupSelection; _local2.addProperty("selection", _local2.getGroupSelection, _local2.setGroupSelection); if (__radioGroups == undefined) { __radioGroups = new Object(); } __radioGroups[_local5] = _local2; this[_local5] = _local2; } _local2._members[item.getID()] = item; _local2._memberCount++; if (isItemSelected(item)) { _local2.selection = item; } } var _local3 = item.childNodes; for (var _local7 in _local3) { installItem(_local3[_local7]); } } function deinstallItem(item) { var _local2 = item.childNodes; for (var _local5 in _local2) { deinstallItem(_local2[_local5]); } if (item.attributes.instanceName != undefined) { var _local7 = item.attributes.instanceName; delete this[_local7]; delete __namedItems[_local7]; } if ((item.attributes.type == "radio") && (item.attributes.groupName != undefined)) { var _local6 = item.attributes.groupName; var _local3 = this[_local6]; if (_local3 == undefined) { return(undefined); } delete _local3._members[item.getID()]; _local3._memberCount--; if (_local3._memberCount == 0) { delete this[_local6]; delete __radioGroups[_local6]; } else if (_local3.selection == item) { delete _local3._selection; } } } function deinstallAllItems(Void) { for (var _local2 in __namedItems) { delete this[_local2]; } delete __namedItems; for (var _local2 in __radioGroups) { delete this[_local2]; } delete __radioGroups; } function getGroupSelection() { return(_selection); } function setGroupSelection(item) { _selection = item; for (var _local4 in _members) { var _local2 = _members[_local4]; _local2.attributes.selected = _local2 == item; } item.updateViews({eventName:"selectionChanged", node:item}); } function onRowRelease(rowIndex) { if (((!enabled) || (!selectable)) || (!__get__visible())) { return(undefined); } var _local5 = rows[rowIndex]; var _local2 = _local5.item; if ((_local2 != undefined) && (isItemEnabled(_local2))) { var _local10 = _local2.attributes.type; var _local4 = (!_local2.hasChildNodes()) && (_local10 != "separator"); if (_local4) { hideAllMenus(); } var _local6; var _local3 = getRootMenu(); if ((_local10 == "check") || (_local10 == "radio")) { setMenuItemSelected(_local2, !isItemSelected(_local2)); } if (_local4) { _local3.dispatchEvent({type:"change", menuBar:__menuBar, menu:_local3, menuItem:_local2, groupName:_local6}); } } } function onRowPress(rowIndex) { var _local3 = rows[rowIndex].item; if (isItemEnabled(_local3) && (!_local3.hasChildNodes())) { super.onRowPress(rowIndex); } } function onRowRollOut(rowIndex) { if (((!enabled) || (!selectable)) || (!__get__visible())) { return(undefined); } super.onRowRollOut(rowIndex); var _local4 = rows[rowIndex].item; if (_local4 != undefined) { var _local5 = getRootMenu(); _local5.dispatchEvent({type:"rollOut", menuBar:__menuBar, menu:this, menuItem:_local4}); } var _local3 = __activeChildren[_local4.getID()]; if (_local4.hasChildNodes() > 0) { if (_local3.isOpening || (_local3.isOpening == undefined)) { cancelMenuDelay(); _local3.isOpening = false; } if (_local3.visible) { rows[rowIndex].drawRow(_local4, "selected", false); } } else if (_local3.isClosing || (_local3.isClosing == undefined)) { cancelMenuDelay(); _local3.isClosing = false; } setTimeOut(__closeDelay, _local4.getID()); } function onRowRollOver(rowIndex) { if (((!enabled) || (!selectable)) || (!__get__visible())) { return(undefined); } var _local2 = rows[rowIndex]; var _local8 = _local2.item; var _local6 = _local8.getID(); var _local4 = __activeChildren[__anchor]; var _local5 = __activeChildren[_local6]; clearSelected(); clearTimeOut(); __lastRowRolledOver = rowIndex; if (anchorRow != undefined) { anchorRow.drawRow(anchorRow.item, "normal", false); delete anchorRow; } if (__parentMenu) { var _local3 = __parentMenu.rows[__anchorIndex]; _local3.drawRow(_local3.item, "selected", false); __parentMenu.anchorRow = _local3; } if (_local5.__activeChildren[_local5.__anchor].visible) { _local5.__activeChildren[_local5.__anchor].hide(); } if (_local4.visible && (__anchor != _local6)) { _local4.isClosing = true; setMenuDelay(__closeDelay, "closeSubMenu", {id:__anchor}); } if ((_local8 != undefined) && (isItemEnabled(_local8))) { var _local7 = getRootMenu(); _local7.dispatchEvent({type:"rollOver", menuBar:__menuBar, menu:this, menuItem:_local8}); if (_local8.hasChildNodes() > 0) { anchorRow = _local2; _local2.drawRow(_local8, "selected", false); if (!_local5.visible) { _local5.isOpening = true; setMenuDelay(__openDelay, "openSubMenu", {item:_local8, rowIndex:rowIndex}); } } else { _local2.drawRow(_local8, "highlighted", false); } } } function onRowDragOver(rowIndex) { var _local4 = __dataProvider.getItemAt(rowIndex + __vPosition); if (isItemEnabled(_local4)) { super.onRowDragOver(rowIndex); onRowRollOver(rowIndex); } } function __onMouseUp() { clearInterval(dragScrolling); delete dragScrolling; delete isPressed; if (!selectable) { return(undefined); } if (__wasVisible) { hide(); } __wasVisible = false; } function setMenuDelay(delay, request, args) { if (__timer == null) { __timer = setInterval(this, "callMenuDelay", delay, request, args); } else { __delayQueue.push({delay:delay, request:request, args:args}); } } function callMenuDelay(request, args) { this[request](args); clearMenuDelay(); } function clearMenuDelay(Void) { clearInterval(__timer); __timer = null; runDelayQueue(); } function cancelMenuDelay(Void) { var _local2 = __delayQueue.pop(); clearMenuDelay(); } function runDelayQueue(Void) { if (__delayQueue.length == 0) { return(undefined); } var _local2 = __delayQueue.shift(); var _local4 = _local2.delay; var _local5 = _local2.request; var _local3 = _local2.args; setMenuDelay(_local4, _local5, _local3); } function setTimeOut(delay, id) { clearTimeOut(); __timeOut = setInterval(this, "callTimeOut", delay, id); } function clearTimeOut(Void) { clearInterval(__timeOut); __timeOut = null; } function callTimeOut(Void) { var _local2 = __activeChildren[__anchor]; clearTimeOut(); if ((!isMouseOverMenu()) && (_local2)) { var _local3 = _local2.__anchorIndex; var _local5 = __dataProvider.getItemAt(_local3 + __vPosition); var _local4 = rows[_local3]; _local4.drawRow(_local5, "normal", false); _local2.hide(); __delayQueue.length = 0; } } function openSubMenu(o) { var _local3 = getRootMenu(); var _local6 = rows[o.rowIndex]; var _local7 = o.item; var _local4 = (__anchor = _local7.getID()); var _local2 = _local3.__menuCache[_local4]; if (_local2 == undefined) { _local2 = mx.managers.PopUpManager.createPopUp(_local3, mx.controls.Menu, false, {__parentMenu:this, __anchorIndex:o.rowIndex, styleName:_local3}, true); _local2.labelField = _local3.__labelField; _local2.labelFunction = _local3.__labelFunction; _local2.iconField = _local3.__iconField; _local2.iconFunction = _local3.__iconFunction; _local2.wasJustCreated = true; _local2.cellRenderer = _local3.__cellRenderer; _local2.rowHeight = _local3.__rowHeight; if (_local3.__menuCache == undefined) { _local3.__menuCache = new Object(); _local3.__menuCache[_local3.__menuDataProvider.getID()] = _local3; } if (__activeChildren == undefined) { __activeChildren = new Object(); } _local3.__menuCache[_local4] = _local2; __activeChildren[_local4] = _local2; _local2.__dataProvider.addItemsAt(0, _local7.childNodes); _local2.invUpdateSize = true; _local2.invalidate(); } _local2.__menuBar = __menuBar; var _local5 = {x:0, y:0}; _local6.localToGlobal(_local5); _local2.focusManager.lastFocus = undefined; _local2.show(_local5.x + _local6.__width, _local5.y); focusManager.lastFocus = undefined; _local2.isOpening = false; } function closeSubMenu(o) { var _local2 = __activeChildren[o.id]; _local2.hide(); _local2.isClosing = false; } function moveSelBy(incr) { var _local3 = getSelectedIndex(); if (_local3 == undefined) { _local3 = -1; } var _local2 = _local3 + incr; if (_local2 > (__dataProvider.length - 1)) { _local2 = 0; } else if (_local2 < 0) { _local2 = __dataProvider.length - 1; } wasKeySelected = true; selectRow(_local2 - __vPosition, false); var _local4 = __dataProvider.getItemAt(_local2 + __vPosition); if (_local4.attributes.type == "separator") { moveSelBy(incr); } } function keyDown(e) { if (__lastRowRolledOver != undefined) { selectedIndex = __lastRowRolledOver; __lastRowRolledOver = undefined; } var _local2 = selectedItem; if (Key.isDown(38)) { var _local3 = getRootMenu(); var _local4 = _local3.__menuCache[_local2.getID()]; if (_local2.hasChildNodes() && (_local4.visible)) { supposedToLoseFocus = true; Selection.setFocus(_local4); _local4.selectedIndex = _local4.rows.length - 1; } else { moveSelBy(-1); } } if (Key.isDown(40)) { var _local3 = getRootMenu(); var _local4 = _local3.__menuCache[_local2.getID()]; if (_local2.hasChildNodes() && (_local4.visible)) { supposedToLoseFocus = true; Selection.setFocus(_local4); _local4.selectedIndex = 0; } else { moveSelBy(1); } } if (Key.isDown(39)) { if (_local2.hasChildNodes()) { openSubMenu({item:_local2, rowIndex:selectedIndex}); var _local3 = getRootMenu(); var _local4 = _local3.__menuCache[_local2.getID()]; supposedToLoseFocus = true; Selection.setFocus(_local4); _local4.selectedIndex = 0; } else if (__menuBar) { supposedToLoseFocus = true; Selection.setFocus(__menuBar); __menuBar.keyDown(e); } } if (Key.isDown(37)) { if (__parentMenu) { supposedToLoseFocus = true; hide(); Selection.setFocus(__parentMenu); } else if (__menuBar) { supposedToLoseFocus = true; Selection.setFocus(__menuBar); __menuBar.keyDown(e); } } if (Key.isDown(13) || (Key.isDown(32))) { if (_local2.hasChildNodes()) { openSubMenu({item:_local2, rowIndex:selectedIndex}); var _local3 = getRootMenu(); var _local4 = _local3.__menuCache[_local2.getID()]; _local4.selectedIndex = 0; } else { onRowRelease(selectedIndex); } } if (Key.isDown(27) || (Key.isDown(9))) { hideAllMenus(); } } function hideAllMenus(Void) { getRootMenu().hide(); } function isMouseOverMenu(Void) { var _local6 = _root._xmouse; var _local5 = _root._ymouse; if (border_mc.hitTest(_local6, _local5)) { return(true); } var _local4 = getRootMenu(); for (var _local7 in _local4.__menuCache) { var _local3 = _local4.__menuCache[_local7]; if (_local3.visible && (_local3.border_mc.hitTest(_local6, _local5))) { return(true); } } return(false); } function getRootMenu(Void) { var _local2 = this; while (_local2.__parentMenu != undefined) { _local2 = _local2.__parentMenu; } return(_local2); } static var symbolName = "Menu"; static var symbolOwner = mx.controls.Menu; var className = "Menu"; static var version = "2.0.0.360"; static var mixit = mx.controls.treeclasses.TreeDataProvider.Initialize(XMLNode); static var mixit2 = mx.controls.menuclasses.MenuDataProvider.Initialize(XMLNode); var __hScrollPolicy = "off"; var __vScrollPolicy = "off"; var __rowRenderer = "MenuRow"; var __rowHeight = 19; var __wasVisible = false; var __enabled = true; var __openDelay = 250; var __closeDelay = 250; var __delayQueue = new Array(); var __iconField = "icon"; }
Symbol 244 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 245 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 246 MovieClip [__Packages.mx.controls.menuclasses.MenuRow] Frame 0
class mx.controls.menuclasses.MenuRow extends mx.controls.listclasses.SelectableRow { var cell, state, owner, icon_branch, branch, type, iconID, icon_mc, icon_sep, createObject, __width, __height, idealWidth; function MenuRow () { super(); } function setValue(itemObj, sel) { var _local7 = cell; var _local6 = itemToString(itemObj); if (_local7.getValue() != _local6) { _local7.setValue(_local6, itemObj, state); } var _local8 = itemObj.hasChildNodes(); var _local5 = mx.controls.Menu.isItemEnabled(itemObj); var _local4 = itemObj.attributes.type; if (_local4 == undefined) { _local4 = "normal"; } var _local9 = mx.controls.Menu.isItemSelected(itemObj); var _local3 = owner.__iconFunction(itemObj); if (_local3 == undefined) { _local3 = itemObj.attributes[owner.__iconField]; } if (_local3 == undefined) { _local3 = owner.getStyle("defaultIcon"); } if (icon_branch && (((_local8 != branch) || (_local5 != isEnabled)) || (type == "separator"))) { icon_branch.removeMovieClip(); delete icon_branch; } if ((((_local9 != selected) || (_local3 != iconID)) || (_local4 != type)) || ((_local5 != isEnabled) && (_local4 != "normal"))) { icon_mc.removeMovieClip(); icon_sep.removeMovieClip(); delete icon_sep; delete icon_mc; } branch = _local8; isEnabled = _local5; type = _local4; selected = _local9; iconID = _local3; cell.__enabled = isEnabled; cell.setColor((isEnabled ? (owner.getStyle("color")) : (owner.getStyle("disabledColor")))); if (sel == "highlighted") { if (isEnabled) { cell.setColor(owner.getStyle("textRollOverColor")); } } else if (sel == "selected") { if (isEnabled) { cell.setColor(owner.getStyle("textSelectedColor")); } } if (branch && (icon_branch == undefined)) { icon_branch = createObject("MenuBranch" + (isEnabled ? "Enabled" : "Disabled"), "icon_branch", 20); } if (type == "separator") { if (icon_sep == undefined) { var _local10 = createObject("MenuSeparator", "icon_sep", 21); } } else if (icon_mc == undefined) { if (type != "normal") { if (selected) { iconID = ((type == "check") ? "MenuCheck" : "MenuRadio") + (isEnabled ? "Enabled" : "Disabled"); } else { iconID = undefined; } } if (iconID != undefined) { icon_mc = createObject(iconID, "icon_mc", 21); } } size(); } function itemToString(itmObj) { if (itmObj.attributes.type == "separator") { return(" "); } return(super.itemToString(itmObj)); } function size(Void) { super.size(); cell._x = lBuffer; cell.setSize((__width - rBuffer) - lBuffer, Math.min(__height, cell.getPreferredHeight())); if (icon_branch) { icon_branch._x = __width - (rBuffer / 2); icon_branch._y = (__height - icon_branch._height) / 2; } if (icon_sep) { icon_sep._x = 4; icon_sep._y = (__height - icon_sep._height) / 2; icon_sep._width = __width - 8; } else if (icon_mc) { icon_mc._x = Math.max(0, (lBuffer - icon_mc._width) / 2); icon_mc._y = (__height - icon_mc._height) / 2; } } function getIdealWidth(Void) { cell.draw(); idealWidth = ((cell.getPreferredWidth() + 4) + lBuffer) + rBuffer; return(idealWidth); } var isEnabled = true; var selected = false; var lBuffer = 18; var rBuffer = 15; }
Symbol 300 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 302 MovieClip [__Packages.mx.controls.Label] Frame 0
class mx.controls.Label extends mx.core.UIObject { var _xscale, _yscale, labelField, tabEnabled, tabChildren, useHandCursor, _color, initText, __autoSize, _getTextFormat, __width, setSize, _x, __height, enabled, getStyle; function Label () { super(); } function init(Void) { super.init(); _xscale = (_yscale = 100); labelField.selectable = false; labelField.styleName = this; tabEnabled = false; tabChildren = false; useHandCursor = false; _color = mx.core.UIObject.textColorList; } function get html() { return(getHtml()); } function set html(value) { setHtml(value); //return(html); } function getHtml() { return(labelField.html); } function setHtml(value) { if (value != labelField.html) { labelField.html = value; } } function get text() { return(getText()); } function set text(t) { setText(t); //return(text); } function getText() { if (initializing) { return(initText); } var _local2 = labelField; if (_local2.html == true) { return(_local2.htmlText); } return(_local2.text); } function setText(t) { if (initializing) { initText = t; } else { var _local2 = labelField; if (_local2.html == true) { _local2.htmlText = t; } else { _local2.text = t; } adjustForAutoSize(); } } function get autoSize() { return(__autoSize); } function set autoSize(v) { if (_global.isLivePreview == true) { v = "none"; } __autoSize = v; if (!initializing) { draw(); } //return(autoSize); } function draw(Void) { var _local2 = labelField; if (initializing) { var _local4 = text; initializing = false; setText(_local4); delete initText; } if (_local2.html) { var _local4 = _local2.htmlText; } var _local3 = _getTextFormat(); _local2.embedFonts = _local3.embedFonts == true; if (_local3 != undefined) { _local2.setTextFormat(_local3); _local2.setNewTextFormat(_local3); } if (_local2.html) { _local2.htmlText = _local4; } adjustForAutoSize(); } function adjustForAutoSize() { var _local2 = labelField; var _local3 = __autoSize; if ((_local3 != undefined) && (_local3 != "none")) { _local2._height = _local2.textHeight + 3; var _local4 = __width; setSize(_local2.textWidth + 4, _local2._height); if (_local3 == "right") { _x = _x + (_local4 - __width); } else if (_local3 == "center") { _x = _x + ((_local4 - __width) / 2); } else if (_local3 == "left") { _x = _x + 0; } } else { _local2._x = 0; _local2._width = __width; _local2._height = __height; } } function size(Void) { var _local2 = labelField; _local2._width = __width; _local2._height = __height; } function setEnabled(enable) { enabled = enable; var _local2 = getStyle((enable ? "color" : "disabledColor")); if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } setColor(_local2); } function setColor(col) { labelField.textColor = col; } function get styleSheet() { return(labelField.styleSheet); } function set styleSheet(v) { labelField.styleSheet = v; //return(styleSheet); } static var symbolName = "Label"; static var symbolOwner = Object(mx.controls.Label); var className = "Label"; static var version = "2.0.0.360"; var initializing = true; var clipParameters = {text:1, html:1, autoSize:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.Label.prototype.clipParameters, mx.core.UIObject.prototype.clipParameters); }
Symbol 317 MovieClip [__Packages.mx.controls.ComboBase] Frame 0
class mx.controls.ComboBase extends mx.core.UIComponent { var getValue, tabEnabled, tabChildren, boundingBox_mc, downArrow_mc, createClassObject, onDownArrow, border_mc, __border, text_mc, focusTextField, __width, __height, getFocusManager, __get__height, height, _parent; function ComboBase () { super(); getValue = _getValue; } function init() { super.init(); tabEnabled = !_editable; tabChildren = _editable; boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function createChildren() { var _local3 = new Object(); _local3.styleName = this; if (downArrow_mc == undefined) { _local3.falseUpSkin = downArrowUpName; _local3.falseOverSkin = downArrowOverName; _local3.falseDownSkin = downArrowDownName; _local3.falseDisabledSkin = downArrowDisabledName; _local3.validateNow = true; _local3.tabEnabled = false; createClassObject(mx.controls.SimpleButton, "downArrow_mc", 19, _local3); downArrow_mc.buttonDownHandler = onDownArrow; downArrow_mc.useHandCursor = false; downArrow_mc.onPressWas = downArrow_mc.onPress; downArrow_mc.onPress = function () { this.trackAsMenuWas = this.trackAsMenu; this.trackAsMenu = true; if (!this._editable) { this._parent.text_mc.trackAsMenu = this.trackAsMenu; } this.onPressWas(); }; downArrow_mc.onDragOutWas = downArrow_mc.onDragOut; downArrow_mc.onDragOut = function () { this.trackAsMenuWas = this.trackAsMenu; this.trackAsMenu = false; if (!this._editable) { this._parent.text_mc.trackAsMenu = this.trackAsMenu; } this.onDragOutWas(); }; downArrow_mc.onDragOverWas = downArrow_mc.onDragOver; downArrow_mc.onDragOver = function () { this.trackAsMenu = this.trackAsMenuWas; if (!this._editable) { this._parent.text_mc.trackAsMenu = this.trackAsMenu; } this.onDragOverWas(); }; } if (border_mc == undefined) { _local3.tabEnabled = false; createClassObject(_global.styles.rectBorderClass, "border_mc", 17, _local3); border_mc.move(0, 0); __border = border_mc; } _local3.borderStyle = "none"; _local3.readOnly = !_editable; _local3.tabEnabled = _editable; if (text_mc == undefined) { createClassObject(mx.controls.TextInput, "text_mc", 18, _local3); text_mc.move(0, 0); text_mc.addEnterEvents(); text_mc.enterHandler = _enterHandler; text_mc.changeHandler = _changeHandler; text_mc.oldOnSetFocus = text_mc.onSetFocus; text_mc.onSetFocus = function () { this.oldOnSetFocus(); this._parent.onSetFocus(); }; text_mc.__set__restrict("^\x1B"); text_mc.oldOnKillFocus = text_mc.onKillFocus; text_mc.onKillFocus = function (n) { this.oldOnKillFocus(n); this._parent.onKillFocus(n); }; text_mc.drawFocus = function (b) { this._parent.drawFocus(b); }; delete text_mc.borderStyle; } focusTextField = text_mc; text_mc.owner = this; layoutChildren(__width, __height); } function onKillFocus() { super.onKillFocus(); Key.removeListener(text_mc); getFocusManager().defaultPushButtonEnabled = true; } function onSetFocus() { super.onSetFocus(); getFocusManager().defaultPushButtonEnabled = false; Key.addListener(text_mc); } function setFocus() { if (_editable) { Selection.setFocus(text_mc); } else { Selection.setFocus(this); } } function setSize(w, h, noEvent) { super.setSize(w, ((h == undefined) ? (__get__height()) : (h)), noEvent); } function setEnabled(enabledFlag) { super.setEnabled(enabledFlag); downArrow_mc.enabled = enabledFlag; text_mc.enabled = enabledFlag; } function setEditable(e) { _editable = e; if (wrapDownArrowButton == false) { if (e) { border_mc.borderStyle = "inset"; text_mc.borderStyle = "inset"; symbolName = "ComboBox"; invalidateStyle(); } else { border_mc.borderStyle = "comboNonEdit"; text_mc.borderStyle = "dropDown"; symbolName = "DropDown"; invalidateStyle(); } } tabEnabled = !e; tabChildren = e; text_mc.tabEnabled = e; if (e) { delete text_mc.onPress; delete text_mc.onRelease; delete text_mc.onReleaseOutside; delete text_mc.onDragOut; delete text_mc.onDragOver; delete text_mc.onRollOver; delete text_mc.onRollOut; } else { text_mc.onPress = function () { this._parent.downArrow_mc.onPress(); }; text_mc.onRelease = function () { this._parent.downArrow_mc.onRelease(); }; text_mc.onReleaseOutside = function () { this._parent.downArrow_mc.onReleaseOutside(); }; text_mc.onDragOut = function () { this._parent.downArrow_mc.onDragOut(); }; text_mc.onDragOver = function () { this._parent.downArrow_mc.onDragOver(); }; text_mc.onRollOver = function () { this._parent.downArrow_mc.onRollOver(); }; text_mc.onRollOut = function () { this._parent.downArrow_mc.onRollOut(); }; text_mc.useHandCursor = false; } } function get editable() { return(_editable); } function set editable(e) { setEditable(e); //return(editable); } function _getValue() { return((_editable ? (text_mc.getText()) : (DSgetValue()))); } function draw() { downArrow_mc.draw(); border_mc.draw(); } function size() { layoutChildren(__width, __height); } function setTheme(t) { downArrowUpName = (t + "downArrow") + "Up_mc"; downArrowDownName = (t + "downArrow") + "Down_mc"; downArrowDisabledName = (t + "downArrow") + "Disabled_mc"; } function get text() { return(text_mc.getText()); } function set text(t) { setText(t); //return(text); } function setText(t) { text_mc.setText(t); } function get textField() { return(text_mc); } function invalidateStyle() { downArrow_mc.invalidateStyle(); text_mc.invalidateStyle(); border_mc.invalidateStyle(); } function layoutChildren(w, h) { if (downArrow_mc == undefined) { return(undefined); } if (wrapDownArrowButton) { var _local2 = border_mc.__get__borderMetrics(); downArrow_mc._width = (downArrow_mc._height = (h - _local2.top) - _local2.bottom); downArrow_mc.move((w - downArrow_mc._width) - _local2.right, _local2.top); border_mc.setSize(w, h); text_mc.setSize(w - downArrow_mc._width, h); } else { downArrow_mc.move(w - downArrow_mc._width, 0); border_mc.setSize(w - downArrow_mc.width, h); text_mc.setSize(w - downArrow_mc._width, h); downArrow_mc._height = height; } } function _changeHandler(obj) { } function _enterHandler(obj) { var _local2 = _parent; obj.target = _local2; _local2.dispatchEvent(obj); } static var mixIt1 = mx.controls.listclasses.DataSelector.Initialize(mx.controls.ComboBase); static var symbolName = "ComboBase"; static var symbolOwner = mx.controls.ComboBase; static var version = "2.0.0.377"; var _editable = false; var downArrowUpName = "ScrollDownArrowUp"; var downArrowDownName = "ScrollDownArrowDown"; var downArrowOverName = "ScrollDownArrowOver"; var downArrowDisabledName = "ScrollDownArrowDisabled"; var wrapDownArrowButton = true; var DSgetValue = mx.controls.listclasses.DataSelector.prototype.getValue; var multipleSelection = false; }
Symbol 318 MovieClip [__Packages.mx.controls.ComboBox] Frame 0
class mx.controls.ComboBox extends mx.controls.ComboBase { var __set__editable, editable, __labels, data, __dropdownWidth, __width, _editable, selectedIndex, __dropdown, dataProvider, __labelFunction, createObject, border_mc, mask, text_mc, dispatchValueChangedEvent, getValue, length, selectedItem, _y, isPressed, __set__visible, height, localToGlobal, __get__height, getStyle, dispatchEvent, _parent, owner, width, __dataProvider, selected; function ComboBox () { super(); } function init() { super.init(); } function createChildren() { super.createChildren(); __set__editable(editable); if (__labels.length > 0) { var _local6 = new Array(); var _local3 = 0; while (_local3 < labels.length) { _local6.addItem({label:labels[_local3], data:data[_local3]}); _local3++; } setDataProvider(_local6); } dropdownWidth = (((typeof(__dropdownWidth) == "number") ? (__dropdownWidth) : (__width))); if (!_editable) { selectedIndex = 0; } initializing = false; } function onKillFocus(n) { if (_showingDropdown && (n != null)) { displayDropdown(false); } super.onKillFocus(); } function getDropdown() { if (initializing) { return(undefined); } if (!hasDropdown()) { var _local3 = new Object(); _local3.styleName = this; if (dropdownBorderStyle != undefined) { _local3.borderStyle = dropdownBorderStyle; } _local3._visible = false; __dropdown = mx.managers.PopUpManager.createPopUp(this, mx.controls.List, false, _local3, true); __dropdown.scroller.mask.removeMovieClip(); if (dataProvider == undefined) { dataProvider = new Array(); } __dropdown.setDataProvider(dataProvider); __dropdown.selectMultiple = false; __dropdown.rowCount = __rowCount; __dropdown.selectedIndex = selectedIndex; __dropdown.vScrollPolicy = "auto"; __dropdown.labelField = __labelField; __dropdown.labelFunction = __labelFunction; __dropdown.owner = this; __dropdown.changeHandler = _changeHandler; __dropdown.scrollHandler = _scrollHandler; __dropdown.itemRollOverHandler = _itemRollOverHandler; __dropdown.itemRollOutHandler = _itemRollOutHandler; __dropdown.resizeHandler = _resizeHandler; __dropdown.mouseDownOutsideHandler = function (eventObj) { if (this.owner.hitTest(_root._xmouse, _root._ymouse, false)) { } else if ((!this.wrapDownArrowButton) && (this.owner.downArrow_mc.hitTest(_root._xmouse, _root._ymouse, false))) { } else { this.owner.displayDropdown(false); } }; __dropdown.onTweenUpdate = function (v) { this._y = v; }; __dropdown.setSize(__dropdownWidth, __dropdown.height); createObject("BoundingBox", "mask", 20); mask._y = border_mc.height; mask._width = __dropdownWidth; mask._height = __dropdown.height; mask._visible = false; __dropdown.setMask(mask); } return(__dropdown); } function setSize(w, h, noEvent) { super.setSize(w, h, noEvent); __dropdownWidth = w; __dropdown.rowHeight = h; __dropdown.setSize(__dropdownWidth, __dropdown.height); } function setEditable(e) { super.setEditable(e); if (e) { text_mc.setText(""); } else { text_mc.setText(selectedLabel); } } function get labels() { return(__labels); } function set labels(lbls) { __labels = lbls; setDataProvider(lbls); //return(labels); } function getLabelField() { return(__labelField); } function get labelField() { return(getLabelField()); } function setLabelField(s) { __dropdown.labelField = (__labelField = s); text_mc.setText(selectedLabel); } function set labelField(s) { setLabelField(s); //return(labelField); } function getLabelFunction() { return(__labelFunction); } function get labelFunction() { return(getLabelFunction()); } function set labelFunction(f) { __dropdown.labelFunction = (__labelFunction = f); text_mc.setText(selectedLabel); //return(labelFunction); } function setSelectedItem(v) { super.setSelectedItem(v); __dropdown.selectedItem = v; text_mc.setText(selectedLabel); } function setSelectedIndex(v) { super.setSelectedIndex(v); __dropdown.selectedIndex = v; text_mc.setText(selectedLabel); dispatchValueChangedEvent(getValue()); } function setRowCount(count) { if (isNaN(count)) { return(undefined); } __rowCount = count; __dropdown.setRowCount(count); } function get rowCount() { return(Math.max(1, Math.min(length, __rowCount))); } function set rowCount(v) { setRowCount(v); //return(rowCount); } function setDropdownWidth(w) { __dropdownWidth = w; __dropdown.setSize(w, __dropdown.height); } function get dropdownWidth() { return(__dropdownWidth); } function set dropdownWidth(v) { setDropdownWidth(v); //return(dropdownWidth); } function get dropdown() { return(getDropdown()); } function setDataProvider(dp) { super.setDataProvider(dp); __dropdown.setDataProvider(dp); if (!_editable) { selectedIndex = 0; } } function open() { displayDropdown(true); } function close() { displayDropdown(false); } function get selectedLabel() { var _local2 = selectedItem; if (_local2 == undefined) { return(""); } if (labelFunction != undefined) { return(labelFunction(_local2)); } if (typeof(_local2) != "object") { return(_local2); } if (_local2[labelField] != undefined) { return(_local2[labelField]); } if (_local2.label != undefined) { return(_local2.label); } var _local3 = " "; for (var _local4 in _local2) { if (_local4 != "__ID__") { _local3 = (_local2[_local4] + ", ") + _local3; } } _local3 = _local3.substring(0, _local3.length - 3); return(_local3); } function hasDropdown() { return((__dropdown != undefined) && (__dropdown.valueOf() != undefined)); } function tweenEndShow(value) { _y = value; isPressed = true; } function tweenEndHide(value) { _y = value; __set__visible(false); } function displayDropdown(show) { if (show == _showingDropdown) { return(undefined); } var _local3 = new Object(); _local3.x = 0; _local3.y = height; localToGlobal(_local3); if (show) { getDropdown(); var _local2 = __dropdown; _local2.isPressed = true; _local2.rowCount = rowCount; _local2.visible = show; _local2.onTweenEnd = tweenEndShow; var _local5; var _local8; if ((_local3.y + _local2.height) > Stage.height) { _local5 = _local3.y - __get__height(); _local8 = _local5 - _local2.height; mask._y = -_local2.height; } else { _local5 = _local3.y - _local2.height; _local8 = _local3.y; mask._y = border_mc.height; } var _local7 = _local2.selectedIndex; if (_local7 == undefined) { _local7 = 0; } var _local4 = _local2.vPosition; _local4 = _local7 - 1; _local4 = Math.min(Math.max(_local4, 0), _local2.length - _local2.rowCount); _local2.vPosition = _local4; _local2.move(_local3.x, _local5); _local2.tween = new mx.effects.Tween(__dropdown, _local5, _local8, getStyle("openDuration")); } else { delete __dropdown.dragScrolling; __dropdown.onTweenEnd = tweenEndHide; __dropdown.tween = new mx.effects.Tween(__dropdown, __dropdown._y, _local3.y - __dropdown.height, getStyle("openDuration")); } var _local9 = getStyle("openEasing"); if (_local9 != undefined) { __dropdown.tween.easingEquation = _local9; } _showingDropdown = show; dispatchEvent({type:(show ? "open" : "close"), target:this}); } function onDownArrow() { _parent.displayDropdown(!_parent._showingDropdown); } function keyDown(e) { if (e.ctrlKey && (e.code == 40)) { displayDropdown(true); } else if (e.ctrlKey && (e.code == 38)) { displayDropdown(false); } else if (e.code == 27) { displayDropdown(false); } else if (e.code == 13) { if (_showingDropdown) { selectedIndex = __dropdown.selectedIndex; displayDropdown(false); } } else if (((((!_editable) || (e.code == 38)) || (e.code == 40)) || (e.code == 33)) || (e.code == 34)) { selectedIndex = 0 + selectedIndex; bInKeyDown = true; var _local3 = dropdown; _local3.keyDown(e); bInKeyDown = false; selectedIndex = __dropdown.selectedIndex; } } function invalidateStyle(styleProp) { __dropdown.invalidateStyle(styleProp); super.invalidateStyle(styleProp); } function changeTextStyleInChildren(styleProp) { if (dropdown.stylecache != undefined) { delete dropdown.stylecache[styleProp]; delete dropdown.stylecache.tf; } __dropdown.changeTextStyleInChildren(styleProp); super.changeTextStyleInChildren(styleProp); } function changeColorStyleInChildren(sheetName, styleProp, newValue) { if (dropdown.stylecache != undefined) { delete dropdown.stylecache[styleProp]; delete dropdown.stylecache.tf; } __dropdown.changeColorStyleInChildren(sheetName, styleProp, newValue); super.changeColorStyleInChildren(sheetName, styleProp, newValue); } function notifyStyleChangeInChildren(sheetName, styleProp, newValue) { if (dropdown.stylecache != undefined) { delete dropdown.stylecache[styleProp]; delete dropdown.stylecache.tf; } __dropdown.notifyStyleChangeInChildren(sheetName, styleProp, newValue); super.notifyStyleChangeInChildren(sheetName, styleProp, newValue); } function onUnload() { __dropdown.removeMovieClip(); } function _resizeHandler() { var _local2 = owner; _local2.mask._width = width; _local2.mask._height = height; } function _changeHandler(obj) { var _local2 = owner; obj.target = _local2; if (this != owner.text_mc) { _local2.selectedIndex = selectedIndex; if (!_local2.bInKeyDown) { _local2.displayDropdown(false); } } _local2.dispatchEvent(obj); } function _scrollHandler(obj) { var _local2 = owner; obj.target = _local2; _local2.dispatchEvent(obj); } function _itemRollOverHandler(obj) { var _local2 = owner; obj.target = _local2; _local2.dispatchEvent(obj); } function _itemRollOutHandler(obj) { var _local2 = owner; obj.target = _local2; _local2.dispatchEvent(obj); } function modelChanged(eventObj) { super.modelChanged(eventObj); if (0 == __dataProvider.length) { text_mc.setText(""); delete selected; } else if ((__dataProvider.length == ((eventObj.lastItem - eventObj.firstItem) + 1)) && (eventObj.eventName == "addItems")) { selectedIndex = 0; } } static var symbolName = "ComboBox"; static var symbolOwner = mx.controls.ComboBox; static var version = "2.0.0.377"; var clipParameters = {labels:1, data:1, editable:1, rowCount:1, dropdownWidth:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.ComboBox.prototype.clipParameters, mx.controls.ComboBase.prototype.clipParameters); var className = "ComboBox"; var _showingDropdown = false; var __rowCount = 5; var dropdownBorderStyle = undefined; var initializing = true; var __labelField = "label"; var bInKeyDown = false; }
Symbol 334 MovieClip [__Packages.mx.controls.TextInput] Frame 0
class mx.controls.TextInput extends mx.core.UIComponent { var owner, enterListener, label, tabChildren, tabEnabled, focusTextField, _color, _parent, border_mc, createClassObject, dispatchValueChangedEvent, __get__width, __get__height, tfx, tfy, tfw, tfh, enabled, getStyle, bind, updateModel, _getTextFormat; function TextInput () { super(); } function addEventListener(event, handler) { if (event == "enter") { addEnterEvents(); } super.addEventListener(event, handler); } function enterOnKeyDown() { if (Key.getAscii() == 13) { owner.dispatchEvent({type:"enter"}); } } function addEnterEvents() { if (enterListener == undefined) { enterListener = new Object(); enterListener.owner = this; enterListener.onKeyDown = enterOnKeyDown; } } function init(Void) { super.init(); label.styleName = this; tabChildren = true; tabEnabled = false; focusTextField = label; _color = mx.core.UIObject.textColorList; label.onSetFocus = function () { this._parent.onSetFocus(); }; label.onKillFocus = function (n) { this._parent.onKillFocus(n); }; label.drawFocus = function (b) { this._parent.drawFocus(b); }; label.onChanged = onLabelChanged; } function setFocus() { Selection.setFocus(label); } function onLabelChanged(Void) { _parent.dispatchEvent({type:"change"}); _parent.dispatchValueChangedEvent(text); } function createChildren(Void) { super.createChildren(); if (border_mc == undefined) { createClassObject(_global.styles.rectBorderClass, "border_mc", 0, {styleName:this}); } border_mc.swapDepths(label); label.autoSize = "none"; } function get html() { return(getHtml()); } function set html(value) { setHtml(value); //return(html); } function getHtml() { return(label.html); } function setHtml(value) { if (value != label.html) { label.html = value; } } function get text() { return(getText()); } function set text(t) { setText(t); //return(text); } function getText() { if (initializing) { return(initText); } if (label.html == true) { return(label.htmlText); } return(label.text); } function setText(t) { if (initializing) { initText = t; } else { var _local2 = label; if (_local2.html == true) { _local2.htmlText = t; } else { _local2.text = t; } } dispatchValueChangedEvent(t); } function size(Void) { border_mc.setSize(__get__width(), __get__height()); var _local2 = border_mc.__get__borderMetrics(); var _local6 = _local2.left + _local2.right; var _local3 = _local2.top + _local2.bottom; var _local5 = _local2.left; var _local4 = _local2.top; tfx = _local5; tfy = _local4; tfw = __get__width() - _local6; tfh = __get__height() - _local3; label.move(tfx, tfy); label.setSize(tfw, tfh + 1); } function setEnabled(enable) { enabled = enable; label.type = (((__editable == true) || (enabled == false)) ? "input" : "dynamic"); label.selectable = enabled; var _local2 = getStyle((enable ? "color" : "disabledColor")); if (_local2 == undefined) { _local2 = (enable ? 0 : 8947848); } setColor(_local2); } function setColor(col) { label.textColor = col; } function onKillFocus(newFocus) { if (enterListener != undefined) { Key.removeListener(enterListener); } if (bind != undefined) { updateModel(text); } super.onKillFocus(newFocus); } function onSetFocus(oldFocus) { var f = Selection.getFocus(); var o = eval (f); if (o != label) { Selection.setFocus(label); return(undefined); } if (enterListener != undefined) { Key.addListener(enterListener); } super.onSetFocus(oldFocus); } function draw(Void) { var _local2 = label; var _local4 = getText(); if (initializing) { initializing = false; delete initText; } var _local3 = _getTextFormat(); _local2.embedFonts = _local3.embedFonts == true; if (_local3 != undefined) { _local2.setTextFormat(_local3); _local2.setNewTextFormat(_local3); } _local2.multiline = false; _local2.wordWrap = false; if (_local2.html == true) { _local2.setTextFormat(_local3); _local2.htmlText = _local4; } else { _local2.text = _local4; } _local2.type = (((__editable == true) || (enabled == false)) ? "input" : "dynamic"); size(); } function setEditable(s) { __editable = s; label.type = (s ? "input" : "dynamic"); } function get maxChars() { return(label.maxChars); } function set maxChars(w) { label.maxChars = w; //return(maxChars); } function get length() { return(label.length); } function get restrict() { return(label.restrict); } function set restrict(w) { label.restrict = ((w == "") ? null : (w)); //return(restrict); } function get hPosition() { return(label.hscroll); } function set hPosition(w) { label.hscroll = w; //return(hPosition); } function get maxHPosition() { return(label.maxhscroll); } function get editable() { return(__editable); } function set editable(w) { setEditable(w); //return(editable); } function get password() { return(label.password); } function set password(w) { label.password = w; //return(password); } function get tabIndex() { return(label.tabIndex); } function set tabIndex(w) { label.tabIndex = w; //return(tabIndex); } function set _accProps(val) { label._accProps = val; //return(_accProps); } function get _accProps() { return(label._accProps); } static var symbolName = "TextInput"; static var symbolOwner = mx.controls.TextInput; static var version = "2.0.0.377"; var className = "TextInput"; var initializing = true; var clipParameters = {text:1, editable:1, password:1, maxChars:1, restrict:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.TextInput.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters); var _maxWidth = mx.core.UIComponent.kStretch; var __editable = true; var initText = ""; }
Symbol 335 MovieClip [__Packages.mx.controls.NumericStepper] Frame 0
class mx.controls.NumericStepper extends mx.core.UIComponent { var initializing, boundingBox_mc, _visible, tabEnabled, tabChildren, nextButton_mc, __width, prevButton_mc, __height, inputField, StepTrack_mc, focusTextField, createObject, enabled, __set__visible, setSize, createClassObject, __maxChars, dispatchEvent; function NumericStepper () { super(); } function init() { initializing = true; super.init(); boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); _visible = false; tabEnabled = false; tabChildren = true; } function setVisible(x, noEvent) { super.setVisible(x, noEvent); if (initializing) { __visible = x; } } function layoutControl() { nextButton_mc._x = __width - nextButton_mc.__width; nextButton_mc._y = 0; prevButton_mc._x = __width - prevButton_mc.__width; prevButton_mc._y = __height - prevButton_mc.__height; inputField.setSize(__width - nextButton_mc.__width, __height); StepTrack_mc._width = Math.max(nextButton_mc.__width, prevButton_mc.__width); StepTrack_mc._x = __width - StepTrack_mc._width; StepTrack_mc._height = __height - (nextButton_mc._height + prevButton_mc._height); StepTrack_mc._y = nextButton_mc.__height; } function createChildren() { super.createChildren(); addAsset("nextButton_mc", skinIDUpArrow); addAsset("prevButton_mc", skinIDDownArrow); addAsset("inputField", skinIDInput); focusTextField = inputField.label; createObject("StepTrack", "StepTrack_mc", 2); size(); } function draw() { prevButton_mc.enabled = enabled; nextButton_mc.enabled = enabled; inputField.enabled = enabled; size(); initializing = false; __set__visible(__visible); } function size() { var _local2 = calcMinHeight(); var _local3 = calcMinWidth(); if (__height < _local2) { setSize(__width, _local2); } if (__width < _local3) { setSize(_local3, __height); } layoutControl(); } function calcMinHeight() { return(22); } function calcMinWidth() { return(40); } function addAsset(id, skinID) { var _local2 = new Object(); _local2.styleName = this; if (skinID == 10) { _local2.falseUpSkin = upArrowUp; _local2.falseOverSkin = upArrowOver; _local2.falseDownSkin = upArrowDown; _local2.falseDisabledSkin = upArrowDisabled; createClassObject(mx.controls.SimpleButton, id, skinID, _local2); var _local5 = nextButton_mc; _local5.tabEnabled = false; _local5.styleName = this; _local5._x = __width - _local5.__width; _local5._y = 0; _local5.owner = this; _local5.autoRepeat = true; _local5.clickHandler = function () { Selection.setSelection(0, 0); }; _local5.buttonDownHandler = function () { this.owner.buttonPress(this); }; } else if (skinID == 11) { _local2.falseUpSkin = downArrowUp; _local2.falseOverSkin = downArrowOver; _local2.falseDownSkin = downArrowDown; _local2.falseDisabledSkin = downArrowDisabled; createClassObject(mx.controls.SimpleButton, id, skinID, _local2); var _local3 = prevButton_mc; _local3.tabEnabled = false; _local3.styleName = this; _local3._x = __width - _local3.__width; _local3._y = __height - _local3.__height; _local3.owner = this; _local3.autoRepeat = true; _local3.clickHandler = function () { Selection.setSelection(0, 0); }; _local3.buttonDownHandler = function () { this.owner.buttonPress(this); }; } else if (skinID == 9) { createClassObject(mx.controls.TextInput, id, skinID); var _local4 = inputField; _local4.styleName = this; _local4.setSize(__width - nextButton_mc.__width, __height); _local4.restrict = "0-9\\-\\.\\,"; _local4.maxChars = __maxChars; _local4.text = value; _local4.onSetFocus = function () { this._parent.onSetFocus(); }; _local4.onKillFocus = function () { this._parent.onKillFocus(); }; _local4.drawFocus = function (b) { this._parent.drawFocus(b); }; _local4.onKeyDown = function () { this._parent.onFieldKeyDown(); }; } } function setFocus() { Selection.setFocus(inputField); } function onKillFocus() { mx.managers.SystemManager.form.focusManager.defaultPushButtonEnabled = true; super.onKillFocus(); Key.removeListener(inputField); if (Number(inputField.text) != value) { var _local3 = checkValidValue(Number(inputField.text)); inputField.text = _local3; value = (_local3); } } function onSetFocus() { super.onSetFocus(); Key.addListener(inputField); mx.managers.SystemManager.form.focusManager.defaultPushButtonEnabled = false; } function onFieldKeyDown() { var _local2 = value; switch (Key.getCode()) { case 40 : var _local3 = value - stepSize; value = (_local3); if (_local2 != value) { dispatchEvent({type:"change"}); } break; case 38 : _local3 = stepSize + value; value = (_local3); if (_local2 != value) { dispatchEvent({type:"change"}); } break; case 36 : inputField.text = minimum; value = (minimum); break; case 35 : inputField.text = maximum; value = (maximum); break; case 13 : value = (Number(inputField.text)); if (_local2 == value) { break; } dispatchEvent({type:"change"}); } } function get nextValue() { if (checkRange(value + stepSize)) { __nextValue = value + stepSize; return(__nextValue); } } function get previousValue() { if (checkRange(__value - stepSize)) { __previousValue = value - stepSize; return(__previousValue); } } function set maxChars(num) { __maxChars = num; inputField.maxChars = __maxChars; //return(maxChars); } function get maxChars() { return(__maxChars); } function get value() { return(__value); } function set value(v) { var _local2 = checkValidValue(v); if (_local2 == __value) { return; } inputField.text = (__value = _local2); //return(value); } function get minimum() { return(__minimum); } function set minimum(v) { __minimum = v; //return(minimum); } function get maximum() { return(__maximum); } function set maximum(v) { __maximum = v; //return(maximum); } function get stepSize() { return(__stepSize); } function set stepSize(v) { __stepSize = v; //return(stepSize); } function onFocus() { } function buttonPress(button) { var _local2 = value; if (button._name == "nextButton_mc") { value = value + stepSize; } else { value = value - stepSize; } if (_local2 != value) { dispatchEvent({type:"change"}); Selection.setSelection(0, 0); } } function checkRange(v) { return((v >= minimum) and (v <= maximum)); } function checkValidValue(val) { var _local7 = val / stepSize; var _local9 = Math.floor(_local7); var _local2 = stepSize; var _local6 = minimum; var _local5 = maximum; if ((val > _local6) and (val < _local5)) { if ((_local7 - _local9) == 0) { return(val); } var _local8 = Math.floor(val / _local2); var _local4 = _local8 * _local2; if (((((val - _local4) >= (_local2 / 2)) && (_local5 >= (_local4 + _local2))) && (_local6 <= (_local4 - _local2))) || (((val + _local2) == _local5) && (((_local5 - _local4) - _local2) > 1E-14))) { _local4 = _local4 + _local2; } return(_local4); } if (val >= _local5) { return(_local5); } return(_local6); } function onLabelChanged(o) { var _local2 = checkValidValue(Number(o.__get__text())); o.__set__text(_local2); value = (_local2); } function get tabIndex() { return(inputField.tabIndex); } function set tabIndex(w) { inputField.tabIndex = w; //return(tabIndex); } static var symbolName = "NumericStepper"; static var symbolOwner = mx.controls.NumericStepper; static var version = "2.0.0.377"; var className = "NumericStepper"; var upArrowUp = "StepUpArrowUp"; var upArrowDown = "StepUpArrowDown"; var upArrowOver = "StepUpArrowOver"; var upArrowDisabled = "StepUpArrowDisabled"; var downArrowUp = "StepDownArrowUp"; var downArrowDown = "StepDownArrowDown"; var downArrowOver = "StepDownArrowOver"; var downArrowDisabled = "StepDownArrowDisabled"; var skinIDUpArrow = 10; var skinIDDownArrow = 11; var skinIDInput = 9; var __visible = true; var __minimum = 0; var __maximum = 10; var __stepSize = 1; var __value = 0; var __nextValue = 0; var __previousValue = 0; var clipParameters = {minimum:1, maximum:1, stepSize:1, value:1, maxChars:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.NumericStepper.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters); }
Symbol 419 MovieClip [__Packages.mx.controls.CheckBox] Frame 0
class mx.controls.CheckBox extends mx.controls.Button { var _getTextFormat, labelPath, iconName; function CheckBox () { super(); } function onRelease() { super.onRelease(); } function init() { super.init(); } function size() { super.size(); } function get emphasized() { return(undefined); } function calcPreferredHeight() { var _local5 = _getTextFormat(); var _local3 = _local5.getTextExtent2(labelPath.text).height; var _local4 = iconName._height; var _local2 = 0; if ((__labelPlacement == "left") || (__labelPlacement == "right")) { _local2 = Math.max(_local3, _local4); } else { _local2 = _local3 + _local4; } return(Math.max(14, _local2)); } function set toggle(v) { //return(toggle); } function get toggle() { } function set icon(v) { //return(icon); } function get icon() { } static var symbolName = "CheckBox"; static var symbolOwner = mx.controls.CheckBox; static var version = "2.0.1.78"; var className = "CheckBox"; var ignoreClassStyleDeclaration = {Button:1}; var btnOffset = 0; var __toggle = true; var __selected = false; var __labelPlacement = "right"; var __label = "CheckBox"; var falseUpSkin = ""; var falseDownSkin = ""; var falseOverSkin = ""; var falseDisabledSkin = ""; var trueUpSkin = ""; var trueDownSkin = ""; var trueOverSkin = ""; var trueDisabledSkin = ""; var falseUpIcon = "CheckFalseUp"; var falseDownIcon = "CheckFalseDown"; var falseOverIcon = "CheckFalseOver"; var falseDisabledIcon = "CheckFalseDisabled"; var trueUpIcon = "CheckTrueUp"; var trueDownIcon = "CheckTrueDown"; var trueOverIcon = "CheckTrueOver"; var trueDisabledIcon = "CheckTrueDisabled"; var clipParameters = {label:1, labelPlacement:1, selected:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.CheckBox.prototype.clipParameters, mx.controls.Button.prototype.clipParameters); var centerContent = false; var borderW = 0; }
Symbol 529 MovieClip [__Packages.mx.containers.ScrollPane] Frame 0
class mx.containers.ScrollPane extends mx.core.ScrollView { var _total, _loaded, destroyChildAt, createChild, __scrollContent, spContentHolder, hScroller, vScroller, __get__hScrollPolicy, __vScrollPolicy, __get__vScrollPolicy, tabEnabled, keyDown, mask_mc, hPosition, __get__maxHPosition, vPosition, __get__maxVPosition, __hPosition, __vPosition, invalidate; function ScrollPane () { super(); } function getBytesTotal() { return(_total); } function getBytesLoaded() { return(_loaded); } function set contentPath(scrollableContent) { if (!initializing) { if (scrollableContent == undefined) { destroyChildAt(0); } else { if (this[mx.core.View.childNameBase + 0] != undefined) { destroyChildAt(0); } createChild(scrollableContent, "spContentHolder"); } } __scrollContent = scrollableContent; //return(contentPath); } function get contentPath() { return(__scrollContent); } function get content() { return(spContentHolder); } function setHPosition(position) { if ((position <= hScroller.maxPos) && (position >= hScroller.minPos)) { super.setHPosition(position); spContentHolder._x = -position; } } function setVPosition(position) { if ((position <= vScroller.maxPos) && (position >= vScroller.minPos)) { super.setVPosition(position); spContentHolder._y = -position; } } function get vLineScrollSize() { return(__vLineScrollSize); } function set vLineScrollSize(vLineSize) { __vLineScrollSize = vLineSize; vScroller.__set__lineScrollSize(vLineSize); //return(vLineScrollSize); } function get hLineScrollSize() { return(__hLineScrollSize); } function set hLineScrollSize(hLineSize) { __hLineScrollSize = hLineSize; hScroller.__set__lineScrollSize(hLineSize); //return(hLineScrollSize); } function get vPageScrollSize() { return(__vPageScrollSize); } function set vPageScrollSize(vPageSize) { __vPageScrollSize = vPageSize; vScroller.__set__pageScrollSize(vPageSize); //return(vPageScrollSize); } function get hPageScrollSize() { return(__hPageScrollSize); } function set hPageScrollSize(hPageSize) { __hPageScrollSize = hPageSize; hScroller.__set__pageScrollSize(hPageSize); //return(hPageScrollSize); } function set hScrollPolicy(policy) { __hScrollPolicy = policy.toLowerCase(); setScrollProperties(spContentHolder._width, 1, spContentHolder._height, 1); //return(__get__hScrollPolicy()); } function set vScrollPolicy(policy) { __vScrollPolicy = policy.toLowerCase(); setScrollProperties(spContentHolder._width, 1, spContentHolder._height, 1); //return(__get__vScrollPolicy()); } function get scrollDrag() { return(__scrollDrag); } function set scrollDrag(s) { __scrollDrag = s; if (__scrollDrag) { spContentHolder.useHandCursor = true; spContentHolder.onPress = function () { this._parent.startDragLoop(); }; spContentHolder.tabEnabled = false; spContentHolder.onRelease = (spContentHolder.onReleaseOutside = function () { delete this.onMouseMove; }); __scrollDrag = true; } else { delete spContentHolder.onPress; spContentHolder.tabEnabled = false; spContentHolder.tabChildren = true; spContentHolder.useHandCursor = false; __scrollDrag = false; } //return(scrollDrag); } function init(Void) { super.init(); tabEnabled = true; keyDown = _onKeyDown; } function createChildren(Void) { super.createChildren(); mask_mc._visible = false; initializing = false; if ((__scrollContent != undefined) && (__scrollContent != "")) { contentPath = (__scrollContent); } } function size(Void) { super.size(); setScrollProperties(spContentHolder._width, 1, spContentHolder._height, 1); hPosition = Math.min(hPosition, __get__maxHPosition()); vPosition = Math.min(vPosition, __get__maxVPosition()); } function setScrollProperties(columnCount, columnWidth, rowCount, rowHeight) { super.setScrollProperties(columnCount, columnWidth, rowCount, rowHeight); hScroller.__set__lineScrollSize(__hLineScrollSize); hScroller.__set__pageScrollSize(__hPageScrollSize); vScroller.__set__lineScrollSize(__vLineScrollSize); vScroller.__set__pageScrollSize(__vPageScrollSize); } function onScroll(scrollEvent) { super.onScroll(scrollEvent); spContentHolder._x = -__hPosition; spContentHolder._y = -__vPosition; } function childLoaded(obj) { super.childLoaded(obj); onComplete(); } function onComplete(Void) { setScrollProperties(spContentHolder._width, 1, spContentHolder._height, 1); hPosition = 0; vPosition = 0; scrollDrag = (__scrollDrag); invalidate(); } function startDragLoop(Void) { spContentHolder.lastX = spContentHolder._xmouse; spContentHolder.lastY = spContentHolder._ymouse; spContentHolder.onMouseMove = function () { var _local5 = this.lastX - this._xmouse; var _local4 = this.lastY - this._ymouse; _local5 = _local5 + this._parent.hPosition; _local4 = _local4 + this._parent.vPosition; var _local3 = this._parent.getViewMetrics(); var _local7 = (this._parent.__height - _local3.top) - _local3.bottom; var _local6 = (this._parent.__width - _local3.left) - _local3.right; this._parent.__hPosition = Math.max(0, Math.min(_local5, this._width - _local6)); this._parent.__vPosition = Math.max(0, Math.min(_local4, this._height - _local7)); this._parent.hScroller.scrollPosition = this._parent.__hPosition; this._x = -this._parent.hPosition; this._parent.vScroller.scrollPosition = this._parent.__vPosition; this._y = -this._parent.vPosition; super.dispatchEvent({type:"scroll"}); }; } function dispatchEvent(o) { o.target = this; _total = o.total; _loaded = o.current; super.dispatchEvent(o); } function refreshPane(Void) { contentPath = (__scrollContent); } function _onKeyDown(e) { if (e.code == 40) { vPosition = vPosition + vLineScrollSize; } else if (e.code == 38) { vPosition = vPosition - vLineScrollSize; } else if (e.code == 37) { hPosition = hPosition - hLineScrollSize; } else if (e.code == 39) { hPosition = hPosition + hLineScrollSize; } else if (e.code == 33) { vPosition = vPosition - vPageScrollSize; } else if (e.code == 34) { vPosition = vPosition + vPageScrollSize; } else if (e.code == 36) { vPosition = vScroller.minPos; } else if (e.code == 35) { vPosition = vScroller.maxPos; } } static var symbolName = "ScrollPane"; static var symbolOwner = mx.containers.ScrollPane; var className = "ScrollPane"; static var version = "2.0.1.78"; var __hScrollPolicy = "auto"; var __scrollDrag = false; var __vLineScrollSize = 5; var __hLineScrollSize = 5; var __vPageScrollSize = 20; var __hPageScrollSize = 20; var clipParameters = {contentPath:1, scrollDrag:1, hScrollPolicy:1, vScrollPolicy:1, vLineScrollSize:1, hLineScrollSize:1, vPageScrollSize:1, hPageScrollSize:1}; static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.containers.ScrollPane.prototype.clipParameters, mx.core.ScrollView.prototype.clipParameters); var initializing = true; }
Symbol 555 MovieClip [__Packages.mx.controls.MenuBar] Frame 0
class mx.controls.MenuBar extends mx.core.UIComponent { var __menus, __menuBarItems, __labels, boundingBox_mc, invUpdateDisplay, invUpdateSize, openMenuIndex, getFocusManager, supposedToLoseFocus, background_mc, createEmptyMovieClip, createObject, setMask, __menuDataProvider, labelFunction, enabled, __height, invalidate, enableByPass, redraw, width, mask_mc, height, __width, isDown, pressFocus, releaseFocus; function MenuBar () { super(); } function init(Void) { super.init(); __menus = new Object(); __menuBarItems = new Array(); var _local3 = 0; while (_local3 < __labels.length) { addMenu(__labels[_local3]); _local3++; } boundingBox_mc._visible = false; boundingBox_mc._width = (boundingBox_mc._height = 0); } function draw(Void) { super.draw(); if (invUpdateDisplay) { updateDisplay(invUpdateSize); } } function menuHide(event) { if (event.menu.menuBarIndex == openMenuIndex) { __menuBarItems[openMenuIndex].setLabelBorder("none"); delete openMenuIndex; } } function onSetFocus() { super.onSetFocus(); getFocusManager().defaultPushButtonEnabled = false; } function onKillFocus() { super.onKillFocus(); getFocusManager().defaultPushButtonEnabled = true; if (supposedToLoseFocus == undefined) { getMenuAt(openMenuIndex).hide(); } delete supposedToLoseFocus; } function createChildren(Void) { super.createChildren(); if (background_mc == undefined) { createEmptyMovieClip("background_mc", 0); background_mc.createObject(menuBarBackLeftName, "bckLeft", 1); background_mc.createObject(menuBarBackRightName, "bckRight", 2); background_mc.createObject(menuBarBackMiddleName, "bckCenter", 3); } if (!_global.isLivePreview) { var _local4 = createObject("BoundingBox", "mask_mc", 10); setMask(_local4); } updateBackgroundDisplay(); } function size(Void) { super.size(); updateDisplay(true); updateBackgroundDisplay(); } function addMenu(arg1, arg2) { var _local2 = __menuDataProvider.childNodes.length; if (_local2 == undefined) { _local2 = 0; } return(addMenuAt(_local2, arg1, arg2)); } function addMenuAt(index, arg1, arg2) { if (__menuDataProvider == undefined) { __menuDataProvider = new XML(); __menuDataProvider.addEventListener("modelChanged", this); } var _local8; var _local3; var _local4 = arg1; if (arg2 != undefined) { if (arg2 instanceof XML) { _local3 = __menuDataProvider.addMenuItemAt(index, arg1); var _local2 = arg2.childNodes; while (_local2.length != 0) { _local3.addMenuItem(_local2[0]); } _local4 = undefined; } else { arg2.attributes.label = arg1; _local4 = arg2; } } if (_local4 != undefined) { _local3 = __menuDataProvider.addMenuItemAt(index, _local4); } return(insertMenuBarItem(index, _local3)); } function insertMenuBarItem(index, mdp) { var _local3 = mx.controls.Menu.createMenu(_root, mdp, {styleName:this, menuBarIndex:index}); __menus[mdp.getID()] = _local3; _local3.__menuBar = this; _local3.addEventListener("menuHide", this); _local3.border_mc.borderStyle = "menuBorder"; _local3.labelField = labelField; _local3.labelFunction = labelFunction; var _local5 = labelFunction(mdp); if (_local5 == undefined) { _local5 = mdp.attributes[labelField]; } var _local4 = createObject("MenuBarItem", "mbItem" + (topItemDepth++), topItemDepth, {owner:this, __initText:_local5, styleName:this, _visible:false}); _local4.setEnabled(enabled); _local4.setSize(_local4.getPreferredWidth(), __height); _local3.__activator = _local4; __menuBarItems.splice(index, 0, _local4); invUpdateDisplay = true; invalidate(); return(_local3); } function getMenuAt(index) { return(__menus[__menuDataProvider.childNodes[index].getID()]); } function removeMenuAt(index) { var _local2 = __menuDataProvider.removeMenuItemAt(index); var _local3 = __menuBarItems[index]; __menuBarItems.splice(index, 1); _local3.removeMovieClip(); var _local5 = __menus[_local2.getID()]; delete __menus[_local2.getID()]; invUpdateDisplay = true; invalidate(); return(_local5); } function setEnabled(b) { super.setEnabled(b); var _local4 = __menuBarItems.length; enableByPass = true; var _local3 = 0; while (_local3 < _local4) { __menuBarItems[_local3].setEnabled(b); _local3++; } delete enableByPass; } function setMenuEnabledAt(index, enable) { if ((!enabled) && (enableByPass == undefined)) { return(undefined); } __menuBarItems[index].setEnabled(enable); } function getMenuEnabledAt(index) { return(__menuBarItems[index].enabled); } function setDataProvider(dp) { removeAll(); __menuDataProvider = dp; dp.isTreeRoot = true; var _local3 = dp.childNodes; var _local4 = _local3.length; var _local2 = 0; while (_local2 < _local4) { insertMenuBarItem(_local2, _local3[_local2]); _local2++; } } function get dataProvider() { return(__menuDataProvider); } function set dataProvider(dp) { setDataProvider(dp); //return(dataProvider); } function get labels() { return(__labels); } function set labels(lbls) { __labels = lbls; var _local4 = __menuBarItems.length; var _local3 = __labels.length; var _local2 = 0; while (_local2 < _local4) { removeMenuAt(0); _local2++; } _local2 = 0; while (_local2 < _local3) { addMenu(__labels[_local2]); _local2++; } redraw(true); //return(labels); } function invalidateStyle(propName) { super.invalidateStyle(propName); if ((((propName == "fontFamily") || (propName == "fontSize")) || (propName == "fontWeight")) || (propName == "styleName")) { invUpdateDisplay = true; invUpdateSize = true; invalidate(); } var _local3 = 0; while (_local3 < __menuBarItems.length) { getMenuAt(_local3).invalidateStyle(propName); _local3++; } } function changeColorStyleInChildren(sheet, styleProp, newValue) { super.changeColorStyleInChildren(sheet, styleProp, newValue); var _local3 = 0; while (_local3 < __menuBarItems.length) { getMenuAt(_local3).changeColorStyleInChildren(sheet, styleProp, newValue); _local3++; } } function notifyStyleChangeInChildren(sheet, styleProp, newValue) { super.notifyStyleChangeInChildren(sheet, styleProp, newValue); var _local3 = 0; while (_local3 < __menuBarItems.length) { getMenuAt(_local3).notifyStyleChangeInChildren(sheet, styleProp, newValue); _local3++; } } function updateDisplay(resize) { delete invUpdateDisplay; delete invUpdateSize; var _local4 = __marginWidth; var _local5 = 0; var _local6 = __menuBarItems.length; var _local3 = 0; while (_local3 < _local6) { var _local2 = __menuBarItems[_local3]; _local2._visible = true; _local2.menuBarIndex = _local3; getMenuAt(_local3).menuBarIndex = _local3; if (resize) { _local2.setSize(_local2.getPreferredWidth(), __height); } _local4 = (_local2._x = _local4 + _local5); _local5 = _local2.__width; _local3++; } } function updateBackgroundDisplay() { mask_mc._width = width; mask_mc._height = height; var _local2 = background_mc; _local2._height = __height; _local2.bckLeft._x = 0; var _local3 = _local2.bckLeft._width; _local2.bckCenter._width = __width - (_local3 + _local2.bckRight._width); _local2.bckCenter._x = _local3; _local2.bckRight._x = _local3 + _local2.bckCenter._width; } function showMenu(index) { openMenuIndex = index; var _local2 = __menuBarItems[index]; var _local3 = {x:0, y:0}; _local2.setLabelBorder("falsedown"); _local2.localToGlobal(_local3); var _local4 = getMenuAt(index); _local4.focusManager.lastFocus = undefined; _local4.show(_local3.x, _local3.y + (_local2._height + 1)); } function removeMenuBarItemAt(index) { var _local2 = __menuBarItems[index]; var _local3 = _local2.__menu; if (_local2 != undefined) { _local3.removeMovieClip(); _local2.removeMovieClip(); __menuBarItems.splice(index, 1); updateDisplay(false); } } function removeAll() { while (__menuBarItems.length > 0) { var _local2 = __menuBarItems[0]; var _local3 = _local2.__menu; _local3.removeMovieClip(); _local2.removeMovieClip(); __menuBarItems.splice(0, 1); } updateDisplay(false); } function onItemRollOver(index) { var _local3 = __menuBarItems[index]; if (openMenuIndex != undefined) { var _local2 = openMenuIndex; if (_local2 != index) { isDown = false; var _local4 = __menuBarItems[_local2]; onItemRelease(_local2); _local4.setLabelBorder("none"); showMenu(index); isDown = true; } } else { _local3.setLabelBorder("falserollover"); isDown = false; } } function onItemPress(index) { var _local2 = __menuBarItems[index]; if (!isDown) { showMenu(index); isDown = true; } else { _local2.setLabelBorder("falsedown"); isDown = false; } pressFocus(); } function onItemRelease(index) { var _local2 = __menuBarItems[index]; if (!isDown) { getMenuAt(index).hide(); _local2.setLabelBorder("falserollover"); } releaseFocus(); } function onItemRollOut(index) { if (openMenuIndex != index) { __menuBarItems[index].setLabelBorder("none"); } } function onItemDragOver(index) { var _local5 = __menuBarItems[index]; if (openMenuIndex != undefined) { var _local2 = openMenuIndex; if (_local2 != index) { isDown = false; var _local3 = __menuBarItems[_local2]; onItemRelease(_local2); _local3.setLabelBorder("none"); } } else { isDown = true; } onItemPress(index); } function onItemDragOut(index) { onItemRollOut(index); } function keyDown(e) { var _local3 = __menuBarItems.length; var _local8; if ((e.code == 39) || (e.code == 37)) { if (openMenuIndex == undefined) { openMenuIndex = -1; } var _local2 = openMenuIndex; var _local5 = false; var _local4 = 0; while ((!_local5) && (_local4 < _local3)) { _local4++; _local2 = ((e.code == 39) ? (_local2 + 1) : (_local2 - 1)); if (_local2 >= _local3) { _local2 = 0; } else if (_local2 < 0) { _local2 = _local3 - 1; } if (__menuBarItems[_local2].enabled) { _local5 = true; } } if (_local4 < _local3) { onItemRollOver(_local2); } } if (Key.isDown(40)) { if (openMenuIndex != undefined) { var _local7 = getMenuAt(openMenuIndex); _local7.focusEnabled = true; _local7.moveSelBy(1); supposedToLoseFocus = true; Selection.setFocus(_local7); } } if (Key.isDown(13) || (Key.isDown(27))) { getMenuAt(openMenuIndex).hide(); } } static var symbolName = "MenuBar"; static var symbolOwner = mx.controls.MenuBar; static var version = "2.0.0.360"; var className = "MenuBar"; static var _s_MenuIndex = 0; var topItemDepth = 200; var menuBarBackLeftName = "MenuBarBackLeft"; var menuBarBackRightName = "MenuBarBackRight"; var menuBarBackMiddleName = "MenuBarBackMiddle"; var __backgroundWidth = 550; var __marginWidth = 10; var tabChildren = false; var labelField = "label"; var clipParameters = {enabled:1, visible:1, labels:1, minWidth:1, minHeight:1}; }
Symbol 566 MovieClip [__Packages.mx.skins.halo.ActivatorSkin] Frame 0
class mx.skins.halo.ActivatorSkin extends mx.skins.RectBorder { var __get__width, __get__height, getStyle, clear, drawRoundRect, __get__x, __get__y; function ActivatorSkin () { super(); } function init() { super.init(); } function size() { drawHaloRect(__get__width(), __get__height()); } function drawHaloRect(w, h) { var _local5 = getStyle("borderStyle"); var _local4 = getStyle("themeColor"); clear(); switch (_local5) { case "none" : drawRoundRect(__get__x(), __get__y(), w, h, 0, 16777215, 0); break; case "falsedown" : drawRoundRect(__get__x(), __get__y(), w, h, 0, 9542041, 100); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 0, [3355443, 16579836], 100, -90, "radial"); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 0, _local4, 50); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 0, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 0, _local4, 20); break; case "falserollover" : drawRoundRect(__get__x(), __get__y(), w, h, 0, 9542041, 100); drawRoundRect(__get__x(), __get__y(), w, h, 0, _local4, 50); drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 0, [3355443, 16777215], 100, 0, "radial"); drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 0, 16777215, 100); drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 0, 16316664, 100); } } static function classConstruct() { mx.core.ext.UIObjectExtensions.Extensions(); _global.skinRegistry.ActivatorSkin = true; return(true); } static var symbolName = "ActivatorSkin"; static var symbolOwner = mx.skins.halo.ActivatorSkin; var className = "ActivatorSkin"; var backgroundColorName = "buttonColor"; static var classConstructed = classConstruct(); static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions; }
Symbol 567 MovieClip [__Packages.mx.controls.menuclasses.MenuBarItem] Frame 0
class mx.controls.menuclasses.MenuBarItem extends mx.core.UIComponent { var createLabel, cell, __initText, createClassObject, owner, useHandCursor, trackAsMenu, border_mc, __width, __height, enabled, menuBarIndex; function MenuBarItem () { super(); } function createChildren(Void) { super.createChildren(); createLabel("cell", 20); cell.setValue(__initText); createClassObject(mx.skins.halo.ActivatorSkin, "border_mc", 0, {styleName:owner, borderStyle:"none"}); useHandCursor = false; trackAsMenu = true; } function size(Void) { super.size(); border_mc.setSize(__width, __height); cell.setSize(__width - __cellWidthBuffer, cell.getPreferredHeight()); cell._x = __cellWidthBuffer / 2; cell._y = (__height - cell._height) / 2; } function getPreferredWidth(Void) { return(cell.getPreferredWidth() + __cellWidthBuffer); } function setLabelBorder(style) { border_mc.borderStyle = style; border_mc.draw(); } function setEnabled(state) { enabled = (cell.enabled = state); if (!enabled) { setLabelBorder("none"); } } function onPress(Void) { owner.onItemPress(menuBarIndex); } function onRelease(Void) { owner.onItemRelease(menuBarIndex); } function onRollOver(Void) { owner.onItemRollOver(menuBarIndex); } function onRollOut(Void) { owner.onItemRollOut(menuBarIndex); } function onDragOver(Void) { owner.onItemDragOver(menuBarIndex); } function onDragOut(Void) { owner.onItemDragOut(menuBarIndex); } var __cellHeightBuffer = 3; var __cellWidthBuffer = 20; var __isDown = false; var __isClosing = false; }
Symbol 620 MovieClip Frame 1
stop();
Symbol 620 MovieClip Frame 9
stop();
Symbol 675 MovieClip Frame 1
stop();
Symbol 675 MovieClip Frame 10
stop();
Symbol 675 MovieClip Frame 20
stop();
Symbol 675 MovieClip Frame 30
stop();

Library Items

Symbol 1 Sound [static]
Symbol 2 Sound [sc-zapah]
Symbol 3 Sound [sc-youareking]
Symbol 4 Sound [sc-wtfisgoingon]
Symbol 5 Sound [sc-whynumberone]
Symbol 6 Sound [sc-whydoyoudothis]
Symbol 7 Sound [sc-whydothis]
Symbol 8 Sound [sc-why]
Symbol 9 Sound [sc-whathaveidone]
Symbol 10 Sound [sc-whatareyoudoing]
Symbol 11 Sound [sc-upsidedown]
Symbol 12 Sound [sc-umthanks]
Symbol 13 Sound [sc-treatnice]
Symbol 14 Sound [sc-suxors]
Symbol 15 Sound [sc-socruel]
Symbol 16 Sound [sc-sickoflife]
Symbol 17 Sound [sc-setasidediffs]
Symbol 18 Sound [sc-sadness]
Symbol 19 Sound [sc-rofflecopter]
Symbol 20 Sound [sc-predicament]
Symbol 21 Sound [sc-pimping]
Symbol 22 Sound [sc-outtahere]
Symbol 23 Sound [sc-onfire]
Symbol 24 Sound [sc-notright]
Symbol 25 Sound [sc-notfunny]
Symbol 26 Sound [sc-noeyes]
Symbol 27 Sound [sc-noexplosives]
Symbol 28 Sound [sc-noears]
Symbol 29 Sound [sc-loveyou]
Symbol 30 Sound [sc-kingofportal]
Symbol 31 Sound [sc-imstrawberry]
Symbol 32 Sound [sc-iamsexy]
Symbol 33 Sound [sc-hateexistance]
Symbol 34 Sound [sc-grenade]
Symbol 35 Sound [sc-goodjob]
Symbol 36 Sound [sc-getwater]
Symbol 37 Sound [sc-geth2o]
Symbol 38 Sound [sc-friends]
Symbol 39 Sound [sc-flipmeover]
Symbol 40 Sound [sc-flaming]
Symbol 41 Sound [sc-feelgood]
Symbol 42 Sound [sc-enjoyfriendship]
Symbol 43 Sound [sc-dontzap]
Symbol 44 Sound [sc-dontfeelgood]
Symbol 45 Sound [sc-deservethis]
Symbol 46 Sound [sc-clockroxors]
Symbol 47 Sound [sc-careful]
Symbol 48 Sound [sc-cantdo]
Symbol 49 Sound [sc-bothkings]
Symbol 50 Sound [sc-blam]
Symbol 51 Sound [sc-bbbb]
Symbol 52 Sound [radioMusic]Used by:Timeline
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClip [BoundingBox]Uses:58Used by:77 81 85 144 145 146 147 165 195 212 222 223 242 252 301 321 333 352 435 530 565
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClip [BrdrShdw]Uses:60Used by:64 69 70
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClip [BrdrFace]Uses:62Used by:64 69 70
Symbol 64 MovieClip [SimpleButtonDown]Uses:61 63Used by:81
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClip [BrdrBlk]Uses:65Used by:69 70
Symbol 67 GraphicUsed by:68 148
Symbol 68 MovieClip [BrdrHilght]Uses:67Used by:69 70
Symbol 69 MovieClip [SimpleButtonIn]Uses:66 68 61 63Used by:81
Symbol 70 MovieClip [SimpleButtonUp]Uses:66 63 61 68Used by:81
Symbol 71 MovieClip [Defaults]Used by:73
Symbol 72 MovieClip [UIObjectExtensions]Used by:73
Symbol 73 MovieClip [UIObject]Uses:71 72Used by:78 80 82 304
Symbol 74 GraphicUsed by:76
Symbol 75 GraphicUsed by:76
Symbol 76 ButtonUses:74 75Used by:78
Symbol 77 MovieClip [FocusRect]Uses:59Used by:78
Symbol 78 MovieClip [FocusManager]Uses:76 77 73Used by:80
Symbol 79 MovieClip [UIComponentExtensions]Used by:80
Symbol 80 MovieClip [UIComponent]Uses:73 78 79Used by:81 146 222 304 320 321 352
Symbol 81 MovieClip [SimpleButton]Uses:59 64 69 70 80Used by:85 144 145 165 321 352
Symbol 82 MovieClip [Border]Uses:73Used by:83 85
Symbol 83 MovieClip [RectBorder]Uses:82Used by:85 146 320
Symbol 84 MovieClip [ButtonSkin]Used by:85
Symbol 85 MovieClip [Button]Uses:59 81 82 83 84Used by:144 145 212 252 305 307 308 435 437 507
Symbol 86 MovieClip [CustomBorder]Used by:144 145
Symbol 87 GraphicUsed by:89 125 126 127 130 131 136 338 341 342 343 345 346 347 348
Symbol 88 GraphicUsed by:89 125 126 130 131 136
Symbol 89 MovieClip [ScrollTrack]Uses:87 88Used by:96 101 102 103 137 138 139 140 141 142
Symbol 90 GraphicUsed by:96 101 102 103 137 138 139 140
Symbol 91 GraphicUsed by:96 101 102 103 137 138 139 140
Symbol 92 GraphicUsed by:96 101 102 103 137 138 139 140
Symbol 93 GraphicUsed by:96 101 102 103 137 138 139 140
Symbol 94 GraphicUsed by:96 101 102 103 137 138 139 140 326 330 331 338 341 342 343 345 346 347 348
Symbol 95 GraphicUsed by:96 101 102 103
Symbol 96 MovieClip [ScrollDownArrowDisabled]Uses:89 90 91 92 93 94 95Used by:143
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClip [ScrollThemeColor1]Uses:97Used by:101 102 138 139
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClip [ScrollThemeColor2]Uses:99Used by:101 138
Symbol 101 MovieClip [ScrollDownArrowDown]Uses:89 90 98 91 92 93 94 100 95Used by:143
Symbol 102 MovieClip [ScrollDownArrowOver]Uses:89 90 98 91 92 93 94 95Used by:143
Symbol 103 MovieClip [ScrollDownArrowUp]Uses:89 90 91 92 93 94 95Used by:143
Symbol 104 GraphicUsed by:109 114 115 116 132 133 134 135
Symbol 105 GraphicUsed by:109 114 115 116 132 133 134 135
Symbol 106 GraphicUsed by:109 114 115 116 132 133 134 135
Symbol 107 GraphicUsed by:109 114 115 116 132 133 134 135
Symbol 108 GraphicUsed by:109 114 115 116 132 133 134 135
Symbol 109 MovieClip [ScrollThumbBottomDisabled]Uses:104 105 106 107 108Used by:143
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClip [ThumbThemeColor1]Uses:110Used by:114 115 133 134
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClip [ThumbThemeColor3]Uses:112Used by:114 133
Symbol 114 MovieClip [ScrollThumbBottomDown]Uses:104 111 105 106 107 113 108Used by:143
Symbol 115 MovieClip [ScrollThumbBottomOver]Uses:104 111 105 106 107 108Used by:143
Symbol 116 MovieClip [ScrollThumbBottomUp]Uses:104 105 106 107 108Used by:143
Symbol 117 GraphicUsed by:118 121 122 123
Symbol 118 MovieClip [ScrollThumbGripDisabled]Uses:117Used by:143
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClip [ThumbThemeColor2]Uses:119Used by:121 122 125 126 130
Symbol 121 MovieClip [ScrollThumbGripDown]Uses:120 117Used by:143
Symbol 122 MovieClip [ScrollThumbGripOver]Uses:120 117Used by:143
Symbol 123 MovieClip [ScrollThumbGripUp]Uses:117Used by:143
Symbol 124 GraphicUsed by:125 126 130 131
Symbol 125 MovieClip [ScrollThumbMiddleDisabled]Uses:87 124 120 88Used by:143
Symbol 126 MovieClip [ScrollThumbMiddleDown]Uses:87 120 124 88Used by:143
Symbol 127 MovieClipUses:87Used by:130
Symbol 128 GraphicUsed by:129 137 138 139 140
Symbol 129 MovieClipUses:128Used by:130
Symbol 130 MovieClip [ScrollThumbMiddleOver]Uses:87 120 124 127 129 88Used by:143
Symbol 131 MovieClip [ScrollThumbMiddleUp]Uses:87 124 88Used by:143
Symbol 132 MovieClip [ScrollThumbTopDisabled]Uses:104 105 106 107 108Used by:143
Symbol 133 MovieClip [ScrollThumbTopDown]Uses:104 111 105 106 107 113 108Used by:143
Symbol 134 MovieClip [ScrollThumbTopOver]Uses:104 111 105 106 107 108Used by:143
Symbol 135 MovieClip [ScrollThumbTopUp]Uses:104 105 106 107 108Used by:143
Symbol 136 MovieClip [ScrollTrackDisabled]Uses:87 88Used by:143
Symbol 137 MovieClip [ScrollUpArrowDisabled]Uses:89 90 91 92 93 94 128Used by:143
Symbol 138 MovieClip [ScrollUpArrowDown]Uses:89 90 98 91 92 93 94 100 128Used by:143
Symbol 139 MovieClip [ScrollUpArrowOver]Uses:89 90 98 91 92 128 93 94Used by:143
Symbol 140 MovieClip [ScrollUpArrowUp]Uses:89 90 91 92 93 94 128Used by:143
Symbol 141 MovieClip [BtnDownArrow]Uses:89Used by:143
Symbol 142 MovieClip [BtnUpArrow]Uses:89Used by:143
Symbol 143 MovieClip [ScrollBarAssets]Uses:96 101 102 103 109 114 115 116 118 121 122 123 125 126 130 131 132 133 134 135 136 137 138 139 140 141 142Used by:144 145
Symbol 144 MovieClip [HScrollBar]Uses:59 85 81 86 143Used by:147 195
Symbol 145 MovieClip [VScrollBar]Uses:59 85 81 86 143Used by:147 195
Symbol 146 MovieClip [View]Uses:59 80 83Used by:147
Symbol 147 MovieClip [ScrollView]Uses:59 144 145 146Used by:165 223 250 530
Symbol 148 MovieClip [Modal]Uses:67Used by:164
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClip [TitleLeft]Uses:149Used by:155
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClip [TitleMiddle]Uses:151Used by:155
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClip [TitleRight]Uses:153Used by:155
Symbol 155 MovieClip [TitleBackground]Uses:150 152 154Used by:164
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClip [CloseButtonDisabled]Uses:156Used by:164
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClip [CloseButtonDown]Uses:158Used by:164
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClip [CloseButtonOver]Uses:160Used by:164
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClip [CloseButtonUp]Uses:162Used by:164
Symbol 164 MovieClip [WindowAssets]Uses:148 155 157 159 161 163Used by:165
Symbol 165 MovieClip [Window]Uses:59 147 81 164Used by:252
Symbol 195 MovieClip [UIScrollBar]Uses:59 145 144
Symbol 197 GraphicUsed by:199 206 207 208 209 210
Symbol 198 GraphicUsed by:199 206 207 208 209 210
Symbol 199 MovieClip [RadioFalseDisabled]Uses:197 198Used by:211
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClip [RadioThemeColor1]Uses:200Used by:206 207 210
Symbol 202 GraphicUsed by:206 207 210
Symbol 203 GraphicUsed by:204 205
Symbol 204 MovieClipUses:203Used by:206 208
Symbol 205 MovieClip [RadioThemeColor2]Uses:203Used by:206 207
Symbol 206 MovieClip [RadioFalseDown]Uses:197 201 198 202 204 205Used by:211
Symbol 207 MovieClip [RadioFalseOver]Uses:197 201 198 202 205Used by:211
Symbol 208 MovieClip [RadioFalseUp]Uses:197 198 204Used by:211
Symbol 209 MovieClip [RadioTrueDisabled]Uses:197 198Used by:211
Symbol 210 MovieClip [RadioTrueUp]Uses:197 201 198 202Used by:211
Symbol 211 MovieClip [RadioButtonAssets]Uses:199 206 207 208 209 210Used by:212
Symbol 212 MovieClip [RadioButton]Uses:59 85 211
Symbol 220 MovieClip [DataProvider]Used by:223
Symbol 221 MovieClip [DataSelector]Used by:223
Symbol 222 MovieClip [SelectableRow]Uses:80 59Used by:223
Symbol 223 MovieClip [ScrollSelectList]Uses:59 220 221 222 147Used by:242 301
Symbol 224 GraphicUsed by:225
Symbol 225 MovieClip [MenuBranchDisabled]Uses:224Used by:238
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClip [MenuBranchEnabled]Uses:226Used by:238
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClip [MenuCheckDisabled]Uses:228Used by:238
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClip [MenuCheckEnabled]Uses:230Used by:238
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClip [MenuRadioDisabled]Uses:232Used by:238
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClip [MenuRadioEnabled]Uses:234Used by:238
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClip [MenuSeparator]Uses:236Used by:238
Symbol 238 MovieClip [MenuAssets]Uses:225 227 229 231 233 235 237Used by:239
Symbol 239 MovieClip [MenuRow]Uses:238Used by:242
Symbol 240 MovieClip [TreeDataProvider]Used by:241
Symbol 241 MovieClip [MenuDataProvider]Uses:240Used by:242
Symbol 242 MovieClip [Menu]Uses:59 223 239 241Used by:565
Symbol 248 FontUsed by:249 303 319
Symbol 249 EditableTextUses:248Used by:250
Symbol 250 MovieClip [TextArea]Uses:249 147Used by:252 305 307 308 437
Symbol 251 MovieClip [AlertAssets]Used by:252
Symbol 252 MovieClip [Alert]Uses:59 165 250 85 251
Symbol 255 GraphicUsed by:256
Symbol 256 MovieClip [fireGlowClip]Uses:255
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClip [gradLow]Uses:257
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClip [grad]Uses:259
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClip [circ]Uses:261
Symbol 263 FontUsed by:264
Symbol 264 EditableTextUses:263Used by:265
Symbol 265 MovieClip [stat]Uses:264
Symbol 266 GraphicUsed by:305
Symbol 267 GraphicUsed by:305
Symbol 268 GraphicUsed by:299 483 490 498 501
Symbol 269 GraphicUsed by:299 483 490 498 501
Symbol 270 GraphicUsed by:299
Symbol 271 GraphicUsed by:299
Symbol 272 GraphicUsed by:299
Symbol 273 GraphicUsed by:278
Symbol 274 GraphicUsed by:278
Symbol 275 GraphicUsed by:276
Symbol 276 MovieClipUses:275Used by:278
Symbol 277 GraphicUsed by:278
Symbol 278 MovieClipUses:273 274 276 277Used by:299
Symbol 279 GraphicUsed by:284
Symbol 280 ShapeTweeningUsed by:283
Symbol 281 ShapeTweeningUsed by:283
Symbol 282 GraphicUsed by:283
Symbol 283 MovieClipUses:280 281 282Used by:284 291
Symbol 284 MovieClipUses:279 283Used by:299
Symbol 285 GraphicUsed by:286
Symbol 286 MovieClipUses:285Used by:299
Symbol 287 GraphicUsed by:299
Symbol 288 GraphicUsed by:299
Symbol 289 GraphicUsed by:299
Symbol 290 GraphicUsed by:299
Symbol 291 MovieClipUses:283Used by:299
Symbol 292 GraphicUsed by:299
Symbol 293 GraphicUsed by:299
Symbol 294 GraphicUsed by:299
Symbol 295 BitmapUsed by:296
Symbol 296 GraphicUses:295Used by:299
Symbol 297 BitmapUsed by:298
Symbol 298 GraphicUses:297Used by:299
Symbol 299 MovieClipUses:268 269 270 271 272 278 284 286 287 288 289 290 291 292 293 294 296 298Used by:305 507  Timeline
Symbol 301 MovieClip [List]Uses:59 223Used by:305 307 308 333 437
Symbol 303 EditableTextUses:248Used by:304
Symbol 304 MovieClip [Label]Uses:303 73 80Used by:305 307 308 354 437 507
Symbol 305 MovieClip [skinStore_mc]Uses:266 267 299 301 250 304 85
Symbol 306 GraphicUsed by:307 308
Symbol 307 MovieClip [modeStore_mc]Uses:306 301 250 304 85
Symbol 308 MovieClip [itemStore_mc]Uses:306 301 250 304 85
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClip [moneySign]Uses:309
Symbol 311 GraphicUsed by:312
Symbol 312 MovieClip [baseball]Uses:311
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClip [exclamation]Uses:313
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClip [bowlball]Uses:315
Symbol 319 EditableTextUses:248Used by:320
Symbol 320 MovieClip [TextInput]Uses:319 83 80Used by:321 352 437 507
Symbol 321 MovieClip [ComboBase]Uses:59 80 81 320Used by:333
Symbol 322 GraphicUsed by:326 330 331
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:323Used by:326 330 331
Symbol 325 GraphicUsed by:326 330 331
Symbol 326 MovieClip [ComboDownArrowUp]Uses:322 324 325 94Used by:327 332
Symbol 327 MovieClip [ComboDownArrowDisabled]Uses:326Used by:332
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClip [ComboThemeColor1]Uses:328Used by:330 331
Symbol 330 MovieClip [ComboDownArrowDown]Uses:322 329 324 325 94Used by:332
Symbol 331 MovieClip [ComboDownArrowOver]Uses:322 329 324 325 94Used by:332
Symbol 332 MovieClip [ComboAssets]Uses:327 330 331 326Used by:333
Symbol 333 MovieClip [ComboBox]Uses:59 321 301 332Used by:354
Symbol 336 GraphicUsed by:338 341 342 343 345 346 347 348
Symbol 337 GraphicUsed by:338 341 342 343
Symbol 338 MovieClip [StepDownArrowDisabled]Uses:336 337 87 94Used by:351
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClip [StepThemeColor1]Uses:339Used by:341 342 346 347
Symbol 341 MovieClip [StepDownArrowDown]Uses:336 87 340 337 94Used by:351
Symbol 342 MovieClip [StepDownArrowOver]Uses:336 87 340 337 94Used by:351
Symbol 343 MovieClip [StepDownArrowUp]Uses:336 337 87 94Used by:351
Symbol 344 GraphicUsed by:345 346 347 348
Symbol 345 MovieClip [StepUpArrowDisabled]Uses:336 344 87 94Used by:351
Symbol 346 MovieClip [StepUpArrowDown]Uses:336 87 340 344 94Used by:351
Symbol 347 MovieClip [StepUpArrowOver]Uses:336 87 340 344 94Used by:351
Symbol 348 MovieClip [StepUpArrowUp]Uses:336 344 87 94Used by:351
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClip [StepTrack]Uses:349Used by:351
Symbol 351 MovieClip [NumericStepperAssets]Uses:338 341 342 343 345 346 347 348 350Used by:352
Symbol 352 MovieClip [NumericStepper]Uses:59 81 80 320 351Used by:354
Symbol 353 GraphicUsed by:354
Symbol 354 MovieClip [physicsTweek_mc]Uses:353 304 352 333
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClip [star]Uses:355
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClip [smile]Uses:357
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClip [noExplode]Uses:359
Symbol 361 GraphicUsed by:362
Symbol 362 MovieClip [grenade]Uses:361
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClip [questionMark]Uses:363
Symbol 365 GraphicUsed by:368
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:366Used by:368
Symbol 368 MovieClip [mine]Uses:365 367
Symbol 369 GraphicUsed by:370
Symbol 370 MovieClip [fireGlowClipLow]Uses:369
Symbol 371 BitmapUsed by:372
Symbol 372 GraphicUses:371Used by:377
Symbol 373 BitmapUsed by:374
Symbol 374 GraphicUses:373Used by:377
Symbol 375 BitmapUsed by:376 389
Symbol 376 GraphicUses:375Used by:377
Symbol 377 MovieClip [flame]Uses:372 374 376
Symbol 378 GraphicUsed by:383 384
Symbol 379 GraphicUsed by:383
Symbol 380 GraphicUsed by:383
Symbol 381 GraphicUsed by:383
Symbol 382 GraphicUsed by:383
Symbol 383 MovieClip [smoke]Uses:378 379 380 381 382
Symbol 384 MovieClip [smokeBitmap]Uses:378
Symbol 385 ShapeTweeningUsed by:388
Symbol 386 ShapeTweeningUsed by:388
Symbol 387 GraphicUsed by:388
Symbol 388 MovieClip [bubbleExclame]Uses:385 386 387Used by:390
Symbol 389 GraphicUses:375Used by:390
Symbol 390 MovieClip [flameSymbol]Uses:389 388
Symbol 391 ShapeTweeningUsed by:394
Symbol 392 ShapeTweeningUsed by:394
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClip [fireball]Uses:391 392 393
Symbol 395 GraphicUsed by:396
Symbol 396 MovieClip [bouncyball]Uses:395
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClip [smokeLow]Uses:397
Symbol 399 GraphicUsed by:404
Symbol 400 GraphicUsed by:404
Symbol 401 GraphicUsed by:404
Symbol 402 GraphicUsed by:404
Symbol 403 GraphicUsed by:404
Symbol 404 MovieClip [debris]Uses:399 400 401 402 403
Symbol 405 GraphicUsed by:406
Symbol 406 MovieClip [missile]Uses:405
Symbol 407 GraphicUsed by:408
Symbol 408 MovieClip [molotov]Uses:407
Symbol 409 GraphicUsed by:410
Symbol 410 MovieClip [zapGraphic]Uses:409
Symbol 411 GraphicUsed by:412
Symbol 412 MovieClip [beCareful]Uses:411Used by:416
Symbol 413 GraphicUsed by:416
Symbol 414 GraphicUsed by:415
Symbol 415 MovieClipUses:414Used by:416
Symbol 416 MovieClip [noZap]Uses:413 412 415
Symbol 417 GraphicUsed by:418
Symbol 418 MovieClip [bored]Uses:417
Symbol 420 GraphicUsed by:421 425 426 428 430 431 432 433
Symbol 421 MovieClip [CheckFalseDisabled]Uses:420Used by:434
Symbol 422 GraphicUsed by:423
Symbol 423 MovieClip [CheckThemeColor1]Uses:422Used by:425 426 431 432 433
Symbol 424 GraphicUsed by:425 431
Symbol 425 MovieClip [CheckFalseDown]Uses:420 423 424Used by:434
Symbol 426 MovieClip [CheckFalseOver]Uses:420 423Used by:434
Symbol 427 GraphicUsed by:428
Symbol 428 MovieClip [CheckFalseUp]Uses:420 427Used by:434
Symbol 429 GraphicUsed by:430 431 432 433
Symbol 430 MovieClip [CheckTrueDisabled]Uses:420 429Used by:434
Symbol 431 MovieClip [CheckTrueDown]Uses:420 424 429 423Used by:434
Symbol 432 MovieClip [CheckTrueOver]Uses:420 423 429Used by:434
Symbol 433 MovieClip [CheckTrueUp]Uses:420 423 429Used by:434
Symbol 434 MovieClip [CheckBoxAssets]Uses:421 425 426 428 430 431 432 433Used by:435
Symbol 435 MovieClip [CheckBox]Uses:59 434 85Used by:437
Symbol 436 GraphicUsed by:437
Symbol 437 MovieClip [script_mc]Uses:436 250 301 85 320 304 435
Symbol 438 GraphicUsed by:507
Symbol 439 GraphicUsed by:507 613
Symbol 440 GraphicUsed by:474
Symbol 441 GraphicUsed by:474
Symbol 442 GraphicUsed by:474
Symbol 443 GraphicUsed by:474
Symbol 444 GraphicUsed by:474
Symbol 445 FontUsed by:446 447 448 523 524 527 532 635
Symbol 446 TextUses:445Used by:474
Symbol 447 TextUses:445Used by:474
Symbol 448 TextUses:445Used by:474
Symbol 449 GraphicUsed by:474
Symbol 450 GraphicUsed by:474
Symbol 451 GraphicUsed by:474
Symbol 452 GraphicUsed by:453
Symbol 453 MovieClipUses:452Used by:474 483 490
Symbol 454 GraphicUsed by:474
Symbol 455 GraphicUsed by:474
Symbol 456 GraphicUsed by:474
Symbol 457 GraphicUsed by:474
Symbol 458 GraphicUsed by:474
Symbol 459 GraphicUsed by:474
Symbol 460 GraphicUsed by:474
Symbol 461 GraphicUsed by:462
Symbol 462 MovieClipUses:461Used by:474
Symbol 463 GraphicUsed by:474
Symbol 464 GraphicUsed by:474
Symbol 465 GraphicUsed by:474
Symbol 466 GraphicUsed by:474
Symbol 467 GraphicUsed by:474
Symbol 468 GraphicUsed by:474
Symbol 469 GraphicUsed by:474
Symbol 470 GraphicUsed by:474
Symbol 471 FontUsed by:472
Symbol 472 TextUses:471Used by:474
Symbol 473 GraphicUsed by:474
Symbol 474 MovieClipUses:440 441 442 443 444 446 447 448 449 450 451 453 454 455 456 457 458 459 460 462 463 464 465 466 467 468 469 470 472 473Used by:507  Timeline
Symbol 475 GraphicUsed by:483 490
Symbol 476 GraphicUsed by:483
Symbol 477 GraphicUsed by:483
Symbol 478 GraphicUsed by:483
Symbol 479 GraphicUsed by:483
Symbol 480 GraphicUsed by:483
Symbol 481 GraphicUsed by:483
Symbol 482 GraphicUsed by:483
Symbol 483 MovieClipUses:268 269 475 476 477 478 479 480 481 453 482Used by:507  Timeline
Symbol 484 GraphicUsed by:490
Symbol 485 GraphicUsed by:490
Symbol 486 GraphicUsed by:490
Symbol 487 GraphicUsed by:490
Symbol 488 GraphicUsed by:490
Symbol 489 GraphicUsed by:490
Symbol 490 MovieClipUses:268 269 475 484 485 486 487 488 453 489Used by:507  Timeline
Symbol 491 GraphicUsed by:498 501
Symbol 492 GraphicUsed by:498
Symbol 493 GraphicUsed by:498 501
Symbol 494 GraphicUsed by:498 501
Symbol 495 GraphicUsed by:498 501
Symbol 496 GraphicUsed by:498
Symbol 497 GraphicUsed by:498 501
Symbol 498 MovieClipUses:268 269 491 492 493 494 495 496 497Used by:507  Timeline
Symbol 499 GraphicUsed by:501
Symbol 500 GraphicUsed by:501
Symbol 501 MovieClipUses:268 269 491 499 493 494 495 500 497Used by:507  Timeline
Symbol 502 GraphicUsed by:503
Symbol 503 MovieClipUses:502Used by:507
Symbol 504 GraphicUsed by:505
Symbol 505 MovieClipUses:504Used by:507
Symbol 506 MovieClipUsed by:507 675  Timeline
Symbol 507 MovieClip [customFace_mc]Uses:438 439 474 299 483 490 498 501 503 320 85 304 505 506
Symbol 508 GraphicUsed by:509
Symbol 509 MovieClip [chain]Uses:508
Symbol 510 GraphicUsed by:511
Symbol 511 MovieClipUses:510Used by:521
Symbol 512 GraphicUsed by:513
Symbol 513 MovieClipUses:512Used by:521
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClipUses:514Used by:521
Symbol 516 GraphicUsed by:517
Symbol 517 MovieClipUses:516Used by:521
Symbol 518 BitmapUsed by:519
Symbol 519 GraphicUses:518Used by:520
Symbol 520 MovieClipUses:519Used by:521
Symbol 521 MovieClip [baby]Uses:511 513 515 517 520
Symbol 522 GraphicUsed by:525 531
Symbol 523 EditableTextUses:445Used by:525
Symbol 524 EditableTextUses:445Used by:525
Symbol 525 MovieClip [about_mc]Uses:522 523 524
Symbol 526 GraphicUsed by:528
Symbol 527 EditableTextUses:445Used by:528
Symbol 528 MovieClip [text_mc]Uses:526 527
Symbol 530 MovieClip [ScrollPane]Uses:59 147Used by:531
Symbol 531 MovieClip [stats_mc]Uses:522 530
Symbol 532 EditableTextUses:445Used by:533
Symbol 533 MovieClip [statsListing_mc]Uses:532
Symbol 534 GraphicUsed by:537
Symbol 535 GraphicUsed by:537
Symbol 536 GraphicUsed by:537
Symbol 537 MovieClip [gore]Uses:534 535 536
Symbol 538 GraphicUsed by:542
Symbol 539 ShapeTweeningUsed by:542
Symbol 540 ShapeTweeningUsed by:542
Symbol 541 GraphicUsed by:542
Symbol 542 MovieClip [radio]Uses:538 539 540 541
Symbol 543 ShapeTweeningUsed by:546
Symbol 544 ShapeTweeningUsed by:546
Symbol 545 GraphicUsed by:546
Symbol 546 MovieClip [orb]Uses:543 544 545
Symbol 547 BitmapUsed by:548
Symbol 548 GraphicUses:547Used by:549
Symbol 549 MovieClip [circleFire]Uses:548
Symbol 550 GraphicUsed by:554
Symbol 551 ShapeTweeningUsed by:554
Symbol 552 ShapeTweeningUsed by:554
Symbol 553 GraphicUsed by:554
Symbol 554 MovieClip [vortex]Uses:550 551 552 553
Symbol 556 MovieClip [MenuBarItem]Used by:565
Symbol 557 MovieClip [ActivatorSkin]Used by:565
Symbol 558 GraphicUsed by:559
Symbol 559 MovieClip [MenuBarBackLeft]Uses:558Used by:564
Symbol 560 GraphicUsed by:561
Symbol 561 MovieClip [MenuBarBackMiddle]Uses:560Used by:564
Symbol 562 GraphicUsed by:563
Symbol 563 MovieClip [MenuBarBackRight]Uses:562Used by:564
Symbol 564 MovieClip [MenuBarAssets]Uses:559 561 563Used by:565
Symbol 565 MovieClip [MenuBar]Uses:59 556 557 242 564Used by:Timeline
Symbol 568 GraphicUsed by:569
Symbol 569 MovieClip [fister]Uses:568Used by:Timeline
Symbol 570 GraphicUsed by:571
Symbol 571 MovieClip [loadingLoadingScreen]Uses:570Used by:Timeline
Symbol 572 GraphicUsed by:574
Symbol 573 GraphicUsed by:574
Symbol 574 MovieClip [border]Uses:572 573Used by:Timeline
Symbol 575 GraphicUsed by:579
Symbol 576 FontUsed by:577 651
Symbol 577 TextUses:576Used by:579
Symbol 578 GraphicUsed by:579
Symbol 579 MovieClipUses:575 577 578Used by:Timeline
Symbol 580 GraphicUsed by:Timeline
Symbol 243 MovieClip [__Packages.mx.managers.PopUpManager]
Symbol 53 MovieClip [__Packages.mx.core.UIObject]
Symbol 166 MovieClip [__Packages.mx.skins.SkinElement]
Symbol 167 MovieClip [__Packages.mx.styles.CSSTextStyles]
Symbol 169 MovieClip [__Packages.mx.styles.CSSStyleDeclaration]
Symbol 168 MovieClip [__Packages.mx.styles.StyleManager]
Symbol 172 MovieClip [__Packages.mx.managers.DepthManager]
Symbol 185 MovieClip [__Packages.mx.managers.SystemManager]
Symbol 173 MovieClip [__Packages.mx.events.EventDispatcher]
Symbol 54 MovieClip [__Packages.mx.core.UIComponent]
Symbol 55 MovieClip [__Packages.mx.core.View]
Symbol 170 MovieClip [__Packages.mx.skins.Border]
Symbol 171 MovieClip [__Packages.mx.skins.RectBorder]
Symbol 175 MovieClip [__Packages.mx.core.ExternalContent]
Symbol 174 MovieClip [__Packages.mx.events.UIEventDispatcher]
Symbol 56 MovieClip [__Packages.mx.core.ScrollView]
Symbol 179 MovieClip [__Packages.mx.controls.scrollClasses.ScrollBar]
Symbol 176 MovieClip [__Packages.mx.skins.CustomBorder]
Symbol 177 MovieClip [__Packages.mx.controls.scrollClasses.ScrollThumb]
Symbol 178 MovieClip [__Packages.mx.controls.SimpleButton]
Symbol 57 MovieClip [__Packages.mx.containers.Window]
Symbol 247 MovieClip [__Packages.mx.controls.Alert]
Symbol 254 MovieClip [__Packages.mx.controls.alertClasses.AlertForm]
Symbol 253 MovieClip [__Packages.mx.controls.TextArea]
Symbol 181 MovieClip [__Packages.mx.controls.Button]
Symbol 180 MovieClip [__Packages.mx.controls.HScrollBar]
Symbol 182 MovieClip [__Packages.mx.skins.ColoredSkinElement]
Symbol 183 MovieClip [__Packages.mx.core.ext.UIObjectExtensions]
Symbol 184 MovieClip [__Packages.mx.skins.halo.Defaults]
Symbol 186 MovieClip [__Packages.mx.managers.FocusManager]
Symbol 187 MovieClip [__Packages.mx.skins.halo.FocusRect]
Symbol 188 MovieClip [__Packages.mx.managers.OverlappedWindows]
Symbol 189 MovieClip [__Packages.mx.styles.CSSSetStyle]
Symbol 190 MovieClip [__Packages.mx.core.ext.UIComponentExtensions]
Symbol 191 MovieClip [__Packages.mx.skins.halo.RectBorder]
Symbol 192 MovieClip [__Packages.mx.skins.halo.ButtonSkin]
Symbol 193 MovieClip [__Packages.mx.controls.VScrollBar]
Symbol 194 MovieClip [__Packages.mx.controls.UIScrollBar]
Symbol 196 MovieClip [__Packages.mx.controls.RadioButton]
Symbol 213 MovieClip [__Packages.mx.controls.RadioButtonGroup]
Symbol 214 MovieClip [__Packages.mx.controls.listclasses.DataSelector]
Symbol 215 MovieClip [__Packages.mx.controls.listclasses.DataProvider]
Symbol 216 MovieClip [__Packages.mx.controls.listclasses.ScrollSelectList]
Symbol 217 MovieClip [__Packages.mx.controls.treeclasses.TreeDataProvider]
Symbol 218 MovieClip [__Packages.mx.controls.menuclasses.MenuDataProvider]
Symbol 219 MovieClip [__Packages.mx.controls.Menu]
Symbol 244 MovieClip [__Packages.mx.effects.Tween]
Symbol 245 MovieClip [__Packages.mx.controls.listclasses.SelectableRow]
Symbol 246 MovieClip [__Packages.mx.controls.menuclasses.MenuRow]
Symbol 300 MovieClip [__Packages.mx.controls.List]
Symbol 302 MovieClip [__Packages.mx.controls.Label]
Symbol 317 MovieClip [__Packages.mx.controls.ComboBase]
Symbol 318 MovieClip [__Packages.mx.controls.ComboBox]
Symbol 334 MovieClip [__Packages.mx.controls.TextInput]
Symbol 335 MovieClip [__Packages.mx.controls.NumericStepper]
Symbol 419 MovieClip [__Packages.mx.controls.CheckBox]
Symbol 529 MovieClip [__Packages.mx.containers.ScrollPane]
Symbol 555 MovieClip [__Packages.mx.controls.MenuBar]
Symbol 566 MovieClip [__Packages.mx.skins.halo.ActivatorSkin]
Symbol 567 MovieClip [__Packages.mx.controls.menuclasses.MenuBarItem]
Symbol 581 Sound [shock]Used by:Timeline
Symbol 582 Sound [explosion]Used by:Timeline
Symbol 583 Sound [burnball]Used by:Timeline
Symbol 584 Sound [register]Used by:Timeline
Symbol 585 Sound [beeper]Used by:Timeline
Symbol 586 Sound [punch1]Used by:Timeline
Symbol 587 SoundUsed by:Timeline
Symbol 588 Sound [punch3]Used by:Timeline
Symbol 589 Sound [punch2]Used by:Timeline
Symbol 590 Sound [punch4]Used by:Timeline
Symbol 591 Sound [nap-dang]Used by:Timeline
Symbol 592 SoundUsed by:Timeline
Symbol 593 Sound [nd-fidiot]Used by:Timeline
Symbol 594 Sound [nd-goforit]Used by:Timeline
Symbol 595 SoundUsed by:Timeline
Symbol 596 Sound [nd-talons]Used by:Timeline
Symbol 597 Sound [nd-gross]Used by:Timeline
Symbol 598 Sound [nd-warrior]Used by:Timeline
Symbol 599 Sound [nd-tina]Used by:Timeline
Symbol 600 SoundUsed by:Timeline
Symbol 601 Sound [nd-lipshurt]Used by:Timeline
Symbol 602 Sound [nd-ugh]Used by:Timeline
Symbol 603 Sound [nd-hello]Used by:Timeline
Symbol 604 SoundUsed by:Timeline
Symbol 605 Sound [nd-what]Used by:Timeline
Symbol 606 Sound [nd-idiot]Used by:Timeline
Symbol 607 Sound [nd-retarded]Used by:Timeline
Symbol 608 Sound [nd-yes]Used by:Timeline
Symbol 609 Sound [nd-dontfeelgood]Used by:Timeline
Symbol 610 Sound [nd-suchanidiot]Used by:Timeline
Symbol 611 Sound [nd-killertime]Used by:Timeline
Symbol 612 Sound [nd-sweet]Used by:Timeline
Symbol 613 MovieClipUses:439Used by:Timeline
Symbol 614 GraphicUsed by:615
Symbol 615 MovieClipUses:614Used by:Timeline
Symbol 616 GraphicUsed by:617
Symbol 617 MovieClipUses:616Used by:Timeline
Symbol 618 GraphicUsed by:620
Symbol 619 GraphicUsed by:620
Symbol 620 MovieClipUses:618 619Used by:Timeline
Symbol 621 GraphicUsed by:622
Symbol 622 MovieClipUses:621Used by:Timeline
Symbol 623 GraphicUsed by:624
Symbol 624 MovieClipUses:623Used by:626
Symbol 625 GraphicUsed by:626
Symbol 626 MovieClipUses:624 625Used by:Timeline
Symbol 627 GraphicUsed by:628
Symbol 628 MovieClipUses:627Used by:Timeline
Symbol 629 GraphicUsed by:632
Symbol 630 GraphicUsed by:632
Symbol 631 GraphicUsed by:632
Symbol 632 MovieClipUses:629 630 631Used by:Timeline
Symbol 633 FontUsed by:634 648
Symbol 634 EditableTextUses:633Used by:Timeline
Symbol 635 EditableTextUses:445Used by:636
Symbol 636 MovieClipUses:635Used by:Timeline
Symbol 637 FontUsed by:638
Symbol 638 EditableTextUses:637Used by:639
Symbol 639 MovieClipUses:638Used by:Timeline
Symbol 640 GraphicUsed by:649
Symbol 641 GraphicUsed by:644
Symbol 642 GraphicUsed by:644
Symbol 643 GraphicUsed by:644
Symbol 644 MovieClipUses:641 642 643Used by:649
Symbol 645 FontUsed by:648
Symbol 646 Font
Symbol 647 FontUsed by:648
Symbol 648 EditableTextUses:645 647 633Used by:649
Symbol 649 MovieClipUses:640 644 648Used by:Timeline
Symbol 650 GraphicUsed by:652
Symbol 651 EditableTextUses:576Used by:652
Symbol 652 MovieClipUses:650 651Used by:Timeline
Symbol 653 GraphicUsed by:654
Symbol 654 MovieClipUses:653Used by:Timeline
Symbol 655 GraphicUsed by:656
Symbol 656 MovieClipUses:655Used by:Timeline
Symbol 657 GraphicUsed by:665
Symbol 658 ShapeTweeningUsed by:665
Symbol 659 GraphicUsed by:665
Symbol 660 GraphicUsed by:665
Symbol 661 GraphicUsed by:665
Symbol 662 ShapeTweeningUsed by:665
Symbol 663 GraphicUsed by:665
Symbol 664 GraphicUsed by:665
Symbol 665 MovieClipUses:657 658 659 660 661 662 663 664Used by:Timeline
Symbol 666 GraphicUsed by:675
Symbol 667 FontUsed by:668 670 672 674
Symbol 668 EditableTextUses:667Used by:675
Symbol 669 GraphicUsed by:675
Symbol 670 EditableTextUses:667Used by:675
Symbol 671 GraphicUsed by:675
Symbol 672 EditableTextUses:667Used by:675
Symbol 673 GraphicUsed by:675
Symbol 674 EditableTextUses:667Used by:675
Symbol 675 MovieClipUses:666 668 506 669 670 671 672 673 674Used by:Timeline
Symbol 676 BitmapUsed by:677
Symbol 677 GraphicUses:676Used by:681
Symbol 678 FontUsed by:679 680
Symbol 679 EditableTextUses:678Used by:681
Symbol 680 EditableTextUses:678Used by:681
Symbol 681 MovieClipUses:677 679 680Used by:Timeline

Instance Names

"border"Frame 1Symbol 574 MovieClip [border]
"loadingScreen"Frame 1Symbol 579 MovieClip
"loadDraw"Frame 1Symbol 506 MovieClip
"loadingLoadingScreen"Frame 1Symbol 571 MovieClip [loadingLoadingScreen]
"bg"Frame 25Symbol 613 MovieClip
"lowDrawing"Frame 25Symbol 506 MovieClip
"knife"Frame 25Symbol 615 MovieClip
"body"Frame 25Symbol 474 MovieClip
"head"Frame 25Symbol 299 MovieClip
"rLeg"Frame 25Symbol 483 MovieClip
"lLeg"Frame 25Symbol 490 MovieClip
"rArm"Frame 25Symbol 498 MovieClip
"lArm"Frame 25Symbol 501 MovieClip
"objects"Frame 25Symbol 506 MovieClip
"drawing"Frame 25Symbol 506 MovieClip
"fistShadow"Frame 25Symbol 617 MovieClip
"fist"Frame 25Symbol 569 MovieClip [fister]
"stunGun"Frame 25Symbol 620 MovieClip
"stunGunShadow"Frame 25Symbol 622 MovieClip
"wreckingBall"Frame 25Symbol 626 MovieClip
"particles"Frame 25Symbol 506 MovieClip
"orbGlow"Frame 25Symbol 628 MovieClip
"clockTalk"Frame 25Symbol 632 MovieClip
"topBar"Frame 25Symbol 565 MovieClip [MenuBar]
"fpsText"Frame 25Symbol 634 EditableText
"modifierLabel"Frame 25Symbol 636 MovieClip
"actionsLabel"Frame 25Symbol 636 MovieClip
"statusLabel"Frame 25Symbol 636 MovieClip
"versionClip"Frame 25Symbol 639 MovieClip
"reminder"Frame 25Symbol 649 MovieClip
"message"Frame 25Symbol 652 MovieClip
"plusSign"Frame 25Symbol 654 MovieClip
"minusSign"Frame 25Symbol 656 MovieClip
"faceClip"Frame 25Symbol 665 MovieClip
"bubble"Frame 25Symbol 675 MovieClip
"logo"Frame 25Symbol 681 MovieClip
"b"Symbol 64 MovieClip [SimpleButtonDown] Frame 1Symbol 61 MovieClip [BrdrShdw]
"face"Symbol 64 MovieClip [SimpleButtonDown] Frame 1Symbol 63 MovieClip [BrdrFace]
"b"Symbol 69 MovieClip [SimpleButtonIn] Frame 1Symbol 66 MovieClip [BrdrBlk]
"it"Symbol 69 MovieClip [SimpleButtonIn] Frame 1Symbol 68 MovieClip [BrdrHilght]
"g"Symbol 69 MovieClip [SimpleButtonIn] Frame 1Symbol 61 MovieClip [BrdrShdw]
"face"Symbol 69 MovieClip [SimpleButtonIn] Frame 1Symbol 63 MovieClip [BrdrFace]
"ob"Symbol 70 MovieClip [SimpleButtonUp] Frame 1Symbol 66 MovieClip [BrdrBlk]
"ol"Symbol 70 MovieClip [SimpleButtonUp] Frame 1Symbol 63 MovieClip [BrdrFace]
"ib"Symbol 70 MovieClip [SimpleButtonUp] Frame 1Symbol 61 MovieClip [BrdrShdw]
"il"Symbol 70 MovieClip [SimpleButtonUp] Frame 1Symbol 68 MovieClip [BrdrHilght]
"face"Symbol 70 MovieClip [SimpleButtonUp] Frame 1Symbol 63 MovieClip [BrdrFace]
"boundingBox_mc"Symbol 77 MovieClip [FocusRect] Frame 1Symbol 59 MovieClip [BoundingBox]
"tabCapture"Symbol 78 MovieClip [FocusManager] Frame 1Symbol 76 Button
"boundingBox_mc"Symbol 81 MovieClip [SimpleButton] Frame 1Symbol 59 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 85 MovieClip [Button] Frame 1Symbol 59 MovieClip [BoundingBox]
"dfs"Symbol 141 MovieClip [BtnDownArrow] Frame 1Symbol 89 MovieClip [ScrollTrack]
"dfs"Symbol 142 MovieClip [BtnUpArrow] Frame 1Symbol 89 MovieClip [ScrollTrack]
"boundingBox_mc"Symbol 144 MovieClip [HScrollBar] Frame 1Symbol 59 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 145 MovieClip [VScrollBar] Frame 1Symbol 59 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 146 MovieClip [View] Frame 1Symbol 59 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 147 MovieClip [ScrollView] Frame 1Symbol 59 MovieClip [BoundingBox]
"l_mc"Symbol 155 MovieClip [TitleBackground] Frame 1Symbol 150 MovieClip [TitleLeft]
"m_mc"Symbol 155 MovieClip [TitleBackground] Frame 1Symbol 152 MovieClip [TitleMiddle]
"r_mc"Symbol 155 MovieClip [TitleBackground] Frame 1Symbol 154 MovieClip [TitleRight]
"boundingBox_mc"Symbol 165 MovieClip [Window] Frame 1Symbol 59 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 195 MovieClip [UIScrollBar] Frame 1Symbol 59 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 212 MovieClip [RadioButton] Frame 1Symbol 59 MovieClip [BoundingBox]
"foo"Symbol 212 MovieClip [RadioButton] Frame 2Symbol 85 MovieClip [Button]
"boundingBox_mc"Symbol 242 MovieClip [Menu] Frame 1Symbol 59 MovieClip [BoundingBox]
"label"Symbol 250 MovieClip [TextArea] Frame 1Symbol 249 EditableText
"boundingBox_mc"Symbol 252 MovieClip [Alert] Frame 1Symbol 59 MovieClip [BoundingBox]
"stat"Symbol 265 MovieClip [stat] Frame 1Symbol 264 EditableText
"eyeball"Symbol 278 MovieClip Frame 1Symbol 276 MovieClip
"righteye"Symbol 299 MovieClip Frame 29Symbol 278 MovieClip
"lefteye"Symbol 299 MovieClip Frame 29Symbol 278 MovieClip
"mouth"Symbol 299 MovieClip Frame 29Symbol 284 MovieClip
"righteye"Symbol 299 MovieClip Frame 47Symbol 278 MovieClip
"lefteye"Symbol 299 MovieClip Frame 47Symbol 278 MovieClip
"mouth"Symbol 299 MovieClip Frame 47Symbol 284 MovieClip
"mouth"Symbol 299 MovieClip Frame 73Symbol 291 MovieClip
"boundingBox_mc"Symbol 301 MovieClip [List] Frame 1Symbol 59 MovieClip [BoundingBox]
"labelField"Symbol 304 MovieClip [Label] Frame 1Symbol 303 EditableText
"skinShow"Symbol 305 MovieClip [skinStore_mc] Frame 1Symbol 299 MovieClip
"inStockList"Symbol 305 MovieClip [skinStore_mc] Frame 1Symbol 301 MovieClip [List]
"costBox"Symbol 305 MovieClip [skinStore_mc] Frame 1Symbol 250 MovieClip [TextArea]
"buyButton"Symbol 305 MovieClip [skinStore_mc] Frame 1Symbol 85 MovieClip [Button]
"inStockList"Symbol 307 MovieClip [modeStore_mc] Frame 1Symbol 301 MovieClip [List]
"costBox"Symbol 307 MovieClip [modeStore_mc] Frame 1Symbol 250 MovieClip [TextArea]
"buyButton"Symbol 307 MovieClip [modeStore_mc] Frame 1Symbol 85 MovieClip [Button]
"inStockList"Symbol 308 MovieClip [itemStore_mc] Frame 1Symbol 301 MovieClip [List]
"typeBox"Symbol 308 MovieClip [itemStore_mc] Frame 1Symbol 250 MovieClip [TextArea]
"costBox"Symbol 308 MovieClip [itemStore_mc] Frame 1Symbol 250 MovieClip [TextArea]
"buyButton"Symbol 308 MovieClip [itemStore_mc] Frame 1Symbol 85 MovieClip [Button]
"label"Symbol 320 MovieClip [TextInput] Frame 1Symbol 319 EditableText
"boundingBox_mc"Symbol 321 MovieClip [ComboBase] Frame 1Symbol 59 MovieClip [BoundingBox]
"dfs"Symbol 327 MovieClip [ComboDownArrowDisabled] Frame 1Symbol 326 MovieClip [ComboDownArrowUp]
"boundingBox_mc"Symbol 333 MovieClip [ComboBox] Frame 1Symbol 59 MovieClip [BoundingBox]
"boundingBox_mc"Symbol 352 MovieClip [NumericStepper] Frame 1Symbol 59 MovieClip [BoundingBox]
"objectStepper"Symbol 354 MovieClip [physicsTweek_mc] Frame 1Symbol 352 MovieClip [NumericStepper]
"qualCombo"Symbol 354 MovieClip [physicsTweek_mc] Frame 1Symbol 333 MovieClip [ComboBox]
"light"Symbol 368 MovieClip [mine] Frame 1Symbol 367 MovieClip
"boundingBox_mc"Symbol 435 MovieClip [CheckBox] Frame 1Symbol 59 MovieClip [BoundingBox]
"scriptBox"Symbol 437 MovieClip [script_mc] Frame 1Symbol 250 MovieClip [TextArea]
"scriptsList"Symbol 437 MovieClip [script_mc] Frame 1Symbol 301 MovieClip [List]
"loadButton"Symbol 437 MovieClip [script_mc] Frame 1Symbol 85 MovieClip [Button]
"nameBox"Symbol 437 MovieClip [script_mc] Frame 1Symbol 320 MovieClip [TextInput]
"deleteButton"Symbol 437 MovieClip [script_mc] Frame 1Symbol 85 MovieClip [Button]
"saveButton"Symbol 437 MovieClip [script_mc] Frame 1Symbol 85 MovieClip [Button]
"runOnceButton"Symbol 437 MovieClip [script_mc] Frame 1Symbol 85 MovieClip [Button]
"everyFrameCheck"Symbol 437 MovieClip [script_mc] Frame 1Symbol 435 MovieClip [CheckBox]
"shine"Symbol 474 MovieClip Frame 41Symbol 453 MovieClip
"shine"Symbol 474 MovieClip Frame 50Symbol 453 MovieClip
"shine"Symbol 474 MovieClip Frame 76Symbol 462 MovieClip
"shine"Symbol 474 MovieClip Frame 94Symbol 462 MovieClip
"shine"Symbol 474 MovieClip Frame 100Symbol 462 MovieClip
"shine"Symbol 474 MovieClip Frame 105Symbol 462 MovieClip
"shine"Symbol 483 MovieClip Frame 95Symbol 453 MovieClip
"shine"Symbol 490 MovieClip Frame 94Symbol 453 MovieClip
"body"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 474 MovieClip
"head"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 299 MovieClip
"rLeg"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 483 MovieClip
"lLeg"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 490 MovieClip
"rArm"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 498 MovieClip
"lArm"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 501 MovieClip
"imageHolder"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 503 MovieClip
"loadAddress"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 320 MovieClip [TextInput]
"loadButton"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 85 MovieClip [Button]
"center"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 505 MovieClip
"upleft"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 506 MovieClip
"downright"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 506 MovieClip
"drawCenter"Symbol 507 MovieClip [customFace_mc] Frame 1Symbol 506 MovieClip
"titleText"Symbol 525 MovieClip [about_mc] Frame 1Symbol 523 EditableText
"mainText"Symbol 525 MovieClip [about_mc] Frame 1Symbol 524 EditableText
"theText"Symbol 528 MovieClip [text_mc] Frame 1Symbol 527 EditableText
"boundingBox_mc"Symbol 530 MovieClip [ScrollPane] Frame 1Symbol 59 MovieClip [BoundingBox]
"textScroll"Symbol 531 MovieClip [stats_mc] Frame 1Symbol 530 MovieClip [ScrollPane]
"statsText"Symbol 533 MovieClip [statsListing_mc] Frame 1Symbol 532 EditableText
"boundingBox_mc"Symbol 565 MovieClip [MenuBar] Frame 1Symbol 59 MovieClip [BoundingBox]
"textLabel"Symbol 636 MovieClip Frame 1Symbol 635 EditableText
"versionText"Symbol 639 MovieClip Frame 1Symbol 638 EditableText
"closeButton"Symbol 649 MovieClip Frame 1Symbol 644 MovieClip
"label"Symbol 652 MovieClip Frame 1Symbol 651 EditableText
"txt"Symbol 675 MovieClip Frame 1Symbol 668 EditableText
"image"Symbol 675 MovieClip Frame 1Symbol 506 MovieClip
"txt"Symbol 675 MovieClip Frame 10Symbol 670 EditableText
"txt"Symbol 675 MovieClip Frame 20Symbol 672 EditableText
"txt"Symbol 675 MovieClip Frame 30Symbol 674 EditableText
"shadow"Symbol 681 MovieClip Frame 1Symbol 679 EditableText
"main"Symbol 681 MovieClip Frame 1Symbol 680 EditableText

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "static"
ExportAssets (56)Timeline Frame 1Symbol 2 as "sc-zapah"
ExportAssets (56)Timeline Frame 1Symbol 3 as "sc-youareking"
ExportAssets (56)Timeline Frame 1Symbol 4 as "sc-wtfisgoingon"
ExportAssets (56)Timeline Frame 1Symbol 5 as "sc-whynumberone"
ExportAssets (56)Timeline Frame 1Symbol 6 as "sc-whydoyoudothis"
ExportAssets (56)Timeline Frame 1Symbol 7 as "sc-whydothis"
ExportAssets (56)Timeline Frame 1Symbol 8 as "sc-why"
ExportAssets (56)Timeline Frame 1Symbol 9 as "sc-whathaveidone"
ExportAssets (56)Timeline Frame 1Symbol 10 as "sc-whatareyoudoing"
ExportAssets (56)Timeline Frame 1Symbol 11 as "sc-upsidedown"
ExportAssets (56)Timeline Frame 1Symbol 12 as "sc-umthanks"
ExportAssets (56)Timeline Frame 1Symbol 13 as "sc-treatnice"
ExportAssets (56)Timeline Frame 1Symbol 14 as "sc-suxors"
ExportAssets (56)Timeline Frame 1Symbol 15 as "sc-socruel"
ExportAssets (56)Timeline Frame 1Symbol 16 as "sc-sickoflife"
ExportAssets (56)Timeline Frame 1Symbol 17 as "sc-setasidediffs"
ExportAssets (56)Timeline Frame 1Symbol 18 as "sc-sadness"
ExportAssets (56)Timeline Frame 1Symbol 19 as "sc-rofflecopter"
ExportAssets (56)Timeline Frame 1Symbol 20 as "sc-predicament"
ExportAssets (56)Timeline Frame 1Symbol 21 as "sc-pimping"
ExportAssets (56)Timeline Frame 1Symbol 22 as "sc-outtahere"
ExportAssets (56)Timeline Frame 1Symbol 23 as "sc-onfire"
ExportAssets (56)Timeline Frame 1Symbol 24 as "sc-notright"
ExportAssets (56)Timeline Frame 1Symbol 25 as "sc-notfunny"
ExportAssets (56)Timeline Frame 1Symbol 26 as "sc-noeyes"
ExportAssets (56)Timeline Frame 1Symbol 27 as "sc-noexplosives"
ExportAssets (56)Timeline Frame 1Symbol 28 as "sc-noears"
ExportAssets (56)Timeline Frame 1Symbol 29 as "sc-loveyou"
ExportAssets (56)Timeline Frame 1Symbol 30 as "sc-kingofportal"
ExportAssets (56)Timeline Frame 1Symbol 31 as "sc-imstrawberry"
ExportAssets (56)Timeline Frame 1Symbol 32 as "sc-iamsexy"
ExportAssets (56)Timeline Frame 1Symbol 33 as "sc-hateexistance"
ExportAssets (56)Timeline Frame 1Symbol 34 as "sc-grenade"
ExportAssets (56)Timeline Frame 1Symbol 35 as "sc-goodjob"
ExportAssets (56)Timeline Frame 1Symbol 36 as "sc-getwater"
ExportAssets (56)Timeline Frame 1Symbol 37 as "sc-geth2o"
ExportAssets (56)Timeline Frame 1Symbol 38 as "sc-friends"
ExportAssets (56)Timeline Frame 1Symbol 39 as "sc-flipmeover"
ExportAssets (56)Timeline Frame 1Symbol 40 as "sc-flaming"
ExportAssets (56)Timeline Frame 1Symbol 41 as "sc-feelgood"
ExportAssets (56)Timeline Frame 1Symbol 42 as "sc-enjoyfriendship"
ExportAssets (56)Timeline Frame 1Symbol 43 as "sc-dontzap"
ExportAssets (56)Timeline Frame 1Symbol 44 as "sc-dontfeelgood"
ExportAssets (56)Timeline Frame 1Symbol 45 as "sc-deservethis"
ExportAssets (56)Timeline Frame 1Symbol 46 as "sc-clockroxors"
ExportAssets (56)Timeline Frame 1Symbol 47 as "sc-careful"
ExportAssets (56)Timeline Frame 1Symbol 48 as "sc-cantdo"
ExportAssets (56)Timeline Frame 1Symbol 49 as "sc-bothkings"
ExportAssets (56)Timeline Frame 1Symbol 50 as "sc-blam"
ExportAssets (56)Timeline Frame 1Symbol 51 as "sc-bbbb"
ExportAssets (56)Timeline Frame 1Symbol 52 as "radioMusic"
ExportAssets (56)Timeline Frame 1Symbol 59 as "BoundingBox"
ExportAssets (56)Timeline Frame 1Symbol 61 as "BrdrShdw"
ExportAssets (56)Timeline Frame 1Symbol 63 as "BrdrFace"
ExportAssets (56)Timeline Frame 1Symbol 64 as "SimpleButtonDown"
ExportAssets (56)Timeline Frame 1Symbol 66 as "BrdrBlk"
ExportAssets (56)Timeline Frame 1Symbol 68 as "BrdrHilght"
ExportAssets (56)Timeline Frame 1Symbol 69 as "SimpleButtonIn"
ExportAssets (56)Timeline Frame 1Symbol 70 as "SimpleButtonUp"
ExportAssets (56)Timeline Frame 1Symbol 71 as "Defaults"
ExportAssets (56)Timeline Frame 1Symbol 72 as "UIObjectExtensions"
ExportAssets (56)Timeline Frame 1Symbol 73 as "UIObject"
ExportAssets (56)Timeline Frame 1Symbol 77 as "FocusRect"
ExportAssets (56)Timeline Frame 1Symbol 78 as "FocusManager"
ExportAssets (56)Timeline Frame 1Symbol 79 as "UIComponentExtensions"
ExportAssets (56)Timeline Frame 1Symbol 80 as "UIComponent"
ExportAssets (56)Timeline Frame 1Symbol 81 as "SimpleButton"
ExportAssets (56)Timeline Frame 1Symbol 82 as "Border"
ExportAssets (56)Timeline Frame 1Symbol 83 as "RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 84 as "ButtonSkin"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 86 as "CustomBorder"
ExportAssets (56)Timeline Frame 1Symbol 89 as "ScrollTrack"
ExportAssets (56)Timeline Frame 1Symbol 96 as "ScrollDownArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 98 as "ScrollThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 100 as "ScrollThemeColor2"
ExportAssets (56)Timeline Frame 1Symbol 101 as "ScrollDownArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 102 as "ScrollDownArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 103 as "ScrollDownArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 109 as "ScrollThumbBottomDisabled"
ExportAssets (56)Timeline Frame 1Symbol 111 as "ThumbThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 113 as "ThumbThemeColor3"
ExportAssets (56)Timeline Frame 1Symbol 114 as "ScrollThumbBottomDown"
ExportAssets (56)Timeline Frame 1Symbol 115 as "ScrollThumbBottomOver"
ExportAssets (56)Timeline Frame 1Symbol 116 as "ScrollThumbBottomUp"
ExportAssets (56)Timeline Frame 1Symbol 118 as "ScrollThumbGripDisabled"
ExportAssets (56)Timeline Frame 1Symbol 120 as "ThumbThemeColor2"
ExportAssets (56)Timeline Frame 1Symbol 121 as "ScrollThumbGripDown"
ExportAssets (56)Timeline Frame 1Symbol 122 as "ScrollThumbGripOver"
ExportAssets (56)Timeline Frame 1Symbol 123 as "ScrollThumbGripUp"
ExportAssets (56)Timeline Frame 1Symbol 125 as "ScrollThumbMiddleDisabled"
ExportAssets (56)Timeline Frame 1Symbol 126 as "ScrollThumbMiddleDown"
ExportAssets (56)Timeline Frame 1Symbol 130 as "ScrollThumbMiddleOver"
ExportAssets (56)Timeline Frame 1Symbol 131 as "ScrollThumbMiddleUp"
ExportAssets (56)Timeline Frame 1Symbol 132 as "ScrollThumbTopDisabled"
ExportAssets (56)Timeline Frame 1Symbol 133 as "ScrollThumbTopDown"
ExportAssets (56)Timeline Frame 1Symbol 134 as "ScrollThumbTopOver"
ExportAssets (56)Timeline Frame 1Symbol 135 as "ScrollThumbTopUp"
ExportAssets (56)Timeline Frame 1Symbol 136 as "ScrollTrackDisabled"
ExportAssets (56)Timeline Frame 1Symbol 137 as "ScrollUpArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 138 as "ScrollUpArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 139 as "ScrollUpArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 140 as "ScrollUpArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 141 as "BtnDownArrow"
ExportAssets (56)Timeline Frame 1Symbol 142 as "BtnUpArrow"
ExportAssets (56)Timeline Frame 1Symbol 143 as "ScrollBarAssets"
ExportAssets (56)Timeline Frame 1Symbol 144 as "HScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 145 as "VScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 146 as "View"
ExportAssets (56)Timeline Frame 1Symbol 147 as "ScrollView"
ExportAssets (56)Timeline Frame 1Symbol 148 as "Modal"
ExportAssets (56)Timeline Frame 1Symbol 150 as "TitleLeft"
ExportAssets (56)Timeline Frame 1Symbol 152 as "TitleMiddle"
ExportAssets (56)Timeline Frame 1Symbol 154 as "TitleRight"
ExportAssets (56)Timeline Frame 1Symbol 155 as "TitleBackground"
ExportAssets (56)Timeline Frame 1Symbol 157 as "CloseButtonDisabled"
ExportAssets (56)Timeline Frame 1Symbol 159 as "CloseButtonDown"
ExportAssets (56)Timeline Frame 1Symbol 161 as "CloseButtonOver"
ExportAssets (56)Timeline Frame 1Symbol 163 as "CloseButtonUp"
ExportAssets (56)Timeline Frame 1Symbol 164 as "WindowAssets"
ExportAssets (56)Timeline Frame 1Symbol 165 as "Window"
ExportAssets (56)Timeline Frame 1Symbol 165 as "Window"
ExportAssets (56)Timeline Frame 1Symbol 195 as "UIScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 195 as "UIScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 199 as "RadioFalseDisabled"
ExportAssets (56)Timeline Frame 1Symbol 201 as "RadioThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 205 as "RadioThemeColor2"
ExportAssets (56)Timeline Frame 1Symbol 206 as "RadioFalseDown"
ExportAssets (56)Timeline Frame 1Symbol 207 as "RadioFalseOver"
ExportAssets (56)Timeline Frame 1Symbol 208 as "RadioFalseUp"
ExportAssets (56)Timeline Frame 1Symbol 209 as "RadioTrueDisabled"
ExportAssets (56)Timeline Frame 1Symbol 210 as "RadioTrueUp"
ExportAssets (56)Timeline Frame 1Symbol 211 as "RadioButtonAssets"
ExportAssets (56)Timeline Frame 1Symbol 212 as "RadioButton"
ExportAssets (56)Timeline Frame 1Symbol 212 as "RadioButton"
ExportAssets (56)Timeline Frame 1Symbol 220 as "DataProvider"
ExportAssets (56)Timeline Frame 1Symbol 221 as "DataSelector"
ExportAssets (56)Timeline Frame 1Symbol 222 as "SelectableRow"
ExportAssets (56)Timeline Frame 1Symbol 223 as "ScrollSelectList"
ExportAssets (56)Timeline Frame 1Symbol 225 as "MenuBranchDisabled"
ExportAssets (56)Timeline Frame 1Symbol 227 as "MenuBranchEnabled"
ExportAssets (56)Timeline Frame 1Symbol 229 as "MenuCheckDisabled"
ExportAssets (56)Timeline Frame 1Symbol 231 as "MenuCheckEnabled"
ExportAssets (56)Timeline Frame 1Symbol 233 as "MenuRadioDisabled"
ExportAssets (56)Timeline Frame 1Symbol 235 as "MenuRadioEnabled"
ExportAssets (56)Timeline Frame 1Symbol 237 as "MenuSeparator"
ExportAssets (56)Timeline Frame 1Symbol 238 as "MenuAssets"
ExportAssets (56)Timeline Frame 1Symbol 239 as "MenuRow"
ExportAssets (56)Timeline Frame 1Symbol 240 as "TreeDataProvider"
ExportAssets (56)Timeline Frame 1Symbol 241 as "MenuDataProvider"
ExportAssets (56)Timeline Frame 1Symbol 242 as "Menu"
ExportAssets (56)Timeline Frame 1Symbol 242 as "Menu"
ExportAssets (56)Timeline Frame 1Symbol 250 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 251 as "AlertAssets"
ExportAssets (56)Timeline Frame 1Symbol 252 as "Alert"
ExportAssets (56)Timeline Frame 1Symbol 252 as "Alert"
ExportAssets (56)Timeline Frame 1Symbol 256 as "fireGlowClip"
ExportAssets (56)Timeline Frame 1Symbol 258 as "gradLow"
ExportAssets (56)Timeline Frame 1Symbol 260 as "grad"
ExportAssets (56)Timeline Frame 1Symbol 262 as "circ"
ExportAssets (56)Timeline Frame 1Symbol 265 as "stat"
ExportAssets (56)Timeline Frame 1Symbol 301 as "List"
ExportAssets (56)Timeline Frame 1Symbol 301 as "List"
ExportAssets (56)Timeline Frame 1Symbol 250 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 305 as "skinStore_mc"
ExportAssets (56)Timeline Frame 1Symbol 301 as "List"
ExportAssets (56)Timeline Frame 1Symbol 250 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 307 as "modeStore_mc"
ExportAssets (56)Timeline Frame 1Symbol 301 as "List"
ExportAssets (56)Timeline Frame 1Symbol 250 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 250 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 308 as "itemStore_mc"
ExportAssets (56)Timeline Frame 1Symbol 310 as "moneySign"
ExportAssets (56)Timeline Frame 1Symbol 312 as "baseball"
ExportAssets (56)Timeline Frame 1Symbol 314 as "exclamation"
ExportAssets (56)Timeline Frame 1Symbol 316 as "bowlball"
ExportAssets (56)Timeline Frame 1Symbol 320 as "TextInput"
ExportAssets (56)Timeline Frame 1Symbol 321 as "ComboBase"
ExportAssets (56)Timeline Frame 1Symbol 326 as "ComboDownArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 327 as "ComboDownArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 329 as "ComboThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 330 as "ComboDownArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 331 as "ComboDownArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 332 as "ComboAssets"
ExportAssets (56)Timeline Frame 1Symbol 333 as "ComboBox"
ExportAssets (56)Timeline Frame 1Symbol 333 as "ComboBox"
ExportAssets (56)Timeline Frame 1Symbol 338 as "StepDownArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 340 as "StepThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 341 as "StepDownArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 342 as "StepDownArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 343 as "StepDownArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 345 as "StepUpArrowDisabled"
ExportAssets (56)Timeline Frame 1Symbol 346 as "StepUpArrowDown"
ExportAssets (56)Timeline Frame 1Symbol 347 as "StepUpArrowOver"
ExportAssets (56)Timeline Frame 1Symbol 348 as "StepUpArrowUp"
ExportAssets (56)Timeline Frame 1Symbol 350 as "StepTrack"
ExportAssets (56)Timeline Frame 1Symbol 351 as "NumericStepperAssets"
ExportAssets (56)Timeline Frame 1Symbol 352 as "NumericStepper"
ExportAssets (56)Timeline Frame 1Symbol 352 as "NumericStepper"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 352 as "NumericStepper"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 333 as "ComboBox"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 354 as "physicsTweek_mc"
ExportAssets (56)Timeline Frame 1Symbol 356 as "star"
ExportAssets (56)Timeline Frame 1Symbol 358 as "smile"
ExportAssets (56)Timeline Frame 1Symbol 360 as "noExplode"
ExportAssets (56)Timeline Frame 1Symbol 362 as "grenade"
ExportAssets (56)Timeline Frame 1Symbol 364 as "questionMark"
ExportAssets (56)Timeline Frame 1Symbol 368 as "mine"
ExportAssets (56)Timeline Frame 1Symbol 370 as "fireGlowClipLow"
ExportAssets (56)Timeline Frame 1Symbol 377 as "flame"
ExportAssets (56)Timeline Frame 1Symbol 383 as "smoke"
ExportAssets (56)Timeline Frame 1Symbol 384 as "smokeBitmap"
ExportAssets (56)Timeline Frame 1Symbol 388 as "bubbleExclame"
ExportAssets (56)Timeline Frame 1Symbol 388 as "bubbleExclame"
ExportAssets (56)Timeline Frame 1Symbol 390 as "flameSymbol"
ExportAssets (56)Timeline Frame 1Symbol 394 as "fireball"
ExportAssets (56)Timeline Frame 1Symbol 396 as "bouncyball"
ExportAssets (56)Timeline Frame 1Symbol 398 as "smokeLow"
ExportAssets (56)Timeline Frame 1Symbol 404 as "debris"
ExportAssets (56)Timeline Frame 1Symbol 406 as "missile"
ExportAssets (56)Timeline Frame 1Symbol 408 as "molotov"
ExportAssets (56)Timeline Frame 1Symbol 410 as "zapGraphic"
ExportAssets (56)Timeline Frame 1Symbol 412 as "beCareful"
ExportAssets (56)Timeline Frame 1Symbol 412 as "beCareful"
ExportAssets (56)Timeline Frame 1Symbol 416 as "noZap"
ExportAssets (56)Timeline Frame 1Symbol 418 as "bored"
ExportAssets (56)Timeline Frame 1Symbol 421 as "CheckFalseDisabled"
ExportAssets (56)Timeline Frame 1Symbol 423 as "CheckThemeColor1"
ExportAssets (56)Timeline Frame 1Symbol 425 as "CheckFalseDown"
ExportAssets (56)Timeline Frame 1Symbol 426 as "CheckFalseOver"
ExportAssets (56)Timeline Frame 1Symbol 428 as "CheckFalseUp"
ExportAssets (56)Timeline Frame 1Symbol 430 as "CheckTrueDisabled"
ExportAssets (56)Timeline Frame 1Symbol 431 as "CheckTrueDown"
ExportAssets (56)Timeline Frame 1Symbol 432 as "CheckTrueOver"
ExportAssets (56)Timeline Frame 1Symbol 433 as "CheckTrueUp"
ExportAssets (56)Timeline Frame 1Symbol 434 as "CheckBoxAssets"
ExportAssets (56)Timeline Frame 1Symbol 435 as "CheckBox"
ExportAssets (56)Timeline Frame 1Symbol 435 as "CheckBox"
ExportAssets (56)Timeline Frame 1Symbol 301 as "List"
ExportAssets (56)Timeline Frame 1Symbol 250 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 250 as "TextArea"
ExportAssets (56)Timeline Frame 1Symbol 301 as "List"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 320 as "TextInput"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 435 as "CheckBox"
ExportAssets (56)Timeline Frame 1Symbol 437 as "script_mc"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 320 as "TextInput"
ExportAssets (56)Timeline Frame 1Symbol 320 as "TextInput"
ExportAssets (56)Timeline Frame 1Symbol 85 as "Button"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 304 as "Label"
ExportAssets (56)Timeline Frame 1Symbol 507 as "customFace_mc"
ExportAssets (56)Timeline Frame 1Symbol 509 as "chain"
ExportAssets (56)Timeline Frame 1Symbol 521 as "baby"
ExportAssets (56)Timeline Frame 1Symbol 525 as "about_mc"
ExportAssets (56)Timeline Frame 1Symbol 528 as "text_mc"
ExportAssets (56)Timeline Frame 1Symbol 530 as "ScrollPane"
ExportAssets (56)Timeline Frame 1Symbol 530 as "ScrollPane"
ExportAssets (56)Timeline Frame 1Symbol 530 as "ScrollPane"
ExportAssets (56)Timeline Frame 1Symbol 531 as "stats_mc"
ExportAssets (56)Timeline Frame 1Symbol 533 as "statsListing_mc"
ExportAssets (56)Timeline Frame 1Symbol 537 as "gore"
ExportAssets (56)Timeline Frame 1Symbol 542 as "radio"
ExportAssets (56)Timeline Frame 1Symbol 546 as "orb"
ExportAssets (56)Timeline Frame 1Symbol 549 as "circleFire"
ExportAssets (56)Timeline Frame 1Symbol 554 as "vortex"
ExportAssets (56)Timeline Frame 1Symbol 556 as "MenuBarItem"
ExportAssets (56)Timeline Frame 1Symbol 557 as "ActivatorSkin"
ExportAssets (56)Timeline Frame 1Symbol 559 as "MenuBarBackLeft"
ExportAssets (56)Timeline Frame 1Symbol 561 as "MenuBarBackMiddle"
ExportAssets (56)Timeline Frame 1Symbol 563 as "MenuBarBackRight"
ExportAssets (56)Timeline Frame 1Symbol 564 as "MenuBarAssets"
ExportAssets (56)Timeline Frame 1Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 1Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 1Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 1Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 1Symbol 574 as "border"
ExportAssets (56)Timeline Frame 1Symbol 574 as "border"
ExportAssets (56)Timeline Frame 1Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 1Symbol 243 as "__Packages.mx.managers.PopUpManager"
ExportAssets (56)Timeline Frame 1Symbol 53 as "__Packages.mx.core.UIObject"
ExportAssets (56)Timeline Frame 1Symbol 166 as "__Packages.mx.skins.SkinElement"
ExportAssets (56)Timeline Frame 1Symbol 167 as "__Packages.mx.styles.CSSTextStyles"
ExportAssets (56)Timeline Frame 1Symbol 169 as "__Packages.mx.styles.CSSStyleDeclaration"
ExportAssets (56)Timeline Frame 1Symbol 168 as "__Packages.mx.styles.StyleManager"
ExportAssets (56)Timeline Frame 1Symbol 172 as "__Packages.mx.managers.DepthManager"
ExportAssets (56)Timeline Frame 1Symbol 185 as "__Packages.mx.managers.SystemManager"
ExportAssets (56)Timeline Frame 1Symbol 173 as "__Packages.mx.events.EventDispatcher"
ExportAssets (56)Timeline Frame 1Symbol 54 as "__Packages.mx.core.UIComponent"
ExportAssets (56)Timeline Frame 1Symbol 55 as "__Packages.mx.core.View"
ExportAssets (56)Timeline Frame 1Symbol 170 as "__Packages.mx.skins.Border"
ExportAssets (56)Timeline Frame 1Symbol 171 as "__Packages.mx.skins.RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 175 as "__Packages.mx.core.ExternalContent"
ExportAssets (56)Timeline Frame 1Symbol 174 as "__Packages.mx.events.UIEventDispatcher"
ExportAssets (56)Timeline Frame 1Symbol 56 as "__Packages.mx.core.ScrollView"
ExportAssets (56)Timeline Frame 1Symbol 179 as "__Packages.mx.controls.scrollClasses.ScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 176 as "__Packages.mx.skins.CustomBorder"
ExportAssets (56)Timeline Frame 1Symbol 177 as "__Packages.mx.controls.scrollClasses.ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 178 as "__Packages.mx.controls.SimpleButton"
ExportAssets (56)Timeline Frame 1Symbol 57 as "__Packages.mx.containers.Window"
ExportAssets (56)Timeline Frame 1Symbol 247 as "__Packages.mx.controls.Alert"
ExportAssets (56)Timeline Frame 1Symbol 254 as "__Packages.mx.controls.alertClasses.AlertForm"
ExportAssets (56)Timeline Frame 1Symbol 253 as "__Packages.mx.controls.TextArea"
ExportAssets (56)Timeline Frame 1Symbol 181 as "__Packages.mx.controls.Button"
ExportAssets (56)Timeline Frame 1Symbol 180 as "__Packages.mx.controls.HScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 182 as "__Packages.mx.skins.ColoredSkinElement"
ExportAssets (56)Timeline Frame 1Symbol 183 as "__Packages.mx.core.ext.UIObjectExtensions"
ExportAssets (56)Timeline Frame 1Symbol 184 as "__Packages.mx.skins.halo.Defaults"
ExportAssets (56)Timeline Frame 1Symbol 186 as "__Packages.mx.managers.FocusManager"
ExportAssets (56)Timeline Frame 1Symbol 187 as "__Packages.mx.skins.halo.FocusRect"
ExportAssets (56)Timeline Frame 1Symbol 188 as "__Packages.mx.managers.OverlappedWindows"
ExportAssets (56)Timeline Frame 1Symbol 189 as "__Packages.mx.styles.CSSSetStyle"
ExportAssets (56)Timeline Frame 1Symbol 190 as "__Packages.mx.core.ext.UIComponentExtensions"
ExportAssets (56)Timeline Frame 1Symbol 191 as "__Packages.mx.skins.halo.RectBorder"
ExportAssets (56)Timeline Frame 1Symbol 192 as "__Packages.mx.skins.halo.ButtonSkin"
ExportAssets (56)Timeline Frame 1Symbol 193 as "__Packages.mx.controls.VScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 194 as "__Packages.mx.controls.UIScrollBar"
ExportAssets (56)Timeline Frame 1Symbol 196 as "__Packages.mx.controls.RadioButton"
ExportAssets (56)Timeline Frame 1Symbol 213 as "__Packages.mx.controls.RadioButtonGroup"
ExportAssets (56)Timeline Frame 1Symbol 214 as "__Packages.mx.controls.listclasses.DataSelector"
ExportAssets (56)Timeline Frame 1Symbol 215 as "__Packages.mx.controls.listclasses.DataProvider"
ExportAssets (56)Timeline Frame 1Symbol 216 as "__Packages.mx.controls.listclasses.ScrollSelectList"
ExportAssets (56)Timeline Frame 1Symbol 217 as "__Packages.mx.controls.treeclasses.TreeDataProvider"
ExportAssets (56)Timeline Frame 1Symbol 218 as "__Packages.mx.controls.menuclasses.MenuDataProvider"
ExportAssets (56)Timeline Frame 1Symbol 219 as "__Packages.mx.controls.Menu"
ExportAssets (56)Timeline Frame 1Symbol 244 as "__Packages.mx.effects.Tween"
ExportAssets (56)Timeline Frame 1Symbol 245 as "__Packages.mx.controls.listclasses.SelectableRow"
ExportAssets (56)Timeline Frame 1Symbol 246 as "__Packages.mx.controls.menuclasses.MenuRow"
ExportAssets (56)Timeline Frame 1Symbol 300 as "__Packages.mx.controls.List"
ExportAssets (56)Timeline Frame 1Symbol 302 as "__Packages.mx.controls.Label"
ExportAssets (56)Timeline Frame 1Symbol 317 as "__Packages.mx.controls.ComboBase"
ExportAssets (56)Timeline Frame 1Symbol 318 as "__Packages.mx.controls.ComboBox"
ExportAssets (56)Timeline Frame 1Symbol 334 as "__Packages.mx.controls.TextInput"
ExportAssets (56)Timeline Frame 1Symbol 335 as "__Packages.mx.controls.NumericStepper"
ExportAssets (56)Timeline Frame 1Symbol 419 as "__Packages.mx.controls.CheckBox"
ExportAssets (56)Timeline Frame 1Symbol 529 as "__Packages.mx.containers.ScrollPane"
ExportAssets (56)Timeline Frame 1Symbol 555 as "__Packages.mx.controls.MenuBar"
ExportAssets (56)Timeline Frame 1Symbol 566 as "__Packages.mx.skins.halo.ActivatorSkin"
ExportAssets (56)Timeline Frame 1Symbol 567 as "__Packages.mx.controls.menuclasses.MenuBarItem"
ExportAssets (56)Timeline Frame 2Symbol 574 as "border"
ExportAssets (56)Timeline Frame 2Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 3Symbol 574 as "border"
ExportAssets (56)Timeline Frame 3Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 4Symbol 574 as "border"
ExportAssets (56)Timeline Frame 4Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 5Symbol 574 as "border"
ExportAssets (56)Timeline Frame 5Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 6Symbol 574 as "border"
ExportAssets (56)Timeline Frame 6Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 7Symbol 574 as "border"
ExportAssets (56)Timeline Frame 7Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 8Symbol 574 as "border"
ExportAssets (56)Timeline Frame 8Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 9Symbol 574 as "border"
ExportAssets (56)Timeline Frame 9Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 10Symbol 574 as "border"
ExportAssets (56)Timeline Frame 10Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 11Symbol 574 as "border"
ExportAssets (56)Timeline Frame 11Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 12Symbol 574 as "border"
ExportAssets (56)Timeline Frame 12Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 12Symbol 581 as "shock"
ExportAssets (56)Timeline Frame 12Symbol 52 as "radioMusic"
ExportAssets (56)Timeline Frame 12Symbol 582 as "explosion"
ExportAssets (56)Timeline Frame 12Symbol 583 as "burnball"
ExportAssets (56)Timeline Frame 12Symbol 584 as "register"
ExportAssets (56)Timeline Frame 12Symbol 585 as "beeper"
ExportAssets (56)Timeline Frame 12Symbol 586 as "punch1"
ExportAssets (56)Timeline Frame 12Symbol 588 as "punch3"
ExportAssets (56)Timeline Frame 12Symbol 589 as "punch2"
ExportAssets (56)Timeline Frame 12Symbol 590 as "punch4"
ExportAssets (56)Timeline Frame 13Symbol 574 as "border"
ExportAssets (56)Timeline Frame 13Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 13Symbol 591 as "nap-dang"
ExportAssets (56)Timeline Frame 14Symbol 574 as "border"
ExportAssets (56)Timeline Frame 14Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 15Symbol 574 as "border"
ExportAssets (56)Timeline Frame 15Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 15Symbol 593 as "nd-fidiot"
ExportAssets (56)Timeline Frame 16Symbol 574 as "border"
ExportAssets (56)Timeline Frame 16Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 16Symbol 594 as "nd-goforit"
ExportAssets (56)Timeline Frame 16Symbol 596 as "nd-talons"
ExportAssets (56)Timeline Frame 17Symbol 574 as "border"
ExportAssets (56)Timeline Frame 17Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 17Symbol 597 as "nd-gross"
ExportAssets (56)Timeline Frame 17Symbol 598 as "nd-warrior"
ExportAssets (56)Timeline Frame 17Symbol 599 as "nd-tina"
ExportAssets (56)Timeline Frame 18Symbol 574 as "border"
ExportAssets (56)Timeline Frame 18Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 18Symbol 601 as "nd-lipshurt"
ExportAssets (56)Timeline Frame 18Symbol 602 as "nd-ugh"
ExportAssets (56)Timeline Frame 19Symbol 574 as "border"
ExportAssets (56)Timeline Frame 19Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 19Symbol 603 as "nd-hello"
ExportAssets (56)Timeline Frame 19Symbol 605 as "nd-what"
ExportAssets (56)Timeline Frame 20Symbol 574 as "border"
ExportAssets (56)Timeline Frame 20Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 20Symbol 606 as "nd-idiot"
ExportAssets (56)Timeline Frame 20Symbol 607 as "nd-retarded"
ExportAssets (56)Timeline Frame 20Symbol 608 as "nd-yes"
ExportAssets (56)Timeline Frame 21Symbol 574 as "border"
ExportAssets (56)Timeline Frame 21Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 21Symbol 609 as "nd-dontfeelgood"
ExportAssets (56)Timeline Frame 21Symbol 610 as "nd-suchanidiot"
ExportAssets (56)Timeline Frame 22Symbol 574 as "border"
ExportAssets (56)Timeline Frame 22Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 22Symbol 611 as "nd-killertime"
ExportAssets (56)Timeline Frame 22Symbol 612 as "nd-sweet"
ExportAssets (56)Timeline Frame 23Symbol 574 as "border"
ExportAssets (56)Timeline Frame 23Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 24Symbol 574 as "border"
ExportAssets (56)Timeline Frame 24Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 25Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 25Symbol 574 as "border"
ExportAssets (56)Timeline Frame 25Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 25Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 26Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 26Symbol 574 as "border"
ExportAssets (56)Timeline Frame 26Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 26Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 27Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 27Symbol 574 as "border"
ExportAssets (56)Timeline Frame 27Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 27Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 28Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 28Symbol 574 as "border"
ExportAssets (56)Timeline Frame 28Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 28Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 29Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 29Symbol 574 as "border"
ExportAssets (56)Timeline Frame 29Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 29Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 30Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 30Symbol 574 as "border"
ExportAssets (56)Timeline Frame 30Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 30Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 31Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 31Symbol 574 as "border"
ExportAssets (56)Timeline Frame 31Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 31Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 32Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 32Symbol 574 as "border"
ExportAssets (56)Timeline Frame 32Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 32Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 33Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 33Symbol 574 as "border"
ExportAssets (56)Timeline Frame 33Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 33Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 34Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 34Symbol 574 as "border"
ExportAssets (56)Timeline Frame 34Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 34Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 35Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 35Symbol 574 as "border"
ExportAssets (56)Timeline Frame 35Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 35Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 36Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 36Symbol 574 as "border"
ExportAssets (56)Timeline Frame 36Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 36Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 37Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 37Symbol 574 as "border"
ExportAssets (56)Timeline Frame 37Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 37Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 38Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 38Symbol 574 as "border"
ExportAssets (56)Timeline Frame 38Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 38Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 39Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 39Symbol 574 as "border"
ExportAssets (56)Timeline Frame 39Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 39Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 40Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 40Symbol 574 as "border"
ExportAssets (56)Timeline Frame 40Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 40Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 41Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 41Symbol 574 as "border"
ExportAssets (56)Timeline Frame 41Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 41Symbol 571 as "loadingLoadingScreen"
ExportAssets (56)Timeline Frame 42Symbol 569 as "fister"
ExportAssets (56)Timeline Frame 42Symbol 574 as "border"
ExportAssets (56)Timeline Frame 42Symbol 565 as "MenuBar"
ExportAssets (56)Timeline Frame 42Symbol 571 as "loadingLoadingScreen"

Labels

"gameLoad"Frame 1
"Modders <-- start here"Frame 1
"noMansLand"Frame 12
"gameArea"Frame 25
"open"Symbol 278 MovieClip Frame 1
"closed"Symbol 278 MovieClip Frame 15
"normal"Symbol 284 MovieClip Frame 1
"talking"Symbol 284 MovieClip Frame 8
"normal"Symbol 291 MovieClip Frame 1
"talking"Symbol 291 MovieClip Frame 9
"default"Symbol 299 MovieClip Frame 1
"defaultng"Symbol 299 MovieClip Frame 10
"teletubby"Symbol 299 MovieClip Frame 20
"insider"Symbol 299 MovieClip Frame 29
"pirate"Symbol 299 MovieClip Frame 38
"goth"Symbol 299 MovieClip Frame 47
"strawberry"Symbol 299 MovieClip Frame 55
"raspberry"Symbol 299 MovieClip Frame 64
"rep"Symbol 299 MovieClip Frame 73
"dem"Symbol 299 MovieClip Frame 81
"baby"Symbol 299 MovieClip Frame 87
"gates"Symbol 299 MovieClip Frame 95
"tom"Symbol 299 MovieClip Frame 101
"wade"Symbol 299 MovieClip Frame 106
"nap"Symbol 299 MovieClip Frame 112
"default"Symbol 474 MovieClip Frame 1
"defaultng"Symbol 474 MovieClip Frame 9
"teletubby"Symbol 474 MovieClip Frame 21
"insider"Symbol 474 MovieClip Frame 31
"pirate"Symbol 474 MovieClip Frame 41
"goth"Symbol 474 MovieClip Frame 50
"strawberry"Symbol 474 MovieClip Frame 58
"raspberry"Symbol 474 MovieClip Frame 67
"rep"Symbol 474 MovieClip Frame 76
"dem"Symbol 474 MovieClip Frame 82
"baby"Symbol 474 MovieClip Frame 88
"gates"Symbol 474 MovieClip Frame 94
"tom"Symbol 474 MovieClip Frame 100
"nap"Symbol 474 MovieClip Frame 105
"default"Symbol 483 MovieClip Frame 1
"defaultng"Symbol 483 MovieClip Frame 8
"teletubby"Symbol 483 MovieClip Frame 18
"insider"Symbol 483 MovieClip Frame 27
"pirate"Symbol 483 MovieClip Frame 34
"goth"Symbol 483 MovieClip Frame 41
"strawberry"Symbol 483 MovieClip Frame 49
"raspberry"Symbol 483 MovieClip Frame 58
"rep"Symbol 483 MovieClip Frame 67
"dem"Symbol 483 MovieClip Frame 73
"baby"Symbol 483 MovieClip Frame 79
"gates"Symbol 483 MovieClip Frame 84
"tom"Symbol 483 MovieClip Frame 89
"nap"Symbol 483 MovieClip Frame 95
"default"Symbol 490 MovieClip Frame 1
"defaultng"Symbol 490 MovieClip Frame 8
"teletubby"Symbol 490 MovieClip Frame 17
"insider"Symbol 490 MovieClip Frame 26
"pirate"Symbol 490 MovieClip Frame 34
"goth"Symbol 490 MovieClip Frame 41
"strawberry"Symbol 490 MovieClip Frame 49
"raspberry"Symbol 490 MovieClip Frame 58
"rep"Symbol 490 MovieClip Frame 67
"dem"Symbol 490 MovieClip Frame 73
"baby"Symbol 490 MovieClip Frame 78
"gates"Symbol 490 MovieClip Frame 83
"tom"Symbol 490 MovieClip Frame 89
"nap"Symbol 490 MovieClip Frame 94
"default"Symbol 498 MovieClip Frame 1
"defaultng"Symbol 498 MovieClip Frame 8
"teletubby"Symbol 498 MovieClip Frame 17
"tom"Symbol 498 MovieClip Frame 25
"pirate"Symbol 498 MovieClip Frame 33
"goth"Symbol 498 MovieClip Frame 40
"strawberry"Symbol 498 MovieClip Frame 47
"raspberry"Symbol 498 MovieClip Frame 56
"rep"Symbol 498 MovieClip Frame 65
"dem"Symbol 498 MovieClip Frame 70
"baby"Symbol 498 MovieClip Frame 76
"gates"Symbol 498 MovieClip Frame 81
"nap"Symbol 498 MovieClip Frame 88
"default"Symbol 501 MovieClip Frame 1
"defaultng"Symbol 501 MovieClip Frame 8
"teletubby"Symbol 501 MovieClip Frame 17
"tom"Symbol 501 MovieClip Frame 28
"pirate"Symbol 501 MovieClip Frame 36
"goth"Symbol 501 MovieClip Frame 44
"strawberry"Symbol 501 MovieClip Frame 51
"raspberry"Symbol 501 MovieClip Frame 61
"rep"Symbol 501 MovieClip Frame 69
"dem"Symbol 501 MovieClip Frame 75
"baby"Symbol 501 MovieClip Frame 80
"gates"Symbol 501 MovieClip Frame 85
"nap"Symbol 501 MovieClip Frame 90
"normal"Symbol 574 MovieClip [border] Frame 1
"ng"Symbol 574 MovieClip [border] Frame 11
"normal"Symbol 579 MovieClip Frame 1
"ng"Symbol 579 MovieClip Frame 15
"off"Symbol 620 MovieClip Frame 1
"on"Symbol 620 MovieClip Frame 9
"normal"Symbol 644 MovieClip Frame 1
"hover"Symbol 644 MovieClip Frame 8
"down"Symbol 644 MovieClip Frame 14
"upLeft"Symbol 675 MovieClip Frame 1
"upRight"Symbol 675 MovieClip Frame 10
"downLeft"Symbol 675 MovieClip Frame 20
"downRight"Symbol 675 MovieClip Frame 30




http://swfchan.com/3/14921/info.shtml
Created: 3/6 -2019 05:10:42 Last modified: 10/5 -2021 20:17:15 Server time: 03/05 -2024 05:05:30