tooltip in App Designer
조회 수: 37 (최근 30일)
이전 댓글 표시
In my App designer for one of the panels I defined a tooltip. Now I want to get rid of it. Everytime i highlight and get rid of it in Code design view, I get a long series of read error messages but the tool string does not get removed. I can't go into code view and delete the line for tooltip string either as it is grayed out. So my question is how do I completely get rid of it without deleting the panel altogether and start over again?
댓글 수: 6
Cris LaPierre
2018년 11월 23일
What are you setting as the tip? I see this in your error messages:
Error setting property 'Tooltip' of class 'Panel':
UIStrings data type does not support numeric values.
채택된 답변
Cris LaPierre
2018년 11월 23일
편집: Cris LaPierre
2018년 11월 23일
I see it now. This looks like a bug to me. I'll report it. If you do not want the tooltip to appear, the best workaround I can think of is to add the following to your startupFcn Callback.
app.Panel.Tooltip = '';
Of course, replace Panel with whatever you named it.
댓글 수: 5
Daniel Bailey
2019년 4월 12일
편집: Daniel Bailey
2019년 4월 12일
@Jake Shea & @Robert:
As far as backwards compatibility goes. I was able to remove blank tooltips from the code by opening it in a version that predates 'Tooltips' release.
To be exact with what I did:
Steps 1-3 completed in MATLAB 2019a
1) Deleted all Tooltip text
2) Save Copy As
3) Save as type: MATLAB 2017b APP (*.mlapp)
Steps 4-5 completed in MATLAB 2017b
4) Opened MATLAB 2017b
5) Right clicked to open *.mlapp file
At this point all of the tooltips had dissapeared from the code.
Interestingly enough, only saving the file as an earlier version did NOT fix the problem. Only at the point that the code was opened in app designer did the app.*.Tooltip = {''}; code dissapear.
추가 답변 (1개)
Johan
2019년 11월 15일
Anybody know if this bug has been fixed in the newest version of Matlab?
2018B definitely still has this problem.
참고 항목
카테고리
Help Center 및 File 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!