Hi, new here.
So I have tried WinClose, WinKill and ProcessClose with no avail, with ACTIVE, TITLE and CLASS, but can't get it to work.
Also, the red X button does not work, to end script I need to kill it in Task Manager, and that's what the button is supposed to do.
Code:
#cs ----------------------------------------------------------------------------
Info: This is meant to repeat a set of keystrokes every {set} millisecond. {TAB} and others listed here: https://www.autohotkey.com/docs/Hotkeys.htm are supported
AutoIt Version: 3.3.0.0
Discord: @Christofer // BeyondProjects#6955
#ce ----------------------------------------------------------------------------
#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>
GUICreate("KRv4", 335, 75)
GUISetState(@SW_SHOW)
GUICtrlCreateLabel("Key(s)", 20, 10)
$key1 = GUICtrlCreateInput("", 80, 8, 160)
GUICtrlCreateLabel("Time (ms)", 20, 44)
$time1 = GUICtrlCreateInput("", 80, 40, 160)
$startbutton = GUICtrlCreateButton("Start", 250, 7, 60)
$endbutton = GUICtrlCreateButton("End", 250, 39, 60)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $startbutton
$send1 = GUICtrlRead($key1)
$sleep1 = GUICtrlRead($time1)
While 1
Send($send1)
Sleep($sleep1)
WEnd
Case $msg = $endbutton
WinClose("[ACTIVE]", "")
EndSelect
WEnd
$timer = TimerInit()
KRv4.au3