Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to add navigatin bar in generated PDF. So far I was able to create actions, sucha as 'NextPage'.

I wonder if there is solution to create zoom in, zoom out and 'go to Table of Content' (build in in Adobe reader).

Code example:

    /* Create an action for executing the Acrobat command Next Page */
    $nextact = $this->libPdf->create_action("Named", "menuname=NextPage");

    /* Create an action for executing the Acrobat command Full Screen */
    $fsact = $this->libPdf->create_action("Named", "menuname=FullScreen");

Thanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.