Autohotkeyscripts
From notebook
(Difference between revisions)
Line 1: | Line 1: | ||
- | <poem>^,:: | + | <nowiki><poem>^,:: |
; blank the clipboard so clipwait will work correctly | ; blank the clipboard so clipwait will work correctly | ||
; with sending ^c | ; with sending ^c | ||
Line 17: | Line 17: | ||
ClipSaved = ;clear the variable | ClipSaved = ;clear the variable | ||
Return</poem> | Return</poem> | ||
+ | </nowiki> |
Revision as of 22:44, 24 March 2017
<poem>^,:: ; blank the clipboard so clipwait will work correctly ; with sending ^c clipboard := "" send ^c ClipWait, 1 StringReplace, clipboard, clipboard, `,,, All StringReplace, clipboard, clipboard, `&,, All StringReplace, clipboard, clipboard, et al.,, All Return $^+v:: ; CTRL+SHIFT+V ClipSaved := ClipboardAll ;save original clipboard contents clipboard = %clipboard% ;remove formatting Send ^v ;send the Ctrl+V command Clipboard := ClipSaved ;restore the original clipboard contents ClipSaved = ;clear the variable Return</poem>