Elsa 0 Posted August 24, 2010 Hi, I'm completely new to this so please just bear with me here. I would like to write a script that can make my mouse click automatically and very fast for about 30 secs. The coordinates for my mouse would be 298,127 in an active window. I would be very grateful if anybody could take the time to help me Share this post Link to post Share on other sites
JohnOne 1,603 Posted August 24, 2010 Have a look at MouseClick() in the helpfils and try to help yourself. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
somdcomputerguy 103 Posted August 24, 2010 Read up on these functions, Loop Statements, TimerInit, TimerDiff, MouseClick, that'll get you started. Post some code that you come up with ask questions. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites
RAGS 0 Posted August 26, 2010 Hi, I have a questions on the same subject, although I tried a few scenario's I am not achieving what I want. Please note that I am, like Elsa completely new to this. I've tried this code: MouseClick ( "Left" [, 263, 25 [, 1 [, 500 ]]] ) Can some please help? What I am tring to get is to double click on the following cordinates 263, 25 Regards RAGS Share this post Link to post Share on other sites
kaotkbliss 146 Posted August 26, 2010 Hi, I have a questions on the same subject, although I tried a few scenario's I am not achieving what I want. Please note that I am, like Elsa completely new to this. I've tried this code: MouseClick ( "Left" [, 263, 25 [, 1 [, 500 ]]] ) Can some please help? What I am tring to get is to double click on the following cordinates 263, 25 Regards RAGS the brackets [ in the help file are just to seperate optional peramiters meaning they don't need to be put in. The brackets don't actually go into the code, so your line should look like MouseClick("Left",263,25,1,500) 010101000110100001101001011100110010000001101001011100110010000001101101011110010010000001110011011010010110011100100001My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueekWe're gonna need another Timmy! Share this post Link to post Share on other sites
RAGS 0 Posted August 26, 2010 kaotkbliss Thankyou very much, All help is very much appreciated. Share this post Link to post Share on other sites