Autohotkeyscripts

From notebook

(Difference between revisions)
Jump to: navigation, search
(Created page with "<nowiki>^,:: ; blank the clipboard so clipwait will work correctly ; with sending ^c clipboard := "" send ^c ClipWait, 1 StringReplace, clipboard, clipboard, `,,, All StringRepl...")
Line 1: Line 1:
-
<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 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</nowiki>
+
Return</poem>

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>

Personal tools