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

6 visualizaciones (últimos 30 días)
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?

Respuestas (1)

Steven Lord
Steven Lord el 24 de Sept. de 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 comentario
Stelios Fanourakis
Stelios Fanourakis el 24 de Sept. de 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.

Iniciar sesión para comentar.

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by