How to change the state to 'busy' in the left corner when running an app?

5 Ansichten (letzte 30 Tage)
Yang Shen
Yang Shen am 17 Nov. 2019
Beantwortet: Shivangi Gupta am 24 Aug. 2021
How to change the state to 'busy' in the left corner when running an app? so I can sure that the app is running.

Antworten (1)

Shivangi Gupta
Shivangi Gupta am 24 Aug. 2021
You can modify the state message with the “statusbar” utility
...
statusbar(0, 'Busy...'); %# Set the status message
test; %# Run your function/script
statusbar(0, ''); %# Clear the status message
...
You can refer to the following link for more information related to statusbar.
https://in.mathworks.com/matlabcentral/fileexchange/14773-statusbar

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by