Sou iniciante na AHK.
Como posso desativar o ctrl+t
atalho no OneNote usando o AutoHotKey?
Minha tentativa até agora em um script:
; use regular expressions for matching titles
SetTitleMatchMode,RegEx
#IfWinActive, ^ONENOTE.*
+insert::msgbox ctrl+t
#IfWinActive
Acabei de colocar insert::msgbox
, mas preferiria que nada acontecesse.