frederik

Forum Replies Created

Viewing 15 posts - 331 through 345 (of 531 total)
  • Author
    Posts
  • in reply to: Preserving a path when deleting a point #4381

    frederik
    Keymaster

    he,

    you’re not alone :)

    in reply to: Anchor behaviour #4366

    frederik
    Keymaster

    the upcoming version has different behavior toward anchor selection:
    cmd+a: select all contours
    cmd+alt+a: select all object in the glyph, contours, anchors, components

    marque sélection + alt + command: select anchors only

    and the anchors – margin bug will also be fixed

    in reply to: FDK version #4363

    frederik
    Keymaster

    the upcoming release already has:

    from mojo.compile import FDKVersion
    
    print FDKVersion
    

    for version 1.2 and below see http://doc.robofont.com/documentation/welcome-to-robofont/technical-specifications/

    in reply to: Trouble Generating Font/Test Install #4360

    frederik
    Keymaster

    super!

    in reply to: Trouble Generating Font/Test Install #4355

    frederik
    Keymaster

    he

    there is feature syntax error in line 4 :)

    see http://doc.robofont.com/documentation/workspace/features/

    good luck

    in reply to: Bug in autoContourOrder #4351

    frederik
    Keymaster

    This was idd a bug in version 1.2 where it seems to be possible that a contour has zero points, this is solved in the upcoming RoboFont 1.3.

    thanks

    in reply to: copy font info #4334

    frederik
    Keymaster

    Will add f.info.asDict() returning a dictionary with all the possible values

    for the crashes: can you narrow it down to a single info value that is making RoboFont to crash?

    thanks

    in reply to: g.mark by colorName #4325

    frederik
    Keymaster

    The name is just as reference and has no other meaning. The color data in side a UFO is idd stored as an RGBA tuple.

    A small tip:
    you can search for colors (see screenshot)

    good luck

    Attachments:
    You must be logged in to view attached files.
    in reply to: Undo should apply to global guides #4314

    frederik
    Keymaster

    undo works on a glyph level. Global guides are font level. Be careful :) or lock guides and unlock them only when you need them

    good luck

    in reply to: Features update #4312

    frederik
    Keymaster

    mm, why would you rewrite the source file?
    RoboFont will see this change only when you jumped to an other application and back to RoboFont.

    But I strongly encourage you not to do it like this :)

    
    f = CurrentFont()
    
    ## get the fea text
    feaText = f.features.text
    
    
    for i in range(100):
        feaText += "# halleluja\n"
    
    f.features.text = feaText
    
    

    ps: also strongly advised: never ever use private callback, private callbacks are callbacks starting with and “_” (underscore) those allows developers to change underlaying API stuff with bothering the top level API.

    so:

    f = CurrentFont()
    print f.path
    

    thanks

    in reply to: removeOverlap Error #4306

    frederik
    Keymaster

    thanks for the data

    this should be fixed in the next version

    in reply to: not updating imported module #4305

    frederik
    Keymaster

    python creates .pyc files on the fly during runtime only if the compiled version is not existing.

    You can force to reload a module by:

    import myModule
    reload(myModule)
    

    good luck

    in reply to: removeOverlap Error #4296

    frederik
    Keymaster

    can you copy the glif xml data here? (just select the glyph and paste it here)

    thanks

    in reply to: RSegment.smooth property always returns None #4293

    frederik
    Keymaster

    thanks, great catch

    will be fixed in the next version

    Attachments:
    You must be logged in to view attached files.
    in reply to: Italic Slant Offset applied twice to components #4292

    frederik
    Keymaster

    jep that is true
    and already fixed in the dev version

    will be in the next update

    thanks

Viewing 15 posts - 331 through 345 (of 531 total)