How can I modify tooltip delays in my application designed in Application Designer?
조회 수: 4 (최근 30일)
이전 댓글 표시
I would like to change some properties of all tooltips in my application. I've found a suggestion to utilize the following command:
tm = javax.swing.ToolTipManager.sharedInstance; %static method to get ToolTipManager object
javaMethodEDT('setInitialDelay',tm,10000); % Increase delay to 10 seconds
However, when I insert this snippet of code into my startupFcn, it has no effect. Is there a way to implement this code in App Designer to configure the delay of tooltips?
댓글 수: 0
채택된 답변
Adam Danz
2021년 12월 16일
Java methods are not supported by uifigures.
See a similar thread: https://www.mathworks.com/matlabcentral/answers/396625-how-can-i-put-a-javacomponent-in-the-app-designer#answer_393213
Unfortunately I am unaware of workaround. My apps usually contain a checkbox option in the options menu to toggle off/on tooltips. When toggled off, the app stores all component tootip text and replaces the tooltips empty chars (''). When toggled back on, the original component tooltips are restored.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!