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

1 view (last 30 days)
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 Comments
Scuba
Scuba on 6 Oct 2021
Edited: Scuba on 6 Oct 2021
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...

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 6 Oct 2021
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

More Answers (0)

Categories

Find more on Programming Utilities 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!