Navigation

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

    • FosterType

      SOLVED Undo after create guide
      Problems & Bugs • guidelines • • FosterType  

      2
      0
      Votes
      2
      Posts
      11
      Views

      gferreira

      hello @FosterType, this has been fixed, please upgrade to the final 3.4 release. cheers!
    • jansindl3r

      SOLVED help claims that guideline.selected exists but does not
      Problems & Bugs • fontparts guidelines • • jansindl3r  

      7
      0
      Votes
      7
      Posts
      37
      Views

      gferreira

      hello @jansindl3r, the current guideline is only available from an interactive tool. here’s an example: (shift-click guide to flip direction) from mojo.events import EditingTool, installTool class FlipGuideTool(EditingTool): def getToolbarTip(self): return "flip guide" def mouseDown(self, point, clickCount): g = CurrentGlyph() guides = CurrentGuidelines() if guides and self.shiftDown: guides[0].angle += 90 installTool(FlipGuideTool()) cheers!
    • ryan

      UNSOLVED Lock individual guides?
      Feature Requests • guidelines • • ryan  

      3
      0
      Votes
      3
      Posts
      60
      Views

      ryan

      Cool. Are there any existing methods I can use to implement this on individual guides with a custom tool? Thanks!
    • ryan

      UNSOLVED Guidelines: occasional undo failure / name erasure
      Problems & Bugs • guidelines undo • • ryan  

      1
      0
      Votes
      1
      Posts
      45
      Views

      ryan

      Sometimes when a guideline is moved, the undo will not work. Also sometimes, the name is erased. I can reproduce with both local and global guides. Video Version 3.3 (build 1911061105)
    • markyehan

      SOLVED Guides in Robofont not working
      Problems & Bugs • guidelines • • markyehan  

      3
      0
      Votes
      3
      Posts
      115
      Views

      markyehan

      oops... yes that worked! thank you
    • ryan

      SOLVED Guidelines: color and measurements
      General Questions • guidelines colors measuring • • ryan  

      10
      0
      Votes
      10
      Posts
      755
      Views

      ryan

      Yes! Thanks @frederik & all :) Looking forward to it.
    • ryan

      UNSOLVED Glitch when hovering over guides
      Problems & Bugs • guidelines • • ryan  

      12
      0
      Votes
      12
      Posts
      819
      Views

      ryan

      Yeah there it is.
    • FosterType

      SOLVED Copy / Swap to Layer deletes local guides
      Problems & Bugs • layers guidelines • • FosterType  

      3
      0
      Votes
      3
      Posts
      449
      Views

      FosterType

      Hey Gustavo, Thanks for that, works great. D
    • StephenNixon

      SOLVED Can I lock and unlock guides via script?
      General Questions • guidelines • • StephenNixon  

      5
      0
      Votes
      5
      Posts
      812
      Views

      frederik

      oh, typo, Ive edited it out, thanks!
    • frankrolf

      SOLVED Guideline Magnetism
      Feature Requests • guidelines • • frankrolf  

      3
      0
      Votes
      3
      Posts
      812
      Views

      frederik

      FYI: in the upcoming release RF3.1 both the magnetic as the show measurements attributes of a guideline will be part of the preferences: defaultGuidelineShowMeasurment defaultGuidelineMagnetic to change the default use, or the preference json editor (alt click the Preferences menu item): from mojo.ui import setDefault setDefault("defaultGuidelineMagnetic", 0)
    • thom

      BUG slicing glyph with guide
      Problems & Bugs • guidelines • • thom  

      2
      0
      Votes
      2
      Posts
      533
      Views

      frederik

      I see, thanks for reporting
    • thom

      Guide.y accepts no new value
      Problems & Bugs • scripting guidelines • • thom  

      4
      0
      Votes
      4
      Posts
      659
      Views

      thom

      follow up: Also if you scale the blues in the font by a factor the value become <real> in the fontinfo instead of <integer>. Now you can not edit them in the fontinfo window anymore... So be sure to int(here_a_blue_value)
    • qkeave

      Add an anchor
      General Questions • scripting guidelines anchors • • qkeave  

      14
      0
      Votes
      14
      Posts
      1635
      Views

      qkeave

      Thanks!
    • jmickel

      Guide Angle Orientation
      Feature Requests • guidelines • • jmickel  

      1
      0
      Votes
      1
      Posts
      466
      Views

      jmickel

      I've noticed that if you specify an angle for a guide it is oriented to the x axis, so a vertical guide is 90°. That makes sense except that when you specify the italic angle it is oriented to the y axis, which means a -11° italic angle translates an 79° guide. It's easy to do the math (subtracting from 90), but maybe would be more clear oriented to y.
    • bas

      Global measurement line
      General Questions • guidelines measuring • • bas  

      2
      0
      Votes
      2
      Posts
      505
      Views

      frederik

      nope, use guides and enable "Show Measurements"
    • tom

      Undo should apply to global guides
      Feature Requests • 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