Re: Help; I did something stupid!
Re: Help; I did something stupid!
- Subject: Re: Help; I did something stupid!
- From: Paul Berkowitz <email@hidden>
- Date: Sun, 18 Mar 2001 15:56:25 -0800
On 3/18/01 3:52 PM, I wrote:
>
> Too bad that Applescript won't let you toggle the invisible property of a
>
> file.
>
>
>
>
But I showed you a way to do just that, with Akua Sweets. Here it is
>
again:
>
>
>
set extInfo to extended info for theFile
>
set invisible status of extInfo to true-- or false
>
apply catalog info extInfo to theFile
>
Sorry - you said toggle:
set extInfo to extended info for theFile
set invisStatus to invisible status of extInfo -- i.e. true or false
set invisible status of extInfo to (not invisStatus) -- opposite
apply catalog info extInfo to theFile
--
Paul Berkowitz