Jump to content

Recommended Posts

Posted

How do I make the click delay in maybe 1 second? If I got a position I want the mouse to go (like in MouseClick("left",100,100) how can I make the click be pressed down in maybe 1 second?

Is it possible?

Thanks in advance!

Posted

Sleep(1000)
MouseClick("left",100,100)

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

I don't mean that. That will make it wait 1 second and then click on the position.

What I want is a click delay, so the mouse press in 1 second and then it release.

Posted

Then use

MouseMove(100, 100)
MouseDown("left")
Sleep(1000)
MouseUp("left")

My UDFs and Tutorials:

  Reveal hidden contents

 

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...