ใน MSword ฉันต้องการตั้งค่า
`1
เป็นลำดับสำคัญเพื่อเรียกสคริปต์ แต่ฉันยังมีสคริปต์อื่น ๆ ใน MSword ด้วยปุ่มลัด
1
และลำดับคีย์
11 ; (one pressed twice fast)
รหัสจะเป็นเช่นนี้
; The following hotkeys work only if MS-WORD is the active window:
#If WinActive("ahk_exe WINWORD.EXE") ; (1)
1::
if 1_presses > 0
{
1_presses += 1
SetTimer Key1, 300
return
}
1_presses = 1
SetTimer Key1, 300
return
Key1:
SetTimer Key1, off
if 1_presses = 2
SendInput, BYE
else
SendInput, HELLOW
1_presses = 0
return
ฉันจะตั้งค่าทริกเกอร์ `1 keysequence 'ได้อย่างไรโดยไม่รบกวนกับปุ่มลัดอื่น
ขอบคุณขั้นสูง