(App Designer) windowscrollWheelFcn for sliders and knobs

5 views (last 30 days)
I just started using the App Designer for MATLAB and was wondering if there was a mouse wheel scroll function similar to one for GUI's. Specifically to change the values of a knob or slider component. Here's a preview of my code:
function CutoffFrequencyHzSliderValueChanging(app, event)
changingValue = event.Value;
app.EditField.Value = changingValue;
selectedButton = app.TrackingTypeButtonGroup.SelectedObject;
track = selectedButton.Text;
value = app.DropDown.Value;
% set(app.CutoffFrequencyHzSlider,'windowscrollWheelFcn',{@scrollfunc,gca})
% b = uicontrol('Style','WindowScrollWheel','Callback',{@eindoedscrollwheel_callback,gcf});
clear leg
file = app.(value);
data = file.(track);
.......
The 2 lines that are commented out are 2 separate attempts at adding scroll wheel functionality to my slider component.

Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!