• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

List installed system Fonts

Community Beginner ,
Jul 05, 2018 Jul 05, 2018

Copy link to clipboard

Copied

Hi,

is it possible to get a list of fonts installed in the system (win or mac)?

TOPICS
Scripting

Views

585

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jul 05, 2018 Jul 05, 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();

Votes

Translate

Translate
Adobe
Community Expert ,
Jul 05, 2018 Jul 05, 2018

Copy link to clipboard

Copied

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();

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jul 05, 2018 Jul 05, 2018

Copy link to clipboard

Copied

Great, thanks.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 22, 2020 Nov 22, 2020

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 23, 2020 Nov 23, 2020

Copy link to clipboard

Copied

LATEST

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines