3D FlipBook - deep link and external link within a publication

d***r@keryid.hu
2021-02-16
2021-02-16

Dear iberezansky,

I have a pre-purchase question: Is it possible to scroll through the table of contents (not the program) within a publication in the form of internal links and open the link on the other pages on a new page? I am asking for your reply as soon as possible because the publication should be published soon. Thank you in advance for your speed. Regards: Joe

Replies

a***r@3dflipbook.net
2021-02-16
2021-02-16

Yes, i it is possible to do. You need to use custom PDF links handler, you can set it in ready function:

function ready(scene) {
  scene.pdfLinksHandler.setHandler(function(type, destination) { // type: 'internal' (destination - page number), 'external' (destination - url)
    return true; // true - prevent default handler, false - call default handler
  });
} ready
Log In to leave a comment