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

Spawn and keeping track of page location; Acrobat XI Pro

New Here ,
Jun 27, 2019 Jun 27, 2019

Copy link to clipboard

Copied

Asking anyone for a little guidance using Acrobat XI Pro Form with a Javascript issue.

My situation involves one pdf form which includes several fixed size templates.  I want an option to show or hide these templates from a checkbox field so I began to use the javascript code:

Checkbox2 (Spawns Template2):

if(event.target.value == "Off")

   this.deletePages(2);

else

{

    var a = this.getTemplate("Template2");

    a.spawn(2,false,false);

}

Checkbox3 (Spawns Template3):

if(event.target.value == "Off")

   this.deletePages(3);

else

{

    var a = this.getTemplate("Template3");

    a.spawn(3,false,false);

}

This works fine except the templates are actually 14 pages and 50 pages… so I modified started to test with only two pages of each template; below is an example mode for one checkbox:

if(event.target.value == "Off")

   this.deletePages(1,2);

else

{

    var pn2 = this.getTemplate("PN2");

    pn2.spawn(1,false,false);

    var pn = this.getTemplate("PN");

    pn.spawn(1,false,false);

}

Again this is fine and of course I modified the second checkbox script to show that template when selected (YES). 

Now because in this environment any checkbox may be selected before another the spawned pages and the template are in unknown order.  The check boxes are independent and selection execution is not restricted, so I need a way to track which checkbox is selected and when.  The potential problem if I uncheck (ie ==”off”) a spawned template out of order then the wrong pages are deleted.

I notice Karl Kremmer responded to a similar post: [https://answers.acrobatusers.com/I-template-pages-spawn-order-place-Any-great--q254954.aspx]

So TWO  questions…

ONE: Each of my checkboxes refers to a separate pdf “file” which I load and work each page as a template.  When I select the checkbox I always want all pages to appear or hide.  My method is to address each page individually.  The script I use works but I suspect is inefficient.  Is there a better way to load all pages with javascript?

KHK Spawn Advice.png

TWO: I appreciate the idea of a dummy hidden field in the template to keep track of the selection – an excellent way to find the template – I did not know it could be “seen” before spawning. What is the “hidden listbox” method Karl refers to and will that manage a random checkbox selection if I use the nPage parameter.

Finally - Am I on the right path to use Acrobat as a solution?  The need has come about due to location usage without internet.  The form may be filled when in an environment without web access. I started using a VPN solution (NextCloud) with a local client which uploads (syncs) the pdf file when internet becomes available.

TOPICS
Acrobat SDK and JavaScript , Windows

Views

413

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 ,
Jun 27, 2019 Jun 27, 2019

Copy link to clipboard

Copied

Create on the template pages hidden form fields with the same name as the template. So you can find the spawned pages belonging to a template.

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 ,
Jun 28, 2019 Jun 28, 2019

Copy link to clipboard

Copied

OK... sounds good.  How do I interrogate the template to confirm and how do I store the info to compare to the other templates page locations to ensure I don't delete once spawned?

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 ,
Jun 29, 2019 Jun 29, 2019

Copy link to clipboard

Copied

With this.getField("PN").page you will get the pages with the field "PN". You will get -1 for the hidden template page.

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
LEGEND ,
Jun 29, 2019 Jun 29, 2019

Copy link to clipboard

Copied

LATEST

Page number property of a field.

Field.page

Example 1 (version 5.0 & above):

Determine whether a particular field appears on one page, or more than one page.

   var f = this.getField("myField");

   if (typeof f.page == "number")

      console.println("This field only occurs once on page " + f.page);

   else

      console.println("This field occurs " + f.page.length + " times);

Example 2: (version 6.o & above):

The page property can be used to get the number of widgets associated with a field name. This example gets the number of radio buttons in a radio button field.

   var f = this.getField("myRadio");

   if ( typeof f.page == "object" )

      console.println("There are " + f.page.length

         + " radios in this field.");

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