Initial View + Viewing Through the Plugin is Inconsistent

We have a set of PDF's that are all set with an initial magnification of 'Fit to Page / Single Page'.
When browsing between documents in firefox + acroread plugin via links/bookmarks embedded within, the plugin will ocassionally change to an initial magnification of '125%'.  It does seem like it's more likely to happen if you use the bookmarks the swap between documents as opposed to links in the document text.  We've also tried setting the the initial view in the reader's preferences, however this seems to have little/no effect.  We can't seem to reproduce this if we read the pdf in an actual acroread instance, as opposed to the plugin.
We have tried various versions of Adobe in the production of the pdf's to verify it doesn't have anything to do with what is produced.  We have yet to try Adobe Acrobat Reader 9.1 to see if this has been corrected in later versions.

Hi JasonMock,
Fit Page layout adjusts the magnification level so that one page fills the document pane vertically. Therefore, the magnification level can be any value depending on a number of factors like the browser window size, any navigation panel is opened/closed etc. At any moment, Reader will try to fit the page in the document pane. So if PDFs are to be opened at a particular zoom level then try setting that magnification level (say 100%) in the File > Document Properties>Initial View settings from Acrobat.
You can also try changing the size of the standalone acroread window to see the change in the magnification value in the Fit Page layout.
Thanks,
Swati

Similar Messages

  • How i enter the ECG signal to the lab view through the sound card

    first i open the help and find example the display the signal of the mic
    and i enter the ECG signal through the mic and displaied
    but when displaied the ECG appearied only one period on the chart so on if the chart with full screen you can see only one period
    and when i change the x scale the signal compressed in a part of chart and the remain part of the chart empity
    so how i display at least three periods of ECG 
    Attachments:
    ECG with sound card.vi ‏20 KB
    Untitled.jpg ‏37 KB

    I do not have LabVIEW version 9, only 8.6
    Without looking at your program can take a guess. Have you set the property "chart history length" of the graph? If you consider that an individual has a heart rate of up to 50Hz, or period of 20ms. Soon the number of points required is (3 * 20ms) / (sample time).
    If this is not the problem, you could send the converted code to version 8.6 of LabVIEW?

  • I have partially downloaded the new version of adobe flash player on mozilla through the plugin option. it wont let me open it or watch any videos until i download it completely. how can i fix this?

    i cant figure out how to download the application any other way. everytime i click on it in the downloads box it says application not found.

    Well, after hours of trying to figure it out I gave up and un-installed and re-installed that last verion of Adobe Flash Player and now it seems I can play games again in Messenger. Everything else had been fine just that. I can only figure it was because it was having a hard time updating the first time and took me 3 tries. So even though it said it was installed, apparently it wasn't done correctly.
    Though when I couldn't figure out what was wrong at first I looked and checked to see all the things were enabled that were supposed to be and they were.
    I even tried to go to the Adobe site and download the last version I had and couldn't find it. Kept coming up with the new version. Others said if you download a particular older version it may not have all the security features in it.
    This really gets to be a bit much, especially when you're by yourself and have only a smattering of knowledge of technical things.
    Thanks fore responding to my question.
    DFelice

  • Help!  I need the Comments List to Open in Initial View

    I have Adobe 8 Professional.  I want the Comments List to be set to Open on Initial View, but the Navigation Tab does not have this option.  Is there any way to get this setting?
    I have Preferences set to open to "Restore Last View", but I think this only affects my settings not the people I send it to.
    Thanks in advance.

    You are not posting a feature request, but a question on how to to something. You have posted in the wrong forum. Please repost in the Acrobat Mac or Windows forum.

  • Initial View is disabled on a Form created in LiveCycle ES2

    Hi,
    I am trying to change the preferences using the Initial View tool in Acrobat.  I want to set it to open with bookmarks visible.  However, the entire initial view page is disabled for me.  The PDF is one that I created myself using LiveCycle Designer ES2.  I am using Acrobat Pro X.  Why would this functionality be disabled?
    Thanks,
    Nicole

    Thank you for your link. Unfortunately, I am not a developer and that was like a foreign language to me.  Is it possible to accomplish the same from a LiveCycle menu?
    The view of a document can be set in manifold ways in Acrobat/Reader.
    If single page, 2-up continious, with bookmarks panel, fit to width etc..
    A lot is possible, but only with the menu.
    JavaScript enables control of all these things from within a XFA-form.
    Therefore the properties of the viewState object are used.
    overViewMode controls the panels and full screen mode.
    pageViewLayoutMode controls the page layout.
    pageViewZoom controls the zoom level.
    pageViewZoomType controls the zoom adaption to the application window.
    This properties can be changes through a button script or the docReady:event of the form.
    So you're able to control the initial view of the form.
    event.target.viewState = {overViewMode:3};
    event.target.viewState = {PageViewLayoutMode:1};
    event.target.viewState = {PageViewZoom:0.75};
    event.target.viewState = {PageViewZoomType:1};

  • Initial View set in PDF Document not working.

    I have a PDF document w/Initial View in the Document Properties set to Navigation tab: 'Bookmarks panel and Page', and Open to page '1''.  However, when I send this document out, the Initial View settings do not happen (The PDF opens to the page last accessed before the document was sent and the navigation pane does not display).  Help - what am I missing or doing wrong when trying to distribute PDF?
    I am using Acrobat X Pro.

    It might be the settings in Acrobat that is causing the problem. Edit – Preferences…, under Categories select Documents. Uncheck Restore last view settings when reopening documents.

  • Exporting PDF's - Initial View settings?

    Hey all!
    Is there any way from InDesign CS4 to set the Initial View of the PDF when exporting your layout to a PDF? I would like to be able to set the display of the Navigation Tab, the Page layout, Magnification, and a few security settings. Is this even possible? Or do I just have to do this from Acrobat? This might be where developing a script for Acrobat might be in my future
    Much thanks!
    Eric

    That must be done in Acrobat.
    Bob

  • Set PDF Document Properties Initial View by Acrobat SDK with C#

    Hi,
    Here am trying to set the PDF document initial view by the Acrobat SDK with C#.
    Here I am show my screen shot which properties I want to set.
    For this process I am referred Acrobat SDK and also following Adobe forums they also asked similar question.
    http://forums.adobe.com/message/3866361
    http://forums.adobe.com/message/4803264
    http://livedocs.adobe.com/acrobat_sdk
    And also I am used following C# code
          Acrobat.AcroPDDocClass doc = new Acrobat.AcroPDDocClass();
          doc.Open(@"D:\..\sap.pdf");
    doc.SetOpenInfo(1,1,"Fit Width");
          doc.SetPageMode(3);
          doc.Save(1, @"D:\..\sap.pdf");
          doc.Close();
    From the above code {doc.SetPageMode(3);} is working for set the page mode.
    But I am having problem in following code {doc.SetOpenInfo(1,1,"Fit Width");}
    Because it won’t work I do’t known, and there is no clear samples in the SDK reference document.
    So please give advice and clear sample code/syntax to meet above needs which are marked in red box.
    Document Properties - > Intial View
    Document Option
         Show: Bookmarks Panel and Page
         Page Layout: Continuous
         Magnification: Fit Width
    Window Options
         Show : Document Title
    Regards,
    Thirusanguraja Venkatesan

    ok thank you Test Screen
    I will try and let you know if i am done by automation .
    Regard,
    Thirusanguraja Venkatesan

  • PDF Initial Browser doesn't open PDF with Bookmarks as initial view - Problem (Help)

    I've saved a PDF with Initial view of Bookmarks panel and
    page opn my client and it opens with the bookmarks. I publish the
    file from my PC via Contribute and open it with my browser and it
    opens in the pages view. NOTE: when i open the PDF in Contribute,
    it opens with no special view.....

    Hey Jacksoup --
    I don't believe this is a "Contribute" issue at all.  I'm having the same problem with a .PDF of my own that I've published to the Web and I'm not using that software. 
    I had one original .pdf file that had no bookmarks.  Bookmarks were then added to the doc and resaved.  On the new version I have the document's file properties set to open bookmarks on initial view.  The document opens fine locally on my computer, but when I publish to the web (not using contribute), and then try to open the .pdf via hyperlink it opens in MSIE and the bookmarks do not appear on initial view.  It's driving me crazy.
    I'm wondering if this is some sort of adobe cache issue?  Where it's opening the document like the original?  Or if it's something to do with MSIE?  I have already cleared my browser cache and I also updated my adobe acrobat preferences to NOT restore last view settings when opening documents. 
    I have tried adding #pagemode=Bookmarks to the end of the URL to the doc...
    Everything I've read and researched on line tells me I have done all I can do.  Are we just $#!+ out of luck here or what's the deal Adobe?
    Thank you for your time! 

  • Initial View Cprojects Resource

    Hi,
    I see you can define several initial views depending on the rol, these are Projects, tasks, evaluations, templates....We have a rol with all the initialviews selected but 'resources initial view' does not appear.
    Does anyone knows why Initial view RESOURCE is not showed in cProjects like a initial tab?
    Thanks a lot,
    Sara

    Hi,
    if you refer to the "Initial Views" customizing, the "Resources" intial view is not related to
    cProjects resource management but only to the case you have RPA / WFMCORE installed
    and active.
    Kind regards,
       Florian

  • Need to set "initial view" to two up and fit page

    Newbie here, I apologize for such a basic question:
    It's easy to set an open document view to "two up" and "fit page":
    this.zoomType = zoomtype.fitP;
    this.layout = "TwoColumnLeft";
    However, I cannot seem to find the properties to set the "initial view" to the same view.
    "initial.zoomType" and "initial.layout" do not work.
    Any ideas?  Thanks, JB

    "initial.zoomType" and "initial.layout" do not work.
    This properties doesn't exist. Did you read the documentation?

  • CProjects initial views configuration (PPM 5.0)

    Hi,
    I am new to PPM 5.0
    In the earlier version, we used to configure the initial views of the cProject by configuring the "Define Initial Views for cProjects". I was not able to find that node in PPM 5.0 (IMG). I have a requirement to add approval tab for a phase.
    << Moderator message - Everyone's problem is important >>
    Thanks
    Edited by: Rob Burbank on Nov 19, 2010 4:55 PM

    Hi,
    in addition: In the Release Notes available under
    [http://service.sap.com/releasenotes|http://service.sap.com/releasenotes]
       -> SAP Solutions
         -> Release Notes SAP Portfolio and Project Management
    In chapter "UI Alignments (Enhanced)" you'll find:
    The following Customizing activities have been removed:
    Define Initial Views:
    Collaboration Projects -> Basic Settings -> Define Initial Views for cProjects
    This Customizing activity to define the initial views for cProjects is obsolete and has been
    removed. Equivalent settings can be made via portal content adjustments or in PFCG role
    customizing. In addition, please note that the initial view Resource Planning for embedding
    the resource planning application (RPA) if the WFM Core integration for resource
    management is used is not available in 5.0. The RPA can be called separately if required.
    Kind regards,
       Florian

  • Access Channels in Data Portal through Data Plugin

    Hi,
    I am supposed to write two plugins, one plugin creates the channel reads in the data values and from the other plugin I need to read in the channel custom properties.
    Is there a possibility to access the channels in the Data portal through the plugin though I know through plugin we will not be able to access any DIAdem native commands.
    I have an option of reading in these properties to a text file and then pull them into DIAdem but it is not recommendable.All that is required is read the file and create the cutom property for the existing channels.
    Can anyone give me a best suggestion for the above at the earliest?
    Thanks,
    Priya

    Hello Priya,
    A dataplugin is not limited to read a single file only. There are quite a few cases where let's say there is a file "abc.bin" and another file "abc.hdr" which belong together. One contains the channel data, the other contains the descriptive information. We have developed plugins which allow the user to select one or the other and the DataPlugin then reads the information from both. As long as you can find the second file, e.g. through the name or some piece of information which is in the file, its not a problem. And yes, a plugin can read from a binary file and an ASCII file at the same time. We even developed DataPlugins for files which are both, ASCII and Binary, in a single file.
    If you like, you can send me some examples together with a description of the file format(s) and I can try something for you.
    Andreas

  • Is there any way to force the following initial view...

    ..."fit to page" + "two pages per screen - but only if there's room for two"?
    In other words, I want the page to fit in the screen upon initial view, but I also see a lot of wasted real estate all around that could, most of the time, fit a second page. However, I don't want the two pages to count against the "fit" -- meaning, on narrower screens, the priority should go to fitting the first page (and not showing the 2nd) rather than fit both pages at all costs.
    Is there any way to ask Acrobat to do this?

    The initial view (IV) settings within a PDF file are static tags - they can't be made to dynamically-adapt based on the window dimensions,it's the renderer (Acrobat, Reader, or whatever else is opening the file) that decides if and how it will follow the IV requested by the file header.
    It would be possible to use a Page Open action on the first page of the file, which does some nasty math with the various doc.*WindowRect objects to work out how much "wasted" space there is, and then set the doc.layout and doc.zoomType properties - but page actions are a different concept to IV as the zoom will reset itself every time that page is viewed. Users don't like their application apparently fiddling with the zoom level without being told to!

  • Is there a way to set the default Initial View to Bookmarks Panel and Page on word documents that I save as PDF?

    When I save my word 2013 documents as Adobe PDF I have to open the PDF up, go to File>Properties>Initial View>Navigation Tab and then set the initial view as Bookmark Panel and Page; it gets pretty tedious.
    I use Save as Adobe PDF rather than Print to Adobe PDF Printer because I like being able to have the security settings automatically set.
    I just want to be able to save my word document as Adobe PDF with the initial view already set as Bookmark Panel and Page, and with security, so I can send it out immediately.
    Is this possible?
    Thank you.

    Use the Firefox Android Addon - Phony
    *https://addons.mozilla.org/en-US/android/addon/phony
    for more
    *https://addons.mozilla.org/en-US/android/

Maybe you are looking for

  • I've installed firmware for my zen micro, now i can't use my creative software! Please he

    I wanted to download some music from napster and to play it on my player it told me I needed a firmware upgrade. I knew from buying my player that I probably would need to upgrade so I did. Once I installed the upgrade, and plugged my zen micro in an

  • Windows Search Not Working

    Hi, Windows search (Windows Explorer) does not return anything everytime i am looking up for some files that i know exists in my laptop. Could anyone help me with this please? Thx. Youjine Config : Fujitsu LifeBook S752 OS : Windows 7 SP1

  • How much lithium in in my powerbook battery?

    I'm taking a flight tomorrow and TSA says that laptop batteries with more than 8 grams of lithium are forbidden. The spec sheet from Apple says it's a 50 watt hour battery which makes me think it's probably below this limit but I'm not positive. I wo

  • Help accessing or finding images in embedded libraries

    My library lives on an external drive. When the drive isn't attached iPhoto will create a new library for images I am trying to import from my camera. Today I didn't realize my external had been disconnected, and although at the time of import the ex

  • Crash After 10.4.4 update

    Seems that after the last software update I keep getting crashes in from my ATI Card. Here is the log from the ATI Monitory.crash.log. Can anyone help. My system does not hard crash but the monitor hangs. I think it is just the graphics card driver c