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!