Sep 28

Something I made with Fimo:

Sep 13

Nice organic growth produced using actionscript:

This movie requires Flash Player 6 or above

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)