Hi community,
I wonder how can I get, through python scripting, the ID value that appears in the Font list view.
Thanks,
Nicolás
Hi community,
I wonder how can I get, through python scripting, the ID value that appears in the Font list view.
Thanks,
Nicolás
glyph.glyphId()
Thanks Georg, I couldn’t find that method in GSGlyph
It is not documented, yet.
You can look into what the dir() method returns on a class name, e.g., print dir(GSGlyph), and you’ll see all everything the class can do.
Thanks @mekkablue