Jump to content

Recommended Posts

Posted

Hey guys,

I got a big problem. I have installed ImageSerach succesfully, but it doesn't really work like I want.

I just want to send you my Code:

#include<ImageSearch.au3>

$x = 0
$y = 0

$res = _imagesearch('Leer.bmp',1,$x,$y,100)
If $res = 1 Then
    MouseMove($x,$y,100)
EndIf

while 1
    Sleep(100)
WEnd

And if I want to run the script I'll get the following errors:

>"C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "C:\Users\Geist\Desktop\Papierkorb leeren.au3" /UserParams    
+>22:36:19 Starting AutoIt3Wrapper v.2.1.2.9    Environment(Language:0407  Keyboard:00000407  OS:WIN_7/Service Pack 1  CPU:X64 OS:X64)
>Running AU3Check (1.54.22.0)  from:C:\Program Files (x86)\AutoIt3
+>22:36:19 AU3Check ended.rc:0
>Running:(3.3.8.1):C:\Program Files (x86)\AutoIt3\autoit3.exe "C:\Users\Geist\Desktop\Papierkorb leeren.au3"    
--> Press Ctrl+Alt+F5 to Restart or Ctrl+Break to Stop
C:\Program Files (x86)\AutoIt3\Include\ImageSearch.au3 (40) : ==> Subscript used with non-Array variable.:
if $result[0]="0" then return 0
if $result^ ERROR
->22:36:19 AutoIt3.exe ended.rc:1
>Exit code: 1    Time: 0.311

Please help... :D


 

Posted

Welcome to AutoIt and the forum!

Can you please tell us which program you try to automate? Most of the the time there are faster and more reliable ways to do what you want to do.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

I know! I've seen your thread.

But why do you need ImageSearch at all? What do you try to achieve? Which programs do you try to outomate?

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted (edited)

@Gesuchter thus try:

#include <ImageSearch.au3>

$x1 = 0
$y1 = 0

If FileExists('Leer.bmp') = 0 Then
    MsgBox(0, "Error", "The sample image was not found!", 4)
    Exit
EndIf

While 1
    $res = _ImageSearch('Leer.bmp', 1, $x1, $y1, 0)
    If $res = 1 Then
        MouseMove($x1, $y1, 100)
        ExitLoop
    EndIf
    Sleep(100)
WEnd

Put 'Leer.bmp' in the same folder as the script

Edited by Belini
Posted

Doesn't work.. :(

I have done every thing like you told me but there is the same error.

>"C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "C:\Users\Geist\Desktop\Neuer Ordner\Papierkorb leeren.au3" /UserParams    
+>09:35:33 Starting AutoIt3Wrapper v.2.1.2.9    Environment(Language:0407  Keyboard:00000407  OS:WIN_7/Service Pack 1  CPU:X64 OS:X64)
>Running AU3Check (1.54.22.0)  from:C:\Program Files (x86)\AutoIt3
+>09:35:33 AU3Check ended.rc:0
>Running:(3.3.8.1):C:\Program Files (x86)\AutoIt3\autoit3.exe "C:\Users\Geist\Desktop\Neuer Ordner\Papierkorb leeren.au3"    
--> Press Ctrl+Alt+F5 to Restart or Ctrl+Break to Stop
C:\Program Files (x86)\AutoIt3\Include\ImageSearch.au3 (40) : ==> Subscript used with non-Array variable.:
if $result[0]="0" then return 0
if $result^ ERROR
->09:35:33 AutoIt3.exe ended.rc:1
>Exit code: 1    Time: 1.032

My PC:

·Windows 7 Home Premium

·Intel® Core i7-3770 CPU @ 3.40GHz  3.40GHz

·Ram: 8,00 GB

·64 BIt-System

My AutoIT:

·Latest version: v3.3.8.1

Posted

Is it correct that you want to write a script that empties the wastebasket?

I'm sure there are better ways than to search the icon and click on it.

To let us help you we need some information about what you try to achieve!

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

I want to make a starter of a game...

Like every round ther's coming a start button and if I'm afk I'll start the programm and it will press the start button it self.

  • Moderators
Posted

Gesuchter,

So you want to write a bot to start the game automatically by finding the image of the buutton on the screen? :huh:

You appear not to have read the Forum rules since you have been here. Please read them now (there is also a link at bottom right of each page) - particularly the bit about not discussing game launching - and then you will understand why you will get no more help and this thread will now be locked. :naughty:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...