How can I allow users to save fillable forms I've created in Acrobat 9 Pro?

Do I have to use Live Cyle Designer? I require all users to use Acrobat Reader 11 so I do not have to Reader Enable each form, which is a hassle.

No, you don't need to use LiveCycle Designer. To create a form, first create the PDF and open it in Acrobat. You can then add the form fields by selecting: Forms > Add or Edit Fields
It will ask you if you want Acrobat to attempt to create fields automatically where it thinks they should be. The form will then be opened in form editing mode and you can add/edit the fields.

Similar Messages

  • How can I allow users to submit a form without entering credit card info?

    Hello all,
    We are offering a free gift to our constituents. So, what we need is a form that will allow users to either claim the gift and make a donation, or claim the gift and not make a donation. Ideally this is one form. Is there a way for users to fill out everything but the credit card info?
    Thanks,
    Mike

    Hi Mike,
    You can use "Free" payment method to do so and hide the credit card fields using JS and CSS based on the payment method type selection. Please refer to the following article : http://kb.worldsecuresystems.com/893/bc_893.html
    Hope this helps.
    Regards,
    Aish

  • How can I allow users to view any Wiki Pages inside my enterprise wiki site collection, as PDF files

    We are working on an enterprise wiki site collection, and users start adding wiki pages and link them together. But a new requirement was raised by the customer, to allow users to be able to convert any wiki page to pdf file and save the pdf file to their
    local PCs. They are suggesting to add a link or an option inside the upper ribbon , named “Make as PDF”, and once clicked they can view the current wiki as a pdf file.
    Not sure what are the capabilities of SharePoint 2013 to do so ? and is there any third paryt tools that allow doing similar tasks ?
    Thanks

    If you want to save as PDF, could you not use a PDF printer, so the procedure would be to 'Print this page' and the user then selects their PDF printer and where they want to save the file.
    but in this way the user will have the page header footer, left navigation included in the pdf file. while i want to extract the body only. i so not think you apprach will work for my requirements

  • How can I automatically fill and save PDF forms from an iSeries database file withouth viewing PDFs?

    We have incoming data that we need to insert into a PDF form then save an individual PDF file for each record from the database table for our Image system.  Data is coming from an iSeries file and I can Manually perform all the steps within the process, but this needs to be something that we can run from a scheduled job and should be a totally hands off process.  The form is in Adobe Acrobat and I've been trying some of the JavaScript pieces, but can't seem to get everything to run automatically.  I'm new to PC programming and can use any suggestions on how to handle this process.

    You might want to post this to the Acrobat SDK forum here. For it to work with Acrobat, it cannot be a completely automated process, however, due to licensing (and technical) restrictions. There are a number of third-party APIs that might help. If you post again, include what format the data is in (FDF, XFDF, XML, XDP) and what programming languages you can work in.

  • How to restrict/allow users to access oracle forms/reports through SSO

    Dear All,
    I am new to oracle application server and need to know how can we manage the access rights for oracle forms using OID/SSO.

    Anyone can answer.

  • How can I allow users to access SQLPLUS?

    Hi everyone,
    I have been charged with the task of creating an Oracle server on a CentOS VM. Installation and configuration is complete and SQL is working fine for the database admin user "oracle." I copied the environment variables to the .bashrc file for "oracle" and SQLPLUS starts without a hitch.
    Here is where I need a little guidance...
    I need to create basic Linux user accounts that will have access to the database, so they can then in turn log into their SQLPLUS accounts. The problem is, all of the database files and software are in located in the user "oracle's" directory. This means that no one but "oracle" and root have access to these files because they are the only ones with proper permissions.
    Before I put a ton of time into this, I thought I would pose these questions to the Oracle Linux community:
    1) Could I enable a specific Linux group (ex. "Oracle Users") to have access to the main database folder or possibly all folders along the path? I am hoping this would allow any users I put in the group access to the folders, and essentially the SQLPLUS application. (here is ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_1)
    2) If that is not an option, will I need to make a completely new database and locate it in a location that all users can access?
    I understand that my first idea may not be the SAFEST method, but this is only for a small class of students learning how to use SQL and writing queries. There will be no sensitive information at risk. This would be a quick fix until I learned more about Oracle and how to use it.
    Thank you everyone.

    It certainly is rather a question for the General Database forum, though I doubt you will get a lot of happy replies for such a basic question.
    You can use / as sysdba OS authentication through SSH or using the server console, provided the user's account belongs to the "dba" user group. For remote connection through sqlnet you need create a $ORACLE_HOME/dbs/orapw$SID password file.
    If you would like to know more about this:
    Connecting / as sysdba is used for OS authentication. It ignores password credentials stored in the database and allows any user belonging to the OSDBA system group to connect to the database. Connections as sysdba will always connect to the SYS schema of the database, regardless of any username or password specified. Using OS authentication relies on the BEQ protocol, which connects to the database directly, without using the Oracle Listener process.
    The "oinstall" group will give access to the database software repository. There could be different oracle home installations, each with a different oracle user/owner like "oracle_prod1" and "oracle_prod2", but both users must be able to read/write the shared oraInventory, in which case both users must have read and write access to the oraInventory directory, hence the oinstall group.

  • How can I allow user to customize the functionality of program at runtime? (not using runtime code compilation)

    Using .NET Framework 4.0 what features are available that would allow to accomplish something very modular and user customizable, like depicted in this XML.  Where I define specific base operations like Get() and Put() methods that operate on strings. 
    And allow the user to add and remove those or mix and match them in a way that they basically design their own run time functionality that suits them.  So they just create their own 'Operation' and fill it with the operations they want to perform on some
    incoming data type, in this case it is a string - with substring and insert methods. 
    EDIT - Assuming end user is non programmer and Dynamic Code compilation is not an option.  I have an idea maybe using dynamic keyword, but not sure if it makes what i suggest possible.
    <Operation Name="GetValues">
      <Get id=123"  FromIndex="2" ToIndex="23"/>
      <Get id="234"  FromIndex="3" ToIndex="5"/>
       <Output Path="C:\" Filename="testOut.txt" Append="true">
         <Format>
              <Result id="123"/> , <Result id="234"/>
         </Format>
       </Output>
    </Operation>
    <Operation Name="InsertValue">
      <Put AtIndex="5">stringtoinsert</Put>
      <Put AtIndex="36">anotherstringtoinsert</Put>
    </Operation>

    Hi sjs1978,
    I am not familiar with dynamic code, and I made a research about it.
    >> I'm aware of dynamic code compilation, but that requires user to input pieces of code.
    Did you try to store the pieces of code into a file and call the code when the dynamic code compilation requires user to input code?
    In addition, I found links about using code provider to compile a source file, and the links below might be useful to you.
    # Dynamic Source Code Generation and Compilation
    https://msdn.microsoft.com/en-us/library/650ax5cx(v=vs.110).aspx
    # CSharpCodeProvider Class
    https://msdn.microsoft.com/en-us/library/microsoft.csharp.csharpcodeprovider(v=vs.110).aspx
    # Is it possible to dynamically compile and execute C# code fragments?
    http://stackoverflow.com/questions/826398/is-it-possible-to-dynamically-compile-and-execute-c-sharp-code-fragments
    Best Regards,
    Tony
    Help each other

  • How can I allow users to change an image on my site?

    I am running this website...   www.northernilskywarn.org
    I have user log ins/permissios set up. However, the flashing GIF image in the top left that says "current net status," I want logged in users to be able to land on a page, have something like a drop down box or something that has different options like "Blue, Green, Yellow, Red" so when they click the image they want, click submit, it changes it on the site.  I'm not sure what kind of script I would use.
    Thanks in advanced!

    You might want to take time to work through this 3-part tutorial. 
    Building your first dynamic website:
    http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html
    Nancy O.

  • How can I allow users to upload files when they submit a contact form?

    I need my users to be able to send me pdf, ai, psd, and jpeg images for a custom tshirt website I'm building Thanks for any suggestions-- Lory

    Hello,
    Please check the similar forum thread below.
    https://forums.adobe.com/thread/1213492
    Regards
    Vivek

  • How can I get a stop/start button the multimedia flash player in Acrobat 9 pro

    I have successfully embedded a flash movie in my pdf. It starts when I click on it but does not stop until I reloaded the pdf. Is there a way to add stop start buttons?

    There is not currently a shortcut for this. That's a good feature request, though. You can submit feature requests here.

  • How can I convert a .pdf to a single file HTML file in Acrobat 9 Pro?

    I need to convert a .pdf with active links to a single file HTML file.  Any advice?

    LGINSB wrote:
    Yes, but it's saving it with files associated.  I need it to be a single file version.  Thanks for the reply.
    Of course it is. It sounds like what you want would be just a .jpg. Web pages are seldom ever just one file unless they are strictly text. More than likely you have some images (maybe even images of text) involved so you could never get one file.

  • How can I allow other users on my macbook to view my iphoto library when th

    How can I allow other users on my macbook to view my iphoto library when they are logged in. I do not have a network, and the users (my family) all log in seperately when they use the computer. Does anyone know? Thank you.

    rdoss
    Welcome to the Apple Discussions.
    If you want others to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account(s). In the other account(s), enable 'Look For Shared Libraries'. Your Library will appear in their source pane.
    Remember iPhoto must be running in both accounts for this to work.
    Regards
    TD

  • How can I allow a user (client) to choose a local image file (on his hard d

    How can I allow a user (client) to choose a local image file (on his hard drive) and modify it using an applet from his browser ? I am trying to develop a web page that enables the user to choose an Image file, manipulate the image using a java applet, and display the results.
    Using Java�s �JFileChooser� does not work when called from a browser, probably due to security privileges issues. On the other hand, I can choose and upload any file using a JavaScript form:
    <FORM METHOD="POST" ENCTYPE="multipart/form-data" ACTION="process.asp">
    <INPUT TYPE=FILE NAME="file1"><BR>

    It seems that I can choose an image file with a Java script form and process an image with an applet. How can I choose a file AND process it locally ?
    (I do not wish to upload the file to the server using JavaScript form and then back to the client�s applet for processing since it will be a tremendous waste of resources).
    Will appreciate any solution.
    Thanks !
    ( my email is: [email protected] )

    "Using Java�s �JFileChooser� does not work when called from a browser, probably due to security privileges issues. "
    You can do this if you sign the applet...

  • How can I allow or block the use of local storage by specific sites for all users in my domain.

    How can I allow or block the use of local storage by specific sites for all users in my domain.
    I tried to do this by MMS.cfg but it is not working, the problem is also described in your blog "http://forums.adobe.com/message/3272907".
    What I Want -: "I want to allow youtube for all the users in my domain and this should be listed in Control panel-->flash player-->storage-->local storage setting by site-->websites tab."

    Wow, cor-el... Did you -intend- your reply to be inane, inappropriate and completely inapplicable?
    How would that possibly do what I asked?
    You -might- consider '''''reading''''' the question, -=before=- you reply. And it's really okay to NOT REPLY if you just don't know. Just an idea.
    Feel better, real soon.

  • How to: 1. Submitt form as PDF and not XML 2. Allow user to save to computer Thanks

    How to:
    1. Submitt form as PDF and not XML
    2. Allow user to save to computer
    Thanks

    Thanks For the Post!!
    Please be advised that this forum is for discussions about
    the Acrobat.com online services only. Your best source of questions
    and answers for Acrobat would be in the
    Acrobat Windows
    Forums or the
    Acrobat Macintosh
    Forums.

Maybe you are looking for

  • Prosumer looking for the right desktop to edit hd footage...

    Hi Everybody, I have a question for all of you, but before I ask the question I have searched high and low for an answer to my question and although I've found people in similar situations, I need to find an answer for my specific needs. Okay here it

  • Error occured while provisioning using Database Application Table connector

    Hi, I am trying to provision using Database Application Table connector and OIM 10g. Provisioning is successful but the child data is not sitting in the database. Getting the below error Response: GCPROV.ProvTransportProvider.DBProvisioningTransport.

  • Is there in fact a real, live MOZILLA TECH SUPPORT PERSON who can respond??

    Is there ANYONE out there who can identify and correct the problem causing intermittent non-functionality of my ATT/Yahoo email on FF? Evidently this is indeed a FF issue, as my email works fine with another browser on my Ipad. Does Mozilla in fact h

  • Hp845c print size

    how do i change  the print size on this printer.. when you print something out it's small you can barley see it . any help

  • Can msconfig be used in XP for performance?

    Hi, Back in the CS3 days, there was an install technique that used start/run/msconfig  to disable nonessential services for an installation session.  The most important idea there was to check "hide all MS services" before you disabled anything. I ha