Activity log for bug #1736968

Date Who What changed Old value New value Message
2017-12-07 15:02:47 RaiMan bug added bug
2017-12-07 15:02:54 RaiMan sikuli: status New Fix Committed
2017-12-07 15:02:57 RaiMan sikuli: importance Undecided Critical
2017-12-07 15:03:01 RaiMan sikuli: assignee RaiMan (raimund-hocke)
2017-12-07 15:03:06 RaiMan sikuli: milestone 1.1.2
2017-12-07 15:03:49 RaiMan summary [request] Find multiple items on the same "screen sample" [request] Find multiple items on the same "screen sample" --- added 1.1.2 2017-12-07
2017-12-07 15:05:02 RaiMan description Hi Everyone, I'm trying to figure out how I could make Sikuli check the same "screengrab" or "sample of screen" multiple times. And I'm not talking about the image inside the find() command, I'm talking about when Sikuli is looking at the screen to find things. I want to be able to get a screen "sample" and let Sikuli find multiple things in that one sample. With rapidly changing information this is the only way I could sample the screen once and then let Sikuli find multiple things, then sample again, let it find multiple things, etc. etc. Is this possible? I was thinking something like this? sample("temp.png") exists(Pattern("thing01.png").exact(), 0, "temp.png") exists(Pattern("thing02.png").exact(), 0, "temp.png") --------------------- docs for the implementation: http://sikulix-2014.readthedocs.io/en/latest/region.html#find-more-than-one-image-in-a-region-at-the-same-time -------------------------------------------------- Hi Everyone, I'm trying to figure out how I could make Sikuli check the same "screengrab" or "sample of screen" multiple times. And I'm not talking about the image inside the find() command, I'm talking about when Sikuli is looking at the screen to find things. I want to be able to get a screen "sample" and let Sikuli find multiple things in that one sample. With rapidly changing information this is the only way I could sample the screen once and then let Sikuli find multiple things, then sample again, let it find multiple things, etc. etc. Is this possible? I was thinking something like this? sample("temp.png") exists(Pattern("thing01.png").exact(), 0, "temp.png") exists(Pattern("thing02.png").exact(), 0, "temp.png")