Dear visitor, welcome to krpano.com Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
This post has been edited 1 times, last edit by "VN2009" (Jun 19th 2009, 9:05pm)
Hi,has anyone made any new panos with beta 8 ? i think i have an issue but want to see if others expirience the same. i made some new panos and the rotate very choppy. used same code from one i created with 1.0.7 and it is way smoother. they are both using the same 1.0.8 beta 8 krpano.swf, only difference is the tools used to chop up the image, new vs. old ..... the code used in train.xml was cut and pasted from suplobby.xml .... see if you can notice the difference in how smooth the panos rotate, it happens for me locally and over the internet.
![]() |
Source code |
1 |
<display flash10="off" /> |
This post has been edited 1 times, last edit by "rinks" (Jun 19th 2009, 11:13pm)
in this case the "swfobject.js" file was missing, this gives also the same message,
Quoted
I have visited few links here on the forum & I cant see their pano bcoz it gives me Error "flash 9 not installed"
Here is one sample I cant see bcoz it needs flash 9 & I have flash 10 installed.
http://www.maya360.com/ADV/code/test2.html
No... if the user does not have flash 10... the pano will still display fine... it just falls back to the flash9 mode. Some things may look odd if you've tweaked it to display in flash 10 (like straight lines being wavy).and what if I set the flash10 options in "display" to ON, then a user with flash 9 can´t see my pano? So it´s better to always use flash10 off?
in this case the "swfobject.js" file was missing, this gives also the same message,
in the 1.0.8 beta html examples I have also added a detection if the swfobject.js was found,
and if not it shows now a correct message,
![]() |
Source code |
1 2 |
<div id="krpano"> <noscript><table width="100%" height="100%"><tr valign="middle"><td><center>ERROR:<br><br>Javascript not activated<br><br></center></td></tr></table></noscript> |
try disabling flash10:i cant really figure out what is going on un the new panos i have made. check this one out. even single processing it is choppy. when you get to nadir and zenith it gets really really bad. i am not doing anything different from what i normallt do but these ones are not smooth enough for me to use commercially. someone take a look and let me know if the nadir and zenith are choppy. i know the patching is terrible but this is just a test. i rotate past the nadir and zenith and it almost locks up.
http://www.virtualnorthland.com/panos/__…0w%20train.html
Klaus - this is confusing to me *blink*
If the "swfobject.js" file is missing... then shouldn't the default contents of the div be shown?
![]() |
Source code |
1 2 3 4 5 6 7 8 |
if (typeof(deconcept) !== 'undefined' && deconcept.SWFObjectUtil.getPlayerVersion().major >= 6) { ... embed flash ... } else { ... show error message - flashplayer9 needed ... } |
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
if (typeof(deconcept) !== 'undefined') { if (deconcept.SWFObjectUtil.getPlayerVersion().major >= 9) { ... embed flash ... } else { ... show error message - flashplayer9 or higher needed ... } } else { ... show error message - swfobject.js not found ... } |
This post has been edited 2 times, last edit by "GaryD" (Jun 28th 2009, 7:59pm)
yes, the original pixel width and height is used,
Quoted
What I need to know now to solve the solution differently is what is the Unit of the height and Width by the distorted pixels? if its pixels what is the viewers real pixel width? and secondly when you rotate the distorted hotspots what focal length do you use.
[*]new "preload" parameter for plugins
- force loading before pano,
- can be used for the soundinterface plugin for example to make sure that the soundinterface is already loaded before making calls to it
- example usage:
![]()
Source code
1 2 3 <krpano onstart="playsound(...);"> <plugin url="soundinterface.swf" preload="true" /> ...
Hi, sorry, I'm not sure what you mean exactly...Can it be used to load a intro which is in another swf ?
in other terms, can it be an alternative to "embed krpano in another swf" (which is not possible actually) ?