Answers:
我写了一个AppleScript来做这件事。如果将其复制到“〜/ Library / Application Support / Microsoft / Office / Outlook Script Menu Items”文件夹,则可以使用“系统偏好设置/键盘”为其分配快捷键。
奇迹般有效。
该脚本是:
on run {}
tell application "Microsoft Outlook"
set selected folder to inbox
end tell
end run
set selected folder to the folder named "Keep"
我认为没有任何捷径可供选择。但这里仍然是一个供您参考的快捷方式列表。
我从thatdamncat稍微修改了帖子,以便如果窗口不在那里它将更改为邮件视图。虽然如果你有多个主窗口,这可能会弄乱你的流量。
on run {}
tell application "Microsoft Outlook"
tell the first main window
set view to mail view
end tell
set selected folder to inbox
end tell
end run
我一直在尝试模拟Outlook for Windows的SHIFT-CTRL-I(转到收件箱)命令并遇到了这个脚本。我修改了@greenwar中的帖子,因为如果主窗口不是邮件视图并且没有选择收件箱,则会抛出错误。开始:
on run {}
tell application "Microsoft Outlook"
if view of the first main window is not equal to "mail view" then
set view of the first main window to mail view
if selected folder is not equal to inbox then
set selected folder to inbox
end if
end if
-- end tell
end tell
end run
我还在寻找一种方法,只有在Outlook运行时才能将其设为键盘快捷键。我在Apple.com上发现了这篇文章,但它要求您知道脚本菜单的键盘输入。你怎么发现那个?
⌘ Command+ 1带您到收件箱
⌘ Command+ 2带您到日历
⌘ Command+ 3带您到地址簿