2Kbushwick Posted May 14, 2004 Posted May 14, 2004 Hi. First time posting here. I am writing a script that requires fast mouse movement from one location to the next. Basically, I need advice from you regarding how to speed up the time it take to click on one location, move to another location, and click again. That's it. I have mouseclick speed set to 0, mouseclick delay set to 0, but it still moves slow as heck. Any advice? Thanks.
2Kbushwick Posted May 14, 2004 Author Posted May 14, 2004 Yeah, last parameter is speed; and it is set to 1 (fastest). But still slow.
2Kbushwick Posted May 14, 2004 Author Posted May 14, 2004 First of all, I know this is super lame But I'm not trying to be fancy...here's the code Opt("MouseCoordMode", 0) Opt("MouseClickDownDelay", 1) For $gettingit = 1 to 1000 Step 1 ;this is too slow MouseClick("left", 25, 430, 1) ;this is too slow MouseClick("left", 60, 430, 1) ;this is too slow MouseClick("left", 85, 430, 1) ;this is too slow MouseClick("left", 115, 430, 1) ;this is too slow Next THANKS!
scriptkitty Posted May 14, 2004 Posted May 14, 2004 MouseClick("left", 25, 430, 1) ;this is default MouseClick ( "button" , x, y, clicks , speed ) MouseClick("left", 25, 430, 1,0) ;this is fast AutoIt3, the MACGYVER Pocket Knife for computers.
2Kbushwick Posted May 14, 2004 Author Posted May 14, 2004 OH YEAH!!! MUCH BETTER!!! Thanks for your help, and pardon the ignorance. /bow /bow.
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