Hi, im looking for any tips on how to make a program that can move the windows vista mouse icon to different spots + left and right click. So I can tell it to go to this spot and click. can anyone please help

Recommended Answers

All 3 Replies

http://github.com/pepijndevos/PyMouse

Automated mouse control is a somewhat esoteric programming feature. You may have to experiment, research, and refactor other code to get a solution.

from ctypes import *

user = windll.user32

user.SetCursorPos(50,50)

search for more of my code, I give examples on how to click

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.