I guess what I'm having troubles with is the hitTest method
When a certain movie clip is 'pressed' this function is called:
Code:
for (var i = 1; i<=3; i++) {
for (var j = 1; j<=3; j++) {
var t = 1;
over = hold.attachMovie("squareClip", "overClip"+t, l);
over._x = 30*i-75;
over._y = 30*j-75;
t++
what I want is: while the user still has the mouse depressed, they can scroll over this 3x3 square, and upon release something happens. How would I use the hitTest method for each of these "overClip"s ?
For reference, I am making a sudoku game, and i want for this menu of 9 choices for numbers to appear when the user clicks on an empty space.