Suchergebnisse
Suchergebnisse 1-20 von insgesamt 20.
So, which of these three actions changes what's displayed on the screen? My assumption is that only loadscene changes what's displayed. Thanks, Keno
Thanks benji33 for adding and thanks Klaus for your response. As I understand it there are two ways to load krpano xml into memory: loadxml and loadpano. Calling loadscene then puts the specified scene into the current context and makes the pano visible (in my case every scene has a pano image). In my example and I think that of benji33, we call loadpano to load the pano into memory and then we are calling loadscene to: - now put the scene (in the xml returned by the loadpano call) into current ...
Thanks Klaus. I apologize for the late reply. I've narrowed down my black screen issue to this... After my initial call to loadpano followed by loadscene, I make a subsequent call to loadpano followed by loadscene followed by wait(BLEND) when the transition hotspot is clicked. I see the black screen (for about a second) just before the new scene loads. I am using the BLEND option for both loadpano and loadscene. Also, I do not want to have any loading gifs. Is that supposed to happen or am I doi...
Sure... Instead of loading all the panos in my tour I want to load only the panos connected to my current pano. This is to decrease overall load time. So after the first scene is loaded, I execute this JavaScript code... Quellcode 1 2 3 4 $.ajax({ type: "GET", url: "next_scene.xml", dataType: "text", context: { krpanoObject: krpanoObject }, error: function(xhr, status, error) { console.log("ERROR: "); }, success: function(result, status, xhr) { var action = "loadxml('" + htmlEscape(result) + "',...
Hello Klaus, When I make a call to loadpano or loadxml I get a black screen - it's as if the pano is unloaded. However, the hotspots are still visible. I only expected screen rendering for loadscene - so am I missing something? I apologize if this is really obvious BTW, I do not want to show and load progress graphics. So I'm using... <progress showload="none" showwait="none"></progress> Thanks again for all your amazing work! Keno
Hi Klaus, Just wanted to let you know about something we found. Using <progress showload="none" showwait="none"></progress> does not appear to make the spinner from going away. Our work-around was to use... <events onxmlcomplete="set(progress.showload, none);set(progress.showwait, none);"></events> We are using version 1.16.4 and this works fine for us. Just thought you should know. Regards, Keno
I worked! Thank you very much. We look forward to the upgrade. Thanks again for your patience and help.
I trust that what you are saying is 100% correct. However, I am confused as to why it worked with krpano-1.0.8.15-2012-10-05. How did you solve the Android stock browser issues for krpano-1.0.8.15-2012-10-05? That version seems to work perfectly but we love the new features in krpano-1.16.4 and cannot revert back. Is there a special trick you used that we could also use? Thanks in advance for all your help. -Keno
Hello Klaus, Sincerest apologies. In setting up the server for this test we did not send the 'Access-Control-Allow-Origin: *' header. However, we have since done so (which reflects our test environment) and it does not work as before on the stock Android browser (>= 4.0 and < 4.3).
The following examples use the Krpano demo code unaltered: http://www.everyscape.com/corporate/test/krpano/krpano-1.0.8.15-2012-10-05/examples/virtual-tours/demotour-weingut/tour_html5.html-> workshttp://www.everyscape.com/corporate/test/krpano/krpano-1.16.4/examples/virtual-tours/demotour-weingut/tour_html5.html-> workshttp://www.everyscape.com/corporate/test/krpano/krpano-1.16.5/examples/virtual-tours/demotour-weingut/tour_html5.html-> works The following examples use the Krpano demo code with...
Hi Klaus, I ran krpano-1.16.4/examples/virtual-tours/demotour-weingut/tour_html5.html from the Android stock browser... - with the preview and tiles first hosted on the same server as tour_html5.html --> this works - then hosted on a separate server (this is how production is setup for us and cannot be changed) --> this does not work Again I noticed that Origin was not set on the request and the image server did return the following... Access-Control-Allow-Credentials = false Access-Control-Allo...
One more thing... I noticed that the stock Android browser does NOT set Origin.
Thanks Klaus. This still did not fix the issue. I'm pretty sure, its a cross domain issue though. Here's where I am at now... <security cors="anonymous" /> Access-Control-Allow-Credentials = false Access-Control-Allow-Methods = * Access-Control-Allow-Origin = * The tile images are being returned by the server, however, the error still persists and I noticed (via Wireshark) that Origin is not set for image requests from stock Android browsers (our only problem browser). Does Krpano set the Origin...
Hi Klaus, We narrowed down the problem... When viewing a web page with the Krpano viewer (1.16.4) using a stock Android (4.1.x) browser, if the panorama media is not on the same domain as the web page, then we run into cross domain issues - "Uncaught Error: SECURITY_ERR: DOM Exception 18". Is there a solution for this? Please note that having the web page and the media served from the same domain is not an option. Also, we are setting the correct origin headers. Thanks in advance, Keno
Are you talking about a Krpano <layer>?
Hi Klaus, I'm in the process of upgrading Krpano to the latest version (1.16.4) and I get the same error. If I use the flash viewer it works, however, if I use the HTML5 viewer it doesn't. Thanks in advance for your help. -Keno
Hello, How do I automatically save trace data to a file? Is there a way to "auto-trace" actions? Is there a way to enable scrolling of trace messages on the viewer? Thanks, Keno
Hello, I'm trying to track various Krpano events via Google Analytics. I created an action to call a JavaScript wrapper function... Quellcode 1 2 3 <action name="googleanalytics"> js( if(googleAnalytics != '' && googleAnalytics.Enabled == true) { googleAnalytics.Track(%1, %2, %3); } ); </action> ...this does not work. I also tried calling Google Analytics directly... Quellcode 1 2 3 4 <action name="googleanalytics"> trace("%0: category=", %1, ", property=", %2, ", label=", %3); js( _gaq.push(['_...