Jump to content

problems with auto it script half working


Recommended Posts

This is my first time posting here. I am new to the auto it game and I was seeing if anyone can help me with this script. So what I am trying to do is be able to move my mouse and click on an image once it shows up. My problem is I was learning how to write script and my buddy finished it with out telling me and went on a 4 week vacation. So well thats fine but all I was given was in a note that said the its in 800x600 and thats it. Well I'm can't figure out if this is the client that needs to be set at that or windows or both. Well I can get it to run some what as admin but the problem is I have tried to run it in 800x600 on both and I can get the titles to show up as if the alt key was pressed but once the image shows up the mouse does something. So I'm not really sure what to do at his point on what I'm doing wrong

 

(I placed the imagedll in the c\windows and the image.au3 in the autoit\include folder and always run as admin)

 

#include <ImageSearch.au3>
Global $Paused
#RequireAdmin
MsgBox(0,"starting","press ok")
sleep(5000)
Send("{Lalt down}")
While 1
$x=0
$y=0
$result = _ImageSearch("balloon.bmp",1,$x,$y,100)
If $result=1 Then
   Send("{Lalt down}")
   sleep(100)
   MouseMove($x,$y,3)
   MouseClick("left",$x,$y,3)
   sleep(3000)
   MouseMove(200,200,3)
EndIf
sleep(5000)
WEnd
Link to comment
Share on other sites

I don't know what the ImageSearch.au3 does exactly, but given that you see the lalt keypress happen, the code does reach that point. So after that it should wait a short time, then mousemove to certain coordinates (which depend on how the _ImageShow function works). Then it should click three times wherever it moved to, then sleep for 3 seconds and move to 200,200.

If it does the keypress but nothing happens with the mouse (which I assume you meant by "the mouse does something"), you may be trying to automate an application that disables mouse automation. Some applications do that, especially applications with a fully proprietary gui. What are you automating? There's often better ways to reach an automation goal than to rely on image searching and mouse automation. Unless it's a game, in which case it's not an allowed topic on this forum.

Roses are FF0000, violets are 0000FF... All my base are belong to you.

Link to comment
Share on other sites

image search and pixel search are very popular for automating web browser games. so i think this is for game automation.

Edited by 232showtime

ill get to that... i still need to learn and understand a lot of codes graduated.gif

Correct answer, learn to walk before you take on that marathon.

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

  • Recently Browsing   0 members

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