Having trouble manually setting tab order in Acrobat Pro 9x
I can change the order of all fields except for a group of radio buttons. Even when I drag the field name in the panel to the correct location in the list, it still maintains its original position in...
View ArticleFormulas aren't calculating immediately
I have created my first form and everything seems to be working okay except for one of my formulas. I have essentially created a sales order and need it to calculate the subtotal, apply a...
View ArticleHelp with JavaScript for List Box in Acrobat Form
I am attempting to write JavaScript for an Adobe Acrobat X Pro form. I would like to set an action script for a List Box titled "customer_name" so that when a specific customer name is selected, a...
View ArticleReset Button
My reset button will not clear out all fields on my form even though I used the default Clear all when setting up the button. When I test the form in Adobe Acrobat it works but when I email the form...
View ArticleRe: Help with JavaScript for List Box in Acrobat Form
Read this tutorial: http://acrobatusers.com/tutorials/change_another_field
View ArticleRe: Formulas aren't calculating immediately
You didn't really say what is going wrong exactly, but if it's a "delay" in calculation then it's most likely a problem with the field calculation order (not the same as the tab order), which can be...
View ArticleRe: Formulas aren't calculating immediately
thank you so much. that seemed to do the trick!
View ArticleRequired fields Adobe XI forms
Hello,I'm new in JVS and I need a little of help from you guys.I have a form created with Adobe XI with some required fields. The only thing I found on the forum to actually force the user to fill-up...
View ArticleRe: Have a form sent to an email address after completion without the use of...
Hi this is Rick again;Question. Could I use FormsCentral to collect the data than have one of the office personnel login and retrieve the data into a PDF format and/or download data and merge into PDF...
View ArticleConfirmation for submitted forms
When someone submits a form that was distributed to them via email, is there a way they can receive a confirmation message to let them know their form was received? Right now, individuals are left...
View ArticleRe: Confirmation for submitted forms
This is something you will need to set up on your email server. It has nothing to do with Acrobat/Reader... Maybe use a dedicated email address for this purpose and have the server automatically reply...
View ArticleRe: Have a form sent to an email address after completion without the use of...
You should ask these questions over at the FormsCentral forum...
View ArticleRe: Required fields Adobe XI forms
Add this line to the end of the code: else app.execMenuItem("SaveAs");
View ArticleRe: Reset Button
The Reset button doesn't clear fields, it reverts them to their default values (which is usually a blank value, but not always).Make sure that the default values of those 5 fields are what you expect...
View ArticleRe: How do I create automated page numbering that displays Page X of X?
Use this as the custom calculation code of the fields: event.value = (event.target.page+1) + "/" + this.numPages;
View ArticleRe: Have a form sent to an email address after completion without the use of...
If you setup SSL for your ASP.net web hosting, you can submit to a secure server-side script (ASP.net or PHP), and send submissions without client-side email software. For online...
View ArticleRe: Confirmation for submitted forms
If you submit to a server-side script, such as ASP.net or PHP, you can send the submission and respond with a FDF status message or redirect to a URL. For online examples:http://www.pdfemail.net/
View ArticleHow do I submit PDF Form data as an XML file rather than as an XFDF file?
Can anyone tell me what I need to do to make this statement work? var cSubLine = this.getField("SurnameInits").value;var cBody1 = "Main Instruction data file attached";var cDest =...
View ArticleRe: How do I submit PDF Form data as an XML file rather than as an XFDF file?
The code itself looks fine... So it's generating an email, but without theattachment? That's odd.
View Article