PDF fast web view option don't work like the specification  Acrobat Reader suggest...

I have an optimized/linear PDF file for support fast web viewing option.
My issue is about the plugin comportment. In the Adobe specification, when the plugin receive a large optimized PDF file, he suppose to be began to read and show the PDF file after the first page received from the web server.
In my case it's not worked properly. The plugin show me the PDF file after the download finish.
When I check the Acrobat Reader 8.1 internet settings, all fast web view options are checked properly.
If I look the PDF file properties the fast web view value is yes.
I don't know what is wrong in my setup.
Some help will be appreciate.
Thank's.

If the file is public, I suggest you post the URL for others to try
out.
Aandi Inston

Similar Messages

  • PDF Fast Web View not working in Firefox

    I am using qpdf to convert PDF to linearized PDF files. The Byte requests are working on Chrome and Internet explorer but its not working on Firefox.
    Firefox 18.0.2 (On Windows)
    Adobe Acrobat reader - 10.1.4.38
    Adobe Reader's (Edit > Preferences >)
    Internet > Fast Web View - Enabled
                   Allow speculative downloading in the background - Enabled
                    Display PDF in Browser - Enabled
    Using Apache x_send_file to render the files

    What do you mean by not displaying properly?
    I checked it on my computer in Firefox and it looks good.

  • "Allow fast web view" Option in Adobe Reader

    Hi Experts,
    Is there any chance "Allow fast web view" option in Adobe Reader can be controlled through Documaker settings? Documaker version is 11.1.
    (Adobe Reader, go to Edit --> Preference ---> Internet ---> check/uncheck the option "Allow fast web view". )
    In our case, Documaker generated PDFs are being downloaded by users using browser (IE 7/8/9). "Allow fast web view" option is causing issues in some IE versions. As of now we are manually un-checking the Adobe Reader option in every signle machine as and when issue occurs.
    Regards,
    Sruthi

    Thank you for the reply..
    I have tried the option in 11.1, 11.3 & 12.1 versions. As specified in printer reference, SortBatches option is not included in INI. Still no luck. PDF is by default taking the property from Adobe reader (version XI in my case). Any other INI changes will be required?
    Regards,
    Sruthi

  • Custom Split views don't work like the use to pre- Project 2010

    Hi
    Either we've lost some functionality along the way, or there must be another way of doing the following...
    Up until and including version 2007, I was able to create multiple custom split views in a file (or global.mpt) where the I could specify a different Task Form (e.g., "Predecessors & Successors" or the "Work") depending on which custom
    split view I selected.
    In 2010 and 2013, you have to manually select the Task From you want; the custom split view won't can help you get the specific Task Form you want ((e.g., "Predecessors & Successors", "Work").  At least that has been my experience...
    does anyone have a solution apart from needing to write a VBA event handler?
    Thanks in advance,
    \Spiro Theopoulos PMP, MCITP. Montreal, QC (Canada)

    I agree with Dale. Project remembers the last set of details applied in form views such as Task Form. Using VBA event handlers you can change this behavior.
    1. Open the project file on which this change should be applied.
    2. In the View ribbon, click Macro command and select Visual Basic
    3. If you want the details displayed in the Task Form to be applied to the current file, double click "ThisProject" node under the VBAProject(your file name) or else double click "ThisProject" node under ProjectGlobal (Global.MPT)
    4. Paste below lines in the Project_Open event handler. Save the code.
    Private Sub Project_Open(ByVal pj As Project)
        ViewApplyEx ApplyTo:=1, BuiltInView:=pjViewTaskForm
        WindowActivate TopPane:=False
        ViewShowPredecessorsSuccessors
    End Sub
    5. You can replace the last statement ViewShowPredecessorsSuccessors with another statement that is compatible with Task Form view
    Sai PMP, PMI-SP, MCTS Project, MVP Project

  • I have a iPhone 4s which belonged to a friend it was in her iTunes account she has iCloud account to I signed out of her iTunes account on this phone and signed into my iTunes account but now phone apps don't work like the phone not sycronized to min

    If I got a iPhone off a friend it was connected to her iTunes an iCloud accounts I signed out of her iTunes and signed into my own but the phone don't seem to sycronized to my iTunes account an she has iCloud app an account on this phone but I don't help

    Hey there jackofromgriffith,
    I understand that you have an iPhone from your friend that is still associated with their iCloud account. You will need to disassociate the iPhone from your friend’s iCloud account in order to resolve your issues:
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account - Apple Support
    https://support.apple.com/en-us/HT201441
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Hey! How come my clone toolbar don't work like the one in BCALV_GRID_05 ???

    The "export" button on the BCALV_GRID_05 SLIS sample program is active.  it pops a context menu, etc.
    This button is  NOT active when I carefully clone the code of BCALV_GRID_05 into a client Z program.   When I click it, nothing happens except that the grid flickers.
    I know I can work around this with a custom button, etc. but I'm really curious to know why the same code is behaving in two different ways in two different programs.
    But what I want to know is why my toolbar is behaving differently than the one in BCALV_GRID_05.
    Can anyone tell me what I'm doing stupid here ????

    I figured it out but it's kind of subtle and interesting and I'm still leaving this open as a question.
    I had borrowed my PBO output module from an earlier program in which I had to refresh the grid each time (I forget why.)  So my original code looked like this:
    MODULE ALV_DISPLAY OUTPUT.
      IF G_CUSTOM_CONTAINER IS INITIAL.
      create container for ALV grid
        CREATE OBJECT G_CUSTOM_CONTAINER
           EXPORTING
             CONTAINER_NAME = 'CUSTOM_CONTROL'.
      ENDIF.
      IF NOT GRID IS INITIAL.
         CALL METHOD GRID->FREE.
      ENDIF.
        CREATE OBJECT GRID
           EXPORTING
             I_APPL_EVENTS = 'X'      "application event
             I_PARENT = G_CUSTOM_CONTAINER.
        CREATE OBJECT EVENT_RECEIVER.
        CALL METHOD GRID->SET_TABLE_FOR_FIRST_DISPLAY
             EXPORTING IS_LAYOUT        = GS_LAYOUT_ALV
             CHANGING  it_fieldcatalog  = i_fieldcat
                       IT_OUTTAB        = i_detail.
      handler for ALV grid
        SET HANDLER EVENT_RECEIVER->HANDLE_TOOLBAR FOR ALL INSTANCES.
        SET HANDLER EVENT_RECEIVER->HANDLE_USER_COMMAND FOR GRID.
        SET HANDLER EVENT_RECEIVER->HANDLE_DOUBLE_CLICK FOR GRID.
        SET HANDLER EVENT_RECEIVER->HANDLE_CONTEXT_MENU FOR GRID.
    raise event TOOLBAR:
        CALL METHOD grid->set_toolbar_interactive.
        CALL METHOD CL_GUI_CONTROL=>SET_FOCUS EXPORTING CONTROL = GRID.
    ENDMODULE.                             " ALV_DISPLAY  OUTPUT
    As soon as I changed the above code to the following code, the "export button" woke-up:
    MODULE ALV_DISPLAY OUTPUT.
      IF G_CUSTOM_CONTAINER IS INITIAL.
      create container for ALV grid
        CREATE OBJECT G_CUSTOM_CONTAINER
           EXPORTING
             CONTAINER_NAME = 'CUSTOM_CONTROL'.
        CREATE OBJECT GRID
           EXPORTING
             I_APPL_EVENTS = 'X'      "application event
             I_PARENT = G_CUSTOM_CONTAINER.
        CREATE OBJECT EVENT_RECEIVER.
        CALL METHOD GRID->SET_TABLE_FOR_FIRST_DISPLAY
             EXPORTING IS_LAYOUT        = GS_LAYOUT_ALV
             CHANGING  it_fieldcatalog  = i_fieldcat
                       IT_OUTTAB        = i_detail.
      handler for ALV grid
        SET HANDLER EVENT_RECEIVER->HANDLE_TOOLBAR FOR ALL INSTANCES.
        SET HANDLER EVENT_RECEIVER->HANDLE_USER_COMMAND FOR GRID.
        SET HANDLER EVENT_RECEIVER->HANDLE_DOUBLE_CLICK FOR GRID.
        SET HANDLER EVENT_RECEIVER->HANDLE_CONTEXT_MENU FOR GRID.
    raise event TOOLBAR:
        CALL METHOD grid->set_toolbar_interactive.
        CALL METHOD CL_GUI_CONTROL=>SET_FOCUS EXPORTING CONTROL = GRID.
    ENDIF.
    ENDMODULE.                             " ALV_DISPLAY  OUTPUT
    Now I sure would like someone to explain THAT one to me, so I'm leaving the question open for Rich or Thomas or someone else really knowledgeable about the ABAP OO ALV classes and their methods.

  • Optimize The PDF For Fast Web View

    Am wondering: is there any difference in quality when "Optimize The PDF For Fast Web View" is  UNtagged?
    I know the files may be bigger when this option is untagged, but that aside.
    If, in day to day use, there is hardly/or no visible quality difference what is the use of this option?
    Thanks
    =
    Acrobat XI Pro/Windows

    Thanks a lot, I will leave that option tagged in future.
    The below is comparing print PDF source files to -again- PDF whilst leaving that option  un-tagged.
    Didn't 'test' it whilst having that option tagged though.
    =
    You might wonder why PDF to PDF.
    I could not get the files OCR'ed by Acrobat (magazines). No way. Tried a couple of times.
    However, I discovered - when printing them to PDF -again-  then text recognition works.
    =

  • Fast Web View breaking links/bookmarks in PDFs from Word 2007

    I'm running Acrobat Pro 8.1.2 on WinXP, and I recently noticed an issue with PDFs that I'm creating from Word 2007. If I turn on the setting "Save As optimizes for Fast Web View," any links or bookmarks in the file break when I do a Save As. If I turn the setting back off, Save As doesn't break them.
    I had had problems creating the PDFs using the PDFMaker plug-in for Word, so I used the Save As PDF or XPS feature from Microsoft instead.
    PDFs created using FrameMaker are not giving me problems.
    I don't know whether this is related, but the Settings button on the Save As dialog box is no longer active. I'm sure I was able to click it before, but I can't now. And that goes for PDFs from Word or FrameMaker.
    Anyone have any clues?
    ===========================================
    Rick Henkel
    http://rickhenkel.googlepages.com/index.htm

    This is related to a bug in the direct PDF output from Word 2007. I was told that Microsoft has fixed this bug in the final SP2 release (so when the service pack becomes available, this problem will not be present).
    Until then, the workaround is indeed to turn off the "Save As optimizes for Fast Web View" preference in Acrobat (Edit > Preferences > Documents, under Save Settings).
    Shlomo Perets
    MicroType * http://www.microtype.com
    FrameMaker/Acrobat training & consulting * FM-to-Acrobat TimeSavers
    "Improve Your FrameMaker Skills" live web-based training sessions

  • Find Tagged PDF YES or NO and Fast Web View YES or NO ?

    I want to find the tagged PDF value YES or NO and Fast Web View value YES or NO by the VBA,, Give me some idea to extract the Tagged PDF Value and Fast Web View Value by VBA from a pdf file,
    Thanking U
    Thirusanguraja V

    Thanking for your information, but i want to extract that tagging value please give me solution, if possible any other alternative way....

  • Adobe Reader X fast web view problem

    Hi,
    When I try to open a PDF with several pages from the web using Adobe Reader X, fast web view function seems not working while I could only view it after download of the whole file completed. Checked and confirmed that "Allow fast web view" selected in the Reader, as well as the PDF file being tested support such function. Here's my OS and software environment:
    - Windows 7 Pro 64-bit with SP1
    - Internet Explorer v8.0.7601.17514
    - Adobe Reader X v10.0.1
    I tried several scenario as below:
    - Disable "Display PDF in browser", no improvement
    - Uninstall Reader X and install Reader 9, test on the same PDF and fast web view working properly
    - Uninstall Reader 9 and install Reader X again, same problem happen again
    - Install Reader X on a freshly installed Windows XP with SP3, same problem appears
    Does anyone experience the same issue? Or any ideas \ solutions? Many thanks.
    Regards,
    Maguyver F.

    Hi
    Security Method: No Security
    Printing: Allowed
    Document Assembly: Not Allowed
    Content Copying: Allowed
    Content Copying for Accessibility: Allowed
    Page Extraction: Not Allowed  <--  Could this be the problem
    Commenting: Not Allowed
    Filling of form fields: Allowed
    Signing: Allowed
    Creation of template pages: Not Allowed
    Thanks for the interest
    Rudi

  • "Fast Web View" changing depending on versions

    Hi there,
    We have some PDFs that need to have the "Fast Web View" option enabled. Although the files have this option enabled when viewed on version 6.0, when the files are viewed on a later version - Version X for example, some of them are still enabled but others have been changed to "No".
    Any ideas what is going on? Are the files "Fast Web View" enabled, or not?
    Thanks for the help!

    Hi,
    Currently the only explanation we have is "Acrobat is wierd". I could understand it a little more if all files were set to "Yes" in version 6 and "No" in other versions, however some files are "Yes" in all versions?!
    Please, any ideas out there?

  • Acrobat X fast web view

    Anyone who knows how to set up fast web view in Acrobat 10 Action Wizard? See below comparison on Acrobat 9 & 10 Output Ooptions. There is no Fast Web view option in Acrobat 10.

    There is a bug because of which fast web view is always disabled. While that is fixed, here the workaround. Save the action and open the .sequ file in Notepad. Change:
                    /OptimizePDF [/b false]
    to
                    /OptimizePDF [/b true]

  • Problems with fast web view and really large PDF files.

    If "allow speculative downloads in background" is set then the Fast Web view becomes nonfunctional.  Reader is makeing the HTTP Byte range requests but will ask for almost the entire PDF file in one range (180 MB of the 182 MB file).
    If "allow speculative downloads in background" is not set then Fast Web view is working fine, Reader is making more HTTP Byte range requests but the larges ones are still small 20K or so.
    Is this behavior being experianced by anyone else?
    What are the disadvantages, if any, of having "allow speculative downloads in background" turned off?
    My environment:
    182 MB pdf file (Optimized) around 41,000 pages.  I have also seen this with 42 MB and 25 MB pdf files.
    IE 6
    Reader 9.2
    Apache webservers (On Solaris Apache 1.3.20 and Linux Apache 2.0)
    Thanks in advance
    Angus Laidlaw

    Hi,
    The signing tool use Capicom (Library from .NET) to generate attached digital signature. I also tried signing with .net class SignedCms but the result is the same. What I don't understand is why some PDFs are working and others are not.
    For example, I uploaded here a signed PDF which can be opened up succesfully: http://dl.dropbox.com/u/104591126/PDFs/Signed_Dummy1.pdf  (it is the same PDF but I didn't enable the fast web view)
    Can you suggest other signing method?
    Thank you.

  • How to enable byte serving(fast web view )  for pdf on tomcat 5.x server

    Hi,
    I am new the site and this is my first request.
    I have to download pfd, instead of waiting the user for complete download of the page, first I need to display first page, and then in the background I have to download the rest of the document. Which is byte serving. I try to implement byte serving (fast web view for pdf) for pdf files in Tomcat 5.x it is not working. The same functionality is working in other servers.
    I have not done any coding to use byte serving in the other servers, simply I enable byte serving for pdf using the adobe.
    Can any one help me &hellip;..
    Thanks&hellip;..

    Hi,
    I am new the site and this is my first request.
    I have to download pfd, instead of waiting the user for complete download of the page, first I need to display first page, and then in the background I have to download the rest of the document. Which is byte serving. I try to implement byte serving (fast web view for pdf) for pdf files in Tomcat 5.x it is not working. The same functionality is working in other servers.
    I have not done any coding to use byte serving in the other servers, simply I enable byte serving for pdf using the adobe.
    Can any one help me &hellip;..
    Thanks&hellip;..

  • Unable to enable "Fast Web View" in an existing PDF/A file.

    I have a pre-existing PDF/A file that I'd like to optimize for web publishing (i.e. enable "Fast Web View").  I have done this kind of conversion in the past using Adobe Acrobat Professional 9.0 and X but whenever I attempt to do so for this particular file via Tools and/or by making the changes in Preferences and executing a "Save As" the Fast Web View is still set to "No".  We have attempted to make this change using Ghostscript but that too has proven unsuccessful.  The file is 2.6 GB and I have attached a screenshot of the properties of said PDF/A for reference.  Has anyone encountered this before and found a way to modify the file?  Thanks.

    Tricky one. It might not be possible, since modifying to PDF/A might turn off optimization, while optimizing might turn off PDF/A... I think people have largely lost interest in fast web view since broadband is mostly so, well, broad.

Maybe you are looking for

  • Why is the Library 1 file?

    I recently converted to Mac and imported my photo library into iPhoto. What I don't understand is why it seemed to turn the entire Library into one massive file over 26 gigs large. It seems to totally defeat the ability to do a Cover Flow or preview

  • Empty System Cache... What Happens?

    So I kinda goofed up (I think). I was using the Application "Mainmenu" to repair permissions before installing the newest iTunes & iPhoto update. I inadvertently clicked on "Empty System Cache" instead of "Repair Permissions". Realized it about a mil

  • Preview app broken

    For the life me I'm trying to fix this problem I'm having with Preview, across multiple users on the same iMac, 10.8.5. Everytime I try to use the screen grab functionality, Preview just unexpectedly quits and I cannot open it again, until I go to th

  • Time Machine issues with OS 10.6.8

    Hi all, after updating to 10.6.8 I noticed a Time Machine issue. Backup takes very long but only a few MB were backed up. And after it was finished, Finder crashed and I had to do a hard reset. There´s also a "in progress" file on my USB Backup HDD a

  • Desktop 6.0 trying to delete all my Outlook calendar entries

    Since upgrading to 6.0, I've had nothing but trouble.  First it was a strange error and this forum recommended that I look for East Asian characters or skipped e-mail addresses or images that were not the acceptable BB size in all of my contacts.  I