Need help with PDF in inline frame

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a calendar I edit weekly that I've saved to a PDF. I've linked the
PDF as an inline frame to my main page so the viewer can see it from the main
page. My problem is it's also showing all the navigation bars as well as the
document. How can I get it to just show the document?
 
unless you convert it to a .gif (not so bad - i do it for newsletters)


| Since it's a pdf, it has to open in a pdf reader.
| You can't simply display a pdf in a web page.
|
|
| --
|
| Steve Easton
| Microsoft MVP FrontPage
| FP Cleaner
| http://www.95isalive.com/fixes/fpclean.htm
| Hit Me FP
| http://www.95isalive.com/fixes/HitMeFP.htm
|
| | >I have a calendar I edit weekly that I've saved to a PDF. I've linked
the
| > PDF as an inline frame to my main page so the viewer can see it from the
main
| > page. My problem is it's also showing all the navigation bars as well
as the
| > document. How can I get it to just show the document?
|
|
 
You may be able to control the pdf toolbars if you use the
<object> tag (along with correct <param>'s) instead of using
an iframe. The code is very similiar to what you are
probable already using


<object type="application/pdf" data="filename.pdf"
width="640" height="480">
<param name="src" value="filename.pdf" />
</object>




message
:I have a calendar I edit weekly that I've saved to a PDF.
I've linked the
: PDF as an inline frame to my main page so the viewer can
see it from the main
: page. My problem is it's also showing all the navigation
bars as well as the
: document. How can I get it to just show the document?
 
Back
Top