Commit 84e050cc6680c38d65b4cf9b6a1c98c58d835520
1 parent
f75a06930f
Exists in
master
table_demo: added bookmark to 3rd page (table demo) in demo PDF
Showing 1 changed file with 7 additions and 1 deletions Side-by-side Diff
table_demo
View file @
84e050c
... | ... | @@ -90,7 +90,13 @@ |
90 | 90 | // action |
91 | 91 | $action = $pdf->create_action("GoTo", "destination={page=2}"); |
92 | 92 | // bookmark |
93 | - $pdf->create_bookmark("Page 2", " action={activate= " . $action . "}"); | |
93 | + $pdf->create_bookmark("Site Summary Figure", | |
94 | + " action={activate= " . $action . "}"); | |
95 | + | |
96 | + // action | |
97 | + $action = $pdf->create_action("GoTo", "destination={page=3}"); | |
98 | + // bookmark | |
99 | + $pdf->create_bookmark("Table Demo", " action={activate= " . $action . "}"); | |
94 | 100 | |
95 | 101 | // text/image |
96 | 102 | $pdf->fit_textline("Jump to SSF for SHACK-10A", 20, 750, |