Code: Select all
on mouseDown
put the fontNames into me
end mouseDown
- -
[that's only part of the list

HOWEVER, things would be much lovelier if the font list were alphabeticised . . .
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseDown
put the fontNames into me
end mouseDown
Code: Select all
on mouseDown
put the fontNames into me
sort lines of me ascending international
end mouseDown
And probably even still after looking at your own screenshot?richmond62 wrote: ↑Wed Mar 11, 2020 5:59 pmI have been aware of sort for many years, but somehow, rather naively,
thought listing the fonts would automatically alphabeticise them.
Well, you start with this code....richmond62 wrote: ↑Wed Apr 22, 2020 7:48 amHow does one stop "all that cack" [the top bit in the snapshot] from showing up in a font list on MacOS?
...and if it were say, me, I'd modify it like this ....richmond62 wrote: ↑Wed Mar 11, 2020 5:59 pmCode: Select all
on mouseDown put the fontNames into me sort lines of me ascending international end mouseDown
Code: Select all
on mouseDown
put the fontNames into me
sort lines of me ascending international
delete line 1 to 7 of me
end mouseDown
Code: Select all
filter tFontList without "(*)"
What is one man's meat is another one's poison . . . so crud can stand.FourthWorld wrote: ↑Wed Apr 22, 2020 10:53 amThose aren't "crud" (how do you imagine the team has time to go out of their way to add "crud" to the engine?).
Code: Select all
filter tFontList without "(*)"