how to ignore multiple clicks on buttun in matlab app designer

조회 수: 6 (최근 30일)
Kfir Weissman
Kfir Weissman 2021년 6월 16일
댓글: Kfir Weissman 2021년 6월 16일
hi, when i execute my app designer script by 1 click its doing well.
but when i spam the button or just double clicking it, it's execute the callback multiple times or maybe sometimes causing a error for running more that once the callback code.
my question is if there is something to ignore this multiple click on the button and execute the callback function just once.
thanks.
  댓글 수: 2
pcm314
pcm314 2021년 6월 16일
Is the user supposed to click that button only once during the entire run time of the app?
If so you can add a line of code to disable the button just after it is pushed, before the rest of the code of the callback:
function PushButtonPushed(app, event)
app.PushButton.enable = 'off'
% Other stuff
end
Then, whenever you want to bring it back to life just set the flag to on.
Kfir Weissman
Kfir Weissman 2021년 6월 16일
편집: Kfir Weissman 2021년 6월 16일
hi thanks for answering.
i already try your suggestion, the problem is when im like spamming the button, the button not disable himself that fast and he still have a lot of calls to the callback function
is there any wat to cancel the calls for the callback after one click?

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

채택된 답변

Matt J
Matt J 2021년 6월 16일
편집: Matt J 2021년 6월 16일
You can set the Interruptable property of the button to 'off' and the BusyAction property to 'cancel'.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by