views:

31

answers:

1

I am sure it's something easy, and I am not looking to the right documentation.

I need to get information about the application that handles the active window. The code I need to write needs to intercept some custom gestures, and return to the application an event that depends from the application itself.

+4  A: 

There's the NSWorkspace class from which you can get a dictionary with information about the activeApplication. That application usually owns the "key" window.

Nikolai Ruhe