Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Solved
    • Unsolved
    1. Home
    2. Categories
    3. Feature Requests
    Log in to post

    Feature Requests

    • jmickel

      Hide Font Overview in Single Window Mode
      user interface • • jmickel  

      2
      0
      Votes
      2
      Posts
      270
      Views

      frederik

      No, there is no short cut for that. Will think about that, for now you can toggle the pane at the bottom of a single font window
    • jo

      Keyboard input
      user interaction inspector • • jo  

      2
      0
      Votes
      2
      Posts
      539
      Views

      frederik

      Was already on the list and will be in the next update Will also be added thanks
    • bas

      FDK version
      afdko • • bas  

      2
      0
      Votes
      2
      Posts
      474
      Views

      frederik

      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/
    • thom

      G.mark by colorName
      scripting preferences colors • • thom  

      3
      0
      Votes
      3
      Posts
      558
      Views

      thom

      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() :)
    • tom

      Undo should apply to global guides
      guidelines • • tom  

      2
      0
      Votes
      2
      Posts
      510
      Views

      frederik

      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
    • rf

      Group kerning
      kerning groups • • rf  

      3
      0
      Votes
      3
      Posts
      631
      Views

      rf

      @! got it! everything super. thank you very much.
    • joanca

      Update (Script) Menu from Preferences
      user interface preferences • • joanca  

      2
      0
      Votes
      2
      Posts
      421
      Views

      frederik

      This is already solved in the beta, and will be present in the next release.
    • joanca

      Scripts Menu name control
      scripting user interface mojo • • joanca  

      2
      0
      Votes
      2
      Posts
      448
      Views

      frederik

      naming inside a file isn't a good idea: all files have be parsed before a menu can be build will add some functionality to mojo.UI in the next version from mojo.UI import getScriptingMenuNamingShortKey, setScriptingMenuNamingShortKey data = getScriptingMenuNamingShortKey() data['/path/to/my/python/script.py'] = dict(preferredName="my script name", shortKey="d") setScriptingMenuNamingShortKey(data)
    • jack_jennings

      Scripting Window Default Size and Placement
      scripting user interface • • jack_jennings  

      3
      0
      Votes
      3
      Posts
      380
      Views

      jack_jennings

      Thanks. :)
    • jbl

      Delete command could break contour?
      scripting user interaction contours • • jbl  

      8
      0
      Votes
      8
      Posts
      756
      Views

      thom

      Great! Thanks Frederik!
    • thom

      Add component from layer
      layers components ufo3 • • thom  

      2
      0
      Votes
      2
      Posts
      504
      Views

      frederik

      This will change dramatically when UFO3 gets implemented (don't know when yet...) RoboFont will follow the spec so components will refer to glyphs from the same layer.
    • bas

      Default character set
      preferences character set • • bas  

      3
      0
      Votes
      3
      Posts
      603
      Views

      frederik

      Lots of character sets issues are solved and massively improved in version 1.3: writing glyph order / character set back into the UFO in the lib public.glyphOrder and while opening a UFO it checks if there is a glyph order in the lib rearranging by drag and drop hope this helps....
    • joanca

      Move glyph vertically in Space Center
      user interaction space center • • joanca  

      3
      0
      Votes
      3
      Posts
      551
      Views

      joanca

      'alt' sounds great to me : ) Dank u
    • jo

      Extension to build alternate glyphs
      extensions glyph names colors • • jo  

      5
      0
      Votes
      5
      Posts
      948
      Views

      jo

      hi frederik, thanks again for this and all the other replies! I did some minor changes (like printing a better report in the output window). The latest version can be found here: http://langustefonts.com/dwld/Componitor1.3.1.zip thanks, jo
    • jbl

      Change unicode codepoint
      unicode • • jbl  

      3
      0
      Votes
      3
      Posts
      613
      Views

      erik

      I'm trying to see the double unicode actually end up in the otf. But I don't. Anyone successful in doing this?
    • andreas

      SOLVED Group-Spacing
      space center components groups • • andreas  

      8
      0
      Votes
      8
      Posts
      1039
      Views

      nina

      That helps! Thanks. :)
    • sami

      Combine selected points into one point
      user interaction points documentation • • sami  

      18
      0
      Votes
      18
      Posts
      1849
      Views

      frederik

      yeah, help is great, didn't know it was available. This will be added in the next version. thanks ps: a small workaround: from defconAppKit.windows.progressWindow import ProgressWindow import pydoc ## this is actually happening in the built-in 'help' pydoc.help(ProgressWindow.update)
    • charlesmchen

      Shortcuts for scripts/extensions
      extensions keyboard shortcuts • • charlesmchen  

      4
      0
      Votes
      4
      Posts
      652
      Views

      frederik

      That is correct. For hot keys to scripts in an extension it's up to the developer of the extension to assign hot keys.
    • charlesmchen

      Add Python Paths Setting to Preferences
      scripting preferences • • charlesmchen  

      2
      0
      Votes
      2
      Posts
      485
      Views

      frederik

      He you can add a start up script that will add some root folders to the sys.path import sys sys.path.append("my/path/to/my/module") this module will then be available inside RoboFont to update the module without restarting: import myModule reload(myModule) good luck
    • boite-a-lettres

      Align points
      points • • boite-a-lettres  

      2
      0
      Votes
      2
      Posts
      421
      Views

      frederik

      see the transform pane in the inspector window http://doc.robofont.com/documentation/workspace/inspector/ thanks