Re: Lookup if an application...
Re: Lookup if an application...
- Subject: Re: Lookup if an application...
- From: John Delacour <email@hidden>
- Date: Thu, 19 Sep 2002 13:43:15 +0100
At 1:48 pm +0200 19/9/02, Bjorn Van Blanckenberg wrote:
I want to lookup if Quark by application file id is running and if it is
running quit it.
No need for all those words, even if it is AppleScript :
set prox to {}
tell app "Finder"
try
set prox to name of processes whose creator type contains "XPR"
end
end
repeat with i in prox
tell app i to quit
end
-- JD
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.