Archive for September, 2005

Chess mate

Wednesday, September 28th, 2005

Something I made with Fimo:

chess set

Close
chess set

Organic flash tree

Tuesday, September 13th, 2005

Nice organic growth produced using actionscript:

It uses the following actionscript:

1. Set:

rand = "70";

2. In a MovieClip (number of frames = time it takes to grow the tree.)
Frame 1 - Set:

i="0"

3. Frame 2 - Apply the following to a (white / invisible) small, tapering, vertical trunk shaped shape.

if (Number(x)<50) {
x = Number(x)+.2;
y = Number(y)+.2;
setProperty("", _xscale, x);
setProperty("", _yscale, y);
} 

3. Repeat. i.e.:

Frame 3:

gotoAndPlay (2)