abcde123483
abcde123483

Reputation: 3905

Send contents of clipboard as keystrokes in AutoHotkey

I'm looking for a way to send the contents of the clípboard as key output. E.g. if the clipboard says "123456789" I want the keys 1-2-3-4-5-6-7-8-9 sent to the keyboard input.

I've tried:

SetWinDelay 100
SetKeyDelay 0

^f::
Send %clipboard%
return

To map the 'clipboard paste' to ctrl+f, but it is just literally pasting '%clipboard%'

Upvotes: 6

Views: 6174

Answers (1)

abcde123483
abcde123483

Reputation: 3905

SendRaw %clipboard% 

Did the trick

Upvotes: 9

Related Questions