Suppose I have x.ahk
, which is an AutoHotKey file. I want to open it through my Sikuli program.
I tried the following methods:
openApp("F:\\folder\\x.ahk")
I got the following error
[info] VDictProxy loaded.
[log] App.open F:\folder\x.ahk(0)
[error] App.open failed: F:\folder\x.ahk not found
I tried using open()
instead
open("F:\\folder\\x.ahk","r")
It did not throw any error from this, but it still did not open the file.
How can I launch my AutoHotKey script?