#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 #include 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()