How do i get this to send a series of keystrokes? #318
-
I have been using an older version of macrodeck (1.3.1) for a while now in conjunction with an old android tablet. I have many buttons configured to enter a string of text when i press them (URLs, UNC paths, email addresses, etc) my tablet died and i have a windows 10 touchscreen tablet pc i was going to try to use to replace it. i got the web client running but it couldn't connect to the old server version. i installed the current version on my main pc, but none of my old configuration came over. I am just trying to set it up again but i cant seem to find a way to configure a button to send a string of keystrokes. (for instance, i had a button that entered a username, then tabbed to the next box, entered the password and pressed enter) how to i replicate this functionality in the current version? I can't seem to find any documentation on this and it isn't as intuitive as the old version. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can use either Windows Utils' Write Text action:
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") |
Beta Was this translation helpful? Give feedback.
You can use either Windows Utils' Write Text action:
or, AutoHotkey Plugin's Write and Run Script action