You are not logged in.

Search results

Search results 1-20 of 119.

Monday, September 18th 2023, 9:24pm

Author: s-maier

How to hide scrolling textfield on pano load

Just set the boxes visibility to false in the xml and let it come back with onclick(set(layer[layername].visible, true));

Saturday, September 16th 2023, 12:39am

Author: s-maier

Combine limitview.fullrange and limitview.range

Oh sure - boy, why do I always miss the easiest solutions? I was already going to hard code some view limits depending on the state. Thanks for disentangling my brain!

Wednesday, September 13th 2023, 8:31pm

Author: s-maier

Combine limitview.fullrange and limitview.range

Hi, I'd like to have a combination of limitview.fullrange and limitview.range for a flat panorama. When starting the Panorama it should be covering the whole screen just like it does with range. However I want that the user is allowed to zoom out to see the complete image like with fullrange. How can I do this? Thank you!

Monday, September 11th 2023, 11:24pm

Author: s-maier

Onover touch device

Onhover is for mouse only. Use the touch events for mobile devices. However "hover" on mobile devices like "slide a finger over something" isn't really a concept in use. For the iframe link try _parent instead of _self.

Monday, September 4th 2023, 11:47pm

Author: s-maier

Autotour 1.21

So you have to use lookat() instead of autorotate.

Monday, September 4th 2023, 6:07pm

Author: s-maier

Autotour 1.21

Sure, just try it and let us know, when we can help at some point.

Monday, September 4th 2023, 12:31pm

Author: s-maier

Autotour 1.21

Quoted from "Suso Barral" Autorotation with atutomatic scene change So you could go with: - autorotate.start() - events.onautorotateoneround which actually includes this hint in the documentation you couldbe intrested in: That could be used to switch to the next pano in the tour - e.g. for 'automatic tours'. This can look nice when using the KEEPMOVING flag to blend between the panos during the automatic rotation. and - loadscene() where you could just iterate through a scene array to get a ful...

Monday, September 4th 2023, 11:46am

Author: s-maier

Autotour 1.21

Quoted from "Suso Barral" What possible solutions are there to perform a scheduled autour? Plugins, codes, etc. My goal is to make small videos of the 360 ​​tours created in Krpano to use them on networks like Instagram Best. Suso What exactly do you want to achive? Autorotation + automatic scene change?

Wednesday, August 23rd 2023, 4:33pm

Author: s-maier

Cannot tween bgborder ?

Tween a value and use the Update function to set the border with the tweening value on every step. Might not be the most performant thing maybe though.

Wednesday, August 2nd 2023, 3:49am

Author: s-maier

Prevent link opening while mobile scrolling in scrollarea

So here is my temporary solution - until someone comes up with something better: 1. Set scrolling() function as onscroll attribute in scrollarea layer Source code 1 2 3 4 5 6 <layer name="scrollarea" type="scrollarea" ... onscroll="scrolling()" ... </layer> 2. Copy millisecond "timestamp" into variable last_scroll on every scroll movement in the scrolling() function Source code 1 2 3 <action name="scrolling"> set(last_scroll, *timertick); </action> 3. Replace link in the text with onclick="open_...

Wednesday, August 2nd 2023, 2:07am

Author: s-maier

Prevent link opening while mobile scrolling in scrollarea

Hi Klaus, hi Forum, there is something I can't find a solution for. I use a textlayer with layertype scrollarea. There is a long text with some links in this scrollarea. On mobile device one tends to just touch anywhere in the area and swipe there to scroll up or down. Unfortunately it often happens that you touch a link. What happens is that as soon as you release your finger from the screen the link will be opend. Is there any way to prevent opening of links when these are just touched while s...

Saturday, July 15th 2023, 7:07pm

Author: s-maier

Virtual Tour Habana Barrio Chino (Chinatown)

Oh, i love how we can drag around the street names

Thursday, July 6th 2023, 5:27pm

Author: s-maier

360° Video von einer Mineralienstufe

Wenn du doch die einzelnen Bilder hast, warum solltest du die hochqualitative und technisch ausgereifte Methode gegen ein nicht dafür ausgelegtes und qualitativ viel schlechters Video-Gefrickel tauschen wollen?

Wednesday, July 5th 2023, 7:19pm

Author: s-maier

360° Video von einer Mineralienstufe

So etwa? https://www.visionangular.com/visitas_vi…bject/demo.html Wären dann natürlich 144 Fotos, kein Video. Qualitativ dafür natürlich unschlagbar. Grüße

Friday, June 30th 2023, 1:33am

Author: s-maier

Toggle hotspots on/off

"visible" is not defined. So it is interpreted as "false" and hence the hotspots are set to be visible. You may just add a variable to have the state of the visibilty and check if the variable is true or false in the if.

Saturday, June 24th 2023, 1:06am

Author: s-maier

GUI for Krpano?

Klaus is working on this and there should be new Version with an advanced GUI soon. However you don't need to code for krpano. Only simple XML you can easily manage with some reading and googling. Actually you can achive almost everything with some copy and paste.

Wednesday, June 21st 2023, 3:26pm

Author: s-maier

3D view - Help for a newbie

Quoted from "yannoch" and finaly... i cant hide right context menu. i have edited the contextmenu.xml like that "<krpano> <contextmenu fullscreen="false" versioninfo="false"> </contextmenu></krpano>" but the menu still present. You have to pay some 300 Euro first to be able to hide it. https://krpano.com/buy/brandingfree/

Saturday, June 17th 2023, 9:38pm

Author: s-maier

Textfield <div><br>-Problem in text/html-var

I really would't go for mailto:. This is kinda year 2000 stuff. When have you last seen mailto-links somewhere? Many people don't even have mail clients on theire device as so many web based services are in use. In JS you could try: Source code 1 text = text.replace(/(<div>|<\/div>)/g, "");

Saturday, June 17th 2023, 3:10pm

Author: s-maier

Textfield <div><br>-Problem in text/html-var

What are you using to send the mail? JS? PHP? Whatever, use this to replace what you don't like.