Jason786 Posted June 9, 2010 Posted June 9, 2010 (edited) Hey, I've got a script to click a pixel, but the mouse movement isn't very fast Is there a way to speed it up? I was looking at the mouse delay thing but wasn't sure if this would help I know on the mouse speed command it self there is a way to click as fastest, but theres spaces inbetween at are optional, how do I get it to skip the places inbetween and go straight to mouse speed? I have this at the moment MouseClick("left", $SquarePosition[0], $SquarePosition[1],, 1) Edited June 9, 2010 by Jason786
norax Posted June 9, 2010 Posted June 9, 2010 (edited) MouseClick("left", $SquarePosition[0], $SquarePosition[1],1, 0) 1 = the number of clicks to ignore this just use "" and 0 = the fastest mouse click speed. Edited June 9, 2010 by norax
PsaltyDS Posted June 9, 2010 Posted June 9, 2010 Just put 1 (the Default) there: MouseClick("left", $SquarePosition[0], $SquarePosition[1], 1, 1) In most place the Default keyword can be used, but not here (this fails): MouseClick("left", $SquarePosition[0], $SquarePosition[1], Default, 1) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now