MATLAB App Designer does not render new fonts

조회 수: 6 (최근 30일)
Daniel Vieira
Daniel Vieira 2019년 7월 23일
댓글: lalit bindra 2020년 6월 1일
I needed an illegible font for an app that requires a password, and there wasn't any in the App Designer default fonts, so I donwloaded one. I installed an openType font, restarted MATLAB (as in here), tested the font in a figure window using the "text" function, and it works. However, in the App Designer, the font appears in the list of fonts for an Edit Field, but is rendered as the default font. Is it even possible to use new fonts in App Designer? If it is, what am I missing?
A print of what's happening (roll to the right, this print turned unnecessarily big...)
  댓글 수: 2
Adam Danz
Adam Danz 2019년 7월 23일
Have you closed the app and restarted it since making the change?
If no, try that first.
If yes, have you tried assigning the fontname within a callback function?
Use listfonts() to list all available fonts in Matlab.
A bigger question: Is this really the best encryption method? Here are alternatives listed by Jan [1] and Stephen Cobeldick [2].
Daniel Vieira
Daniel Vieira 2019년 7월 23일
Ok, I tried both suggestions, and neither worked. I'll make a "real encryption" then...

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

답변 (1개)

Subhadeep Koley
Subhadeep Koley 2019년 8월 9일
Hi, follow the steps below to achieve the same
  1. In the Editor tab of the App Designer click on the Public Property and insert the follwing code
password;
2. Right click on the text field > go to EditFieldValueChanging callback
3. paste the following code inside the callback
c=event.Value;
app.password = [app.password, c(end:end)];
set(app.EditField, 'Value', [repmat('*', 1, length(c))]);
4. Save & Run the App
The Actual value of the password is stored inside the variable app.password.
  댓글 수: 2
Daniel Vieira
Daniel Vieira 2019년 8월 9일
I already solved, quite similar to your suggestion, but with some extra steps to allow the user to take back characters. The problem is it turned out to be slow, a character may be lost if I type too fast. That's ok for now.
But I'd really like to be able to use new fonts, not necessarily for this.
lalit bindra
lalit bindra 2020년 6월 1일
Can you please share the edited code. I tried the code by Subhadeep but it changes the user input to the asterisks.

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

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by