如何获取使用 AutoHotKey 在记事本中打开的文件的文件名和路径?
答案1
这是我使用 Shift+Enter 运行当前在 Notepad++ 中打开的文件的方法
#IfWinActive Notepad++
+Enter::
Send ^s
WinGetTitle, Title, A
StringReplace, Title, Title, - Notepad++, , All
Run %Title%
;Notify("File Executed",Title,-2,"GC=555555 TC=White MC=White")
Return
#IfWinActive