Clicking Disabled Button Generates Error

조회 수: 1 (최근 30일)
Jeff
Jeff 2011년 11월 8일
Hi all,
I've designed an audio experiment where a sound is presented and subjects then have to respond using a touchscreen by pressing one of three buttons. I've made it so that once a sound is played, buttons are then enabled, and once they are pressed, they are disabled. When I press the first button twice, even though it is disabled after the first press, I get the following error:
??? Error using ==> feval
Undefined function or method 'pushbutton1_ButtonDownFcn' for input
arguments of type 'struct'.
Error in ==> gui_mainfcn at 96
feval(varargin{:});
Error in ==> run_timbre_exp at 42
gui_mainfcn(gui_State, varargin{:});
Error in ==>
@(hObject,eventdata)run_timbre_exp('pushbutton1_ButtonDownFcn',hObject,eventdata,guidata(hObject))
??? Error using ==> pause
Error while evaluating uicontrol ButtonDownFcn
The weird part is that I get this error for only ONE of the buttons. Any ideas as to what is going on?
  댓글 수: 3
Naz
Naz 2011년 11월 8일
??? Error using ==> pause
Jeff
Jeff 2011년 12월 8일
I'd like to revive this thread because I still haven't solved this issue. I tried using a try/catch block to suppress the error, but this error isn't even picked up by the try/catch block.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2011년 12월 8일
Have you defined both a Callback and a ButtonDownFcn for the button? If so then when you click the first time and set the enable state to disable, you are doing that with the Callback, but with the button set to disabled, it is the ButtonDownFcn that has control (unless HitTest is set off). And you have somehow set a ButtonDownFcn property for the control but have removed the corresponding routine. So go in with the property inspector, clear the ButtonDownFcn for pushbutton1 and re-save.
  댓글 수: 1
Jeff
Jeff 2011년 12월 8일
I didn't think I had defined both a Callback and a ButtonDownFcn, because there was no code for ButtonDownFcn in the Editor, but in the property inspector ButtonDownFcn was defined as predicted by Walter Roberson. Thanks so much for your suggestion, Walter.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Malcolm Lidierth
Malcolm Lidierth 2011년 12월 8일
pause causes the event despatch thread to be flushed. It looks then, as though the second button click event is despatched before the button is disabled and is on the EDT. Have you tried defining a nop 'pushbutton1_ButtonDownFcn'

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by