Git Product home page Git Product logo

acrobatpdfjs's Introduction

Acrobat PDF JavaScript

My learning of scripting the PDF Forms.

Dropdown List

Instead of adding items manually using the properties dialogue box, use the following script to add the list items at one go.

  var l = [" ", "a", "b", "c", "d"];
  var lst = this.getField("Dropdown1");
  lst.setItems(l);

Multiple dropdown menu having the same content can be created repeating the definition and setItems.

Check Box and Text Field

Choosing the export value to fill the text field. Use the mouseup action of the checkbox to run the script.

var check = (this.getField("Checkbox1").valueAsString=="Yes") ? "Select" : "Unselect";
this.getField("Text1").value = check;
}

Text Field with Default Value

Text field with default value displayed in gray, when the field is filled, the custom format script is executed.

if(event.value=="")
{
event.value="File Name";
event.target.textColor = color.gray;
}else
{
event.target.textColor = color.black;
}

Text Field Email Validation

Run the custom validation script.

var email = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/; 
if (event.value!="")
  {
    if (!email.test(event.value))
      {
        event.rc = false;
        app.alert("\"" + event.value + "\" is not a valid email address.");
      };
  };

acrobatpdfjs's People

Contributors

senthilmm avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.