Posts by ccaymaz

    I found some thing :D

    When I call "add_all_the_time_tooltip" function, hotspot's renderer become 'css3d'. In "webvr_onentervr" function, I replace them to webgl and YEP!!! I can see my hotspots in VR mode. Awsome!

    But, when I exit from VR mode, there are no more hotspot titles. Then, In "webvr_onexitvr" , I switched these hotspot's renderer values to "css3d" but didn't work. I uses trace function to check all plugin attributes but they all same.


    Is there any way to reload plugins? OR that to do now? I think I am so close/

    Hi,

    I found add_all_the_time_tooltip sample in krpano-form but it is not working on VR mode. I know webGL is not rendering texts. When I enter VR mode, hotspots are getting invisible. I want to show hotspots without texts in VR mode. IDK what to do actually. Can you guys give me some recommendation?


    Hi, thank you for your reply.

    I didn't use distorted hotspot. I am just adding new hotspot and loading its animated style. I found all these code in krpano examples. Basically my code is like that.

    Code
    krObject.call("addhotspot(hotspot);");
                krObject.call("hotspot[hotspot].loadstyle(animated_hotspot);");
                krObject.set("hotspot[hotspot].ath", item.posX);
                krObject.set("hotspot[hotspot].atv", item.posY);


    Animated_hotspot style has onload-animation code:

    I am using krpano 1.19-pr5 and without VR mode, I can make it fullscreen. When I enter VR mode I can not make it full screen.

    In IOS 9, When we enter VR mode, basically kr-object is getting full screen by css right? like (position : fixed or absolute, top-left : 0, width-height:100%) If the answer is yes, I tried to hide all kr-pano div elements including target-div by css(display:none) but I couldn't make it. If the Krpano in Vr mode, safari can not be fullscreen.


    Is there any reason do you know?

    I can't use it with animation action script. If I use it without animation works well but with animation, not working.

    Animation A. script :


    Where should I focus on for fixing this issue?

    Hi,

    I have krpano licence and I am having issue wirk watermarks. I am generating "tiles" folder with krpanotools64.exe.

    Basically i am executing this code in IIS.

    Code
    krpanotools64.exe makepano -config={configfile} {imgpath}


    Pretty much easy. But in tiles folder still I have watermarks. BUT if I drop my image file on "MAKE VTOUR (NORMAL) droplet.bat" everything is good. I thing I am missing something.


    Also, I run this codes in cmd.exe

    Code
    >cd krpanopath
    >krpanotool64 register ###
    >krpanotool32 register ###
    
    
    Code registered


    I saw a lot of topics and I read but there wasn't any answer for my case. I saw also problem can be some cache problem but it is not. Can not be that.

    How can we call angular with js? I have sample but it isn't working.


    Code
    jscall(angular.element("#content").scope().sample());

    I am getting this error;
    "ERROR: jscall() - calling Javascript "angular.element('#content').scope().vm.vrService.refreshVrXml()" failed: ReferenceError: angular is not defined"

    EDIT :
    I found my answer *smile*

    Code
    jscall('window.top.angular.element("#content").scope().sample());

    try this

    Code
    embedpano({ swf: "krpano.swf", xml: "krpano.xml", id: "krObject", target: "pano", html5: "auto", mobilescale: 1.0, passQueryParameters: true });
    Code
    pano_object = dociment.getElementById('krObject');
    Code
    pano_object.call("loadscene('sceneName',null,MERGE,ZOOMBLEND(1,2,'easeInOutSine'));");

    Hi,
    I am able to add hotspot and I can set url,ath,atv etc. attributes. But I can not set style attribute.

    Code
    pano.call("addhotspot(" + item.id + ");");pano.call("set(hotspot[" + item.id + "].ath,0);");pano.call("set(hotspot[" + item.id + "].atv,0);");pano.call("set(hotspot[" + item.id + "].url,url);");


    this code above is working perfect. But I dont want to set these in js.

    Code
    <style name="mesh1" url="arrow.jpg" ath="0" atv="0" scale="1" ondown="draghotspot();" />
    
    
    pano.call("addhotspot(" + item.id + ");");pano.call("set(hotspot[" + item.id + "].style,mesh1);");


    EDIT :

    I found my answer. I have to load style instead of setting style.

    Code
    pano.call("hotspot[" + item.id + "].loadstyle('styleName');");