D
Dan Gaters
As I peruse my spam, I delete the contents of my "Junk E-mail" folder via:
tell application "Microsoft Entourage"
set storage of messages of folder "Junk E-mail" to folder
"Deleted Items"
end tell
Now, I want the focus to automatically switch to my "Inbox" folder (instead
of looking at a now-empty "Junk E-mail" to folder).
What's the AppleScript line that could next select/highlight the Inbox in a
3-pane window arrangement? Something like:
set current folder to "Inbox" folder
I don't want to open the Inbox in a new window.
Thanks.
DG
tell application "Microsoft Entourage"
set storage of messages of folder "Junk E-mail" to folder
"Deleted Items"
end tell
Now, I want the focus to automatically switch to my "Inbox" folder (instead
of looking at a now-empty "Junk E-mail" to folder).
What's the AppleScript line that could next select/highlight the Inbox in a
3-pane window arrangement? Something like:
set current folder to "Inbox" folder
I don't want to open the Inbox in a new window.
Thanks.
DG