Re: Finder in processes false ?
Re: Finder in processes false ?
- Subject: Re: Finder in processes false ?
- From: "Nigel Garvey" <email@hidden>
- Date: Tue, 11 Oct 2005 20:32:53 +0100
Michael Gmail wrote on Tue, 11 Oct 2005 09:42:52 -0500:
>"Finder" is a string; theProcesses is a list of application processes
>of application "System Events".
>
>Try this:
>
>tell application "System Events"
> set theProcesses to name of processes
> if theProcesses contains "Finder" then
> set op_state to "True"
> else
> set op_state to "False"
> end if
>end tell
Or this:
tell application "System Events"
set op_state to (process "Finder" exists) -- as string
end tell
NG
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden