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

How to set/change the paragraph tags of a generatable file?

New Here ,
Oct 11, 2017 Oct 11, 2017

Copy link to clipboard

Copied

I have a Table of Contents and need to be able to set the included paragraph format tags for it using a script.

If I set the tags manually using the Set Up Table of Contents option, update the book and print Class BookComponent's ExtractTags property (BookComponent.ExtractTags) it shows the list of tags but I cant modify this property. Is there any way to do this?

TOPICS
Scripting

Views

247

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 11, 2017 Oct 11, 2017

Here is a snippet of code that should help you:

#target framemaker

var book = app.ActiveBook;

var tocName = book.Name.replace (/\.book$/i, "TOC.fm");

var bookComp = book.NewSeriesBookComponent (0);

bookComp.BookComponentType = Constants.FV_BK_TOC;

bookComp.Name = tocName;

var extractTags = bookComp.ExtractTags;

extractTags.push ("doctitle");

bookComp.ExtractTags = extractTags;

bookComp.GenerateInclude = 1;

Votes

Translate

Translate
Community Expert ,
Oct 11, 2017 Oct 11, 2017

Copy link to clipboard

Copied

LATEST

Here is a snippet of code that should help you:

#target framemaker

var book = app.ActiveBook;

var tocName = book.Name.replace (/\.book$/i, "TOC.fm");

var bookComp = book.NewSeriesBookComponent (0);

bookComp.BookComponentType = Constants.FV_BK_TOC;

bookComp.Name = tocName;

var extractTags = bookComp.ExtractTags;

extractTags.push ("doctitle");

bookComp.ExtractTags = extractTags;

bookComp.GenerateInclude = 1;

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