qkeave

Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • in reply to: Error when saving any ufo #6183

    qkeave
    Participant

    I didn’t change anything in RoboFont.. and I deleted it and reinstalled it and tried using it as a device.. all giving me the same error.

    About the embedding.. that is what I thought.. which is why I was surprised it broke a part of robofont. I installed ufo2otf via terminal.

    They would have installed globally.. I think.. since I installed it/its dependencies via terminal within a separate node project. I ended up not getting that to work so I gave up and just “sudo easy_install ufo2otf”ed it.

    If there is a way to reset those changes I would be happy to do it.

    in reply to: Error when saving any ufo #6181

    qkeave
    Participant

    Font-Tools was reinstalled and they share “stuff”… I have a feeling this is caused by installing it via the setup file in a projects subdirectory… but I’m not sure how to reverse this process.

    I also installed ADFKO, RoboFab and ufo2fdk

    in reply to: Error when saving any ufo #6180

    qkeave
    Participant

    If you have a quick fix it would be much appreciated.

    I’m not sure if this helps but this started happening after installing ufo2otf.

    in reply to: Add an anchor #5770

    qkeave
    Participant

    Thanks!

    in reply to: Checking for component objects. #5769

    qkeave
    Participant

    Thank u Jens!

    in reply to: Add an anchor #5763

    qkeave
    Participant

    Well this is what I used (https://github.com/qkeave/Robofab-tools/blob/master/Radial%20Guides.py)

    PS. How do I enable PrettyPrint on my code?

    # Add Radial Guides - Quinn Keaveney
    g = CurrentGlyph()
    ancs = []
    gd = []
    
    for angle in range(0, 180, 15):
        gd.append("Radial {0}deg".format(angle))
    
    for a in g.anchors:
        b = a.name
        ancs.append(b)
        
    if 'Radial Guide' not in ancs:
        g.appendAnchor("Radial Guide", (500, 500))
    
    for a in g.guides:
        if a.name in gd:
            g.removeGuide(a)
    
    for a in g.anchors:
        if a.name == 'Radial Guide':
            x = a.x
            y = a.y
            for angle in range(0, 180, 15):
                g.addGuide((x, y), angle, name=("Radial {0}deg".format(angle)))
                guide = g.addGuide((x, y), angle, name=("Radial {0}deg".format(angle)))
                guide.naked().showMeasurements = True
    
    CurrentFont().update() 
    
    
    print ''
    print 'Digested by Python.'
    
    in reply to: Add an anchor #5756

    qkeave
    Participant

    Frederik, you are the man! I really appreciate the programming point.

    That being said I want to report a bug. >_<
    When you set the measurements via the scripting window it isn’t reflected in the WYSIWYG editor, even after CurrentFont().update().

    Attachments:
    You must be logged in to view attached files.
    in reply to: Add an anchor #5754

    qkeave
    Participant

    Sorry –> double post

    Attachments:
    You must be logged in to view attached files.
    in reply to: Add an anchor #5740

    qkeave
    Participant

    thanks Thom that works,

    now I just need to figure how to turn on measurements with python

    in reply to: Add an anchor #5737

    qkeave
    Participant

    Thanks and sorry! I’m probably not as good at searching as I thought I was.
    – BUT –
    this of course leads to more questions.

    – How do I set guides to measure
    – How do I ACTUALLY remove guides (because I can’t get removeGuide() to work)

    I’ve attached the little tool I’m making below for context.

    ___________________________

    g = CurrentGlyph()
    ancs = []
    gd = ['Radial 0deg','Radial 20deg','Radial 40deg','Radial 60deg','Radial 80deg','Radial 100deg','Radial 120deg','Radial 150deg','Radial 160deg']
    
    for a in g.anchors:
        b = a.name
        ancs.append(b)
        
    if 'Radial Guide' not in ancs:
        g.appendAnchor("Radial Guide", (500, 500))
    
    for a in g.guides:
        if a.name in gd:
            #THIS IS WHERE I WANT TO REMOVE THE GUIDE
            #removeGuide(a)
        
    print g.guides
    
    for a in g.anchors:
        if a.name == 'Radial Guide':
            x = a.x
            y = a.y
            g.addGuide((x, y), 90, name="Radial 0deg")
            g.addGuide((x, y), 110, name="Radial 20deg")
            g.addGuide((x, y), 130, name="Radial 40deg")
            g.addGuide((x, y), 150, name="Radial 60deg")
            g.addGuide((x, y), 170, name="Radial 80deg")
            g.addGuide((x, y), 190, name="Radial 100deg")
            g.addGuide((x, y), 210, name="Radial 120deg")
            g.addGuide((x, y), 230, name="Radial 150deg")
            g.addGuide((x, y), 250, name="Radial 160deg")
            #I JUST NEED TO SET THESE TO MEASURE
    
    print ''
    print 'Digested by Python.'
    
    in reply to: Add an anchor #5736

    qkeave
    Participant

    thank you!

Viewing 11 posts - 1 through 11 (of 11 total)