LegitStack Posted September 9, 2015 Posted September 9, 2015 (edited) I just found ImageSearch library, very cool! But when I tried to test it out I got strange errors, the only one I can't seem to get around is:Line 46 (File "C:\....\ImageSearchDLL\ImageSearchTest.au3"): U1A%a]A%01/4'Error: Unterminated String.Thats the error but my script doesn't even have 46 lines so it must be in something its importing, here's the test script:#include <MsgBoxConstants.au3> #include "ImageSearchDLL.dll" #include "ImageSearch.au3" local $x, $y, $search $search = _ImageSearch('search.bmp', 0, $x, $y, 0) if $search = 1 then mousemove($x,$y) EndIf MsgBox($MB_SYSTEMMODAL, "imagesearch", $x, 10)its not line 46 in the imageSearch.au3 either. So! my thinking is its a problem with the DLL. I'm on windows 7, could it be that imagesearch.dll is not compatible with windows 7??That would make me quite sad. Can someone help me? Thanks so much! Edited September 9, 2015 by LegitStack
Developers Jos Posted September 9, 2015 Developers Posted September 9, 2015 You can't include a DLL. Source code in included and DLL's are called.Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
LegitStack Posted September 9, 2015 Author Posted September 9, 2015 I found a "fixed" version that works with windows 7 here on the forums somewhere. attached is the file I found. I have no idea what was done to fix these unterminated string errors I kept getting but I must have been using a very old version or something. hope this helps others! ImageSearch.zip
LegitStack Posted September 9, 2015 Author Posted September 9, 2015 (edited) You can't include a DLL. Source code in included and DLL's are called.JosThanks Jos, I'll remember that, I had tried not including the DLL before but I kept getting other errors too. Edited September 9, 2015 by LegitStack
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now