 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
BETLOG
Joined: 27 Nov 2006 Posts: 222 Location: Queensland, Australia
|
Posted: Tue Oct 28, 2008 6:50 am Post subject: how? paste a list of filenames into text doc |
|
|
I do a filename search in explorer, and get a bunch of results, i sort by modified date to see the most recent, i select a bunch and ctrl-c to get a list of filenames on clipboard...
How do i paste this list as plain text?
I'm sure i knew how to do this once, and almost certain i have seen the AHK code relating to it, but cant figure it out. |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Oct 28, 2008 7:05 am Post subject: Re: how? paste a list of filenames into text doc |
|
|
| BETLOG wrote: | I do a filename search in explorer, and get a bunch of results, i sort by modified date to see the most recent, i select a bunch and ctrl-c to get a list of filenames on clipboard...
How do i paste this list as plain text? |
| Code: | #SingleInstance, force
; after you control+c do control+win+c to capture file list from clipboard
^#c::
list := clipboard
msgbox, %list%
return |
|
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|