Page 1 of 1

Save Font Names 1.1

Posted: Thu Sep 21, 2017 2:01 pm
by rbytes
The program now displays the number of font files found. This info is also saved at the end of the font name file.

Code: Select all

''
Save Font Names 1.1
by rbytes, September 2017
''
l = #.fontlist() 'returns list of installed fonts as an array l.
f = "Fontnames.txt"
t="Total fonts: "+#.size(l,1)
#.writelines(f,l).   ' write the font names from the array
#.writeline(f,t).    ' write the number of fonts found
#.output("Done"+#.lf+t)