Hi,
I am using KRpano 1.0.8 beta 9. I use the multires droplet and outputed an image (pano) with mark "Demo Version". How can this be removed, I have the unlimited version.
additionally to the tools license, the viewer license must be also in the folder of the tools,
it is needed there, because it will be embedded into the generated swf,
I wonder what is wrong with my settings with the new krpano tools / viewer when I use "MAKE PANO (SINGLE-SWF-MULTIRES) droplet.app".
The html file doesn't load the SWF-file if it is located on a different server. See below:
working:
http://s3.panoraamakuvat.fi/panorama_fil…joulupukki.html
not working:
http://www.panoraamakuvat.fi/demot/2_joulupukki.html
right, I see the problem,
it's the call to the flashplayer that should disable/hide the menubar,
that's normally working only locally on 'trusted environments' and will
be ignored in any other case,
internally the flashplayer does that via the "fscommand", but this interface
is disabled for flash files on external domains, and the call fails the all
following command were stopped by the flashplayer,
I have fixed that problem now for the next release!
a quick fix to get it working, would be to set the Flash "allowScriptAccess" parameter to "always",
e.g. add:
|
Source code
|
1
2
3
|
var swf = createswf(...);
swf.addParam("allowScriptAccess","always");
...
|
best regards,
Klaus