Great solution, is it possible to implement distorted="false" to it? I've had no luck..
I guess it is the rx that is not supported by false distortion. So nevermind. I'll try some scaling instead
Posts by klaea
-
-
nvm.. it was the passQueryParameters. It had to be set to false.
-
I have integrated krpano with the wordpress frontend, which works as expected. But when I integrate krpano with the admin area I keep getting this error:
"Uncaught TypeError: c.action.getArray is not a function
at Object.l.actions_autorun (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:93071)
at v (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:163669)
at z (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:162666)
at eval (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:157065)
at eval (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:79325)
at q (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:79032)
at G (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:79154)
at eval (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:79265)
at b (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:156960)
at Object.A.loadpano (eval at embedpano (krpano.js?ver=5.9.3:10:74), <anonymous>:1:170595)"
I feel lost. Could anyone point me in the right direction? -
Well, of course.. You sir, you are awesome. Thanks!
-
Hi, is there a way to combine parameters on pdf lightbox?
ex: test.pdf#toolbar=0&view=Fit
-
Hi, did anyone come up with a solution for this? So that it doesn't fire all the time
-
Even better, thank you! :)
-
Bought this plugin a few months back. Works like a charm! Had some minor issues that was resolved by the author in no time. Great support!
-
Solved it by putting offset on hotspot instead. Works as a workaround
-
Hi, sorry for just posting a question and no code example, but is it possible to set an offset value to looktohotspot?
-
So simple, but not quite obvious. Thanks a bunch! :D
-
Hi,
My image hotspots are loaded as normal, but other images, like;
<layer type="text" url="..." /><layer type="container" url="..." /> are not loaded in IE and edge. The layer is there and it's clickable. But no image is loaded. Works like a charm in all other browsers.
Am I missing something? -
Thanks for sharing!
I've been trying to load scene thumbs dynamically into the thumb_background layer with no success. Well, they do show up in the layer but they just align on top of each other.
I'm trying to implement the addthumbs action from Kuchlerhaus demo.
for(set(i,0), i LT scene.count, inc(i),
calc(thumbname,'thumb_' + i);
addlayer(get(thumbname));
copy(layer[get(thumbname)].url, scene[get(i)].thumburl);
set(layer[get(thumbname)].parent, 'thumb_background');
set(layer[get(thumbname)].linkedscene, get(scene[get(i)].name) );
set(layer[get(thumbname)].onclick, hidethumbs(); loadscene(get(linkedscene), null, MERGE, BLEND(0.5)); );
);Has anyone tried smth similar with success?
NVM, thanks. Went with another solution.
-
Hi,
How can I switch the caption for context menu items? Just like the enterfs and exitfs, I would like to do this for custom items.
Thanks!
-
-
Hi,
I am also interested in this functionality. I would like to keep the VR mode as is and just affect the gyro mode.
Meaning - to add the VR cursor and lookto click when using gyro. Would this be possible? -
Hi,
This line: onloaded="add_html_code(get(data[html_example_code].content), 10);"
How can I make this an onclick event on a hotspot? I've tried to add the add_html_code to set(layer[html_div]....). But I cant figure out how to make it work.
Example:
<hotspot onclick="Too here --> "/>
<layer name="html_div" onloaded="Move this --> add_html_code(get(data[html_example_code].content), 10);" />
<data name="html_example_code">
<![CDATA[ ... ] ]>
</data>