Hi all I am using Flash Pro 8 I am trying to do something like this:
what I want this to do is duplicate the movie called Green, if possible O would like to use the attachMovie instead but anyway I would like to duplicate the movie everytime the button is pressed but in flash 8 it seemd to duplicate it but replace the one that was duplicated?????? can someone help me out on this I have seen it done I think in flash 5.
thanks
W i K
Code:
MyButton.onRelease = function(){
B = B + 1
duplicateMovieClip("Green", "Green"+B, getNextHighestDepth)
_root["Green"+B]._x = _root["Green"+(B-1)] + 20
}
what I want this to do is duplicate the movie called Green, if possible O would like to use the attachMovie instead but anyway I would like to duplicate the movie everytime the button is pressed but in flash 8 it seemd to duplicate it but replace the one that was duplicated?????? can someone help me out on this I have seen it done I think in flash 5.
thanks
W i K