You are not logged in.

Search results

Search results 1-20 of 155.

Wednesday, April 7th 2021, 8:39pm

Author: Mael B.

ProteiStyl' Photo Gallery PLUGIN

Quoted from "lizard.king" Small question: Is there a way, how a hotspot could open a gallery in the scroll mode (large images) with a specific gallery image, When galleries are opend like this, they always seem to open at the first image, but for my current pupose it would be necessary to open a specific image either based on its name (or if not passible otherwise based on its index). How can I achive this? There is an action to add in your code to perform this Source code 1 2 3 4 5 6 7 8 9 <ac...

Wednesday, March 31st 2021, 1:36pm

Author: Mael B.

ProteiStyl' Photo Gallery PLUGIN

Quoted from "lizard.king" Just wanted to grab the latest version of the gallery, but it seem the downloadpage is down resp. cant be reached. it's strange ! I just tested it now and it is working. https://photo.maelbathfield.net/proteist…llery/#download

Tuesday, August 25th 2020, 8:41pm

Author: Mael B.

ProteiStyl' Photo Gallery PLUGIN

Release of version v2.3.0 See version history here for all the changes, but mainly there are: - New gallery attribute “fn_thumbs” to display a carousel of squared thumbs in the top of the scroll gallery. - New <mls … /> nodes for multi-language support of gallery titles and of image titles. - Multi-language management in the EDITOR. - New gallery attribute “info” in order to display complementary information about the gallery. Download again DEMO VERSION here for updating.

Friday, August 14th 2020, 10:05pm

Author: Mael B.

Same <include> element inside several scenes

"is there any way to avoid the re-loading of the file which was already loaded ? " actually is yes ! I remembered the existence of if="condition" in xml element like that <include url="design_default.xml" if="design == default" />

Friday, August 14th 2020, 7:35pm

Author: Mael B.

Same <include> element inside several scenes

Hi, the new feature <include> elements inside <scene> elements is great Apparently, in the case of the presence of the same <include> element in several scene (e.g. <include url="my_settings.xml" /> ), the file my_settings.xml is loaded again. It does not seem to induce problems, but my simple questions are: - is there a significant impact on performance/loading time ? - if yes, is there any way to avoid the re-loading of the file which was already loaded ?

Wednesday, August 5th 2020, 4:54pm

Author: Mael B.

Death Valley Virtual Visit

Really nice virtual tour in this strange place !! Thanks you for sharing it.

Tuesday, July 7th 2020, 10:37pm

Author: Mael B.

ProteiStyl' Photo Gallery PLUGIN

Release of version v2.2.1 See version history here for all the changes. Download again DEMO VERSION here for updating.

Tuesday, June 30th 2020, 12:40am

Author: Mael B.

ProteiStyl' Photo Gallery PLUGIN

Release of version v2.2.0 for correcting some major bugs and for improving compatibility with krpano v2.0.7 :)

Tuesday, November 5th 2019, 11:16pm

Author: Mael B.

ProteiStyl' Photo Gallery PLUGIN

Release of version v2.1.1 for correcting some bugs !

Tuesday, November 5th 2019, 5:09pm

Author: Mael B.

can krpanotools create unlicensed tour.js ?

I did that by (temporarily) removing my license in the krpano tools and then creating a unlicensed js

Friday, November 1st 2019, 6:18pm

Author: Mael B.

width of the original sphere image & maxpixelzoom

For Q1, there is no specific attribute for that but you can get the width of the original sphere image with the help of some available attributes: - you can get the size of cube face with: Source code 1 level[calc(image.level.count-1)].tiledimagewidth - then just multiply by PI to get the original sphere image

Friday, November 1st 2019, 5:51pm

Author: Mael B.

ProteiStyl' Photo Gallery PLUGIN

Release of version v2.1.0 See version history here for all the changes, but mainly there are: - Full google fonts support - New styles/colors for interface buttons : see the updated example here Download again DEMO VERSION here for updating.

Thursday, October 24th 2019, 3:15pm

Author: Mael B.

Use events of the new sound interface

Quoted from "indexofrefraction" its simple... just set(sound[name].onplay, 'trace("yehh, playing!")'); set(sound[name].onstop, 'trace("ouch, stopped.")'); Thanks ! I was trying somethings much more complicated !!

Thursday, October 24th 2019, 12:29pm

Author: Mael B.

Use events of the new sound interface

Hi, can someone explain me how to use the sound events from the new sound interface ? Source code 1 2 3 4 5 6 sound[name].onloaderror sound[name].onplay sound[name].onpause sound[name].onstop sound[name].onseeked sound[name].oncomplete I don't get the syntax to launch an action when one of this event occurs.

Tuesday, October 15th 2019, 10:17pm

Author: Mael B.

krpano 1.20

Thanks Klaus for this quick update

Monday, October 7th 2019, 2:56pm

Author: Mael B.

Missing 'scale' in addspotstyle plugin action ?

I finally thought that i can define the scale value after creation of the new spotstyle !! Source code 1 set(layer[skin_map].spotstyle[MY_NEW_STYLE].scale,0.5);

Saturday, October 5th 2019, 7:46pm

Author: Mael B.

Missing 'scale' in addspotstyle plugin action ?

hi, we can choose a scale value when defining a spotstyle statically: Source code 1 2 3 4 5 6 7 8 9 <spotstyle name="MYSTYLE" url="" overurl="" activeurl="" edge="center" x="0" y="0" scale="0.8" /> But apparently, we cannot do the same when defining a spotstyle dynamically with a addspotstyle action: https://krpano.com/plugins/googlemaps/#addspotstyle is it normal such a limitation ?

Friday, October 4th 2019, 5:07pm

Author: Mael B.

krpano 1.20

The encrypt tool does not crash anymore with v1.20.1 but, apparently, it does not correctly encrypt files which contain comments, so the problem is worse !! For example, i have an non-crypted file of 90Ko, it is encrypted correctly with v1.20 (and give a file of 32Ko), but with v1.20.1 the encrypted file is only 2Ko (and obviously, i have a parsing error). After removing all comments, i get again a 32Ko file which seems to work correctly.

Friday, October 4th 2019, 1:09pm

Author: Mael B.

ProteiStyl' Photo Gallery PLUGIN

Release of a MAJOR update with version v2.0.0 A lot of changes compared to the previous version !! see version history here HOW TO UPDATE: Download again DEMO VERSION here , then follow the instructions of the 2 sections 'Plugin Installation / Update' and 'Customization of the layout and functionalities of the gallery' from the documentation:)

Monday, September 30th 2019, 9:34pm

Author: Mael B.

Is it possible to access custom xml node content?

did you simply try (for your first example code) Source code 1 get(node.subnode[a].content)