Re: A couple questions about forms: Limits and default fonts
My god. All I wanted to do was update an existing form for someone so the vendors could submit their invoices with correct verbiage on it. I had no idea it was going to turn into this kind of mess....
View ArticleRe: How can I keep the page size at 100% when clicking go to page view buttons?
If linking to other PDFs, you can set the Initial View property to use the "Fit Page", "100%", "Actual Size", etc. You could also try to set the action of the button when it opens a file.
View ArticleRe: A couple questions about forms: Limits and default fonts
You can exceed the limitation of 500, but you have to move up to a much more high level piece of software, LiveCycle Reader Extensions. In practice, a well planned workflow doesn't need it; I can't...
View ArticleRe: Arcobat Pro X
Your welcome but I'm not sure I was always that helpful. I never learned AppleScript or JavaScript even though I've been using a Mac since the days of the SE/30.
View ArticleRe: A couple questions about forms: Limits and default fonts
Our client has been using this method of invoice submission for quite awhile. All I was asked to do is make a few verbiage changes to their existing pdf form. I'm not here to redo their system. Too...
View ArticleRe: Positive identification of a fillable PDF form among non-PDF form files
Thanks for the tip, but what exactly in the contents of the PDF would be the telltale sign I should be looking for? Is there any built in means of ColdFusion to do this sort of check? I realize this...
View ArticleNeed a script to set a ceiling on a calculated field
I need a script that would set an upper limit of a calculated (Sum) field. It would only display up to that number (say, 100), then pop an alert that tells the user they have reached the maximum value...
View ArticleCan't make work SetExportValues method
trying to assign new values to radiobutton in Vbscript, but get a mistake: "Invalid call procedure or argument" Can't figure out what's the problem. Set field =Form1.Fields("Radio")Dim arrExportVal(1)...
View ArticleRe: Positive identification of a fillable PDF form among non-PDF form files
The test is not so easy as it might seem, and Adobe Reader commonly gets it wrong.The simple test is to look for the AcroForm key in the root object, then see if it contains a non-zero list of fields....
View ArticleRe: Can't make work SetExportValues method
I notice the documentation has more on the Dim command. I don't know VBScript enough to know if that's important.
View ArticleRe: Positive identification of a fillable PDF form among non-PDF form files
Might be a bit too simple, but why not simply use a script in Acrobat thatlooks at the numFields property? If it's not zero, then the file containsfields...
View ArticleRe: Need a script to set a ceiling on a calculated field
Use this validation code for your field: if (event.value>100) { app.alert("Value too high.",3); event.value = 100;}
View ArticleRe: Can I use FormsCentral when creating a form from existing document?
Hello George, How do I upload a PDF to the FormsCentral service? Wil I see that form then in My Forms or in the the standard templates list? I want to be able to re-use a collored PDF with no fields in...
View ArticleRe: Need a script to set a ceiling on a calculated field
THANK YOU! Worked like a charm. One question. The field that carries your script doesn't change its sum automatically whenever I change one of the variables. I have to go delete the current sum, then...
View ArticleRe: Need a script to set a ceiling on a calculated field
It should happen automatically. What you describe sounds like a problemwith the fields calculation order.
View ArticleRe: Need a script to set a ceiling on a calculated field
Okay, thanks. I'll go in and experiment with those. Thanks so much! T3
View Article1 Field filled multiple times
Can a form field be completed 1x but used multiple times in a form? I have a form that needs two fields to be reapeated three times on the sames form. To avoid retyping the same thing in three...
View ArticleRe: Submit form to more than one e mail address
Yes just proven this. Outlook - WorksOn IOS mail - Omits both addresses if two entered in the URL field regardless of seperatorOn Samsung Galaxy Tab (Android) - Only enters first of teh two addressesOn...
View ArticleRe: Age field based on date field
I believe I have. Here is the script I'm using: event.value = "";var dobValue = getField("a104").value;if (dobValue!="") {var dob = util.scand("mm/dd/yyyy", dobValue);var today = new Date();// compute...
View ArticleRe: Age field based on date field
The format of the text field that this is pulling from is mm/dd/yyyy. I just checked and all seem to be a year off now. 03/28/1983 showing 29, instead of 30. (This is 1 year too YOUNG.)03/24/1984...
View Article