Basically, you select a few files in your explorer window, hit CTRL-J and it copies all the filenames to your clipboard where you can CTRL-V them into any document you want..
Its not putting the names into the clipboard.
^j::
WinGetClass explorerClass, A
ControlGetText currentPath, Edit1, ahk_class %explorerClass%
; msgbox >%currentPath%<
ControlGet, selectedFiles, List, Selected Col1, SysListView321,ahk_class %explorerClass%
msgbox %selectedFiles%
Loop, Parse, selectedFiles, `n ; Rows are delimited by linefeeds (`n).
{
clipboard = %selectedFiles%
}
return
Thanks in advance for any help..