Re: applescript-users digest, Vol 2 #766 - 16 msgs
Re: applescript-users digest, Vol 2 #766 - 16 msgs
- Subject: Re: applescript-users digest, Vol 2 #766 - 16 msgs
- From: email@hidden
- Date: Fri, 15 Jun 2001 13:10:36 -0700
>
Hello all,
>
> Is it possible to coerce this:
>
> alias "Disk:Folder:File"
>
> to this:
>
> {file "File" of folder "Folder" of startup disk}
This is the method I use to get the class of finder items
tell application "Finder"
class of (alias "MacOS 8.6: Items from Desktop:" as reference)
--> folder
end tell
HTH,
ES