Skip to content

Instantly share code, notes, and snippets.

@nagaki
Created July 16, 2014 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nagaki/a89faf235639049ced78 to your computer and use it in GitHub Desktop.
Save nagaki/a89faf235639049ced78 to your computer and use it in GitHub Desktop.
Adobe PDFのフォームに賞味期限を自動で入力する
var f = this.getField("BestBeforeDate");
var d = new Date();
d.setYear(d.getFullYear() + 2);
f.value = util.printd("yyyy.m.d", d);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment