我正在尝试在 Python 2.7 中运行 autohotkey (ahk) 脚本,但似乎没有任何效果。我发现的所有在线资源要么过时,要么过于复杂。

有没有人找到这样做的方法?我只想运行几个简单的脚本来激活窗口并打开应用程序。例如:

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 无效的类字符串

最佳答案

似乎您应该能够使用 subprocess 将脚本作为参数启动 autohotkey :

subprocess.call(["path/to/ahk.exe", "script.ahk"])

您必须检查 autohotkey 文档,但这似乎应该可行。

关于python - 如何在 Python (2.7) 中运行自动热键脚本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36652169/

10-12 20:55