!752 concepts. concept GrabbedImage { long lastScreenshotTime; Rect lastRect; BWImage image; S md5; int count; } p { loadConceptsFrom("#1005951"); new L data; for (GrabbedImage gi : sortByFieldDesc(list(GrabbedImage), "count")) data.add(ll(gi.count, gi.md5, gi.image.getBufferedImage(), str(gi.lastRect))); final JTable table = showTableWithImages("Auto-Shot Stuff", splitAtSlash("Count/MD5/Image/Last position"), data); table.setRowHeight(25); tablePopupMenu(table, voidfunc(JPopupMenu menu, final int row) { addMenuItem(menu, "Mark on screen", r-thread { Rect r; pointArrowsToArea(r = parseRect(getTableLine(table, row).get(3))); print("Marking: " + r); }); }); gcAndPrintMemoryInfo(); }