我试图在Python 2.7中运行一个autohotkey(ahk)脚本,但似乎没有任何工作。 我发现的所有在线资源都是过时或过于复杂。
有没有人find一个这样做的方法? 我只想运行几个简单的脚本来激活窗口并打开应用程序。 例如:
IfWinExist, Command Prompt - python ... WinActivate
更新:
我试过了下载pyahk:
ahk.start() # Ititializes a new script thread ahk.ready() # Waits until status is True ahk.execute(mw._['cwd']+"winActivate_cmd.ahk") # Activate cmd window
错误:无法加载autohotkey.dll
以及尝试这一点:
import win32com.client # Import library / module dll = win32com.client.Dispatch("AutoHotkey.Script") #Creating DLL object? dll.ahktextdll() #no idea what this is doing... dll.ahkExec("WinActivate, Command Prompt - python")
pwintypes.com_error无效的类string
似乎你应该能够使用subprocess
进程启动脚本作为参数的subprocess
:
subprocess.call(["path/to/ahk.exe", "script.ahk"])
你必须检查autohotkey文件,但这似乎应该工作。