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
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