Question #252512 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/252512

RaiMan posted a new comment:
A search no matter triggered by what method (find, click, exists, …) waits 3 
seconds in the standard for something to appear before giving up. if possible, 
3 searches per second are done in the standard. Both waiting time and scan rate 
can be adjusted.
To get a feeling about the options, you should read at least once across the 
docs:
http://sikulix-2014.readthedocs.org/en/latest/index.html

--- to stop it from searching my second screen.
This only applies to the capture feature (getting an image into your script) 
and for the preview feature.
When a script is running, it only searches in the given region or the primary 
screen (the one you get with Screen(0)) if no region is given.

--- post #12
found = []
defines an empty array (called list in Python)
and found.append() simply adds the given value to the end of the array.

the snippet simply looks for all given images one after the other (the
exists might be restricted by a region) and records success/fail in
array found.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to