Which event/function is called when we flip page using sheet? I need to call a custom event when we flip page from the pdf sheet itself. I could find the events flipLeft() and flipRight() but they are triggerred as soon as i hover on corner of the page. I need the event when the page number gets changed.
There is no such, use
startFlipandendFlipto organize what you need:$('body').FlipBook({ ..., ready: function(scene) { scene.ctrl.addEventListener('endFlip', function(e) { console.log(scene.ctrl.getPageForGUI()); }); } })