如何在Python中运行autohotkey脚本(2.7)

时间:2016-04-15 16:16:44

标签: python windows python-2.7 autohotkey

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

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

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

1 个答案:

答案 0 :(得分:2)

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

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

您必须检查自动文件,但这似乎应该有用。