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

Using Prepare Form to Create Fillable PDF Except for Specified Pages

New Here ,
Nov 18, 2024 Nov 18, 2024

Copy link to clipboard

Copied

I am attempting to create a fillable PDF where every 7th page (1st, 8th, etc) does not have any fillable fields using the Prepare Forms form field auto detect. Is this possible? These pages are, more or less, tables of contents so they do not need to filled out.

TOPICS
How to , PDF forms

Views

69

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 ,
Nov 18, 2024 Nov 18, 2024

Copy link to clipboard

Copied

Oh sure, you can leave fields/pages unprepared. Just go to the pages you want to work on.



Stephen

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 ,
Nov 18, 2024 Nov 18, 2024

Copy link to clipboard

Copied

Thanks for the quick reply. Can you explain the steps for doing this? Or provide a link to them?

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 ,
Nov 18, 2024 Nov 18, 2024

Copy link to clipboard

Copied

Chris,

I apologize, I misread your question. I do not know to use auto detect in that fashion.

Stephen

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 ,
Nov 18, 2024 Nov 18, 2024

Copy link to clipboard

Copied

I don't believe you can select the pages for auto detect, but it's easy to delete any fields created on the pages you didn't want them on by selecting all fields on those pages in the field panel and pressing the delete key.  If this will take too much time because you have too many pages you can run a script in the console that will delete them for you.

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 ,
Nov 18, 2024 Nov 18, 2024

Copy link to clipboard

Copied

LATEST

You can use this code to do it, but notice it will only work on fields that have a single "widget", ie. not for fields with more than one instance with the same name:

 

for (var i=this.numFields-1; i>=0; i--) {
	var fname = this.getNthFieldName(i);
	var f = this.getField(fname);
	if (f==null) continue;
	if (typeof f.page=="number" && f.page%7==0) 
		this.removeField(f.name);
}

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