bertigo has asked for the wisdom of the Perl Monks concerning the following question:

I want to create an external link ( with an another pdf file) in a pdf file with perl::API2. I don't find any example to help me to use the NamedDestination method. The purpose to the script is to create a script reference guide including a link for each script. Each script is associated to a pdf file( created by pod2pdf). Thanks for any help.

Replies are listed 'Best First'.
Re: pdf::api2 how to use NamedDestination
by Anonymous Monk on Oct 04, 2008 at 14:35 UTC
    ??? You use ->named_destination() for internal links, you use ->url() for external ones
      So url is the good method to use. But, to be clear, I want to create a content index so people viewing the pdf can click in the index and go straight to the relative pdf file. With Html such a problem is quite easy. But using this module, it's a not clear for me and I don't find any sample using url or namedDestination methods. Thanks for any help