How to change visibility during a event script to hide the table that is updating?

A bit of clarification:

Your event script runs in the foreground, and Java Swing is single threaded for all component updates. Which means your attempts to hide or alter a component will not be drawn until you give up the CPU (finish your event script).

Long old thread here, but still valid:

2 Likes