Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Araneo« (20. März 2009, 06:58)
Thanks a lot. It works fine.check your url path / structure.
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Araneo« (20. März 2009, 07:12)
I did the same thing.But I had the same problem as described above and solved it by typing in absolute paths to my pkpano.swf and to the xml file.
I tried my site with IE 7 and it worked fine to my surprise. I have a few formating issues with my css when using IE, but the pkpanos play back fine now.Hi,
I did the same thing.But I had the same problem as described above and solved it by typing in absolute paths to my pkpano.swf and to the xml file.
Does it work with IE?
Best regards.
AB
As I checked the source code of your pages, it seems to me that you did'nt use the same code as those proposed by Klaus in documentation section (below). Maybe it is an explanation.The only odd thing I can think of would be to check your jumi plugin... there's an option for setting the defualt absolute jumi path... but that should only affect how the embedded php file is located... and not any arguments that are passed... or stuff that is hardcoded in the php.
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<div id="krpanoDIV">
<noscript>ERROR: no Javascript</noscript>
</div>
<script type="text/javascript" src="./swfobject/swfobject.js">
</script>
<script type="text/javascript" src="./swfobject/swfkrpanomousewheel.js">
</script>
<script type="text/javascript">
// <![CDATA[
if (typeof(deconcept) !== 'undefined' &&
deconcept.SWFObjectUtil.getPlayerVersion().major >= 6)
{
var so = new SWFObject("krpano.swf", "krpanoSWFObject",
"640", "480", "9.0.28","#000000");
so.addParam("allowFullScreen","true");
so.addVariable("pano", "krpano.xml");
so.useExpressInstall("./swfobject/expressinstall.swf");
so.setAttribute("xiRedirectUrl", window.location);
if ( so.write("krpanoDIV") )
{ var mousewheelfixes = new SWFkrpanoMouseWheel(so); }
}
else
{
document.getElementById("krpanoDIV").innerHTML =
'Flash Player 9 needed';
}
// ]]>
</script>
|