I flicked through a couple of treads in the foums to see if I could find a solution to this but alas no.
Anyways
I have an MovieClip star with a setup var X which is set to 0 for the thing I’m duplicating, namely star
===Star======
onClipEvent(load)
{
x=0;
}
If I duplicate the clip a bunch of times so I have Star0…N
Is there a way to set the x value here to the i value of the loop for each object duplicated. Such that star0 will have its x=0, star2 has its x=1 and so on.
[COLOR=“Purple”]setProperty[/COLOR] wont do it or [COLOR=“Navy”]_root[“star”].x=i;[/COLOR]
any1 have any experience with this?