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

Table of Content - PDF Portfolio

New Here ,
Feb 07, 2025 Feb 07, 2025

Is there a way to create a Table of Content from the file name and description in a pdf portfolio.  This seems like a very useful file management tool, but it is missing some very basic functions that seem like easy fixes.

TOPICS
General troubleshooting
78
Translate
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
Adobe Employee ,
Mar 11, 2025 Mar 11, 2025
LATEST

Hi @dallas_1382,

 

Hope you are doing well. Thanks for writing in!

 

In case you are still looking for a solution, you can try the below script:

 

 

if (!this.metadata || this.dataObjects.length === 0) {
    app.alert("This script only works in a PDF Portfolio.");
} else {
    var toc = [];
    var doc = this;
    var count = doc.dataObjects.length;

    for (var i = 0; i < count; i++) {
        toc.push((i + 1) + ". " + doc.dataObjects[i].name);
    }

    var newPageIndex = doc.insertPages({ nPage: 0, cPath: "/AppData/Acrobat/en_US/Blank.pdf" });

    doc.addAnnot({
        page: newPageIndex,
        type: "Text",
        rect: [50, 700, 550, 750],
        contents: "Table of Contents\n\n" + toc.join("\n"),
        author: "Acrobat Script"
    });

    app.alert("Table of Contents created on the first page!");
}

 

Note: You cannot extract file descriptions, because Acrobat JavaScript cannot read metadata of Portfolio files directly.

 

Hope this helps.


Regards,
Souvik.

Translate
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