well like the title says, ho can i set the properties of a mc’s created with createEmptyMovieClip :), please help its getting a real nag :P, have tried all kind of things , for loops , etc.
it would be great if anyone could help thnx in advance
for (i=0; i<=10; i++) {
this.createEmptyMovieClip([“rondje”+i], i);
lineStyle(1, Black, 100);
moveTo(40, 0);
for (a=0; a<=360; a++) {
lineTo(0+Math.cos(degtorada)40+i5, 0+Math.sin(degtorada)40+i5);
}
let me see… ahhh yes, first we must describe what this is doing, you are creating ten movie scripts, each one starting at the same location, and ending in (plotting points) looks like circles each clip being the same so, the depth 10 would cover the other nine, try (40, i) on the moveto, this way it should start the clip elsewhere… i would think that the brackets are causing you some probs, you just need (“clipname”+i,i)… the linestyle I believe that it should be in hex, ie 0x000000 for black, and 0xffffff, for white, however, I could be wrong, otherwise the script looks okay…
perhaps by creating one, you can duplicate the other nine…