Re: repeat problem
Re: repeat problem
- Subject: Re: repeat problem
- From: Jon Pugh <email@hidden>
- Date: Tue, 2 Oct 2001 16:04:17 -0700
At 2:05 PM -0700 10/2/2001, Chris Nebel wrote:
>
I picked up the "file type is in" technique from our
>
esteemed marketing manager Sal, who implied that it didn't work in prior
>
Finders. Trying it now, I see it works as far back as 8.1. My mistake.
If you were to look in Radar for my reported Finder bugs, you should see that I found this error and got it fixed some years back. ;)
It all came about from a MacScript thread where we were trying to hide a bunch of apps. I tried this script which now works but didn't then:
property dontHide : {"__tt"} -- Tilery
tell application "Finder"
activate
set visible of every process whose file type = "APPL" and creator type is not in dontHide to false
end tell
Just trying to keep Sal from getting *all* the credit. ;)
Jon