Jump to content

Recommended Posts

Posted

Hey Guys, im new to AutoIT and i need a little help doing a script

What i need is.. is a simple script to make AutoIT Do 2 Clicks At a certain position in my windows screen each 30 minutes.

Well, (AND AN LOOP OPTION), so it continues forever.

Thanks alot for everything in advanced!! :)

Later.

Posted

That code,, If i open it up as an exe, compiled, i just leave the mouse on top of what i want it to click, right??

It does Double Click, and waits 30 minutes, right?

Thanks Alot =)!

Posted

That code,, If i open it up as an exe, compiled, i just leave the mouse on top of what i want it to click, right??

It does Double Click, and waits 30 minutes, right?

Thanks Alot =)!

Yes and yes
Posted

This will do the same thing but it takes some seting up to get the mouse positioned in the right spot and will also click first before waiting the half hour first.

change 280 and 350 to the horizontal and vertical coordinates that you need.

While 1
MouseClick("Left", 280, 350, 2, 100)
Sleep(1000*60*30)
WEnd

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...