Discussion:
Known parameters for embedded PDFs in HTML (Acrobat Reader)
(too old to reply)
Joel Thornton
2006-07-27 00:44:14 UTC
Permalink
Does anybody know what parameters are available for PDFs which are
embedded in an HTML page (Acrobat Reader viewing plugin)?

Here's what I'm working with now:

<object id="Pdf1" classid="clsid:CA8A9780-280D-11CF-A24D-444553540000"
width="100%" height="100%">
<param name="src" value="./test.pdf">
</object>

I'm hoping to find a way of telling the Reader plugin to hide its own
toolbar by default. Any help is appreciated.

Cheers,
Joel
ChadSolberg
2012-06-08 22:42:10 UTC
Permalink
append the following to the source value:
#navpanes=0&scrollbar=0&toolbar=0

Example:
<object id="Pdf1" classid="clsid:CA8A9780-280D-11CF-A24D-444553540000"
width="100%" height="100%">
<param name="src" value="./test.pdf#navpanes=0&scrollbar=0&toolbar=0">
</object>

Note:
You can use any combination of the params listed at the following documenation ref:
http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf



ChadSolberg
--
http://compgroups.net/comp.text.pdf/known-parameters-for-embedded-pdfs-in-html-acro/6605

--http://compgroups.net/comp.text.pdf/known-parameters-for-embedded-pdfs-in-html-acro/66057
Loading...