frederik

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 531 total)
  • Author
    Posts
  • in reply to: Not able to open glyphs in glyph edit window #6270

    frederik
    Keymaster

    Hi Filip

    do you know which glyph is not opening?

    I would also try to launch RoboFont with shift down, RoboFont will not install any extensions, and check if this issue is still there.

    thanks

    in reply to: ‘Save FDK parts’ doesn’t seem to do anything #6269

    frederik
    Keymaster

    I see, and found it, seems like the default setting is not used in the font compiler.

    Will be fixed in the next update…

    in reply to: ‘Save FDK parts’ doesn’t seem to do anything #6265

    frederik
    Keymaster

    ‘Save FDK parts’ saves all files required by FDK while generating a binary font next to the ufo file, if this is enabled.
    The folder has the name of your <familyName><styleName>.fdk and contains several files like:
    * compile.otf
    * features
    * font.otf (the final thing)
    * fontInfo
    * glyphOrder
    * menuname


    frederik
    Keymaster

    I will check on 10.9 later on this week, but it should not run slow :)

    in reply to: Embedded FDK #6258

    frederik
    Keymaster

    Hi

    There could be differences as RoboFont 1.6 embeds an older FDK. Jumpt to RoboFont 1.7 to get a newer FDK.

    If the FDK version is the same the speed should be the same.

    thanks

    in reply to: local fdk test instal #6253

    frederik
    Keymaster

    yes, the local / embedded FDK checkbox applies to parts that generates fonts. Actually

    testInstall()

    uses the same code to generate the file, so it uses the same FDK settings


    frederik
    Keymaster

    I assume this is an issue in TTH, please report back to Jeremie Hornus

    thanks

    in reply to: Contextual Menu in font view? #6251

    frederik
    Keymaster

    this should work in RoboFont 1.7

    good luck

    from mojo.events import addObserver
    
    class test(object):
        
        def __init__(self):
            
            addObserver(self, "fontOverviewAdditionContextualMenuItems", "fontOverviewAdditionContextualMenuItems")
            
        
        def fontOverviewAdditionContextualMenuItems(self, notification):
            
            myMenuItems = [
                ("Hello", self.sayHello), 
                ("World", self.sayWorld),
                ("submenu", [("an item", self.sayAnItem)])
                ]
            
            notification["additionContextualMenuItems"].extend(myMenuItems)
        
        def sayHello(self, sender):
            print "Hello"
        
        def sayWorld(self, sender):
            print "World"
        
        def sayAnItem(self, sender):
            print "an item"
    
    test()
    
    in reply to: hasOverlap in 1.7 #6250

    frederik
    Keymaster

    thanks for reporting

    this will be fixed in the next update

    thanks

    fyi: there was an import error see https://github.com/typemytype/booleanOperations/commit/b16abef44709c3048573d9a26841c92ae3baa825

    in reply to: Undo TestInstall? #6239

    frederik
    Keymaster

    use

    from mojo.UI import testDeinstallFont
    
    testDeinstallFont(font)
    

    dont delete the file itself, testDeinstallFont() send notification to the general font manager that something changed…

    good luck!

    in reply to: Animation in mojo.Canvas #6236

    frederik
    Keymaster

    Hi Roberto

    small example

    hope this helps :)

    from AppKit import NSTimer
    from random import random
    
    from vanilla import *
    
    from mojo.canvas import Canvas
    import mojo.drawingTools as dt
    
    from lib.baseObjects import CallbackWrapper
    
    class Test(object):
        
        def __init__(self):
            self.pos = 0, 0
            self.width = 400
            self.height = 400
            self.size = 100
            self.steps = 5
            self.addHorizontal = True
            self.directionX = 1
            self.directionY = 1
            
            framePerSecond = 30
            
            self.interval = framePerSecond / 1000.
            
            self.w = Window((400, 400))
            
            self.w.canvas = Canvas((0, 0, 400, 400), self, canvasSize=(self.width, self.height))
            self.w.open()
            
            self._callback = CallbackWrapper(self.redraw)
            self.sheduleTimer()
        
        def sheduleTimer(self):
            if self.w.getNSWindow() is not None:
                self.trigger = NSTimer.scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_(self.interval, self._callback, "action:", None, False)
        
        def redraw(self, timer):
            self.w.canvas.update()
            self.sheduleTimer()
        
        def draw(self):
            x, y = self.pos
            if self.addHorizontal:
                x += self.steps  * self.directionX
            else:
                y += self.steps  * self.directionY
            
            if x > (self.width - self.size):
                self.addHorizontal = False
                x = self.width - self.size
                self.directionX *= -1
            elif x < 0:
                self.addHorizontal = False
                x = 0     
                self.directionX *= -1       
            
            if y > (self.height - self.size):
                self.addHorizontal = True
                y = self.height - self.size
                self.directionY *= -1
            elif y < 0:
                self.addHorizontal = True
                y = 0
                self.directionY *= -1
            
            dt.fill(x/float(self.width), y/float(self.height), 1)
            dt.rect(x, y, self.size, self.size)
            
            self.pos = x, y
    
    Test()
        
    
    in reply to: MouseDown Observer detailed info #6233

    frederik
    Keymaster

    there is “Glyph.selection.Changed” notification

    small example
    also don’t forget to remove the observer when your are done…

    class SelectionObsever(object):
        
        def __init__(self):
            self.g = CurrentGlyph()
            self.g.addObserver(self, "selectionChanged", "Glyph.selectionChanged")
        
        def selectionChanged(self, notification):
            glyph = notification.object
            for anchor in glyph.anchors:
                print anchor.selected
            
    SelectionObsever()
    

    frederik
    Keymaster

    This is already solved in the upcoming release

    even support for emoji as a template preview :)

    Attachments:
    You must be logged in to view attached files.
    in reply to: closing script window not working #6223

    frederik
    Keymaster

    oh, the window object seems already to be destroyed….

    (force) quit and restart?

    or does this occurs often?

    in reply to: Glyph editor display toggles API #6216

    frederik
    Keymaster

    he Bahman

    you can use:

    from mojo.UI import setGlyphViewDisplaySettings, getGlyphViewDisplaySettings
    
    settings = getGlyphViewDisplaySettings()
    print settings
    
    # change something, and set it back
    # setGlyphViewDisplaySettings(settings)
    

    good luck

Viewing 15 posts - 16 through 30 (of 531 total)