Categories
Uncategorized

How to Paste with AutoHotkey

There are a few different ways to paste with AutoHotkey, and this is what we recommend:

SendInput %Clipboard%

Two other ways to paste are:

Send %Clipboard%

and

Send ^v

SendInput prevents accidental physical keyboard and mouse input from the user interfering with the paste.

Send will output letters one by one, unlike the behavior of SendInput which will paste all the letters at one time.

Send ^v will paste the clipboard in rich text format, while Send %Clipboard% will paste the clipboard in plain text format.

Leave a Reply

Your email address will not be published. Required fields are marked *