Thom

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 34 total)
  • Author
    Posts
  • in reply to: draw in output window #5534

    Thom
    Participant

    Thanks!

    in reply to: calling data from another layer #5533

    Thom
    Participant

    That would be something for UFO3 I believe.
    Is that right Frederik? Any idea if/when UFO3 will be supported in RF?

    in reply to: check Kerning #5498

    Thom
    Participant

    Merci.
    Indeed, there is some group-group and glyph-group and glyph-glyph kerning. So no way to get directly a value out the ufo?
    Will try the temp dict.

    Thanks Frederik!

    in reply to: Generate? #5469

    Thom
    Participant

    Ah thank. It works alright. With print I found that in the features there was something not okay: empty group []

    new question: is there already a super handy script which remove glyphnames -that not appear in the ufo- from the featuresfile?

    in reply to: Update encoding #5456

    Thom
    Participant

    Anyone? :)

    in reply to: MacRoman #5411

    Thom
    Participant

    Hm. And why starting with the .notdef?

    in reply to: Generate/Compile only in otf #5395

    Thom
    Participant

    Like so?

    familyName = ‘Fam’
    styleName = ‘Style’
    Latin1=[‘space’, ‘exclam’, ‘quotesingle’, ‘quotedbl’, ‘numbersign’, ‘dollar’, ‘percent’, ‘ampersand’, ‘parenleft’, ‘parenright’, ‘asterisk’, ‘plus’, ‘comma’, ‘hyphen’, ‘period’, ‘slash’, ‘zero’, ‘one’, ‘two’, ‘three’, ‘four’, ‘five’, ‘six’, ‘seven’, ‘eight’, ‘nine’, ‘colon’, ‘semicolon’, ‘less’, ‘equal’, ‘greater’, ‘question’, ‘at’, ‘A’, ‘B’, ‘C’, ‘D’, ‘E’, ‘F’, ‘G’, ‘H’, ‘I’, ‘J’, ‘K’, ‘L’, ‘M’, ‘N’, ‘O’, ‘P’, ‘Q’, ‘R’, ‘S’, ‘T’, ‘U’, ‘V’, ‘W’, ‘X’, ‘Y’, ‘Z’, ‘bracketleft’, ‘backslash’, ‘bracketright’, ‘asciicircum’, ‘underscore’, ‘grave’, ‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’, ‘g’, ‘h’, ‘i’, ‘j’, ‘k’, ‘l’, ‘m’, ‘n’, ‘o’, ‘p’, ‘q’, ‘r’, ‘s’, ‘t’, ‘u’, ‘v’, ‘w’, ‘x’, ‘y’, ‘z’, ‘braceleft’, ‘bar’, ‘braceright’, ‘asciitilde’, ‘exclamdown’, ‘cent’, ‘sterling’, ‘currency’, ‘yen’, ‘brokenbar’, ‘section’, ‘dieresis’, ‘copyright’, ‘ordfeminine’, ‘guillemotleft’, ‘logicalnot’, ‘registered’, ‘macron’, ‘degree’, ‘plusminus’, ‘twosuperior’, ‘threesuperior’, ‘acute’, ‘mu’, ‘paragraph’, ‘periodcentered’, ‘cedilla’, ‘onesuperior’, ‘ordmasculine’, ‘guillemotright’, ‘onequarter’, ‘onehalf’, ‘threequarters’, ‘questiondown’, ‘Agrave’, ‘Aacute’, ‘Acircumflex’, ‘Atilde’, ‘Adieresis’, ‘Aring’, ‘AE’, ‘Ccedilla’, ‘Egrave’, ‘Eacute’, ‘Ecircumflex’, ‘Edieresis’, ‘Igrave’, ‘Iacute’, ‘Icircumflex’, ‘Idieresis’, ‘Eth’, ‘Ntilde’, ‘Ograve’, ‘Oacute’, ‘Ocircumflex’, ‘Otilde’, ‘Odieresis’, ‘multiply’, ‘Oslash’, ‘Ugrave’, ‘Uacute’, ‘Ucircumflex’, ‘Udieresis’, ‘Yacute’, ‘Thorn’, ‘germandbls’, ‘agrave’, ‘aacute’, ‘acircumflex’, ‘atilde’, ‘adieresis’, ‘aring’, ‘ae’, ‘ccedilla’, ‘egrave’, ‘eacute’, ‘ecircumflex’, ‘edieresis’, ‘igrave’, ‘iacute’, ‘icircumflex’, ‘idieresis’, ‘eth’, ‘ntilde’, ‘ograve’, ‘oacute’, ‘ocircumflex’, ‘otilde’, ‘odieresis’, ‘divide’, ‘oslash’, ‘ugrave’, ‘uacute’, ‘ucircumflex’, ‘udieresis’, ‘yacute’, ‘thorn’, ‘ydieresis’, ‘dotlessi’, ‘circumflex’, ‘caron’, ‘breve’, ‘dotaccent’, ‘ring’, ‘ogonek’, ’tilde’, ‘hungarumlaut’, ‘quoteleft’, ‘quoteright’, ‘minus’]

    newFont = NewFont(familyName=familyName, styleName=styleName, showUI=True)

    master = RFont(‘/path/to/your.ufo’, showUI=False)

    for newGlyph in Latin1:
    exGlyph = master[newGlyph]
    newFont[newGlyph] = exGlyph

    in reply to: Generate/Compile only in otf #5394

    Thom
    Participant

    Okay! Can you give a tiny example of the script? Thanks!

    in reply to: Generate/Compile only in otf #5392

    Thom
    Participant

    I see. So it makes more sense to make more ufo’s if you want specific charsets for your fonts?

    in reply to: Generate/Compile only in otf #5388

    Thom
    Participant

    O! the title should be: Generate/Compile /less yourCharset/greater only in otf

    in reply to: Glyph has changed #5165

    Thom
    Participant

    Great!
    I searched for “doodle.GlyphCell” but can not find it… Can you give a head start ;)

    in reply to: Add Unicode #5115

    Thom
    Participant

    tcommaaccent gets the unicode of tcedilla. tcedilla doesn’t get a unicode. Is there something I do wrong, or I don’t know? Who can help? :)

    in reply to: Bug after cutting a contour with the knife tool #4653

    Thom
    Participant

    Who needs the data? Frederik? Erik?

    in reply to: g.mark by colorName #4327

    Thom
    Participant

    Yup, I already had a solution:

    f = CurrentFont()
    g = CurrentGlyph()
    
    red = (1,0,0,1)
    cyan = (0,1,1,1)
    
    for g in f:
        if g.mark == cyan:
            g.mark = red
            g.update()

    :)

    in reply to: Features update #4313

    Thom
    Participant

    Yes, this is easier and does exactly what I want!

    Thanks Frederik!

Viewing 15 posts - 16 through 30 (of 34 total)