a counter is simple.

On each of the squares they put something like:

on(rollOver){
_root.i++;
}


the i++ adds a value of 1 to the variable i each time one of the box is passed over by the mouse.

_t