Display PDF itab in HTML viewer w/o file

Hello!
If I download PDF internal table (for example, converted from spool) to file, I can easily display it in a CL_GUI_HTML_VIEWER control. Is there a way to pass PDF data directly to HTML viewer, without using intermediate file?
Thanks!
Kind regards,
Igor Barbaric

You need to use the following methods of htmlviewer class
call method l_html_control->load_data
    exporting
      type                 = 'text'
      subtype              = 'html'
    importing
      assigned_url         = l_url
    changing
      data_table           = l_new_html_page
    exceptions
      others               = 4.
  if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
               with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.
  call method l_html_control->show_data
    exporting
      url                  = l_url
    exceptions
      others                 = 3.
  if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
               with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.
l_new_html_page will hold the PDF data and also
type                 = 'text'
      subtype              = 'html'
has to maintained for PDF.
I havent tried this but it should work.
Regards
Raja

Similar Messages

  • Display PDF Dokument in HTML control with Adobe Reader X - hide toolbar

    Hello,
    I am reading a document from a content repository via Archive Link Interface. I get the content by the function module SCMS_HTTP_GET. Afterwards the content will be displayed in a html control in the method SHOW_URL  in class
    CL_GUI_HTML_VIEWER by calling the url SAPR3://SAPR3CMS/get/012/XX/0050568700A51EE0BDC6F305DFEDDF57/ with the following code.
    CALL METHOD call_method
       EXPORTING
         method  = 'ShowUrl'
         p_count = 2
         p1      = url
         p2      = frame
       IMPORTING
         RESULT  = m_result.
    If I had a standard url like http//:...test.pdf it would be possible to hide the Adobe Reader X toolbar by the additional command &#toolbar=0
    The SAP url SAPR3://SAPR3CMS/get/012/XX/0050568700A51EE0BDC6F305DFEDDF57/&#toolbar=0 is not working. Can anybody give me a hint how to get the toolbar hidden?
    Thanks and regards
    Joerg

    I don't believe you answered the question. I have the same problem in that when I upgraded to Reader X my Toolbar disappeared and you responded to my post with a fix. Last week I installed updates to both Acrobat 8 and Reader X and in the process lost my toolbar and the floating toolbar. After "repairing" both Reader and Acrobat numerous times I find that at least the floating toolbar is back and F8 will of course deliver the traditional fixed, top of the page toolbar, but only for that specific open document. When I open a new document (from the web) I must F8 to get my traditional toolbar back. Below are the settings I am using to achieve this (I have tried every combination to try and make this work). Any help to get my toolbar back is very much appreciated.

  • Display PDF in different window by reading Binary file in MIME folder.

    Hi all,
    I've kept binary file in MIME folder and I'm trying to read the contents of it. and I'm trying to display contents in pdf format in separate window.
    For this I was able to read the file by using FileInputStream
    byte[] bytes = new byte[1000];
         try
                  //File file = new File(WDURLGenerator.getResourcePath(wdComponentAPI.getDeployableObjectPart(),"data.bin"));
                   File file = new File(WDURLGenerator.getResourcePath("test.bin"));
                   FileInputStream is = new FileInputStream(file);
                  long length = file.length();
                   //Create the byte array to hold the data
                   byte[] bytesA = new byte[(int)length];
                   //Read in the bytes
                    int offset = 0;
                    int numRead = 0;
                    while (offset < bytesA.length&& (numRead=is.read(bytesA, offset, bytesA.length-offset)) >= 0)
                         offset += numRead;
                        is.close();
                   bytes = bytesA;
                   wdContext.currentContextElement().setPdfSource(bytes);
                 catch(Exception e)
                   wdComponentAPI.getMessageManager().reportException("Error Reading File:"+e.getCause(),true);
                   wdComponentAPI.getMessageManager().reportException("Error Reading File To String:"+e.toString(),true);
    I've to show this in external window. I created attribute "pdfResource" of type binary
    and declared in the source
    private ISimpleType myPdfDoc;
    After that I added this bit of code in Init Method
    myPdfDoc = wdContext.getNodeInfo().getAttribute("pdfResource").getModifiableSimpleType();
    ((IWDModifiableBinaryType)myPdfDoc).setMimeType(WDWebResourceType.PDF);
    ((IWDModifiableBinaryType)myPdfDoc).setFileName("PDF");
    After this I made an action handler which has following code.
    final byte[] documentContent = bytes
    final String docUrl = myPdfDoc.format( bytes );
    String docUrl = myPdfDoc.format(bytes);
    IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow(docURL,"Resource", true);
    window.open();
    But it is throwing Null Pointer exception for Init Method and also while displaying.
    Where is that I'm faltering. Any Pointers will be help ful
    Thanks
    Srikant

    First of all why do you need those three lines of code in your wdDoInit() ?
    Simply, you may use this:
    IWDCachedWebResource cachedResource = null;
    String url = null;
    byte[] pdf = wdContext.currentContextElement().getPdfSource();
    if (pdf != null) {
       cachedResource = WDWebResource.getWebResource(pdf, WDWebResourceType.PDF);
       url = cachedResource.getURL();
    Refer <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/4a/fb8342a7d30d53e10000000a155106/content.htm">Utilizing the IWDCachedWebResource-API</a> for further assistance.
    /* Changed the code */
    Message was edited by: Bala Krishnan

  • Client Side Signature of PDF in HTML Viewer returning the chnaged/signed PDF.

    Hi,
    I am generating a SFP PDF form which I then immediately save to a SAP PSRM Case.  I generate the PDF form 'fillable' and I have inserted a Signature Field in the form layout.
    I have a requirement to save the signed form to the case once it has been signed.  This process should exclude saving the form to any application or presentation directories.
    During the PSRM Case processing I can:
    Successfully save the un-signed PDF to the Case
    Successfully open the PDF via an HTML viewer
    Successfully sign the PDF in the HTML viewer
    The problem is when I return to the Case after the PDF has been signed I cannot save the signed PDF to the PSRM Case(SAP).
    I am using the code below to display the un-signed PDF in the HTML Viewer
    * Convert xstring to binary table to pass to the LOAD_DATA method
       CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
         EXPORTING
           buffer     = g_pdf_content_in
         TABLES
           binary_tab = gt_data.
    * Load the HTML
       CALL METHOD g_html_control->load_data(
         EXPORTING
           type                 = 'application'
           subtype              = 'pdf'
         IMPORTING
           assigned_url         = lv_url
         CHANGING
           data_table           = gt_data
         EXCEPTIONS
           dp_invalid_parameter = 1
           dp_error_general     = 2
           cntl_error           = 3
           OTHERS               = 4 ).
    * Show it
       CALL METHOD g_html_control->show_url( url = lv_url
         in_place = 'X' ).
    I assume that 'gt_data' would now represent the signed PDF? How do I convert 'gt_data' back to a PDF xstring? I have tried:
      FM 'SCMS_BINARY_TO_XSTRING'
    Various Methods in Class 'CL_BCS_CONVERT'
    All with no success.  Either it saves the un-signed PDF to the PSRM Case or the PDF cannot be viewed as it is corrupt.
    Please help.
    Warm Regards
    Waheeb

    File is serializable but it is just a filename. When you pass or return it over RMI or Serialization, all you get is the filename. It doesn't take the file contents with it, or the ability to open it, unless it happens to also be the name of an existing file on the receiving system.

  • How to create MIME object to display in HTML viewer

    Gurus,
    I want to display the picture in HTML Viewer. we have method LOAD_MIME_OBJECT.
    Can you please let me know what are pre requisite for this method and how to pass object_id and Object_url for this method.
    Thanks,
    Suneel

    hi
    good
    CALL METHOD html_control - >load_mime_object
    EXPORTING
    object_id = 'ZWN'
    object_url = 'ZWN.GIF'
    EXCEPTIONS
    OTHERS = 1.
    CALL METHOD html_control - >load_data
    EXPORTING
    type = 'text'
    subtype = 'html'
    IMPORTING
    assigned_url = v_doc_url
    CHANGING
    data_table = lt_my_html
    EXCEPTIONS
    dp_invalid_parameter = 1
    dp_error_general = 2.
    IF sy-subrc EQ 0.
    CALL METHOD html_control - >show_url
    EXPORTING
    url = v_doc_url
    in_place = ' '.
    endif.
    All objects are checked in via SMW0.
    In the HTML Code, I have the pictures this regular way:
    ....<im g sr c=zwn.gif......
    <REMOVED BY MODERATOT>
    thanks
    mrutyun^
    Edited by: Alvaro Tejada Galindo on Feb 22, 2008 3:08 PM

  • RH7 Trial HTML View

    This discussion started with
    this
    thread. I am using the RH7 trial on a Windows XP SP2 machine
    and looking at a project with Japanese text in the topics. The
    project language is now set to Japanese. In Design view, the
    characters display properly, but in HTML view, all I get are
    squares. The encoding is utf-8, which must be RH7's default, so I
    would think it would work. If I open a topic in Notepad, the
    characters are showing up correctly.
    I am also getting squares in the TOC, glossary, and index
    panes. I was hoping when I heard about double-byte support that
    double-byte characters would render correctly throughout the
    interface in RH7, so I'm hoping this is something I can somehow
    change. Thanks for any help,
    Ben

    I am pretty certain that my computer does not have language
    packs installed. I looked into those some time ago as a way to have
    menus, etc. displayed on my machine in other languages, but we went
    with a different method.
    I followed Akshay's steps 1-3 but checked only the East Asian
    checkbox. My machine installed some files and asked to restart.
    When it booted back up and I opened my Japanese project in RH7, the
    Japanese characters show up in the TOC, glossary, and index
    pallettes and in HTML view with Courier New as my code font. In
    HTML view, the Japanese text doesn't all seem to display between
    tags and slides around a bit when I highlight it, but it looks like
    this is the closest I'll get and it should make things easier.
    Unless it would help with this strange behavior in HTML view,
    it looks like installing the language packs using the Windows XP
    SP2 CD is not necessary, which I was hoping because I would have to
    go through our tech support reps (who issue our workstations and
    manage the configuration) to get one. Thanks very much for the
    help!
    --Ben

  • Flash Object Display in GUI HTML VIEWER

    Is there a way to display html string in html viewer which contains the flash objects?
    Regards,
    Santhosh.

    Hi Santosh,
    Yes, create ABAP program in which use the HTML viewer (class:  cl_gui_html_viewer ) within a container.
    Please refer following links -
       About CL_GUI_HTML_VIEWER   -  http://wiki.sdn.sap.com/wiki/display/profile/2007/08/30/About+CL_GUI_HTML_VIEWER
       PDF for reference - http://help.sap.com/printdocu/core/print46c/en/data/pdf/BCCIHTML/BCCIHTML.pdf
    Thanks.
    Kumar Saurav.

  • Report shows up in HTML view but blank in PDF view

    Hey
    I have a quick question .
    My report runs fine and shows in HTML view .
    When I click on PDF view it shows up blank and doesnot even show any header footer company logo .
    Any idea/advice ?
    Thanx
    Edited by: pooja... on Oct 14, 2008 8:41 AM

    Hi Pooja,
    It seems u have succeeded in getting your report on HTML. This is with Interactive Reporting.
    In the Dashboard section i have an Embedded Browser with the url set in the properties that returns the xml response. But then we are unable to read or view it. Can you help me with that as i am new to this.
    Thnks & appreciate your help.
    JB
    Edited by: user10454571 on Oct 21, 2008 9:31 AM

  • Display PDF file in the Apex query report using HTML Expression

    Hi Folks,
    I have PDFs stored in BLOB columns along with FILE_ID column in the database.
    I want to display these to the APEX user on the page at runtime.
    I have created a SQL Query report page to display FILE_ID column.
    I am using HTML Expression property of the FILE_ID column to pull the image from the table using PROC_DISPLAY_DOCUMENT procedure.
    I typed folowing code int the HTML Expression text area of the FILE_ID column of the report page :
    <img src="#OWNER#.proc_display_document?p_id=#file_id#"/>
    I am using following Procedure code:
    create or replace procedure "PROC_DISPLAY_DOCUMENT"(p_id number) as
    s_mime_type varchar2(48);
    n_length number;
    s_filename varchar2(400);
    lob_image blob;
    Begin
    select MIME_TYPE,dbms_lob.getlength(blob_content),file_name,blob_content
    into s_mime_type,n_length,s_filename,lob_image
    from tbl_upload_file
    where file_id = p_id;
    owa_util.mime_header(nvl(s_mime_type, 'application/octet' ),false);
    --set the size so the browser knows how much it will be downloading
    htp.p( 'content-length: '|| n_length );
    --The file name will be used by the browser if the users does a "save as" 
    htp.p( 'content-Disposition: filename="' || s_filename ||'"');
    owa_util.http_header_close;
    --Download the BLOB
    wpg_docload.download_file( lob_image );
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-202121,'Record matching screenfield filename not found, PROC_DISPLAY_DOCUMENT.');      
    end;
    --This is very Important
    --grant execute on PROC_DISPLAY_DOCUMENT to public;
    This code does not work and report does not display PDF image.
    Any help to troubleshoot this code will be appreciated.
    Thank you in advance.
    Jaya

    Hi Dimitri,
    I hope you can see HTML Expression code now. Thank You for responding.
    I have PDFs stored in BLOB columns along with FILE_ID column in the database.
    I want to display these to the APEX user on the page at runtime.
    I have created a SQL Query report page to display FILE_ID column.
    I am using HTML Expression property of the FILE_ID column to pull the image from the table using PROC_DISPLAY_DOCUMENT procedure.
    I typed folowing code int the HTML Expression text area of the FILE_ID column of the report page :
    [!--  img src="#OWNER#.proc_display_document?p_id=#file_id#" ]
    I am using following Procedure code:
    create or replace procedure "PROC_DISPLAY_DOCUMENT"(p_id number) **
    mimetype varchar2(48);
    n_length number;
    s_filename varchar2(400);
    lob_image blob;
    Begin
    select MIME_TYPE,dbms_lob.getlength(blob_content),file_name,blob_content
    into s_mime_type,n_length,s_filename,lob_image
    from tbl_upload_file
    where file_id = p_id;
    owa_util.mime_header(nvl(s_mime_type, 'application/octet' ),false);
    --set the size so the browser knows how much it will be downloading
    htp.p( 'content-length: '|| n_length );
    --The file name will be used by the browser if the users does a "save as"
    htp.p( 'content-Disposition: filename="' || s_filename ||'"');
    owa_util.http_header_close;
    --Download the BLOB
    wpg_docload.download_file( lob_image );
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-202121,'Record matching screenfield filename not found, PROC_DISPLAY_DOCUMENT.');
    end;
    --This is very Important
    --grant execute on PROC_DISPLAY_DOCUMENT to public;
    This code does not work and report does not display PDF image.
    Any help to troubleshoot this code will be appreciated.
    Thank you in advance.
    Jaya

  • HTML view - Display KM file

    Hi Team,
    I would like to display a html page which is placed on Portal KM inside a Visual composer Model.
    I tried using HTML view but could not succeed.
    When i give the URL and test it during the design time it displays properly but during run time i'm getting 404 resource not found error.
    And i'm able to access other URL's but not the files which are on portal.
    Any suggestions..?

    Hi Hareesh,
    Check the URL path of the KM HTML page in your VC HTML view component in the run time.
    Maybe VC renders it in an unexpected way, or unexpected space in the beginning or end of the URL.

  • Where to create a defalut web page to be displayed in html viewer control.

    Hi ,
    I want to create a default html page to be displayed in html viewer control.Where I should create this html page and how to
    call this in my program.It is mentioned that
    'This page can be designed with the SAP web repository.' How to design this page with SAP web repository.
    Also it is mentioned that COM_PRDCAT_WEB_API(701) can be reused .Where to find this COM_PRDCAT_WEB_API.Can anyone help me out in this ?

    you can create the template using any html editor and store them in transaction SMW0

  • Html db to display pdf files saved as blob in the data base

    Hi all,
    I have a DB page to call next page to display pdf files.
    A procedure is being called when the link is clicked on the first page.
    However, the procedure output a juck code insteand the pdf files. Please help.
    Thanks,
    n_length number;
    n_image BLOB;
    begin
    select note_image, dbms_lob.getlength(note_image)
    into n_image, n_length
    from n100_notes where note_id = nid;
    owa_util.mime_header('application/pdf');
    htp.p('Content-length: ' || n_length);
    wpg_docload.download_file(note_image );

    we use:
    owa_util.mime_header('application/pdf',false);
    htp.p('Content-Length: ' || dbms_lob.getlength(l_blob));
    owa_util.http_header_close;
    wpg_docload.download_file(l_blob);
    see plpdf.com
    LL

  • Using PDF instead of HTML

    To whom it may concern at Adobe,
    After careful consideration of the numerous present technologies for website content (including HTML, PHP, Java, JavaScript, MySQL, etc, and systems like Typo3, Joomla, etc), we decided to drop everything in favour of PDF, being both an ISO standard and the standard de facto for office documentation. Everybody has Acrobat Reader installed, the browser plugin is also installed, and therefore everybody is able to display an http://.../index.pdf. Problems that are common to other websites, such as SQL injection, the need to keep a backup of the SQL server, the demand for space (the bare installation of typo3 demands 1GB of server space), for example, they are problems that we simply do not want to have. Today, as a result of the initial considerations and subsequent development, a singe index.pdf file of 200K holds our entire website. Dynamic content is loaded by included swfs that read various .xml files. The website displays beautifully on a Mac with Safari and Acrobat X, or on Windows XP with any browser. There are a few problems, however, that are still pending. We describe them here.
    The call of index.pdf from index.html may result into a blank page, and the Acrobat Reader plugin makes no effort to inform and help the human client. It turns out that Acrobat Reader v10 is not available on all platforms. For example, linux (ubuntu v11) and solaris (v11) still have Acrobar Reader v9. On linux or solaris you see a "3d data parsing error'' each time you open a page with included swf. This does not happen all the times. It only happens if your installed version is different than version 9.2. Both 9.3 and 9.4 show the above error. This is a manyfold problem, because the latest version on those systems is version 9.4; version 10 is not available from Adobe and most people are not willing to downgrade to version 9.2, which is also not available from the system's default package manager. Other systems are not devoid of problems. On Apple OSX, for example, the plugin is only available for Safari. If your default browser is Firefox, or Chrome, or Opera, you cannot see the index.pdf. You are forced to use Safari. On Apple iOS, even Safari fails to run the index.pdf, because Acrobat Reader is not avilable for that platform. We solved most of these problems via an HTML+JavaScript loader that performs a compatibility check up. If all tests are successful, then the HTML calls the PDF. If the tests fail, then a courtesy message appears, explaining the problem(s) and describing the steps that the user must execute to solve the problem(s). If the user does not want to use the Acrobat plugin, then the user is redirected to the RSS feeds. The whole website is built upon RSS feeds, and thus the user has access to (most of) the website content. You can read this code at the following address: http://www.MadreAcqua.org/index.html. This is not sufficient, however. We had people with Acrobat Reader X installed on Adobe supported systems, but their browser plugin was still version 9; it turned out that the update of the Reader application failed to update the Reader plugin. On Windows 7+updates, with Firefox 4+updates and Acrobat Reader 10+ updates, the index.pdf does not display the included swfs. We remark that it works on Windows XP+updates and Adobe Reader 10 with any browser. The failure on Windows 7 is therefore a mistery. There are also people who are sick and tired of updating Acrobat Reader by hand, or do not have the skill or time to do it. This is also the source of recent security concerns.
    The following are additional problems.
    1. The index.pdf includes SWFs for its dynamic parts (RSS readers and video). Sometimes, randomly, the SWFs do either of the following: they disappear (the only way to make them appear again is to click on their area); they disappear and reappear like christmas lights (the only way to make them stop is to reload the page); they also disappear or reappear when resizing the browser's window.
    2. The mouse wheel flips the pages instead of scrolling. More precisely, each page of the website is displayed in full. If one scrolls, however, the engine should try scrolling, find that the page is displayed in full, and therefore nothing should happen. Instead, the engine shows the next page of the PDF. The PDF was built with the "single page view" flag, but the engine forces the "Enable Scrolling" mode. This seems to be a bug of Adobe Reader. 
    In summary, dear Adobe, please ensure that all platforms have the same version of Acrobat Reader plugin, and that the plugin is automatically updated, similarly to Flash Player 10.3. A single plugin (pdf+swf) would also be useful to have. Please also make an official loader as part of the plugin, both to solve (most of) the above problems and rise your own awareness of them. Failure to do so implies your failure to offer sound competition to HTML++.
    Best regards,
    M.A.S.T.

    > At the time Reader nine was released, there was NO SUCH THING as Reader 10. It didn't exist.
    Where is the problem here? Adobe can release an update for version 9 that makes it aware of version 10, then perform the actual update to version 10.
    > I agree it should.... it should also inform about versions 11, 12, 13, 14, 15, ad infinitum until the end of time too.
    It would be easier to just release the source code, once.
    > You know that you are under no legal obligation to update anything. If you visithttp://oldversion.com/Acrobat%20Reader.html you can download Adobe Reader version 1 if you feel so inclined, and you will be able to view hardly any PDFs at all, including PDF websites. It's entirely up to you.
    The recent security attacks are all based upon people still using version 9, and Adobe did not gain in reputation because of it. There is also a loss in functionality, both because version 9.2 can display inline swf while 9.3 and 9.4 trigger a still unpatched "3d data parsing error", and version 10 is not available on all platforms.
    It is not clear whether you work for Adobe or its competitors.
    It is clear, however, that the present Reader is not good enough for our purpose.
    e.o.f.
    The original message was:
    To whom it may concern at Adobe,
    After careful consideration of the numerous present technologies for website content (including HTML, PHP, Java, JavaScript, MySQL, etc, and systems like Typo3, Joomla, etc), we decided to drop everything in favour of PDF, being both an ISO standard and the standard de facto for office documentation. Everybody has Acrobat Reader installed, the browser plugin is also installed, and therefore everybody is able to display an http://.../index.pdf. Problems that are common to other websites, such as SQL injection, the need to keep a backup of the SQL server, the demand for space (the bare installation of typo3 demands 1GB of server space), for example, they are problems that we simply do not want to have. Today, as a result of the initial considerations and subsequent development, a singe index.pdf file of 200K holds our entire website. Dynamic content is loaded by included swfs that read various .xml files. The website displays beautifully on a Mac with Safari and Acrobat X, or on Windows XP with any browser. There are a few problems, however, that are still pending. We describe them here.
    The call of index.pdf from index.html may result into a blank page, and the Acrobat Reader plugin makes no effort to inform and help the human client. It turns out that Acrobat Reader v10 is not available on all platforms. For example, linux (ubuntu v11) and solaris (v11) still have Acrobar Reader v9. On linux or solaris you see a "3d data parsing error'' each time you open a page with included swf. This does not happen all the times. It only happens if your installed version is different than version 9.2. Both 9.3 and 9.4 show the above error. This is a manyfold problem, because the latest version on those systems is version 9.4; version 10 is not available from Adobe and most people are not willing to downgrade to version 9.2, which is also not available from the system's default package manager. Other systems are not devoid of problems. On Apple OSX, for example, the plugin is only available for Safari. If your default browser is Firefox, or Chrome, or Opera, you cannot see the index.pdf. You are forced to use Safari. On Apple iOS, even Safari fails to run the index.pdf, because Acrobat Reader is not avilable for that platform. We solved most of these problems via an HTML+JavaScript loader that performs a compatibility check up. If all tests are successful, then the HTML calls the PDF. If the tests fail, then a courtesy message appears, explaining the problem(s) and describing the steps that the user must execute to solve the problem(s). If the user does not want to use the Acrobat plugin, then the user is redirected to the RSS feeds. The whole website is built upon RSS feeds, and thus the user has access to (most of) the website content. You can read this code at the following address: http://www.MadreAcqua.org/index.html. This is not sufficient, however. We had people with Acrobat Reader X installed on Adobe supported systems, but their browser plugin was still version 9; it turned out that the update of the Reader application failed to update the Reader plugin. On Windows 7+updates, with Firefox 4+updates and Acrobat Reader 10+ updates, the index.pdf does not display the included swfs. We remark that it works on Windows XP+updates and Adobe Reader 10 with any browser. The failure on Windows 7 is therefore a mistery. There are also people who are sick and tired of updating Acrobat Reader by hand, or do not have the skill or time to do it. This is also the source of recent security concerns.
    The following are additional problems.
    1. The index.pdf includes SWFs for its dynamic parts (RSS readers and video). Sometimes, randomly, the SWFs do either of the following: they disappear (the only way to make them appear again is to click on their area); they disappear and reappear like christmas lights (the only way to make them stop is to reload the page); they also disappear or reappear when resizing the browser's window.
    2. The mouse wheel flips the pages instead of scrolling. More precisely, each page of the website is displayed in full. If one scrolls, however, the engine should try scrolling, find that the page is displayed in full, and therefore nothing should happen. Instead, the engine shows the next page of the PDF. The PDF was built with the "single page view" flag, but the engine forces the "Enable Scrolling" mode. This seems to be a bug of Adobe Reader.
    In summary, dear Adobe, please ensure that all platforms have the same version of Acrobat Reader plugin, and that the plugin is automatically updated, similarly to Flash Player 10.3. A single plugin (pdf+swf) would also be useful to have. Please also make an official loader as part of the plugin, both to solve (most of) the above problems and rise your own awareness of them. Failure to do so implies your failure to offer sound competition to HTML++.
    Best regards,
    M.A.S.T.
    Message was edited by: M.A.S.T.

  • How to display Pdf file in iPad site

    Hi
    How to display Pdf file in web page which can able to view in iPad safari?
    Thanks,
    Arun

    You can't really.
    You need to use DHTML in the swf-wrapper HTML file, usually a
    division wrapped iFrame, and load the PDF into the iFrame as an
    overlay to the Flash.

  • PDF addresses not longer load and display PDF in Firefox and solutions suggest to other users with problem DON'T WORK (work fine in Chrome and Safari)

    This is an ongoing problem with other users. When putting a PDF in address window of Firefox and clicking go to address FIREFOX WILL NOT LOAD AND DISPLAY THE PDF. This problem has come up in questions from other users on your site. NONE OF THE SUGGESTED SOLUTIONS WORK! (trying either the Firefox PDF viewer or the Acrobat viewer as default viewer)
    I am using Firefox 23.0.1 (as some of the other users with the same problem). This was not a problem in the past with Firefox. Safari and Chrome continue load and display PDFs just fine from their addresses. This is a big problem as I now have to inform people who want to view my PDFs NOT TO USE FIREFOX BUT TO USE SAFARI OR CHROME.

    It appears that a link to a PDF on an internet page will not download in Firefox either!
    I went to this page:
    http://www.nasa.gov/connect/ebooks/earth_art_detail.html#.UjYEzrwsU08
    and tried to download the PDF link at the bottom of the page (Download: PDF 11.3 MB) It didn't work! Nothing happens. Tried it in Safari and it worked flawlessly.
    I have a PDF file of my work in the public_html folder on my URL. I give the address generated by that file to people who want to view my work---this works perfectly in Safari and Chrome. As to your other question, can't bookmark it if I can't get to it in Firefox.

Maybe you are looking for

  • Line separator to get multiple records in one variable

    Hi Experts, I have a requirement where i need to get data in the below form , in exactly one variable. Invoice No.       Inv. Date      Voucher   Gross Amount    TDS Amount     Discount    Paid Amount   986013092,17   04/08/2010    00091217   32415.0

  • Lookup Issue in ODI

    Hi there, I need to do lookup in source tables and insert the result to target table in an ODI interface. I have source table s_table1 with: s_table1 columns: LV1_ID_COLUMN, LV2_ID_COLUMN, LV3_ID_COLUMN, ... LV15_ID_COLUMN I need to use the LVx_ID co

  • PDF Print out of FormCentral

    When a user fills out a form created in FormsCentral, if they want a paper print out it, the text that they have inserted into the text box will not print out if it is extends beyond the text box area.  Is there a way of having all the text they have

  • Help using pointers or what ever you would call it...

    Hello! I usally do not asks for code, but this I think someone has to show and explain for me. so if any of you have some spare time I would be grateful. ok, i want to make two arrays, one with names of a person, and one list with different beers. Th

  • Stopping, Refreshing deployments, Re-starting managed server from cmd line

    I'm trying to put together an automatic redeployment batch script that will basically stop my managed weblogic 9 server, delete the deployed on the file system, move new ones in there (with the same names and structure), tell weblogic to refresh and