We're considering using our PDFs to provide "online Help" from entries on the Help menu of a Java application that's supported on both Windows and Solaris. Any "gotchas" we should be aware of? Any tips on the easiest/best way to do this?
We're considering using our PDFs to provide "online Help" from entries on the Help menu of a Java application that's supported on both Windows and Solaris. Any "gotchas" we should be aware of? Any tips on the easiest/best way to do this?
You can get better consistancy by using the HTML Object tag to force the PDF to display in a frame or new window. Also, if you make all links in the PDF and the Java Help menu call a server side script (rather than link directly to a PDF) you can have near total control over how PDFs are handled in the cross linking.
But the main point is to make sure the cross linking between documents doesn't confuse or loose the user, or obscure your application.
Almost forgot, there's also a performance issue with PDF. The help files should be small and linearized (i.e. web optimized). It's often useful to have video presentations embedded in the PDF. If you do this, then make the actual media files web links. Don't embed the media into the PDF.
Cheers,
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script