autorun slider

3 ビュー (過去 30 日間)
Hoang Ton
Hoang Ton 2012 年 5 月 14 日
コメント済み: Image Analyst 2019 年 8 月 19 日
hi, i already built slider in GUI, however in this moment i want to run the slider automatically (if i can control by the play and stop is better). how can i do that??? i'm completely stuck thank you!

採用された回答

Image Analyst
Image Analyst 2012 年 5 月 14 日
Set the value property of it, after you've set up the max and min properties of course.
set(handles.slider1, 'Min', theMinValue);
set(handles.slider1, 'Max', theMaxValue);
set(handles.slider1, 'Value', theCurrentValue);
  8 件のコメント
Walter Roberson
Walter Roberson 2012 年 5 月 16 日
Start a timer function. It updates the Value of the slider, and calls the slider callback.
cb = get(handles.MySlider,'Callback');
cb{1}(handles.MySlider,[])
When the stop button is pushed, stop the timer.
Evans Njihia
Evans Njihia 2018 年 2 月 1 日
Hi, Its not working on my side. what could be wrong and I want to use a timer to move the slider automatically up and down

サインインしてコメントする。

その他の回答 (1 件)

Violeta Yolanda Portero López
Violeta Yolanda Portero López 2019 年 8 月 18 日
Hello, did you finally got it? I am trying the same
  1 件のコメント
Image Analyst
Image Analyst 2019 年 8 月 19 日
I use sliders/scrollbars in GUIDE all the time. If yours doesn't work, attach your .fig and .m file in a new question.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeJust for fun についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by