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

Need help (javascript)

Explorer ,
Aug 24, 2020 Aug 24, 2020

Copy link to clipboard

Copied

Hi, I have this code:

If(this.getField("field1").value <5){

event.value = 1000;}

Field1 need to  increase  by 5 (value<10,value<15,value<20...etc)up to 200 and event. value will decrease by 10 every time. Is there a way to do it without making really long code? 

TOPICS
Acrobat SDK and JavaScript

Views

359

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 , Aug 24, 2020 Aug 24, 2020

You can do it using this code:

 

event.value = 1000 + (Math.floor(Number(this.getField("field1").valueAsString)/5)*10);

Votes

Translate

Translate
Community Expert ,
Aug 24, 2020 Aug 24, 2020

Copy link to clipboard

Copied

You can do it using this code:

 

event.value = 1000 + (Math.floor(Number(this.getField("field1").valueAsString)/5)*10);

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 ,
Aug 24, 2020 Aug 24, 2020

Copy link to clipboard

Copied

I was checking out the script and I wasn't able to figure out how to increase all the way up to 200.

 

The user wanted Field1 need to  increase  by 5 (value<10,value<15,value<20...etc)up to 200 "

 

 I'm guessing if it would be convenient to use this script as a custom validation script with a condition to stop the increments when a total value of 200 has been reached?

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 ,
Aug 24, 2020 Aug 24, 2020

Copy link to clipboard

Copied

There is a "typo" in your code, you need to replace + with -

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
Explorer ,
Aug 25, 2020 Aug 25, 2020

Copy link to clipboard

Copied

LATEST

Thank you try67 for your code and Nesa for tip. 

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