test.ahk
#IFWinActive, ahk_exe Code.exe
LCtrl & WheelUp::
WinGetTitle, title, A
If (title = "test.ahk - JavaScript - Visual Studio Code" )
{
MsgBox, %title%
SetKeyDelay -1
Send {Ctrl Down}{;}{Ctrl Up}
}
Return
#IFWinActive
参考
AutoHotKey で右クリック+ホイールでズームしたい - ねとめもー
Autohotkey: 特定のアプリケーションのみの条件分岐(IF文)について – とろテク