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

Javascript Text Color Change Not Working On IOS App

Explorer ,
Sep 21, 2016 Sep 21, 2016

Hello all,

Hoping to find some help regarding an issue I'm having. I have a  javascript running a calculation. If that calculation is off by a certain amount compared to another field it turns the text red. This is working flawlessly on pc and on microsoft tablet. However this is intended to be used on a IPad which it is not performing the task properly. The text changes red but then does not change back to black once the value is corrected. I have a ton of other scripts that are all working fine on IPad, it is just this color issue that is preventing me from finishing.

Here is the script I'm running to change the color:

if (Math.abs(this.getField("CALCULATED_WIDTH").value-this.getField("WIDTH").value)>=.03) {

    this.getField("CALCULATED_WIDTH").textColor = color.red;

}

else {

    this.getField("CALCULATED_WIDTH").textColor = color.black;

}

Hopefully someone can help me out with a solution.

Thanks

TOPICS
Acrobat SDK and JavaScript
475
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

LEGEND , Sep 21, 2016 Sep 21, 2016

That code should work if you use Readdle's PDF Expert, but other PDF viewers such as Adobe Reader have far less support for JavaScript and some have none at all.

Translate
LEGEND ,
Sep 21, 2016 Sep 21, 2016

That code should work if you use Readdle's PDF Expert, but other PDF viewers such as Adobe Reader have far less support for JavaScript and some have none at all.

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 ,
Sep 22, 2016 Sep 22, 2016
LATEST

Thanks again George, downloaded app and it works fine. To bad dit was $10

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