frederik

Forum Replies Created

Viewing 15 posts - 256 through 270 (of 531 total)
  • Author
    Posts

  • frederik
    Keymaster

    added to the todo list

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

    frederik
    Keymaster

    not atomically, mainly cause you have to deal with all the OT features (like kerning)

    in reply to: [1.4] Scaling a glyph #5389

    frederik
    Keymaster

    There was a nasty bug in glyph math :)
    The result of some glyph math was always applied on the glyph data, which is not correct. It should return the result as a glyph object, so you can handle the result as expected: set it back in the source or store and used it somewhere else without the modifying the source data.

    I will add “-=” “+=” “*=” operation do the todo list

    thanks

    in reply to: [1.4] Traceback when double-clicking some glyphs #5376

    frederik
    Keymaster

    I cannot reproduce it, but regarding the traceback I can think of a possible solution….

    in reply to: [1.4] Traceback when double-clicking some glyphs #5374

    frederik
    Keymaster

    Could you deinstall all your extensions and see if one of them are interfering the setup of a glyph window.

    in reply to: External update #5349

    frederik
    Keymaster

    RoboFont gets a notification for the OS if something changed, so it’s pretty fast

    in reply to: [1.4] Traceback when double-clicking some glyphs #5341

    frederik
    Keymaster

    Do you have two or more glyph window open?

    in reply to: External update #5339

    frederik
    Keymaster

    RoboFont checks now also for updates while RoboFont is active. So if one is changing and saving a UFO in a dropbox folder, an other designer that has the same file open will get an update notification.

    in reply to: Enhancements for next version #5327

    frederik
    Keymaster

    * in the next version the font object has a font.setLayerDisplay(layerName, option, value) so you can alter the display options easily
    * use double click or the “Close Contour” hot key
    * assign a key combination to a script that is adding the current selection to the current Space Center

    good luck!

    in reply to: Use 45° constrain bug #5326

    frederik
    Keymaster

    this will be fixed in the next update

    in reply to: Glyph window and zoom levels #5300

    frederik
    Keymaster

    The zoom level for newly opened glyph windows is indeed always “fit”. This is fitting the glyph bounding box into the size of the window. When switching to an other glyph in the same glyph window the zoom level will remain the same (by either double clicking a glyph in the font overview or by the switch to the next or previous glyph or jumping to an other glyph).

    The issue why not remembering the zoom level for newly opened glyph windows is that your drawing will get “lost” in space if the zoom level is big.
    This is been tested in a beta version but removed cause it’s really confusing. It just makes you pan much more.

    Will think about a menu short cut to a 100% zoom level. The 100% doesn’t make really sense cause type is set in point sizes related to the upm and other font metrics settings.
    However you can set a short cut to a specific zoom with a script:

    from mojo.UI import CurrentGlyphWindow
    
    gw = CurrentGlyphWindow()
    
    # the scale value 1 is 100%, 2 is 200%, 0.5 is 50%
    gw.setGlyphViewScale(1)
    

    Add an observer on a key down and set a zoom level when a specific key is pressed :)

    good luck

    in reply to: Print Feature? #5295

    frederik
    Keymaster

    Hi

    its correct there is no “print” feature in RoboFont and I think it will never happen. Print out change for each design / project. The “Test Install” option is much more flexible. Make some templates in Indesign or whatever app you prefer, test install your working document and print from there.

    This allows for example that your font in progress is been printed as a font and not as a collected vector drawings.

    good luck!

    in reply to: anchors #5289

    frederik
    Keymaster

    RoboFont has not yet support natively for placing components with anchor support.

    You can use font.generateGlyph(....) to compile glyph with anchor placement.

    font = CurrentFont()
    
    font.generateGlyph("adieresis")
    

    good luck

    in reply to: More tools #5286

    frederik
    Keymaster

    If a tool is activated from the scripting window and not as an extension the easiest thing todo is to restart :)

    in reply to: More tools #5284

    frederik
    Keymaster

    double click the extension file again to de-install see http://doc.robofont.com/extensions/installing-extensions/

Viewing 15 posts - 256 through 270 (of 531 total)