Beiträge von steoberg

    Hi Klaus,

    I'm using krpano 1.20.
    What I forgot: Hotspots also work when the Document Mode in IE11 in the developer tools is set to 10.

    Thanks

    [Edit] I could try on the clients computer now and I notice hotspots work when I click several times or when the onclick is on children of the hotspot, not the hotspot itself. But only with content="IE=10". If I put content="IE=edge" then nothing works. No interaction at all.

    [Edit2] Sorry the version is 1.20.2, the newest version. Not 1.20. I just noticed also some panoramas on the krpano website don't work. Like the Virtual Tour Paris.
    The IE Version I'm testing on: 11.476.18362.0

    [Edit3] We did a panorama once with 1.19 and that one works also in IE. Is it possible to download older versions of krpano?

    Hello,I have a panorama video and I need to set the videourl at runtime because of different videos for each language.

    I do it like this:

    Code
    <action name="set_panovideo_url" scope="local"> 
    txtadd(panovideourl, %VIEWER%/videos/, get(language), /, get(hotspot[get(%1)].id), .mp4);		
    set(hotspot[get(%1)].videourl, get(panovideourl));
    </action>


    So far it works but now the video is supposed to toggle play and pause
    everytime the user clicks on it but I can't call play(). The video
    doesn't start. I have to call playvideo(videourl). But this means I
    can't pause it and play it from where it was before. It always starts
    from the beginning:

    Code
    copy(videospot_id, caller.id);
    hotspot[get(videospot_id)].playvideo(get(hotspot[get(videospot_id)].videourl)));


    I know I can also pass a time in playvideo(). I tried it by getting the
    current time of the video before I call playvideo() but then it always
    takes a few seconds before it starts again.

    Why can't I just call play() when I set the "videourl" at runtime?

    Thanks

    Hello,

    I built a panorama and things work fine in Firefox and Chroms but I ran into two problems on IE 11:1. On my version number of IE (11.864.17763.0) on WIndows 10 navigation hotspots work but on the clients IE version (11.805.1763.0) they don't. For some reason nothing happens on hotspot click. The console or showlog don't show anything.
    My action:

    2. Panorama videos always show a black frame for a few seconds even though I set a poster url. The poster image shows up on Firefox and Chrome but not in IE (happens on both versions, mine and the older one).


    Any ideas? Thank you!
    [Edit] If I change the tour.html like described here: https://krpano.com/forum/wbb/inde…&threadID=10021
    it seems to fix at least the black frame problem. Maybe also the other problem. I couldn't test it yet since it's a pain in the a** to downgrade ie to a specific version number. I managed to downgrade it to 11.1 and there hotspots work *confused*

    Hello,
    the hotspots in my panorama are all with zoom="false". Now I need two hotspots to be always exactly next to each other. Also when I zoom in or move around they should stay relatively in the same position.

    Is that possible somehow?
    I can't parent one hotspot to the other right?

    Thanks, Stefan
    [Edit]
    To be more clear: it should behave like one hotspot. It's because both hotspots point at the same thing in the background (on the pano image).

    Maybe it's possible to make one hotspot with two graphics next to each other and I can somehow check which half has been clicked?
    [Edit] Sorry I just noticed, I wrote zoom="true", but they are all zoom="false" of course. Otherwise there would be no problem. I changed it above.