Forum Replies Created
-
AuthorPosts
-
I have this… But it is buggy. See if you scroll. If you change a glyph the factory doest work, only after scrolling/clicking on the overview.. Here I need a bit help :)
from vanilla import * from defconAppKit.controls.glyphCollectionView import * from defconAppKit.windows.baseWindow import BaseWindowController from mojo.UI import SetCurrentGlyphByName class MyFont(BaseWindowController): def __init__(self, glyphs): self.w = Window((900,600), "") self.w.collectionView = GlyphCollectionView((15, 15, -15, -65), doubleClickCallback=self.double, cellRepresentationName='doodle.GlyphCell') self.w.collectionView.setCellSize((100, 100)) self.setUpBaseWindowBehavior() self.w.collectionView.preloadGlyphCellImages() self.w.collectionView.set(glyphs) self.updateTitle() self.w.open() def updateTitle(self): title = f.info.familyName +" - "+ f.info.styleName+", "+ str(CurrentGlyph()) self.w.setTitle(title) def double(self, sender): order = f.lib.get('public.glyphOrder') SetCurrentGlyphByName(order[self.w.collectionView.getSelection()[0]]) self.updateTitle() f = CurrentFont() g = CurrentGlyph() glyphs = [] for g in f.lib.get('public.glyphOrder'): glyphs.append(f[g]) MyFont(glyphs)
I want the glyph collection view on a second screen. And all the rest on the main screen. :)
I would like an example. Many thanks Frederik!
Thom
Great, this works!
Thanks!Hi,
OK it draws. But still overlapped, and composed…
Great!
Thanks for the quick response Frederik.This bug also appears in the SpaceCenter. This is the same thing?
Thanks Frederik!
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)
Merci :-)
That does the trick like it should be ;)
Thanks again Frederik!
Good idea Jo!
try this:
g.removeGuide(a)
So, it is not possible to draw something in the glyph view on a fontDidSave event?
something else: this doesn’t work anymore? http://doc.robofont.com/api/scripting-examples/drawing-and-addobserver-example/
Great!
No really, it remove also the existing templateGlyphs. But:
glyphOrder = [] for glyph in f.lib['public.glyphOrder']: glyphOrder.append(glyph) for glyph in myListOfGlyphs: glyphOrder.append(glyph) f.glyphOrder = glyphOrder
Thanks Fredrik!
Extra question about the TemplateGlyphs:
If I add for example Kacute to the font, it will not add automatic the unicode value to the glyph. Can I changed this?
When does RoboFont show the preview font in the TemplateGlyphs? Name, unicode, combination?
I tested around to get the Kacute as a TemplateGlyph [used my own font as previewFont, it contains a Kacute + unicode] , no succes…Thanks again
-
AuthorPosts