I have a GUI with a number of TabView and other Manipulate controls. Sometimes clicking from one Tabview to the other can take a while, and I would like to have a global "Please wait" indicator.
So one way is to implement it for each button or slider, but I would essentially like to have a visual indicator that will show if any cell in my notebook is being evaluated.
Any ideas or suggestions? (Have searched for answers here but I only found those related to progress bars for a specific calculation)




Running... <filename>? Mine does and in addition, also shows a ring around the icon to indicate that it is evaluating something (might be mac only). – rm -rf♦ Sep 6 '12 at 20:42$DynamicEvaluation. It returnsTrueif inside aDynamicandFalseotherwise. ADockedCellmight be a good place to place an indicator – rm -rf♦ Sep 6 '12 at 21:51TabViews run everything at the beginning and always treat the dynamic content on all tabs as if visible. Is it just a delay because of front end rendering or you placed some dynamic code dependent on the current selected tab that has to run when it is changed? – Rojo Sep 7 '12 at 0:42