Need help with fillable pdf to be made into e-book format

I have made a fillable pdf form using livecycle. I want this form to be used an an e-book. I have contacted kindle and they advised they can't a pdf file from me and it needs to be in html or microsoft word format. How can i convert my pdf form to a fillable html form and what software should i use?

Hi,
This is not the right forum for this topic, you may want to check out the Livecycle forum, http://forums.adobe.com/community/livecycle.
Hope this help,
Perry

Similar Messages

  • I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    You mean an image such as a scanned document?
    If that is the case, the file doesn't contain any text for Reader Out Loud to read. In order to fix that, you would need an application such as Adobe Acrobat that does Optical Character Recognition to convert the images to actual text.
    You can also try to export the file as a Word document or something else using ExportPDF which I believe offers OCR and is cheaper than Acrobat.

  • I need help with creating PDF with Preview...

    Hello
    I need help with creating PDF documetns with Preview. Just a few days ago, I was able to create PDF files composed of scanned images (notes) and everything worked perfectly fine. However, today I was having trouble with it. I scanned my notebook and saved 8 images/pages in jpeg format. I did the usual routine with Preview (select all files>print>PDF>save as PDF>then save). Well this worked a few days ago, but when I tried it today, I was able to save it, but the after opening the PDF file that I have saved, only the first page was there. The other pages weren't included. I really don't see anything wrong with what I'm doing. I really need help. Any help would be greatly appreciated.

    I can't find it.  I went into advanced and then document processing but no batch sequence is there and everything is grayed out.
    EDIT: I realized that you cant do batch sequences in standard.  Any other ideas?

  • Need Help with this PDF generation

    Greetings,
    Our company had a subcontractor (that is no longer
    available) create a small system for a client that allows the
    client to input some text in a flash form, and the system places
    the text at a certain spot on a previosly created PDF document. For
    80% of the users, this works perfectly and then can print and save
    the customized pdf document. For 20% of users, they can see and
    print the customized pdf, but when they save it, there is no
    customization (area is blank). Can anyone help us understand why
    this happens, and how to fix?
    HERE ARE DIRECT NOTES FROM OUR CLIENT:
    Users are able to input their customized info.
    The customized info shows up in the PDF on the brochure.
    Users can print the brochure with the customized info.
    Users can save the BLANK PDF (without their info)
    Users can NOT save the PDF with their info in it.
    The exact message is in the top of the window with the PDF
    brochure and says "please fill out the following form. You can not
    save data typed into this form. Please print your completed form if
    you would like a copy for your records."
    Here is the input
    form, feel free to test.
    When you input into the brochure1.cfm Form, it sends the data
    to
    http://www.caduceuswebs.net/brochure1output.cfm
    , which then spanwns the customized pdf to open.
    If you want to see the native pdf, it is here:
    CLICK
    HERE
    HERE IS THE CODE FOR BROCHURE1.CFM
    <CFFORM ACTION="brochure1output.cfm" METHOD="POST"
    ENABLECAB="YES" format="flash" width="470" height="550">
    <div align="center">
    <table width="470" border="0" align="center"
    cellpadding="0" cellspacing="0" bordercolor="#990066">
    <tr>
    <td><cfinput type="TEXT" name="name" id="name"
    label="Name" maxlength="60"></td>
    </tr>
    <tr>
    <td><CFINPUT TYPE="TEXT" NAME="address1"
    id="address1" label="Address" hspace="470">
    </P></td>
    </tr>
    <tr>
    <td><CFinput type="text" name="address2"
    id="address2" label="Address Cont." /></td>
    </tr>
    <tr>
    <td><CFinput type="text" name="state" id="state"
    label="City / State"/></td>
    </tr>
    <tr>
    <td><CFinput type="text" name="zip" id="zip"
    label="Zip Code"/></td>
    </tr>
    <tr>
    <td><CFinput type="text" name="phone" id="phone"
    label="Phone Number"/></td>
    </tr>
    <tr>
    <td><table width="470" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td width="100"><img src="img/transparent.gif"
    width="100" height="1" border="0" /></td>
    <td width="373"><cfinput type="SUBMIT"
    value="Generate Customized Brochure 1" name="Submit"></td>
    </tr>
    </table></td>
    </tr>
    </table>
    </div>
    </CFFORM>
    HERE IS THE CODE FOR BROCHURE1OUTPUT.CFM:
    <CFOUTPUT><CFSET
    date="#DateFormat(now())#"></CFOUTPUT>
    <CFSETTING ENABLECFOUTPUTONLY="YES"
    SHOWDEBUGOUTPUT="NO">
    <CFCONTENT TYPE="APPLICATION/vnd.fdf">
    <CFOUTPUT>%FDF-1.2
    1 0 obj <<
    /FDF <<
    /Fields
    <<
    /T(name)
    /V(#form.name#)
    >>
    <<
    /T(address1)
    /V(#form.address1#)
    >>
    <<
    /T(address2)
    /V(#form.address2#)
    >>
    <<
    /T(state)
    /V(#form.state#)
    >>
    <<
    /T(zip)
    /V(#form.zip#)
    >>
    <<
    /T(phone)
    /V(#form.phone#)
    >>
    /F(
    http://www.caduceuswebs.net/pdfs/brochure1.pdf)
    >>
    >>
    endobj
    trailer
    <</Root 1 0 R>>
    %%EOF
    </CFOUTPUT>

    rogers42 wrote:
    Hi,
    Thanks for the suggestion.
    While getting rid of the ";" helps, but the output of the select statement is not displayed?When you do a SELECT statement in PL/SQL, you have to select the results into variables or arrays.
    Try something like this:
    DECLARE
         CURSOR C1 IS
                       SELECT  TABLE_NAME
                FROM    DB_MGMT.CTRL_TAB_RETENTION
                WHERE   RETENTION_PERIOD_IN_MONTHS = 11
                AND     rownum                  < 2;
         min_dt_skey    NUMBER;
         max_dt_skey    NUMBER;
         stmt            VARCHAR2 (100);
    BEGIN
        FOR i IN C1
         LOOP
            -- dbms_output.put_line('Table Name: ' || i.TABLE_NAME);
            stmt :='SELECT min(DT_SKEY), max(DT_SKEY) FROM DWH_RSRC_PERF.' || i.TABLE_NAME;
            dbms_output.put_line(stmt);
            EXECUTE IMMEDIATE stmt
             INTO min_dt_skey, max_dt_skey;
         dbms_output.put_line (  min_dt_skey   || ' = MIN (dt_skey), '
                        || max_dt_skey   || ' = MAX (dt_skey) for table '
                        || i.table_name
        END LOOP;
    END;

  • Need Help with Reducing PDF Size

    Hey I'm having trouble reducing my PDF file sizes.
    First off, they were school projects created in Adobe Illustrator that I save to PDF form. 
    I'm trying to email several of them to potential employers (through Gmail) but the file size limit is 25MB, and some of my files exceed that limit. 
    For example I have one PDF file that is 72MB. 
    I've compressed the file by right-clicking on the icon --- I've also reduced the file in Acrobat and that doesn't do anything. 
    Now I try to reduce the files and Acrobat tells me:
    "The PDF document contained image masks that were not downloaded."
    So can anyone help me?  I would greatly appreciate this from everyone who has time to comment and give me suggestions/help.
    Thanks.

    If you can find when a pictures is loaded (not when it is getting loaded, but after it has just finished being loaded), that is when you can check the size using the Loader (loader.width and loader.height).

  • Need help with a pdf

    First link on the following page:
    http://www.uscis.gov/portal/site/uscis/menuitem.5af9bb95919f35e66f614176543f6d1a /?vgnextoid=79a7105b5904d010VgnVCM10000048f3d6a1RCRD&vgnextchannel=7d316c0b4c3bf 110VgnVCM1000004718190aRCRD
    I'm an attorney and need that form to provide services for a client.  Safari/Preview won't open the file; in fact, the file itself tells me to download the latest version of Acrobat Reader.  I'm hoping someone can offer me an alternative.  I've installed Abode's Reader before and experienced nothing but headaches, slowness, crashes, lost (important) files.  If I have to install it, I will, but it sure would be a blessing if I could avoid it.  Is there a worksaround for Preview?  3rd-party alternative?

    It can be opened; it's just not the right document. The content you see is what's in the file. The other files on that page are the same. If you can get the attention of whoever is supposed to be maintaining that site, you should report the problem.

  • Help! Need help with Interactive PDF

    I seems to work fine when I view it in my InDesign CS6 folio Builder. But when I click folio producer to view it, it shows up fragmented when I click on "open" in the  Digital Publishing organizer.

    You've posted here and the DPS forum and neither one of your posts makes any
    sense at all. Please back up and provide full details including screenshots.
    If this is a DPS issue and not PDF then please post there.

  • Need help with saving pdf form

    I created a quote form for our sales people to fill out and email to their customers. I can't figure out how to set it up so that after they fill out the form it can be saved with the field locked so they cant be changed. Is that even a possibility? I've been working on this for 2 days  and just keep going in circles with it.

    You can set up the form so that the fields get set to read-only after the salesman completes the form but before sending it out. This idea is discussed in this topic: http://forums.adobe.com/message/3314067#3314067
    If you get stuck, post again.

  • Need help with export PDF options

    I want to go into edit job options and set everything for the highest possible quality exported PDF. Can someone please tell me how to 
    set these options for the highest quality?  Many thanks.

    Sorry I was so uninformative. I am using Pagemaker 7.0.
    OS is Windows 7 Home Premium.
    I have tried to edit the job options and I have saved my new settings - but I can't seem to
    get a high quality PDF exported. I know that my file is good, because I have previously gotten
    a high quality PDF exported from my older windows machine running XP pro.

  • Need help with converting PDF files to word document.

    When attempting to convert PDF files to word document, after clicking on "convert" a message "error occurred while signing in" displays. Don't know why??? I'm logged into my account and haven't been able to convert documents.

    Assuming that you try to use the ExportPDF service, I am moving your topic to the ExportPDF forum.
    Just for completeness, can you post your operating system, browser, and Adobe Reader version?

  • I need help with one chapter of the Logic training series book...

    I've been studying from the Apple Pro training series manual - Logic pro 9, Professional Audio Production. I'm keen to sit the exam asap, and move onto the next book in the series, but may need a little coaching on one chapter - namely Appendix A, 'Using External MIDI devices.' I've never used Logic in this way, and only have one MIDI piano to work with at home. Therefore recreating what is required in the chapter, and getting my head around the material is proving difficult. Therefore I have two questions - 1) Will this section be tested in the exam?  And if so, 2) Is there anyone in the Berkshire / Surrey / West London area who could help me with a quick lesson? (I'd be prepared to pay, obviously) I've been using Logic for a number of years, so would prefer not to have to spend serious money on a full blown course.
    I'm keen to sit the exam over half term if possibe - w/c 4th June 2012.
    Thanks for your help.
    Arron

    Hi
    Appendix A covers setting up Audio MIDI Setup for a "real" external Synth, and then getting Logic to create a track to send MIDi out to that Synth. Finally, you set up the Program names.
    You should be able to go through the first part (and do it) providing you have some kind of MIDI Interface showing up in AMS. Create a "dummy" MIDI 'Synth' and cable it up.
    Once done, this 'dummy' synth will appear in Logic's Library for External Instrument tracks. Without an real synth you will not be able to hear any results.
    You could run through the process for setting up the program names, but without something actually attached, you will not be able to hear/see the changes.
    You could run in 32bit mode and use the "Software" quicktime synth, or maybe sort something using an IAC bus, but frankly, that's more likely to confuse the **** out of you at this stage.
    HTH
    CCT

  • Need help with convertor from cd-r VCD into dvd format compatibility

    my sister got married at India, the video was burned in cd-r as in VCD and it will play in USA DVD PLAYER but however it wont play on powerbook or any laptop. How do I convert the setting and make it enable to view on laptop or IMovie or IDVD.
    Thanks!

    Well, you could try doing a crc check of the cd using crc.exe.  It's been of great use to me recently.
    open up a command window, switch to the directory where you've extracted crc.exe and run (change x to your cd/dvd drive letter):
    crc x:

  • Need help with my graphic calculator!!!

    Hello everybody!! I need help with my little program I made.... The problem is that I am unable to use to calculate but it is possible to compile the code!! What should I do?? Thanks in advance.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Aritmetik extends JFrame implements ActionListener{
         private JLabel l1 = new JLabel("Tal1: ", JLabel.LEFT);
         private JLabel l2 = new JLabel("Tal2: ", JLabel.LEFT);
         private JLabel l3 = new JLabel("Resultat",JLabel.LEFT);
         private JLabel l4 = new JLabel(" ", JLabel.RIGHT);
         private JTextField t1 = new JTextField(" ",10);
         private JTextField t2 = new JTextField(" ",10);
         private JButton b1 = new JButton("+");
         private JButton b2 = new JButton("-");
         private JButton b3 = new JButton("*");
         private JButton b4 = new JButton("/");
         public Aritmetik(){
              Container v = getContentPane();
              v.setLayout(new GridLayout(5,2));
              v.add(l1);
              v.add(t1);
              v.add(l2);
              v.add(t2);
              v.add(b1);
              v.add(b2);
              v.add(b3);
              v.add(b4);
              v.add(l3);
              v.add(l4);
              b1.addActionListener(this);
              b2.addActionListener(this);
              b3.addActionListener(this);
              b4.addActionListener(this);
              pack();
              setVisible(true);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
         public void actionPerformed(ActionEvent e){
              int tal1 = Integer.parseInt(t1.getText());
              int tal2 = Integer.parseInt(t2.getText());
                   if(e.getSource() == b1){
              if(t1.getText().equals("") || t2.getText().equals(""))
                                       JOptionPane.showMessageDialog(null, "Mata in tal!");
                   else{
                        l3.setText("Resultat ");
                   l4.setText(" " + (tal1+tal2));
                   else if(e.getSource() == b2){
                        int sub = tal1-tal2;
                        l4.setText(" " + (sub));
                   else if(e.getSource() == b3){
                        int multi = tal1*tal2;
                        l4.setText(" " + (multi));
                   else if(e.getSource() == b4){
                        int div = tal1/tal2;
                        l4.setText(" " + (div));
                   public static void main(String[] arg){
                   Aritmetik A =new Aritmetik();

    Here is your problem:
    public void actionPerformed(ActionEvent e){
      int tal1 = Integer.parseInt(t1.getText().trim());  // add the trim()
      int tal2 = Integer.parseInt(t2.getText().trim());  // add the trim()
      if(e.getSource() == b1){
        if(t1.getText().equals("") || t2.getText().equals(""))
          JOptionPane.showMessageDialog(null, "Mata in tal!");
        else{
          l3.setText("Resultat ");
          l4.setText(" " + (tal1+tal2));
      }... Better ...
    public void actionPerformed(ActionEvent e)  throws NumberFormatException {
      String tala = t1.getText().trim();
      String talb = t2.getText().trim();
      if ( tala == null  ||  "".equals(tala)  ||  talb == null  ||  "".equals(talb) ) {
        JOptionPane.showMessageDialog(null, "Mata in tal!");
        return();
      int tal1 = Integer.parseInt(tala);
      int tal2 = Integer.parseInt(talb);
      if(e.getSource() == b1){
        l3.setText("Resultat ");
        l4.setText(" " + (tal1+tal2));
      else if(e.getSource() == b2){
        int sub = tal1-tal2;
        l4.setText(" " + (sub));
      else if(e.getSource() == b3){
        int multi = tal1*tal2;
        l4.setText(" " + (multi));
      else if(e.getSource() == b4){
        int div = tal1/tal2;
        l4.setText(" " + (div));
    }Message was edited by:
    abillconsl

  • Need some help with downloading PDF's from the net.

    need some help with downloading PDF's from the net.  Each time I try to click on a link from a website, if it takes me to a new screen to view a pdf, it just comes up as a blank black screen?  any suggestions?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    For MS Visio (any version) only the appropriate version of Acrobat *PRO* provides PDFMaker for Visio.
    For Visio 2013 specifically you must have Acrobat XI Pro (updated to at least 11.0.1).
    See: 
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html  
    Be well...

Maybe you are looking for