One option you have is to have the user submit by attaching the pdf form to an email on submit. This can be done with java:
Java code created in the JavaScript Edit dialog box in Acrobat:
if (typeof(app.viewerType)!="undefined")
if(app.viewerType ++ "Reader")
{
var msg = "You must use Acrobat or Acrobat Approval to send the application back to us. You can downlaod Acrobat Approval for $39.00 US from Adobe's Web site at: http:
www.adobe.com";
}
else
{
this.mailDoc(true. "management@company.com",
"supervisor@company.com", "ceo@company.com",
}
If the user's viewer is either Acrobat or Approval the statement after
else is executed.
this.mailDoc instructs Acrobat to attach the active PDF doc to an email message. If you don't want the message copied to anyone then the code will be:
this.mailDoc(true, "management@company.com", "", "",
"Application Form");
To send data not the PDF file change the JavaScript
:
enter this code after the routine to determine the application viewer type:
this.mailForm(true, "management@company.com", "", "",
"Application Form"):
This is all done with FDF or Forms Data Format. Adobe has a server package that you can download after you register that you load on the server to handle FDF formats so the PDF's are served in the webpage and can be filled out online or by email.