-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1dfb0f4
commit cdb6a9d
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# display_mouse_sim | ||
Minimalistic mouse automation functions. | ||
|
||
## Functions | ||
|
||
- **display_mouse_button_press(button)** | ||
Presses the given mouse button (analogous to `keyboard_key_press`) | ||
- **display_mouse_button_release(button)** | ||
Releases the given mouse button (analogous to `keyboard_key_release`) | ||
- **display_mouse_button_check_direct(button)** | ||
Checks if the given mouse button is currently held down (analogous to `keyboard_check_direct`) | ||
- **display_mouse_wheel_scroll(amount)** | ||
Sends a scroll wheel event. | ||
Usually, amount of `120` is one scroll up and `-120` is one scroll down, but you may find that many applications don't actually care about amount at all, only the direction. | ||
|
||
## Meta | ||
|
||
**Author:** [YellowAfterlife](https://github.com/YellowAfterlife) | ||
**License:** MIT |