2013-05-10 54 views
0

我想要創建一組鼠標移動分配給四個箭頭鍵,其中擊鍵將單擊並左右拖動一個像素,向上或向下。起點將是可變的。我不知道如何做到這一點。在提問之前,我給了它一種真誠的嘗試,但我真的需要問某人告訴我如何去做。單擊並從可變點拖動一個像素

謝謝你,艾倫

回答

0

艾倫,在這裏我們去:

#Persistent 

^NumPadUp:: 
Send, {LButton Down} 
MouseMove, 0, -1, 1, R ;Move the mouse one pixel Up 
Send, {LButton Up} 
Return 

^NumPadDown:: 
Send, {LButton Down} 
MouseMove, 0, 1, 1, R ;Move the mouse one pixel Down 
Send, {LButton Up} 
Return 

^NumPadRight:: 
Send, {LButton Down} 
MouseMove, 1, 0, 1, R ;Move the mouse one pixel to the right 
Send, {LButton Up} 
Return 

^NumPadLeft:: 
Send, {LButton Down} 
MouseMove, -1, 0, 1, R ;Move the mouse one pixel to the left 
Send, {LButton Up} 
Return 
+0

太感謝了,羅伯特。我已經忘記了第二個1。 – decibelle 2013-05-10 20:23:20

相關問題