Creating a fast forward button with consistent visuals
Show older comments
I have been making some audio control buttons such as a play button with:
uibutton(Text=char(0x23F5), FontName="monospaced")

Note that I am using the "Monospaced" font, which MATLAB is using for the editor and command window by default. This button shows the same symbol that would show in the command window if I were to print the text. This is the same for most of the media UTF-8 symbols.
However, if I run the same command, but using the code for the fast forward button, I get a different style symbol, despite explicitly defining the font that I want the button to use.
uibutton(Text=char(0x23E9), FontName="monospaced")

My question is what is causing this discrepancy, and how can I mitigate this?
Accepted Answer
More Answers (0)
Categories
Find more on Numeric Solvers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!