Re: scripting the launcher
Re: scripting the launcher
- Subject: Re: scripting the launcher
- From: Richard 23 <email@hidden>
- Date: Wed, 13 Dec 2000 17:58:48 -0800
>
hi,
>
>
i was wondering if anyone has ever tried to applescript the launcher. i
>
don't have a particular goal in mind, just curious...
>
>
thanks,
>
matt
This is the closest I've come:
tell application "Finder"
set theName to name of control panels folder
set theRef to (a reference to (folders of system folder ==>
where name starts with theName))
set theLauncher to a reference to (files of entire contents of theRef
==>
where file type = "cdev" and creator type = "mash")
tell theLauncher to if it exists then delete
end tell
It's tenative name is Launcher Killer.
R23