Re: [Sikuli-driver] [Question #691666]: Find every match of multiple patterns

2020-07-03 Thread masuo
Question #691666 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/691666 Status: Open => Answered masuo proposed the following answer: Exactly "findAnyList" is able to do it that you want to do. imagelist=["1593840754190.png","1593840763712.png","1593840771119.png"] mm =

[Sikuli-driver] [Question #691666]: Find every match of multiple patterns

2020-07-03 Thread Jaroslav Novotny
New question #691666 on Sikuli: https://answers.launchpad.net/sikuli/+question/691666 Hi, I can find the best matches from list of patterns using: matches = region.findAnyList(list_of_patterns) I can also find all matches of a single pattern in region using: matches = region.getAll(pattern) How