Hi, Iām trying to copy to InDesign all the graphemes in my font file.
Now Iām doing the following:
Step 1
first I try to copy the Unicode values from the glyph selected with this little script:
#PrintSelectedUnicode
myGlyphs = Glyphs.font.glyphs
for number in myGlyphs:
print number.unicode
Result:
ā
Step 2
then I try to print the multiple graphemes with this code (I reduced the amount of glyphs)
#PrintGrafema
grafema = u"\u0041, \u00C1, \u0102, \u1EAE, \u1EB6, \u1EB0, \u1EB2,"
print grafema
Result:
ā
The questions:
There is some easier way to perform that task, or improve the code in one step? or any tool?
Thanks in advance!