我努力了
F12:: 发送,{LAlt 向下}{=}{LAlt 向上}
这是由宏创建器记录的,但没有起作用。还有各种变化,如 !{=} 、 != 和 SendPlay。
似乎无法使用 Autohotkey 在 Onenote 中重新映射 Alt + =。但是,那些带有 Ctrl 快捷键的键可以用 Autohotkey 映射。
你有解决方案吗?
答案1
这是我使用的有效代码,还有一些其他代码。请随意更改 F 快捷键以适合您的习惯:
#IfWinActive, ahk_class Framework::CFrame
F12::
;Insert Math equation
Send, {LAlt Down}{=}{LAlt Up}
return
F1::
;Insert boxed table
Send, !nt{Right}{Enter}{Right}
return
F2::
;Make table borderless
Send, !jh
return
F3::
;Bring up Table Layout tab
Send, !j
return
F4::
;Bringup Math menu
Send, !j
return
#IfWinActive