Why this error withthe scrolling wheel function? How can I solve it?

6 views (last 30 days)
Hi
I use a function called 'WindowScrollWheelFcn' to synchronize the mouse wheel scrolling with the movement of some sliders in the GUI I have built.
The problem is that I get the error
Warning: Setting the "WindowScrollWheelFcn" property is not permitted while this mode is active.
> In matlab.uitools.internal.uimodemanager>localModeWarn (line 226)
In matlab.uitools.internal.uimodemanager>@(obj,evd)(localModeWarn(obj,evd,hThis)) (line 94)
In experiment (line 134)
Where line in the experiment (the main GUI app line)
set (hFig, 'WindowScrollWheelFcn', @mouseScroll);
Why this line is wrong? What does Matlab mean by not permitted while this mode is active?

Answers (1)

Steven Lord
Steven Lord on 24 Sep 2019
As per the Tips section on the zoom function documentation page, you cannot change most figure callbacks while an interactive mode (like zooming or panning) is active. The WindowScollWheelFcn is one of the figure callbacks you cannot change while in interactive mode.
In particular, the scroll wheel has a specific function in the zoom interactive mode.
  1 Comment
Stelios Fanourakis
Stelios Fanourakis on 24 Sep 2019
I understand your concept. How can I fix it though? I want the scroll wheel to synchronize with the sliders. It used to work.

Sign in to comment.

Categories

Find more on Visual Exploration 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!