How do I create a shortcut key that will copy highlighted text into a new text editor instance?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Autohotkey.

http://www.autohotkey.com/

I haven't tested it but the script would go something like this.

+^c::
Send ^c
Run Notepad
WinWait Untitled - Notepad
WinActivate

Send ^v

Oops. I'll translate it.

+^c:: Defines CTRL Alt C as the hotkey.

Then it presses Ctrl C

Then fires up Notepad, waits for it to load, then makes it the active window.

Then it presses Ctrl V

link|improve this answer
Crap, why didn't I think of that. <3 autohotkey. Thanks! – Beaming Mel-Bin Oct 27 '11 at 10:32
feedback

Your Answer

 
or
required, but never shown

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