-
1. Re: Adding Animation to a Dynamically Created MovieClip
Ned Murphy Jun 11, 2013 4:20 AM (in response to Departure)You should stick with your other posting and not start new ones for the same topic. From the other posting I see you use addChild when you say you want to add the object to the MovieClip. If you want to add the object to the MovieClip so that the child rotates with the MovieClip, then you need to use MovieClip.addChild
-
2. Re: Adding Animation to a Dynamically Created MovieClip
Departure Jun 11, 2013 7:28 PM (in response to Ned Murphy)Thanks Ned...
Another quick question related to the same subject:
How can i create a MovieClip only ONCE and have multiple copies of it in different locations?
For loop
{
Array[i]=Only_movieClip
Array[i].x=i*5
addChild(Array[i])
}
i cant achieve this unless i create as many new MovieClips. When u use = operator, doesnt it mean you rinse/drop the movieClip inside the Array/Cup and further on you can modify each cop on its own? (.x property lets say) ?



