You are not logged in.

Search results

Search results 1-20 of 1,000. There are even more results, please redefine your search.

Today, 3:07pm

Author: Tuur

Distorted video controls visible in 1.20.11 not in 1.21

I can't help you with that, I just never use that. I always make my own custom controls when needed. But strange they don't show. Not sure why. Tuur

Today, 2:52pm

Author: Tuur

Distorted video controls visible in 1.20.11 not in 1.21

Hi Matyhr, I see an error: ERROR: hotspot[hs_video] - loading of './plugins/videoplayer.swf' failed! try videoplayer.js also check the full path. Hope it helps, Tuur

Today, 2:40pm

Author: Tuur

Distorted video controls visible in 1.20.11 not in 1.21

Hi, seems to work just fine. https://www.virtualtuur.com/krpano/121/b…eo/1/index.html xml: https://www.virtualtuur.com/krpano/121/b…ideo/1/tour.xml perhaps you have a more complex or different set up? 3D? VR? Hope it helps, Tuur

Today, 1:59pm

Author: Tuur

Distorted video controls visible in 1.20.11 not in 1.21

Can you provide a bare bone to see how you organize things? Or share code perhaps.. Tuur

Today, 1:50pm

Author: Tuur

play sound at hotspot

Hi, Doesn't work pause/resume sound +id for you? Maybe onover play (if not ispaused) else resume. Onout pause. ? Tuur

Tuesday, May 30th 2023, 5:38pm

Author: Tuur

includexml

@kme (why always invisible?) Where did you find that loadingurl thing? Seems un-documented.. or? Tuur

Tuesday, May 30th 2023, 5:33pm

Author: Tuur

includexml

Ah yes, i think you're right... Thanks again! I'll test. Tuur

Tuesday, May 30th 2023, 5:25pm

Author: Tuur

includexml

Hi, thanks that seems to work.. I'll test a bit more. alternatively (from Indexofrefraction).. also seem to work and also thanks: Source code 1 2 3 var path = krpano.parsepath(pluginobj.url); path = path.substring(0, path.lastIndexOf('/') + 1); krpano.actions.includexml(path+"stickie_data.xml"); Tuur

Tuesday, May 30th 2023, 5:03pm

Author: Tuur

includexml

doesn't give me the wanted path. Anybody else? Tuur

Tuesday, May 30th 2023, 4:32pm

Author: Tuur

includexml

I think the includexml path is relative to the viewer /tour.js I am looking for a way to includexml inside the js plugin. ( which works great) But i like the path to be relative to the js plugin it self.. where ever it is in the folder structure. I'll try what you suggest but i don't think that works... Edit: currentxml is xml file.. that is not the case Tuur

Tuesday, May 30th 2023, 3:17pm

Author: Tuur

includexml

Hi, I am looking for a way to include an xml (path) relative to the plugin (js) location that is calling this. like: krpano.actions.includexml("stickie_data.xml"); the stickie_data.xml is in the same folder as the js plugin calling the includexml. %VIEWER% etc seems not a good option when people use basepath etc.. Any idea? Tuur

Tuesday, May 30th 2023, 2:42pm

Author: Tuur

iPhone fullscreen swipe

I'll make my self more clear. https://www.virtualtuur.com/krpano/121/h…pe/1/index.html if I have in the settings this: ..the iPhone fullscreen when going in landscape works fine. I also had some issue the swipe still showing in some cases but can't get it back in the bare bone. when I have this going to landscape the fullscreen doesn't work, and the swipe shows. when I take the viewport-fit=cover out of the html, the swipe up doesn't show. https://www.virtualtuur.com/krpano/121/h…pe/2/index.html...

Sunday, May 28th 2023, 12:03pm

Author: Tuur

iPhone fullscreen swipe

.. yes i know the new iphone fullscreen in landscape behaviour but this only works when you have one tab,url bar at top.. and not when tab bar , url bar at bottom (in portrait). Also the swipe up seems to randomly show or not show, even when landscape fullscreen (one tab top) Bit confusing.. Tuur

Saturday, May 27th 2023, 10:11am

Author: Tuur

iPhone fullscreen swipe

Hi, I made an interface that uses area-border and some changes and behaviour when you switch to landscape. When i take out the viewport- fit cover from the html the interface behaves and looks as i wanted but without that viewport thing the iphone swipe doesn't work. Not sure why.. i tested and it also happens with a bare bone set up without any area stuff. I now have changed partially the behaviour etc.. and used the safearea inset stuff but i was not able, quick enough, to make it work exactly...

Thursday, May 25th 2023, 11:24am

Author: Tuur

iPhone fullscreen swipe

Hi, I was wondering if we could take out the viewport-fit=cover from the html and make the iPhone fullscreen swipe work. I didn't manage.. I am trying now with safearea inset.. but it is too much hassle I think.. Tuur

Tuesday, May 16th 2023, 11:58pm

Author: Tuur

translate a showtext with a dynamic variable

Looks a bit strange to me to it that way, but if that works for your setup.. i'm glad i could help. Tuur

Tuesday, May 16th 2023, 12:47pm

Author: Tuur

translate a showtext with a dynamic variable

I use multi languages quite often but not by database and mostly just within krpano. it is fairly simple then and there are different ways to go. You could easily call the data container, or var, blabla_nl or blabla_eng and construct the show text.. like showtext(calc('blabla_' + _lang), MYSTYLE); or something like that.. many many options The _lang could come from initvars and the text from the database like above... Tuur

Tuesday, May 16th 2023, 12:16pm

Author: Tuur

translate a showtext with a dynamic variable

isn't it better to 'php' the xml and input directly from the database? .. like: while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)){ $rows[] = $row; } foreach($rows as $row){ $id2 = $row['name']; } echo "<hotspot .. blabla.. onhover=\"".$id2."\" .. but then with showtext syntax obviously. or perhaps you want/need to set the language by initvar yes.. _lang and from there pickup the right var from database like above perhaps. Not directly my expertise though.. but I had it working nicely a fe...

Tuesday, May 16th 2023, 11:32am

Author: Tuur

translate a showtext with a dynamic variable

Hi Tuur, Can you be more specific? There are different ways of doing such. Use the search of the forum and you'll find some. where is the language selection happening? In krpano world or web page.. Tuur