I have a movieClip instance of test_m on the stage
Inside this movieClip are two more movieClips with intances of square_m and circle_m

how do i set up the hitTest to detect when square_m hits circle_m?

is it:

code:

if (test_m.square_m.hitTest(test_m.circle_m)) {
trace("square hit circle");
}