How to use the waitbar on the figure with MATLAB 2014b
Show older comments
I´ve used my waitbar on my figure by transferring the data onto it.
h = waitbar(0,' ','Visible','off' ); %
c = get(h,'Children');
set(c,'Parent',handles.thisfig); % Set the position of the WAITBAR on your figure
set(c,'Units','pixels','Position',[1 2 798 18]);
set(findobj(c,'type','patch'), ...
'edgecolor',[1,0.8,0.4],'facecolor',[0.15,0.15,0.15])
set(c,'Color', [0.05,0.05,0.05]);
c.Visible = 'On';
then... with waitbar(x) (0<x<1) I could increase the bar. It doesen´t seem to work with Matlab 2014b. (worked with 2014a)
I´ve tried a lot to get it back to work but no success.
How do I get a waitbar onto my figure with Matlab 2014b?
Thanks!
Accepted Answer
More Answers (0)
Categories
Find more on App Building in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!