当我关闭电子邮件但附件仍打开时,愚蠢的警告框不断出现。
答案1
如果你无法阻止 Outlook 显示它,你可以轻松设置自动热键当对话框显示时立即关闭它。
您可以在默认 AutoHotkey 脚本的顶部放置类似这样的内容:
; Example #1: Close unwanted windows whenever they appear:
#Persistent
SetTimer, CloseUnwantedWindows, 500
return
CloseUnwantedWindows:
SetTitleMatchMode 2
IfWinExist, Window Title you want to close, some text contents of window you want to close
{
WinClose
}
return
一旦您设置它,您最终会拥有数十个想要立即关闭的对话框和窗口,因此它将弥补设置 AutoHotkey 的最初麻烦。