hi
var hs = krpano.get("hotspot[myhotspot]");
console.log(hs.tx, hs.ty, hs.tz);
hs.tx = 500; # etc...
or
var tx = krpano.get("hotspot[myhotspot].tx");
krpano.set("hotspot[myhotspot].ty", 750);
I've tried the above solution, but in my scenario, I want tx, ty, and tz values dynamically whenever I click on the scene.
Can you please help me with this..