This should be simple but I am on it since yesterday without result. I am creating a custom NSButtonCell for a custom rendering. Now I want to have different aspect depending if the mouse if over the button or not. How can I get this information?

Thanks and regards,

link|improve this question

52% accept rate
feedback

2 Answers

You need to Subclass the NSButton class (or event better the NSButtonCell class). As Justin said if you put the two method

- (void)mouseEntered:(NSEvent *)theEvent;
- (void)mouseExited:(NSEvent *)theEvent;

They should get called when the mouse enter and exit the area. You may also need to re create the tracking area, look here:

- (void)updateTrackingAreas

For fade in and fade out effect I played with animator and alpha value for example:

[self animator]setAlphaValue:0.5]; 
link|improve this answer
feedback

a good starting point, declared in NSResponder:

- (void)mouseEntered:(NSEvent *)theEvent;
- (void)mouseExited:(NSEvent *)theEvent;

specifically, the button cell's container (not the cell itself) is the NSResponder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.