Autohotkey: clipboard enhancements don't work in Google Docs word processor
- by Robert Mark Bram
Came across this amazing AutoHotkey tip in an earlier question:
Clipboard enhancements
; Append to clipboard (cut)
^+x::
clipboardBefore = %clipboard%
Send ^x
ClipWait, 2
clipboard = %clipboardBefore% %clipboard%
return
; Append to clipboard (copy)
^+c::
clipboardBefore = %clipboard%
Send ^c
ClipWait, 2
clipboard = %clipboardBefore% %clipboard%
return
Source: most useful autohotkey scripts
But the append copy and cut don't seem to work in Google Docs (word processing). Anyone know how they can be fixed?
Rob
:)