HotKeyIt wrote:
Selected where from?
Sorry.. from explorer in windows xp
here is what I have but its not working..
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%
; msgbox >%currentPath%<
ControlGet, selectedFiles, List, Selected Col1, SysListView321,ahk_class %explorerClass%
msgbox %selectedFiles%
Loop, Parse, selectedFiles, `n ; Rows are delimited by linefeeds (`n).
{
;msgbox >%currentPath%\%file%<
; Run, %A_LoopFileFullPath%
Run, %currentPath%\%file%
Run print %selectedFiles%
; WinWait, EditPad Lite ;<---Change this to the name of the window that you see using the AutoIt Windows Spy
; Send, ^p
Sleep, 1000
}
return