私はPython 2.7でautohotkey(ahk)スクリプトを実行しようとしていますが、何も動作していないようです。私が見つけたすべてのオンラインソースは古くなっているか、過度に複雑です。Python(2.7)でautohotkeyスクリプトを実行する方法
誰かがこれを行う方法を見つけましたか?ウィンドウをアクティブにしてアプリケーションを開くシンプルなスクリプトをいくつか実行したいだけです。例:
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")
p wintypes.com_error無効なクラス文字列
編集として追加しました –