How to create an NSButton with a non-square "hit area"?
Example:
Thank.
Perhaps you could subclass NSButton and override hitTest:to return zero when outside the area you want to click. (Bring back [super hitTest:]when inside.)
hitTest:
[super hitTest:]
The docs are here.