Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Solved
    • Unsolved
    • Search
    1. Home
    2. Artur
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Artur Schmal

    @Artur

    0
    Reputation
    3
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online
    Website originaltype.com Location Amsterdam

    Artur Follow

    Best posts made by Artur

    This user hasn't posted anything yet.

    Latest posts made by Artur

    • RE: Tracking for txt variable doest'n work

      Is this something that would work for you?

      newPage('A4Landscape')
      BORDER = 20
      Text_sample = 'ABCDEFGI'
      t = FormattedString()
      t.font('Helvetica')
      t.fontSize(18)
      t.lineHeight(32)
      t.tracking(100)
      t.append(Text_sample)
      textBox(t, (BORDER, BORDER, width()-BORDER*2, height()-BORDER*2))
      

      Screen Shot 2021-05-04 at 13.32.06.png

      posted in General Discussion
      Artur
      Artur
    • RE: draw character from glyph name

      Thanks Ben!

      posted in General Discussion
      Artur
      Artur
    • draw character from glyph name

      Hello,

      I'm trying to draw a character on the canvas by calling an index from a list of glyph names.

      newPage('A4Landscape')
      font('SFMono-Regular')
      fontSize(60)
      txt = listFontGlyphNames()
      text(txt[60], (30, 30))
      

      What is the way to convert a glyph name to the character that represents it?

      Cheers,
      Artur

      posted in General Discussion
      Artur
      Artur