Viewing 2 posts - 1 through 2 (of 2 total)
- AuthorPosts
- April 17, 2025 at 10:35 am #30218
Patrick C
ParticipantIs 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.
April 30, 2025 at 11:28 am #30219Yutaka Emura
KeymasterThe status bar won’t be refreshed if Redraw is set to false, which is how the Redraw property is designed to function. If you need to display the status bar, temporarily change Redraw to true, and then switch it back to false when you’re done.
- AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.