0

キーストロークが 1 ピクセル左、右、上、または下にクリック アンド ドラッグする 4 つの矢印キーに割り当てられたマウスの動きのセットを作成したいと考えています。開始点は変動します。これを達成する方法がわかりません。質問する前に、ある種の誠意を持って試してみましたが、実際に誰かにその方法を教えてもらう必要があります.

ありがとう、エレン

4

1 に答える 1

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
于 2013-05-10T19:43:58.320 に答える