autohotkey: #IfWinActive como especificar ahk_class e ahk_exe

1

Na declaração #IfWinActive do autohotkey, é possível especificar vários critérios? especificamente, ahk_class e ahk_exe ? por exemplo, algo semelhante a

#IfWinActive ahk_exe test.exe && ahk_class Test
; window specific stuff
#IfWinActive ; Test
    
por qeatzy 11.12.2017 / 12:27

1 resposta

2

Dentro do parâmetro WinTitle, você pode especificar mais de um critério para restringir a pesquisa de uma janela específica. Consulte Múltiplos Critérios .

#IfWinActive ahk_exe test.exe ahk_class Test

    ; window specific definition of hotkeys or/and hotstrings

#IfWinActive ; turn off context sensitivity

link

F1::
    IfWinActive ahk_exe test.exe ahk_class Test
    ; do window specific stuff
return

link

    
por 11.12.2017 / 19:25

Tags