I have in my mac app an NSMatrix made up of NSButtonCells. I do this:
[matrix setAction:@selector(matrixbutton:)];
However this is always called when the user releases the mouse click. Is it possible to alter this so it is called as soon as the mouse goes down?
Thanks.