Open shtirlitsDva opened 1 year ago
Alright!
Please make a pull request so the changes can be merged easily into the codebase 😃
Well, I posted this not to change your code, but rather for those who were looking for a v2 implementation of your script.
Man Ahk V2 is clean, I must look into converting my scripts and learning it, love the syntax being less VBA-like...
couldn't this be simplified to:
#e:: OpenExplorer()
OpenExplorer() {
if WinExist("ahk_class CabinetWClass")
{
WinActivate
WinWaitActive "ahk_class CabinetWClass"
send "^t"
}
else
run "explorer.exe"
}