MATLAB: Change button color and text after it is clicked

guiguidepush button

Hi all, i was wondering if there is a way to change the color and text of a button created with "guide". For example if it is clicked it should say running… and not being clicked anymore?

Best Answer

in the pushbutton callback write:
set(handles.pushbutton1,'string','running','enable','off');