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

determine if pdf has layers

New Here ,
Sep 18, 2017 Sep 18, 2017

Copy link to clipboard

Copied

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

Views

889

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

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

Votes

Translate

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

Copy link to clipboard

Copied

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

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

Copy link to clipboard

Copied

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?

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

Copy link to clipboard

Copied

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

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

Copy link to clipboard

Copied

LATEST

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

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