Search found 17 matches

by levelcap
Tue Sep 11, 2018 6:58 am
Forum: Beginners
Topic: Spam Lclick in x position untill x image shows up?
Replies: 7
Views: 6689

Re: Spam Lclick in x position untill x image shows up?

found out how
thanks
by levelcap
Tue Sep 11, 2018 5:46 am
Forum: Beginners
Topic: Spam Lclick in x position untill x image shows up?
Replies: 7
Views: 6689

Re: Spam Lclick in x position untill x image shows up?

Grovkillen wrote:
Tue Sep 11, 2018 4:19 am
First off, where's your own try? I mean, do you expect us to do all the heavy lifting?
see below
thanks
by levelcap
Mon Sep 10, 2018 5:22 pm
Forum: Beginners
Topic: Spam Lclick in x position untill x image shows up?
Replies: 7
Views: 6689

Spam Lclick in x position untill x image shows up?

How can I make the script to click multiple times at a certain place on the monitor for 10 seconds until x image shows up on the screen?

if the image search turns out negative double click x y on screen
something like that


Thanks
by levelcap
Wed Sep 05, 2018 1:47 pm
Forum: Beginners
Topic: I have 2 questions i hope you guys help me with
Replies: 18
Views: 14626

Re: I have 2 questions i hope you guys help me with

thanks for the help guys! finally figured that i needed 2 commands to make this works
by levelcap
Wed Sep 05, 2018 10:35 am
Forum: Beginners
Topic: I have 2 questions i hope you guys help me with
Replies: 18
Views: 14626

Re: I have 2 questions i hope you guys help me with

Not sure if this is what you want, but try this - just replace the picture paths & names please: //How many times to click on same picture Let>ClickTimes=10 Let>Timeout=5 Gosub>FindImage,C:\Users\x\Desktop\pic1 Gosub>FindImage,C:\Users\x\Desktop\pic2 Gosub>FindImage,C:\Users\x\Desktop\pic3 Gosub>Fi...
by levelcap
Mon Sep 03, 2018 12:30 pm
Forum: Beginners
Topic: I have 2 questions i hope you guys help me with
Replies: 18
Views: 14626

Re: I have 2 questions i hope you guys help me with

what I want to do is to make the script understands that if you chose a picture from the 6 you have to keep clicking that picture until it's no longer there in that position THEN it can continue to look for another picture Must MS keep clicking on Picture 1 until the picture disappears or just move...
by levelcap
Mon Sep 03, 2018 12:06 pm
Forum: Beginners
Topic: I have 2 questions i hope you guys help me with
Replies: 18
Views: 14626

Re: I have 2 questions i hope you guys help me with

Can we see your script please? //Set IGNORESPACES to 1 to force script interpreter to ignore spaces. //If using IGNORESPACES quote strings in {" ... "} //Let>IGNORESPACES=1 Label>start Let>x=0 Let>Timeout=10 While>x<%Timeout% Let>x=x+1 FindImagePos>C:\Users\x\Desktop\fuel.PNG,SCREEN,0.7,1,XArr,YArr...
by levelcap
Mon Sep 03, 2018 10:59 am
Forum: Beginners
Topic: I have 2 questions i hope you guys help me with
Replies: 18
Views: 14626

Re: I have 2 questions i hope you guys help me with

Where did you get the 'fuel.PNG' file from? Also make sure you have used the correct path to the image file. Can you please try and capture the file with the Image Capture Tool under Tools menu, 7th option from the top? MS is very sensitive with the images it finds and must be created with this too...
by levelcap
Mon Sep 03, 2018 8:25 am
Forum: Beginners
Topic: I have 2 questions i hope you guys help me with
Replies: 18
Views: 14626

Re: I have 2 questions i hope you guys help me with

Try this code: Let>x=0 Let>Timeout=10 While>x<%Timeout% Let>x=x+1 FindImagePos>C:\Users\x\Desktop\fuel.PNG,SCREEN,0.7,1,XArr,YArr,NumFound,CCOEFF If>NumFound>0 Let>x=%Timeout% MouseMove>XArr_0,YArr_0 LClick //Input>,Image found at Center of this Location,X=%XArr_0% Y=%YArr_0% EndIf EndWhile If>NumF...
by levelcap
Sat Sep 01, 2018 8:05 pm
Forum: Beginners
Topic: I have 2 questions i hope you guys help me with
Replies: 18
Views: 14626

Re: I have 2 questions i hope you guys help me with

oh ok thanks how can i make the script find the exact image? because sometimes if it didn't appear yet it clicks on an icon that is not even similar to it should tolerance go to 0 or go to 1 i also get this error Error in : testtt Line: 7 - Invalid Numeric Value for MouseMove command. this is my scr...
by levelcap
Sat Sep 01, 2018 7:47 pm
Forum: Beginners
Topic: I have 2 questions i hope you guys help me with
Replies: 18
Views: 14626

Re: I have 2 questions i hope you guys help me with

The same way. WaitScreenImage returns the found position. Or use FindImagePos after it. Or use FindImagePos in a loop. Which is exactly what WaitScreenImage is - FindImagePos in a loop. like this? WaitScreenImage>C:\Users\x\Desktop\Capture22.PNG,0,CCOEFF FindImagePos>C:\Users\x\Desktop\Capture22.PN...
Sign up to our newsletter for free automation tips, tricks & discounts