Jump to content

Christofer_Minestar

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by Christofer_Minestar

  1. Wow, thanks! That's much cleaner. The reason I'm doing this is because my friend challenged me to revive and improve one of my old projects, and back when i made this I had very little AutoIt experience. I don't have time now but I will try the code later, thanks!
  2. Kinda old post, I know, but there it no longer a SciTE Config option or Ctrl + 1 does not work, is there any other way I can theme AutoIT?
  3. Some progress: End button still works after using start button, but actual function of the key repeat is gone now, ah well. Keep trying I guess. New code: #cs ---------------------------------------------------------------------------- Key Repeat version 4 Info: This is meant to repeat a set of keystrokes every {set} millisecond. {TAB} and others are supported, listed here: https://www.autohotkey.com/docs/Hotkeys.htm AutoIt Version: 3.3.0.0 Discord: @Christofer // BeyondProjects#6955 #ce ---------------------------------------------------------------------------- #include <GUIConstantsEx.au3> #include <MsgBoxConstants.au3> GUICreate("Key Repeat 4", 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) ExitLoop WEnd Case $msg = $endbutton ExitLoop WinClose("[ACTIVE]", "") EndSelect WEnd $timer = TimerInit()
  4. Thanks! I'll try to find a better way to do this. I am not porting this from AKH, the link I put there is just because it supports AHK-like modifiers and keys
  5. It appears a while statement is missing, at least when I compile it. AutoIt Version: V3.3.14.5 [X64] Windows Version: WIN_10 [X64] Language: English (0409)
  6. Forgot to say: The button that I'm trying to get to close the script is
  7. 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
×
×
  • Create New...