SOLVED a way to access “skipExportGlyphs” list in the RFont object
-
Hey Guys,
What is the best way to programmatically access and edit the skipExportGlyphs list for the CurrentFont?Best,
R
-
Thanks @gferreira!
-
hello @RafaŁ-Buchner,
here’s an example script:
f = CurrentFont() # set skipExportGlyphs f.lib['public.skipExportGlyphs'] = ['a', 'b', 'c', 'd', 'e'] # get skipExportGlyphs print(f.lib['public.skipExportGlyphs'])
cheers!