
NKOWA555
Enthusiast
NKOWA555
Enthusiast
Activity
‎Apr 19, 2018
07:38 AM
use HTML
... View more
‎Mar 28, 2018
01:10 AM
1 Upvote
??? I need to know if there is any way, through javascript or any other method, that by pressing the save button, these pdfs, filled through the mobile devices, are stored in a network folder on a server. Is this possible ? Note: certain limitations may apply to Adobe Reader for mobile users, and Non-Adobe plugins may not fully support submissions or javascripts. My Answer: HTML forms may be more compatible for mobile devices. Let me know if you need help converting the PDF to HTML.
... View more
‎Feb 17, 2018
03:14 PM
1 Upvote
Check out the following online tool that may help create the script: nk-inc.com/software/fdftoolkit.net/email-pdf-mailto-generator.aspx 1) To remove usage rights, you can open the PDF in Acrobat, and "Save-As" a new form 2) Then edit the submit button to include the new javascript action on the mouse up event 3) Just copy the script generated from the link above and paste it into the button's javascript action 4) Save the form (enabling usage rights may not be needed with certain email functions)
... View more
‎Jan 15, 2018
03:09 PM
3 Upvotes
Send attachment as XML format, and open XML file with MS EXCEL //Place this script in the buttons mouseUp JavaScript event //http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345 //SUBMIT XML FORMAT WITH ADOBE READER var url = "mailto:you@domain.com?subject=XML Format&body=See attachment: XML Format\nOpen XML in MS Excel&cc=&bcc="; var submitAs = "XML";//PDF,FDF,XFDF,XDP,XML this.submitForm({cURL:url,cSubmitAs:submitAs});
... View more
‎Oct 23, 2017
07:47 PM
Q:Is there Something we forgot to do in order for the form to work on web browsers? Are there solutions to these problems? Answer: use HTML to create forms
... View more
‎Sep 26, 2017
02:02 PM
You may be limited by your computer resources; but there is no limit by Adobe on the size of the PDF. Try it out and let me know if it works! Thanks
... View more
‎Aug 19, 2017
01:43 AM
Have fun with the new Sudoku PDF form! Please mark my comment as the solution or helpful. Have a great weekend!
... View more
‎Aug 16, 2017
03:08 AM
i sent you a private message with my personal email address. Send the PDF to my email. Thanks.
... View more
‎Aug 15, 2017
04:02 PM
FYI: Adobe Acrobat vs. Adobe Reader Acrobat refers to the PDF editor $$$, and Reader is the a free viewer If you edit the form fields yourself you may need Adobe Acrobat Standard or Pro or some other 3rd party editor. If you post a hyperlink to the PDF and I can try to make the change for you for free. Thank you!
... View more
‎Jul 14, 2017
05:57 AM
1 Upvote
You could inject all the field values into a email message body using a script: Visit the following website to help you create the script for the button: fdftoolkit.net/email-pdf-mailto-generator.aspx Note: When using the above tool, just use the field name enclosed in braces { } in the message body and it will generate the appropriate code. For example: {Fieldname_01} Example Script: //Place this script in the buttons mouseUp JavaScript event //http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345 //SUBMIT PDF FORMAT WITH ADOBE READER var url = "mailto:you@domain.com?subject=Message Subject Text&body=See attached file...\nField 1: " + encodeURIComponent(this.getField("Fieldname_001").value) + "\nField 2: " + encodeURIComponent(this.getField("Fieldname_002").value) + "\nField 3: " + encodeURIComponent(this.getField("Fieldname_003").value) + "\nField 4: " + encodeURIComponent(this.getField("Fieldname_004").value) + "&cc=&bcc="; var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML this.submitForm({cURL:url,cSubmitAs:submitAs});
... View more
‎Jul 12, 2017
12:52 PM
1 Upvote
Visit the following website for a tool that may help create the javascript for the button: fdftoolkit.net/email-pdf-mailto-generator.aspx
... View more
‎Jul 06, 2017
04:07 AM
Yes, add the following javascript at the end: this.resetForm(); //Updated version var ok = true; var i = 0; for (i = 0; i < this.numFields; i++){ try{ var f = this.getField(this.getNthFieldName(i)); if(f.required==true){ if(f.value==f.defaultValue && f.type != 'button' && f.type != 'signature'){ ok=false;app.alert('Missing Value: '+f.name); } } }catch(ex){}; }; if(ok==true){ for (var i = 0; i < this.numFields; i++){ var f = this.getField(this.getNthFieldName(i)); f.readonly = true; }; var to = "you@domain.com"; var strUrl = "mailto:"+to+"?subject=TEST&body=TEST&cc=&bcc="; var submitAs = "PDF"; this.submitForm({cURL: strUrl, cSubmitAs:"PDF"}); }; // Revert readonly back to false for (var i = 0; i < this.numFields; i++){ var f = this.getField(this.getNthFieldName(i)); f.readonly = false; } this.resetForm();
... View more
‎Jun 30, 2017
01:05 PM
It's possible with a server-side script such as ASP.net or PHP; but, it requires each end user to open the PDF in Adobe Reader when they submit the form. Check out the following examples: pdfemail.net/examples/
... View more
‎Jun 30, 2017
01:02 PM
1 Upvote
Yes, you can add a button with a mouse up javascript event hands off the PDF to the default email program. Note: Adobe Reader is required to submit the PDF form Check out the following web tool to help you generate the button action script: fdftoolkit.net/email-pdf-mailto-generator.aspx Here's a javascript example: //Place this script in the buttons mouseUp JavaScript event //http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345 //SUBMIT PDF FORMAT WITH ADOBE READER var url = "mailto:you@domain.com?subject=SUBJECT&body=BODY&cc=&bcc="; var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML this.submitForm({cURL:url,cSubmitAs:submitAs});
... View more
‎Jun 28, 2017
05:22 AM
2 Upvotes
If you are running ASP.net on a local or remote web server, you can setup an ASP.net script to merge a blank Acrobat PDF with a MS Access record and output the PDF to the browser's buffer. This method requires some programming knowledge. If you can't do it yourself, you can hire a professional developer such as myself.
... View more
‎Jun 27, 2017
02:42 PM
1 Upvote
Note: I would avoid using LiveCycle Designer (XFA) forms unless you need the functionality of a LiveCycle PDF form. Acrobat PDFs are more compatible across multiple platforms and end users. XFA forms come in two flavors; static (which is more like Acrobat PDFs), and dynamic XFA (which can grow or shrink depending on the data). Some 3rd party PDF readers may not display dynamic XFA properly. XFA forms are 3D XML structures (forms within forms), and it may be more difficult to directly import 2D data sources such as a tables and rows found in MS Access databases. The following opensource software may help you merge a data source (MSSQL, MS Access or XML) with Acrobat PDF or static XFA form on a web server or windows application: www.fdftoolkit.net/examples/
... View more
‎Jun 27, 2017
06:44 AM
Is this a feature or a bug? When I use a relative path or a file path for the PDF HREF URL in the XDP file it populates the PDF correctly; but, when I use the full URL, it doesn't populate the PDF with the XDP data. The relative URL populates the PDF: fdftoolkit.net/examples/xfa-static-relative.xdp <?xml version="1.0" encoding="UTF-8"?> <?xfa generator="XFA2_4" APIVersion="2.6.7120.0"?> <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/"> <xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"> <xfa:data> <topmostSubform> <FULLNAME>STATIC XFA</FULLNAME> <RADIOBUTTON>True</RADIOBUTTON> <SIGNATURE></SIGNATURE> <SUBMIT></SUBMIT> <RESET></RESET> <CHECKBOX>True</CHECKBOX> <COMBOBOX>Item B</COMBOBOX> <LISTBOX> <value>Item B</value> <value>Item D</value> </LISTBOX> <EMAIL>me@domain.com</EMAIL> </topmostSubform> </xfa:data> </xfa:datasets> <pdf href="xfa-static2.pdf" xmlns="http://ns.adobe.com/xdp/pdf/"/> </xdp:xdp> The absolute URL does NOT populate the PDF: fdftoolkit.net/examples/xfa-static2.xdp <?xml version="1.0" encoding="UTF-8"?> <?xfa generator="XFA2_4" APIVersion="2.6.7120.0"?> <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/"> <xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"> <xfa:data> <topmostSubform> <FULLNAME>STATIC XFA</FULLNAME> <RADIOBUTTON>True</RADIOBUTTON> <SIGNATURE></SIGNATURE> <SUBMIT></SUBMIT> <RESET></RESET> <CHECKBOX>True</CHECKBOX> <COMBOBOX>Item B</COMBOBOX> <LISTBOX> <value>Item B</value> <value>Item D</value> </LISTBOX> <EMAIL>me@domain.com</EMAIL> </topmostSubform> </xfa:data> </xfa:datasets> <pdf href="http://www.fdftoolkit.net/examples/xfa-static2.pdf" xmlns="http://ns.adobe.com/xdp/pdf/"/> </xdp:xdp>
... View more
‎Jun 26, 2017
02:48 AM
How to open XDP file in Adobe Reader DC? FYI: Opening XDP files in Adobe Reader don't populate static XFA PDF forms when using URLs instead using the file system path. PDF link: fdftoolkit.net/examples/xfa-static2.pdf The static XFA PDF is not populated with the XDP data. And it just downloads a blank PDF form when the XDP is opened in Adobe Reader. <?xml version="1.0" encoding="UTF-8"?> <?xfa generator="XFA2_4" APIVersion="2.6.7120.0"?> <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/"> <xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"> <xfa:data> <topmostSubform> <FULLNAME>STATIC XFA</FULLNAME> <RADIOBUTTON>True</RADIOBUTTON> <SIGNATURE></SIGNATURE> <SUBMIT></SUBMIT> <RESET></RESET> <CHECKBOX>True</CHECKBOX> <COMBOBOX>Item B</COMBOBOX> <LISTBOX> <value>Item B</value> <value>Item D</value> </LISTBOX> <EMAIL>me@domain.com</EMAIL> </topmostSubform> </xfa:data> </xfa:datasets> <pdf href="http://www.fdftoolkit.net/examples/xfa-static2.pdf" xmlns="http://ns.adobe.com/xdp/pdf/"/> </xdp:xdp> It works if I set the PDF path in the XDP file to a File System Path instead of a URL: Ex: "C:\webroot\xfa-static2.pdf" <?xml version="1.0" encoding="UTF-8"?> <?xfa generator="XFA2_4" APIVersion="2.6.7120.0"?> <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/"> <xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"> <xfa:data> <topmostSubform> <FULLNAME>STATIC XFA</FULLNAME> <RADIOBUTTON>True</RADIOBUTTON> <SIGNATURE></SIGNATURE> <SUBMIT></SUBMIT> <RESET></RESET> <CHECKBOX>True</CHECKBOX> <COMBOBOX>Item B</COMBOBOX> <LISTBOX> <value>Item B</value> <value>Item D</value> </LISTBOX> <EMAIL>me@domain.com</EMAIL> </topmostSubform> </xfa:data> </xfa:datasets> <pdf href="C:\webroot\xfa-static2.pdf" xmlns="http://ns.adobe.com/xdp/pdf/"/> </xdp:xdp> Is this a bug or a feature? Message was edited by: Nick K
... View more
‎Jun 12, 2017
05:57 PM
Yes! Visit the following URL to generate a customized script: fdftoolkit.net/email-pdf-mailto-generator.aspx //Place this script in the buttons mouseUp JavaScript event //http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345 //SUBMIT PDF FORMAT WITH ADOBE READER var url = "mailto:" + encodeURIComponent(this.getField("text box # 1").value) + "?subject=ATTN: Processing team&body=See attached file.&cc=&bcc="; var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML this.submitForm({cURL:url,cSubmitAs:submitAs});
... View more
‎Jun 06, 2017
05:59 PM
1 Upvote
Yes, you could have the PDF's button submit to a server-side script (ASP.net/PHP), and save the submission to a folder. You can pass query strings to the script for the folder and file name; or, you can parse the submission data with 3rd party tools.
... View more
‎Jun 04, 2017
06:13 AM
1 Upvote
What type of web server are you running? ASP.net/PHP? Normally in .NET, the HTML submission field/value pairs are located in the Request.Form("FieldName") or just Request("FieldName"). Are you using a 3rd party tool to parse the input HTML data or FDF/XFDF data?
... View more
‎Jun 02, 2017
06:08 AM
3 Upvotes
Forcing a file to download from a URL is done with a server-side script; such as PHP or ASP.net: ASP.net: Example /// <summary> /// Forces download of file /// </summary> /// <param name="FileBytes">Byte array of file</param> /// <param name="FileName">File name</param> /// <returns>true/false</returns> /// <remarks></remarks> public bool ForceDownload(byte[] FileBytes, string DownloadFileName) { try { if (string.IsNullOrEmpty(DownloadFileName)) { return false; } if (FileBytes.Length > 0) { Response.Clear(); //AspxPage.Response.ContentType = "application/octet-stream"; Response.ContentType = "application/pdf"; Response.AppendHeader("Content-Disposition", "attachment; filename=\"" + DownloadFileName + "\""); Response.BinaryWrite(FileBytes); HttpContext.Current.ApplicationInstance.CompleteRequest(); Response.End(); return true; } } catch (Exception ex) { return true; } return false; }
... View more
‎May 30, 2017
04:13 AM
Check out the following example: fdftoolkit.net/examples/fw9demo.htm
... View more
‎May 27, 2017
05:22 AM
For optimum compatibility across all devices, you should convert the PDFs to HTML. The HTML form can submit to a server side script. The script can merge the HTML field values with blank PDF using 3rd party libraries; such as iText/iTextSharp. Email, save, or output the PDF forms populated from the HTML form. Visit the following link for an online example: fdftoolkit.net/examples/example_html.htm +Private message me if you are interested in a custom solution that is compatible across all devices.
... View more
‎May 26, 2017
07:43 AM
You can try generating an XDP file from scratch. XDP is Three-Dimensional XML file, and all the fields have to match the field names (case sensitive) and structure of the XFA source. You can try exporting the XDP using a submit button, and then reuse that empty XDP structure template file to inject in the field values from the database using whatever server-side language you choose. Output the filled XDP to the server buffer and Adobe Reader should automatically open it and populate the blank XFA PDF if everything matches up. This should work with Dynamic and Static XFA forms. <?xml version="1.0" encoding="UTF-8"?> <?xfa generator="XFA2_4" APIVersion="2.6.7120.0"?> <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/"> <xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"> <xfa:data> <topmostSubform> <Pg1Header></Pg1Header> <f1_1></f1_1> <f1_2></f1_2> <FederalClassification> <f1_3></f1_3> <f1_4></f1_4> </FederalClassification> <Exemptions> <f1_5></f1_5> <f1_6></f1_6> </Exemptions> <Address> <f1_7></f1_7> <f1_8></f1_8> </Address> <f1_9></f1_9> <f1_10></f1_10> <PartI></PartI> <SSN> <f1_11></f1_11> <f1_12></f1_12> <f1_13></f1_13> </SSN> <EmployerID> <f1_14></f1_14> <f1_15></f1_15> </EmployerID> <PartII></PartII> <Col1></Col1> <Col2></Col2> <Page2> <Pg2Header></Pg2Header> <Col1></Col1> <Col2></Col2> </Page2> <Pg3Header></Pg3Header> <Col1> <Table> <HeaderRow></HeaderRow> <BodyRow1></BodyRow1> <BodyRow2></BodyRow2> <BodyRow3></BodyRow3> <BodyRow4></BodyRow4> <BodyRow5></BodyRow5> </Table> </Col1> <Col2></Col2> <Pg4Header></Pg4Header> <Col1> <Table1> <HeaderRow></HeaderRow> <BodyRow1></BodyRow1> <BodyRow2></BodyRow2> <BodyRow3></BodyRow3> <BodyRow4> <BodyRow4Info></BodyRow4Info> </BodyRow4> <BodyRow5></BodyRow5> <BodyRow6></BodyRow6> </Table1> <Table2> <HeaderRow></HeaderRow> <BodyRow1></BodyRow1> <BodyRow2></BodyRow2> <BodyRow3></BodyRow3> <BodyRow4></BodyRow4> <BodyRow5></BodyRow5> <BodyRow6></BodyRow6> <BodyRow7></BodyRow7> <BodyRow8></BodyRow8> </Table2> </Col1> <Col2></Col2> <c1_1></c1_1> <c1_7></c1_7> </topmostSubform> </xfa:data> </xfa:datasets> <pdf href="https://www.irs.gov/pub/irs-pdf/fw9.pdf" xmlns="http://ns.adobe.com/xdp/pdf/"/> </xdp:xdp>
... View more
‎May 26, 2017
02:51 AM
Sorry, try this... var ok = true; var i = 0; var flds = ""; for (i = 0; i < this.numFields; i++){ var f = this.getField(this.getNthFieldName(i)); try{ if(f.required==true){ if(f.value==""){ ok=false; if (flds == ""){ flds = flds + f.name; }else{ flds = flds + "," + f.name; } }; }; }catch(e){ //app.alert(f.name + " " + e.description); } }; if(ok==true){ var cToAddr = "user@email.com"; var url = "mailto:" + cToAddr + "?subject=Report: " + encodeURIComponent(this.getField("Owner").value) + "&body=Report Attached. Serial Number: " + encodeURIComponent(this.getField("SerialComplete").value) + "&cc=&bcc="; var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML this.submitForm({cURL:url,cSubmitAs:submitAs}); }else{ app.alert('Missing Values: ' + flds); };
... View more
‎May 26, 2017
02:15 AM
Try this: var ok = true; var i = 0; for (i = 0; i < this.numFields; i++){ try{ var f = this.getField(this.getNthFieldName(i)); if(f.required==true){ if(f.value==""){ ok=false;app.alert('Missing Value: '+f.name); } } }catch(ex){ app.alert("error(1):" + ex.description); }; }; if(ok==true){ try{ // This is the form return email. It's hardcoded // so that the form is always returned to the same address. // Change address on your form to match the code below var cToAddr = "user@email.com​"; //Place this script in the buttons mouseUp JavaScript event //http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf#page=345 //SUBMIT PDF FORMAT WITH ADOBE READER var url = "mailto:" + cToAddr + "?subject=Report: " + encodeURIComponent(this.getField("Owner").value) + "&body=Report Attached. Serial Number: " + encodeURIComponent(this.getField("SerialComplete").value) + "&cc=&bcc="; var submitAs = "PDF";//PDF,FDF,XFDF,XDP,XML this.submitForm({cURL:url,cSubmitAs:submitAs}); }catch(ex){ app.alert("error(2):" + ex.description); }; };
... View more
‎May 26, 2017
02:02 AM
Sure, one way to prefill a PDF is to create a FDF file using FDFToolkit.net/iTextSharp. The FDF file can open in Adobe Reader and populate the fields. Another way is to "merge" the data with a blank PDF using FDFToolkit.net/iTextSharp. FDFToolkit.net lets developers import data from EXCEL, MSAccess, MSSQL and any other ADO.net data source; or you can manually import each field value. FDFToolkit.net/iTextSharp (open-source) requires programming knowledge, and both libraries work with Visual Studio .NET (free). Visit the following website for more information and examples: fdftoolkit.net/examples/
... View more
‎May 25, 2017
01:45 PM
LiveCycle XFA forms may also have a "built-in" bar code object with QR code capabilities. I think the bar codes in LC also auto regenerate based on field values. QR Code functionality in an XFA form may also only work in Adobe Reader.
... View more
‎May 19, 2017
06:32 AM
Try this online tool to help you create the mailto script: fdftoolkit.net/email-pdf-mailto-generator.aspx
... View more