I am attempting to execute a right mouse click hold and a left mouse click at a certain interval for a sleep duration. Example: right click down for 15 seconds, at the same time right click goes down, left clicks happen every 1 second until 15 seconds has occurred. Then I wish for the function to continue.
MouseDown("right")
MouseClick("left", X, Y, 15, 1000)
Sleep(15000)
MouseUp("right")
Will this perform the desired result or will it hold right down for 30 seconds instead?
Thanks