AHK-v2-script-converter
AHK-v2-script-converter copied to clipboard
converting v1 to v2 FindText()
v1 code :- if (ok:=FindText(X, Y, 0, 0, 203, 187, 0, 0, Text))
v2 code :- if (ok:=FindText(&X, &Y, 0, 0, 203, 187, 0, 0, Text))
FindText is not a native ahk function, we did not implemented conversion of custom functions. an interesting idea, than you should first scan the code for byref variables, but I currently do not have plans and time to implement this.