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

Limit max value

Explorer ,
Aug 25, 2020 Aug 25, 2020

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
462
Translate
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.

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

Compare result with 66, not event.value.

Translate
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
LATEST

Thanks

Translate
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