Re: Is it possible...
Re: Is it possible...
- Subject: Re: Is it possible...
- From: Bill Briggs <email@hidden>
- Date: Tue, 28 Aug 2001 13:52:58 -0300
At 7:21 PM +0300 28/08/01, Srdjan Markovic wrote:
--
...to check status of application from apple script? I want to know
is it open and running or not.
Yes. Check to see what processes are running. Finder owns the processes.
tell application "Finder"
-- activate
get the name of every process
-- or, altaernately, if you want a list of references..
--get every process
end tell
- web