How to change the state to 'busy' in the left corner when running an app?
2 次查看(过去 30 天)
显示 更早的评论
How to change the state to 'busy' in the left corner when running an app? so I can sure that the app is running.
0 个评论
回答(1 个)
Shivangi Gupta
2021-8-24
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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!