ok, i am wondering if anyone can help me out in need to code up a dandelion blowing in the wind and then has its seeds blow away.
Any help?
This is my script to create the head but i’m stuck from here.
var cx = 57;
var cy = -177;
var num = 8;
var dl;
function createHead() {
dl = new Array();
var angle = 360/num;
for (i=0; i<num; i++) {
dl.push(seedA.duplicateMovieClip('seedA'+i, i, {_x:cx, _y:cy, _rotation:i*angle}));
}
}