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

determine if pdf has layers

New Here ,
Sep 18, 2017 Sep 18, 2017

I'm trying to determine if a pdf has layers (I'm very new to Javascript and this API). Below is the function that I've written for this:

var check_flat = function()

{

    for(var page = 0; page < this.numPages; page++){

        var ocgArray = this.getOCGs(page);

        if(ocgArray != null){

            console.println(page + " has layers");

        } else{

            console.println("no layers on this page");

        }

    }

};

When I try this on a pdf that I'm certain has layers, I only get 'no layers on this page'. Your help is very much appreciated!

TOPICS
Acrobat SDK and JavaScript
1.3K
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

correct answers 1 Correct answer

Community Expert , Sep 19, 2017 Sep 19, 2017

You are mistaken. They are form fields or comments (annotations).

Translate
Community Expert ,
Sep 18, 2017 Sep 18, 2017

The code looks fine. Are you sure the file actually has layers?

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
New Here ,
Sep 18, 2017 Sep 18, 2017

Thanks for the reply. I've tried with text buttons, comments, and e-signatures. Am I correct in thinking that these are in their own layers or am I mistaken?

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
Community Expert ,
Sep 19, 2017 Sep 19, 2017

You are mistaken. They are form fields or comments (annotations).

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
Community Expert ,
Sep 19, 2017 Sep 19, 2017
LATEST

Unlike in an InDesign document, in an Acrobat PDF form fields are not attached to a layer, they are floating above layers.


Acrobate du PDF, InDesigner et Photoshopographe
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