Forum Discussion
1 Reply
- sonya_m
Alumni
Thank you so much for sharing this with the Community! Greatly appreciated.
For the above posting, the issue was with being able to screenshot on demand instead of screenshotting a massive project with way too much output.
I have turned-off the visualizer and instead added single calls to the following JavaScript code to take a screenshot:
function PictureToLog()
{
var w = Sys.Desktop.Picture();
Log.Picture(w, "Screen Image");
}
The above could be adapted to select a specific object and then screenshot only that instead of the whole desktop.
Hope this helps.
Regards
David Woods
Thank you so much for sharing this with the Community! Greatly appreciated.