How do I create fillable sections that can be filled or ticked online and then signed?

Hi, I'm trying to make some fillable sections on a pdf file that is to be filled in online.  How do I do this?

In Acrobat you can Reader-enable the file. For Acrobat 11, the menu item to do this is: File > Save as Other > Reader Extended PDF > Enable More Tools
Do this as the last step before you distribute the form. Note that this isn't needed for Reader 11 since it is capable of saving a non-enabled PDF form that was created with Acrobat (as opposed to LiveCycle Designer).

Similar Messages

  • How do I create a form that can be filled out, saved with data, and returned?

    We don't want to use EchoSign or any kind of service or account. We just want to send a form to clients via email and have them returned to us with their data. Simple. Intuitive. Requires virtually no explanation or bother. Why can't I find any way to do this in Acrobat any more? Is it hidden, or completely disabled? (Acrobat Pro 10.1.7)

    In Acrobat you can Reader-enable the file. For Acrobat 11, the menu item to do this is: File > Save as Other > Reader Extended PDF > Enable More Tools
    Do this as the last step before you distribute the form. Note that this isn't needed for Reader 11 since it is capable of saving a non-enabled PDF form that was created with Acrobat (as opposed to LiveCycle Designer).

  • I want to create fillable PDF that can be used by many people running on both MAC and PC.  What Adobe product should I use?

    want to create fillable PDF that can be used by many people running on both MAC and PC.  What Adobe product should I use?

    Hans-Gunter
    Thanks so much.  I downloaded Acrobat XI.  It's been "extracting" for the past 30 minutes (even with a fast wi-fi).  Hope this is not a problem.
    Anne

  • Hi, how do I create a standalone installer for Mountain Lion, ie, download once and then no more broadband required, thanks?

    Hi, how do I create a standalone installer for Mountain Lion, ie, download once and then no more broadband required, thanks?
    Context is that my other computers are not mobile and I do not have broadband worth troubling for a 4GB download - so will go to Apple Store with MacBook Pro for first download.

    The easiest way is to download the installer but do not open it.
    Next, make a copy of it and store it where it won't get lost.
    Then take one of the copies and place into the applications directory and open it to begin the installer.
    This has saved me the trouble of ever having to download the installer twice, plus you can mess around with the installer and try different options without having to worry about not having a clean install file if needed.
    Best wishes

  • How do I create a letter that can then be attached to email

    How do I create a letter that then be attached to email? Thanks, Newbie

    Use a text editor or word processing program to create the letter. Then attach it to your email.
    Why are you asking in the Windows Compatibility forum?

  • How do i create a stensil that can be added into diffrent files of adobe reader?

    I want to create a stencil that can be used in multiple adobe files for quality check purpose. Will be helpfull if somebody helps me out on this.

    why are you saying
    Pat Willener wrote:
    Please stay in your own topic, and answer the questions asked!

  • Is there a format for at PDF form that can be filled out, saved locally and edited continually afterwards?

    hello
    on the html-based form http://www.samtaleterapi.com/oversigter/psykoterapi.html there isnt the functionality i want
    it can only be filled out and printed
    what i want is a form that can be filled out, saved locally on people's own computers, and  and that the local copy can be edited and saved anew continually
    can PDF do this?
    can the end users edit and save the form with no other program than adobe reader?
    if so, is this a specific format of PDF?
    and if so, how do i create it?
    thanks
    rasmus

    You can indeed create a PDF form that can be opened, filled out and saved by users of Adobe Reader. It simply requires one of the later versions of Adobe Acrobat. It has a function to enable this ability in PDF's.
    The one down side is that there are usage limits (how many times form data can be collected) that you would want to familiarize yourself with in advance to be sure you don't violate the EULA. Exactly how thos limitations work are up to interpretation...

  • How do I create DRM Licenses that can be used for Offline Playback?

    [ Background ]
    Typically, a license is acquired from the DRM license server when the client video player encounters a video that is DRM-protected.   However, some use cases call for the ability for end-users to be able to play DRM content when a network connection is not available to the device.
    For example - the user wants to download a video from their home, acquire a license to play the content, and then get onto a train/airplane where a network connection isn't available.  On the train/airplane/etc..., the end user expects to be able to watch their video that they downloaded at home.
    [ DRM Policy Requirements ]
    For this use case to be possible, the DRM license must be acquired when the network connection is available.  In addition, the DRM license must be allowed to persist on the device disk.  For this to be possible, one value must be present in the DRM policy:
    1. Offline License Caching must be set to 1 or higher.  This policy parameter indicates how many minutes a license is allowed to be persisted to disk once it's been acquired by the license server.
    [ Workflow ]
    Now that the content has been packaged with a DRM policy that allows for offline caching (persistance) of a license, the video player simply has to acquire the license before the network connection is lost.  This can be accomplished via the typical API calls that the Video Player Application Developer would use to do a normal DRM license acquisition (DRMManager.loadVoucher()).
    For example, by using the DRMManager ActionScript3 API: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/drm/DRMManage r.html
    For other platforms supported by Adobe Access DRM (iOS, Android, etc...), please refer to the appropriate documentation around playback of DRM content on how to pre-fetch the DRM license.
    [ Workflow - iOS ]
    Enabling offline playback using the Primetime Media Player SDK (PSDK) for iOS requires a bit of self-extraction & instantiation of the DRM Metadata from the m3u8.  The reason for this is that as of PSDK v1.2, the PSDK APIs do not expose an mechanism for extracting the DRM metadata.
    You must manually (outside of the PSDK) get access to the DRM Metadata, instantiate a DRMContentData, and then use the DRMManager class to obtain a license for your content.  Afterwards, you may download your HLS content and stream it to your video player application locally.  Since the DRM license was pre-acquired before playback of the downloaded HLS content, your video player application does not require a network connection to acquire a DRM license.  Below is a code sample of obtaining the DRM Metadata from the m3u8 manifest and then using it with the DRMManager singleton.
    /*          Main entry points, playlistURL is url to a top level m3u8. */
    void PlayContent(NSURL* playlistURL)
              DRMManager* drmManager = [DRMManager sharedManager];
              if ([drmManager isSupportedPlaylist:playlistURL])
      // First we need a handler for any errors that may occur
                        DRMOperationError errorHandler = ^(NSUInteger major, NSUInteger minor, NSError* nsErr)
      /*          report error. */
      /*          Synchronous call to DRM manager to extract DRM metadata out of the playlist. */
                        [_drmManager getUpdatedPlaylist:playlistURL
                                                                                      error:errorHandler
                                                                                    updated:^(NSURL *newPlaylist, DRMMetadata *newMetadata)
                                   (void) newPlaylist; /*          updated URL is not used for this code sample. */
                                   if (newMetadata)
                                                      Assumes we are going to try to satisfy requirements to acquire license on the first policy in the metadata.
                                                      If there are multiple policies in the metadata, only 1 of them need to be satisfied for the license request to
                                                      go through.                                          
                                             DRMPolicy* drmPolicy = NULL;
                                             for (id object in newMetadata.policies) {
                                                       DRMPolicy* drmPolicy = (DRMPolicy*)object;
                                                       break;
                                             if (drmPolicy == NULL)
                                                       /*          report error, this metadata is malformed. DRM metadata must contain at least 1 policy*/
                                             if (drmPolicy.authenticationMethod != ANONYMOUS)
    However, please note that the above only describes the DRM license handling for offline playback.  The actual playback of video using the Primetime client SDK is not officially supported.  You will have to use your own mechanism of saving and playback back HLS content locally within the application.
    Theoretically, it is possible to save the HLS stream to the app, and then embed an HTTP server to the app to stream the HLS content back into the application.  However, the Primetime client SDK doesn't not expose a way to do this directly, since it's not yet supported.
    cheers,
    /Eric.

    no, the headers, here's a picture of the headers on this page. When I use SEO for Firefox, it sees them on every other page but never on my iweb sites.
    Quickpost this image to Myspace, Digg, Facebook, and others!

  • How do I create a form that can be edited, then mailed, then edited again?

    I am trying to create a form that would be emailed to one person, they would complete part of it, email it on to a second user who would then complete another part based on the input from the first, and then forward it onto a third for their input.
    the issue I have is that once the second person enters their information, they can not save their additions and continue the process.
    any help would be greatly appreciated.

    Interactive forms cannot be saved locally using Reader. To do local save you either have to have Acrobat on each desktop or have the form Reader-extended to enable local save in Reader. A form is Reader-enabled using the LiveCycle Reader Extensions server component.
    Steve

  • Create a form that can be filled out and e-mailed from a browser

    Looking to create a fillable form for my website that can be sent directly from the browser without having to printed out ad mailed. How?
    Thanks

    In Acrobat you can Reader-enable the file. For Acrobat 11, the menu item to do this is: File > Save as Other > Reader Extended PDF > Enable More Tools
    Do this as the last step before you distribute the form. Note that this isn't needed for Reader 11 since it is capable of saving a non-enabled PDF form that was created with Acrobat (as opposed to LiveCycle Designer).

  • How Do I Add A PDF That Can Be Filled Out And Submitted To My Email

    I just finished converting an application to PDF using the forms wizard. This works really well as it makes it so they can only fill in the required information and not alter any of the other form. Right now I just have it posted as a downloadable file that they can save fill out and email back in. However what I'm wanting to do is have it where they can just open the PDF in another tab, fill it out and hit submit and have that automatically sent to my email account. What I've done is use:
    <a href="digital_application.pdf">Click To View</a>
    This in essence will open the application in another tab of the browser where they can fill everything out. However thus far their only option is either a "Print" or "Save" button. I'd like to add a "Submit" button somehow to where it's emailed to an account I've set up, or have it save to a file on the server. I don't know if this is something I have to code into the site, or If I can make a button on the PDF itself, or there's an option to make the PDF display a "Submit" button, just need a little help. Thanks!

    You use the 'submit' method to submit the PDF's FDF to web based script page and have that page perform the email function.
    http://www.planetpdf.com/developer/article.asp?ContentID=Web_Hosting_PDFs&gid=6526

  • How do I create an application that can be printed AND filled out online via my website?

    Is InDesign the best program to do this in?

    Webform with HTML would be best.
    But depends on a lot of things...
    InDesign is not a web authoring program.
    But it can produce fillable forms ... which are PDF.
    So if you want it on your site - a webform is best.
    If you want it as link they fill out and submit then InDesign.

  • How to create two UILoader that can be nested with each other and save the parent UILoader - as3

    Hi all,
    I am currently researching on the problem but I can't find any solution in the web.
    Here is my problem:
    I have two UILoader instance (loader_inner and loader_outer) I need to have loader_inner to be part of the loader_outer. I have also a button that will save all contents on loader_outer. Unluckily, when I trigger the save function, I only got  a white image file. I was expecting that the contents of loader_outer (with loader_inner) to be saved also.
    Note: background_1.jpg and rabbit.jpg are present in the directory. loader_outer and loader_inner where manually placed in the scene using UILoader component.
    Here is a code snippet:
    loader_inner.load(new URLRequest("background_1.jpg"));
    loader_outer.load(new URLRequest("rabbit.jpg"));
    loader_outer.addChild(loader_inner);
    var bitmapData:BitmapData = new BitmapData(loader_outer.width,loader_outer.height);
    bitmapData.draw(loader_outer);
    var jpgencoder:JPGEncoder = new JPGEncoder(100);
    var mybyte:ByteArray = jpgencoder.encode(bitmapData);
    var myfile:FileReference = new FileReference();
    myfile.save(mybyte,"test.jpg");
    My expected output should be that background_1.jpg and rabbit.jpg should be saved in an image file and must be positioned like the ones placed in the scene.
    Any ideas on this?
    Thanks ahead.

    the load method is asynchronous so you don't want to apply that draw method until both loads are complete.  ie, use a complete listener:
    loader_inner.addEventListener(Event.COMPLETE.loadcompleteF);
    loader_outer.addEventListener(Event.COMPLETE,loadcompleteF);
    var loadNum:int=0;
    loader_inner.load(new URLRequest("background_1.jpg"));
    loader_outer.load(new URLRequest("rabbit.jpg"));
    loader_outer.addChild(loader_inner);
    // you should declare these variables outside this function so there are no gc issues.
    function loadcompleteF(e:Event):void{
    loadNum++;
    if(loadNum==2){
    var bitmapData:BitmapData = new BitmapData(loader_outer.width,loader_outer.height);
    bitmapData.draw(loader_outer);
    var jpgencoder:JPGEncoder = new JPGEncoder(100);
    var mybyte:ByteArray = jpgencoder.encode(bitmapData);
    var myfile:FileReference = new FileReference();
    myfile.save(mybyte,"test.jpg");

  • How do i create a header that can be seen by seo for firefox?

    So I've tried to make a bunch of different headers in iweb but they never actually publish as headers but as something different. When I run SEO for firefox it never detects any headers in my entire page. Is there a way to create a true header in iweb?

    no, the headers, here's a picture of the headers on this page. When I use SEO for Firefox, it sees them on every other page but never on my iweb sites.
    Quickpost this image to Myspace, Digg, Facebook, and others!

  • How do I build a table that can be filled in by the user?

    I'm trying to build a form where the user can easily add a qty to order a size. I haven't been able to do this other than adding a text field for every option. Can you build a table that would do the same thing (see my sample below)? Even better, is there a way to get it to total? All ideas appreciated!
    Small
    Med
    Large
    XL
    Total
    Style A
    Style B

    Hi,
    You already have a good start at generating the table. All you need to do is change the cells from static text to either a numeric field or text field. You can do this by dragging a numericField from the Object Library and placing it inside the cell.
    Once you have the numeric field in place, you can edit the properties, font, alignment, currency, validation, etc. Then copy and paste the field into similar cells and change the names, for example A_small,  B_small etc.
    The "Total" numeric field could have a Formcalc in the calculate event:
    $ = A_small + A_med + A_large + A_xl
    This is on the basis of a static table where you design all of the rows that will be available to the user.
    You can also set up dynamic tables where the uer can add additional rows. There are plenty of good examples in the LC help and on the forums.
    Good luck,
    Niall

Maybe you are looking for