0
對Windows
,當你按贏 + f,Windows搜索工具將彈出。我想重新定義這個捷徑並指向另一個程序(是的,它也是一個搜索工具,everything)。我嘗試了下面的代碼,但它不起作用。如何在AutoIt中重新定義系統級快捷方式?
; open everything.exe
HotKeySet("#f", "open_everything")
; # win
;^ctrl
; + shift
; ! alt
While 1
Sleep(200)
WEnd
; open everything
Func open_everything()
MsgBox(4, "", "everything ... ")
EndFunc
當我改變了捷徑贏 + ž,一切正常。
; open everything.exe
HotKeySet("#z", "open_everything")
; # win
;^ctrl
; + shift
; ! alt
While 1
Sleep(200)
WEnd
; open everything
Func open_everything()
MsgBox(4, "", "everything ... ")
EndFunc
這個問題的任何想法?謝謝