How to convert mouse cursor to load in MATLAB

How do I convert the mouse cursor from normal

to loading

to MATLAB

and return it to normal icon

after some codes in GUI

?

Thank.

+3


source to share


1 answer


We can use these codes:

set(figure_handle,'Pointer','watch');

%% some codes 

set(figure_handle,'Pointer','arrow');

      



Thanks @Divakar for your comment.

+7


source







All Articles