Navigation

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

    • nina

      Layer palette size in Inspector
      Feature Requests • preferences inspector • • nina  

      2
      0
      Votes
      2
      Posts
      607
      Views

      frederik

      for now only the close/open state of a panel inside the inspector window is saved to the user defaults. Not the the size. Will think about it :)
    • jbl

      Shortcuts to python scripts
      General Questions • preferences keyboard shortcuts • • jbl  

      1
      0
      Votes
      1
      Posts
      473
      Views

      jbl

      Somehow I can't set the preferences to use "keyboard shortcuts to python script" work. What's the right procedure?
    • bas

      More tools
      General Questions • user interface extensions preferences editing tools • • bas  

      7
      0
      Votes
      7
      Posts
      1013
      Views

      frederik

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

      G.mark by colorName
      Feature Requests • 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() :)
    • joanca

      Update (Script) Menu from Preferences
      Feature Requests • 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.
    • bas

      Default character set
      Feature Requests • 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....
    • charlesmchen

      Add Python Paths Setting to Preferences
      Feature Requests • 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
    • franz

      Creating template glyphs?
      General Questions • preferences template glyphs • • franz  

      3
      0
      Votes
      3
      Posts
      573
      Views

      franz

      Hi Frederik, generating them with a script would be the option I'm after. Good to hear it's coming! F
    • bas

      Preview layers in Font Collection window
      General Questions • user interface layers preferences • • bas  

      3
      0
      Votes
      3
      Posts
      559
      Views

      bas

      I was more thinking of a preview hotkey as in the Glyph editor ;-)
    • bas

      Short key scripts
      General Questions • preferences keyboard shortcuts • • bas  

      6
      0
      Votes
      6
      Posts
      870
      Views

      danmilne

      You can also set the keyboard shortcuts through System Prefs > Keyboard > Application Shortcuts. This allows a greater range of keys and modifiers. http://cl.ly/3u05140G2S353P3F1u3e
    • odegaard

      Cannot generate font
      General Questions • font generation preferences afdko • • odegaard  

      3
      0
      Votes
      3
      Posts
      679
      Views

      frederik

      I think you disabled "Use Embedded FDK" and on your local machine there is no FDK installed, so RoboFont cannot find anything to generate the binary file. see http://doc.robofont.com/documentation/workspace/preferences/misc/
    • bas

      Link to local FDK?
      General Questions • preferences afdko • • bas  

      6
      0
      Votes
      6
      Posts
      898
      Views

      frederik

      :P if its enabled it will use the embedded FDK, if not RoboFonts tries to use the the local installed FDK, if you dont have a FDK installed you are not able to generate binaries. If you want to check if FDK is installed type "which makeotf" in your Terminal. This should return some similar like "/Users/<userName>/bin/FDK/Tools/osx/makeotf"
    • jbl

      Space center: access to Left sidebearing
      Feature Requests • user interaction space center preferences metrics • • jbl  

      4
      0
      Votes
      4
      Posts
      638
      Views

      frederik

      look in the system prefs http://goo.gl/PvSTK
    • jbl

      Generate options: decompose, autohint, remove overlap
      Feature Requests • font generation preferences test install • • jbl  

      3
      0
      Votes
      3
      Posts
      650
      Views

      jbl

      Thank you! btw, I'm not getting forum reply posts per email :(
    • jbl

      Recommended strategy for collaborative work?
      Feature Requests • user interface preferences • • jbl  

      1
      0
      Votes
      1
      Posts
      400
      Views

      jbl

      For the multi-collaborators sharing, exchange and update of character set, saved sets, space center test strings, what would be the best way to achieve this? Sharing a preference file seems too "global" because it stores more personal flavours like glyph display options…
    • jbl

      Load more text strings into the space center?
      Feature Requests • space center preferences • • jbl  

      2
      0
      Votes
      2
      Posts
      438
      Views

      Guest

      There is a scripting possibility to access, change and manage the input string for the space center see http://doc.robofont.com/documentation/scripting/api/mojo/mojo-ui/ (CurrentSpaceCenter) If you store user defaults through the app its will be fine. no worries :)