Using timer function to waste time than close/remove/hide a button

조회 수: 5 (최근 30일)
Scuba
Scuba 2021년 10월 6일
댓글: Scuba 2021년 10월 6일
Basically, I've used the button tool and enlarged it so i can display something like a loading screen or splashscreen. I want to be able to show what ever is displayed in the button at the time before the program starts (the button will be englared to cover the application i just wanted to show what was behind...). And after a few seconds I want the button to be deleted/closed/removed so the user can access the program. I have read other questions similar to this topic online and I know this can be achieved using the timer function but I'm having trouble understanding and knowing what the syntax is to proceed with this. What would be the syntaxt that would intergrate the timer function with the button.
  댓글 수: 2
Rik
Rik 2021년 10월 6일
You actually don't want to integrate it with the button itself.
What you describe is that you want to start the timer function when your GUI starts. That function should contain something like pause(5) and should delete the button (or set the visibility to off (and maybe disable the hittest)).
What have you tried? Have you read the documentation for the timer function?
For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread.
Scuba
Scuba 2021년 10월 6일
편집: Scuba 2021년 10월 6일
So, i've basically resused the same code that was done on a similar thread but they closed a uifigure. I've changed it so its in terms of closing the button but i dont know if im calling the button properties/syntax correctly well i know im not coz its giving me an error...

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2021년 10월 6일
Set the StartDelay to how long you want before the close. Set the TasksToExecute to be 1. Pass handles.text1 as the extra argument.
The callback should then be
function timeCallback(~, ~, button)
if ishghandle(button)
button.Visible = 'off';
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by