Re: script will error when nothing in a watched folder
Re: script will error when nothing in a watched folder
- Subject: Re: script will error when nothing in a watched folder
- From: Jolly Roger <email@hidden>
- Date: Wed, 07 Mar 2001 16:32:02 -0600
- Replyto: email@hidden
on 3/7/01 10:14 AM, Keith Bailey (email@hidden) wrote:
(snip)
>
open theFile as alias <----alias is the error highlighted
>
end tell
>
>
the error reads:
>
>
Can't make {} into a alias.
>
>
what should I do??
Change it to:
if (theFile <> {}) then open theFile as alias
JR