I'm using the WP plugin Pro, when turning to the last page can you provide the script to turn to the book first page? Ty
Use ready function:
function ready(scene) { scene.ctrl.addEventListener('endFlip', function(e) { if(scene.ctrl.getPageForGUI()==scene.book.getPages()) { scene.ctrl.goToPage(0); } }); } ready;
Use ready function: