[AHK]为Word中的格式刷定义热键

;利用idMso为微软OFFICE软件的菜单功能增加热键
;以格式刷为例子,设定热键为F3
;作者微信:sunwind1576157
;日期:2021年11月23日 14时50分
;最新版本:https://blog.csdn.net/liuyukuan/article/details/121493215

#SingleInstance force
F3::
oWord:=ComObjActive("Word.Application")
oWord.Application.CommandBars.ExecuteMso("FormatPainter")
ObjRelease(oWord)
return

[AHK]为Word中的格式刷定义热键_liuyukuan的专栏-CSDN博客

[AHK]给Outlook的工具条上的功能单独设置快捷键_liuyukuan的专栏-CSDN博客_outlook快捷键设置

おすすめ

転載: blog.csdn.net/liuyukuan/article/details/121493215