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

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

Mushrooms.swf

This is the info page for
Flash #144183

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


Text
actions

START

STOP

GENERATION

r-pentomino

glider

penta-decathalon

pulsar

exploder

fish

The Rules to John Conway's Game of Life:
Death
Loneliness: Each cell with one or no neighbors dies.
Overpopulation: Each cell with four or more neighbors dies.
Survival
Each cell with two or three neighbors survives.
Birth
Each "empty" cell with three neighbors becomes populated.

http://www.bitstorm.org/gameoflife/

http://www.math.com/students/wonders/life/life.html

play

<P ALIGN="LEFT"><FONT FACE="hooge 05_57" SIZE="8" COLOR="#FFFFFF">source</FONT></P>

http://users.iol.it/acnard/life.html

Key to Life:

- new life

- 1st generation

- 2nd generation

- 3rd generation

- 4th generation

- 5TH generation

- dead

Try these Patterns:

Interesting Links and Fast Java Applets:

GO

User Name

Password

play

click here if page does not load:

http://a.parsons.edu/~joseph/lifesource.html

Please re-enter your name and password:

ActionScript [AS1/AS2]

Frame 1
stop(); numRow = 20; numCol = 20; numCell = 0; sinY = (cosY = 0.707106781186547); cosX = 0.866025403784439; i = 1; while (numRow >= i) { j = 1; while (numCol >= j) { numCell++; duplicateMovieClip ("cell", "cell" + numCell, numCell); var x = (i * 22); var z = (j * 22); var y = 0; _root["cell" + numCell]._x = (((-z) * sinY) + (x * cosY)) + 350; _root["cell" + numCell]._y = (y * cosX) - ((((-z) * cosY) - (x * sinY)) / 2); j++; } i++; }
Instance of Symbol 14 MovieClip "cell" in Frame 1
onClipEvent (load) { var numN = 0; var bool = false; var currFrame = 4; }
Instance of Symbol 22 MovieClip in Frame 1
onClipEvent (mouseDown) { x = _root._xmouse; y = _root._ymouse; i = 1; while (400 >= i) { if (_root["cell" + i].hitTest(x, y, false)) { if (_root["cell" + i]._currentFrame == 1) { _root["cell" + i].gotoAndPlay("live"); } else { _root["cell" + i].gotoAndPlay("dead"); } } i++; } }
Frame 2
stop();
Instance of Symbol 22 MovieClip in Frame 2
onClipEvent (load) { var timeInterval = 300; var nextGen = (getTimer() + timeInterval); var generations = 1; var numR = 20; var liveFrame = 4; var lastliveFrame = 10; } onClipEvent (enterFrame) { if (getTimer() >= nextGen) { k = 1; while ((numR * numR) >= k) { _root["cell" + k].numN = 0; _root["cell" + k].bool = false; if ((_root["cell" + k]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].bool = true; if (_root["cell" + k].currFrame < lastliveFrame) { _root["cell" + k].currFrame++; } } if ((_root["cell" + (k + 1)]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].numN++; } if ((_root["cell" + (k - 1)]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].numN++; } if ((_root["cell" + (k + numR)]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].numN++; } if ((_root["cell" + (k - numR)]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].numN++; } if ((_root["cell" + ((k + numR) + 1)]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].numN++; } if ((_root["cell" + ((k + numR) - 1)]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].numN++; } if ((_root["cell" + ((k - numR) + 1)]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].numN++; } if ((_root["cell" + ((k - numR) - 1)]._currentFrame >= liveFrame) && (lastliveFrame >= _root["cell" + k]._currentFrame)) { _root["cell" + k].numN++; } k++; } k = 1; while ((numR * numR) >= k) { if ((_root["cell" + k].numN == 3) && (_root["cell" + k]._currentFrame == 1)) { _root["cell" + k].gotoAndPlay("live"); } else if (_root["cell" + k].bool == true) { _root["cell" + k].gotoAndStop(_root["cell" + k].currFrame); if ((_root["cell" + k].numN < 2) || (_root["cell" + k].numN >= 4)) { _root["cell" + k].gotoAndPlay("dead"); _root["cell" + k].currFrame = 4; } } k++; } _root.textGen = generations; generations++; nextGen = getTimer() + timeInterval; } }
Frame 3
stop(); i = 1; while (400 >= i) { removeMovieClip("cell" + i); i++; }
Frame 4
stop(); userName = ""; passWord = "";
Frame 8
stop(); getURL ("http://a.parsons.edu/~joseph/lifesource.html");
Frame 13
stop();
Symbol 14 MovieClip Frame 1
stop();
Instance of Symbol 2 MovieClip in Symbol 14 MovieClip Frame 1
onClipEvent (load) { alphaCount = 100; this._alpha = alphaCount; glow = false; } onClipEvent (enterFrame) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { if (0 < alphaCount) { alphaCount = alphaCount - 50; this._alpha = alphaCount; } } else if (alphaCount < 100) { alphaCount = alphaCount + 10; this._alpha = alphaCount; } }
Symbol 14 MovieClip Frame 4
stop();
Symbol 14 MovieClip Frame 5
stop();
Symbol 14 MovieClip Frame 6
stop();
Symbol 14 MovieClip Frame 7
stop();
Symbol 14 MovieClip Frame 8
stop();
Symbol 14 MovieClip Frame 9
stop();
Symbol 14 MovieClip Frame 10
stop();
Symbol 14 MovieClip Frame 11
play();
Symbol 19 Button
on (press) { gotoAndPlay (2); }
Symbol 26 Button
on (press) { gotoAndStop (1); }
Instance of Symbol 42 MovieClip "text" in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.myScroll == "up") { if (this._y < 0) { this._y = this._y + 10; } } if (_root.myScroll == "down") { if (mask._height < (this._y + this._height)) { this._y = this._y - 10; } } }
Symbol 47 Button
on (press) { myScroll = "up"; } on (release) { myScroll = ""; }
Symbol 48 Button
on (press) { myScroll = "down"; } on (release) { myScroll = ""; }
Symbol 55 Button
on (press) { gotoAndPlay (1); }
Symbol 68 Button
on (press) { getURL ("http://www.bitstorm.org/gameoflife/", "_blank"); }
Symbol 69 Button
on (press) { getURL ("http://www.math.com/students/wonders/life/life.html", "_blank"); }
Symbol 70 Button
on (press) { getURL ("http://users.iol.it/acnard/life.html", "_blank"); }
Symbol 73 Button
on (press) { gotoAndPlay (4); }
Symbol 77 Button
on (press) { if ((userName == "mykim") && (passWord == "mykim")) { gotoAndStop (8); } else { gotoAndStop (13); } }
Symbol 85 Button
on (press) { getURL ("http://a.parsons.edu/~joseph/lifesource.html"); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:14
Symbol 3 SoundUsed by:14
Symbol 4 GraphicUsed by:14
Symbol 5 GraphicUsed by:14
Symbol 6 GraphicUsed by:14
Symbol 7 GraphicUsed by:14
Symbol 8 GraphicUsed by:14
Symbol 9 GraphicUsed by:14
Symbol 10 GraphicUsed by:14
Symbol 11 GraphicUsed by:14
Symbol 12 GraphicUsed by:14
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:2 3 4 5 6 7 8 9 10 11 12 13Used by:Timeline
Symbol 15 FontUsed by:16
Symbol 16 EditableTextUses:15Used by:Timeline
Symbol 17 GraphicUsed by:Timeline
Symbol 18 GraphicUsed by:19 26 68 69 70 73 85
Symbol 19 ButtonUses:18Used by:Timeline
Symbol 20 FontUsed by:21
Symbol 21 EditableTextUses:20Used by:22
Symbol 22 MovieClipUses:21Used by:Timeline
Symbol 23 FontUsed by:24 27 28 29
Symbol 24 TextUses:23Used by:Timeline
Symbol 25 GraphicUsed by:Timeline
Symbol 26 ButtonUses:18Used by:Timeline
Symbol 27 EditableTextUses:23Used by:Timeline
Symbol 28 TextUses:23Used by:Timeline
Symbol 29 TextUses:23Used by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 GraphicUsed by:43
Symbol 32 GraphicUsed by:41
Symbol 33 GraphicUsed by:41 55  Timeline
Symbol 34 FontUsed by:35 36 37 38 39 40 76 81
Symbol 35 TextUses:34Used by:41
Symbol 36 TextUses:34Used by:41
Symbol 37 TextUses:34Used by:41
Symbol 38 TextUses:34Used by:41
Symbol 39 TextUses:34Used by:41
Symbol 40 TextUses:34Used by:41
Symbol 41 MovieClipUses:32 33 35 36 37 38 39 40Used by:42
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClipUses:31 42Used by:Timeline
Symbol 44 GraphicUsed by:47 48
Symbol 45 GraphicUsed by:47 48
Symbol 46 GraphicUsed by:47 48
Symbol 47 ButtonUses:44 45 46Used by:Timeline
Symbol 48 ButtonUses:44 45 46Used by:Timeline
Symbol 49 FontUsed by:51 60 61 62 63 64 65 66
Symbol 50 FontUsed by:51 56 59 67
Symbol 51 TextUses:50 49Used by:Timeline
Symbol 52 FontUsed by:53 54 57 58
Symbol 53 EditableTextUses:52Used by:Timeline
Symbol 54 EditableTextUses:52Used by:Timeline
Symbol 55 ButtonUses:33Used by:Timeline
Symbol 56 TextUses:50Used by:Timeline
Symbol 57 EditableTextUses:52Used by:Timeline
Symbol 58 EditableTextUses:52Used by:Timeline
Symbol 59 TextUses:50Used by:Timeline
Symbol 60 TextUses:49Used by:Timeline
Symbol 61 TextUses:49Used by:Timeline
Symbol 62 TextUses:49Used by:Timeline
Symbol 63 TextUses:49Used by:Timeline
Symbol 64 TextUses:49Used by:Timeline
Symbol 65 TextUses:49Used by:Timeline
Symbol 66 TextUses:49Used by:Timeline
Symbol 67 TextUses:50Used by:Timeline
Symbol 68 ButtonUses:18Used by:Timeline
Symbol 69 ButtonUses:18Used by:Timeline
Symbol 70 ButtonUses:18Used by:Timeline
Symbol 71 FontUsed by:72
Symbol 72 TextUses:71Used by:Timeline
Symbol 73 ButtonUses:18Used by:Timeline
Symbol 74 GraphicUsed by:Timeline
Symbol 75 GraphicUsed by:77
Symbol 76 TextUses:34Used by:77
Symbol 77 ButtonUses:75 76Used by:Timeline
Symbol 78 FontUsed by:79 80 82 83 84 86 87
Symbol 79 TextUses:78Used by:Timeline
Symbol 80 TextUses:78Used by:Timeline
Symbol 81 TextUses:34Used by:Timeline
Symbol 82 EditableTextUses:78Used by:Timeline
Symbol 83 EditableTextUses:78Used by:Timeline
Symbol 84 EditableTextUses:78Used by:Timeline
Symbol 85 ButtonUses:18Used by:Timeline
Symbol 86 EditableTextUses:78Used by:Timeline
Symbol 87 EditableTextUses:78Used by:Timeline

Instance Names

"cell"Frame 1Symbol 14 MovieClip
"masktext"Frame 3Symbol 43 MovieClip
"text"Symbol 43 MovieClip Frame 1Symbol 42 MovieClip

Labels

"login"Frame 8
"forget"Frame 13
"live"Symbol 14 MovieClip Frame 2
"dead"Symbol 14 MovieClip Frame 11

Dynamic Text Variables

textGenSymbol 16 EditableText""
TextField1Symbol 21 EditableText"actions"
textGenSymbol 27 EditableText""
textDownloadSymbol 57 EditableText"<P ALIGN="LEFT"><FONT FACE="hooge 05_57" SIZE="8" COLOR="#FFFFFF">source</FONT></P>"
textIOLSymbol 58 EditableText"http://users.iol.it/acnard/life.html"
userNameSymbol 82 EditableText""
passWordSymbol 83 EditableText""
TextField13Symbol 84 EditableText"click here if page does not load: "
TextField14Symbol 86 EditableText"http://a.parsons.edu/~joseph/lifesource.html"
TextField6Symbol 87 EditableText"Please re-enter your name and password:"




http://swfchan.com/29/144183/info.shtml
Created: 27/10 -2018 02:38:04 Last modified: 27/10 -2018 02:38:04 Server time: 09/05 -2024 15:24:04