Roflcopter234 0 Posted July 8, 2019 #include <ImageSearch2015.au3> #AutoIt3Wrapper_UseX64=y HotKeySet("s", "start") HotKeySet("e", "stop") While 1 Sleep(100) WEnd func stop() Exit EndFunc Func start() Global $x, $y Do $iResult = _ImageSearch("C:\Users\luca_\Desktop\hc\Unbenannt.PNG", 1, $x, $y, 0) If $iResult <> 1 Then Sleep(1000) Until $iResult = 1 If $iResult Then MouseMove($x,$y,10) Exit EndIf EndFunc I just wrote this code for trying out ImageSearch, but it doesnt find the picture (The picture is just the Spotify logo in my task bar). I already tried other pictures but always the same. The program doesnt find anything. I know it is searching because "+>@OSArch=X64 @AutoItX64=1 therefore using x64 ImageSearch DLL" gets written on the console every second. Can anybody help me? Share this post Link to post Share on other sites
Jos 2,209 Posted July 9, 2019 Moved to the appropriate forum, as the Developer General Discussion forum very clearly states: Quote General development and scripting discussions. If it's super geeky and you don't know where to put it - it's probably here. Do not create AutoIt-related topics here, use the AutoIt General Help and Support or AutoIt Technical Discussion forums. Moderation Team 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. Share this post Link to post Share on other sites
Nine 992 Posted July 9, 2019 Use latest version and study the example carefully : 1 Roflcopter234 reacted to this Not much of a signature but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Multi-keyboards HotKeySet Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites
Roflcopter234 0 Posted July 9, 2019 Thanks, I didnt know that there is a newer version. It is working now Share this post Link to post Share on other sites