Skip to main content
jamesm19708035
Participant
June 25, 2019
Answered

Extract the paragraph tags used in the TOC

  • June 25, 2019
  • 1 reply
  • 316 views

Is there a way in Extendscript to extract the paragraph tags used in the TOC? I see them in the book's MIF as DeriveTag, but I don't see a property or method that would return them.

This topic has been closed for replies.
Correct answer frameexpert

I think this may be what you are looking for. Select the TOC in the book window and try this code:

#target framemaker

var book, bookComp;

book = app.ActiveBook;

bookComp = book.FirstSelectedComponentInBook;

alert (bookComp.ExtractTags);

1 reply

frameexpert
Community Expert
frameexpertCommunity ExpertCorrect answer
Community Expert
June 26, 2019

I think this may be what you are looking for. Select the TOC in the book window and try this code:

#target framemaker

var book, bookComp;

book = app.ActiveBook;

bookComp = book.FirstSelectedComponentInBook;

alert (bookComp.ExtractTags);

www.frameexpert.com
jamesm19708035
Participant
June 26, 2019

Thanks again, Rick! I searched "Adobe FrameMaker Scripting Guide" and the Internet for a solution, but found nothing, which prompted my post. Do you have some suggestions for good search words?