help with hotstrings

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
sorae
Posts: 2
Joined: 28 Apr 2021, 12:49

help with hotstrings

13 May 2021, 15:27

is it possible to make a hotstring that after typing a word & typing enter, types one or multiple words (typing enter after each and being able to adjust the delay between each word)?
User avatar
mikeyww
Posts: 26939
Joined: 09 Sep 2014, 18:38

Re: help with hotstrings

13 May 2021, 17:03

Code: Select all

:XB0:fish::words("No more sharks", 500)

words(string, wait) {
 For k, word in StrSplit(string, " ") {
  Sleep, wait * (A_Index > 1)
  Send %word%{Enter}
 }
}

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: ht55cd3 and 251 guests