RE: Thanks for the follow up
RE: Thanks for the follow up
- Subject: RE: Thanks for the follow up
- From: Bill Briggs <email@hidden>
- Date: Tue, 20 Nov 2001 20:03:56 -0400
Interesting. On my PowerBook they all drop down even with that line
removed. I understood your motivation for including the line, but I
had recalled that it wasn't necessary when I'd done something similar
before. It works without it here. What version of the OS are you
using?
- web
The last line in the tell block closes the last popup window. Without it the
last window stays open. We wanted all the windows out of the way.
I didn't include it in the loop because each window closes when the next
window is transformed into popup and the script ran faster without it - (or
at least seemed to...)
Ron
-----Original Message-----
From: Bill Briggs [mailto:email@hidden]
Sent: Tuesday, November 20, 2001 4:32 PM
To: Ron Bishop
Subject: Re: Thanks for the follow up
At 12:13 PM -0600 20/11/01, Ron Bishop wrote:
Thanks for posting the working suggestion you received. I took that script
and modified it for some people and they love it. They attach it to a
Function key or QuicKey and can run it at a button push,
This one makes a popup of every open window
tell application "Finder"
activate
set theWindows to every window
repeat with i in theWindows
set popup of i to true
end repeat
set pulled open of i to false
end tell
The last line in the tell block, set pulled open of i to false, can
be removed. It's not doing anything.
- web