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

Create a button to print page range based on a checkboxes?

Contributor ,
Sep 14, 2022 Sep 14, 2022

Copy link to clipboard

Copied

Hi there,

I'm trying to write a code to help me printing a spesific ranges of pages, depending on checkboxes the screen-shot below explain every thing

or instead of this, If I clicked on the first checkbox for example, this should hide the other pages, and show only the specific range, and when I click on the print button, this will print only the appear pages and ignore the hidden.

Thank you ♥

Saher

 

What I tried.png

TOPICS
JavaScript , PDF forms , Print and prepress

Views

257

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 14, 2022 Sep 14, 2022

Copy link to clipboard

Copied

You have to place curly brackets around each section of code associated with an if-statement. If you don't, only the first line following it will be conditional, and the rest will always execute. If you post your code as text (which you should always use, instead of an image), I can show you exactly how to do it.

 

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
Contributor ,
Sep 14, 2022 Sep 14, 2022

Copy link to clipboard

Copied

LATEST

Thansk for reply, I used this code: 

var pp1 = this.getPrintParasm();
pp1.interactive = pp1.constants.interactionLevel.full;
if (this.getField ("CH1").value == "Yes")
pp1.printRange = [[1, 9], [15, 17]];
this.print(pp1);

and it's working very well

 

but only for the first optioin, I need to click more than option

This is what I get once I click on the button,

 

print.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

But I don't know how to complete the code

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