Re: Hiding Application after running script
Re: Hiding Application after running script
- Subject: Re: Hiding Application after running script
- From: Paul Berkowitz <email@hidden>
- Date: Sun, 30 Nov 2003 17:45:15 -0800
On 11/30/03 5:32 PM, "Graff" <email@hidden> wrote:
>
This is a pretty easy way to do it:
>
>
tell application "Finder" to set visible of every process whose name
>
is "iTunes" to false
How many processes called iTunes do you expect to find?
tell application "System Events"
if exists process "iTunes" then set visible of process "iTunes" to
false
end tell
--
Paul Berkowitz
_______________________________________________
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.