Navigation

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

    • ryan

      SOLVED Unable to connect two open contours with pen tool
      Problems & Bugs • contours editing tools • • ryan  

      5
      0
      Votes
      5
      Posts
      24
      Views

      ryan

      @frederik Hate to bring up Ill*strator, but I actually think it handles this pretty well (no pun intended).
    • eduairet

      SOLVED BCP mirrored value transform not working
      General Questions • points editing tools selection hot keys mirrored • • eduairet  

      3
      0
      Votes
      3
      Posts
      25
      Views

      eduairet

      @frederik Thanks!
    • ro-hernandezz

      SOLVED Constrain to angles other than 0, 90, 45.
      General Questions • contours editing tools italics • • ro-hernandezz  

      7
      0
      Votes
      7
      Posts
      253
      Views

      frederik

      Its indeed similar to a pen. This allows easy subclassing of internal tools by simply adding behaviour to a tool. This tool is subclassing _mouseDragged as it needs the same behaviour but with the shift constrain disabled, as this tool will perform his own shift behaviour.
    • RafaŁ Buchner

      UNSOLVED Feature Request: selective SB values (along with the points) - EditTool
      Feature Requests • editing tools glyph editor spacing • • RafaŁ Buchner  

      4
      1
      Votes
      4
      Posts
      55
      Views

      RafaŁ Buchner

      Cool Ryan! I will have a look after Christmas. Maybe I will come up with some ideas how to make it work 100% nicely :D
    • erik

      UNSOLVED Something that highlights different segments in a glyph that are almost parallel?
      General Questions • editing tools drawing geometry parallel • • erik  

      2
      0
      Votes
      2
      Posts
      214
      Views

      gferreira

      hi @erik, there’s CheckParallelTool, but it checks only if the lines connecting on-curve and off-curve points in curve segments are parallel. (checking parallel segments is mentioned in the to-do list)
    • RafaŁ Buchner

      SOLVED disable/enable tool without deleting/installing extensions?
      General Questions • editing tools events • • RafaŁ Buchner  

      4
      2
      Votes
      4
      Posts
      255
      Views

      frederik

      Why do you need those tool objects? Im trying to understand your question ;)
    • jesentanadi

      SOLVED Disable selection box in EditingTool
      General Questions • editing tools • • jesentanadi  

      8
      0
      Votes
      8
      Posts
      726
      Views

      jesentanadi

      @frederik Ah, yes. I always forget about the help() function. Thanks!
    • jens

      SOLVED Handling selection in a Custom Tool
      General Questions • editing tools fonttools • • jens  

      3
      1
      Votes
      3
      Posts
      630
      Views

      jens

      Great, thanks
    • 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 :)
    • franz

      Build single one-time operation tool/button in glyph window, like RemoveOverlap
      General Questions • scripting editing tools remove overlap • • franz  

      8
      0
      Votes
      8
      Posts
      1107
      Views

      franz

      For now, I haven't found a way to directly insert my toolbarItem into the toolbar as I couldn't get insertItemWithItemIdentifier:()atIndex:() to work in the context of my script/extension, but probably I'm just being daft here. So currently I read all the items in the glyph window toolbar, add my item, and use vanilla's addToolbar method to replace the toolbar. That's looking good so far, all the previously present items are there, glyph tools work, and my item shows up (not as a button yet, that's lined up next). RemoveOverlap in the replaced toolbar crashes right now when clicked (I guess I'm somehow breaking the delegate or something), but I hope to get that sorted, too.
    • yanone

      Custom rotation tool
      General Questions • scripting editing tools • • yanone  

      2
      0
      Votes
      2
      Posts
      499
      Views

      frederik

      can you elaborate what you want to achieve with the special rotation behavior? you can build a custom tool and draw the selected points yourself: s = 5 ## / scale # in a tool you can get the scale value for x, y in CurrentGlyph().selection: oval(x-s, y-s, s*2, s*2)