Does hitTest(x, y, shape) count the MovieClips that are referenced in the Movie calling hitTest? i.e. If you have an array of movies that were added by attaching them to _root, and the array is in a movieclip called mc, then if you called mc.hitTest(200, 200, true) would it return true if 200,200 was in one of the movies in the array?
Not quite. In the main timeline I created an Array in mc (mc.myArray = new Array(30)) and filled that array with movie clips that were gained by attaching them to the root (_root.mc.myArray[i] = _root.attachMovie("mc2", "mc" + i, _root.nextHighestDepth()).