Hi Jean,
What will be the best way for me to invoke the command to Add active folder using AHK?
My scenario is that I made a custom script to "Add active folder in XYplorer." (see related thread). It occurred to me that I can have one menu item cover both commands... Somethink like:
Code:
If WinActive, xyplorer
{
steve's ahk script here
}
Else
{
invoke built-in 'Add active...' command.
}
It occurs to me that I can add the built-in command, hide it, and assign a hotkey. Then activate it using the hotkey in my Else statement.
I just wanted to see if there's a more elegant/geeky way to invoke the built-in command.