Page 1 of 1

Ahk_H doesn't work with FindText.ahk

Posted: 07 Apr 2024, 09:43
by haomingchen1998
Hi, I want to use AHK_H to run multiple settimers in parallel, not sure if that's the right word, but it's as if these settimers are launched from multiple new script files. One issue is that I can't launch the script if I include FindText.ahk, if I comment out "#Include FindText.ahk", then the script runs. I've already searched the forum for this, it seems like this issue wasn't resolved? Any ideas will be greatly appreciated, thanks!

The below script won't launch:

Code: Select all

#Include C:\Ahk\Library\
#Include FindText.ahk

F1::
msgbox, %A_AhkVersion%
; Version running : 1.1.33.10

The below script will launch:

Code: Select all

F1::
msgbox, %A_AhkVersion%
; Version running : 1.1.33.10