AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

how? paste a list of filenames into text doc

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
BETLOG



Joined: 27 Nov 2006
Posts: 222
Location: Queensland, Australia

PostPosted: Tue Oct 28, 2008 6:50 am    Post subject: how? paste a list of filenames into text doc Reply with quote

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
View user's profile Send private message
Guest






PostPosted: Tue Oct 28, 2008 7:05 am    Post subject: Re: how? paste a list of filenames into text doc Reply with quote

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
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group