Hey guys,
This is my first post here at your great looking forum. I’ve been using Kirupa.com for some time now.
I’m having trouble with the duplicateMovieClip function. What i’m tring to do is drop a symbol each time the mouse click. I’ve got this working fine with the below code -
_root.hit1.onPress = function() {
i++;
_root.bull.duplicateMovieClip("bulletNew", i);
if (i == 10) {
i = 0;
}
}
What I’m having trouble with is this just seems to place the symbols at the top most layer. What I want to have is have these duplicate symbols go into a symbol or something. So as I can change the _x and _y location of all these symbols at the same time.
Any ideas???
Thanks in advance,
-Dan