ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Main Area and Open Discussion > General Software Discussion

I need a script that will left mouse click at a specific time of day.

(1/1)

yeto:
I need a script that will left mouse click at a specific time of day. I found the following (see link)which is working but was wondering if there is now simpler code that will do the same? I will be at the computer and can position the mouse so I won't need x, y coordinates. Any help will be greatly appreciated.

site whre I copied script


--- ---#persistent

TargetTime = 1800

 

StringLeft, TargetDateTime, A_Now, 8   ; Put just YYYYMMDD into the variable.
TargetDateTime = %TargetDateTime%%TargetTime%
TimeUntilTarget = %TargetDateTime%
TimeUntilTarget -= %A_Now%, seconds
if TimeUntilTarget < 0
{
     MsgBox The target time is already past!
     return
}
TimeUntilTarget *= 1000 ; Convert to milliseconds.
TimeUntilTarget -= 1000
SetTimer, ClickTimer, %TimeUntilTarget%
return

ClickTimer:
SetTimer, ClickTimer, off  ; i.e. do only one click
MouseClick, left
Thank you in advance for any help,
yeto

Target:
just to confirm, you only need to define a time?

quick and dirty AHK code...


--- ---#persistent
MyHour = 07
myMin = 07

loop
{
  if A_hour = %myhour%
    loop
    {
if a_min = %myMin%
          click

sleep 750
    }
  sleep 750
}

yeto:
just to confirm, you only need to define a time?

quick and dirty AHK code...


--- ---#persistent
MyHour = 07
myMin = 07

loop
{
  if A_hour = %myhour%
    loop
    {
if a_min = %myMin%
          click

sleep 750
    }
  sleep 750
}
-Target (June 26, 2019, 04:10 PM)
--- End quote ---

Thank you for taking time to reply. This is very helpful.
yeto

Navigation

[0] Message Index

Go to full version