Skip to main content
This topic has been closed for replies.
Correct answer Disposition_Dev

function test()

{

var TF =  textFonts;

$.writeln(TF.length + " fonts installed on the system.\n");

for(var x=0,len=TF.length;x<len;x++)

{

$.writeln(TF.name);

}

}

test();

2 replies

Participant
November 23, 2020

How can I download & print a list with samples of illustrator fonts?

Doug A Roberts
Community Expert
Community Expert
November 23, 2020
Disposition_Dev
Disposition_DevCorrect answer
Legend
July 5, 2018

function test()

{

var TF =  textFonts;

$.writeln(TF.length + " fonts installed on the system.\n");

for(var x=0,len=TF.length;x<len;x++)

{

$.writeln(TF.name);

}

}

test();

Known Participant
July 6, 2018

Great, thanks.