TheConeHead
Programmer
I have about 30 movies each named:
mc1, mc2, ......
These are mc created via duplicateMovieClip and I need to put a hitTest on each movie... I tried putting it on the mc that is duplicated with:
but this does not work- how could I go about this?
mc1, mc2, ......
These are mc created via duplicateMovieClip and I need to put a hitTest on each movie... I tried putting it on the mc that is duplicated with:
Code:
if (this.hitTest("_root.mc2") {
trace("here");
}
but this does not work- how could I go about this?