I thought about writing a utility to do this, but decided to look around for one first. There are dozens of clipboard managers and clipboard-related programs, but I haven't seen one that does exactly what I want.

I want a program that will "monitor" the system clipboard and anytime it sees new text appear in the clipboard, it will paste the plain, unformatted text into a window or file.

I have a collection of documents, some of them PowerPoint presentations, that I need to scrape the text from into a text document. I can select the text, copy, then go into Word and "Paste Special/unformatted text" or just to Notepad and paste, but that requires a lot of keystrokes and application switching.

What I'd like to be able to do is fire up a utility and let it run in the background then be able to highlight text, press Ctrl-C, and have the utility automatically append the copied text to a text window or a file until I tell it to stop.

I was thinking of just writing a console app to do this and redirecting its output to a file, but a Window app would be OK as well - just so I can scrape unformatted text from multiple sources and assemble the text into a new document quickly and easily.

Any suggestions or ideas before I go off an spend as much time writing the utility app as it would take to do it by hand?

link|improve this question
feedback

3 Answers

So far Ditto seems to be working for me, but it's kind of awkward to use. Very non-standard interface, but I think I have a set of options that will work.

Would still love to see any better suggestions!

link|improve this answer
feedback
^c::
    send ^c
    clipwait
    clipboard = %clipboard%
    FileAppend, %clipboard%, c:\File.txt
return

Should I think perform this task. Might have some trouble with linebreaks, but I'm short on time, so sorry :(

edit: In autohotkey, sorry!

link|improve this answer
This looks intriguing, but what language is this? – CMPalmer Oct 8 '09 at 17:48
1  
Damnit, sorry. Autohotkey, it's a lovely scripting language based around hotkeys, – Phoshi Oct 8 '09 at 18:12
feedback

CLCL is my preferred clipboard manager.
It also keeps its history on file (without sqlite).

image

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.