Sie sind nicht angemeldet.

1

Freitag, 16. August 2013, 11:55

How to access different vr in single vtour?

Hi! I'm using MAKE VTOUR (MULTIRES) droplet.bat to create a vtour with 4 different images.

After I create the html, if there anyway that I can access direct to each of the image?

Now, I'm duplicate the html and xml in 4 sets and change the 4 xml data, so I can access each of the image directly.

But when I need to change the hotspot of the xml, I need to change 4 sets.

Is that anyway that I can easy to access different part of the vtour? like passing param to the html so the xml will load different image. Please help, many thanks!

2

Freitag, 16. August 2013, 15:50

Hi,

default skin is already looking for a custom 'startscene' variable (see 'startup' <action> in the tour.xml) - with a custom start scene name or index can be set from external,

e.g.

Quellcode

1
tour.html?startscene=second_scene_name


or pass the 'startscene' variable in the html:

Quellcode

1
embedpano({..., vars:{startscene:"second_scene_name"} });


Best regards,
Klaus

3

Montag, 19. August 2013, 06:53

Hi,

default skin is already looking for a custom 'startscene' variable (see 'startup' in the tour.xml) - with a custom start scene name or index can be set from external,

e.g.

Quellcode

1
tour.html?startscene=second_scene_name


or pass the 'startscene' variable in the html:

Quellcode

1
embedpano({..., vars:{startscene:"second_scene_name"} });


Best regards,
Klaus</action>

thx a lot!