StudyRepo_Synergy/code_of_future/part1_basic/final_test/clicker.ahk

10 lines
134 B
Plaintext
Raw Permalink Normal View History

2023-10-31 11:53:13 +03:00
#Requires AutoHotkey v2.0
SetTimer Click, 200
Click()
{
if WinExist("Clicker Game")
WinActivate ;
Send "^i"
}