Batch generation of Glyphs format?

Hi there,

Is there a way to generate Glyphs versions of a bunch of open UFO files?

TIA.

Hey Ramiro,

Try the following:

for i in Glyphs.fonts:
	p = i.filepath
	if p.endswith('ufo'):
		np = p[:-3]
		i.save(np + 'glyphs')

(though i’m sure its not as simple as that :wink: )

Thanks a lot! For some strange reason I can´t generate fonts from UFO files (but I need them to kern on MetricsMachine)