!7 cmodule Test > DynPrintLog { start-thread { bool first = true; repeat 10 { ScreenshotFromStream ss = dm_lastScreenshotFromStream(); print(ss); if (ss != null && first) { first = false; showImage(ss.integralImage().getBufferedImage()); } sleepSeconds(1); } } }