Answers for "control mouse python"

7

get mouse postition python

>>> import pyautogui
>>> pyautogui.position()
Posted by: Guest on March-27-2021
10

python click on screen

import pyautogui

pyautogui.click(100, 100)
pyautogui.moveTo(100, 150)
pyautogui.moveRel(0, 10)  # move mouse 10 pixels down
pyautogui.dragTo(100, 150)
pyautogui.dragRel(0, 10)  # drag mouse 10 pixels down
Posted by: Guest on April-17-2020
2

mouse module for python

# drag from (0, 0) to (100, 100) relatively with a duration of 0.1s
mouse.drag(0, 0, 100, 100, absolute=False, duration=0.1)
Posted by: Guest on March-13-2021
1

python move mouse

import mouse
# Number of pixels to move by on x and y axis
x = 1
y = 2
mouse.move(x, y)
Posted by: Guest on February-24-2020

Code answers related to "control mouse python"

Python Answers by Framework

Browse Popular Code Answers by Language