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

1 次查看(过去 30 天)
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 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by