Forms fields on multiple layers

Hi, I wonder if someone can give me an answer on this one or point me to a resource for this.
I have an interactive brochure for a conference with muliple buttons that turn layer visabilities on and off (There is a button for displaying each day's schedule for the conference etc.)
I want include a simple registration form and I want the form to be on a layer so that it can appear when a specific button (which sets the layer visability) is pressed.  Obviously if it can work on one layer, why not multiple forms on multiple layers, hence the title of the post.:)
Can this be done in Acrobat?  I have searched and tried it and have not met with success.  btw yes - I know I could just add an extra page with a button pointing to that page, but I was wondering if there was a more elegant solution:)
Any help, direction etc. would be greatly appreciated.
Grahame Dryden

Hi,
Since my layer visibility is triggered by buttons, I would add it to the action for the button.  Just select Javascript from the choices and code it that way. 
I created the form in InDesign so one way would be to create the text fields there and try the forms wizard in Acrobat to see if it will recognize the fields.  Alternatively you can just add the fields in Acrobat after the export from InDesign.  Then set their visibility to invisible when the pdf is opened and toggle them based on the button pressed.
I don't have the specific Javascript since I didn't end up needing it, and I am not a javascript expert.  However I am sure there are plenty of examples out there for this.
Grahame

Similar Messages

  • One form field in multiple locations

    I am new to the forum and use of Adobe Form Filler.
    I am also not a programmer, but can usually find my way around ok.
    I would like to know if it's possible to create a field that can be used in more than one location in a file, so that the user enters the data once, and the data will populate in more than one area, .i.e., entering a name at the top of the form which can then be used to create a signature line at the bottom of the form.
    Is there a setting in the FormFiller area that can do this quickly and easily?
    Or can this only be done using JavaScript?  Does anyone have a script for this written and can share it with me?
    Thanks.

    Just copy&paste the same field, or make multiple fields and give them the
    same name.

  • Preserve form-fields through multiple processing passes

    Hi there,
    is it possible to have a a rtf template filled with data in multiple passes?
    I want to create a rtf working copy for the user in a first pass through the publisher and then fill the remaining fields in a second pass.
    Thanks

    Well, I've found a dirty something in the meantime:
    In the original rtf template I'd put a declaration like <<?variable_name?>>
    In the xml input data I'd set the element content to the variable name itself like this:
    <variable_name>?variable_name?</variable_name>.
    Now, BIP generates a rtf with <?variable_name?> during the first pass.
    The xml input data for the second pass will have the actual data in it and so that's going in during the second pass.
    While this is not what we actually need (we want all declarations in the rtf untouched if the variables are not in the datasets), it'll do until somebody has a better idea.

  • 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.

  • Upload multiple files WITH correct pairs of form fields into Database

    In my form page, I would like to allow 3 files upload and 3 corresponding text fields, so that the filename and text description can be saved in database table in correct pair. Like this:
    INSERT INTO table1 (filename,desc) VALUES('photo1.jpg','happy day');
    INSERT INTO table1 (filename,desc) VALUES('photo2.jpg','fire camp');
    INSERT INTO table1 (filename,desc) VALUES('photo3.jpg','christmas night');
    However, using the commons fileupload, http://commons.apache.org/fileupload/, I don't know how to reconstruct my codes so that I can acheieve this result.
    if(item.isFormField()){
    }else{
    }I seems to be restricted from this structure.
    The jsp form page
    <input type="text" name="description1" value="" />
    <input type="file" name="sourcefile" value="" />
    <input type="text" name="description2" value="" />
    <input type="file" name="sourcefile" value="" />The Servlet file
    package Upload;
    import sql.*;
    import user.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Date;
    import java.util.List;
    import java.util.Iterator;
    import java.io.File;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.text.SimpleDateFormat;
    import org.apache.commons.fileupload.servlet.ServletFileUpload;
    import org.apache.commons.fileupload.disk.DiskFileItemFactory;
    import org.apache.commons.fileupload.*;
    public class UploadFile extends HttpServlet {
    private String fs;
    private String category = null;
    private String realpath = null;
    public String imagepath = null;
    public PrintWriter out;
    private Map<String, String> formfield = new HashMap<String, String>();
      //Initialize global variables
      public void init(ServletConfig config, ServletContext context) throws ServletException {
        super.init(config);
      //Process the HTTP Post request
      public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {
        request.setCharacterEncoding("utf-8");
        response.setCharacterEncoding("utf-8");
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        Thumbnail thumb = new Thumbnail();
        fs = System.getProperty("file.separator");
        this.SetImagePath();
         boolean isMultipart = ServletFileUpload.isMultipartContent(request);
         if(!isMultipart){
          out.print("not multiple part.");
         }else{
             FileItemFactory factory = new DiskFileItemFactory();
             ServletFileUpload upload = new ServletFileUpload(factory);
             List items = null;
             try{
                items = upload.parseRequest(request);
             } catch (FileUploadException e) {
                e.printStackTrace();
             Iterator itr = items.iterator();
             while (itr.hasNext()) {
               FileItem item = (FileItem) itr.next();
               if(item.isFormField()){
                  String formvalue = new String(item.getString().getBytes("ISO-8859-1"), "utf-8");
                  formfield.put(item.getFieldName(),formvalue);
                  out.println("Normal Form Field, ParaName:" + item.getFieldName() + ", ParaValue: " + formvalue + "<br/>");
               }else{
                 String itemName = item.getName();
                 String filename = GetTodayDate() + "-" + itemName;
                 try{
                   new File(this.imagepath + formfield.get("category")).mkdirs();
                   new File(this.imagepath + formfield.get("category")+fs+"thumbnails").mkdirs();
                   //Save the file to the destination path
                   File savedFile = new File(this.imagepath + formfield.get("category") + fs + filename);
                   item.write(savedFile);
                   thumb.Process(this.imagepath + formfield.get("category") +fs+ filename,this.imagepath + formfield.get("category") +fs+ "thumbnails" +fs+ filename, 25, 100);
                   DBConnection db = new DBConnection();
                   String sql = "SELECT id from category where name = '"+formfield.get("category")+"'";
                   db.SelectQuery(sql);
                    while(db.rs.next()){
                      int cat_id = db.rs.getInt("id");
                      sql = "INSERT INTO file (cat_id,filename,description) VALUES ("+cat_id+",'"+filename+"','"+formfield.get("description")+"')";
                      out.println(sql);
                      db.RunQuery(sql);
                 } catch (Exception e){
                    e.printStackTrace();
            HttpSession session = request.getSession();
            UserData k = (UserData)session.getAttribute("userdata");
            k.setMessage("File Upload successfully");
            response.sendRedirect("./Upload.jsp");
      //Get today date, it is a test, actually the current date can be retrieved from SQL
      public String GetTodayDate(){
        SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
        String today = format.format(new Date());
        return today;
      //Set the current RealPath which the file calls for this file
      public void SetRealPath(){
        this.realpath = getServletConfig().getServletContext().getRealPath("/");
      public void SetImagePath(){
        this.SetRealPath();
        this.imagepath = this.realpath + "images" +fs;
    }Can anyone give me some code suggestion? Thx.

    When one hits the submit button - I then get a 404 page error.What is the apaches(?) error log saying? Mostly you get very useful information when looking into the error log!
    In any case you may look at how you are Uploading Multiple Files with mod_plsql.

  • Is it possible to create a form with multiple form fields on a single line?

    Is it possible to create a form with multiple form fields on a single line?  I can't find anything in the documentation or a template that does this.
    I am trying to create a "documents received" checklist with a check box on the left margin, a date-received field to the right of the check box and and a description of the document (Formatted Text) on the far right.
    In the past I have entered the Fixed Text with a word processor, published it to a PDF file, then added the check box and date fields with the Acrobat Forms editor.  I would prefer to use FormsCentral if it is possible.

    We now support multiple fields on one line. This post provides a brief overview.
    Give it a try and send us your feedback.
    Sorry it took so long.
    Randy

  • How to change font in multiple form fields?

    I am creating a form - there are about 2 dozen form fields that are set up.
    I had Acrobat detect form fields.
    Is there a way I can select multiple form fields and change the font in all of them?
    I have tried selecting all the fields [cmd A] and double clicking to get to the appearance tab.
    The only changes the font in the 1 field I double click.
    thanks everyone!

    matthewmcneil wrote:
    I am creating a form - there are about 2 dozen form fields that are set up.
    I had Acrobat detect form fields.
    Is there a way I can select multiple form fields and change the font in all of them?
    I have tried selecting all the fields [cmd A] and double clicking to get to the appearance tab.
    The only changes the font in the 1 field I double click.
    thanks everyone!
    Select all the form fields , select first the hold shift key and select the rest Then right click or control click and choose properties. then look for "Fonts" choose desired font. If this works your all set otherwise you will have to choose each indivually and change.

  • Auto fill same fields in multiple different pdf forms?

    I wish to enter information such as project name, company name, date, etc. into a single data sheet.  Then I need to autofill the same two or three fields across multiple separate pdf form files.  In this case I have approximately separate files to autofill.  The forms are all different however, they have the same two or three fields.  Any ideas?
    I have been searching the internet for ideas or methods and haven't found a single solution yet.
    Thanks.

    I think this is what you're looking for.
    http://blogs.adobe.com/formfeed/2010/07/shared_data_in_packages_part_2.html

  • 2 cascading multiple dropdown list boxes that fill a form field in Infopath

    I have a request to do this:
    first field is a cascading list box is type of work (can select more than 1 type of work)( separate list)
    then based on the choices above the
    second cascading list box has the various people's names from the first list box (can select more than 1 person)(separate List )
    then I need to from the second list box have a form field hold the various email addresses of all the people selected in the second list box.
     how would I do a multiple tier cascade in Infopath form?

    those are good examples, but here is the thing the first two dropdowns can be more than 1 selection, could be 50 items selected.
    and selection 2 dropdown doesnt lookup into  selection 1. but they do have a related column.
    company name..... ( just  saying).

  • I have a form that has multiple fields but has 5 sections. I have used mail merge to insert information but I can't get Excel to recognize that I need different names and addresses for each section. Please help.

    I have a form that has multiple fields but has 5 sections. I have used mail merge to insert information but I can't get Excel to recognize that I need different names and addresses for each section. Please help.

    Thanks for your response. I do believe I have the information needed for each form on a separate line in Excel. There is a first name, middle name, last name, city, and zip column. And field is entered on a different line for all the information. I'm really stuck.

  • Is there a way to rename multiple form field names with a "b" at the end?

    I have a two page form, both are identical.  I need to rename all the field names on page 2 with a "b" at the end of the file name so they dont conflict with that of the first page.  Is there any fast way of doing this without renaming each individual one at at time?  I have a LOT to do!

    It's not possible with JavaScript. The name property of a field is read-only.
    I would suggest making a template from the first page and then spawn a new page from it.
    If you do it from a script make sure you set the bRename property to true and the form fields will be automatically renamed, but you can't specify the name, it will be in following pattern:
    P<Page Number>.<Template Name>.<Original Field Name>

  • Multiple form field instances populating ES Process Mgr variables

    Hi ES Process Designers,
    I am building up a new process in which the user can add instances of one to many fields in a form. I'm trying to find a way to populate a variable(s) with the second or greater instance of a form field value.
    When using a List variable I can retrieve process_data/field[1]. It appears that the form isn't returning a list of all instances as process_data/field[2] remains empty. Possibly I don't understand how the form returns data to the process?
    Variable = Variable1, type List
    Location = /process_data/FormField
    Expression = /process_data/myForm.pdf/ ... /data/FSFIELDS_/FormField[2]
    Any assistance with this will be very much appreciated. Thanks,
    Rod

    Hi
    Try opening your form in Acrobat, and exporting the data.
    This will show you the format of your data, and should give you a clue about how to reference it using an xpath expression.
    It's also highly recommended that you design an XML schema for your form, which will allow the Xpath expression browser to see "inside" the fields in your form. Please see the Designer docs for more information.
    The official LiveCycle training courses also cover these techniques.
    Howard
    http://www.avoka.com

  • Set maximum size in Text Form Field Options for a field in bi publisher RTF

    Hi All,
    How to set maximum size in Text Form Field Options for a field in bi publisher RTF.
    I have a RTF whch is having a field in that i need to add some validation condition but after adding certain condition in Add help text tab ,it is not accepting after certain length, how i can increase the length to unlimited,please help me on this
    Thnaks

    Form fields have some restrictions if your are using version lower than 11g.
    They can accommodate only 393 chars. You can add the text in both status bar and help key, which can in total consume 393 chars.
    If your code logic is more than that, it can be split into multiple form fields as Avinash suggested or you can use sub template logic and handle coding over there. Again in sub template code can be within/outside form fields.
    So there is no option for user to increase the size of form field.

  • 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.

  • 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.

Maybe you are looking for

  • Dual Studio displays and midi timepiece setup

    I have a G5 dual 2.7 GHz - with a 22" studio display and am trying to setup a 17"studio display as a second monitor. I bought a DVI to ADC Adapter for the 17". But when i went to plug the USB cable in, found out that I don't have enough usb ports. Th

  • Dynamic Column Names in Trigger

    I have a trigger which fires on each row. The issue is that I have a lot of duplicate code because there are many columns. Is it possible to abstract the new and old column name references? CREATE OR REPLACE TRIGGER a BEFORE INSERT OR UPDATE ON table

  • F4 Help in WDJ

    Hi Friends, Any Idea in F4 Help Nwds. If have any documents pls share with me. F4 Help (Exp: In ABAP we have to Open Function Module here we can pass Bapi name (Bapi_Fligt*) Click on Enter we will get all bapiu2019s on Flight. Double click on that Ba

  • Join two ODS into one cube!

    Hello Experts - I need to join fields of 2 ODS into one cube. I know the common field. We are in BI 7.0. Can someone guide me through the steps? I know there are two transformation rules. And I have created them. How do I link them so that I have one

  • When I try update iMovie or Xcode I got message "Use the Purchases page to try again." [ After Security Update 2015-002]

    After updating Security Update 2015-002, apps cannot be updated in App Store () by showing "Use the Purchases page to try again." what should i do? MacBook Pro (Retina, 13-inch, Mid 2014), OS X 10.10.2 ,Yosemite