Hi,
the reason is the Chrome-internal Flashplayer.
But the newer swfkrpano.js scripts (at least 1.0.8.15) are already handling this Chrome problem - the newer scripts are manually capturing the mouse-wheel events inside the browser and then sending them via javascript to the krpano viewer.
So I would recommend updating the swfkrpano.js.
Best regards,
Klaus
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 |
<script src="velden.js"></script>
<div id="pano" style="width:100%; height:100%;">
<noscript><table style="width:100%;height:100%;"><tr style="valign:middle;"><td><div style="text-align:center;">ERROR:<br/><br/>Javascript not activated<br/><br/></div></td></tr></table></noscript>
<script src="js/swfkrpano.js"></script>
<script src="js/swfaddress.js?tracker=null"></script>
<script>
embedpano({swf:"velden.swf", xml:"traumschiff.xml", target:"pano"});
</script>
</div>
|
Hi,
but a few lines later you are including the old swfkrpano.js (from 2012-01-16) and therewith overwriting the previous defined embedding functions:
![]()
Quellcode
1 2 3 4 5 6 7 8 9 10<script src="velden.js"></script> <div id="pano" style="width:100%; height:100%;"> <noscript><table style="width:100%;height:100%;"><tr style="valign:middle;"><td><div style="text-align:center;">ERROR:<br/><br/>Javascript not activated<br/><br/></div></td></tr></table></noscript> <script src="js/swfkrpano.js"></script> <script src="js/swfaddress.js?tracker=null"></script> <script> embedpano({swf:"velden.swf", xml:"traumschiff.xml", target:"pano"}); </script> </div>
Remove that swfkrpano.js script including there completely.
Best regards,
Klaus