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
|
|
0
|
|
|
|
Reply
|
joelpt (1)
|
7/27/2006 12:44:14 AM |
|
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/66057
--
|
|
0
|
|
|
|
Reply
|
ChadSolberg (1)
|
6/8/2012 10:42:06 PM
|
|