How to Copy the Full Path to Clipboard via Autohotkey?
I define the shortcut of the Command of Copy the full path ,F12.
In AHK file,
send,{F12}
sleep,200
filepath := % Clipboard
Msgbox % "Clip" clipboard "-Path-" filepath
it shows "Clip-Path-"
Clipboard and filepath is null
Is anyone know the method?
How to Copy the Full Path to Clipboard via Autohotkey
Re: How to Copy the Full Path to Clipboard via Autohotkey
Please try the following:
SendMessage, 0x111, 41007,,, ahk_class EVERYTHING
0x111 is WM_COMMAND
41007 is the command to copy the full path and filename of the current result list focus to the clipboard.
There is also a hidden window in Everything 1.5 with the full path and filename of the current result list focus. (might be useful if you want to get the current focus without clobbering the clipboard)
SendMessage, 0x111, 41007,,, ahk_class EVERYTHING
0x111 is WM_COMMAND
41007 is the command to copy the full path and filename of the current result list focus to the clipboard.
There is also a hidden window in Everything 1.5 with the full path and filename of the current result list focus. (might be useful if you want to get the current focus without clobbering the clipboard)