ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Main Area and Open Discussion > General Software Discussion

copy and combine multiple text

(1/3) > >>

kalos:
hello!

I want to use a special key and copy multiple texts (one by one) and then use another key to paste all that text combined (each text, seperated in a newline)

any suggestion?

thanks!

skwire:
Are these snippets simple plain-text?  As in, they're not copied from Word or Excel docs, right?

skwire:
If they're just simple plain-text snippets, you could use something like this:


--- Code: Autohotkey ---^g:: ; Ctrl+G to copy.{    SendInput, ^c ; Copy selected text to clipboard.    myBlock .= Clipboard . "`n" ; Concatenate block of saved text.}Return ^h:: ; Ctrl+H to paste.{    Clipboard := myBlock ; Put saved block of text on clipboard.    SendInput, ^v ; Paste into application.    myBlock := "" ; Clear block of text.}Return

kalos:
thanks!

IainB:
Umm, I think can do all that - and more - in mouser's Clipboard Help and Spell. It's called "merge clips" - and they don't have to be sequential either.
And no restrictions on whether you are copying from plain-text, Word, Excel or any other docs.

Navigation

[0] Message Index

[#] Next page

Go to full version