Re: Newbies Question...
Re: Newbies Question...
- Subject: Re: Newbies Question...
- From: Nigel Garvey <email@hidden>
- Date: Fri, 22 Feb 2002 16:59:10 +0000
In my message of Friday, 22 February 2002 13:08:53, I wrote:
>
Here's the deluxe version. It *doesn't* close all the Finder windows (which
>
you might not want to do). In fact, it doesn't close any of them and is
>
consequently a little faster - depending on how many windows are open and
>
how many of these you would have to have re-opened. Furthermore, it
>
arranges the pop-up tabs in alphabetical order. Personally, I'm staggered
>
that the 'open' line works:
>
>
tell application "Finder"
>
activate -- necessary for setting popups
>
set every container window's popup to false
Oops!
tell application "Finder"
activate -- necessary for setting popups
tell every container window
if it exists then set popup to false
end tell
open reverse of (sort {alias files, folders} of folder "Tab Folders
" by name)
tell (container windows 1 thru (count result)) to set {popup, pulled
open} to {true, false}
end tell
NG
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.