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

reviewing of fonts template

New Here ,
Oct 22, 2020 Oct 22, 2020

Copy link to clipboard

Copied

Is there a way that I can create a font template and pick my top 10 fonts and create lets say 11 text boxes and one text box can control the letter content only and then the other 10 text box would follow the text from there first one but would have an especific font each one so I can compare several fonts at once?

TOPICS
Scripting

Views

166

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 , Oct 23, 2020 Oct 23, 2020

Would be using the Edit menu > Find and Replace > Replace All command no practical approach in this case?

Votes

Translate

Translate
Adobe
Community Expert ,
Oct 23, 2020 Oct 23, 2020

Copy link to clipboard

Copied

Could you perhaps show a sketch of that? Something visual of what you want to do?

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 ,
Oct 23, 2020 Oct 23, 2020

Copy link to clipboard

Copied

if I understood correctly,

- make a new document

- place your master text (by itself) on the top layer

- make a new layer, place it under master layer

- place as many text frames (with different fonts) you want to review on the review layer

reviewFonts.JPG

- update Master text frame on top layer and run the script attached here

reviewFonts2.JPG

// review fonts
// carlos canto
// https://community.adobe.com/t5/illustrator/reviewing-of-fonts-template/td-p/11530933?page=1

var idoc = app.activeDocument;

var masterContents = idoc.layers[0].textFrames[0].contents;

for (var a=0; a<idoc.layers[1].textFrames.length; a++) 
    idoc.layers[1].textFrames[a].contents = masterContents

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 ,
Oct 23, 2020 Oct 23, 2020

Copy link to clipboard

Copied

LATEST

Would be using the Edit menu > Find and Replace > Replace All command no practical approach in this case?

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