The solution you offer is brilliant but I can´t get it working.
Maybe you can give me a hint about my mistake.
After many tries I sorted the filetree like yours just to prevent a path mistake.
I prepared a pdf with links
like you said in the last version I copied your links to Acrobat where I build an area with a weblink.
Then I took the batch prozess from megazine an converted the pdf to swf files.
If I now open the megazine it looks fine. I can go over the linked area and get a hand cursor.
But if I click on it nothings happen.
I implemented the page01.swf too and it works fine. So I start to believe I made a mistake in the Acrobat but I ain´t got no clue what I´m doing wrong. Is there anything special I missed to do or implement.
My index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>MegaZine3 PageFlip Book </title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link type="text/css" href="style.css" rel="stylesheet" />
<script type="text/javascript" src="js/swfobject.js"></script>
<script type="text/javascript" src="js/swfaddress.js"></script>
<script type="text/javascript" src="megazine/megazine.js"></script>
<script type="text/javascript">
//<![CDATA[
var flashvars = {
xmlFile: "megazine.mz3" ,
//wmode: "transparent"
/* When set to true, log messages are printed to the JavaScript console (using the console.log() function) */
//logToJsConsole: "true"
};
var params = {
/* This must be the same as the ID of the HTML element that will contain the Flash element. */
menu: "false",
/* Necessary for proper scaling of the content. */
scale: "noScale",
/* Necessary for fullscreen mode. */
allowFullscreen: "true",
/* Necessary for SWFAddress and other JavaScript interaction. */
allowScriptAccess: "always",
/* This is the background color used for the Flash element. */
bgcolor: "#ffffff"
};
var attributes = {
id: "megazine"
};
swfobject.embedSWF("megazine/preloader.swf", "megazine", "100%", "100%", "9.0.115", "js/expressInstall.swf", flashvars, params, attributes);
//]]>
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
/*<script type="text/javascript" src="/fancybox/jquery.fancybox-1.3.4.pack.js"></script>*/
/*<link rel="stylesheet" href="/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />*/
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="js.js"></script>
</head>
<body>
<div id="megazine">
<h1>MegaZine3 requires FlashPlayer 9</h1>
<p><a href="http://get.adobe.com/flashplayer/"><img src="http://www.adobe.com/images/shared/download_buttons/get_adobe_flash_player.png" alt="Get Adobe Flash player" /></a></p>
<p>Please try the above link first. If you still encounter problems after installing the Flash Player, try this one:</p>
<p><a href="http://get.adobe.com/shockwave/"><img src="http://www.adobe.com/images/shared/download_buttons/get_adobe_shockwave_player.png" alt="Get Adobe Shockwave Player"/></a></p>
<p><a href="http://megazine3.de/">Powered by MegaZine3</a></p>
</div>
</body>
</html>
And the megazine.mz3
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book SYSTEM "http://megazine3.de/megazine2.dtd">
<!-- Hier beginnt die Buch-Definition. Alle Buch-Parameter werden hier definiert -->
<!-- Auch die Plugins muessen hier aufgelistet werden -->
<!-- Auch der Lizenzschluessel (bei kommerziellem Einsatz) mass als Parameter eingegeben werden: licensekey="1234licensekeynumer890" -->
<book plugins="console, keyboardnavigation, navigationbar, links, swfaddress, pdflinks, anchors, zoom, index , batchpages, bookmarks , googleanalytics, gallery, elementids, javascript overlays,"
gaaccount="UA-20219102-1" gatrackevent="buttonClicked,Outgoing,{url}"
pagewidth="528"
pageheight="764"
errorlevel="WARNUNG"
thumbloadtext="Einen Moment"
thumbloadtextsize="12"
zoomminscale="0.25"
zoommaxscale="2.0"
zoomsnap="0.25,0.5, 0.75, 1.0, 1.5, 2.0, 3.0, 4.0"
zoomsteps="4"
dragrange="30"
maxloaded="6"
qualitycontrol="true"
thumbscale="0.35"
elementsfadein="false"
cornerhint="false"
pagethickness="0.13"
shadows="0.6"
startpage="1"
centercovers="true"
pageoffset="0"
sameappdomain="true"
samesecdomain="true"
>
<!-- Batch begin -->
<chapter
pages="scale('../pages/page_l{{num}}.swf');
count(1,4);
settings(true, true, true, true, true)">
</chapter>
<chapter>
<page>
<!--<img height= "764" width ="528" src= "../fuer_mich/01/de/pages/page01.swf"/>-->
<img height= "764" width ="528" src= "../pages/page_l5.swf"/>
</page>
<page>
<img height= "764" width ="528" src= "../pages/page_l6.swf"/>
</page>
</chapter>
<chapter
pages="scale('../pages/page_l{{num}}.swf');
count(7,57);
settings(true, false, false, false, false)">
<!-- batch end -->
</chapter>
</book>
Any hint is welcome
Merry christmas