Hey, I am curious as to how this will be done as well. I will need images and textfields to be clickable. If the only way to do this is with an NSButton, than how would I make the button part invisible so all I can see is the text (I need text with a transparent background). As well of course for the image.
Just looking at the documentation. A NSTextField and NSImageView inherits from NSControl which has the method
This sounds like exactly what I want.
So... I could be completely wrong but I think you'll have to subclass, in your case an NSImageView and override the performClick method. In there you do whatever you gotta do.