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

Limit max value

Explorer ,
Aug 25, 2020 Aug 25, 2020

Copy link to clipboard

Copied

Hi, I'm having little trouble with my code.

What i want to achive is, if value is greater then 66, value need to be 66.

Field is formated as percentage.

Here is what I got so far:

var HP = this.getField("HP").value;
var P = this.getField("Protection").value;
var W = this.getField("Ward").value;
var result = 1-(HP+W)/(HP+W+P);
if(P == 0){
event.value = 0;
}else if(event.value > 66){
event.value = 66;
} else event.value = result;

Everything is working as intended except it doesn't show 66 if value is greater.

TOPICS
Acrobat SDK and JavaScript

Views

328

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

Compare result with 66, not event.value.

Votes

Translate

Translate
Community Expert ,
Aug 25, 2020 Aug 25, 2020

Copy link to clipboard

Copied

Compare result with 66, not event.value.

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

Thanks

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