SOLVED Multiple Unicode
-
Hello,
Is it possible to map multiple Unicode values to a single glyph?
FontLab allowed this through the UI. I've tried both RoboFont's UI and by editing the glyph's XML.
Mike
-
Perfect! Thank you, that's exactly what I was looking for.
-
the current version of RoboFont it is possible to map multiple unicodes to a glyph with a script
glyph = CurrentGlyph() glyph.unicodes = [64, 65] # list of unicodes as decimal values
The inspector has no support for multiple unicodes, this will change in the next version
good luck