I'm getting somewhere... I know have this:


Code:
onClipEvent (enterFrame) {
		
	if (hitTest(_root.flying_mc.bigBomb_mc)) {
          trace("Collision Detected");
	} else {
          trace("No Collision");
	}
}
That is on the jet movieclip. It works but only on the original bomb that the other ones spawn from. How do I hittest the duplicates?