Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,13 @@
|
|||
Macro Click()
|
||||
mouse_event_(#MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
|
||||
mouse_event_(#MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
|
||||
EndMacro
|
||||
|
||||
; Click at the current location
|
||||
Click()
|
||||
|
||||
Delay(1000) ; Wait a second
|
||||
|
||||
; Move to a new location and click it
|
||||
SetCursorPos_(50, 50)
|
||||
Click()
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
; The same function as above, but using AutoWin UserLibray
|
||||
AW_MouseClick()
|
||||
Delay(1000)
|
||||
AW_MouseClick(#PB_MouseButton_Left, 50, 50)
|
||||
Loading…
Add table
Add a link
Reference in a new issue