Font not working.

● ARCHIVED · READ-ONLY
Started by Misty 4 posts View original ↗
  1. Hello everyone,

    I am having a font loading issue, so is there a script that can help me?

    Here is the font:

    http://www.fontsquirrel.com/fonts/Playtime-With-Hot-Toddies

    Font.default_name = "playtime" # Edit as you see fit.

    Font.default_size = 24 # Edit as you see fit.

    I have heard people having trouble loading certain fonts before. I read a post where every single font except one didn't work.

    Sincerely,

    ZEFK
  2. Font.default_name is not the filename. It is the name that shows up when you double-click the font to open it when you're installing it (or that shows in the font manager after you've installed it).


    It is probably "Playtime With Hot Toddies"
  3. The name of the font is "Playtime With Hot Toddies Regular". I guess ruby is case sensitive so take care of the caps please.

    So it will be like:

    Code:
    Font.default_name = "Playtime With Hot Toddies Regular" # Edited as i saw fit.Font.default_size = 24 # Edit as you see fit.
  4. Thank you both. My favorite font is working now.