I put an AHK script inside of the Total Commander (TC) button bar.
Additionally, I added the path to the AHK compiler, so it looks like this (simplified):
"C:\AutoHotkeyU64.exe" C:\myscript.ahk
This is the AHK example script:
Code: Select all
for n, param in A_Args ; For each parameter:
{
MsgBox Parameter number %n% is %param%.
}
When I drag multiple files inside of this button, it only shows the first file.
I also tried different things like putting extra parameters inside of the TC button:
"C:\AutoHotkeyU64.exe" C:\myscript.ahk %P\%N
My wish is that I perform some action for multiple files at once.
Right now, it would only work for 1 file...
Thanks for any help and best regards