N
N
Nurdaulet Maksutov2020-09-07 18:50:29
autohotkey
Nurdaulet Maksutov, 2020-09-07 18:50:29

How to write a simple ahk script?

You need to write a simple ahk script that will right click and wait 13 seconds and right click and wait 25 seconds. Like this
Ctrl+alt+J::
RMB
sleep 13sec
RMB
sleep 25sec
(to work when you press ctrl+alt+J , and stop when you press ctrl+alt+J)

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
a1987zz, 2020-10-25
@maksutovn

^!j::
pause, off
If a := !a
{
send {RButton}
sleep 13000
send {RButton}
sleep 25000
}
Else
{
pause, on
}
Return

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question