You are not logged in.

Search results

Search results 1-20 of 168.

Saturday, February 18th 2023, 4:30pm

Author: light_line

Fuzzy Search Plugin

no worries, I sent you the updated plugin.

Monday, January 23rd 2023, 4:36pm

Author: light_line

3d Models in Krpano like 3dVista?

Hi Guys, I am developing an editor for loading and interacting with the 3D models inside the Krpano environment with Three.js so far, I had good progress and everything go as I expect. but I have a technical problem with syncing and aligning a 3D model with a scene's view! please have a look at this video to understand what I mean: https://youtu.be/Doevsw2vOTo does anybody have any idea about how we can do something similar? and how can I find the correct camera position and other parameters on ...

Sunday, November 27th 2022, 7:08am

Author: light_line

Live Presenter Plugin | Video Conference Plugin

please send me your email address in PV to resend you the latest version of the plugin. Thanks,

Friday, October 14th 2022, 10:29pm

Author: light_line

shpere - equirect in base64

Yes, it can: https://krpano.com/forum/wbb/index.php?p…74848#post74848

Friday, October 14th 2022, 10:27pm

Author: light_line

The best hosting for 360º videos

Convert your videos to adaptive bitrate streaming videos (MPEG-DASH and HLS), after that; most hosts are suitable for it.

Friday, October 14th 2022, 10:21pm

Author: light_line

Javascript action call function inside Krpano action ?

Instead of this part of your code: var Move =....... use this code: window.Move =....... (by this way, you can define the Move object as a global object) After this change, you can use these codes to run your functions: jscall(Move.start()); OR jscall(Move.stop()); I hope it works for you.

Saturday, October 8th 2022, 3:59pm

Author: light_line

Easy HTML Lightbox Plugin

Hi Damien, You can't set a custom CSS code like an attribute for the plugin, but you can put your CSS codes in the HTML file of your tour to customize the popup styles. Thanks, Hamid

Thursday, September 29th 2022, 7:19am

Author: light_line

krpano tour on local storage of Pico G2 4K

Can you install APK files on it! You use the KSWEB android application to create a local server on your device. Then you can use the created local server to open your tour in the browser.

Monday, August 15th 2022, 11:06am

Author: light_line

OFFLINE Testing krpano project in Chromebook?

Hi Fernando, does this plugin work for you? https://panotools.eu/offline-virtual-tour/ Thanks, Hamid

Saturday, August 6th 2022, 6:16pm

Author: light_line

Live Presenter Plugin | Video Conference Plugin

Hi, Sorry, technically, it's possible, but I have no time to develop it. If you have a developer on your team, I can lead him to do it on your side. On the other hand, Why don't you use the screen sharing of the Agora version?

Monday, June 27th 2022, 3:31pm

Author: light_line

Easy HTML Lightbox Plugin

this is the error when I tried to load this page: Source code 1 Refused to display 'https://kahramanmarassehirrehberi.com/' in a frame because it set 'X-Frame-Options' to 'sameorigin'. you need to ask "kahramanmarassehirrehberi.com" website to allow you to load their website in IFRAME. also, you have to open the HTTPS version of the website, not HTTP.

Saturday, April 30th 2022, 4:26pm

Author: light_line

Hotspots for all scene in xml

Hi, did you try to set keep="true" for your hotspots? https://krpano.com/docu/xml/#hotspot.keep

Saturday, April 23rd 2022, 12:47pm

Author: light_line

Detecting shift-clicks on hotspots

Hi, add this action on your XML file: Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <action name="shif_key_monitor" type="Javascript" devices="html5" autorun="onstart" ><![CDATA[ krpano.set("shift_down","false"); var setShiftDown = function(event){ if(event.keyCode === 16 || event.charCode === 16){ krpano.set("shift_down","true"); } }; var setShiftUp = function(event){ if(event.keyCode === 16 || event.charCode === 16){ krpano.set("shift_down","false"); } }; window.addEventListener? docum...

Wednesday, April 13th 2022, 4:00pm

Author: light_line

Live Presenter Plugin | Video Conference Plugin

Hi Loki, I just sent you the plugin update in a PM and I will send it to all other customers this week. Thanks, Hamid

Wednesday, November 3rd 2021, 4:45pm

Author: light_line

Fuzzy Search Plugin

no worries! you can use addItem action to add your text to the plugin and then you can search on it! https://krpano.com/plugins/userplugins/fuzzysearch/#addItem

Saturday, October 23rd 2021, 9:54am

Author: light_line

Having a gradient background for a polygonal hotspot

Thanks Index :) using HTML was a good idea! here is the result:

Friday, October 22nd 2021, 3:37am

Author: light_line

Easy HTML Lightbox Plugin

Quoted from "gregkeene" is it possible to automatically lightbox to open when someone comes to the tour? Something like a welcome message but opened in a lightbox. Hi, If you add the "onInitialized" attribute to your plugin, you can run an action as soon as the plugin initialized!!! This can works for you like a welcome popup! Like this: <plugin name="easy_html_lightbox" url="plugins/easy_html_lightbox.js" keep="true" devices="html5" onInitialized="open_infobox_popup('TITLE','IMAGE_PATH','DESCR...