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

Default paragraph font not found in character catalog

Community Beginner ,
Sep 16, 2015 Sep 16, 2015

Copy link to clipboard

Copied

Hi all,

I'm wondering if there's a way to get the default paragraph font as a character format via ExtendScript. I currently have a script that records all the character formats in the active doc.

var arr = new Array;

var tag = active.FirstCharFmtInDoc;

var tagname = tag.Name;

var count = 0;

while (tag.ObjectValid()) {

     arr[count] = tagname;

     tag = tag.NextCharFmtInDoc;

     tagname = tag.Name;

     count++;

}

return arr;

In FrameMaker, this list looks like:

Default Font

Emphasis

EquationVariables

Hypertext

But when iterating through the character formats in the script, it omits the default font. Any ideas on how to stop this omission or why it occurs?

TOPICS
Scripting

Views

660

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

LEGEND , Sep 18, 2015 Sep 18, 2015

The "Default Font" tag is actually not in the stored Catalog of a document. It's just a hardwired reset that strips off all applied character formats and/or tags.

Votes

Translate

Translate
LEGEND ,
Sep 18, 2015 Sep 18, 2015

Copy link to clipboard

Copied

The "Default Font" tag is actually not in the stored Catalog of a document. It's just a hardwired reset that strips off all applied character formats and/or tags.

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 ,
Sep 18, 2015 Sep 18, 2015

Copy link to clipboard

Copied

LATEST

I see, that makes sense. 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