Forum Replies Created
-
AuthorPosts
-
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
I see, and found it, seems like the default setting is not used in the font compiler.
Will be fixed in the next update…
‘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
June 22, 2016 at 09:17 in reply to: UI updates were forcibly disabled by application “Robofont” for over X.x seconds #6264I will check on 10.9 later on this week, but it should not run slow :)
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
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
June 9, 2016 at 16:48 in reply to: 1.7 starting notice 'NSImageNameRightFacingTriangleTemplate' #6252I assume this is an issue in TTH, please report back to Jeremie Hornus
thanks
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()
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
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!
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()
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()
February 25, 2016 at 23:01 in reply to: [1.6] Crash when template glyphs with unicode > 0xffff should be displayed #6231This 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.oh, the window object seems already to be destroyed….
(force) quit and restart?
or does this occurs often?
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
-
AuthorPosts