Jump to content

Imagesearch clashes in Win 7 (32 bits)


Recommended Posts

Hi All,
I tried my best to looking a solution from this forum or others, but I have no luck. The imagesearch dll working fine in my 64 bits machine, whenever I move the scripts to Win 7 (32 bits), it crashes. ImageSearchDLL.dll, ImageSearch.au3 and my simple scripts are in the same working directory. For win 7 (32 bits) machine, I'm using 32 bits ImageSearchdll.dll, the simple scripts as below:

#include <ImageSearch.au3>
Global $y = 0, $x = 0

Local $search = _ImageSearch("C:\Program Files\AutoIt3\Examples\Images\mypc.PNG", 0, $x, $y, 0)
if $search = 1 then
   MsgBox(0,"Found","Found my target here..." & $x & "," & $y)
   MouseMove($x, $y, 10)
Else
   msgbox(0, "Not found","")
Endif

However, I received error message below when running the script. Anyone here got clue? 

Problem Event Name:    APPCRASH
  Application Name:    AutoIt3.exe
  Application Version:    3.3.14.2
  Application Timestamp:    55fc1979
  Fault Module Name:    AutoIt3.exe
  Fault Module Version:    3.3.14.2
  Fault Module Timestamp:    55fc1979
  Exception Code:    c0000005
  Exception Offset:    00020e42
  OS Version:    6.1.7601.2.1.0.256.4
  Locale ID:    17417
  Additional Information 1:    0a9e
  Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
  Additional Information 3:    0a9e
  Additional Information 4:    0a9e372d3b4ad19135b953a78882e789

Link to comment
Share on other sites

This all comes down to making sure you're using the correct dll. Are you positive you have the 32-bit version on your 32-bit machine? The different architectures should have different sized dlls. ImageSearch is very finicky if it is not set up exactly correct.

UHJvZmVzc2lvbmFsIENvbXB1dGVyZXI=

Link to comment
Share on other sites

15 hours ago, anthonyjr2 said:

This all comes down to making sure you're using the correct dll. Are you positive you have the 32-bit version on your 32-bit machine? The different architectures should have different sized dlls. ImageSearch is very finicky if it is not set up exactly correct.

yes.. very sure using the 32 bits dll for win 7 (32 bits). I even switched to 64 bits imagesearch.dll in win 7 (32 bits) environment to try, unfortunately no luck. Is alright, in this case I will setup 64 bits testing environment will do since 64 bits is working perfectly. Thanks

Edited by kenny4896
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...