How to automatically play a Slider- bar when push button presses in GUI?

6 views (last 30 days)
I have created a GUI and in that I wanted to use a play push button to automate the Slider Value. After that I wanted to use a stop button to stop the sliding. Kindly suggest your ideas to implement this functionality in GUI?

Answers (1)

Austin Decker
Austin Decker on 26 May 2022
You could use a timer to do this. Basically, when you push the button, you can start a timer with whatever period you want who's timer function increments the slider. When you push the button again, you can stop and delete the timer. Be sure to delete the timer either when you are done using it or when the app closes as this can cause issues. Check the documentation for timer calling syntax.

Categories

Find more on Migrate GUIDE Apps 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!