Hi to all,
this code is pretty code until the line:
this[newnode].enode._xscale=scale;
I know that this code is scaling a MovieClip . What I can’t understand is the enode istance.
Any of you could make it clearer?
newnode=“node”+String(cnt);
this.attachMovie(“target”,newnode,cnt);
this[newnode]._x=x;
this[newnode]._y=y;
// scale the nested green node, not the crosshairs
this[newnode].enode._xscale=scale;
this[newnode].enode._yscale=scale;
this[newnode]._rotation=random(90);
// node will never become more than half opaque
this[newnode]._alpha=50;
etc
PS I downloaded this code from http://www.levitated.net/daily/levAttractorSets.html
Thanks