Thom

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 34 total)
  • Author
    Posts
  • in reply to: Single Window Mode + separate font overview #6281

    Thom
    Participant

    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)
    
    in reply to: Single Window Mode + separate font overview #6280

    Thom
    Participant

    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

    in reply to: g.copy #5998

    Thom
    Participant

    Great, this works!
    Thanks!

    in reply to: g.copy #5996

    Thom
    Participant

    Hi,

    OK it draws. But still overlapped, and composed…

    in reply to: ShowUI #5991

    Thom
    Participant

    Great!
    Thanks for the quick response Frederik.

    in reply to: Bitmap error #5864

    Thom
    Participant

    This bug also appears in the SpaceCenter. This is the same thing?

    Thanks Frederik!

    in reply to: guide.y accepts no new value #5792

    Thom
    Participant

    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)
    in reply to: guide.y accepts no new value #5791

    Thom
    Participant

    Merci :-)

    in reply to: setDefault & UpdateCurrentGlyphView #5788

    Thom
    Participant

    That does the trick like it should be ;)

    Thanks again Frederik!

    in reply to: tabs in scripting window #5774

    Thom
    Participant

    Good idea Jo!

    in reply to: Add an anchor #5738

    Thom
    Participant

    try this:

    g.removeGuide(a)
    in reply to: draw in output window #5715

    Thom
    Participant

    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/

    in reply to: Measuring options gone #5714

    Thom
    Participant

    Great!

    in reply to: update TemplateGlyphs #5558

    Thom
    Participant

    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!

    in reply to: update TemplateGlyphs #5551

    Thom
    Participant

    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

Viewing 15 posts - 1 through 15 (of 34 total)