An experiment with Delphi, screenshots like the PSR from Windows. The project is still without unit testing and in the beta phase. You can see how it works in the demo app in “ClickRecorder.MainForm”. Ths start point ist the IClickRecorderFactory.
uses
System.ClickRecorder.Factory;
...
var
FInnerClickRecorderFactory: IClickRecorderFactory;
begin
FInnerClickRecorderFactory := TClickRecorderFactory.Create;
FInnerClickRecorderFactory
.OutDir(OutDirForTheResultZip)
.Start;
FInnerClickRecorderFactory.Stop;
end;To start, you need a directory where the zip file with all the screenshots will be placed. Stop, then save everything.