Hi guys, I'm having trouble working this one out. I am trying to make multiple ducplicates of an mc on a button press. The duplicated mc's also have a drag and drop applied to them.

I have the following AS which will amke my duplicates. The only problem is when I get to my third duplicate, all future mc's are not draggable. Only the 3rd mc is.

code:
on (press) {
typea202.duplicateMovieClip("typea202"+i, this.getNextHighestDepth(), {_x:20, _y:20});
i++;
amount--;
}



Could any one please help?

Cheers
Rich