Acrobat X Global Form Field Settings

Good day - Is there a way in Acrobat X to globally set font face and size for all fields in a form?
My objective:
> take template which had a form with 50 filelds
> globally set font face and size
It is a real pain in the neck having to do each one field by field.  I am an ASP developer and are usign ASPPDF to populate pdf docs vis ASP code.  If I use X and Y coords with my code I can define font properties with my code However I wish to use Acrobat field names therefore they inherit these setting from the Acrobat field settings.  Wow what a pain.
Thank you for your help in advance.
Please note - I am using Classic ASP, not dot net....

In that case, you can use JavaScript. If you use it in a batch sequence, you can change the field properties of a collection of documents very quickly. Here's an example:
// Script to set the font and size of text fields
for (var i = 0; i < numFields; i++) {
    // Get a reference to the current field
    var f = getField(getNthFieldName(i));
    // If it's a text field, set the font and font size
    if (f.type == "text") {
        f.textFont = font.Helv;
        f.textSize = 7;
You can also run this in the interactive JavaScript console (Ctrl+J) to test it out. More information on the textFont property is in the documentation here: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.727.html

Similar Messages

  • Acrobat 6 filled form fields show up empty in Acrobat X

    I've been using Acrobat 6 to create fillable forms some time back and now I'm having some issues trying to correct some fields they are showing up empty in Acrobat X. Is there a way to still view or edit my saved Acrobat 6 filled forms in Acrobat X?
    Any help would be appreciated

    Hi,
    Would you take a look at Darrell's reply #4 in the following discussion to see if it answers your question?
    Re: Utilizing Adobe Reader version 11.6.3 in Ipad running IoS 8.1
    Thank you.

  • How to make Acrobat Pro 7 form fields same size

    I can manually enter form fields in my version of Acrobat Pro 7 but I have to hand draw them.  is there a good way to make them all the same height?  I know that if I copy the form field that I draw, it will link itself to whatever form field I copied it from.
    TIA

    The best way is to copy & paste the fields, and then rename them so that
    they are no longer "linked".
    If you have many such fields to rename, you might want to consider this
    tool, developed by me:
    http://try67.blogspot.com/2010/10/acrobat-convert-duplicated-fields-to.html

  • Acrobat Pro 8, Form Field Sizes - HELP!

    Sometime within the past week, Acrobat has gone NUTS.
    I used to be able to create text fields of just about any size. I had not updated recently or done anything to alter my installation.
    Now, when I go add a form field, namely a text field, it automatically creates one much larger than I want. If I try to re-size it, I can only make it bigger. If I attempt to decrease the size of it, it disappears! I'm not talking font, I'm talking FIELD.
    Since I noticed this, I downloaded the latest update, rebooted about 12 times and then had Adobe repair the installation, thinking it was some other issue. No dice.
    I cannot stand this! I like using form fields as opposed to text boxes and want it to just work the way it used to work. I use this feature DAILY and right now I'm about at my wits-end.
    ANY ideas would be GREATLY appreciated!
    Thank you!

    I figured out my issue. For those who wanted to say it, please feel free. I AM AN IDIOT! I had somehow clicked SNAP TO GRID under the view menu. It is just odd because in all of the years I've used Acrobat, I've NEVER had that happen!

  • I can't read the text in my Acrobat pro fill forms fields

    I used to be able to render text with my acrobat pro, now the function is missing.  I can't read what people put in the fields I create in my forms if they don't fill it out with acrobat when they email them back.  This didn't used to be the case. One month ago I could render the text.  I had help from a tech at Adobe about a year ago on this and he changed my acrobat somehow so now I can't update it because it's been "modified".  How can I make my text visible?   Thanks!

    Read this:
    Renderable Text?

  • Acrobat Pro Calculating form fields lose functionality after enabling document for Reader

    I have a problem that continues to come up increasingly. I thought I had found a work-around on some forums, but it is still causing trouble. Im hoping you can answer the question.
    I am creating a form that requires simple calculations (sum and add). I can get these calculations to work just fine. However, as soon as I enable the document for Adobe Reader, the form seems to get amnesia. It loses the ability to calculate. When I go into the fields again to look at them, they still show that they are supposed to calculate, but arent working. I have to clear the calculations and completely reset them all in order to get them to function again, but as soon as I save this enabled doc, it loses its functionality all over again.
    Frustrating.
    I did find a work-around on a forum, but have only gotten it to work once. It had something to do with closing and saving the document, then reopening it before entering the calculations.
    Is there a clear-cut solution to this problem? The forums were rife with people experiencing the same frustrations.
    Thanks ahead of time for your assistance.

    Nathan,
    It's fairly straighforward to set up a custom validation script for this, but it might not be immediately obvious how to do it. I'll use your form as an example. In it, you have a number of rows with a Quantity field where the user enters how many items are needed, a Price field that has as its default value the price for the item, and a Total field which is a calculated field and should be the product of the Quantity and Price fields. The only variable in the calculation is the value of the Quantity field, so this will be easy.
    The Validate event of a field gets triggered when the field value is committed. This happens when the user enters a value and presses Enter, Tab, clicks outside of the field, etc. What the script should do is take the value the user entered, multiply it by the value that's in the Price field, and set the value of the Total field. The script could look something like:
    (function () {
        // Get the value of this field, as a number
        var qty = +event.value;
        // Get the value of the Price field, as a number
        var price = +getField("PRICE.0").value;
        // Calculate the total
        var total = qty * price;
        // Set the value of the Total field if not zero,
        // otherwise, blank it out
        getField("TTL.0").value = total ? total : "";
    What you really should do, however, is set up a document-level JavaScript (Advanced > Document Processing > Document JavaScripts...) that contains a function you can call from the QTY field of each row. The function will determine which row should be affected based on the field name that triggers it. Something like:
    function calcTotal() {
        // Get the row number from the field name
        // of the field that called this function
        var row = event.target.name.split(".").pop();
        // Get the value of the field that called this function, as a number
        var qty = +event.value;
        // Get the value of the Price field, as a number
        var price = +getField("PRICE." + row).value;
        // Calculate the total
        var total = qty * price;
        // Set the value of the Total field if not zero,
        // otherwise, blank it out
        getField("TTL." + row).value = total ? total : "";
    Than all you have to place as the custom Validate script of each of your QTY fields is the following:
    calcTotal();
    Also, make sure that you remove any calculations that you've set up on the Calculate tab of each TOTAL field. Now that the total fields do not rely on automatic calculations, it does not matter that the document is missing its field calculation order array, though this bug REALLY needs to be fixed. You should consider reporting it to Adobe. I will report it too.
    Note that this code assumes the QTY and PRICE fields are numeric fields, meaning they will either be blank or contain a valid number. You've ensured this by setting up each with a Format category of Number.
    George

  • Can't print "Form Fields Only" from newly-installed Acrobat Reader XI

    I have created numerous forms for our agency on which our employees used (in previous versions of Acrobat Reader) the "Form Fields Only" print function. We finally got the boss to give us the OK to upgrade to Acrobat XI Pro for me, and Acrobat Reader XI for the employees. However, they open the same forms we've been using and find that they no longer have the menu option to choose "Form Fields Only" for printing purposes. I would be very grateful to anyone who might be able to steer me in the right direction as to how I resolve this issue. Unfortunately, the job does not afford me a lot of time for research and "playing" with new software, and we need to have these forms work for us by Thursday. Help, please! And Merry Christmas to everyone!

    One possible workaround is to export the form data and then import it into a "blank" version of the same file, that has only the form fields. This would require using a script to export and import the data, and to create that additional version of the file for printing purposes.
    Or you can put the file's contents on a non-printable layer when creating it...

  • Acrobat XI Windows 7 - unable to (copy and) paste form fields to a different pdf.

    To maintain a consistent appearance and function in the forms I create for various departments, I copy a few form fields  (text, checkboxes) from an unrelated Acrobat PDF. Then I paste those fields into a different PDF document that I am making fillable.
    I do this because Acrobat does not allow setting a default for certain attributes when creating form fields, i.e. an unchecked scroll option, a default font other than Helvetica (in Acrobat 8, 9, and X). Plus it is time-saving to copy and paste fields that are the same in another PDF, like name, address, phone. etc.
    We just updated to Acrobat XI and Windows 7 and now I cannot paste copied fields onto a different PDF.
    Using "replace pages" is not applicable as I am pasting to an entirely different form and copying form fields with the settings I use. 
    Is this a glitch or is something new that was not in Acrobat 8, 9, and X?
    Also, question regarding this forum entry -  http://forums.adobe.com/message/5638333#5638333 - which is somewhat different from my current question.
    The PDF creator could not paste copied fields on other pages of the same PDF. Was this ever resolved so that copy and paste worked as it has for the last 3 versions of Acrobat?
    Thanks!
    Joanie

    Gilad:  You're right: when the fields are different, such as a checkbox and a text field, and you try to title them the same, Acrobat gives you a message. I received no messages, the field names are not the same or I missed one and Acrobat is no longer messaging about it.
    My question is different. Acrobat XI will not let me paste any field copied from a different PDF.  I've been doing that for 5 years in three different versions.  Maybe Acrobat XI has a new process for that, which I could not find in Acrobat help. Maybe it's because all forms now have extended rights automatically in Acrobat XI and there is another method to copy common fields to other PDFs.
    Any thoughts about the new Acrobat XI? It's different in many good ways, but different.
    Thanks for your ideas.

  • How to find and replace data in form fields in acrobat xi, its not allowing to do so while trying, a

    how to find and replace data in form fields in acrobat xi, its not allowing to do so while trying, asking for adobe livecycle to get installed. please help.

    Easiest way to do it is the following:
    - Open the PDF file in Acrobat.
    - Go to Tools - Forms - More Form Options - Export Data.
    - Save the form data as an XML file somewhere on your system.
    - Open XML the file in a plain-text editor (I recommend Notepad++).
    - Let's say you want to replace all the years in the dates from "2013" to "2014". Do a global Search&Replace of "2013-" to "2014-" (I added the dash just to make sure that only date fields are edited).
    - Save the XML file (maybe under a new name).
    - Go back to the PDF file, and now go to Tools - Forms - More Form Options - Import Data.
    - Select the edited XML file and import it.
    - Done!

  • Can I Globally Bind Fields in InDesign CS6 Forms?

    I'm used to using LiveCycle Designer to create forms, where I had a great deal of control over how the forms would look and feel and could create very complex interactivity. Particularly useful was the ability to create form fields that would repeat information throughout the rest of the form through global bindings.
    Because I'm now trying to create forms for use on mobile devices, I want to create that same level of interactivity in InDesign CS6. Anyone have any advice on how I can go about doing this?
    Thanks in advance.

    InDesign is only giving you access to the features of Acrobat (Acro forms). Acrobat has some features not accessible from within InDesign.
    There is no feature in either InDesign or in Acrobat called "global binding" for Acro forms that I'm aware of.
    Your best bet is asking questions about Acro forms in the Acrobat Forms forum.

  • Problem with Buttons/Form Fields in Acrobat PDF when created in InDesign CS4

    So I have been working for quite some time on an interactive form for an internal client at my job. It has two major components, one is the side bar navigation, which I created using buttons in InDesign which link to bookmarks in the document. The second aspect is that I also created "check boxes" accoring to this video: http://www.adobe.com/designcenter/cs4/articles/lrvid4434_ds.html
    I have two major issues:
    1. Whenever I try to convert my boxes to form fields in Acrobat it will not recognize them unless I save out 4 pages at a time (rather than the whole document).
    2. I then have to combine the document and get multiple sets of bookmarks, and some bookamrks are corrupted (not working properly). Even when I try to convert the whole document some of the buttons are corrupted.
    UGH tired of this project, I am really bastardizing the whole thing to get it done, but want to figure out the problem as this is an ongoing document that we will be using over and over again in future years.
    I am attaching the pdf file--this is a pieced together one (saved out 4 pages at a time) (which I did do some fixes to to get buttons to go to proper locations) and the original indesign file (partial file due to size).
    PLEASE OH PLEASE HELP ME!

    Acrobat's Form Wizard is good but not perfect when creating form data from a PDF. I have never encountered Acrobat not able to finish the process of creating all form fields, but have encountered very slugish performance afterwards when there was a lot of forms, buttons, and other elements within the pages. And I would say, from your attached PDF, it is pretty heavy with content. I am going to suggest an idea, but I have not tested this to see if it would work.
    In InDesign, create a layer for your navigation tabs, and a layer for your text with the check boxes. Create two PDFs from ID, one PDF with just your-nav tabs, the second with just your text with check boxes. In Acrobat, perform the Form Wizard on the second PDF and see if this will finish, the idea here is to reduce the cllutter for the Form Wizard to finish. If it does, you can merge the first PDF as a layer with the second to have a completed document. Again, I have not tested this theory.

  • Can I add a text form field in Photoshop that can be edited in Acrobat reader?

    I design coffee labels with Photoshop then send them off to the printers. The printers then open up a PDF and put in the best before date before printing. At the moment I have to add the text form fields using Acrobat Pro after i've saved the photoshop document as a Photoshop PDF. The problem is if I want to edit the labels at a later date, I have to re-add the text form fields with Acroabat again. 
    Can I add a text form field in Photoshop that can be edited in Acrobat reader? Is it better to use another program for this task?
    Thanks in advance
    Ian

    As A1's Calculate script, under "Simplified field notation", enter:
    A * 0.8
    The same goes for B1 and B, resp.

  • Editing Form Fields inside Acrobat? (after using LiveCycle Designer)

    Adobe Acrobat 9 Pro Extended ==  Acrobat
    LiveCycle Designer ES 8.2 == LiveCycle Designer
    =========================================
    Say I downloaded a new PDF from the interwebs.
    I want to add some forms fields so I go to Forms ==> Add or Edit Fields... (inside Acrobat)
    Now Acrobat will detect possible places where to add the form fields. I make changes etc. Then I am  satisfied with my form fields.
    Now say I want to remove a particular object from the PDF, lets take an image as an example.
    So I fire up  LiveCycle Designer; File ==> New ==> Import a PDF document ==>  Create an Interactive Form with a Flowable Layout.
    I remove that pesky little object.
    In LiveCycle Designer, I save the file as PDF.
    I open up Acrobat. I realize I need to make some more changes to some of the Form  Fields.
    But now instead of "Add or Edit Fields..." option I get "Edit Form in  Designer..."
    I hate the GUI of LiveCycle Designer --- I had rather edit the form  fields from inside Acrobat, as it is easy and fast to change multiple  form fields in a few clicks.

    Thank you Niall for the above response; Your response gave me an idea which allowed me to remove that line by zooming in to 200%
    You know Acrobat detects Form Fields for you.
    But many times it makes mistakes, for example in the screenshot below it made the boxes that came with the PDF as text fields instead of check boxes.
    The thing is rather than me delete the (form) fields it detected, and start over by making new check boxes, I will not be able to place my new check box in exact locations as Acrobat has done.
    When I imported the fields that Acrobat made into LC (by saving the PDF in Acrobat and then opening it with LC) I get option to change the Object Type from Text Field to Check Box when I right click the object.
    Is there a similar way to change the Object Type from Text Field to Check Box inside Acrobat? Any suggestions?
    ===========
    I would really like to do it inside Acrobat because then if I have to make some minor changes to some field properties, all my hard work which I did by filling the fields gets deleted, as I am forced to use LC. The text I add to the fields don't get deleted when I edit the field properties inside Acrobat. I don't know why LC decides to delete all the text which is filled out in the form fields even though the PDF is saved in Acrobat before being imported into LC?
    Here is the above PDF file with the text boxes:
    http://www.mediafire.com/?lnn32jm5am5
    Again thanks for all your guidance so far.

  • How do I create a form field ONLY template in Acrobat 9 Pro that will let the user enter and print only the form field data on a pre-printed form?

    This template will be used to type in information that will then be printed on an agency's official, barcoded form loaded in a printer (instead of blank paper.)  Only the user-entered info should print on the pre-printed form.  Users will use Adobe Reader to complete their templates; they do not have Acrobat.  Thank you!

    Use the template as non-printable background and add the form fields.

  • Is it possible to put form fields on layers in Acrobat?

    I am creating evaluation forms that have 3 layers. Basically, on page 1 there are 3 buttons for the apprpriate category, and each button turns on a specific layer. The following pages have information to be filled out based on which category layer is selected on page 1.
    I've created the documents in Indesign with layers and so far exporting the document and layer buttons works fine . . . I just have to assign the layer action in Acrobat to the buttons. But, when it comes to creating the form fields, I can't figure out how to create them on a layer. When I go into form field editing I lose my layer panel and when I can see the layer panel, turning layers on and off does not affect the fields.
    Is it possible to put fillable form fields on layers, so I could have different fields visible based on what layer is showing?

    So, if I learn to create this script, can I have multiple sets of fields stacked on top of each other that can be shown/hidden along with the rest of the layer by pressing a button?
    Hi,
    you don't need to learn JavaScript for such basic actions, they are built-in.

Maybe you are looking for