I have a fullscreen transparent window. When the user clicks on it I want the click to be sent to what's underneath the window. How would I do so?
Asked
Active
Viewed 3,581 times
1 Answers
6
Setting IgnoresMouseEvents to YES should do the trick..
- (void)setIgnoresMouseEvents:(BOOL)ignoreMouseEvents
Specifies whether the window is transparent to mouse clicks and other mouse events, allowing overlay windows.

Shiva
- 166
- 4
-
Thank you but there is a problem. If I set that property to YES not only the window ignores the mouse events, but the whole app does (I'm overriding `-sendEvent:` in an `NSApplication` subclass but it is not called on left mouse clicks anymore when I set `'setIgnoresMouseEvents'` to NO. – Fatso Aug 03 '13 at 21:20
-
1I solved that thanks to this answer : http://stackoverflow.com/questions/1628366/global-mouse-moved-events-in-cocoa – Fatso Aug 03 '13 at 21:31