Display PDF bug?

Hello

I noticed that the title bar in app View PDF does not disappear when I select 'Find' in the menu.

So basically my search entry is hidden by the bar, the up/down arrows are also hidden by the bar...

Is anyone else able to reproduce this on their Pre?

photo attached.

-Henry

Yes. They know about it. Guess that they did not have a fix for 1.3.5. Original post on it here.

http://forums.Palm.com/Palm/board/message?board.ID=webossoftware&thread.ID=9697

Tags: HP Tablets

Similar Questions

  • Adobe reader on my iPad can display PDF files with layers?

    Adobe Reader on my iPad can display PDF files with layers?

    Hello

    Currently, mobile products Acrobat DC (for iOS and Android) don't support any change to the visibility of the layer.  If you are not able to activate or deactivate layers in a PDF using Acrobat DC for iOS.

    You would file a feature request?

    Adobe - feature request/Bug Report Form

    Our product management team will take your request into consideration for a future release.

    Thank you.

  • Cannot display PDF Firefox 3D content

    Hello
    I am trying to display a 3D PDF file created from a 3d design software in the web browser, PDF file opens but 3D in the file content PDF does not appear, if I try to open the same in IE it opens perfectly. Any solution for this?

    The current versions of Firefox have allowed a built-in PDF Viewer that has all of the features that other PDF as Adobe Reader readers have or can not work properly otherwise.

    You can change the action for Portable Document Format (PDF) to Preview in Firefox to use another application like Adobe Reader or define always ask in "Firefox > Options/Preferences > Applications.

    You can set the pref pdfjs.disabled true on the topic: config page to disable the build-in the PDF Viewer.

    You can check the value of pref plugin.disable_full_page_plugin_for_types on the topic: config page and delete the application/pdf if it is present or reset the pref via the context menu by default if you want to display PDF documents in Firefox with another application (i.e. not integrated PDF Viewer).

    See also:

  • Display PDF in a PL/SQL region - APEX 4.2

    I'm trying to display a pdf file in a PL/SQL area in the same page APEX. First of all, I went through the following threads, but none of them worked for me:

    How to display the pdf file in the apex region

    Re: Display pdf

    View the PDF...

    I have a dynamic region of PL/SQL with the source:

    declare
    
    n_file_id number;
    v_file    varchar2(255);
    v_source  varchar2(255);
    
    begin
    
    v_source := 'MAXIS_RENEWAL.DRIVER_FILE_API.download_file_upload?p_file='||:P250_X_FILE_ID;
    
    HTP.P(V_SOURCE);
    
    htp.p('<div style="">');
    htp.p('<embed height="900" width="800" name="embed_content" src="'||v_source||'" type="application/pdf" />');
    htp.p('</div>');
    
    end
    
    

    The download_file_upload procedure is as follows:

    PROCEDURE DOWNLOAD_FILE_UPLOAD(p_file in number ) AS
    
    
            v_mime  VARCHAR2(4000);
            v_length  NUMBER;
            v_file_name VARCHAR2(2000);
            Lob_loc  BLOB;
            LOC VARCHAR2(10);
           
    BEGIN
    
    
            SELECT MIME_TYPE, BLOB_CONTENT, filename,DBMS_LOB.GETLENGTH(blob_content)
                    Into V_Mime,Lob_Loc,V_File_Name,V_Length
                    FROM MAXIS_RENEWAL.library_docs_imp
                    WHERE id = p_file;
                  --
                  -- set up HTTP header
                  --
                        -- use an NVL around the mime type and
                        -- if it is a null set it to application/octect
                        -- application/octect may launch a download window from windows
                        owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
    
                    -- set the size so the browser knows how much to download
                    htp.p('Content-length: ' || v_length);
                    -- the filename will be used by the browser if the users does a save as
                    --htp.p('Content-Disposition:  attachment; filename="'||substr(v_file_name,instr(v_file_name,'/')+1)|| '"');
                    htp.p('Content-Disposition:  inline; filename="'||substr(v_file_name,instr(v_file_name,'/')+1)|| '"');
                    -- close the headers
                 
                    owa_util.http_header_close;
                    -- download the BLOB
                
                    wpg_docload.download_file( Lob_loc );
    exception when others then
       --log error
    
    
       htp.p('ERROR DOWNLOAD FILE: '||sqlerrm);
    end download_file_upload;
    
    

    With the current version, it only downloads the pdf on FireFox and IE. On Chrome, it will not. It will display only the string 'MAXIS_RENEWAL. "DRIVER_FILE_API.download_file_upload? p_file = xxxsomeID" in the region.

    When I copy the string and passed in the url of the browser, it downloads the files.

    I can't really understand the problem. Any help is deeply appreciated.

    Hi Hawk333,

    Hawk333 wrote:

    v_source: = ' MAXIS_RENEWAL. DRIVER_FILE_API.download_file_upload? = p_file'|: P250_X_FILE_ID;

    Is it possible to hide this?

    Yes, I think that you have kept the following line in your PL/SQL dynamic content area, that is why it displays:

    declare 
    
        n_file_id number;
        v_file    varchar2(255);
        v_source  varchar2(255); 
    
    begin 
    
        v_source := 'MAXIS_RENEWAL.DRIVER_FILE_API.download_file_upload?p_file='||:P250_X_FILE_ID; 
    
        -- remove this line from your code
        -- is this for debugging purpose?
        -- HTP.P(V_SOURCE);
    
        htp.p('
    '); htp.p(''); htp.p('
    '); end;

    I hope this helps!

    Kind regards

    Kiran

  • difficulties to display PDFs on imac

    I downloaded the latest version of adobe reader and still cannot display PDFs on my imac version 10.6.8... So frustrating...

    Can you give us a screenshot of the message?

    The only reason I can think straight casual to convey this message is that you can downloaded the trial version of Adobe Acrobat Pro and your system has associated with the opening of pdf files. If this is the case, you can change file associations so that either preview or Adobe Reader (if you have it installed) will open pdf files.

    Instructions for the file associations for Mac

  • Display PDF in the region

    I'm trying enter a pdf of a blob column in a table and display it in a dynamic region of pl/sql, with mixed results...

    The Oracle hosted instance of APEX, the following identification information:

    Workspace: Homeworld

    User: Demo

    Password: demo

    I have an application called the display PDF (# 74691) problem.  At page 2 of the application, I download a file (PDF format, I hope) to my table (APP_HELP).  On page 3, I have a pl/sql dynamic region with the following code:

    {code}

    DECLARE

    v_mime VARCHAR2 (48);

    V_LENGTH NUMBER;

    v_file_name VARCHAR2 (2000);

    v_lob_content BLOB;

    BEGIN

    SELECT Mime_type,

    blob_content,

    DBMS_LOB. GetLength (blob_content)

    BY v_mime,

    v_lob_content,

    V_LENGTH

    OF APP_HELP;

    OWA_UTIL.mime_header (NVL (v_mime, ' application/pdf'), FALSE);

    HTP.p ("Content-length: ' |") v_length);

    OWA_UTIL.http_header_close;

    WPG_DOCLOAD.download_file (v_lob_content);

    END;

    {code}

    However when I run the page 3, I get a messy confusion of the characters to the screen against the PDF that was downloaded earlier...

    I usually download PDF via a report so I wonder if the code I use is not sustainable at APEX 4.x

    If someone can take a look and offer a suggestion, I would be grateful...

    Thank you

    Tony Miller

    Software LuvMuffin

    Ruckersville, WILL

    Hello

    It is not easy.

    You must use for example to embed or object tag.

    I have change your sample to use the embed tag in the html area.

    Incorporate the src tag is the application process where I copy your code from PL/SQL area.

    Kind regards

    Jari

  • Cannot display pdf in browser

    Until I updated to DC Acrobat and Reader DC I used to be able to display PDF files in the browser.

    Now, I get this message and can not see any guest of the agreement, when I run the reader or acrobat DC application:

    readerDC.jpg

    You see this message on a Mac if you have configured Chrome to use the Adobe Acrobat Reader plugin to view PDFs (chrome://plugins). This message is incorrect if you have already accepted the end user license agreement. We are working to correct the message, but using the plugin to display the files PDF in Chrome is not supported on Mac.

    The chrome team decided to withdraw the support of plugins like Adobe Reader NPAPI. Here is a blog that describes their decision - http://blog.chromium.org/2014/11/the-final-countdown-for-npapi.html

    To view the PDF files in Adobe Acrobat Reader ms, we recommend that you download the file in Chrome and open your desktop.

  • Using Player Adobe 11, now comes up with an error, once the file is opened. "Invalid Plugin detected, will waive the software Adobe reader." Close the program so cannot display PDF files. Running windows 7. I uninstalled and reinstalled the same Adobe. He

    Using Player Adobe 11, now comes up with an error, once the file is opened. "Invalid Plugin detected, will waive the software Adobe reader." Close the program so cannot display PDF files. Running windows 7. I uninstalled and reinstalled the same Adobe. Help

    It seems that something has been added in the folder on the drive. I would recommend http://labs.adobe.com/downloads/acrobatcleaner.htmluninstalling the program, running, removing any left over parts of the record player (this could be the problem), reboot and reinstall. If all goes well, that solved the problem. Future questions about the player, you should consider asking in the forum of reader, is not.

  • I need help! I try to open my PDF but I get this message on my Macbook Pro! "Before you display PDF documents in the browser, you must launch Adobe Reader and accept the end user license agreement, and then quit and relaunch the browser."

    I need help! I try to open my PDF but I get this message on my Macbook Pro! "Before you display PDF documents in the browser, you must launch Adobe Reader and accept the end user license agreement, and then quit and relaunch the browser." What should I do?

    Do exactly what the message says, and it will go away.

  • Before displaying PDF documents in the browser, you must start Adobe Reader and accept the end-user Li

    Since two or three weeks, whenever we try to open a PDF file, we get the following message:

    Before display PDF documents in the browser, you must launch Adobe Reader and accept the end user license agreement, and then quit and relaunch the browser.  There is no link in this post, and I can't find where to launch Adobe Reader to accept this agreement.  I do not understand why we started having problems all of a sudden, but it is extremely frustrating!

    We have a Mac OS X v. 10.7 Safari v. 6.0

    Thank you very much!

    If you have installed the Adobe Reader software to the deafult location you will see in your hard drive / Applications folder.

    Try this:

    1. Quit Safari

    2. from Finder > go > go to folder... > type in the path: /Applications/ and click 'Go '.

    3. run "Adobe Reader"

    4. accept the end user license

    5. open a PDF file in Safari.

  • Adobe Reader Enterprise XI deploy - disable display PDF in browser?

    It seems to be conflicting information on Adobe Reader XI and how to preconfigure the 'turn off display pdf in browser '.

    The company Administration Kit Guide says that you can do through the MSI property:

    DISABLE_BROWSER_INTEGRATION = YES

    However, the acrobat help, says you can ONLY do it manually via individual add-ons.

    I have the version redestributable of Adobe, and I used the Business Guide to the AIP and used the Customization Wizard to create the package and uses the line of properties when the msi is installed to turn off the display

    While it is right?

    No it's not. Acrobat help is for end users. The ETK is for admins. Follow the ETK for config and deploy guidelines.

    Ben

  • Acrobat XI: No box "Display PDF in browser"?

    In Acrobat XI are there no checkbox for "Display PDF in browser"? Whenever I open a PDF file in a Web site that wants to open with Solution Explorer and not Acrobat.

    Not sure about the box you are looking for. Maybe this link will help you: http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html.

  • Acrobat help. Display PDF in browser. Acrobat XI

    This question has been posted in response to the following article: http://helpx.Adobe.com/Acrobat/using/display-PDF-browser-Acrobat-XI.html

    Start Internet Explorer. Open the Menu Tools > manage add-ons

    In the middle left under display: select "all the secondary elements.

    Disable Adobe PDF Reader

    Best regards, Juergen

  • Cannot uncheck 'Display PDF in browser using' on mac

    Player 10.0.0

    "display PDF in browser using" in preferences Internet is stuck on Adobe Reader. Enabled / disabled and cannot be deselected.

    Also, not the whole browser display a PDF in the browser via FTP sticks (where my reason for is in see/disable this plugin)

    Had to remove the file:///Library/Internet%20Plug-Ins/ plugin file to delete.

    The official article for plugin Safari problems troubleshoot Acrobat and Reader X (Mac OS X) from Adobe-

    http://kb2.Adobe.com/CPS/870/cpsid_87060.html

    Thank you

    Karan

  • How to restore the menu bar (file-editing-display) PDF?

    How to restore the menu bar (file-editing-display) PDF? I use version Adobe Acrobat 8.1.3. Any help would be appreciated. Thank you!

    Kolja

    I had a similar problem with Adobe Acrobat Pro X, where the menu bar would not appear.  I was able to get menu bar to appear if I resized the document by placing the pointer on the right, left, top or bottom of the document (you see a double arrow), and then by clicking and dragging.

    The problem was definitely solved for all documents by opening Adobe Acrobat without having to open a document.  Then click on Edit in the menu bar.  Then click on Preferences.  In the preferences of the box click on full screen at the top left.  Then find the section Navigation screen complete.  Check the box show the Navigation bar.  Finally click on OK at the bottom right.

    I hope this helps someone and saves a lot of frustration.

Maybe you are looking for