PeteVfi 0 Posted May 19, 2010 Hi! I'm a newbie on AutoIt3 and did success with several functions, but not moving the cursor/pointer u/d/l/r like with the keyboard arrows ... what's the clue on this? Best regards, Pete V. Share this post Link to post Share on other sites
PsaltyDS 39 Posted May 20, 2010 To detect the arrow keys, look up _IsPressed() in the help file. To get the current mouse position, look up MouseGetPos() in the help file. To move the mouse to the new pos, look up MouseMove() in the help file. To loop it all, look up While/WEnd in the help file. While doing all that, you might want to spend some time looking around in the help file... 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 Share this post Link to post Share on other sites
PeteVfi 0 Posted May 26, 2010 Thanks for the reply, it was helpful to locate right functions. Share this post Link to post Share on other sites