Hi,
I made a lovely presentation on the Mac side using all of Acrobat's enhancement features. I set the initial view to 100%. On the Mac, this puts the Window at 100% and the pages fit inside the window.
On the PC, the initial view is also 100%, but the zoom is such that only a third of the page shows in the window. If I change the view to 50%, I get approximately the view that shows on the Mac (which is what I want).
Is there anyway to detect the user's operating system and adjust the initial view accordingly? Or any ideas. I tried using Fit Page, but the first view is too large (and not very pretty.)
Thanks.
You can also use a document level JavaScript to set the "zoomType" to fit the page, which should force the view to page size for whatever resolution the user has.:
this.zoomType = zoomtype.fitP; // set zoom to fit page
George Kaiser