Re: Can you get a global Window or Application List?
Re: Can you get a global Window or Application List?
- Subject: Re: Can you get a global Window or Application List?
- From: "Donald S. Hall" <email@hidden>
- Date: Tue, 05 Feb 2002 21:53:59 -0700
This may be of absolutely no use to you, but you can get a list of all
running processes in AppleScript:
tell application "Finder" -- or application "System Events"
set theList to processes
end tell
This appears to give a list of all running processes. If you add the clause
"whose visible is true", you get a list of all running processes in the
Dock.
Don
--
Donald S. Hall, Ph.D.
Apps & More Software Design, Inc.
http://www.theboss.net/appsmore
email@hidden
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.