StatQuo Posted May 18, 2009 Posted May 18, 2009 Hi i made this example script: #include <Misc.au3> $pos = MouseGetPos() $log = FileOpen("click.log", 2) while 1 select Case _IsPressed(01) $pos = MouseGetPos() FileWriteLine($log, "Mouse x,y:" & $pos[0] & "," & $pos[1]) EndSelect wend I want use this to target some window positions on full-screen game, but when i run this script my CPU reaches 100% - dunno why Any suggestions plz ?
system24 Posted May 18, 2009 Posted May 18, 2009 Try to put Sleep(100) after EndSelect and see what happens. [center]It's a question of mind over matter, if I don't mind, it doesn't matter.[/center]
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