Autohotkeyscripts

From notebook

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
-
<nowiki><poem>^,::
+
<code>^,::
; blank the clipboard so clipwait will work correctly
; blank the clipboard so clipwait will work correctly
; with sending ^c
; with sending ^c
Line 16: Line 16:
Clipboard := ClipSaved ;restore the original clipboard contents
Clipboard := ClipSaved ;restore the original clipboard contents
ClipSaved = ;clear the variable
ClipSaved = ;clear the variable
-
Return</poem>
+
Return</code>
-
</nowiki>
+

Revision as of 22:46, 24 March 2017

^,::

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

Personal tools