Is there a way to show status / progress updates when “Redraw = false;”?
Example:
#language = "V8"
#async = "off"
"use strict";
status = "";
Redraw = false;
status = "Processing part 1";
Sleep(1000);
status = "Processing part 2";
Sleep(1000);
status = "Processing part 3";
Redraw = true;
In the example, “Processing part 1” and “Processing part 2” will never be shown.
The progress updates don’t necessarily have to appear in the status bar.