Before switching to Ubuntu I used to use AutoHotkey for the sole purpose of pasting from my clipboard, the simple command was:
~f2::
clipboard = %clipboard%
send %clipboard% {enter}
or something along those lines. Does anyone have a similar script for Autokey?
clipboard.fill_clipboard(stringName)
, and then press ctrl-v to paste what's in the clipboard as a whole instead of sending each individual key likekeyboard.send_keys()
does. I never figured out a way to make Autokey paste from the clipboard without typing ctrl-v myself. If you know how, please tell me. – Lonnie Best Oct 10 '22 at 05:16time.sleep(0.1)
. Interspersing delays in your scripts tends to solve a lot of problems, especially with applications that can't accept input as fast as AutoKey can send it. – Joe Feb 12 '23 at 13:17