Why this error withthe scrolling wheel function? How can I solve it?
조회 수: 9 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
답변 (1개)
Steven Lord
2019년 9월 24일
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!