Skip to content

Commit

Permalink
Merge pull request #51 from dmwyatt/patch-1
Browse files Browse the repository at this point in the history
Add MOUSE_CLICK_LEFT to MouseClick() and MouseClickDrag function signature helpers.
  • Loading branch information
loganch authored Nov 13, 2019
2 parents 0ff55dc + 0b184b8 commit d955026
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/signatures/functions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3045,7 +3045,7 @@
"label": "MouseClick ( \"button\" [, x, y [, clicks = 1 [, speed = 10]]] )",
"params": [{
"label": "button",
"documentation": "The button to click:    \n `$MOUSE_CLICK_RIGHT` (\"right\")    \n `$MOUSE_CLICK_MIDDLE` (\"middle\")    \n `$MOUSE_CLICK_MAIN` (\"main\")    \n `$MOUSE_CLICK_MENU` (\"menu\")    \n `$MOUSE_CLICK_PRIMARY` (\"primary\")    \n `$MOUSE_CLICK_SECONDARY` (\"secondary\") \n\nConstants are defined in \"AutoItConstants.au3\"."
"documentation": "The button to click:    \n `$MOUSE_CLICK_RIGHT` (\"right\")    \n `$MOUSE_CLICK_LEFT` (\"left\")    \n `$MOUSE_CLICK_MIDDLE` (\"middle\")    \n `$MOUSE_CLICK_MAIN` (\"main\")    \n `$MOUSE_CLICK_MENU` (\"menu\")    \n `$MOUSE_CLICK_PRIMARY` (\"primary\")    \n `$MOUSE_CLICK_SECONDARY` (\"secondary\") \n\nConstants are defined in \"AutoItConstants.au3\"."
}, {
"label": "x, y",
"documentation": "**[optional]** The x/y coordinates to move the mouse to. If no x and y coords are given, the current position is used (default)."
Expand All @@ -3062,7 +3062,7 @@
"label": "MouseClickDrag ( \"button\", x1, y1, x2, y2 [, speed = 10] )",
"params": [{
"label": "button",
"documentation": "The button to click:    \n `$MOUSE_CLICK_RIGHT` (\"right\")    \n `$MOUSE_CLICK_MIDDLE` (\"middle\")    \n `$MOUSE_CLICK_MAIN` (\"main\")    \n `$MOUSE_CLICK_MENU` (\"menu\")    \n `$MOUSE_CLICK_PRIMARY` (\"primary\")    \n `$MOUSE_CLICK_SECONDARY` (\"secondary\") \n\nConstants are defined in \"AutoItConstants.au3\"."
"documentation": "The button to click:    \n `$MOUSE_CLICK_RIGHT` (\"right\")    \n `$MOUSE_CLICK_LEFT` (\"left\")    \n `$MOUSE_CLICK_MIDDLE` (\"middle\")    \n `$MOUSE_CLICK_MAIN` (\"main\")    \n `$MOUSE_CLICK_MENU` (\"menu\")    \n `$MOUSE_CLICK_PRIMARY` (\"primary\")    \n `$MOUSE_CLICK_SECONDARY` (\"secondary\") \n\nConstants are defined in \"AutoItConstants.au3\"."
}, {
"label": "x1, y1",
"documentation": "The x/y coords to start the drag operation from."
Expand Down Expand Up @@ -5015,4 +5015,4 @@
"documentation": "**[optional]** Timeout in seconds if the window is still active. Default is 0 (no timeout)."
}]
}
}
}

0 comments on commit d955026

Please sign in to comment.