ในปุ่มลัดอัตโนมัติ #IfWinActive
คำสั่งเป็นไปได้ที่จะระบุหลายเกณฑ์หรือไม่ โดยเฉพาะอย่างยิ่ง ahk_class
และ ahk_exe
? เช่นสิ่งที่คล้ายกับ
#IfWinActive ahk_exe test.exe && ahk_class Test
; window specific stuff
#IfWinActive ; Test
ในปุ่มลัดอัตโนมัติ #IfWinActive
คำสั่งเป็นไปได้ที่จะระบุหลายเกณฑ์หรือไม่ โดยเฉพาะอย่างยิ่ง ahk_class
และ ahk_exe
? เช่นสิ่งที่คล้ายกับ
#IfWinActive ahk_exe test.exe && ahk_class Test
; window specific stuff
#IfWinActive ; Test
คำตอบ:
ภายในพารามิเตอร์ WinTitle คุณสามารถระบุมากกว่าหนึ่งเกณฑ์ สำหรับการ จำกัด การค้นหาของหน้าต่างเฉพาะ ดู หลายเกณฑ์ .
#IfWinActive ahk_exe test.exe ahk_class Test
; window specific definition of hotkeys or/and hotstrings
#IfWinActive ; turn off context sensitivity
https://autohotkey.com/docs/commands/_IfWinActive.htm
F1::
IfWinActive ahk_exe test.exe ahk_class Test
; do window specific stuff
return