Html Conversion Pdf Files

Hi... i've installed Dynamic Converter in my COntent server Instance, it works with doc, xls, txt files but
pdf file it does'nt work. any help?

You need to set application/pdf in Conversion Formats. Following are the steps
ContentServer --> Administration --> Dynamic Converter Admin --> Configuration Settings
Under the section Conversion Formats, pick application/pdf in the drop down list and make sure this is added to the list in the text field.
Cheers
Aparna

Similar Messages

  • How to open an html or pdf file:

    hi dear all,
    i have a file html or pdf for user help. how to open it from my FORM button.
    i am using Form 10g.
    Thanks in advance.
    Muhammad Nadeem
    [email protected]

    thanks dear,
    here is different paths in this file:
    # Virtual path mapping for Forms Java jar and class files (codebase)
    AliasMatch ^/forms/java/(..*) "F:\DevSuiteHome_1/forms/java/$1"
    # Virtual path for JInitiator downloadable executable and download page
    AliasMatch ^/forms/jinitiator/(..*) "F:\DevSuiteHome_1/jinit/$1"
    # Virtual path for runform.htm (used to run a form for testing purposes)
    AliasMatch ^/forms/html/(..*) "F:\DevSuiteHome_1/tools/web/html/$1"
    # Virtual path for webutil
    AliasMatch ^/forms/webutil/(..*) "F:\DevSuiteHome_1/forms/webutil/$1"
    now which path i have to edit.
    Regards:
    Muhammad Nadeem

  • HTML Container - pdf-file opens a new window

    I use the ITS Webservice PZ04.
    There is included a html container who shows the pdf-file inside this area.
    Now I have the effect, that this pdf-file will opena a new window, but not inside the html container!?
    First action before I have had this effect was the MS question-alert 'How you will open this file' Open/Download/Cancel - you know. - it never done before -
    What can I do to open my pdf-file inside the html container? It runs some times.
    Thanks!

    thank you for your answer, but it wasn't the solution.
    I don't open the iView in a new window.
    I open the iView (as IAC WebService via ITS) and the applacation generated a html container with pdf file!
    And this pdf-file opens in a new window.
    The Application runs up to now very good.
    I think any value was changed and I don't know which.
    It's possible the modification solved under MS or adobe!?
    Solution: First Deinstallation and then Installation of Acrobate Reader.
    Message was edited by: Ronald Kohn

  • Conversion .pdf file to .jpg files

    How could I convert a .pdf file into .jpg or .jpeg files. With some .pdf files I can do this by "Save as type" - .jpg. But many .pdf files don't have this option. Do anyone know why or where can enable this option?

    I would like to know also, How

  • How can I stop Photoshop CS5.5 taking control of html and pdf files without the user's consent?

    Our client uses CS 5.5, and Photoshop will continuously take control of pdf and html files. This is without any interraction from the user, and after setting it back to the desired settings (pdf - Reader, html - Chrome), after some time (and doesn't seem to be related to anything the user does, restarting machine etc), Photoshop will snatch control of either or both of these extensions.
    Could you please advise on how best to deal with this issue? Resetting Photoshop preferences does work for a time but it is not long before the issues arise again.

    Thank you for the link, it is an encouraging read as I have not yet found anything even similar to my issue via searches.
    The machine has never had a previous version of Photoshop installed, but it does have Elements, which is used for scanning documents (which are then edited in photoshop and converted to pdf there). It is an involved process.
    Although I appreciate the link and your time, I'm afraid the issue in the link is the opposite issue - the other user cannot set the default, whereas my user cannot unset the default.

  • Export Internal Table To E-Mail via attachted html or PDF file

    i have an ALV display report for which the data is in the internal table.
    Can anybody tell me how can i attach the simple  internal table as an attachment to the mail ...
    give me example  code if possible
    Maximum points will be given
    thanks in advance.

    here is the sample code but this code gives you two attachemetns as .xls files you try analyse and try it for PDF
    you have to change in the packed_list parameter that is passed to the FM.
    REPORT ZDOC_AS_EMAIL_3.
    *& Report ZEMAIL_ATTACH *
    *& Example of sending external email via SAPCONNECT *
    TABLES: ekko.
    PARAMETERS: p_email TYPE somlreci1-receiver.
    TYPES: BEGIN OF t_ekpo,
    ebeln TYPE ekpo-ebeln,
    ebelp TYPE ekpo-ebelp,
    aedat TYPE ekpo-aedat,
    matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
    wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
    ebeln(10) TYPE c,
    ebelp(5) TYPE c,
    aedat(8) TYPE c,
    matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA: it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
    WITH HEADER LINE.
    DATA: it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
    WITH HEADER LINE.
    DATA: l_t_objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    DATA: t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
    t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    w_cnt TYPE i,
    w_sent_all(1) TYPE c,
    w_doc_data LIKE sodocchgi1,
    gd_error TYPE sy-subrc,
    gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
    *Retrieve sample data from table ekpo
    PERFORM data_retrieval.
    *Populate table with detaisl to be entered into .xls file
    PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    *Populate message body text
    perform populate_email_message_body.
    *Send file by email as .xls speadsheet
    PERFORM send_file_as_email_attachment
                        tables it_message
                                it_attach
                            using p_email
        'Example . xls documnet attachment'
                                     'XLS'
                                'filename'
                        changing gd_error
                              gd_reciever.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    PERFORM initiate_mail_execute_program.
    *& Form DATA_RETRIEVAL
    *Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
    SELECT ebeln ebelp aedat matnr
    UP TO 10 ROWS
    FROM ekpo
    INTO TABLE it_ekpo.
    ENDFORM. " DATA_RETRIEVAL
    *& Form BUILD_XLS_DATA_TABLE
    *Build data table for .xls document
    FORM build_xls_data_table.
    *CONSTANTS: con_cret(2) TYPE c VALUE '0D', "OK for non Unicode
    *con_tab(2) TYPE c VALUE '09'. "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    class cl_abap_char_utilities definition load.
    constants:
    con_tab type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
    con_cret type c value cl_abap_char_utilities=>CR_LF.
    CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
    INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach INTO it_attach.
    APPEND it_attach.
    LOOP AT it_ekpo INTO wa_charekpo.
    CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
    wa_charekpo-aedat wa_charekpo-matnr
    INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach INTO it_attach.
    APPEND it_attach.
    ENDLOOP.
    ENDFORM. " BUILD_XLS_DATA_TABLE
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    *Send email
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                           using p_email
                                                p_mtitle
                                                p_format
                                              p_filename
                                        p_attdescription
                                        p_sender_address
                                    p_sender_addres_type
                                        changing p_error
                                              p_reciever.
    DATA: ld_error TYPE sy-subrc,
    ld_reciever TYPE sy-subrc,
    ld_mtitle LIKE sodocchgi1-obj_descr,
    ld_email LIKE somlreci1-receiver,
    ld_format TYPE so_obj_tp ,
    ld_attdescription TYPE so_obj_nam ,
    ld_attfilename TYPE so_obj_des ,
    ld_sender_address LIKE soextreci1-receiver,
    ld_sender_address_type LIKE soextreci1-adr_typ,
    ld_receiver LIKE sy-subrc.
    ld_email = p_email.
    ld_mtitle = p_mtitle.
    ld_format = p_format.
    ld_attdescription = p_attdescription.
    ld_attfilename = p_filename.
    ld_sender_address = p_sender_address.
    ld_sender_address_type = p_sender_addres_type.
    *Fill the document data.
    w_doc_data-doc_size = 1.
    *Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'REPORT'.
    w_doc_data-obj_descr = ld_mtitle . "mail description
    w_doc_data-sensitivty = 'F'.
    *Fill the document data and get size of attachment
    CLEAR w_doc_data.
    READ TABLE it_attach INDEX w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    CLEAR t_attachment.
    REFRESH t_attachment.
    t_attachment[] = pit_attach[].
    *Describe the body of the message
    CLEAR t_packing_list.
    REFRESH t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE it_message LINES t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    APPEND t_packing_list.
    *Create 1st attachment notification
    t_packing_list-transf_bin = 'X'.
    t_packing_list-head_start = 0.
    t_packing_list-head_num = 1.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
    t_packing_list-doc_type = ld_format.
    t_packing_list-obj_descr = ld_attdescription.
    t_packing_list-obj_name = ld_attfilename.
    t_packing_list-doc_size = t_packing_list-body_num * 255.
    APPEND t_packing_list.
    **Create 1st attachment notification
    *t_packing_list-transf_bin = 'X'.
    *t_packing_list-head_start = 0.
    *t_packing_list-head_num = 1.
    *t_packing_list-body_start = 1.
    *DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
    *t_packing_list-doc_type = ld_format.
    *t_packing_list-obj_descr = ld_attdescription.
    *t_packing_list-obj_name = ld_attfilename.
    *t_packing_list-doc_size = t_packing_list-body_num * 255.
    *APPEND t_packing_list.
    **Create 2nd attachment notification
    data: x type i.
    DESCRIBE TABLE t_attachment LINES X.
    append lines of it_attach to t_attachment.
    data: start type i,
          end type i,
          cal type i.
    start = X + 1.
    describe table t_attachment lines end.
    cal = end - start.
    t_packing_list-transf_bin = 'X'.
    t_packing_list-head_start = 0.
    t_packing_list-head_num = 1.
    t_packing_list-body_start = start.
    t_packing_list-body_num = end.
    *DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
    t_packing_list-obj_descr = 'Eng Change'. "ld_attdescription.
    t_packing_list-doc_type = ld_format.
    *t_packing_list-obj_name = 'Eng' .
    t_packing_list-doc_size = t_packing_list-body_num * 255.
    APPEND t_packing_list.
    *Add the recipients email address
    CLEAR t_receivers.
    REFRESH t_receivers.
    t_receivers-receiver = ld_email.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    APPEND t_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    IMPORTING
    sent_to_all = w_sent_all
    TABLES
    packing_list = t_packing_list
    object_header = l_t_objhead
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    *Populate zerror return code
    ld_error = sy-subrc.
    *Populate zreceiver return code
    LOOP AT t_receivers.
    ld_receiver = t_receivers-retrn_code.
    ENDLOOP.
    ENDFORM.
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    *Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
    WAIT UP TO 2 SECONDS.
    SUBMIT rsconn01 " WITH mode = 'INT'
    "WITH output = 'X'
    AND RETURN.
    ENDFORM. " INITIATE_MAIL_EXECUTE_PROGRAM
    *& Form POPULATE_EMAIL_MESSAGE_BODY
    *Populate message body text
    form populate_email_message_body.
    REFRESH it_message.
    it_message = 'Please find attached a list test ekpo records'.
    APPEND it_message.
    endform. " POPULATE_EMAIL_MESSAGE_BODY
    Edited by: S@N on Jun 13, 2008 2:06 PM

  • Export HTML to PDF file

    It would be nice if Ajax developers could export or save the
    content of the htmlcontrol or an iframe to a pdf document.
    I also beleive that AIR should have the ability to render PDF
    documents without having to install the PDF reader software.
    See what JavaFx has done with PDF
    http://sellmic.com/blog/2007/05/11/javafx-pdf-viewer-demo/

    It would be nice if Ajax developers could export or save the
    content of the htmlcontrol or an iframe to a pdf document.
    I also beleive that AIR should have the ability to render PDF
    documents without having to install the PDF reader software.
    See what JavaFx has done with PDF
    http://sellmic.com/blog/2007/05/11/javafx-pdf-viewer-demo/

  • Error Encountered while uploading HTML, PDF files via WEBUI and IFS API

    Hello:
    We have suddenly run into problems while using IFS to upload files. We cannot seem to upload html and pdf files using either the WEBUI or Oracle's IFS API. However we are able to add .gif, jpeg files both via the WEBUI and Oracles IFS API's
    This is the error we get while trying to upload .html files via the WEBUI
    IFS-30002: Unable to create new Library Object.
    This is the stack trace we get when we try creating content objects via IFS API's. We can't seem to understand why something that used to work has suddenly quit working.
    Does this have anything to do with running out of space requirements in the table spaces?
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject oracle.ifs.common.IfsException: IFS-32251: SQL Error inserting index entry into ODMZ_CONTEXT_ROUTER java.sql.SQLException: ORA-29875: failed in the execution of the ODCIINDEXINSERT routine
    ORA-01410: invalid ROWID
    ORA-01410: invalid ROWID
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1451)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:862)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1846)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1771)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2361)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:422)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:487)
    at oracle.ifs.server.S_LibrarySession.execute(S_LibrarySession.java:14319)
    at oracle.ifs.server.S_Media.insertIntoContextRouter(S_Media.java:2473)
    at oracle.ifs.server.S_Media.postSetContent(S_Media.java:2440)
    at oracle.ifs.server.S_Media.setContent(S_Media.java:1699)
    at oracle.ifs.server.S_ContentObject.setContent(S_ContentObject.java:399)
    at oracle.ifs.server.S_ContentObject.extendedPreInsert(S_ContentObject.java:236)
    at oracle.ifs.server.S_LibraryObject.preInsert(S_LibraryObject.java:1644)
    at oracle.ifs.server.S_LibraryObject.createInstance(S_LibraryObject.java:2711)
    at oracle.ifs.server.S_LibrarySession.createSystemObjectInstance(S_LibrarySession.java:8128)
    at oracle.ifs.server.S_Document.setContentObject(S_Document.java:475)
    at oracle.ifs.server.S_Document.extendedPreInsert(S_Document.java:313)
    at oracle.ifs.server.S_LibraryObject.preInsert(S_LibraryObject.java:1644)
    at oracle.ifs.server.S_LibraryObject.createInstance(S_LibraryObject.java:2711)
    at oracle.ifs.server.S_LibrarySession.newLibraryObject(S_LibrarySession.java:7922)
    at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7963)
    at oracle.ifs.server.S_LibrarySession.newPublicObject(S_LibrarySession.java:7945)
    at oracle.ifs.server.S_LibrarySession.DMNewPublicObject(S_LibrarySession.java:7604)
    at oracle.ifs.beans.LibrarySession.DMNewPublicObject(LibrarySession.java:7898)
    at oracle.ifs.beans.LibrarySession.NewPublicObject(LibrarySession.java:5342)
    at oracle.ifs.beans.LibrarySession.createPublicObject(LibrarySession.java:2969)
    at ORG.oclc.da.utilities.ifs.IfsDocumentUtility.createDocumentDefinition(IfsDocumentUtility.java:238)
    at ORG.oclc.da.utilities.ifs.IfsDocumentUtility.createHTML(IfsDocumentUtility.java:133)
    at ORG.oclc.da.utilities.ifs.IfsDocumentUtility.createDocument(IfsDocumentUtility.java:89)
    at ORG.oclc.da.chs.userinterface.CHSProcessListener.download(CHSProcessListener.java:1043)
    at ORG.oclc.da.chs.core.Spider.download(Spider.java:605)
    at ORG.oclc.da.chs.core.CHSTest_raj.main(CHSTest_raj.java:145)
    Any help on this front is appreciated.
    thanks
    Mathangi

    try this code, it works fine for me:
    <%@ page import="java.io.*"%>
    <%
         String name = "C:/temp/EURO_Weekly_wk01-10-26.pdf";
         try
         InputStream in = new FileInputStream(name);
         int n = 0;
              //read the file from the input stream to the byte buffer
         out.clear();
         response.setContentType("application/pdf");
         while( (n=in.read()) != -1)
                   out.write (n);
         out.close();
         catch (IOException ioe) {
                   out.println ("io error: " + ioe.getMessage());
                   return;
    %>

  • Web Clipping portlet and pdf files

    Hi,
    I have created a web clipping portlet which just includes a set of links to HTML and pdf files. When I try to open a link to a pdf file the web clipping portlet fails, but links to the html content work fine
    Is it possible using web clipping to open the links to the pdf files and display them in the web clipping portlet ?
    Thanks,

    Hi,
    I have created a web clipping portlet which just includes a set of links to HTML and pdf files. When I try to open a link to a pdf file the web clipping portlet fails, but links to the html content work fine
    Is it possible using web clipping to open the links to the pdf files and display them in the web clipping portlet ?
    Thanks,

  • Error message in accessing a PDF file, using AR V.9.2.0

    When I run the following code,  I get the error message as in the attached file.  The PDF file was created using ScanSoft PDF Professional.
    Personally, I am getting rather fed with AR - the last version crashed my Internet Explorer V8 (and V7), but it worked with the following code..
    ==================================================================================
    <html>
    <body>
    <div>
    <object width="800" height="800" data="STTA_Monthly_Stats.pdf#toolbar=1&amp;
    navpanes=0&amp;scrollbar=1&amp;page =1&amp;view=FitH" type="application/pdf" title="Title of this pdf file">
      <p>Your browser does not support embedded PDF files.</p>
    </object>
    </div>
    </body>
    </html>
    ==================================================================================

    Accessing PDF file attached.

  • Trouble in fop(convert html 2 pdf) source.

    to convert html 2 pdf file I found the article from javaworld.
    (http://www.javaworld.com/javaworld/jw-04-2006/jw-0410-html.html)
    unfortunately I can't seem to find the two classes below even though import all fop 0.94 library files.
    are there something I'm missing?
    Thanks.
    import org.apache.fop.apps.Driver;
    import org.apache.fop.tools.DocumentInputSource;

    Much thanks for your timely reply.  The scanner software requires that one must scan to an application.  The configuration has to point to an executable.  In program files I must select an executable,  in this case acrobat.exe.   Have been using this for years and never have seen a problem.  Continues guidance sought.

  • Pdf file to html conversion with embedded images

    hi all,
    i want to convert any pdf file to its html equivalent. currently i am using PDFBOX java api to do that. it works fine with simple pdf files having no images, but if there are embedded images in pdf file then it do not show these images.
    anyone who has clue of solving this problem. i can convert individual pdf pages to jpg pictures if all embedded images would also be in these pictures.
    help me regarding pointers to other APIs, code snippets etc that can solve my purpose.
    thanks in advance

    Hi..
    really soorry i am not having any solution for u.
    But i am having one problem regarding pdf box, i think u know pdf box, i am reading japanese file using pdf box, its giveing
    caught a class java.io.IOException
    with message: Unknown encoding for 'UniJIS-UCS2-H'
    I have wrriten code like this.....
    PDDocument pdfDocument = null;
    PDFParser parser = new PDFParser( new FileInputStream(file));
    parser.parse();
    pdfDocument = parser.getPDDocument();
    PDFTextStripper stripper = new PDFTextStripper();
    String text = stripper.getText(pdfDocument);
    reader = new StringReader(text);

  • Header & Footer in pdf file converted from html

    I am using Acrobat Professional on WinXP and Firefox.
    This is the first time I tried to convert a saved html file to pdf and it works. However the converted file have the html pagename at the header and the filename, location, date created at the footer of every page. Is there a way to set the conversion settings to not display these information in the comverted pdf file?
    Thanks.

    File > Create PDF > From Web Page...
    Press the button Settings... and change the settings.

  • Acrobat 9 HTML to PDF conversion sets all checkboxes to checked?

    When I convert an HTML file that contains checkboxes to PDF using Acrobat 9 Standard or Pro (fully updated) on Windows XP SP3, all of the checkboxes end up checked in the resulting PDF.  I've looked in settings menus but can't find anything that seems to be a relevant option to prevent this from happening.  I've attached a simple test case .html file to this post that you can use to repeat the problem.
    To convert the file, I right-click on the file in Windows Explorer, and click Convert to Adobe PDF.  I've tried "printing" the document to the Adobe PDF printer, but that introduces other issues and is not really an acceptable solution.
    Has anyone encountered this before, and/or have ideas how to fix it?

    Input elements have no such inheritance on the checked attribute.  Furthermore, the input elements in my test case are not grouped together.  They are each encapsulated within separate list item elements, and so no inheritance should take place after the first input element.
    Just for grins, I changed the order of the elements (moved the checked one below the unchecked one), but that did not make any difference in the Acrobat 9 HTML to PDF conversion.
    I did test this with Acrobat 8 Standard, and the HTML to PDF conversion preserved the correct checked status of the input elements.  It looks to me like this is a bug that was introduced in Acrobat 9.

  • Combining Word and Visio Files Through HTML and PDF

    I have a Word document and a Visio drawing with multiple pages, and I would like to combine them together into a pdf file.  Both documents have internal links and links to each other, and I would like to maintain them when converting to pdf (so that I do not have to re-add them through Acrobat).  Word anchors are specific words on a page, and Visio anchors are specific pages in the drawing.  I can maintain Word bookmarks as named destinations through OpenOffice, so that isn't a problem.
    Originally I was able to accomplish this by converting both of the files to html, linking the html pages to each other, and using the Web Capture feature in Acrobat 5.  However, Word formatting was lost, so I am looking for a way to convert the Word file directly to pdf and still maintain the links.
    I was able to make most of the links work properly by saving the Visio file as html pages and linking to those from the Word document.  Then I could export the Word document to pdf, open the file in Acrobat 9 Pro, and Web Capture > Append Links On Page from the table of contents.  However, links from the html (Visio) pages to "file.pdf#destination" do not link back to the same file.  Instead, they try to open another file with the same name and become very confused.
    When I tried this in Acrobat 5, it would append another version of the pdf Word document.  However, named destinations would not be maintained, so all of the Visio to Word links would go to the title page of the Word document.
    Is there a better way to accomplish this through Acrobat 9 (or Acrobat  5)?
    Additionally, Acrobat 9 image map conversion does not seem to work as well as it did in Acrobat 5.  Most of the link boxes are twice as big as they should be, making it difficult to click on anything.  Is there a good way around this?

    Basically, the question is: can I combine two interlinked PDF files so that the links in each go to the correct views in the merged PDF?  If not, is there a third-party application that will?
    Could I possibly make a PDF Portfolio that maintains the links?  I'd prefer a single file, but that would work as well.

Maybe you are looking for