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.

Similar Messages

  • How can I open and fill out a Secured Adobe PDF job application?

    How can I open and fill out a Secured Adobe PDF job application?

    Hi margueritew68053277,
    You should be able to fill that out using the free Adobe Reader, or Adobe Fill & Sign.
    Best,
    Sara

  • How do I return users to webpage they were on after filling out online form ?

    How do I return users to webpage they were on after filling out online form ?

    Add a Redirect URL to the form.
    This tutorial explains:
    http://forums.adobe.com/thread/869660

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

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

  • 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

  • Best way to create a form that can be emailed and also secured down.

    Hi,
    I work in a manufacturing company that tests each raw material as it comes in the door. The results from the tests are currently handwritten on a template form that is printed first. The sheets are then sent to another department who types up the results and saves them individually as a Word document. There is a HUGE paper trail and increased margin for error. Not to mention the sheer time!
    I am trying to streamline the process is a little by creating a PDF form in which the results can be entered and the form emailed to the other department. I know how to create the form and add a "submit" button which opens up the Outlook client. However, I want to make sure the form cannot be saved by the lab personnel, instead I want to give them the abilty to enter the data and email.Thisis an interim solution until a proper lab management system can be put into place.
    What is the best practice around something like this? Any other suggestions or tips will be appreciated.
    Thank you.

    Can I somehow collect the data in another software such as Excel?
    I would still need the PDF form completed and emailed over but if I can collect the data externally, that would be nice.

  • I want to create a newlsetter that can be printed, emailed and downloadable on a website.

    Is it as simple as saving the newsletter in different formats? What are the steps I need to take so that the newsletter can be printed, emailed and used on a website?
    Thanks

    A PDF will fit the bill.

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

  • 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 to save a document/ resume that can be sent and opened on a pc

    Im new to Mac. If I create my resume in Pages how should save it so when I send it, it can be opened by someone using word on a pc?

    When saving the file, you should save it in a format that Word can support.
    http://en.wikipedia.org/wiki/Microsoft_Word#File_formats should help

  • Creating basic forms that can be scored and print out as PDF

    I'm looking to hire someone to help me with a project.
    Very simple need, but I want it to be clean and work perfectly. Basically I need the user to be able to click check boxs or write information into a form. I want the form to score the check boxes and give a result. The write-ins will just stay. I want that form to them be given to the user as a PFD.
    If you know what you're doing and want a job, I will hire you for this. I have several of these items to do. I'm happy to pay you whatever a reasonable fee would be.
    If you're interesting, please contact me.
    Thank you,
    Stephen

    Kind of sever... hmmm... I don't know. I use godaddy.com
    Does it support PHP and MySql.... hmm... I host through godaddy. I think so
    The forms are highly variable. Let's start with this one: clinical criteria for major depressive disorder (as below). I would like the user to be able to click yes/no and for it to keep track.
    Criteria for Major Depressive Episode
    A. Five (or more) of the following symptoms have been present during the same 2-week period and represent a
    change from previous functioning; at least one of the symptoms is either 1) depressed mood or 2) loss of interest
    or pleasure (do not include symptoms that are clearly attributable to another medical condition
    1. Depressed mood most of the day, nearly every day as indicated by either subjective report (eg, feels sad, empty,
    hopeless) or observation made by others (eg, appears tearful)
    2. Markedly diminished interest or pleasure in all, or almost all, activities most of the day, nearly every day (as
    indicated by either subjective account or observation)
    3. Significant weight loss when not dieting or weight gain (eg, a change of more than 5% body weight in a month), or
    decrease or increase in appetite nearly every day
    4. Insomnia or hypersomnia nearly every day
    5. Psychomotor agitation or retardation nearly every day (observable by others, not merely subjective feelings of
    restlessness or being slowed down)
    6. Fatigue or loss of energy nearly every day
    7. Feelings of worthlessness or excessive or inappropriate guilt (which may be delusional) nearly every day (not
    merely self-reproach or guilt about being sick)
    8. Diminished ability to think or concentrate, or indecisiveness, nearly every day (either by subjective account or as
    observed by others)
    9. Recurrent thoughts of death (not just fear of dying), recurrent suicidal ideation without a specific plan, or a suicide
    attempt or a specific plan for committing suicide
    B. The symptoms cause clinically significant distress or impairment in social, occupational, or other important areas
    of functioning
    C. The episode is not attributable to the physiological effects of a substance or to another medical condition
    D. The occurrence of the major depressive episode is not better explained by schizoaffective disorder,
    schizophrenia, schizophreniform disorder, delusional disorder, or other specified and unspecified schizophrenia
    spectrum and other psychotic disorders.
    E. There has never been a manic episode or a hypomanic episode.

  • How do I print a interactive form out? It allows printing and filling.

    Hi, I'm trying to print out an interactive form that I filled out and then saved on my hard drive. The author allows printing and filling out of the PDF when it was created. I'm running Windows 7 64-bit and have Adobe Reader XI (11.0.06) installed along with the current drivers for my compatible printer. Within the same PDF the first sheet "instruction sheed" is an all text flat form, which prints just fine. The problem lies when I try to print other sections of the PDF, When I try to print it all I get is the header and a footer that the author created, but all the spaces where questions/ text and my fill in answers don't show up on the print preview image or when the printed sheet comes out of my printer.
         I have tried to print as an image without success. I don't think its an author issuse because it was released out of a California Department for several houndred/thousands of others. Please if you have any ideas or questions i look forward to any advice.

    Sorry I forgot to add that the PDF is devided by a "Chapter" style cover face that devided multiple sets of forms in to categories. At the bottome of these categories is a "Print whole document" which can only be clicked once the whole thing has been filled out. Do to some information over lap some dates don't follow the (time line order) it requirest to fill in the data so two of the categories show up as incomplete. Take a look at the document yourself, maybe I NEED to rewrite the information and see if that works.
    *Edit* Looks like I CAN print a blank form at the begining when it asked me if i want a blank form, will try to rearange dates so it will show as all COMPLET.
    PDF file can be found at the California government website:
    http://www.chp.ca.gov/recruiting/pdf/Chp446.pdf
    http://www.chp.ca.gov/recruiting/pdf/Chp446.pdf

Maybe you are looking for