summaryrefslogtreecommitdiff
path: root/texmf-dist/doc/latex/docassembly/examples/attach-files.tex
diff options
context:
space:
mode:
Diffstat (limited to 'texmf-dist/doc/latex/docassembly/examples/attach-files.tex')
-rw-r--r--texmf-dist/doc/latex/docassembly/examples/attach-files.tex31
1 files changed, 31 insertions, 0 deletions
diff --git a/texmf-dist/doc/latex/docassembly/examples/attach-files.tex b/texmf-dist/doc/latex/docassembly/examples/attach-files.tex
new file mode 100644
index 00000000..6bec57ab
--- /dev/null
+++ b/texmf-dist/doc/latex/docassembly/examples/attach-files.tex
@@ -0,0 +1,31 @@
+\documentclass{article}
+\usepackage{docassembly}
+\usepackage{lipsum}
+
+\hypersetup{pdfpagemode=UseAttachments}
+
+% Look in the Adobe Acrobat JavaScript manual under the doc.importDataObject to see all the possible parameters.
+\begin{docassembly}
+% Or use \attachFile instead of \importDataObject
+var retn = \importDataObject({
+ cName: "job",
+ cDIPath: "\jobname.tex"
+});
+% The next line creates a meaningful description of the attachment
+if (retn) this.getDataObject("job").description="Source file for this PDF";
+% You can have more than one file attachments
+var retn = \attachFile({
+ cName: "AdobeDon",
+ cDIPath: "graphics/AdobeDon.pdf"
+});
+% The next line creates a meaningful description of the attachment
+if (retn) this.getDataObject("AdobeDon").description="The one and only AdobeDon";
+% ...
+\executeSave();
+\end{docassembly}
+
+\begin{document}
+
+\lipsum[1-30]
+
+\end{document} \ No newline at end of file