Re: change visibility
Re: change visibility
- Subject: Re: change visibility
- From: Paul Berkowitz <email@hidden>
- Date: Mon, 19 Mar 2001 14:02:34 -0800
On 3/19/01 10:50 AM, "Rick Plummer" <email@hidden> wrote:
>
Is it possible to change the visibility of a file with Applescript...
>
without scripting Resedit
We just did this yesterday here. Using Akua Sweets, yes, without osax, no.
With Akua Sweets, this is how to toggle visibility of a file 'theFile' from
on to off or off to on:
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