0
我試圖獲得F11充當[鼠標左鍵],帶有Autohotkey和F12右鍵單擊。F11的行爲與使用Autohotkey時的鼠標左鍵一樣,F12如右鍵點擊一樣?
我試過下面的腳本。有人可以告訴我我做錯了什麼,或者不能這樣做嗎?
F11::Send mouseClick left
return
我試圖獲得F11充當[鼠標左鍵],帶有Autohotkey和F12右鍵單擊。F11的行爲與使用Autohotkey時的鼠標左鍵一樣,F12如右鍵點擊一樣?
我試過下面的腳本。有人可以告訴我我做錯了什麼,或者不能這樣做嗎?
F11::Send mouseClick left
return
我找到了我的問題的答案here。
F11::
Send {LButton Down}
KeyWait F11
Send {LButton Up}
Return
F12::
Send {RButton Down}
KeyWait F12
Send {RButton Up}
Return
而且我在該網站上找到的解釋:
a:: ;"a" key on key board :)
Send {LButton Down} ;Press left mouse button
KeyWait a ;wait for release of "a"
Send {LButton Up} ;release Left Mouse button
Return ;End Hotkey