Hi all,
I hope someone can help me, I would like to make a link from a html page to my flippingbook and open the flippingbook directly to a certain page.
There is a link to the project : http://www.evianroyalresort.com/news/001/fr/index.html
I think I need to make some javascript to call the GotoPage function from my webpage but my knowledge stop here !
I made this javascript :
<script language="JavaScript">
function PageURL() {
var page = ebrochure_fr.myBook(gotoPage:10);
}
</script>
and this link :
<a href="#" onClick="PageURL('10'); return false;"><strong>Lien vers page</strong></a>
the AS function :
function gotoPage() {
if (zoomed) {
return;
}
var destPageNumber = Number(navbar_mc.page_number_txt.text);
if (!isNaN(destPageNumber)) {
myBook.flipGotoPage(destPageNumber);
}
}
ExternalInterface.addCallback("gotoPage", null, gotoPage);
But it doesn’t work, thanks for your help.
sp.