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

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

Taldarian Petri Dish.swf

This is the info page for
Flash #47885

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


Text
Creature Population

pop

Creature Attributes

DNA:

Health:

Metabolism:

Split Rate:

God Controllers

Mutation Rate

Maximum Food Store

Food Replenish Rate

Maximum Population

Maximum Health

Scale

click a creature

PLAY

PAUSED

Taldarian Petri Dish

taldarian.com

taldarian.com

taldarian.com

Ver 1.0

pop

PLAYING

PAUSE

ActionScript [AS1/AS2]

Frame 1
function Creature() { this.id; this.name = ""; this.xpos = 0; this.ypos = 0; this.vel = 0; this.dir = Math.round(Math.random() * 360); var rd = Math.round((Math.random() * 1000) / 4); var gr = Math.round((Math.random() * 1000) / 4); var bl = Math.round((Math.random() * 1000) / 4); var red = rd.toString(16); var green = gr.toString(16); var blue = bl.toString(16); var notfin = true; while (notfin) { if (red.length < 2) { red = "0" + red; } else if (green.length < 2) { green = "0" + green; } else if (blue.length < 2) { blue = "0" + blue; } else { notfin = false; } } this.splitrt = Math.round(Math.random() * 99); this.hexcol = (("0x" + red) + green) + blue; this.fillcol = parseInt(this.hexcol); this.body = Math.ceil(((Math.random() * 9) + 1) / 2); this.eyes = Math.ceil(((Math.random() * 9) + 1) / 2); this.metab = Math.round((Math.random() * 9) + 1); this.health = 10; this.alive = true; this.dna = ((("" + this.metab) + this.eyes) + this.body) + this.hexcol; } function Cell() { this.foodlvl = MAXFOOD; } function Dish() { this.petri = new Array(UNITSW); var addone; var tcr; var i = 0; while (i < UNITSW) { this.petri[i] = new Array(UNITSH); var j = 0; while (j < UNITSH) { this.petri[i][j] = new Cell(); addone = Math.round(Math.random() * 100); if (addone <= SPRAY) { tcr = new Creature(); tcr.xpos = (i * UNITW) + XBNDMN; tcr.ypos = (j * UNITH) + YBNDMN; creatureList.push(tcr); } j++; } i++; } crpop = creatureList.length; } function initDispDish() { var instName; var lvl; var i = 0; while (i < UNITSW) { var j = 0; while (j < UNITSH) { lvl = (10000 + (100 * i)) + j; instName = "food" + lvl; this.attachMovie("food", instName, lvl); instName = eval (instName); instName._x = (i * UNITW) + XBNDMN; instName._y = (j * UNITH) + YBNDMN; instName._width = UNITW; instName._height = UNITH; j++; } i++; } } function clearFood() { var instName; var i = 0; while (i < UNITSW) { var j = 0; while (j < UNITSH) { instName = "food" + ((10000 + (100 * i)) + j); instName = eval (instName); instName.removeMovieClip(); j++; } i++; } } function cleanCList() { var tlst = new Array(); var count = 0; var iter = 0; while ((count < crpop) && (iter < creatureList.length)) { if (creatureList[iter].alive) { count++; tlst.push(creatureList[iter]); } iter++; } creatureList = tlst; } function updateCList() { crpop = 0; var iterations = creatureList.length; var i = 0; while (i < iterations) { if (creatureList[i].alive) { creatureList[i].moveAround(); creatureList[i].eat(); crpop++; } else { creatureList[i].id.removeMovieClip(); } i++; } if (crpop < MAXPOP) { var instName; var inststr; var lvl; iterations = creatureList.length; var i = 0; while (i < iterations) { if (creatureList[i].alive) { if (((Math.random() * 100) < creatureList[i].splitrt) && (creatureList[i].health == (MXHLTH * 0.9))) { creatureList.push(creatureList[i].splitCr()); creatureList[i].health = Math.round(creatureList[i].health / 2); lvl = creatureList.length + 20000; inststr = "critter" + lvl; instName = eval (inststr); this.attachMovie("bugholder", inststr, lvl, creatureList[i]); instName = eval (inststr); creatureList[i].id = instName; instName._x = creatureList[i].xpos; instName._y = creatureList[i].ypos; instName._rotation = creatureList[i].dir; instName._xscale = (MXSCL * creatureList[i].health) / MXHLTH; instName._yscale = (MXSCL * creatureList[i].health) / MXHLTH; instName.displayCreature(creatureList[i]); crpop++; } } i++; } } } function initDispCList() { var lvl; var instName; var inststr; var iterations = creatureList.length; var i = 0; while (i < iterations) { if (creatureList[i].alive) { lvl = i + 20000; inststr = "critter" + lvl; instName = eval (inststr); this.attachMovie("bugholder", inststr, lvl, creatureList[i]); instName = eval (inststr); creatureList[i].id = instName; instName._x = creatureList[i].xpos; instName._y = creatureList[i].ypos; instName._rotation = creatureList[i].dir; instName._xscale = (MXSCL * creatureList[i].health) / MXHLTH; instName._yscale = (MXSCL * creatureList[i].health) / MXHLTH; instName.displayCreature(creatureList[i]); } else { lvl = i + 20000; inststr = "critter" + lvl; instName = eval (inststr); instName.removeMovieClip(); } i++; } } function dispCList() { var instName; var iterations = creatureList.length; var i = 0; while (i < iterations) { if (creatureList[i].alive) { instName = "critter" + (i + 20000); instName = eval (instName); instName._x = creatureList[i].xpos; instName._y = creatureList[i].ypos; instName._xscale = (MXSCL * creatureList[i].health) / MXHLTH; instName._yscale = (MXSCL * creatureList[i].health) / MXHLTH; instName._rotation = creatureList[i].dir; } i++; } } function clearCreatures() { var instName; var iterations = creatureList.length; var i = 0; while (i < iterations) { instName = "critter" + (i + 20000); instName = eval (instName); instName.removeMovieClip(); i++; } } function setupSliders() { function setMutation(num) { MUTATE = Math.round(num); interf.tmut.text = MUTATE; } function setMaxFood(num) { MAXFOOD = Math.round(num); interf.tmaxf.text = MAXFOOD; } function setRefood(num) { REFOOD = Math.round(num); interf.tfrr.text = REFOOD; } function setMaxPop(num) { MAXPOP = Math.round(num * 5); interf.tmaxp.text = MAXPOP; } function setMaxHealth(num) { MXHLTH = Math.round(num); interf.tmaxh.text = MXHLTH; } function setSca(num) { MXSCL = Math.round(num * 2); interf.tsca.text = MXSCL; } interf.mut.handle._x = MUTATE; setMutation(MUTATE); interf.mut.onPress = function () { this.handle.startDrag(true, 0, 0, 100, 0); this.onMouseMove = function () { setMutation(this.handle._x); updateAfterEvent(); }; }; interf.mut.onRelease = function () { this.handle.stopDrag(); setMutation(this.handle._x); updateAfterEvent(); this.onMouseMove = function () { }; }; interf.maxf.handle._x = MAXFOOD; setMaxFood(MAXFOOD); interf.maxf.onPress = function () { this.handle.startDrag(true, 0, 0, 100, 0); this.onMouseMove = function () { setMaxFood(this.handle._x); updateAfterEvent(); }; }; interf.maxf.onRelease = function () { this.handle.stopDrag(); setMaxFood(this.handle._x); updateAfterEvent(); this.onMouseMove = function () { }; }; interf.frr.handle._x = REFOOD; setReFood(REFOOD); interf.frr.onPress = function () { this.handle.startDrag(true, 0, 0, 100, 0); this.onMouseMove = function () { setRefood(this.handle._x); updateAfterEvent(); }; }; interf.frr.onRelease = function () { this.handle.stopDrag(); setRefood(this.handle._x); updateAfterEvent(); this.onMouseMove = function () { }; }; interf.maxp.handle._x = MAXPOP / 5; setMaxPop(Math.round(MAXPOP / 5)); interf.maxp.onPress = function () { this.handle.startDrag(true, 0, 0, 100, 0); this.onMouseMove = function () { setMaxPop(this.handle._x); updateAfterEvent(); }; }; interf.maxp.onRelease = function () { this.handle.stopDrag(); setMaxPop(this.handle._x); updateAfterEvent(); this.onMouseMove = function () { }; }; interf.maxh.handle._x = MXHLTH; setMaxHealth(MXHLTH); interf.maxh.onPress = function () { this.handle.startDrag(true, 0, 0, 100, 0); this.onMouseMove = function () { setMaxHealth(this.handle._x); updateAfterEvent(); }; }; interf.maxh.onRelease = function () { this.handle.stopDrag(); setMaxHealth(this.handle._x); updateAfterEvent(); this.onMouseMove = function () { }; }; interf.sca.handle._x = MXSCL / 2; setSca(MXSCL / 2); interf.sca.onPress = function () { this.handle.startDrag(true, 0, 0, 100, 0); this.onMouseMove = function () { setSca(this.handle._x); updateAfterEvent(); }; }; interf.sca.onRelease = function () { this.handle.stopDrag(); setSca(this.handle._x); updateAfterEvent(); this.onMouseMove = function () { }; }; } function plbutt() { mode = "playing"; remInterActive(); this.gotoAndStop("down"); interf.gotoAndStop("running"); interf.pauseButt.onRelease = function () { psButt(); }; this.onRelease = function () { }; } function psButt() { mode = "paused"; makeInterActive(); this.gotoAndStop("down"); interf.gotoAndStop("paused"); setupSliders(); interf.playButt.onRelease = function () { plButt(); }; this.onRelease = function () { }; } function remInterActive() { var i = 0; while (i < creatureList.length) { creatureList[i].id.onRelease = function () { }; i++; } } function makeInterActive() { var dn; var me; var he; var sp; var i = 0; while (i < creatureList.length) { dn = creatureList[i].dna; me = creatureList[i].metab; he = creatureList[i].health; sp = creatureList[i].splitrt; creatureList[i].id.onRelease = function () { interf.d.text = ""; interf.m.text = ""; interf.h.text = ""; interf.s.text = ""; interf.d.text = dn; interf.m.text = me; interf.h.text = he; interf.s.text = sp; }; i++; } } function updater() { if (mode != "paused") { if ((creatureList.length > MAXPOP) || (cpop < (creatureList.length * 0.9))) { clearCreatures(); cleanCList(); initDispClist(); } updateCList(); petriDish.replenish(); } } function animate() { if (mode != paused) { interf.pop.text = crpop; dispClist(); petriDish.dispDish(); updateAfterEvent(); } } MOVLOC = this; XBNDMN = 25; XBNDMX = 325; YBNDMN = 25; YBNDMX = 325; UNITSW = 25; UNITSH = 25; UNITW = (XBNDMX - XBNDMN) / UNITSW; UNITH = (YBNDMX - YBNDMN) / UNITSH; SPRAY = 50; MUTATE = 10; MAXFOOD = 4; REFOOD = 50; MAXPOP = 500; MXHLTH = 50; MXSCL = 100; Creature.prototype.moveAround = function () { this.dir = this.dir + Math.round((Math.random() * 30) - 15); this.vel = this.vel + Math.round(((Math.random() * 2) - 1) * this.metab); if (this.vel < 0) { this.vel = 0; } else if (this.vel > 10) { this.vel = 10; } this.xpos = this.xpos + Math.round(this.vel * Math.cos((this.dir * Math.PI) / 180)); this.ypos = this.ypos + Math.round(this.vel * Math.sin((this.dir * Math.PI) / 180)); if (this.xpos > XBNDMX) { this.xpos = XBNDMN; } else if (this.xpos < XBNDMN) { this.xpos = XBNDMX; } if (this.ypos > YBNDMX) { this.ypos = YBNDMN; } else if (this.ypos < YBNDMN) { this.ypos = YBNDMX; } }; Creature.prototype.eat = function () { var amt = petriDish.petri[Math.floor((this.xpos - XBNDMN) / UNITW)][Math.floor((this.ypos - YBNDMN) / UNITH)].foodlvl; amt = amt - this.metab; if (amt < 0) { this.health = this.health + amt; if (this.health <= 0) { this.alive = false; } petriDish.petri[Math.floor((this.xpos - XBNDMN) / UNITW)][Math.floor((this.ypos - YBNDMN) / UNITH)].foodlvl = 0; } else { petriDish.petri[Math.floor((this.xpos - XBNDMN) / UNITW)][Math.floor((this.ypos - YBNDMN) / UNITH)].foodlvl = amt; this.health++; if (this.health > MXHLTH) { this.health = MXHLTH; } } }; Creature.prototype.splitCr = function () { var tcr = new Creature(); tcr.xpos = this.xpos; tcr.ypos = this.ypos; tcr.dir = this.dir + 180; tcr.vel = this.vel; tcr.fillcol = tcr.fillcol + Math.round((((Math.random() * this.fillcol) * MUTATE) / 100) - ((this.fillcol * MUTATE) / 200)); tcr.hexcol = tcr.fillcol.toString(16); while (tcr.hexcol.length < 6) { tcr.hexcol = "0" + tcr.hexcol; } tcr.hexcol = "0x" + tcr.hexcol; tcr.splitrt = tcr.splitrt + Math.round((((Math.random() * this.splitrt) * MUTATE) / 100) - ((this.splitrt * MUTATE) / 200)); tcr.body = tcr.body + Math.round((((Math.random() * this.body) * MUTATE) / 100) - ((this.body * MUTATE) / 200)); tcr.eyes = tcr.eyes + Math.round((((Math.random() * this.eyes) * MUTATE) / 100) - ((this.eyes * MUTATE) / 200)); tcr.metab = tcr.metab + Math.round((((Math.random() * this.metab) * MUTATE) / 100) - ((this.metab * MUTATE) / 200)); tcr.health = Math.round(this.health / 2); if (tcr.splitrt > 99) { tcr.splitrt = 99; } else if (tcr.splitrt < 0) { tcr.splitrt = 0; } if (tcr.fillcol > 16777215) { tcr.fillcol = 16777215 /* 0xFFFFFF */; } else if (tcr.fillcol < 0) { tcr.fillcol = 0; } if (tcr.body > 10) { tcr.body = 10; } else if (tcr.body < 0) { tcr.body = 1; } if (tcr.eyes > 10) { tcr.eyes = 10; } else if (tcr.eyes < 0) { tcr.eyes = 1; } tcr.dna = ((("" + tcr.metab) + tcr.eyes) + tcr.body) + tcr.hexcol; return(tcr); }; MovieClip.prototype.setPos = function (xpos, ypos) { this._x = xpos; this._y = ypos; }; MovieClip.prototype.setScale = function (scl) { this._xscale = scl; this._yscale = scl; }; MovieClip.prototype.displayCreature = function (creat) { this.attachMovie("body" + creat.body, "shape", 1); this.attachMovie("eyes" + creat.eyes, "look", 2); this.bcol = new Color(this.shape.fill); this.bcol.setRGB(creat.hexcol); }; Dish.prototype.replenish = function () { if ((Math.random() * 100) < REFOOD) { var i = 0; while (i < UNITSW) { var j = 0; while (j < UNITSH) { this.petri[i][j].foodlvl++; if (this.petri[i][j].foodlvl > MAXFOOD) { this.petri[i][j].foodlvl = MAXFOOD; } j++; } i++; } } }; Dish.prototype.dispDish = function () { var instName; var i = 0; while (i < UNITSW) { var j = 0; while (j < UNITSH) { instName = "food" + ((10000 + (100 * i)) + j); instName = eval (instName); instName.gotoAndStop(Math.round((this.petri[i][j].foodlvl / MAXFOOD) * 50)); j++; } i++; } }; this.attachMovie("panel", "interf", 30000); interf.playButt.onRelease = function () { plButt(); }; interf.pauseButt.onRelease = function () { }; setupSliders(); interf.playbutt.gotoAndStop("up"); interf.pausebutt.gotoAndStop("down"); crpop = 0; creatureList = new Array(); interf.setPos(250, 175); petriDish = new Dish(); initDispDish(); initDispClist(); mode = "paused"; makeInterActive(); setInterval(animate, 1); setInterval(updater, 1);
Symbol 43 MovieClip [food] Frame 50
stop();
Symbol 47 MovieClip Frame 1
stop();
Symbol 47 MovieClip Frame 2
stop();
Symbol 91 MovieClip [panel] Frame 1
stop(); tdlink.onRollOver = function () { this.gotoAndStop("over"); }; tdlink.onRollOut = function () { this.play(); }; tdlink.onRelease = function () { getURL ("http://taldarian.com", "_blank"); };
Instance of Symbol 47 MovieClip in Symbol 91 MovieClip [panel] Frame 1
onClipEvent (load) { this.gotoAndStop("down"); }
Symbol 91 MovieClip [panel] Frame 2
stop();
Instance of Symbol 47 MovieClip in Symbol 91 MovieClip [panel] Frame 2
onClipEvent (load) { this.gotoAndStop("down"); }

Library Items

Symbol 1 GraphicUsed by:4
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:4
Symbol 4 MovieClip [body1]Uses:1 3
Symbol 5 GraphicUsed by:8
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:8
Symbol 8 MovieClip [body2]Uses:5 7
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:12
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClip [body3]Uses:10 11
Symbol 13 GraphicUsed by:16
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:16
Symbol 16 MovieClip [body4]Uses:13 15
Symbol 17 GraphicUsed by:20
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:20
Symbol 20 MovieClip [body5]Uses:17 19
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClip [eyes1]Uses:21
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClip [eyes2]Uses:23
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip [eyes3]Uses:25
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClip [eyes4]Uses:27
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClip [eyes5]Uses:29
Symbol 31 MovieClip [bugholder]
Symbol 32 MovieClip [petridish]
Symbol 33 GraphicUsed by:43
Symbol 34 GraphicUsed by:43
Symbol 35 GraphicUsed by:43
Symbol 36 GraphicUsed by:43
Symbol 37 GraphicUsed by:43
Symbol 38 GraphicUsed by:43
Symbol 39 GraphicUsed by:43
Symbol 40 GraphicUsed by:43
Symbol 41 GraphicUsed by:43
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClip [food]Uses:33 34 35 36 37 38 39 40 41 42
Symbol 44 GraphicUsed by:91
Symbol 45 GraphicUsed by:47
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:45 46Used by:91
Symbol 48 FontUsed by:49 50 51 52 53 54 55 56 57 58 59 60 61 62 67 68 69 70 71 72 74 75 76 77 78 79 80 82 83 84 87 88 89 90
Symbol 49 TextUses:48Used by:91
Symbol 50 EditableTextUses:48Used by:91
Symbol 51 TextUses:48Used by:91
Symbol 52 TextUses:48Used by:91
Symbol 53 TextUses:48Used by:91
Symbol 54 TextUses:48Used by:91
Symbol 55 TextUses:48Used by:91
Symbol 56 TextUses:48Used by:91
Symbol 57 TextUses:48Used by:91
Symbol 58 TextUses:48Used by:91
Symbol 59 TextUses:48Used by:91
Symbol 60 TextUses:48Used by:91
Symbol 61 TextUses:48Used by:91
Symbol 62 TextUses:48Used by:91
Symbol 63 GraphicUsed by:66
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:66
Symbol 66 MovieClipUses:63 65Used by:91
Symbol 67 EditableTextUses:48Used by:91
Symbol 68 EditableTextUses:48Used by:91
Symbol 69 EditableTextUses:48Used by:91
Symbol 70 EditableTextUses:48Used by:91
Symbol 71 EditableTextUses:48Used by:91
Symbol 72 EditableTextUses:48Used by:91
Symbol 73 TextUsed by:91
Symbol 74 EditableTextUses:48Used by:91
Symbol 75 EditableTextUses:48Used by:91
Symbol 76 EditableTextUses:48Used by:91
Symbol 77 EditableTextUses:48Used by:91
Symbol 78 TextUses:48Used by:91
Symbol 79 TextUses:48Used by:91
Symbol 80 TextUses:48Used by:91
Symbol 81 GraphicUsed by:86
Symbol 82 TextUses:48Used by:86
Symbol 83 TextUses:48Used by:86
Symbol 84 TextUses:48Used by:86
Symbol 85 GraphicUsed by:86
Symbol 86 ButtonUses:81 82 83 84 85Used by:91
Symbol 87 TextUses:48Used by:91
Symbol 88 EditableTextUses:48Used by:91
Symbol 89 TextUses:48Used by:91
Symbol 90 TextUses:48Used by:91
Symbol 91 MovieClip [panel]Uses:44 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 86 87 88 89 90
Symbol 92 GraphicUsed by:Timeline

Instance Names

"fill"Symbol 4 MovieClip [body1] Frame 1Symbol 3 MovieClip
"fill"Symbol 8 MovieClip [body2] Frame 1Symbol 7 MovieClip
"fill"Symbol 12 MovieClip [body3] Frame 1Symbol 10 MovieClip
"fill"Symbol 16 MovieClip [body4] Frame 1Symbol 15 MovieClip
"fill"Symbol 20 MovieClip [body5] Frame 1Symbol 19 MovieClip
"handle"Symbol 66 MovieClip Frame 1Symbol 65 MovieClip
"playbutt"Symbol 91 MovieClip [panel] Frame 1Symbol 47 MovieClip
"pop"Symbol 91 MovieClip [panel] Frame 1Symbol 50 EditableText
"mut"Symbol 91 MovieClip [panel] Frame 1Symbol 66 MovieClip
"maxf"Symbol 91 MovieClip [panel] Frame 1Symbol 66 MovieClip
"frr"Symbol 91 MovieClip [panel] Frame 1Symbol 66 MovieClip
"maxp"Symbol 91 MovieClip [panel] Frame 1Symbol 66 MovieClip
"maxh"Symbol 91 MovieClip [panel] Frame 1Symbol 66 MovieClip
"sca"Symbol 91 MovieClip [panel] Frame 1Symbol 66 MovieClip
"tmut"Symbol 91 MovieClip [panel] Frame 1Symbol 67 EditableText
"tmaxf"Symbol 91 MovieClip [panel] Frame 1Symbol 68 EditableText
"tfrr"Symbol 91 MovieClip [panel] Frame 1Symbol 69 EditableText
"tmaxp"Symbol 91 MovieClip [panel] Frame 1Symbol 70 EditableText
"tmaxh"Symbol 91 MovieClip [panel] Frame 1Symbol 71 EditableText
"tsca"Symbol 91 MovieClip [panel] Frame 1Symbol 72 EditableText
"d"Symbol 91 MovieClip [panel] Frame 1Symbol 74 EditableText
"h"Symbol 91 MovieClip [panel] Frame 1Symbol 75 EditableText
"m"Symbol 91 MovieClip [panel] Frame 1Symbol 76 EditableText
"s"Symbol 91 MovieClip [panel] Frame 1Symbol 77 EditableText
"tdlink"Symbol 91 MovieClip [panel] Frame 1Symbol 86 Button
"pop"Symbol 91 MovieClip [panel] Frame 2Symbol 88 EditableText
"pausebutt"Symbol 91 MovieClip [panel] Frame 2Symbol 47 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$dB$Sgcbeg5ieb56m9.w13NFQ0."
ExportAssets (56)Timeline Frame 1Symbol 4 as "body1"
ExportAssets (56)Timeline Frame 1Symbol 8 as "body2"
ExportAssets (56)Timeline Frame 1Symbol 12 as "body3"
ExportAssets (56)Timeline Frame 1Symbol 16 as "body4"
ExportAssets (56)Timeline Frame 1Symbol 20 as "body5"
ExportAssets (56)Timeline Frame 1Symbol 22 as "eyes1"
ExportAssets (56)Timeline Frame 1Symbol 24 as "eyes2"
ExportAssets (56)Timeline Frame 1Symbol 26 as "eyes3"
ExportAssets (56)Timeline Frame 1Symbol 28 as "eyes4"
ExportAssets (56)Timeline Frame 1Symbol 30 as "eyes5"
ExportAssets (56)Timeline Frame 1Symbol 31 as "bugholder"
ExportAssets (56)Timeline Frame 1Symbol 32 as "petridish"
ExportAssets (56)Timeline Frame 1Symbol 43 as "food"
ExportAssets (56)Timeline Frame 1Symbol 91 as "panel"

Labels

"up"Symbol 47 MovieClip Frame 1
"down"Symbol 47 MovieClip Frame 2
"paused"Symbol 91 MovieClip [panel] Frame 1
"running"Symbol 91 MovieClip [panel] Frame 2




http://swfchan.com/10/47885/info.shtml
Created: 30/4 -2019 23:40:04 Last modified: 30/4 -2019 23:40:04 Server time: 21/05 -2024 12:14:13