6

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%'

Stevoisiak
  • 23,794
  • 27
  • 122
  • 225
abcde123483
  • 3,885
  • 4
  • 41
  • 41

1 Answers1

9
SendRaw %clipboard% 

Did the trick

abcde123483
  • 3,885
  • 4
  • 41
  • 41