BreadCrumbs: Adobe LiveCycle Designer
Adobe LiveCycle Designer
From Luke Jackson
(Difference between revisions)
Revision as of 22:35, 20 February 2007 (edit) Ljackson (Talk | contribs) ← Previous diff |
Revision as of 22:38, 20 February 2007 (edit) Ljackson (Talk | contribs) (→Examples) Next diff → |
||
Line 11: | Line 11: | ||
Set a date object to the current date when a user opens the PDF file. | Set a date object to the current date when a user opens the PDF file. | ||
- | form1.newWorkstationForm.user.date = Num2Date((Date() + 5), "MMM DD, YYYY") | + | form1.newWorkstationForm.user.date = Num2Date(Date(), "MMM DD, YYYY") |
Set a date object to a specific date when a user opens the PDF file. | Set a date object to a specific date when a user opens the PDF file. |
Revision as of 22:38, 20 February 2007
Summary
Included with Adobe Acrobat 8 is designed to make the creation of dynamic forms simple.
FormCalc
Internal scripting language used to manipulate data within the PDF.
Examples
Set a date object to the current date when a user opens the PDF file.
form1.newWorkstationForm.user.date = Num2Date(Date(), "MMM DD, YYYY")
Set a date object to a specific date when a user opens the PDF file.
form1.newWorkstationForm.user.date = Num2Date((Date() + 5), "MMM DD, YYYY")