You are not logged in.

1

Monday, May 18th 2015, 8:46am

Menu Bar minimized on start.

Hello.
I can not find how to change the code so that the tour begins with the hidden menu bar.
Can someone help me?
In advance, thank you
(Sorry for my english)

2

Monday, May 18th 2015, 2:58pm

Hi,

look in the tour.xml for this part:

Source code

1
2
3
4
5
<!-- startup action - here the first pano/scene will be loaded -->
<action name="startup" autorun="onstart">
    if(startscene === null, copy(startscene,scene[0].name));
    loadscene(get(startscene), null, MERGE);
</action>


and change it to (one line added):

Source code

1
2
3
4
5
6
<!-- startup action - here the first pano/scene will be loaded -->
<action name="startup" autorun="onstart">
    if(startscene === null, copy(startscene,scene[0].name));
    loadscene(get(startscene), null, MERGE);
    delayedcall(0, skin_hideskin() );
</action>


Best regards,
Klaus

3

Monday, May 18th 2015, 6:28pm

It's work !!!
thank you, Klaus

4

Tuesday, May 26th 2015, 7:54am

Hello.

I managed to remove the menu bar. But how to remove the arrows to move from one view to another?
In fact, I use the visit for viewing under cardboard.
thank you


http://www.autrepointdevue.com/vr/vilenn….xml&html5=only

5

Wednesday, May 27th 2015, 12:47pm

Invert rotation and hide menu

Hi,

In your example here: http://www.autrepointdevue.com/vr/vilenn….xml&html5=only

How did you manage to invert the rotation so that it goes opposite to the default?

Also, how did you remove the menu at the bottom?

Thanks,
Paul

6

Thursday, May 28th 2015, 10:45am

Hello Paul.

To reverse the rotation, I do not know I just used the example that is given with krpano-1.19-pr2.
For the menu, follow the response of Klaus in this post.
Stephane