Skip to content

How do i get this to send a series of keystrokes? #318

Answered by jbcarreon123
UncleChub asked this question in Support
Discussion options

You must be logged in to vote

You can use either Windows Utils' Write Text action:

[YOUR TEXT HERE]

or, AutoHotkey Plugin's Write and Run Script action

; Using a semi-permanent string
Send, [YOUR TEXT HERE]

; Using a variable [v2.0+]
Send, {{variable}}

; Using AHKPLib [unreleased; 3.0+]
#Include where/is/AHKPLib.ahk
AHKPLib := new AHKPLib()
Send, % AHKPLib.GetVar("variable")

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@UncleChub
Comment options

Answer selected by jbcarreon123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants