In fact it’s adding a hand cursor when I loop though all my cubes in
an array like so…


private function removeMouseListeners():void
{
        for (var i:uint=0 ; i<numCubes ; i++)
        {
                _cubes[i].removeEventListener(MouseEvent3D.MOUSE_DOWN, onClick);
                _cubes[i].useHandCursor = false;
        }

}

THANKS!!!

Reply via email to