Czar 111 Report post Posted August 2, 2018 I am trying to find a demo that uses different fonts loaded from the internet. I cannot find a suitable sample, anyone got an idea? ideally something basic like how to load (for example) a cursive font and then set a label to use the new font. Share this post Link to post Share on other sites
lynkfs 419 Report post Posted August 2, 2018 in project options add a webfont (see https://jonlennartaasenden.wordpress.com/2017/10/04/webfonts-in-smart-mobile-studio/) W3Memo1.Font.Name := 'Tangerine'; W3Memo1.Font.Style := [fsItalic]; W3Memo1.Font.Size := 48; W3Memo1.Font.Weight := 'bold'; In this case I added Font 'Tangerine' (see also https://developers.google.com/fonts/docs/getting_started) 5 rshotbolt, IElite, jarto and 2 others reacted to this Share this post Link to post Share on other sites