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)