与许多应用程序一样,按下F1通常会弹出帮助菜单,有时使用 Google Chrome 作为在线托管的帮助文件的启动板。F1使用 3dsMax 时,我经常会误按 ,当 Chrome 在 3dsMax 上方启动时,这确实会打乱我的工作流程。
有没有办法阻止 Google Chrome 打开这些类型的在线帮助文件?
我对创建 AHK 脚本来重新映射不感兴趣,F1因为我需要它用于其他应用程序。
运行 Windows 10 Pro
Chrome 版本 114.0.5735.110(官方版本)(64 位)
答案1
您可以通过两种方式来预防:
使用自动热键
要阻止特定应用程序中的 F1 热键,您可以使用一个简短的脚本。这应该会在 3dsMax 中停止它,例如:
#IfWinActive ahk_exe 3dsmax.exe
F1::return
使用类似的工具浏览路由器
%PATH%
下载该应用程序,如果需要,将其添加。- 用 进行注册
BrowseRouter --register
。 - 编辑配置
.ini
以便您的可执行文件:
; Register browsers, we add one fake one as "nothing"
; that executes rundll32 exe which doesn't do anything
; https://superuser.com/questions/381103/is-there-a-windows-exe-that-does-nothing
[browsers]
ff = C:\Program Files\Mozilla Firefox\firefox.exe
chrome = C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
nothing = rundll32
; Match window title here and redirect it to "nothing"
; * are wildcards
[sources]
*3ds Max* = nothing
如果它只打开常规的 HTTP(S) 网站,它就会起作用。