Re: How do we make a simple open folder script?
Re: How do we make a simple open folder script?
- Subject: Re: How do we make a simple open folder script?
- From: Bill White <email@hidden>
- Date: Thu, 27 Dec 2001 15:46:43 -0500
>
What is the simplest script to open a document folder?
>
>
The file path to the folder is:
>
>
HD:Documents:BIG BOX:
tell application "Finder"
open alias "HD:Documents:BIG BOX:"
end tell
Using "alias" will keep track of the folder in the event you move it. You
could replace "alias" with "folder" if desired, but then the script would
break if the folder got moved.
HTH,
Bill