Hello,
global $y, $x
#RequireAdmin
Global $Paused
HotKeySet("{NUMPAD2}", "Pause")
HotKeySet("{NUMPAD8}", "End")
Opt("MouseClickDownDelay", 30)
#include <ImageSearch2015.au3>
#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>
#include <StaticConstants.au3>
#include <WinAPI.au3>
#include <WindowsConstants.au3>
#include <UpDownConstants.au3>
#include <Misc.au3>
Sleep(6000)
Sleep(3000)
$search1 = _WaitForImageSearch("goo.bmp", 30, 1, $x, $y, 10)
If $search1 = 1 Then
MouseMove(1500, 1500, 10)
Sleep(100)
MouseClick("right")
Sleep(300)
EndIf
I've this script.
The problem is that it work the way it is supposed to but doesnt work on a friends pc, even tho we have the same image search in C/programms(x86)/autoit3/include
and the same dll in system 32.
When he starts the script on the desktop without having the "goo.bmp" file on his pc, the script finds it and right clicks the given location, while for me it doesnt and i have to open the folder with the "goo.bmp" picture in it.
Im out of ideas on what could cause the problem.
Any help?
Thank you in advance