Posts by schang

    Rather than apply rotation corrections in the viewer at run-time, there are cases when we wanted to "burn it" into the image so that it can be viewed with the rotation correction - either for viewing the image file directly or in other viewers that don't support the same rotation parameters.

    Also I just noticed that the -oversample option is gone. Was this functionality also removed? We did use this too when using view mode.

    I was previously using ktransform from the 1.0.8 beta8 (Windows) tools. This version had a rotate mode that could rotate the input sphere. I don't see this mode in the latest ktransform in the 1.0.8.11 tools for Windows. Is this functionality no longer supported in the latest version or is it available through some other mode or tool? Thanks!

    I have my own plugin swf that I have krpano include via the krpano xml file. Before using krpano, I would embed the swf directly into my page and could ensure that the swf was never cached by any clients (and always getting the latest changes) by adding a random number as a query string parameter to the swf url like in this example javascript using swfobject:

    Code
    var randomId = Math.random(10000);
    var so = new SWFObject("my.swf?randomId="+randomId,"mySWFObject","100%","100%","9.0.28","#000000");

    Now using krpano to include my swf, I instead specify my swf url in the krpano xml like this:

    Code
    <plugin 
    		name="mySWFObject" 
    		url="%SWFPATH%/my.swf" 
    		width="100%" 
    		height="100%"
    	/>

    Unless I dynamically generate my krpano xml, I can't specify the random number anymore in the plugin URL. What I am wondering is if there is any built-in way through the krpano xml, to make sure my plugin swf does not get cached? Thanks!

    What I would like to do is control the error handling UI in my own plugin rather than use the krpano error UI. So I am purposely causing the error with a bad xml url in the load request to krpano.

    I can upgrade to beta 8 but I did not see any way to control this error UI in the release notes, so is it actually possible to control the error UI in beta 8? Should the onloaderror event work for using my own error UI?

    I am using 1.0.8 beta7 and would like to know if there is a krpano setting to remove the error message display. The error message display I am referring to is the black background with white text error message that displays over the center of the panorama view when there is a load error (not the error log). I have tried the krpano showErrors="false" but that just seems to disable the error log. I have also tried using the event onloaderror and I do get my callback on the event but it does not remove the error display for me.
    Any suggestions would be greatly appreciated!