is it possible to close popup using command!!

17 visualizaciones (últimos 30 días)
Vaibhav
Vaibhav el 19 de En. de 2014
Comentada: Vaibhav el 21 de En. de 2014
i have to close a gui popup after some time it appear.
my gui popup is :-
figure
t=uicontrol('style','text','string',' ','Position',[1 1 400 600]);
col=get(t,'foregroundcolor');
for n=1:10
set(t,'foregroundcolor',1-col,'backgroundcolor',col);
col=1-col;
pause(.3);
end
please suggest some method. Thank you!!

Respuesta aceptada

Paul
Paul el 19 de En. de 2014
If you want to close it immediately after it stops flashing you can add
close gcf
after the end. Or add a pause before this with your preferred close time.
  1 comentario
Vaibhav
Vaibhav el 21 de En. de 2014
Thank you very much for your useful suggestion!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by