Is there a way to get list of open or visible NSWindow from mac desktop?
+1
A:
ALL running applications? No. You can only get the NSWindows of your own app. You may be able to use Universal Access or Core Graphics APIs to get some information about windows of other apps, but not full access.
JWWalker
2010-10-27 18:32:25
+5
A:
Note that not all windows are necessarily NSWindows, and that NSWindow only provides an interface to windows in your own address space.
The supported way to access every window is the CGWindow API. Take a look at the Son of Grab sample code to see how it's done.
Chuck
2010-10-27 18:36:14
Thanks for the Son of Grab link, most helpful.
Seymour Cakes
2010-10-28 00:33:01
+5
A:
You can use the accessibility API (accessibility must be enabled under System Preferences for it to work) to get information on windows (and other UI elements) from other processes. This question might be just what you're looking for.
bosmacs
2010-10-27 18:52:32