HTML/Malicious.PDF.Gen virus from Acrobat PDF file

I've been using the trial version of Acrobat Pro 9.0 for a couple days now.  A PDF I have put together with the software triggers my anti-virus software everytime I open it.
Any ideas what is going on and how I can fix it?
Here is the notice from Avira:  http://jamiehowell.net/virus.jpg

I download adobe reader ver 9.1, and it has 2 files addered to the file, when I use an antivirus (I use NOD 32) he abort the 2 files at download. But I download too with out antivirus and when I copied to CD, the files addered were not copied. NOD32 inform that it is posible a variant of a virus, but any can toll me what are the 2 files, with one are they funcionality.
But reader 9.1 works with out the 2 files

Similar Messages

  • Iphone 3G Software Update Fixes security vulnerability associated with viewing malicious PDF files?

    Is there an Iphone 3G Software Update Fixes security vulnerability associated with viewing malicious PDF files?  Latest version I can download is 4.2.1
    I assume no fix is available, does anyone know if I'm still vulnerable to the security bug?

    No fix is needed since that vulnarability isn't in 4.2.1.

  • 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

  • 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

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

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

  • Acrobat Pro Won't Open PDF Files

    I get this message when trying to click open pdf files in a directory.  These files will open from Acrobat open file menu. Message - The document “SpecSheet_Zip.pdf” could not be opened. Acrobat cannot open files in the “Adobe PDF document” format.  I'm using Mac OS 10.6 and acrobat pro 8.2.5.  Any ideas how to fix would be appreciated.

    The same thing happens with pdf files that are not zip files even if saved from Acrobat Pro on my computer.

  • 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;
    %>

  • How and where can I combine several pdf files?

    I have written a Guide Book for Music Teachers in Word, converted it into a pdf file and would now like to insert sheet music files written with Sibelius Notation Program which have also been converted into pdf files, since they are otherwise not compatible with Word. How and where can these diverse pdf files be combined?

    First, make sure you open Acrobat, and not Adobe Reader.  It's a common mistake.
    From Acrobat, use File | Create | Combine Files into a Single PDF:
    On the next panel you can select the files you want to combine, rearrange them, etc., and finally click Combine.
    P.S. your menu may look slightly different, as we may not be using the same Acrobat version.

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

  • Viewing and Printing Acrobat 3D Files

    I'm an Adobe consultant and trainer, and I have a couple questions about Acrobat 3D.
    Most print service providers are not going to have copies of Acrobat 3D. If 3D objects are created or imported into Acrobat 3D, can it be opened and viewed in Acrobat Professional? Can it printed in Acrobat Professional?
    What happens to the 3D? Lonn Lorenz of Adobe told me today at Adobe's Momentum in Print show here in San Francisco that it would be converted to a bitmapped proxy, but he wasn't sure if it would be low-res or high-res. Which is it?
    How does Adobe Reader fit with Acrobat 3D? The data sheet mentioned Reader 7.0.7 for reviewing PDFs from Acrobat 3D files. Will that be available for both Mac and Windows or Windows only? When will it be available?

    I just spent a day looking into various 3D publishing and viewing options and so far have found Acrobat 3D to be the most promising. However, after experimenting with a trial version, I have run into some problems.
    At first I tried the CAPTURE feature thinking this was the best way to create the 3D image. While I was successful, the image was dark and rather large, and my CAD program bogged down badly.
    Then I realized Acrobat 3D could read 3D Studio files which my program can create, and the results were excellent. The original colors were carried over, the file size was smaller and image manipulation in Acrobat 3D was excellent. But when opening the files with Reader 7.0.5 I had the following problems:
    1. If the rendering is set to DirectX, the image is totally white; only setting to "Software" gives the correct results.
    2. With one file, parts of the model were lost when opened in Reader.
    3. The largest file (1.5mb pdf) was very slow to manipulate.
    4. Lighting results are not as good.
    5. Sections are not possible.
    I am producing more and more work in 3D and the possibility of clients being able to view 3D models is very exciting. However, the results with the current Reader are simply not good enough to justify the investment in Acrobat 3D. I understand Reader 7.0.7 will have improved 3D capability; will the above shortcomings be addressed?

Maybe you are looking for