Outlook 2011键盘转到收件箱的快捷方式


6

Outlook for Mac 2011中是否有键盘快捷键允许我跳回主收件箱文件夹?在我的收件箱下,我有一长串文件夹,其中包含的内容超过了整个屏幕。如果我在靠近列表底部的其中一个文件夹中,让我们说发送项目并希望快速返回收件箱文件夹,我必须使用鼠标向上滚动文件夹列表,然后单击收件箱

有没有办法更快地去那里?我记得如果我没弄错的话,在Windows上有一个快捷方式。

Answers:


3

我写了一个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

完美,正是我想要的!万分感谢!
nwinkler 2013年

要选择内置插件以外的文件夹,你可以:set selected folder to the folder named "Keep"
Jonathan Swartz

可以为Outlook 15版(2015年)完成这样的事情吗?
jtheletter 2015年

不一样,因为他们在较新版本的Outlook中删除了脚本。我现在使用BetterTouchTool创建我的快捷方式,我让它执行相同的AppleScript。
Thatdamncat

1

我认为没有任何捷径可供选择。但这里仍然是一个供您参考的快捷方式列表。


呃,太糟糕了。我看了一下清单,但没找到能满足我需要的东西。简要介绍MS论坛证实了这一点,有更多的人在寻找类似的东西,但没有答案。
nwinkler 2012年

1

我从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 

1

我一直在尝试模拟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上发现了这篇文章,但它要求您知道脚本菜单的键盘输入。你怎么发现那个?


0

⌘ Command+ 1带您到收件箱
⌘ Command+ 2带您到日历
⌘ Command+ 3带您到地址簿


Command-1将您带到您的邮件,但仅限于最后查看的框,而不是收件箱。
jtheletter 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.