Autohotkey: Paste/write a simple line of text with a keyboard shortcut?

autohotkey

Solution

Not sure what exactly you want, maybe something like this?

Press WINKEY + ALT + C to paste the clipboard contents:

#!c::
  SendInput, ^v
Return

Press WINKEY + ALT + C to paste "Some random text"

#!c::
  SendInput, Some random text
Return

Problem

This is a super simple thing I am trying to get my head around I want to use something like WINKEY + ALT + C to paste ** - words** so that I can sign-off my posts or whatever using the three-key combo

Original source