wow, thanks.. here is where I am
Code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
^l::
WinGetClass explorerClass, A
ControlGetText currentPath, Edit1, ahk_class %explorerClass%
ControlGet, selectedFiles, List, Selected Col1, SysListView321,ahk_class %explorerClass%
Loop, Parse, selectedFiles, `n ; Rows are delimited by linefeeds (`n).
{
msgbox <filename> %file%
RunWait, "full_EXE_path_here.exe" "%currentPath%\%file%"
Send, ^p
Sleep, 1000
;Run print %A_LoopField%
}
return
Everything works, except the %file% its not giving me the filename. I tried selectedFiles and that works but only when I select 1 file. The %file% I need since I am selecting 10+ and this should run through each one print, then do next 1...
thanks