when you get to their flash site, near the top of the pop up window in the center is a little red flower, when you click on it, 3 red flowers drop out of it, the original one you cant click on anymore, but the three that dropped out can be clicked on to span 3 more flowers each . . .and so forth.
and edit it. I suppose you’d have to do it by disabling the original mc once used and each time make the new img be the new main duplicator and so on and so on.
i am trying to set it up so that clicking on a cirle generates another random circle, but the one you’ve already clicked on will not generate any more, you’d have to click on the new ones in order to generate a new one.
here’s the coded I added to the circle movie clip
on (release) {
i = i+1;
for (j=0; j<1; j++) {
duplicateMovieClip(_root.circle, “circle”+i, i);
}
}
the result is that clicking on the circle generates a new one, but if you click on any circle twice it dissappears.