Save Font Names
Posted: Thu Sep 21, 2017 11:48 am
A short routine to save all available font names into a text file. The screenshot shows just the first part of my file.
Code: Select all
''
Save Font Names
by rbytes, September 2017
''
l = #.fontlist() 'returns list of installed fonts as an array l.
f = "Fontnames.txt"
#.writelines(f,l) ' saves array l to file "Fontnames.txt"
#.output("Done")