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

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

Pet feeding game.swf

This is the info page for
Flash #29961

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


Text
<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"> </FONT></P>

000%

The aim of this game is to feed the four cute pets.
Attention: There is a monster that eats up the food !
Choose the food by clicking the symbols at the top right
corner of the playing field.
As soon as the food is above the pet, this can be fed to the
pet by clicking. This gives up to 4 points. If a heart appears,
there are double points.
There is point deduction if the pet is missed or the wrong
food is given.
If a pet gets not enough fodder, it starves to death. The
green bar indicates, how enough a pet has.
The game gets faster with every level. Try as long as
possible to play. Good luck !

Markus Eichenberger's pet feeding

Name

<Enter your name here>

Scores:

Level

Time

Points

0

0

0

Miss

0

0

0

0

0

0

0

Points for feeding pets:

Ginueapig 4x  Bunny 3x -->

Bunny 3x  Ginueapig 2x -->

Cat 2x  Dog 1x -->

Dog 2x  Cat 1x -->

Points

Time

Level

Name

Your score:

ActionScript [AS1/AS2]

Frame 1
function InitSharedObject() { soSettings = SharedObject.getLocal("PetFeedingSettings"); if (soSettings.data.fileCollection == undefined) { soSettings.data.fileCollection = new Object(); } soScores = SharedObject.getLocal("PetFeedingScores"); if (soScores.data.fileCollection == undefined) { soScores.data.fileCollection = new Object(); } } function SaveSettings() { arrSettings[0] = _root.txtPlayername; with (soSettings.data) { if (fileCollection.Settings == undefined) { fileCollection.Settings = new Object(); } fileCollection.Settings.content = arrSettings; } } function LoadSettings() { with (soSettings.data) { if (fileCollection.Settings == undefined) { CreateSettingsArray(); } else { arrSettings = fileCollection.Settings.content; } } } function CreateSettingsArray() { arrSettings = new Array(10); arrSettings[0] = "<Enter your name here>"; arrSettings[1] = "0"; arrSettings[2] = "true"; arrSettings[3] = ""; arrSettings[4] = ""; arrSettings[5] = ""; arrSettings[6] = ""; arrSettings[7] = ""; arrSettings[8] = ""; arrSettings[9] = ""; } function CreateScoresArray() { arrScores = new Array(); } function EnableButtons() { setProperty("btnCont", _visible , isFinished); setProperty("btnHighscores", _visible , isFinished); setProperty("lblName", _visible , isFinished); setProperty("txtName", _visible , isFinished); _root.txtName.tabIndex = 0; _root.btnHighscores.tabIndex = 1; _root.btnCont.tabIndex = 2; } function SaveHighscore() { with (soScores.data) { if (fileCollection.Highscore == undefined) { fileCollection.Highscore = new Object(); } fileCollection.Highscore.content = arrScores; trace("Highscore saved"); } } function LoadHighscore() { with (soScores.data) { if (fileCollection.Highscore == undefined) { CreateScoresArray(); } else { arrScores = fileCollection.Highscore.content; } } trace("Score loaded size=" add arrScores.length); } function GetFormatedScore(o) { var s1 = FormatString(o.points, 7); var s2 = FormatString(o.name, 25); var s3 = FormatString(o.level, 6); var s4 = FormatString(o.time, 9); var s5 = FormatString(o.date, 17); return((((s1 + s2) + s3) + s4) + s5); } function FormatString(s, n) { while (s.length < (n - 1)) { s = s + " "; } s = s.substr(0, n - 1); s = s + " "; return(s); } function AddScoreItem(gamePoints, playersName, gameLevel, gameTime, gameDate) { arrScores.push({points:gamePoints, name:playersName, level:gameLevel, time:gameTime, date:gameDate}); } function GetScores() { var header = {points:"Points", name:"Name", level:"Level", time:"Time", date:"Date"}; var score = GetFormatedScore(header); arrScores.sort(ComparePoints); while (arrScores.length > 500) { var dummy = arrScores.pop(); } var i = 0; while (i < arrScores.length) { score = (score + newline) + GetFormatedScore(arrScores[i]); i++; } return(score); } function ComparePoints(a, b) { var points1 = (a.points * 1); var points2 = (b.points * 1); if (points1 > points2) { return(-1); } if (points1 < points2) { return(1); } return(0); } if (!started) { started = true; preloadState = ""; isFinished = 0; phpCounter = 0; modeHighscore = 0; if (_level0.highscoremode == "php") { modeHighscore = 1; } InitSharedObject(); LoadSettings(); LoadHighscore(); }
Frame 2
function OnBtnCont() { SaveSettings(); gotoAndPlay (5); } function OnBtnHighscores() { SaveSettings(); gotoAndPlay (4); } function OnBtnBack() { gotoAndPlay (1); } EnableButtons(); percent = Math.round((getBytesLoaded() / getBytesTotal()) * 100); if (getBytesLoaded() == getBytesTotal()) { isFinished = 1; EnableButtons(); _root.txtPlayername = arrSettings[0]; } if (isFinished == 0) { _root.txtLoaded = percent + "%"; } else { _root.txtLoaded = ""; } play();
Instance of Symbol 242 MovieClip [FPushButtonSymbol] "btnCont" in Frame 2
//component parameters onClipEvent (initialize) { label = "Cont"; clickHandler = "onBtnCont"; }
Instance of Symbol 242 MovieClip [FPushButtonSymbol] "btnHighscores" in Frame 2
//component parameters onClipEvent (initialize) { label = "Scores"; clickHandler = "OnBtnHighscores"; }
Frame 3
if (isFinished == 1) { stop(); } else { prevFrame(); }
Frame 4
txtScores = "Loading highscore, please wait ..."; if (_root.modeHighscore == 0) { txtScores = GetScores(); } if (_root.modeHighscore == 1) { loadVariables ("get_score.php?count=500&" + (_root.phpCounter++), "", "POST"); } stop();
Instance of Symbol 242 MovieClip [FPushButtonSymbol] in Frame 4
//component parameters onClipEvent (initialize) { label = "Back"; clickHandler = "onBtnBack"; }
Frame 5
function InitGame() { _root.InitSharedObject(); _root.LoadSettings(); arrPoints = new Array(4); arrPets = new Array(4); arrLove = new Array(4); arrHungry = new Array(4); arrHungryX = new Array(4); arrFeed = new Array(40); i = 0; while (i < 40) { arrFeed[i] = new Array(4); i++; } hungryDogX = getProperty("hungryDog", _x); hungryCatX = getProperty("hungryCat", _x); hungryBunnyX = getProperty("hungryBunny", _x); hungryGinueapigX = getProperty("hungryGinueapig", _x); monsterAlpha = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 20, 30, 40, 50, 60, 70, 180, 90, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); } function ResetGame() { timeSlice = 10; levelSwitch = 400; hungrySwitch = 25; loveSwitch = 20; gameIsRunning = false; gameLevel = 0; levelSwitchCounter = 0; timeOld = 0; timeAct = 0; dateStart = new Date(); endOfGameValue = 0; arrPoints[0] = 0; arrPoints[1] = 0; arrPoints[2] = 0; arrPoints[3] = 0; arrPoints[4] = 0; arrPoints[5] = 0; arrPets[0] = 1; arrPets[1] = 1; arrPets[2] = 1; arrPets[3] = 1; hungryMax = 54; hungryCount = 0; arrHungry[0] = 26; arrHungry[1] = 26; arrHungry[2] = 26; arrHungry[3] = 26; arrHungryX[0] = _root.hungryDogX; arrHungryX[1] = _root.hungryCatX; arrHungryX[2] = _root.hungryBunnyX; arrHungryX[3] = _root.hungryGinueapigX; loveCount = 0; loveIndex = 0; arrLove[0] = 0; arrLove[1] = 0; arrLove[2] = 0; arrLove[3] = 0; monsterPosXmin = 110; monsterPosXmax = 430; monsterStepX = 3; monsterPosX = monsterPosXmin; monsterPosY = 210; monsterIndex = 0; monsterIndexStep = 1; setProperty("monster", _x , _root.monsterPosX); setProperty("monster", _y , _root.monsterPosY); setProperty("monster", _alpha , _root.monsterAlpha); i = 0; while (i < 40) { arrFeed[i][0] = ""; arrFeed[i][1] = 0; arrFeed[i][2] = 0; arrFeed[i][3] = 0; i++; } i = 0; while (i < 10) { setProperty("bone" + i, _x , getProperty("bone", _x)); setProperty("bone" + i, _y , getProperty("bone", _y)); setProperty("fish" + i, _x , getProperty("fish", _x)); setProperty("fish" + i, _y , getProperty("fish", _y)); setProperty("carrot" + i, _x , getProperty("carrot", _x)); setProperty("carrot" + i, _y , getProperty("carrot", _y)); setProperty("salad" + i, _x , getProperty("salad", _x)); setProperty("salad" + i, _y , getProperty("salad", _y)); i++; } xPos1 = 460; yPos1 = 220; xPos2 = 50; yPos2 = 300; xPos3 = 40; yPos3 = 300; xStep = 5; yStep = 5; setProperty("lblPoints1", _visible , true); setProperty("lblPoints2", _visible , true); setProperty("lblPoints3", _visible , true); setProperty("lblPoints4", _visible , true); setProperty("lblPoints5", _visible , true); _root.checkSound.setValue(_root.arrSettings[2]); DogSound = new Sound(); DogSound.attachSound("sndDog"); CatSound = new Sound(); CatSound.attachSound("sndCat"); BunnySound = new Sound(); BunnySound.attachSound("sndBunny"); GuineapigSound = new Sound(); GuineapigSound.attachSound("sndGuineapig"); MonsterSound = new Sound(); MonsterSound.attachSound("sndMonster"); TrashSound = new Sound(); TrashSound.attachSound("sndTrash"); FanfareSound = new Sound(); FanfareSound.attachSound("sndFanfare"); GameoverSound = new Sound(); GameoverSound.attachSound("sndGameover"); txtLevel = "0"; txtTime = "0"; txtPoints = "0"; txtDiff = "0"; pointsDog = _root.arrPoints[0]; pointsCat = _root.arrPoints[1]; pointsBunny = _root.arrPoints[2]; pointsGinueapig = _root.arrPoints[3]; pointsMonster = _root.arrPoints[4]; pointsTrash = _root.arrPoints[5]; } function OnBtnStart() { ResetGame(); gameIsRunning = true; ShowStatus(); } function OnCheckSound() { _root.arrSettings[2] = _root.checkSound.getValue(); _root.SaveSettings(); } function StopAllSounds() { _root.DogSound.stop(); _root.CatSound.stop(); _root.BunnySound.stop(); _root.GuineapigSound.stop(); _root.MonsterSound.stop(); _root.TrashSound.stop(); _root.FanfareSound.stop(); } if (!isNotFirstStart) { InitGame(); ResetGame(); ShowStatus(); isNotFirstStart = true; } function MoveMonster() { _root.monsterPosX = _root.monsterPosX + _root.monsterStepX; if ((_root.monsterPosX > _root.monsterPosXmax) || (_root.monsterPosX < _root.monsterPosXmin)) { _root.monsterStepX = _root.monsterStepX * -1; } setProperty("monster", _x , _root.monsterPosX); _root.monsterIndex = _root.monsterIndex + _root.monsterIndexStep; if (_root.monsterIndex >= (_root.monsterAlpha.length - 1)) { _root.monsterIndex = _root.monsterAlpha.length - 1; _root.monsterIndexStep = -1; } if (_root.monsterIndex < 0) { _root.monsterIndex = 0; _root.monsterIndexStep = 1; } setProperty("monster", _alpha , _root.monsterAlpha[_root.monsterIndex]); } function MoveFeed() { i = 0; while (i < 40) { if (_root.arrFeed[i][1] == -1) { _root.arrFeed[i][1] = 0; var feedId = (substring(_root.arrFeed[i][0], 0, length(_root.arrFeed[i][0]) - 1)); var xHome = getProperty(feedId, _x); var yHome = getProperty(feedId, _y); setProperty(_root.arrFeed[i][0], _x , xHome); setProperty(_root.arrFeed[i][0], _y , yHome); if (_root.gameLevel >= 9) { _root.arrPoints[5] = _root.arrPoints[5] + 2; } else { _root.arrPoints[5]++; } } if (_root.arrFeed[i][1] == 3) { _root.arrFeed[i][3] = _root.arrFeed[i][3] + _root.yStep; setProperty(_root.arrFeed[i][0], _y , _root.arrFeed[i][3]); if (_root.arrFeed[i][3] >= _root.yPos3) { MatchPet(i); _root.arrFeed[i][1] = 0; var feedId = (substring(_root.arrFeed[i][0], 0, length(_root.arrFeed[i][0]) - 1)); var xHome = getProperty(feedId, _x); var yHome = getProperty(feedId, _y); setProperty(_root.arrFeed[i][0], _x , xHome); setProperty(_root.arrFeed[i][0], _y , yHome); } } if (_root.arrFeed[i][1] == 2) { _root.arrFeed[i][3] = _root.arrFeed[i][3] + _root.yStep; setProperty(_root.arrFeed[i][0], _y , _root.arrFeed[i][3]); if (_root.arrFeed[i][3] >= _root.yPos2) { _root.arrFeed[i][1] = 0; var feedId = (substring(_root.arrFeed[i][0], 0, length(_root.arrFeed[i][0]) - 1)); var xHome = getProperty(feedId, _x); var yHome = getProperty(feedId, _y); setProperty(_root.arrFeed[i][0], _x , xHome); setProperty(_root.arrFeed[i][0], _y , yHome); if (_root.gameLevel >= 9) { _root.arrPoints[4] = _root.arrPoints[4] + 4; } else { _root.arrPoints[4]++; } if (_root.checkSound.getValue()) { _root.TrashSound.start(); } } } if (_root.arrFeed[i][1] == 1) { _root.arrFeed[i][2] = _root.arrFeed[i][2] - _root.xStep; setProperty(_root.arrFeed[i][0], _x , _root.arrFeed[i][2]); if (_root.arrFeed[i][2] <= _root.xPos2) { _root.arrFeed[i][1] = 2; } MatchMonster(i); } i++; } } function MatchPet(feedIndex) { var feedId = _root.arrFeed[feedIndex][0]; var wDog = (getProperty("dog", _width) / 2); var wCat = (getProperty("cat", _width) / 2); var wBunny = (getProperty("bunny", _width) / 2); var wGinueapig = (getProperty("ginueapig", _width) / 2); var xDog = Math.abs(getProperty(feedId, _x) - getProperty("dog", _x)); var xCat = Math.abs(getProperty(feedId, _x) - getProperty("cat", _x)); var xBunny = Math.abs(getProperty(feedId, _x) - getProperty("bunny", _x)); var xGinueapig = Math.abs(getProperty(feedId, _x) - getProperty("ginueapig", _x)); var feed = (substring(feedId, 0, length(feedId) - 1)); var hit = false; var bonusDog = 1; var bonusCat = 1; var bonusBunny = 1; var bonusGinueapig = 1; if (_root.arrLove[0] > 0) { bonusDog = 2; } if (_root.arrLove[1] > 0) { bonusCat = 2; } if (_root.arrLove[2] > 0) { bonusBunny = 2; } if (_root.arrLove[3] > 0) { bonusGinueapig = 2; } if ((xDog <= wDog) && (_root.arrPets[0] == 1)) { if (feed == "bone") { if (_root.arrHungry[0] <= _root.hungryMax) { _root.arrPoints[0] = _root.arrPoints[0] + (2 * bonusDog); _root.arrHungry[0] = _root.arrHungry[0] + (2 * bonusDog); if (_root.checkSound.getValue()) { _root.DogSound.start(); } } hit = true; } if (feed == "fish") { if (_root.arrHungry[0] <= _root.hungryMax) { _root.arrPoints[0] = _root.arrPoints[0] + (1 * bonusDog); _root.arrHungry[0] = _root.arrHungry[0] + (1 * bonusDog); if (_root.checkSound.getValue()) { _root.DogSound.start(); } } hit = true; } if (feed == "carrot") { _root.arrPoints[0] = _root.arrPoints[0] - 1; hit = true; } if (feed == "salad") { _root.arrPoints[0] = _root.arrPoints[0] - 1; hit = true; } } if ((xCat <= wCat) && (_root.arrPets[1] == 1)) { if (feed == "bone") { if (_root.arrHungry[1] <= _root.hungryMax) { _root.arrPoints[1] = _root.arrPoints[1] + (1 * bonusCat); _root.arrHungry[1] = _root.arrHungry[1] + (1 * bonusCat); if (_root.checkSound.getValue()) { _root.CatSound.start(); } } hit = true; } if (feed == "fish") { if (_root.arrHungry[1] <= _root.hungryMax) { _root.arrPoints[1] = _root.arrPoints[1] + (2 * bonusCat); _root.arrHungry[1] = _root.arrHungry[1] + (2 * bonusCat); if (_root.checkSound.getValue()) { _root.CatSound.start(); } } hit = true; } if (feed == "carrot") { _root.arrPoints[1] = _root.arrPoints[1] - 1; hit = true; } if (feed == "salad") { _root.arrPoints[1] = _root.arrPoints[1] - 1; hit = true; } } if ((xBunny <= wBunny) && (_root.arrPets[2] == 1)) { if (feed == "bone") { _root.arrPoints[2] = _root.arrPoints[2] - 1; hit = true; } if (feed == "fish") { _root.arrPoints[2] = _root.arrPoints[2] - 1; hit = true; } if (feed == "carrot") { if (_root.arrHungry[2] <= _root.hungryMax) { _root.arrPoints[2] = _root.arrPoints[2] + (3 * bonusBunny); _root.arrHungry[2] = _root.arrHungry[2] + (3 * bonusBunny); if (_root.checkSound.getValue()) { _root.BunnySound.start(); } } hit = true; } if (feed == "salad") { if (_root.arrHungry[2] <= _root.hungryMax) { _root.arrPoints[2] = _root.arrPoints[2] + (2 * bonusBunny); _root.arrHungry[2] = _root.arrHungry[2] + (2 * bonusBunny); if (_root.checkSound.getValue()) { _root.BunnySound.start(); } } hit = true; } } if ((xGinueapig <= wGinueapig) && (_root.arrPets[3] == 1)) { if (feed == "bone") { _root.arrPoints[3] = _root.arrPoints[3] - 1; hit = true; } if (feed == "fish") { _root.arrPoints[3] = _root.arrPoints[3] - 1; hit = true; } if (feed == "carrot") { if (_root.arrHungry[3] <= _root.hungryMax) { _root.arrPoints[3] = _root.arrPoints[3] + (3 * bonusGinueapig); _root.arrHungry[3] = _root.arrHungry[3] + (3 * bonusGinueapig); if (_root.checkSound.getValue()) { _root.GuineapigSound.start(); } } hit = true; } if (feed == "salad") { if (_root.arrHungry[3] <= _root.hungryMax) { _root.arrPoints[3] = _root.arrPoints[3] + (4 * bonusGinueapig); _root.arrHungry[3] = _root.arrHungry[3] + (4 * bonusGinueapig); if (_root.checkSound.getValue()) { _root.GuineapigSound.start(); } } hit = true; } } if (!hit) { if (_root.gameLevel >= 9) { _root.arrPoints[4] = _root.arrPoints[4] + 2; } else { _root.arrPoints[4]++; } if (_root.checkSound.getValue()) { _root.TrashSound.start(); } } } function ShowStatus() { setProperty("lblPoints1", _visible , false); setProperty("lblPoints2", _visible , false); setProperty("lblPoints3", _visible , false); setProperty("lblPoints4", _visible , false); setProperty("lblPoints5", _visible , false); _root.pointsDog = _root.arrPoints[0]; _root.pointsCat = _root.arrPoints[1]; _root.pointsBunny = _root.arrPoints[2]; _root.pointsGinueapig = _root.arrPoints[3]; _root.pointsTrash = _root.arrPoints[4]; _root.pointsMonster = _root.arrPoints[5]; _root.txtDiff = _root.arrPoints[4] + _root.arrPoints[5]; _root.txtPoints = ((_root.arrPoints[0] + _root.arrPoints[1]) + _root.arrPoints[2]) + _root.arrPoints[3]; _root.txtLevel = _root.gameLevel; var d = new Date(); var utc1 = Date.UTC(_root.dateStart.getFullYear(), _root.dateStart.getMonth(), _root.dateStart.getDay(), _root.dateStart.getHours(), _root.dateStart.getMinutes(), _root.dateStart.getSeconds()); var utc2 = Date.UTC(d.getFullYear(), d.getMonth(), d.getDay(), d.getHours(), d.getMinutes(), d.getSeconds()); var nTime = ((utc2 - utc1) / 1000); var h = Math.floor(nTime / 3600); var m = Math.floor((nTime - (h * 3600)) / 60); var s = Math.floor((nTime - (h * 3600)) - (m * 60)); if (length(h) == 1) { h = "0" + h; } if (length(m) == 1) { m = "0" + m; } if (length(s) == 1) { s = "0" + s; } _root.txtTime = (((h + ":") + m) + ":") + s; setProperty("hungryDog", _width , _root.arrHungry[0]); setProperty("hungryDog", _x , _root.arrHungryX[0] - ((_root.hungryMax - _root.arrHungry[0]) / 2)); setProperty("hungryCat", _width , _root.arrHungry[1]); setProperty("hungryCat", _x , _root.arrHungryX[1] - ((_root.hungryMax - _root.arrHungry[1]) / 2)); setProperty("hungryBunny", _width , _root.arrHungry[2]); setProperty("hungryBunny", _x , _root.arrHungryX[2] - ((_root.hungryMax - _root.arrHungry[2]) / 2)); setProperty("hungryGinueapig", _width , _root.arrHungry[3]); setProperty("hungryGinueapig", _x , _root.arrHungryX[3] - ((_root.hungryMax - _root.arrHungry[3]) / 2)); if (_root.arrPets[0] == 0) { setProperty("dog", _alpha , 0); } else { setProperty("dog", _alpha , 100); } if (_root.arrPets[1] == 0) { setProperty("cat", _alpha , 0); } else { setProperty("cat", _alpha , 100); } if (_root.arrPets[2] == 0) { setProperty("bunny", _alpha , 0); } else { setProperty("bunny", _alpha , 100); } if (_root.arrPets[3] == 0) { setProperty("ginueapig", _alpha , 0); } else { setProperty("ginueapig", _alpha , 100); } setProperty("heartDog", _alpha , _root.arrLove[0]); setProperty("heartCat", _alpha , _root.arrLove[1]); setProperty("heartBunny", _alpha , _root.arrLove[2]); setProperty("heartGinueapig", _alpha , _root.arrLove[3]); } function CheckFeed(feedId, feedIndex) { if (_root.gameIsRunning) { if (1 == _root.arrFeed[feedIndex][1]) { _root.arrFeed[feedIndex][1] = 3; } if (0 == _root.arrFeed[feedIndex][1]) { _root.arrFeed[feedIndex][0] = feedId; _root.arrFeed[feedIndex][1] = 1; _root.arrFeed[feedIndex][2] = _root.xPos1; _root.arrFeed[feedIndex][3] = _root.yPos1; setProperty(feedId, _x , _root.arrFeed[feedIndex][2]); setProperty(feedId, _y , _root.arrFeed[feedIndex][3]); } } } function MatchMonster(feedIndex) { var feedId = _root.arrFeed[feedIndex][0]; var aMonster = getProperty("monster", _alpha); var wMonster = (getProperty("monster", _width) / 2); var xMonster = getProperty("monster", _x); var xFeed = getProperty(feedId, _x); if (((xFeed > xMonster) && (xFeed <= (xMonster + wMonster))) && (aMonster >= 60)) { _root.arrFeed[feedIndex][1] = -1; if (_root.checkSound.getValue()) { _root.MonsterSound.start(); } } } function CheckLove() { _root.loveCount++; i = 0; while (i < 4) { _root.arrLove[i] = 0; i++; } if (_root.loveCount >= _root.loveSwitch) { if (_root.arrPets[_root.loveIndex] > 0) { _root.arrLove[_root.loveIndex] = 100; } if (_root.loveCount >= (2 * _root.loveSwitch)) { _root.loveIndex++; if (_root.loveIndex >= 4) { _root.loveIndex = 0; } _root.loveCount = 0; } } } function CheckFamished() { _root.hungryCount++; if (_root.hungryCount >= _root.hungrySwitch) { i = 0; while (i < 4) { _root.arrHungry[i]--; if (_root.arrHungry[i] <= 0) { _root.arrPets[i] = 0; _root.arrHungry[i] = 0; } if (_root.arrHungry[i] > _root.hungryMax) { _root.arrHungry[i] = _root.hungryMax; } i++; } _root.hungryCount = 0; } } function CheckForGameOver() { var trash = (_root.arrPoints[4] + _root.arrPoints[5]); var points = (((_root.arrPoints[0] + _root.arrPoints[1]) + _root.arrPoints[2]) + _root.arrPoints[3]); var pets = (((_root.arrPets[0] + _root.arrPets[1]) + _root.arrPets[2]) + _root.arrPets[3]); _root.endOfGameValue = points - trash; if ((_root.endOfGameValue < 0) || (pets == 0)) { stopAllSounds(); if (_root.checkSound.getValue()) { _root.GameoverSound.start(); } _root.gameIsRunning = false; gotoAndPlay (7); } } _root.onEnterFrame = function () { if (_root.gameIsRunning) { if (_root.gameLevel == 9) { _root.hungrySwitch = 20; } if (_root.gameLevel == 10) { _root.hungrySwitch = 15; } if (_root.gameLevel == 11) { _root.hungrySwitch = 10; } if (_root.gameLevel == 12) { _root.hungrySwitch = 5; } if (_root.gameLevel > 12) { _root.hungrySwitch = 1; } if (_root.timeAct > (_root.timeOld + _root.timeSlice)) { _root.levelSwitchCounter++; if (_root.levelSwitchCounter > _root.levelSwitch) { if (_root.timeSlice > 0) { _root.timeSlice--; } _root.levelSwitchCounter = 0; _root.gameLevel++; } _root.timeOld = _root.timeAct; MoveMonster(); MoveFeed(); CheckLove(); CheckFamished(); CheckForGameOver(); ShowStatus(); } _root.timeAct++; } else { _root.checkSound.setValue(_root.arrSettings[2]); setProperty("lblPoints1", _visible , true); setProperty("lblPoints2", _visible , true); setProperty("lblPoints3", _visible , true); setProperty("lblPoints4", _visible , true); setProperty("lblPoints5", _visible , true); } }; stop();
Instance of Symbol 242 MovieClip [FPushButtonSymbol] in Frame 5
//component parameters onClipEvent (initialize) { label = "Start"; clickHandler = "onBtnStart"; }
Instance of Symbol 169 MovieClip [FCheckBoxSymbol] "checkSound" in Frame 5
//component parameters onClipEvent (initialize) { label = "Sound"; initialValue = true; labelPlacement = "right"; changeHandler = "OnCheckSound"; }
Frame 6
stop();
Frame 7
stop(); stop(); function onBtnApply() { if (_root.modeHighscore == 0) { _root.AddScoreItem(nPoints, _root.arrSettings[0], _root.gameLevel, strTime, strDate); _root.SaveHighscore(); } if (_root.modeHighscore == 1) { loadVariablesNum ((((((((("save_score.php?p=" + nPoints) + "&n=") + escape(_root.arrSettings[0])) + "&l=") + _root.gameLevel) + "&t=") + escape(strTime)) + "&d=") + escape(strDate), , "POST"); ResetGame(); gotoAndPlay (5); } btnApply.setEnabled(false); txtScores = "Loading highscore, please wait ..."; if (_root.modeHighscore == 0) { txtScores = _root.GetScores(); } if (_root.modeHighscore == 1) { loadVariables ("get_score.php?count=100&" + (_root.phpCounter++), "", "POST"); } } function OnBtnBack() { ResetGame(); gotoAndPlay (5); } txtScores = "Loading highscore, please wait ..."; var nPoints = (((((_root.arrPoints[0] + _root.arrPoints[1]) + _root.arrPoints[2]) + _root.arrPoints[3]) - _root.arrPoints[4]) - _root.arrPoints[5]); var d = new Date(); var utc1 = Date.UTC(_root.dateStart.getFullYear(), _root.dateStart.getMonth(), _root.dateStart.getDay(), _root.dateStart.getHours(), _root.dateStart.getMinutes(), _root.dateStart.getSeconds()); var utc2 = Date.UTC(d.getFullYear(), d.getMonth(), d.getDay(), d.getHours(), d.getMinutes(), d.getSeconds()); var nTime = ((utc2 - utc1) / 1000); var h = Math.floor(nTime / 3600); var m = Math.floor((nTime - (h * 3600)) / 60); var s = Math.floor((nTime - (h * 3600)) - (m * 60)); if (length(h) == 1) { h = "0" + h; } if (length(m) == 1) { m = "0" + m; } if (length(s) == 1) { s = "0" + s; } var strTime = ((((h + ":") + m) + ":") + s); var day = d.getDate(); var month = (d.getMonth() + 1); var hour = d.getHours(); var minute = d.getMinutes(); if (length(day) == 1) { day = "0" + day; } if (length(month) == 1) { month = "0" + month; } if (length(hour) == 1) { hour = "0" + hour; } if (length(minute) == 1) { minute = "0" + minute; } var strDate = ((((((((day + ".") + month) + ".") + d.getFullYear()) + " ") + hour) + ":") + minute); _root.txtPoints = nPoints; _root.txtName = _root.arrSettings[0]; _root.txtLevel = _root.gameLevel; _root.txtTime = strTime; if (_root.modeHighscore == 0) { txtScores = _root.GetScores(); } if (_root.modeHighscore == 1) { loadVariables ("get_score.php?count=100&" + (_root.phpCounter++), "", "POST"); } stop();
Instance of Symbol 242 MovieClip [FPushButtonSymbol] in Frame 7
//component parameters onClipEvent (initialize) { label = "Back"; clickHandler = "onBtnBack"; }
Instance of Symbol 242 MovieClip [FPushButtonSymbol] "btnApply" in Frame 7
//component parameters onClipEvent (initialize) { label = "Apply"; clickHandler = "onBtnApply"; }
Frame 8
stop(); stop(); stop();
Symbol 9 MovieClip [FListItemSymbol] Frame 1
#initclip 13 function FListItemClass() { this.init(); } FListItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FListItemSymbol", FListItemClass); #endinitclip
Symbol 12 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 13 MovieClip [FScrollBarSymbol] Frame 1
#initclip 5 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 100); this.setScrollPosition(0); this.tabEnabled = false; if (this._targetInstanceName.length > 0) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); }; FScrollBarClass.prototype = new FUIComponentClass(); FScrollBarClass.prototype.setHorizontal = function (flag) { if (this.horizontal && (!flag)) { this._xscale = 100; this._rotation = 0; } else if (flag && (!this.horizontal)) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; }; FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) { if (!this.enable) { return(undefined); } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos, 0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if ((this.maxPos - this.minPos) <= 0) { this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var tmp = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); this.scrollThumb_mc.useHandCursor = false; this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max(this.thumbHeight, 6); this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height; this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; tmp = Math.min(tmp, this.maxPos); this.setScrollPosition(Math.max(tmp, this.minPos)); } }; FScrollBarClass.prototype.getScrollPosition = function () { return(this.scrollPosition); }; FScrollBarClass.prototype.setScrollPosition = function (pos) { this.scrollPosition = pos; if (this.scrollThumb_mc != undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop; this.executeCallBack(); }; FScrollBarClass.prototype.setLargeScroll = function (lScroll) { this.largeScroll = lScroll; }; FScrollBarClass.prototype.setSmallScroll = function (sScroll) { this.smallScroll = sScroll; }; FScrollBarClass.prototype.setEnabled = function (enabledFlag) { var wasEnabled = this.enable; if (enabledFlag && (!wasEnabled)) { this.enable = enabledFlag; if (this.textField != undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if ((!enabledFlag) && (wasEnabled)) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter == undefined) { this.setScrollProperties(this.pageSize, 0, 0); } else { this.clickFilter = true; } this.enable = enabledFlag; } }; FScrollBarClass.prototype.setSize = function (hgt) { if (this._height == 1) { return(undefined); } this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height; if (this.upArrow_mc == undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); this.attachMovie("DownArrow", "downArrow_mc", 2); this.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 0); this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField != undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } }; FScrollBarClass.prototype.scrollIt = function (inc, mode) { var delt = this.smallScroll; if (inc != "one") { delt = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var newPos = (this.getScrollPosition() + (mode * delt)); if (newPos > this.maxPos) { newPos = this.maxPos; } else if (newPos < this.minPos) { newPos = this.minPos; } this.setScrollPosition(newPos); }; FScrollBarClass.prototype.startDragThumb = function () { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; }; FScrollBarClass.prototype.dragThumb = function () { this.scrollMove = this._ymouse - this.lastY; this.scrollMove = this.scrollMove + this._y; if (this.scrollMove < this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove > this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var c = this.controller; c.scrollPosition = Math.round(((c.maxPos - c.minPos) * (this._y - c.scrollTop)) / c.trackHeight) + c.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); }; FScrollBarClass.prototype.stopDragThumb = function () { this.controller.isScrolling = false; this.onMouseMove = null; }; FScrollBarClass.prototype.startTrackScroller = function () { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); }; FScrollBarClass.prototype.scrollInterval = function (inc, mode) { clearInterval(this.scrolling); if (inc == "page") { this.trackScroller(); } else { this.scrollIt(inc, mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); }; FScrollBarClass.prototype.trackScroller = function () { if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) { this.scrollIt("page", 1); } else if (this.scrollThumb_mc._y > this._ymouse) { this.scrollIt("page", -1); } }; FScrollBarClass.prototype.stopScrolling = function () { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); }; FScrollBarClass.prototype.startUpScroller = function () { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", -1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1); }; FScrollBarClass.prototype.startDownScroller = function () { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one", 1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); }; FScrollBarClass.prototype.setScrollTarget = function (tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[(this.horizontal ? "hScroller" : "vScroller")]; if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) { this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) { return(undefined); } this.textField = tF; this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this; this.onTextChanged(); this.onChanged = function () { this.onTextChanged(); }; this.onScroller = function () { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } }; this.textField.addListener(this); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); }; FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return(newVal); }; FScrollBarClass.prototype.onTextChanged = function () { if ((!this.enable) || (this.textField == undefined)) { return(undefined); } clearInterval(this.synchScroll); if (this.horizontal) { var pos = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(pos, this.textField.maxhscroll)); } else { var pos = this.textField.scroll; var pageSize = (this.textField.bottomScroll - this.textField.scroll); this.setScrollProperties(pageSize, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(pos, this.textField.maxscroll)); } }; FScrollBarClass.prototype.executeCallBack = function () { if (this.textField == undefined) { super.executeCallBack(); } else if (this.horizontal) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } }; Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip
Symbol 14 MovieClip [DataProviderSymbol] Frame 1
#initclip 1 _global.DataProviderClass = function () { this.init(); }; DataProviderClass.prototype.init = function () { this.items = new Array(); this.uniqueID = 0; this.views = new Array(); }; DataProviderClass.prototype.addView = function (viewRef) { this.views.push(viewRef); var eventObj = {event:"updateAll"}; viewRef.modelChanged(eventObj); }; DataProviderClass.prototype.addItemAt = function (index, value) { if (index < this.getLength()) { this.items.splice(index, 0, "tmp"); } this.items[index] = new Object(); if (typeof(value) == "object") { this.items[index] = value; } else { this.items[index].label = value; } this.items[index].__ID__ = this.uniqueID++; var eventObj = {event:"addRows", firstRow:index, lastRow:index}; this.updateViews(eventObj); }; DataProviderClass.prototype.addItem = function (value) { this.addItemAt(this.getLength(), value); }; DataProviderClass.prototype.removeItemAt = function (index) { var tmpItm = this.items[index]; this.items.splice(index, 1); var eventObj = {event:"deleteRows", firstRow:index, lastRow:index}; this.updateViews(eventObj); return(tmpItm); }; DataProviderClass.prototype.removeAll = function () { this.items = new Array(); this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1}); }; DataProviderClass.prototype.replaceItemAt = function (index, itemObj) { if ((index < 0) || (index >= this.getLength())) { return(undefined); } var tmpID = this.getItemID(index); if (typeof(itemObj) == "object") { this.items[index] = itemObj; } else { this.items[index].label = itemObj; } this.items[index].__ID__ = tmpID; this.updateViews({event:"updateRows", firstRow:index, lastRow:index}); }; DataProviderClass.prototype.getLength = function () { return(this.items.length); }; DataProviderClass.prototype.getItemAt = function (index) { return(this.items[index]); }; DataProviderClass.prototype.getItemID = function (index) { return(this.items[index].__ID__); }; DataProviderClass.prototype.sortItemsBy = function (fieldName, order) { this.items.sortOn(fieldName); if (order == "DESC") { this.items.reverse(); } this.updateViews({event:"sort"}); }; DataProviderClass.prototype.updateViews = function (eventObj) { var i = 0; while (i < this.views.length) { this.views[i].modelChanged(eventObj); i++; } }; #endinitclip
Symbol 15 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 9 function FSelectableItemClass() { this.init(); } FSelectableItemClass.prototype = new FUIComponentClass(); FSelectableItemClass.prototype.init = function () { if (this._name != "itemAsset") { this.highlighted = false; this.layoutContent(100); } }; FSelectableItemClass.prototype.drawItem = function (itmObj, selected) { this.displayContent(itmObj, selected); if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) { this.setHighlighted(selected); } this.oldFocus = this.controller.focused; }; FSelectableItemClass.prototype.setSize = function (width, height) { var LOWEST_DEPTH = -16384; this.width = width; this.layoutContent(width); this.attachMovie("FHighlightSymbol", "highlight_mc", LOWEST_DEPTH); this.highlight_mc._x = 0.5; this.highlight_mc._width = width - 0.5; this.highlight_mc._height = height; this.highlight_mc.controller = this; this.highlight_mc._alpha = 0; this.highlight_mc.trackAsMenu = true; this.highlight_mc.onPress = function () { if (this.controller.enable) { this.controller.controller.clickHandler(this.controller.itemNum); } }; this.highlight_mc.onDragOver = function () { if (this.controller.controller.focused) { this.onPress(); } }; this.highlight_mc.useHandCursor = false; this.highlight_mc.trackAsMenu = true; }; FSelectableItemClass.prototype.setEnabled = function (enabledFlag) { this.enable = enabledFlag; this.fLabel_mc.setEnabled(enabledFlag); this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled")); }; FSelectableItemClass.prototype.layoutContent = function (width) { this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller}); this.fLabel_mc._x = 2; this.fLabel_mc._y = 0; this.fLabel_mc.setSize(width - 2); this.fLabel_mc.labelField.selectable = false; }; FSelectableItemClass.prototype.displayContent = function (itmObj, selected) { var tmpLabel = ""; if (itmObj.label != undefined) { tmpLabel = itmObj.label; } else if (typeof(itmObj) == "object") { for (var i in itmObj) { if (i != "__ID__") { tmpLabel = (itmObj[i] + ", ") + tmpLabel; } } tmpLabel = tmpLabel.substring(0, tmpLabel.length - 2); } else { tmpLabel = itmObj; } if (this.fLabel_mc.labelField.text != tmpLabel) { this.fLabel_mc.setLabel(tmpLabel); } var clr = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value)); if (clr == undefined) { clr = (selected ? 16777215 : 0); } this.fLabel_mc.setColor(clr); }; FSelectableItemClass.prototype.getItemIndex = function () { return(this.controller.getScrollPosition() + this.itemNum); }; FSelectableItemClass.prototype.getItemModel = function () { return(this.controller.getItemAt(this.getItemIndex())); }; FSelectableItemClass.prototype.getHostDataProvider = function () { return(this.controller.dataProvider); }; FSelectableItemClass.prototype.setHighlighted = function (flag) { fade = this.controller.styleTable.fadeRate.value; if (((fade == undefined) || (fade == 0)) || (!flag)) { this.highlight_mc._alpha = (flag ? 100 : 0); delete this.onEnterFrame; } else { this.fadeN = fade; this.fadeX = 1; this.highLight_mc._alpha = 20; this.onEnterFrame = function () { this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40; if (this.fadeX > this.fadeN) { delete this.onEnterFrame; } }; } this.highlighted = flag; }; #endinitclip
Symbol 16 MovieClip [FSelectableListSymbol] Frame 1
#initclip 4 function FSelectableListClass() { this.init(); } FSelectableListClass.prototype = new FUIComponentClass(); FSelectableListClass.prototype.init = function () { super.init(); this.enable = true; this.selected = new Array(); this.topDisplayed = (this.numDisplayed = 0); this.lastSelected = 0; this.tabChildren = false; if (this._name != undefined) { this.dataProvider = new DataProviderClass(); this.dataProvider.addView(this); } }; FSelectableListClass.prototype.addItemAt = function (index, label, data) { if ((index < 0) || (!this.enable)) { return(undefined); } this.dataProvider.addItemAt(index, {label:label, data:data}); }; FSelectableListClass.prototype.addItem = function (label, data) { if (!this.enable) { return(undefined); } this.dataProvider.addItem({label:label, data:data}); }; FSelectableListClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndex(); var item = this.getItemAt(index); this.dataProvider.removeItemAt(index); return(item); }; FSelectableListClass.prototype.removeAll = function () { this.dataProvider.removeAll(); }; FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) { this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData}); }; FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) { this.lastSelID = this.dataProvider.getItemID(this.lastSelected); this.dataProvider.sortItemsBy(fieldName, order); }; FSelectableListClass.prototype.getLength = function () { return(this.dataProvider.getLength()); }; FSelectableListClass.prototype.getSelectedIndex = function () { for (var uniqueID in this.selected) { var tmpInd = this.selected[uniqueID].sIndex; if (tmpInd != undefined) { return(tmpInd); } } }; FSelectableListClass.prototype.getSelectedItem = function () { return(this.getItemAt(this.getSelectedIndex())); }; FSelectableListClass.prototype.getItemAt = function (index) { return(this.dataProvider.getItemAt(index)); }; FSelectableListClass.prototype.getEnabled = function () { return(this.enable); }; FSelectableListClass.prototype.getValue = function () { var item = this.getSelectedItem(); return(((item.data == undefined) ? (item.label) : (item.data))); }; FSelectableListClass.prototype.setSelectedIndex = function (index, flag) { if (((index >= 0) && (index < this.getLength())) && (this.enable)) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.invalidate("updateControl"); if (flag != false) { this.executeCallBack(); } } }; FSelectableListClass.prototype.setDataProvider = function (obj) { this.setScrollPosition(0); this.clearSelected(); if (obj instanceof Array) { this.dataProvider = new DataProviderClass(); var i = 0; while (i < obj.length) { var value = ((typeof(obj[i]) == "string") ? ({label:obj[i]}) : (obj[i])); this.dataProvider.addItem(value); i++; } } else { this.dataProvider = obj; } this.dataProvider.addView(this); }; FSelectableListClass.prototype.setItemSymbol = function (linkID) { this.tmpPos = this.getScrollPosition(); this.itemSymbol = linkID; this.invalidate("setSize"); this.setScrollPosition(this.tmpPos); }; FSelectableListClass.prototype.setEnabled = function (enabledFlag) { this.cleanUI(); super.setEnabled(enabledFlag); this.enable = enabledFlag; this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); var limit = Math.min(this.numDisplayed, this.getLength()); var i = 0; while (i < limit) { this.container_mc[("fListItem" + i) + "_mc"].setEnabled(this.enable); i++; } if (this.enable) { this.invalidate("updateControl"); } }; FSelectableListClass.prototype.updateControl = function () { var i = 0; while (i < this.numDisplayed) { this.container_mc[("fListItem" + i) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + i), this.isSelected(this.topDisplayed + i)); i++; } }; FSelectableListClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100); this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width; this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height; var i = 0; while (i < this.numDisplayed) { this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + i) + "_mc", 10 + i, {controller:this, itemNum:i}); var item_mc = this.container_mc[("fListItem" + i) + "_mc"]; var offset = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset)); item_mc.setSize(this.width - offset, this.itmHgt); item_mc._y = (this.itmHgt - 2) * i; i++; } this.updateControl(); }; FSelectableListClass.prototype.modelChanged = function (eventObj) { var firstRow = eventObj.firstRow; var lastRow = eventObj.lastRow; var event = eventObj.event; if (event == "addRows") { for (var i in this.selected) { if ((this.selected[i].sIndex != undefined) && (this.selected[i].sIndex >= firstRow)) { this.selected[i].sIndex = this.selected[i].sIndex + ((lastRow - firstRow) + 1); this.setSelectedIndex(this.selected[i].sIndex, false); } } } else if (event == "deleteRows") { if (firstRow == lastRow) { var index = firstRow; if (this.selectHolder == index) { this.selectionDeleted = true; } if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) { this.topDisplayed--; if (this.selectionDeleted && ((index - 1) >= 0)) { this.setSelectedIndex(index - 1, false); } } else if (this.selectionDeleted) { var len = this.getLength(); if (((index == (len - 1)) && (len > 1)) || (index > (len / 2))) { this.setSelectedIndex(index - 1, false); } else { this.setSelectedIndex(index, false); } } for (var i in this.selected) { if (this.selected[i].sIndex > firstRow) { this.selected[i].sIndex--; } } } else { this.clearSelected(); this.topDisplayed = 0; } } else if (event == "sort") { var len = this.getLength(); var i = 0; while (i < len) { if (this.isSelected(i)) { var id = this.dataProvider.getItemID(i); if (id == this.lastSelID) { this.lastSelected = i; } this.selected[String(id)].sIndex = i; } i++; } } this.invalidate("updateControl"); }; FSelectableListClass.prototype.measureItmHgt = function () { this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this}); this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false); this.itmHgt = this.tmpItem_mc._height; this.tmpItem_mc.removeMovieClip(); }; FSelectableListClass.prototype.selectItem = function (index, selectedFlag) { if (selectedFlag && (!this.isSelected(index))) { this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index}; } else if (!selectedFlag) { delete this.selected[String(this.dataProvider.getItemID(index))]; } }; FSelectableListClass.prototype.isSelected = function (index) { return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined); }; FSelectableListClass.prototype.clearSelected = function () { for (var uniqueID in this.selected) { var index = this.selected[uniqueID].sIndex; if (((index != undefined) && (this.topDisplayed <= index)) && (index < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (index - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(index), false); } } delete this.selected; this.selected = new Array(); }; FSelectableListClass.prototype.selectionHandler = function (itemNum) { var tmpInd = (this.topDisplayed + itemNum); if (this.getItemAt(tmpInd == undefined)) { this.changeFlag = false; return(undefined); } this.changeFlag = true; this.clearSelected(); this.selectItem(tmpInd, true); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(tmpInd), this.isSelected(tmpInd)); }; FSelectableListClass.prototype.moveSelBy = function (incr) { var itmNum = this.getSelectedIndex(); var newItm = (itmNum + incr); newItm = Math.max(0, newItm); newItm = Math.min(this.getLength() - 1, newItm); if (newItm == itmNum) { return(undefined); } if ((itmNum < this.topDisplayed) || (itmNum >= (this.topDisplayed + this.numDisplayed))) { this.setScrollPosition(itmNum); } if ((newItm >= (this.topDisplayed + this.numDisplayed)) || (newItm < this.topDisplayed)) { this.setScrollPosition(this.topDisplayed + incr); } this.selectionHandler(newItm - this.topDisplayed); }; FSelectableListClass.prototype.clickHandler = function (itmNum) { this.focusRect.removeMovieClip(); if (!this.focused) { this.pressFocus(); } this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FSelectableListClass.prototype.releaseHandler = function () { if (this.changeFlag) { this.executeCallBack(); } this.changeFlag = false; this.onMouseUp = undefined; }; FSelectableListClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); var i = 0; while (i < this.numDisplayed) { this.container_mc[("fListItem" + i) + "_mc"].highlight_mc.gotoAndStop("enabled"); i++; } }; FSelectableListClass.prototype.myOnKillFocus = function () { super.myOnKillFocus(); var i = 0; while (i < this.numDisplayed) { this.container_mc[("fListItem" + i) + "_mc"].highlight_mc.gotoAndStop("unfocused"); i++; } }; #endinitclip
Instance of Symbol 14 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 16 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Instance of Symbol 15 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 16 MovieClip [FSelectableListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 17 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 8 function FScrollSelectListClass() { this.init(); } FScrollSelectListClass.prototype = new FSelectableListClass(); FScrollSelectListClass.prototype.getScrollPosition = function () { return(this.topDisplayed); }; FScrollSelectListClass.prototype.setScrollPosition = function (pos) { if (this.enable) { pos = Math.min(pos, this.getLength() - this.numDisplayed); pos = Math.max(pos, 0); this.scrollBar_mc.setScrollPosition(pos); } }; FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) { this.permaScrollBar = !flag; this.setSize(this.width, this.height); }; FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) { super.setEnabled(enabledFlag); this.scrollBar_mc.setEnabled(this.enable); }; FScrollSelectListClass.prototype.setSize = function (w, h) { var pos = this.getScrollPosition(); super.setSize(w, h); if (this.scrollBar_mc != undefined) { this.removed = true; } this.scrollBar_mc = undefined; this.initScrollBar(); this.setScrollPosition(pos); }; FScrollSelectListClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); this.invalidate("initScrollBar"); }; FScrollSelectListClass.prototype.initScrollBar = function () { if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) { if (this.removed) { this.scrollBar_mc.removeMovieClip(); this.scrollBar_mc = undefined; this.scrollOffset = undefined; this.invalidate("setSize"); } } else { if (this.scrollBar_mc == undefined) { this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable}); this.scrollBar_mc = this.container_mc.scrollBar_mc; this.scrollBar_mc.setChangeHandler("scrollHandler", this); this.scrollBar_mc.setSize(this.height); this.scrollBar_mc._x = this.width - this.scrollBar_mc._width; this.scrollBar_mc._y = 0; this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1); this.scrollOffset = this.scrollBar_mc._width; this.invalidate("setSize"); } this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed); } }; FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) { var pos = scrollBar.getScrollPosition(); this.topDisplayed = pos; if (this.lastPosition != pos) { this.updateControl(); } this.lastPosition = pos; }; FScrollSelectListClass.prototype.clickHandler = function (itmNum) { super.clickHandler(itmNum); if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.releaseHandler = function () { clearInterval(this.dragScrolling); this.dragScrolling = undefined; super.releaseHandler(); }; FScrollSelectListClass.prototype.dragScroll = function () { clearInterval(this.dragScrolling); if (this.container_mc._ymouse < 0) { this.setScrollPosition(this.getScrollPosition() - 1); this.selectionHandler(0); this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) { this.setScrollPosition(this.getScrollPosition() + 1); this.selectionHandler(this.numDisplayed - 1); this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500); this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval); } else { this.dragScrolling = setInterval(this, "dragScroll", 15); } }; FScrollSelectListClass.prototype.myOnKeyDown = function () { if (this.focused) { this.keyCodes = new Array(40, 38, 34, 33, 36, 35); this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength()); var i = 0; while (i < this.keyCodes.length) { if (Key.isDown(this.keyCodes[i])) { this.moveSelBy(this.keyIncrs[i]); return(undefined); } i++; } this.findInputText(); } }; FScrollSelectListClass.prototype.findInputText = function () { var tmpCode = Key.getAscii(); if ((tmpCode >= 33) && (tmpCode <= 126)) { this.findString(String.fromCharCode(tmpCode)); } }; FScrollSelectListClass.prototype.findString = function (str) { if (this.getLength() == 0) { return(undefined); } var itemNum = this.getSelectedIndex(); var jump = 0; var i = (itemNum + 1); while (i != itemNum) { var itmStr = this.getItemAt(i).label.substring(0, str.length); if ((str == itmStr) || (str.toUpperCase() == itmStr.toUpperCase())) { var jump = (i - itemNum); break; } if (i >= (this.getLength() - 1)) { i = -1; } i++; } if (jump != 0) { this.moveSelBy(jump); } }; #endinitclip
Instance of Symbol 13 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 17 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = ""; horizontal = false; } onClipEvent (load) { this._width = (this._height = 1); }
Instance of Symbol 16 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 17 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 21 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 21 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 24 MovieClip [FListBoxSymbol] Frame 1
#initclip 11 function FListBoxClass() { this.itemSymbol = "FListItemSymbol"; this.init(); this.permaScrollBar = true; var i = 0; while (i < this.labels.length) { this.addItem(this.labels[i], this.data[i]); i++; } this.boundingBox_mc.gotoAndStop(1); this.width = this._width; this.height = this._height; this._yscale = (this._xscale = 100); this.setSize(this.width, this.height); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } } FListBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FListBoxSymbol", FListBoxClass); FListBoxClass.prototype.getSelectedIndices = function () { var tmpArray = new Array(); for (var i in this.selected) { tmpArray.push(this.selected[i].sIndex); } return(((tmpArray.length > 0) ? (tmpArray) : undefined)); }; FListBoxClass.prototype.getSelectedItems = function () { var indices = this.getSelectedIndices(); var tmpArray = new Array(); var i = 0; while (i < indices.length) { tmpArray.push(this.getItemAt(indices[i])); i++; } return(((tmpArray.length > 0) ? (tmpArray) : undefined)); }; FListBoxClass.prototype.getSelectMultiple = function () { return(this.selectMultiple); }; FListBoxClass.prototype.getRowCount = function () { return(this.numDisplayed); }; FListBoxClass.prototype.setSelectedIndices = function (indexArray) { this.clearSelected(); var i = 0; while (i < indexArray.length) { this.selectItem(indexArray[i], true); i++; } this.updateControl(); }; FListBoxClass.prototype.setSelectMultiple = function (flag) { this.selectMultiple = flag; }; FListBoxClass.prototype.setRowCount = function (count) { var hgt = ((count * (this.itmHgt - 2)) + 2); this.setSize(this.width, hgt); }; FListBoxClass.prototype.setWidth = function (wdt) { this.setSize(wdt, this.height); }; FListBoxClass.prototype.setSize = function (w, h) { if (!this.enable) { return(undefined); } w = Math.max(w, 20); h = Math.max(h, 40); this.container_mc.removeMovieClip(); this.container_mc = this.createEmptyMovieClip("container", 3); this.measureItmHgt(); this.numDisplayed = Math.floor(h / (this.itmHgt - 2)); this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); }; FListBoxClass.prototype.removeItemAt = function (index) { this.selectHolder = this.getSelectedIndices(); return(super.removeItemAt(index)); }; FListBoxClass.prototype.selectionHandler = function (itemNum) { if (this.clickFilter) { var index = (this.topDisplayed + itemNum); if (this.getItemAt(index) == undefined) { this.changeFlag = false; return(undefined); } this.changeFlag = true; if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) { this.clearSelected(); this.selectItem(index, true); this.lastSelected = index; this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(index), this.isSelected(index)); } else if (Key.isDown(16) && (this.selectMultiple)) { if (this.lastSelected == -1) { this.lastSelected = index; } var incr = ((this.lastSelected < index) ? 1 : -1); this.clearSelected(); var i = this.lastSelected; while (i != index) { this.selectItem(i, true); if ((i >= this.topDisplayed) && (i < (this.topDisplayed + this.numDisplayed))) { this.container_mc[("fListItem" + (i - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(i), this.isSelected(i)); } i = i + incr; } this.selectItem(index, true); this.container_mc[("fListItem" + (index - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(index), this.isSelected(index)); } else if (key.isDown(17)) { var selectedFlag = this.isSelected(index); if (!this.selectMultiple) { this.clearSelected(); } if (!((!this.selectMultiple) && (selectedFlag))) { this.selectItem(index, !selectedFlag); this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum)); } this.lastSelected = index; } } else { this.clickFilter = true; } }; FListBoxClass.prototype.moveSelBy = function (itemNum) { super.moveSelBy(itemNum); this.releaseHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 17 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 24 MovieClip [FListBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 27 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller; component.registerSkinElement(highlight_mc, "selection"); stop();
Symbol 27 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled"); stop();
Symbol 27 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused"); stop();
Symbol 40 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 50 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 59 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 60 MovieClip [UpArrow] Frame 1
stop();
Symbol 60 MovieClip [UpArrow] Frame 2
stop();
Symbol 60 MovieClip [UpArrow] Frame 3
stop();
Symbol 67 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 74 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 79 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(highlight3D_mc, "highlight3D"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");
Symbol 80 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 88 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 96 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 104 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 105 MovieClip [DownArrow] Frame 1
stop();
Symbol 105 MovieClip [DownArrow] Frame 2
stop();
Symbol 105 MovieClip [DownArrow] Frame 3
stop();
Symbol 106 MovieClip [FComboBoxItemSymbol] Frame 1
#initclip 12 function FComboBoxItemClass() { this.init(); } FComboBoxItemClass.prototype = new FSelectableItemClass(); Object.registerClass("FComboBoxItemSymbol", FComboBoxItemClass); FComboBoxItemClass.prototype.setSize = function (w, h) { super.setSize(w, h); this.highlight_mc.onRollOver = function () { this.controller.controller.selectionHandler(this.controller.itemNum); }; }; #endinitclip
Symbol 109 MovieClip [FComboBoxSymbol] Frame 1
#initclip 10 function FComboBoxClass() { _global._popUpLevel = ((_global._popUpLevel == undefined) ? 20000 : (_global._popUpLevel + 1)); this.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); var testContainer = this.superHolder.createEmptyMovieClip("testCont", 20000); var testBox = testContainer.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); if (testBox._name == undefined) { this.superHolder.removeMovieClip(); this.superHolder = this._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel); } else { testContainer.removeMovieClip(); } if (this.rowCount == undefined) { this.rowCount = 8; this.editable = false; } this.itemSymbol = "FComboBoxItemSymbol"; this.init(); this.permaScrollBar = false; this.proxyBox_mc.gotoAndStop(1); this.width = this._width; this.height = (this.proxyBox_mc._height * this._yscale) / 100; var i = 0; while (i < this.labels.length) { this.addItem(this.labels[i], this.data[i]); i++; } this.lastSelected = 0; this.selectItem(0); this._xscale = (this._yscale = 100); this.opened = false; this.setSize(this.width); this.highlightTop(false); if (this.changeHandler.length > 0) { this.setChangeHandler(this.changeHandler); } this.onUnload = function () { this.superHolder.removeMovieClip(); }; this.setSelectedIndex(0, false); this.value = ""; this.focusEnabled = true; this.changeFlag = false; } FComboBoxClass.prototype = new FScrollSelectListClass(); Object.registerClass("FComboBoxSymbol", FComboBoxClass); FComboBoxClass.prototype.modelChanged = function (eventObj) { super.modelChanged(eventObj); var event = eventObj.event; if ((event == "addRows") || (event == "deleteRows")) { var diff = ((eventObj.lastRow - eventObj.firstRow) + 1); var mode = ((event == "addRows") ? 1 : -1); var len = this.getLength(); var lenBefore = (len - (mode * diff)); if ((this.rowCount > lenBefore) || (this.rowCount > len)) { this.invalidate("setSize"); } if (this.getSelectedIndex() == undefined) { this.setSelectedIndex(0, false); } } else if (event == "updateAll") { this.invalidate("setSize"); } }; FComboBoxClass.prototype.removeAll = function () { if (!this.enable) { return(undefined); } super.removeAll(); if (this.editable) { this.value = ""; } this.invalidate("setSize"); }; FComboBoxClass.prototype.setSize = function (w) { if ((((w == undefined) || (typeof(w) != "number")) || (w <= 0)) || (!this.enable)) { return(undefined); } this.proxyBox_mc._width = w; this.container_mc.removeMovieClip(); this.measureItmHgt(); this.container_mc = this.superHolder.createEmptyMovieClip("container", 3); this.container_mc.tabChildren = false; this.setPopUpLocation(this.container_mc); this.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0); this.boundingBox_mc = this.container_mc.boundingBox_mc; this.boundingBox_mc.component = this; this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc._height = this.itmHgt; this.numDisplayed = Math.min(this.rowCount, this.getLength()); if (this.numDisplayed < 3) { this.numDisplayed = Math.min(3, this.getLength()); } this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2; super.setSize(w, this.height); this.attachMovie("DownArrow", "downArrow", 10); this.downArrow._y = 0; this.downArrow._width = this.itmHgt; this.downArrow._height = this.itmHgt; this.downArrow._x = this.proxyBox_mc._width - this.downArrow._width; this.setEditable(this.editable); this.container_mc._visible = this.opened; this.highlightTop(false); this.fader = this.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4); this.registerSkinElement(this.fader.boundingBox, "background"); this.fader._width = this.width; this.fader._height = this.height; this.fader._visible = false; }; FComboBoxClass.prototype.setDataProvider = function (dp) { super.setDataProvider(dp); this.invalidate("setSize"); this.setSelectedIndex(0); }; FComboBoxClass.prototype.getValue = function () { if (this.editable) { return(this.fLabel_mc.getLabel()); } return(super.getValue()); }; FComboBoxClass.prototype.getRowCount = function () { return(this.rowCount); }; FComboBoxClass.prototype.setRowCount = function (count) { this.rowCount = ((this.getLength() > count) ? (Math.max(count, 3)) : (count)); this.setSize(this.width); var len = this.getLength(); if ((len - this.getScrollPosition()) < this.rowCount) { this.setScrollPosition(len - Math.min(this.rowCount, len)); this.invalidate("updateControl"); } }; FComboBoxClass.prototype.setEditable = function (editableFlag) { if (!this.enable) { return(undefined); } this.editable = editableFlag; if (!this.editable) { this.onPress = this.pressHandler; this.useHandCursor = false; this.trackAsMenu = true; this.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:this, itemNum:-1}); this.fLabel_mc.onRollOver = undefined; this.fLabel_mc.setSize((this.width - this.itmHgt) + 1, this.itmHgt); this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); this.highlightTop(false); } else { this.attachMovie("FLabelSymbol", "fLabel_mc", 5); this.fLabel_txt = this.fLabel_mc.labelField; this.fLabel_txt.type = "input"; this.fLabel_txt._x = 4; this.fLabel_txt.onSetFocus = this.onLabelFocus; this.fLabel_mc.setSize((this.width - this.itmHgt) - 3); delete this.onPress; this.fLabel_txt.onKillFocus = function () { this._parent._parent.myOnKillFocus(); }; this.fLabel_mc.setLabel(this.value); this.fLabel_txt.onChanged = function () { this._parent._parent.findInputText(); }; this.downArrow.onPress = this.buttonPressHandler; this.downArrow.useHandCursor = false; this.downArrow.trackAsMenu = true; } }; FComboBoxClass.prototype.setEnabled = function (enabledFlag) { enabledFlag = (((enabledFlag == undefined) || (typeof(enabledFlag) != "boolean")) ? true : (enabledFlag)); super.setEnabled(enabledFlag); this.registerSkinElement(this.boundingBox_mc.boundingBox, "background"); this.proxyBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled")); this.downArrow.gotoAndStop((this.enable ? 1 : 3)); if (this.editable) { this.fLabel_txt.type = (enabledFlag ? "input" : "dynamic"); this.fLabel_txt.selectable = enabledFlag; } else if (enabledFlag) { this.fLabel_mc.drawItem(this.topLabel, false); this.setSelectedIndex(this.getSelectedIndex(), false); } this.fLabel_mc.setEnabled(this.enable); this.fLabel_txt.onSetFocus = (enabledFlag ? (this.onLabelFocus) : undefined); }; FComboBoxClass.prototype.setSelectedIndex = function (index, flag) { super.setSelectedIndex(index, flag); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, false); } else { this.value = ((flag != undefined) ? "" : (this.getSelectedItem().label)); this.fLabel_mc.setLabel(this.value); } this.invalidate("updateControl"); }; FComboBoxClass.prototype.setValue = function (value) { if (this.editable) { this.fLabel_mc.setLabel(value); this.value = value; } }; FComboBoxClass.prototype.pressHandler = function () { this.focusRect.removeMovieClip(); if (this.enable) { if (!this.opened) { this.onMouseUp = this.releaseHandler; } else { this.onMouseUp = undefined; } this.changeFlag = false; if (!this.focused) { this.pressFocus(); this.clickFilter = (this.editable ? false : true); } if (!this.clickFilter) { this.openOrClose(!this.opened); } else { this.clickFilter = false; } } }; FComboBoxClass.prototype.clickHandler = function (itmNum) { if (!this.focused) { if (this.editable) { this.fLabel_txt.onKillFocus = undefined; } this.pressFocus(); } super.clickHandler(itmNum); this.selectionHandler(itmNum); this.onMouseUp = this.releaseHandler; }; FComboBoxClass.prototype.highlightTop = function (flag) { if (!this.editable) { this.fLabel_mc.drawItem(this.topLabel, flag); } }; FComboBoxClass.prototype.myOnSetFocus = function () { super.myOnSetFocus(); this.fLabel_mc.highlight_mc.gotoAndStop("enabled"); this.highlightTop(true); }; FComboBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this._height + 4); }; FComboBoxClass.prototype.myOnKillFocus = function () { if (Selection.getFocus().indexOf("labelField") != -1) { return(undefined); } super.myOnKillFocus(); delete this.fLabel_txt.onKeyDown; this.openOrClose(false); this.highlightTop(false); }; FComboBoxClass.prototype.setPopUpLocation = function (mcRef) { mcRef._x = this._x; var point = {x:this._x, y:this._y + this.proxyBox_mc._height}; this._parent.localToGlobal(point); mcRef._parent.globalToLocal(point); mcRef._x = point.x; mcRef._y = point.y; if ((this.height + mcRef._y) >= Stage.height) { this.upward = true; mcRef._y = (point.y - this.height) - this.proxyBox_mc._height; } else { this.upward = false; } }; FComboBoxClass.prototype.openOrClose = function (flag) { if (this.getLength() == 0) { return(undefined); } this.setPopUpLocation(this.container_mc); if ((this.lastSelected != -1) && ((this.lastSelected < this.topDisplayed) || (this.lastSelected > (this.topDisplayed + this.numDisplayed)))) { super.moveSelBy(this.lastSelected - this.getSelectedIndex()); } if (!flag) { (this.downArrow.gotoAndStop(1));// not popped } else { (this.downArrow.gotoAndStop(2));// not popped } if (flag == this.opened) { return(undefined); } this.highlightTop(!flag); this.fadeRate = this.styleTable.popUpFade.value; if (((!flag) || (this.fadeRate == undefined)) || (this.fadeRate == 0)) { this.opened = (this.container_mc._visible = flag); return(undefined); } this.setPopUpLocation(this.fader); this.time = 0; this.const = 85 / Math.sqrt(this.fadeRate); this.fader._alpha = 85; this.container_mc._visible = (this.fader._visible = true); this.onEnterFrame = function () { this.fader._alpha = 100 - ((this.const * Math.sqrt(++this.time)) + 15); if (this.time >= this.fadeRate) { this.fader._visible = false; delete this.onEnterFrame; this.opened = true; } }; }; FComboBoxClass.prototype.fireChange = function () { this.lastSelected = this.getSelectedIndex(); if (!this.editable) { this.topLabel = this.getSelectedItem(); this.fLabel_mc.drawItem(this.topLabel, true); } else { this.value = this.getSelectedItem().label; this.fLabel_mc.setLabel(this.value); } this.executeCallback(); }; FComboBoxClass.prototype.releaseHandler = function () { var onCombo = this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse); if (this.changeFlag) { if (onCombo) { this.fireChange(); } this.openOrClose(!this.opened); } else if (onCombo) { this.openOrClose(false); } else { this.onMouseDown = function () { if ((!this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse)) && (!this.hitTest(_root._xmouse, _root._ymouse))) { this.onMouseDown = undefined; this.openOrClose(false); } }; } this.changeFlag = false; this.onMouseUp = undefined; clearInterval(this.dragScrolling); this.dragScrolling = undefined; }; FComboBoxClass.prototype.moveSelBy = function (itemNum) { if (itemNum != 0) { super.moveSelBy(itemNum); if (this.editable) { this.setValue(this.getSelectedItem().label); } if (!this.opened) { if (this.changeFlag && (!this.isSelected(this.lastSelected))) { this.fireChange(); } } } }; FComboBoxClass.prototype.myOnKeyDown = function () { if (!this.focused) { return(undefined); } if (this.editable && (Key.isDown(13))) { this.setValue(this.fLabel_mc.getLabel()); this.executeCallback(); this.openOrClose(false); } else if ((Key.isDown(13) || (Key.isDown(32) && (!this.editable))) && (this.opened)) { if (this.getSelectedIndex() != this.lastSelected) { this.fireChange(); } this.openOrClose(false); this.fLabel_txt.hscroll = 0; } super.myOnKeyDown(); }; FComboBoxClass.prototype.findInputText = function () { if (!this.editable) { super.findInputText(); } }; FComboBoxClass.prototype.onLabelFocus = function () { this._parent._parent.tabFocused = false; this._parent._parent.focused = true; this.onKeyDown = function () { this._parent._parent.myOnKeyDown(); }; Key.addListener(this); }; FComboBoxClass.prototype.buttonPressHandler = function () { this._parent.pressHandler(); }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 17 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 109 MovieClip [FComboBoxSymbol] Frame 1
//component parameters onClipEvent (initialize) { }
Symbol 117 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 119 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 121 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 123 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 126 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 129 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(check_mc, "check");
Symbol 130 MovieClip [fcb_states] Frame 1
stop();
Symbol 130 MovieClip [fcb_states] Frame 2
stop();
Symbol 130 MovieClip [fcb_states] Frame 3
stop();
Symbol 130 MovieClip [fcb_states] Frame 4
stop();
Symbol 130 MovieClip [fcb_states] Frame 5
stop();
Symbol 130 MovieClip [fcb_states] Frame 6
stop();
Symbol 134 MovieClip [FLabelSymbol] Frame 1
#initclip 3 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var val = this.hostComponent.styleTable.embedFonts.value; if (val != undefined) { this.labelField.embedFonts = val; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (tmpColor == undefined) { tmpColor = (enable ? 0 : 8947848); } this.setColor(tmpColor); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 140 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 146 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 152 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame4, "shadow"); component.registerSkinElement(frame2, "darkshadow"); component.registerSkinElement(frame3, "highlight"); component.registerSkinElement(frame1, "highlight3D");
Symbol 158 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 159 MovieClip [fpb_states] Frame 1
stop();
Symbol 159 MovieClip [fpb_states] Frame 2
stop();
Symbol 159 MovieClip [fpb_states] Frame 3
stop();
Symbol 159 MovieClip [fpb_states] Frame 4
stop();
Symbol 160 MovieClip [FUIComponentSymbol] Frame 1
#initclip 2 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var i in this.styleFormat_prm) { this.setStyleProperty(i, this.styleFormat_prm[i]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var funct in this.methodTable) { this[funct](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var inner = this.styleTable.focusRectInner.value; var outer = this.styleTable.focusRectOuter.value; if (inner == undefined) { inner = 16777215 /* 0xFFFFFF */; } if (outer == undefined) { outer = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, outer); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, inner); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { this.drawFocusRect(); } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var tmpValue = parseInt(value); if (!isNaN(tmpValue)) { value = tmpValue; } var global = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!global)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var textProp = propName.subString(4, propName.length); this.textStyle[textProp] = value; this.invalidate("setSize"); } else { for (var j in this.styleTable[propName].coloredMCs) { var myColor = new Color(this.styleTable[propName].coloredMCs[j]); if (this.styleTable[propName].value == undefined) { var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; myColor.setTransform(myTObj); } else { myColor.setRGB(value); } } } this.styleTable[propName].useGlobal = global; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var myColor = new Color(skinMCRef); myColor.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var i in arguments[0]) { this[i] = arguments[0][i]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var arg = 0; while (arg < arguments.length) { var mcRef = arguments[arg]; this.listeners[arguments[arg]] = mcRef; for (var i in this) { if (this.isAStyle(i)) { mcRef.updateStyleProperty(this, i.toString()); } } arg++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var prop in this) { if (this.isAStyle(prop)) { if (component.styleTable[prop].useGlobal == this.isGlobal) { component.styleTable[prop].useGlobal = true; var value = (this.isGlobal ? undefined : (globalStyleFormat[prop])); component.setStyleProperty(prop, value, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var count = 0; for (var i in this.listeners) { var component = this.listeners[i]; if (arguments.length > 0) { var j = 0; while (j < arguments.length) { if (this.isAStyle(arguments[j])) { component.updateStyleProperty(this, arguments[j]); } j++; } } else { for (var j in this) { if (this.isAStyle(j)) { component.updateStyleProperty(this, j.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 169 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 6 function FCheckBoxClass() { this.init(); } FCheckBoxClass.prototype = new FUIComponentClass(); Object.registerClass("FCheckBoxSymbol", FCheckBoxClass); FCheckBoxClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1); this.attachMovie("fcb_states", "fcb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this.setChangeHandler(this.changeHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.initialValue == undefined) { this.setCheckState(false); } else { this.setCheckState(this.initialValue); } if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_CHECKBUTTON = 44; this.STATE_SYSTEM_CHECKED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FCheckBoxClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var halfLabelH = (this.fLabel_mc._height / 2); var halfFrameH = (this.fcb_states_mc._height / 2); var vertCenter = (halfFrameH - halfLabelH); var checkWidth = this.fcb_states_mc._width; var frame = this.fcb_states_mc; var label = this.fLabel_mc; var w = 0; if (frame._width > this.width) { w = 0; } else { w = this.width - frame._width; } this.fLabel_mc.setSize(w); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.fcb_states_mc._x = 0; this.fLabel_mc._x = checkWidth; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.fcb_states_mc._x = this.width - checkWidth; this.txtFormat("right"); } this.fLabel_mc._y = vertCenter; this.fcb_hitArea_mc._y = vertCenter; }; FCheckBoxClass.prototype.txtFormat = function (pos) { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = pos)) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 0)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FCheckBoxClass.prototype.setHitArea = function (w, h) { var hit = this.fcb_hitArea_mc; this.hitArea = hit; if (this.fcb_states_mc._width > w) { hit._width = this.fcb_states_mc._width; } else { hit._width = w; } hit._visible = false; if (arguments.length > 1) { hit._height = h; } }; FCheckBoxClass.prototype.setSize = function (w) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.fcb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FCheckBoxClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 1); }; FCheckBoxClass.prototype.onPress = function () { this.pressFocus(); _root.focusRect.removeMovieClip(); var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedPress"); } else { states.gotoAndStop("press"); } }; FCheckBoxClass.prototype.onRelease = function () { this.fcb_states_mc.gotoAndStop("up"); this.setValue(!this.checked); }; FCheckBoxClass.prototype.onReleaseOutside = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedEnabled"); } else { states.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOut = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedEnabled"); } else { states.gotoAndStop("up"); } }; FCheckBoxClass.prototype.onDragOver = function () { var states = this.fcb_states_mc; if (this.getValue()) { states.gotoAndStop("checkedPress"); } else { states.gotoAndStop("press"); } }; FCheckBoxClass.prototype.setValue = function (checkedValue) { if (checkedValue || (checkedValue == undefined)) { this.setCheckState(checkedValue); } else if (checkedValue == false) { this.setCheckState(checkedValue); } this.executeCallBack(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FCheckBoxClass.prototype.setCheckState = function (checkedValue) { var states = this.fcb_states_mc; if (this.enable) { this.flabel_mc.setEnabled(true); if (checkedValue || (checkedValue == undefined)) { states.gotoAndStop("checkedEnabled"); this.enabled = true; this.checked = true; } else { states.gotoAndStop("up"); this.enabled = true; this.checked = false; } } else { this.flabel_mc.setEnabled(false); if (checkedValue || (checkedValue == undefined)) { states.gotoAndStop("checkedDisabled"); this.enabled = false; this.checked = true; } else { states.gotoAndStop("uncheckedDisabled"); this.enabled = false; this.checked = false; this.focusRect.removeMovieClip(); } } }; FCheckBoxClass.prototype.getValue = function () { return(this.checked); }; FCheckBoxClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; Super.setEnabled(true); } else { this.enable = false; Super.setEnabled(false); } this.setCheckState(this.checked); }; FCheckBoxClass.prototype.getEnabled = function () { return(this.enable); }; FCheckBoxClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FCheckBoxClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FCheckBoxClass.prototype.setTextColor = function (color) { this.fLabel_mc.labelField.textColor = color; }; FCheckBoxClass.prototype.myOnKeyDown = function () { if (((Key.getCode() == 32) && (this.pressOnce == undefined)) && (this.enabled == true)) { this.setValue(!this.getValue()); this.pressOnce = true; } }; FCheckBoxClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.pressOnce = undefined; } }; FCheckBoxClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_CHECKBUTTON); }; FCheckBoxClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FCheckBoxClass.prototype.get_accState = function (childId) { if (this.master.getValue()) { return(this.master.STATE_SYSTEM_CHECKED); } return(0); }; FCheckBoxClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getValue()) { return("UnCheck"); } return("Check"); }; FCheckBoxClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 175 Button [carot]
on (release) { CheckFeed("carrot9", 29); }
Symbol 178 Button [salad]
on (release) { CheckFeed("salad9", 39); }
Symbol 179 Button [salad]
on (release) { CheckFeed("salad8", 38); }
Symbol 180 Button [salad]
on (release) { CheckFeed("salad7", 37); }
Symbol 181 Button [salad]
on (release) { CheckFeed("salad6", 36); }
Symbol 182 Button [salad]
on (release) { CheckFeed("salad5", 35); }
Symbol 183 Button [salad]
on (release) { CheckFeed("salad4", 34); }
Symbol 184 Button [salad]
on (release) { CheckFeed("salad3", 33); }
Symbol 185 Button [salad]
on (release) { CheckFeed("salad2", 32); }
Symbol 186 Button [carot]
on (release) { CheckFeed("carrot8", 28); }
Symbol 187 Button [carot]
on (release) { CheckFeed("carrot7", 27); }
Symbol 188 Button [carot]
on (release) { CheckFeed("carrot6", 26); }
Symbol 189 Button [carot]
on (release) { CheckFeed("carrot5", 25); }
Symbol 190 Button [carot]
on (release) { CheckFeed("carrot4", 24); }
Symbol 191 Button [carot]
on (release) { CheckFeed("carrot3", 23); }
Symbol 192 Button [carot]
on (release) { CheckFeed("carrot2", 22); }
Symbol 195 Button [fish]
on (release) { CheckFeed("fish9", 19); }
Symbol 196 Button [fish]
on (release) { CheckFeed("fish8", 18); }
Symbol 197 Button [fish]
on (release) { CheckFeed("fish7", 17); }
Symbol 198 Button [fish]
on (release) { CheckFeed("fish6", 16); }
Symbol 199 Button [fish]
on (release) { CheckFeed("fish5", 15); }
Symbol 200 Button [fish]
on (release) { CheckFeed("fish4", 14); }
Symbol 201 Button [fish]
on (release) { CheckFeed("fish3", 13); }
Symbol 202 Button [fish]
on (release) { CheckFeed("fish2", 12); }
Symbol 205 Button [bone]
on (release) { CheckFeed("bone9", 9); }
Symbol 206 Button [bone]
on (release) { CheckFeed("bone8", 8); }
Symbol 207 Button [bone]
on (release) { CheckFeed("bone7", 7); }
Symbol 208 Button [bone]
on (release) { CheckFeed("bone6", 6); }
Symbol 209 Button [bone]
on (release) { CheckFeed("bone5", 5); }
Symbol 210 Button [bone]
on (release) { CheckFeed("bone4", 4); }
Symbol 211 Button [bone]
on (release) { CheckFeed("bone3", 3); }
Symbol 212 Button [bone]
on (release) { CheckFeed("bone2", 2); }
Symbol 213 Button [salad]
on (release) { CheckFeed("salad1", 31); }
Symbol 214 Button [salad]
on (release) { CheckFeed("salad0", 30); }
Symbol 215 Button [carot]
on (release) { CheckFeed("carrot1", 21); }
Symbol 216 Button [carot]
on (release) { CheckFeed("carrot0", 20); }
Symbol 217 Button [fish]
on (release) { CheckFeed("fish1", 11); }
Symbol 218 Button [fish]
on (release) { CheckFeed("fish0", 10); }
Symbol 220 Button [bone]
on (release) { CheckFeed("bone1", 1); }
Symbol 221 Button [bone]
on (release) { CheckFeed("bone0", 0); }
Symbol 242 MovieClip [FPushButtonSymbol] Frame 1
#initclip 7 function FPushButtonClass() { this.init(); } FPushButtonClass.prototype = new FUIComponentClass(); Object.registerClass("FPushButtonSymbol", FPushButtonClass); FPushButtonClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fpb_states", "fpbState_mc", 1); this.attachMovie("FLabelSymbol", "fLabel_mc", 2); this.attachMovie("fpb_hitArea", "fpb_hitArea_mc", 3); super.init(); this.btnState = false; this.setClickHandler(this.clickHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_PUSHBUTTON = 43; this.STATE_SYSTEM_PRESSED = 8; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FPushButtonClass.prototype.setHitArea = function (w, h) { var hit = this.fpb_hitArea_mc; this.hitArea = hit; hit._visible = false; hit._width = w; hit._height = ((arguments.length > 1) ? (h) : (hit._height)); }; FPushButtonClass.prototype.setSize = function (w, h) { w = ((w < 6) ? 6 : (w)); if (arguments.length > 1) { if (h < 6) { h = 6; } } super.setSize(w, h); this.setLabel(this.getLabel()); this.arrangeLabel(); this.setHitArea(w, h); this.boundingBox_mc._width = w; this.boundingBox_mc._height = h; this.drawFrame(); if (this.focused) { super.myOnSetFocus(); } this.initContentPos("fLabel_mc"); }; FPushButtonClass.prototype.arrangeLabel = function () { var label = this.fLabel_mc; var h = this.height; var w = (this.width - 2); var b = 1; this.fLabel_mc.setSize(w - (b * 4)); label._x = b * 3; label._y = (h / 2) - (label._height / 2); }; FPushButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FPushButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); this.arrangeLabel(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FPushButtonClass.prototype.getEnabled = function () { return(this.enabled); }; FPushButtonClass.prototype.setEnabled = function (enable) { if (enable || (enable == undefined)) { this.gotoFrame(1); this.drawFrame(); this.flabel_mc.setEnabled(true); this.enabled = true; super.setEnabled(true); } else { this.gotoFrame(4); this.drawFrame(); this.flabel_mc.setEnabled(false); this.enabled = false; super.setEnabled(false); } }; FPushButtonClass.prototype.txtFormat = function () { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = "center")) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 1)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 1)) : undefined); if (this.fLabel_mc._height > this.height) { super.setSize(this.width, this.fLabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FPushButtonClass.prototype.drawFrame = function () { var b = 1; var x1 = 0; var y1 = 0; var x2 = this.width; var y2 = this.height; var mc_array = ["up_mc", "over_mc", "down_mc", "disabled_mc"]; var frame = mc_array[this.fpbState_mc._currentframe - 1]; var mc = "frame"; var i = 0; while (i < 6) { x1 = x1 + ((i % 2) * b); y1 = y1 + ((i % 2) * b); x2 = x2 - (((i + 1) % 2) * b); y2 = y2 - (((i + 1) % 2) * b); var w = (Math.abs(x1 - x2) + (2 * b)); var h = (Math.abs(y1 - y2) + (2 * b)); this.fpbState_mc[frame][mc + i]._width = w; this.fpbState_mc[frame][mc + i]._height = h; this.fpbState_mc[frame][mc + i]._x = x1 - b; this.fpbState_mc[frame][mc + i]._y = y1 - b; i++; } }; FPushButtonClass.prototype.setClickHandler = function (chng, obj) { this.handlerObj = ((arguments.length < 2) ? (this._parent) : (obj)); this.clickHandler = chng; }; FPushButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.clickHandler](this); }; FPushButtonClass.prototype.initContentPos = function (mc) { this.incrVal = 1; this.initx = this[mc]._x - (this.getBtnState() * this.incrVal); this.inity = this[mc]._y - (this.getBtnState() * this.incrVal); this.togx = this.initx + this.incrVal; this.togy = this.inity + this.incrVal; }; FPushButtonClass.prototype.setBtnState = function (state) { this.btnState = state; if (state) { this.fLabel_mc._x = this.togx; this.fLabel_mc._y = this.togy; } else { this.fLabel_mc._x = this.initx; this.fLabel_mc._y = this.inity; } }; FPushButtonClass.prototype.getBtnState = function () { return(this.btnState); }; FPushButtonClass.prototype.myOnSetFocus = function () { this.focused = true; super.myOnSetFocus(); }; FPushButtonClass.prototype.onPress = function () { this.pressFocus(); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); this.setBtnState(true); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FPushButtonClass.prototype.onRelease = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); this.executeCallBack(); this.setBtnState(false); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FPushButtonClass.prototype.onRollOver = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); }; FPushButtonClass.prototype.onRollOut = function () { this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onReleaseOutside = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOut = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOver = function () { this.setBtnState(true); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); }; FPushButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this.pressOnce == undefined)) { this.onPress(); this.pressOnce = 1; } }; FPushButtonClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.onRelease(); this.pressOnce = undefined; } }; FPushButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_PUSHBUTTON); }; FPushButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FPushButtonClass.prototype.get_accState = function (childId) { if (this.pressOnce) { return(this.master.STATE_SYSTEM_PRESSED); } return(this.master.STATE_SYSTEM_DEFAULT); }; FPushButtonClass.prototype.get_accDefaultAction = function (childId) { return("Press"); }; FPushButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.onPress(); this.master.onRelease(); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 261 Button
on (release) { getURL ("http://mypage.bluewin.ch/katzenseite", "_blank"); }

Library Items

Symbol 1 Sound [sndTrash]
Symbol 2 Sound [sndMonster]
Symbol 3 Sound [sndGuineapig]
Symbol 4 Sound [sndGameover]
Symbol 5 Sound [sndFanfare]
Symbol 6 Sound [sndDog]
Symbol 7 Sound [sndCat]
Symbol 8 Sound [sndBunny]
Symbol 9 MovieClip [FListItemSymbol]Used by:24
Symbol 10 GraphicUsed by:11 120 122 137 138 143 144 155 156
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:11Used by:13
Symbol 13 MovieClip [FScrollBarSymbol]Uses:12Used by:17
Symbol 14 MovieClip [DataProviderSymbol]Used by:16
Symbol 15 MovieClip [FSelectableItemSymbol]Used by:16
Symbol 16 MovieClip [FSelectableListSymbol]Uses:14 15Used by:17
Symbol 17 MovieClip [FScrollSelectListSymbol]Uses:13 16Used by:24 109
Symbol 18 GraphicUsed by:19 118
Symbol 19 MovieClipUses:18Used by:21
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClip [FBoundingBoxSymbol]Uses:19 20Used by:24 109 169 242
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:24
Symbol 24 MovieClip [FListBoxSymbol]Uses:9 17 21 23
Symbol 25 GraphicUsed by:26 135 136 141 142 147 148 149 150 153 154
Symbol 26 MovieClipUses:25Used by:27
Symbol 27 MovieClip [FHighlightSymbol]Uses:26
Symbol 28 GraphicUsed by:29 47 65 66 72 73 75 81 93 139 145 151 157
Symbol 29 MovieClipUses:28Used by:40
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:40
Symbol 32 GraphicUsed by:33 53 84 99
Symbol 33 MovieClipUses:32Used by:40
Symbol 34 GraphicUsed by:35 54 85 100
Symbol 35 MovieClipUses:34Used by:40
Symbol 36 GraphicUsed by:37 42 52 86 90 98 111
Symbol 37 MovieClipUses:36Used by:40
Symbol 38 GraphicUsed by:39 41 51 87 89 97 116
Symbol 39 MovieClipUses:38Used by:40
Symbol 40 MovieClipUses:29 31 33 35 37 39Used by:60
Symbol 41 MovieClipUses:38Used by:50
Symbol 42 MovieClipUses:36Used by:50
Symbol 43 GraphicUsed by:44 91
Symbol 44 MovieClipUses:43Used by:50
Symbol 45 GraphicUsed by:46 92
Symbol 46 MovieClipUses:45Used by:50
Symbol 47 MovieClipUses:28Used by:50
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:50
Symbol 50 MovieClipUses:41 42 44 46 47 49Used by:60
Symbol 51 MovieClipUses:38Used by:59
Symbol 52 MovieClipUses:36Used by:59
Symbol 53 MovieClipUses:32Used by:59
Symbol 54 MovieClipUses:34Used by:59
Symbol 55 GraphicUsed by:56 101
Symbol 56 MovieClipUses:55Used by:59
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:59
Symbol 59 MovieClipUses:51 52 53 54 56 58Used by:60
Symbol 60 MovieClip [UpArrow]Uses:40 50 59
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:67
Symbol 63 GraphicUsed by:64 68 69 78 110 131
Symbol 64 MovieClipUses:63Used by:67
Symbol 65 MovieClipUses:28Used by:67
Symbol 66 MovieClipUses:28Used by:67
Symbol 67 MovieClipUses:62 64 65 66Used by:80
Symbol 68 MovieClipUses:63Used by:74
Symbol 69 MovieClipUses:63Used by:74
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:74
Symbol 72 MovieClipUses:28Used by:74
Symbol 73 MovieClipUses:28Used by:74
Symbol 74 MovieClipUses:68 69 71 72 73Used by:80
Symbol 75 MovieClipUses:28Used by:79
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:79
Symbol 78 MovieClipUses:63Used by:79
Symbol 79 MovieClipUses:75 77 78Used by:80
Symbol 80 MovieClip [ScrollThumb]Uses:67 74 79
Symbol 81 MovieClipUses:28Used by:88
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:88
Symbol 84 MovieClipUses:32Used by:88
Symbol 85 MovieClipUses:34Used by:88
Symbol 86 MovieClipUses:36Used by:88
Symbol 87 MovieClipUses:38Used by:88
Symbol 88 MovieClipUses:81 83 84 85 86 87Used by:105
Symbol 89 MovieClipUses:38Used by:96
Symbol 90 MovieClipUses:36Used by:96
Symbol 91 MovieClipUses:43Used by:96
Symbol 92 MovieClipUses:45Used by:96
Symbol 93 MovieClipUses:28Used by:96
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:96
Symbol 96 MovieClipUses:89 90 91 92 93 95Used by:105
Symbol 97 MovieClipUses:38Used by:104
Symbol 98 MovieClipUses:36Used by:104
Symbol 99 MovieClipUses:32Used by:104
Symbol 100 MovieClipUses:34Used by:104
Symbol 101 MovieClipUses:55Used by:104
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:104
Symbol 104 MovieClipUses:97 98 99 100 101 103Used by:105
Symbol 105 MovieClip [DownArrow]Uses:88 96 104
Symbol 106 MovieClip [FComboBoxItemSymbol]Used by:109
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:109
Symbol 109 MovieClip [FComboBoxSymbol]Uses:17 106 21 108
Symbol 110 MovieClip [fcb_hitArea]Uses:63
Symbol 111 MovieClipUses:36Used by:117
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:117
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:117
Symbol 116 MovieClipUses:38Used by:117
Symbol 117 MovieClipUses:111 113 115 116Used by:130
Symbol 118 MovieClipUses:18Used by:119
Symbol 119 MovieClipUses:118Used by:130
Symbol 120 MovieClipUses:10Used by:121
Symbol 121 MovieClipUses:120Used by:130
Symbol 122 MovieClipUses:10Used by:123
Symbol 123 MovieClipUses:122Used by:130
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:126
Symbol 126 MovieClipUses:125Used by:130
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127Used by:129
Symbol 129 MovieClipUses:128Used by:130
Symbol 130 MovieClip [fcb_states]Uses:117 119 121 123 126 129
Symbol 131 MovieClip [fpb_hitArea]Uses:63
Symbol 132 FontUsed by:133
Symbol 133 EditableTextUses:132Used by:134
Symbol 134 MovieClip [FLabelSymbol]Uses:133
Symbol 135 MovieClipUses:25Used by:140
Symbol 136 MovieClipUses:25Used by:140
Symbol 137 MovieClipUses:10Used by:140
Symbol 138 MovieClipUses:10Used by:140
Symbol 139 MovieClipUses:28Used by:140
Symbol 140 MovieClipUses:135 136 137 138 139Used by:159
Symbol 141 MovieClipUses:25Used by:146
Symbol 142 MovieClipUses:25Used by:146
Symbol 143 MovieClipUses:10Used by:146
Symbol 144 MovieClipUses:10Used by:146
Symbol 145 MovieClipUses:28Used by:146
Symbol 146 MovieClipUses:141 142 143 144 145Used by:159
Symbol 147 MovieClipUses:25Used by:152
Symbol 148 MovieClipUses:25Used by:152
Symbol 149 MovieClipUses:25Used by:152
Symbol 150 MovieClipUses:25Used by:152
Symbol 151 MovieClipUses:28Used by:152
Symbol 152 MovieClipUses:147 148 149 150 151Used by:159
Symbol 153 MovieClipUses:25Used by:158
Symbol 154 MovieClipUses:25Used by:158
Symbol 155 MovieClipUses:10Used by:158
Symbol 156 MovieClipUses:10Used by:158
Symbol 157 MovieClipUses:28Used by:158
Symbol 158 MovieClipUses:153 154 155 156 157Used by:159
Symbol 159 MovieClip [fpb_states]Uses:140 146 152 158
Symbol 160 MovieClip [FUIComponentSymbol]
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClip [bunnyGreen]Uses:161
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClip [catGreen]Uses:163
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClip [catRed]Uses:165
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:169
Symbol 169 MovieClip [FCheckBoxSymbol]Uses:21 168Used by:Timeline
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:172  Timeline
Symbol 172 MovieClip [heart]Uses:171Used by:Timeline
Symbol 173 BitmapUsed by:174 246
Symbol 174 GraphicUses:173Used by:175 186 187 188 189 190 191 192 215 216 223
Symbol 175 Button [carot]Uses:174Used by:Timeline
Symbol 176 BitmapUsed by:177 246
Symbol 177 GraphicUses:176Used by:178 179 180 181 182 183 184 185 213 214 224
Symbol 178 Button [salad]Uses:177Used by:Timeline
Symbol 179 Button [salad]Uses:177Used by:Timeline
Symbol 180 Button [salad]Uses:177Used by:Timeline
Symbol 181 Button [salad]Uses:177Used by:Timeline
Symbol 182 Button [salad]Uses:177Used by:Timeline
Symbol 183 Button [salad]Uses:177Used by:Timeline
Symbol 184 Button [salad]Uses:177Used by:Timeline
Symbol 185 Button [salad]Uses:177Used by:Timeline
Symbol 186 Button [carot]Uses:174Used by:Timeline
Symbol 187 Button [carot]Uses:174Used by:Timeline
Symbol 188 Button [carot]Uses:174Used by:Timeline
Symbol 189 Button [carot]Uses:174Used by:Timeline
Symbol 190 Button [carot]Uses:174Used by:Timeline
Symbol 191 Button [carot]Uses:174Used by:Timeline
Symbol 192 Button [carot]Uses:174Used by:Timeline
Symbol 193 BitmapUsed by:194 246
Symbol 194 GraphicUses:193Used by:195 196 197 198 199 200 201 202 217 218 222
Symbol 195 Button [fish]Uses:194Used by:Timeline
Symbol 196 Button [fish]Uses:194Used by:Timeline
Symbol 197 Button [fish]Uses:194Used by:Timeline
Symbol 198 Button [fish]Uses:194Used by:Timeline
Symbol 199 Button [fish]Uses:194Used by:Timeline
Symbol 200 Button [fish]Uses:194Used by:Timeline
Symbol 201 Button [fish]Uses:194Used by:Timeline
Symbol 202 Button [fish]Uses:194Used by:Timeline
Symbol 203 BitmapUsed by:204 246
Symbol 204 GraphicUses:203Used by:205 206 207 208 209 210 211 212 219 220 221
Symbol 205 Button [bone]Uses:204Used by:Timeline
Symbol 206 Button [bone]Uses:204Used by:Timeline
Symbol 207 Button [bone]Uses:204Used by:Timeline
Symbol 208 Button [bone]Uses:204Used by:Timeline
Symbol 209 Button [bone]Uses:204Used by:Timeline
Symbol 210 Button [bone]Uses:204Used by:Timeline
Symbol 211 Button [bone]Uses:204Used by:Timeline
Symbol 212 Button [bone]Uses:204Used by:Timeline
Symbol 213 Button [salad]Uses:177Used by:Timeline
Symbol 214 Button [salad]Uses:177Used by:Timeline
Symbol 215 Button [carot]Uses:174Used by:Timeline
Symbol 216 Button [carot]Uses:174Used by:Timeline
Symbol 217 Button [fish]Uses:194Used by:Timeline
Symbol 218 Button [fish]Uses:194Used by:Timeline
Symbol 219 MovieClip [bone]Uses:204Used by:Timeline
Symbol 220 Button [bone]Uses:204Used by:Timeline
Symbol 221 Button [bone]Uses:204Used by:Timeline
Symbol 222 MovieClip [fish]Uses:194Used by:Timeline
Symbol 223 MovieClip [carot]Uses:174Used by:Timeline
Symbol 224 MovieClip [salad]Uses:177Used by:Timeline
Symbol 225 BitmapUsed by:226 246
Symbol 226 GraphicUses:225Used by:227
Symbol 227 MovieClip [monster]Uses:226Used by:Timeline
Symbol 228 BitmapUsed by:229 246
Symbol 229 GraphicUses:228Used by:230
Symbol 230 MovieClip [guineapig]Uses:229Used by:Timeline
Symbol 231 BitmapUsed by:232 246
Symbol 232 GraphicUses:231Used by:233
Symbol 233 MovieClip [dog]Uses:232Used by:Timeline
Symbol 234 BitmapUsed by:235 246
Symbol 235 GraphicUses:234Used by:236
Symbol 236 MovieClip [cat]Uses:235Used by:Timeline
Symbol 237 BitmapUsed by:238 246
Symbol 238 GraphicUses:237Used by:239
Symbol 239 MovieClip [bunny]Uses:238Used by:Timeline
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:240Used by:242
Symbol 242 MovieClip [FPushButtonSymbol]Uses:21 241Used by:Timeline
Symbol 243 FontUsed by:244 245 249 250 284 285 286 287 288 290 291 292 293 294 295 296
Symbol 244 EditableTextUses:243Used by:Timeline
Symbol 245 TextUses:243Used by:Timeline
Symbol 246 GraphicUses:225 231 234 237 228 176 173 193 203Used by:Timeline
Symbol 247 FontUsed by:248 251 263 264 265 266 267 268 269 270 272 273 274 275 276 277 283 297
Symbol 248 TextUses:247Used by:Timeline
Symbol 249 EditableTextUses:243Used by:Timeline
Symbol 250 EditableTextUses:243Used by:Timeline
Symbol 251 TextUses:247Used by:Timeline
Symbol 252 FontUsed by:253 289
Symbol 253 EditableTextUses:252Used by:Timeline
Symbol 254 BitmapUsed by:255
Symbol 255 GraphicUses:254Used by:Timeline
Symbol 256 GraphicUsed by:Timeline
Symbol 257 GraphicUsed by:Timeline
Symbol 258 GraphicUsed by:Timeline
Symbol 259 BitmapUsed by:260
Symbol 260 GraphicUses:259Used by:261
Symbol 261 ButtonUses:260Used by:Timeline
Symbol 262 GraphicUsed by:Timeline
Symbol 263 EditableTextUses:247Used by:Timeline
Symbol 264 EditableTextUses:247Used by:Timeline
Symbol 265 EditableTextUses:247Used by:Timeline
Symbol 266 EditableTextUses:247Used by:Timeline
Symbol 267 EditableTextUses:247Used by:Timeline
Symbol 268 EditableTextUses:247Used by:Timeline
Symbol 269 EditableTextUses:247Used by:Timeline
Symbol 270 EditableTextUses:247Used by:Timeline
Symbol 271 GraphicUsed by:Timeline
Symbol 272 EditableTextUses:247Used by:Timeline
Symbol 273 EditableTextUses:247Used by:Timeline
Symbol 274 EditableTextUses:247Used by:Timeline
Symbol 275 EditableTextUses:247Used by:Timeline
Symbol 276 EditableTextUses:247Used by:Timeline
Symbol 277 EditableTextUses:247Used by:Timeline
Symbol 278 GraphicUsed by:279
Symbol 279 MovieClipUses:278Used by:Timeline
Symbol 280 GraphicUsed by:281
Symbol 281 MovieClipUses:280Used by:Timeline
Symbol 282 ButtonUsed by:Timeline
Symbol 283 EditableTextUses:247Used by:Timeline
Symbol 284 EditableTextUses:243Used by:Timeline
Symbol 285 EditableTextUses:243Used by:Timeline
Symbol 286 EditableTextUses:243Used by:Timeline
Symbol 287 EditableTextUses:243Used by:Timeline
Symbol 288 EditableTextUses:243Used by:Timeline
Symbol 289 EditableTextUses:252Used by:Timeline
Symbol 290 TextUses:243Used by:Timeline
Symbol 291 TextUses:243Used by:Timeline
Symbol 292 TextUses:243Used by:Timeline
Symbol 293 TextUses:243Used by:Timeline
Symbol 294 EditableTextUses:243Used by:Timeline
Symbol 295 EditableTextUses:243Used by:Timeline
Symbol 296 EditableTextUses:243Used by:Timeline
Symbol 297 TextUses:247Used by:Timeline

Instance Names

"btnCont"Frame 2Symbol 242 MovieClip [FPushButtonSymbol]
"btnHighscores"Frame 2Symbol 242 MovieClip [FPushButtonSymbol]
"lblName"Frame 2Symbol 249 EditableText
"txtName"Frame 2Symbol 250 EditableText
"bunny"Frame 5Symbol 239 MovieClip [bunny]
"cat"Frame 5Symbol 236 MovieClip [cat]
"dog"Frame 5Symbol 233 MovieClip [dog]
"ginueapig"Frame 5Symbol 230 MovieClip [guineapig]
"monster"Frame 5Symbol 227 MovieClip [monster]
"salad"Frame 5Symbol 224 MovieClip [salad]
"carrot"Frame 5Symbol 223 MovieClip [carot]
"fish"Frame 5Symbol 222 MovieClip [fish]
"bone0"Frame 5Symbol 221 Button [bone]
"bone1"Frame 5Symbol 220 Button [bone]
"bone"Frame 5Symbol 219 MovieClip [bone]
"fish0"Frame 5Symbol 218 Button [fish]
"fish1"Frame 5Symbol 217 Button [fish]
"carrot0"Frame 5Symbol 216 Button [carot]
"carrot1"Frame 5Symbol 215 Button [carot]
"salad0"Frame 5Symbol 214 Button [salad]
"salad1"Frame 5Symbol 213 Button [salad]
"bone2"Frame 5Symbol 212 Button [bone]
"bone3"Frame 5Symbol 211 Button [bone]
"bone4"Frame 5Symbol 210 Button [bone]
"bone5"Frame 5Symbol 209 Button [bone]
"bone6"Frame 5Symbol 208 Button [bone]
"bone7"Frame 5Symbol 207 Button [bone]
"bone8"Frame 5Symbol 206 Button [bone]
"bone9"Frame 5Symbol 205 Button [bone]
"fish2"Frame 5Symbol 202 Button [fish]
"fish3"Frame 5Symbol 201 Button [fish]
"fish4"Frame 5Symbol 200 Button [fish]
"fish5"Frame 5Symbol 199 Button [fish]
"fish6"Frame 5Symbol 198 Button [fish]
"fish7"Frame 5Symbol 197 Button [fish]
"fish8"Frame 5Symbol 196 Button [fish]
"fish9"Frame 5Symbol 195 Button [fish]
"carrot2"Frame 5Symbol 192 Button [carot]
"carrot3"Frame 5Symbol 191 Button [carot]
"carrot4"Frame 5Symbol 190 Button [carot]
"carrot5"Frame 5Symbol 189 Button [carot]
"carrot6"Frame 5Symbol 188 Button [carot]
"carrot7"Frame 5Symbol 187 Button [carot]
"carrot8"Frame 5Symbol 186 Button [carot]
"salad2"Frame 5Symbol 185 Button [salad]
"salad3"Frame 5Symbol 184 Button [salad]
"salad4"Frame 5Symbol 183 Button [salad]
"salad5"Frame 5Symbol 182 Button [salad]
"salad6"Frame 5Symbol 181 Button [salad]
"salad7"Frame 5Symbol 180 Button [salad]
"salad8"Frame 5Symbol 179 Button [salad]
"salad9"Frame 5Symbol 178 Button [salad]
"carrot9"Frame 5Symbol 175 Button [carot]
"picEichenberger"Frame 5Symbol 261 Button
"heartDog"Frame 5Symbol 172 MovieClip [heart]
"heartCat"Frame 5Symbol 172 MovieClip [heart]
"heartBunny"Frame 5Symbol 172 MovieClip [heart]
"heartGinueapig"Frame 5Symbol 172 MovieClip [heart]
"0"Frame 5Symbol 272 EditableText
"0"Frame 5Symbol 273 EditableText
"0"Frame 5Symbol 274 EditableText
"0"Frame 5Symbol 275 EditableText
"0"Frame 5Symbol 276 EditableText
"0"Frame 5Symbol 277 EditableText
"hungryGinueapig"Frame 5Symbol 279 MovieClip
"hungryBunny"Frame 5Symbol 279 MovieClip
"hungryCat"Frame 5Symbol 279 MovieClip
"hungryDog"Frame 5Symbol 279 MovieClip
"infoPoints"Frame 5Symbol 282 Button
"checkSound"Frame 5Symbol 169 MovieClip [FCheckBoxSymbol]
"lblPoints1"Frame 5Symbol 283 EditableText
"lblPoints2"Frame 5Symbol 284 EditableText
"lblPoints3"Frame 5Symbol 285 EditableText
"lblPoints4"Frame 5Symbol 286 EditableText
"lblPoints5"Frame 5Symbol 287 EditableText
"btnApply"Frame 7Symbol 242 MovieClip [FPushButtonSymbol]
"track_mc"Symbol 12 MovieClip Frame 1Symbol 11 MovieClip
"scrollTrack_mc"Symbol 13 MovieClip [FScrollBarSymbol] Frame 1Symbol 12 MovieClip
"dPAsset"Symbol 16 MovieClip [FSelectableListSymbol] Frame 1Symbol 14 MovieClip [DataProviderSymbol]
"ItemAsset"Symbol 16 MovieClip [FSelectableListSymbol] Frame 1Symbol 15 MovieClip [FSelectableItemSymbol]
"scrollBarAsset"Symbol 17 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 13 MovieClip [FScrollBarSymbol]
"superClassAsset"Symbol 17 MovieClip [FScrollSelectListSymbol] Frame 1Symbol 16 MovieClip [FSelectableListSymbol]
"boundingBox"Symbol 21 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 19 MovieClip
"boundingBox2"Symbol 21 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 19 MovieClip
"itemAsset"Symbol 24 MovieClip [FListBoxSymbol] Frame 1Symbol 9 MovieClip [FListItemSymbol]
"superClassAsset"Symbol 24 MovieClip [FListBoxSymbol] Frame 1Symbol 17 MovieClip [FScrollSelectListSymbol]
"boundingBox_mc"Symbol 24 MovieClip [FListBoxSymbol] Frame 1Symbol 21 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 24 MovieClip [FListBoxSymbol] Frame 1Symbol 23 MovieClip
"highlight_mc"Symbol 27 MovieClip [FHighlightSymbol] Frame 1Symbol 26 MovieClip
"highlight_mc2"Symbol 27 MovieClip [FHighlightSymbol] Frame 2Symbol 26 MovieClip
"highlight_mc3"Symbol 27 MovieClip [FHighlightSymbol] Frame 3Symbol 26 MovieClip
"face_mc"Symbol 40 MovieClip Frame 1Symbol 29 MovieClip
"arrow_mc"Symbol 40 MovieClip Frame 1Symbol 31 MovieClip
"highlight_mc"Symbol 40 MovieClip Frame 1Symbol 33 MovieClip
"shadow_mc"Symbol 40 MovieClip Frame 1Symbol 35 MovieClip
"darkshadow_mc"Symbol 40 MovieClip Frame 1Symbol 37 MovieClip
"highlight3D_mc"Symbol 40 MovieClip Frame 1Symbol 39 MovieClip
"darkshadow_mc"Symbol 50 MovieClip Frame 1Symbol 41 MovieClip
"highlight3D_mc"Symbol 50 MovieClip Frame 1Symbol 42 MovieClip
"highlight_mc"Symbol 50 MovieClip Frame 1Symbol 44 MovieClip
"shadow_mc"Symbol 50 MovieClip Frame 1Symbol 46 MovieClip
"face_mc"Symbol 50 MovieClip Frame 1Symbol 47 MovieClip
"arrow_mc"Symbol 50 MovieClip Frame 1Symbol 49 MovieClip
"highlight3D_mc"Symbol 59 MovieClip Frame 1Symbol 51 MovieClip
"darkshadow_mc"Symbol 59 MovieClip Frame 1Symbol 52 MovieClip
"highlight_mc"Symbol 59 MovieClip Frame 1Symbol 53 MovieClip
"shadow_mc"Symbol 59 MovieClip Frame 1Symbol 54 MovieClip
"face_mc"Symbol 59 MovieClip Frame 1Symbol 56 MovieClip
"arrow_mc"Symbol 59 MovieClip Frame 1Symbol 58 MovieClip
"up"Symbol 60 MovieClip [UpArrow] Frame 1Symbol 40 MovieClip
"down"Symbol 60 MovieClip [UpArrow] Frame 2Symbol 50 MovieClip
"disabled"Symbol 60 MovieClip [UpArrow] Frame 3Symbol 59 MovieClip
"highlight3D_mc"Symbol 67 MovieClip Frame 1Symbol 62 MovieClip
"darkshadow_mc"Symbol 67 MovieClip Frame 1Symbol 64 MovieClip
"highlight_mc"Symbol 67 MovieClip Frame 1Symbol 65 MovieClip
"shadow_mc"Symbol 67 MovieClip Frame 1Symbol 66 MovieClip
"highlight3D_mc"Symbol 74 MovieClip Frame 1Symbol 68 MovieClip
"darkshadow_mc"Symbol 74 MovieClip Frame 1Symbol 69 MovieClip
"shadow_mc"Symbol 74 MovieClip Frame 1Symbol 71 MovieClip
"face_mc"Symbol 74 MovieClip Frame 1Symbol 72 MovieClip
"highlight_mc"Symbol 74 MovieClip Frame 1Symbol 73 MovieClip
"shadow_mc"Symbol 79 MovieClip Frame 1Symbol 75 MovieClip
"darkshadow_mc"Symbol 79 MovieClip Frame 1Symbol 77 MovieClip
"highlight3D_mc"Symbol 79 MovieClip Frame 1Symbol 78 MovieClip
"mc_sliderTop"Symbol 80 MovieClip [ScrollThumb] Frame 1Symbol 67 MovieClip
"mc_sliderMid"Symbol 80 MovieClip [ScrollThumb] Frame 1Symbol 74 MovieClip
"mc_sliderBot"Symbol 80 MovieClip [ScrollThumb] Frame 1Symbol 79 MovieClip
"face_mc"Symbol 88 MovieClip Frame 1Symbol 81 MovieClip
"arrow_mc"Symbol 88 MovieClip Frame 1Symbol 83 MovieClip
"highlight_mc"Symbol 88 MovieClip Frame 1Symbol 84 MovieClip
"shadow_mc"Symbol 88 MovieClip Frame 1Symbol 85 MovieClip
"darkshadow_mc"Symbol 88 MovieClip Frame 1Symbol 86 MovieClip
"highlight3D_mc"Symbol 88 MovieClip Frame 1Symbol 87 MovieClip
"darkshadow_mc"Symbol 96 MovieClip Frame 1Symbol 89 MovieClip
"highlight3D_mc"Symbol 96 MovieClip Frame 1Symbol 90 MovieClip
"highlight_mc"Symbol 96 MovieClip Frame 1Symbol 91 MovieClip
"shadow_mc"Symbol 96 MovieClip Frame 1Symbol 92 MovieClip
"face_mc"Symbol 96 MovieClip Frame 1Symbol 93 MovieClip
"arrow_mc"Symbol 96 MovieClip Frame 1Symbol 95 MovieClip
"highlight3D_mc"Symbol 104 MovieClip Frame 1Symbol 97 MovieClip
"darkshadow_mc"Symbol 104 MovieClip Frame 1Symbol 98 MovieClip
"highlight_mc"Symbol 104 MovieClip Frame 1Symbol 99 MovieClip
"shadow_mc"Symbol 104 MovieClip Frame 1Symbol 100 MovieClip
"face_mc"Symbol 104 MovieClip Frame 1Symbol 101 MovieClip
"arrow_mc"Symbol 104 MovieClip Frame 1Symbol 103 MovieClip
"up"Symbol 105 MovieClip [DownArrow] Frame 1Symbol 88 MovieClip
"down"Symbol 105 MovieClip [DownArrow] Frame 2Symbol 96 MovieClip
"disabled"Symbol 105 MovieClip [DownArrow] Frame 3Symbol 104 MovieClip
"superClassAsset"Symbol 109 MovieClip [FComboBoxSymbol] Frame 1Symbol 17 MovieClip [FScrollSelectListSymbol]
"itemAsset"Symbol 109 MovieClip [FComboBoxSymbol] Frame 1Symbol 106 MovieClip [FComboBoxItemSymbol]
"proxyBox_mc"Symbol 109 MovieClip [FComboBoxSymbol] Frame 1Symbol 21 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 109 MovieClip [FComboBoxSymbol] Frame 1Symbol 108 MovieClip
"highlight3D_mc"Symbol 117 MovieClip Frame 1Symbol 111 MovieClip
"highlight_mc"Symbol 117 MovieClip Frame 1Symbol 113 MovieClip
"shadow_mc"Symbol 117 MovieClip Frame 1Symbol 115 MovieClip
"darkshadow_mc"Symbol 117 MovieClip Frame 1Symbol 116 MovieClip
"background_mc"Symbol 119 MovieClip Frame 1Symbol 118 MovieClip
"background_mc"Symbol 121 MovieClip Frame 1Symbol 120 MovieClip
"background_mc"Symbol 123 MovieClip Frame 1Symbol 122 MovieClip
"check_mc"Symbol 126 MovieClip Frame 1Symbol 125 MovieClip
"check_mc"Symbol 129 MovieClip Frame 1Symbol 128 MovieClip
"fcb_frame_mc"Symbol 130 MovieClip [fcb_states] Frame 1Symbol 117 MovieClip
"frb_frame_mc"Symbol 130 MovieClip [fcb_states] Frame 1Symbol 119 MovieClip
"labelField"Symbol 134 MovieClip [FLabelSymbol] Frame 1Symbol 133 EditableText
"frame1"Symbol 140 MovieClip Frame 1Symbol 135 MovieClip
"frame2"Symbol 140 MovieClip Frame 1Symbol 136 MovieClip
"frame3"Symbol 140 MovieClip Frame 1Symbol 137 MovieClip
"frame4"Symbol 140 MovieClip Frame 1Symbol 138 MovieClip
"frame5"Symbol 140 MovieClip Frame 1Symbol 139 MovieClip
"frame1"Symbol 146 MovieClip Frame 1Symbol 141 MovieClip
"frame2"Symbol 146 MovieClip Frame 1Symbol 142 MovieClip
"frame3"Symbol 146 MovieClip Frame 1Symbol 143 MovieClip
"frame4"Symbol 146 MovieClip Frame 1Symbol 144 MovieClip
"frame5"Symbol 146 MovieClip Frame 1Symbol 145 MovieClip
"frame1"Symbol 152 MovieClip Frame 1Symbol 147 MovieClip
"frame2"Symbol 152 MovieClip Frame 1Symbol 148 MovieClip
"frame3"Symbol 152 MovieClip Frame 1Symbol 149 MovieClip
"frame4"Symbol 152 MovieClip Frame 1Symbol 150 MovieClip
"frame5"Symbol 152 MovieClip Frame 1Symbol 151 MovieClip
"frame1"Symbol 158 MovieClip Frame 1Symbol 153 MovieClip
"frame2"Symbol 158 MovieClip Frame 1Symbol 154 MovieClip
"frame3"Symbol 158 MovieClip Frame 1Symbol 155 MovieClip
"frame4"Symbol 158 MovieClip Frame 1Symbol 156 MovieClip
"frame5"Symbol 158 MovieClip Frame 1Symbol 157 MovieClip
"up_mc"Symbol 159 MovieClip [fpb_states] Frame 1Symbol 140 MovieClip
"over_mc"Symbol 159 MovieClip [fpb_states] Frame 2Symbol 146 MovieClip
"down_mc"Symbol 159 MovieClip [fpb_states] Frame 3Symbol 152 MovieClip
"disabled_mc"Symbol 159 MovieClip [fpb_states] Frame 4Symbol 158 MovieClip
"boundingBox_mc"Symbol 169 MovieClip [FCheckBoxSymbol] Frame 1Symbol 21 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 169 MovieClip [FCheckBoxSymbol] Frame 1Symbol 168 MovieClip
"boundingBox_mc"Symbol 242 MovieClip [FPushButtonSymbol] Frame 1Symbol 21 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 242 MovieClip [FPushButtonSymbol] Frame 1Symbol 241 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "sndTrash"
ExportAssets (56)Timeline Frame 1Symbol 2 as "sndMonster"
ExportAssets (56)Timeline Frame 1Symbol 3 as "sndGuineapig"
ExportAssets (56)Timeline Frame 1Symbol 4 as "sndGameover"
ExportAssets (56)Timeline Frame 1Symbol 5 as "sndFanfare"
ExportAssets (56)Timeline Frame 1Symbol 6 as "sndDog"
ExportAssets (56)Timeline Frame 1Symbol 7 as "sndCat"
ExportAssets (56)Timeline Frame 1Symbol 8 as "sndBunny"
ExportAssets (56)Timeline Frame 1Symbol 9 as "FListItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 13 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 14 as "DataProviderSymbol"
ExportAssets (56)Timeline Frame 1Symbol 15 as "FSelectableItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 16 as "FSelectableListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 17 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 21 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 24 as "FListBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 27 as "FHighlightSymbol"
ExportAssets (56)Timeline Frame 1Symbol 60 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 80 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 105 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 13 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 17 as "FScrollSelectListSymbol"
ExportAssets (56)Timeline Frame 1Symbol 106 as "FComboBoxItemSymbol"
ExportAssets (56)Timeline Frame 1Symbol 21 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 109 as "FComboBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 110 as "fcb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 130 as "fcb_states"
ExportAssets (56)Timeline Frame 1Symbol 131 as "fpb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 134 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 159 as "fpb_states"
ExportAssets (56)Timeline Frame 1Symbol 160 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 162 as "bunnyGreen"
ExportAssets (56)Timeline Frame 1Symbol 164 as "catGreen"
ExportAssets (56)Timeline Frame 1Symbol 166 as "catRed"
ExportAssets (56)Timeline Frame 1Symbol 21 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 169 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 1Symbol 175 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 178 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 179 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 180 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 181 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 182 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 183 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 184 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 185 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 186 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 187 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 188 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 189 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 190 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 191 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 192 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 195 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 196 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 197 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 198 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 199 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 200 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 201 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 202 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 205 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 206 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 207 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 208 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 209 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 210 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 211 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 212 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 213 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 214 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 215 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 216 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 217 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 218 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 219 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 220 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 221 as "bone"
ExportAssets (56)Timeline Frame 1Symbol 222 as "fish"
ExportAssets (56)Timeline Frame 1Symbol 223 as "carot"
ExportAssets (56)Timeline Frame 1Symbol 224 as "salad"
ExportAssets (56)Timeline Frame 1Symbol 227 as "monster"
ExportAssets (56)Timeline Frame 1Symbol 230 as "guineapig"
ExportAssets (56)Timeline Frame 1Symbol 233 as "dog"
ExportAssets (56)Timeline Frame 1Symbol 236 as "cat"
ExportAssets (56)Timeline Frame 1Symbol 239 as "bunny"
ExportAssets (56)Timeline Frame 1Symbol 21 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 2Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 2Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 3Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 3Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 4Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 5Symbol 239 as "bunny"
ExportAssets (56)Timeline Frame 5Symbol 236 as "cat"
ExportAssets (56)Timeline Frame 5Symbol 233 as "dog"
ExportAssets (56)Timeline Frame 5Symbol 230 as "guineapig"
ExportAssets (56)Timeline Frame 5Symbol 227 as "monster"
ExportAssets (56)Timeline Frame 5Symbol 224 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 223 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 222 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 221 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 220 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 219 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 218 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 217 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 216 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 215 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 214 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 213 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 212 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 211 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 210 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 209 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 208 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 207 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 206 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 205 as "bone"
ExportAssets (56)Timeline Frame 5Symbol 202 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 201 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 200 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 199 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 198 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 197 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 196 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 195 as "fish"
ExportAssets (56)Timeline Frame 5Symbol 192 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 191 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 190 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 189 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 188 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 187 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 186 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 185 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 184 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 183 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 182 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 181 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 180 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 179 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 178 as "salad"
ExportAssets (56)Timeline Frame 5Symbol 175 as "carot"
ExportAssets (56)Timeline Frame 5Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 5Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 5Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 5Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 5Symbol 227 as "monster"
ExportAssets (56)Timeline Frame 5Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 5Symbol 169 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 6Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 6Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 6Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 6Symbol 172 as "heart"
ExportAssets (56)Timeline Frame 6Symbol 227 as "monster"
ExportAssets (56)Timeline Frame 6Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 6Symbol 169 as "FCheckBoxSymbol"
ExportAssets (56)Timeline Frame 7Symbol 242 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 7Symbol 242 as "FPushButtonSymbol"

Labels

"Symbol_354"Symbol 14 MovieClip [DataProviderSymbol] Frame 1
"enabled"Symbol 21 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 21 MovieClip [FBoundingBoxSymbol] Frame 2
"enabled"Symbol 27 MovieClip [FHighlightSymbol] Frame 1
"disabled"Symbol 27 MovieClip [FHighlightSymbol] Frame 2
"unfocused"Symbol 27 MovieClip [FHighlightSymbol] Frame 3
"up"Symbol 130 MovieClip [fcb_states] Frame 1
"press"Symbol 130 MovieClip [fcb_states] Frame 2
"uncheckedDisabled"Symbol 130 MovieClip [fcb_states] Frame 3
"checkedDisabled"Symbol 130 MovieClip [fcb_states] Frame 4
"checkedPress"Symbol 130 MovieClip [fcb_states] Frame 5
"checkedEnabled"Symbol 130 MovieClip [fcb_states] Frame 6
#"Symbol_10"Symbol 131 MovieClip [fpb_hitArea] Frame 1
"Symbol_32"Symbol 134 MovieClip [FLabelSymbol] Frame 1
"up"Symbol 159 MovieClip [fpb_states] Frame 1
"over"Symbol 159 MovieClip [fpb_states] Frame 2
"down"Symbol 159 MovieClip [fpb_states] Frame 3
"disabled"Symbol 159 MovieClip [fpb_states] Frame 4
"Symbol_36"Symbol 160 MovieClip [FUIComponentSymbol] Frame 1

Dynamic Text Variables

txtLoadedSymbol 244 EditableText"000%"
txtPlayernameSymbol 250 EditableText"<Enter your name here>"
txtScoresSymbol 253 EditableText""
txtLevelSymbol 266 EditableText"0"
txtTimeSymbol 267 EditableText"0"
txtPointsSymbol 268 EditableText"0"
txtDiffSymbol 270 EditableText"0"
pointsGinueapigSymbol 272 EditableText"0"
pointsBunnySymbol 273 EditableText"0"
pointsCatSymbol 274 EditableText"0"
pointsDogSymbol 275 EditableText"0"
pointsTrashSymbol 276 EditableText"0"
pointsMonsterSymbol 277 EditableText"0"
txtPointsSymbol 288 EditableText""
txtScoresSymbol 289 EditableText""
txtTimeSymbol 294 EditableText""
txtLevelSymbol 295 EditableText""
txtNameSymbol 296 EditableText""




http://swfchan.com/6/29961/info.shtml
Created: 11/8 -2019 17:08:55 Last modified: 11/8 -2019 17:08:55 Server time: 03/05 -2024 05:37:56