Show/Hide Folder List

S

Sam Elowitch

When viewing e-mail are there any ways to show/hide the folder list by means
of key combination or AppleScript instead of the View menu or the "toggle
triangle"?
 
P

Paul Berkowitz

When viewing e-mail are there any ways to show/hide the folder list by means
of key combination or AppleScript instead of the View menu or the "toggle
triangle"?

If you're in Panther, yes.

In OS 10.3, first go to System Preferences/Universal Access, and check
"Enable access for assistive devices."

Now run this script:

tell application "Microsoft Entourage" to activate

tell application "System Events"
tell process "Microsoft Entourage"
tell menu bar 1
tell menu title "View"-- or menu title 5
tell menu "View" -- or menu 1
click menu item "Folders List" -- or menu item 6
end tell
end tell
end tell
end tell
end tell



--
Paul Berkowitz
MVP Entourage
Entourage FAQ Page: http://www.entourage.mvps.org/toc.html

Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.

PLEASE always state which version of Entourage you are using - 2001 or X.
It's often impossible to answer your questions otherwise.
 
T

Travis Bell

As I just discovered, you don't need to do any of that. I am running
Entourage 10.1.4 on Panther 10.3.1.

Just hold command (apple) & 1 or 2, 3 etc... And you'll swap views. Pretty
cool stuff.
 
P

Paul Berkowitz

The question was about Show/Hide the Folder List, not about swapping views.
I may just not know some trick you know, but I can't see where to do that
via any sort of key combination without the script. If you are in Mail View
with Folder List hidden, then go to Calendar - or even if you have Folder
List showing in Mail View but hide it when you get to Calendar - and then
you press cmd-1 to go back to Mail view, the Folder List will still be
hidden. You have to click on the Hide/Show button on the left (which I find
easy enough myself), or go to View menu, or run the script via the keyboard
shortcut if you set it up.

Sam wanted to hide/show the Folder List, not to switch views. If you want to
be able to do that by keyboard, you'll still need the script.
 
S

Sam Elowitch

Thanks, Paul! Extremely cool. You da man.

Yet another reason to upgrade to Panther. Off-topic, I¹m also looking
forward to mucking around with ImageEvents ‹ no more passing variables and
files through GraphicConverter or Photoshop (Hallelujah!).

-Sam
 
Top