BreadCrumbs: Adobe LiveCycle Designer
Adobe LiveCycle Designer
From Luke Jackson
(Difference between revisions)
Revision as of 22:38, 20 February 2007 (edit) Ljackson (Talk | contribs) (→Examples) ← Previous diff |
Current revision (23:05, 20 February 2007) (edit) Ljackson (Talk | contribs) (→Examples) |
||
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(), "MMM DD, YYYY") | + | xfa.form.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. | ||
- | form1.newWorkstationForm.user.date = Num2Date((Date() + 5), "MMM DD, YYYY") | + | xfa.form.form1.newWorkstationForm.user.date = Num2Date((Date() + 5), "MMM DD, YYYY") |
+ | |||
+ | Set the fill color of a text field to black. | ||
+ | |||
+ | xfa.form.form1.newWorkstationForm.user.employee.fillColor = "0,0,0" | ||
[[Category:Windows XP]] | [[Category:Windows XP]] | ||
[[Category:Mac OS X]] | [[Category:Mac OS X]] |
Current revision
[edit]
Summary
Included with Adobe Acrobat 8 is designed to make the creation of dynamic forms simple.
[edit]
FormCalc
Internal scripting language used to manipulate data within the PDF.
[edit]
Examples
Set a date object to the current date when a user opens the PDF file.
xfa.form.form1.newWorkstationForm.user.date = Num2Date(Date(), "MMM DD, YYYY")
Set a date object to a specific date when a user opens the PDF file.
xfa.form.form1.newWorkstationForm.user.date = Num2Date((Date() + 5), "MMM DD, YYYY")
Set the fill color of a text field to black.
xfa.form.form1.newWorkstationForm.user.employee.fillColor = "0,0,0"