Re: How to hide toolbar
Re: How to hide toolbar
- Subject: Re: How to hide toolbar
- From: Michelle Steiner <email@hidden>
- Date: Wed, 9 Jun 2004 23:48:20 -0700
On Jun 9, 2004, at 9:10 PM, Robert Poland wrote:
Is there an Applescript command to hide the toolbar (and the folder
view to the left) of a folder? "Set visible of toolbar to false" gets
an error.
You have to tell it which window. Here is a script that will toggle
the toolbar (and the folder view) of the frontmost window
tell application "Finder"
if exists Finder window 1 then -- make sure there is a window to
toggle
(*
Use "finder window" instead of "window" so if the front window in the
Finder is an info window, the clipboard, a clipping window, etc., the
script will work properly
*)
set the toolbar visible of Finder window 1 to not toolbar visible of
Finder window 1
end if
end tell
--
Are you better off today than you were on Jan 20th, 2001?
_______________________________________________
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.