Re: Adding bullet points to a fillable form field
He didn't say whether the bullets had to be inserted as the form is filled out, or whether its was supposed to have them in the form beforehand. If before had my method is Okay. If as you say then...
View ArticleAll form fields fill in with same data
I created a fillable form but when I enter data in a field, that data ends up in all the fields???
View ArticleJS Drop Down that Effects Another Drop Down
Been trying to figure out a way to have drop effect another one that can change the results. So my labor drop down with have a choice a,b,c. Each one of those needs to set of data in the second drop...
View ArticleRe: JS Drop Down that Effects Another Drop Down
Thom Parker on his website has a detailed 2 part tutorial on this topic: http://acrobatusers.com/tutorials/js_list_combo_livecycle
View ArticlePage Margins and row/field spacing
How do you change the margins on a page - I can change the width - but not the height. The rows and fields are also spaced too far apart - it wastes A LOT of space on a page. How do I fix this?! I...
View ArticleCustom validation script - sum of two fields
Hello, I am creating a catering order form and need help creating a custom validation script. The custom validation script needs to alerts the user when the fields in one catagory equals 1 (because...
View ArticleRe: JS Drop Down that Effects Another Drop Down
Literally just found it 5 min ago and Tearing into it now... Thnaks. This will def help.
View ArticleRe: Page Margins and row/field spacing
Is this a form that you're creating in FormsCentral, or something else?
View ArticleRe: Custom validation script - sum of two fields
this is what I have so far for the custom validation script for each text field: // Custom Validate script(function () { // Get the value that the user entered var sVal = event.value; // If...
View ArticleRe: Forms Calculation Problem
Thanks for getting right on this George, I do appreciate it... Sorry for not getting back right away but we had a down internet connection (argh!), and I had to remove the personal info from the...
View ArticleRe: Custom validation script - sum of two fields
Try this: //Custom Calculation script //Get the values of the fields, as numbers var v1 = this.getField("A").value; var v2 = this.getField("B").value; //Add them together...
View ArticleRe: Forms Calculation Problem
The problem is in the validation scripts you're using. Some of the code they contain are intended to be placed in a custom Format script, so it doesn't make sense in a validate script. If you replace...
View ArticleRe: Page Margins and row/field spacing
It is in Forms Central - I signed up for the Acrobat XI Pro - hoping to do it in that - but everytime I choose "create template from scratch" it kicks me into Adobe FormsCentral.com
View ArticleDuplicate pages without duplicating forms
I'm creating a form in Acrobat Pro that will ultimately be used in Acrobat reader. What I need the document to do is have the end user be able to duplicate a particular page (with it's form fields) and...
View ArticleRe: Duplicate pages without duplicating forms
I had a look at the Acrobat SDK help files and got the information below. What you describe can be achieved by using Templates, but I am not sure if it is possible if your users have only Acrobat...
View ArticleRe: How to send reply message to form submitters
If you only want to display a thank you message, then include the following in the form's Submit button: app.alert("Thank you for registering"); This will only open a window with the alert...
View ArticleRe: How to send reply message to form submitters
I would question too if I found that my form was emailed, since emailing of forms is so inherently unreliably - not really suitable for commercial purposes. Use a web form, just as if it were an HTML...
View ArticleSending a filled in form as a non-editable pdf
Hello,I created a pdf to be filled in and sent by customers. When the form is sent, though, the addresses receives the still editable form. I want the editable form to be sent as a usual pdf, so that...
View Article