是否可以使用Ctrl-F搜索Outlook文件夹?


18

我已经CtrlF全神贯注于大脑和手中进行搜索。Outlook使您有所用,CtrlE因为CtrlF会进行转发。但是在编写电子邮件时,会CtrlF启动查找。

假设我可以放弃CtrlF转发电子邮件,可以以某种方式CtrlF在给定的文件夹中启动搜索吗?


不要这么认为...
Zeke Hansell

1
您可以做得到ctl-shift-f高级发现...
Zeke Hansell

@Zeke-不错,不错...如果您这样做是为了回答而不是发表评论,那么我会接受的。
马特

Answers:



6

如果您愿意使用AutoHotKey,则以下宏将使ctrlf工作类似于ctrle

#IfWinActive, ahk_class rctrl_renwnd32
^f::Send, {CtrlDown}e{CtrlUp}

对我来说,我希望它可以在电子邮件中查找文本,因此我按以下方式映射了我的地图:

#IfWinActive, ahk_class rctrl_renwnd32
^f::Send, {CtrlDown}o{CtrlUp}{AltDown}hfd{AltUp}

此AutoHotKey提示令人困惑。它如何或为什么仅在Outlook上起作用?
Jari Turkia

@JariTurkia第一行确保活动窗口是我们要在其上执行宏的窗口。没错,可以在代码和/或注释中更清楚地显示它。
Leigh Riffel
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.