RESOLVED Thank you for the link Umalo. I had seen another example like this and it was a conformation that it was possible, however it offered no markup example. I was able to hobble some markup code that seems to work: The Action Source code 1 2 3 4 5 6 7 <action name="draglayer"> if(dragging, set(layer[your_layername].x,get(mouse.stagex)); set(layer[your_layername].y,get(mouse.stagey)); delayedcall(0,draglayer()); ); </action> Calling the Action Source code 1 ondown="set(dragging,true); dragla...
krpano 1.18 working from standard vTourSkin.xml I would like to move the map layer out of the scroll_layer into its own layer so ive moved it to its own map_layer under the scroll_layer. Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <!-- skin_scroll_layer simplified --> <layer name="skin_scroll_window" type="container" keep="true" align="leftbottom" width="100%" height="100%" x="0" y="60" y_opened="60" y_closed="-2" maskchildren="true"> <layer name="skin_...
RESOLVED FIgured it out! I was adjusting the value of the skin_settings.loadscene_flags in the tourskin.xml file and needed to adjust it in the tour.xml file. Thanks again Alexey
Hi Alexey, Thanks for your reply. Yes. I have tried all of the following: MERGE|KEEPALL MERGE|KEEPVIEW KEEPALL KEEPVIEW I have also tried passing " 'view.vlookat=',get(view.vlookat) & 'view.hlookat=',get(view.hlookat) " as the vars parameter
I,ve created a tour using the tour.xml template with the tourskin.xml. Goal: Change the view left or right in one scene, and have that view in the next or prev scene. All scenes in the tour.xml have the following view tag and attribute: Source code 1 <view hlookat="0" vlookat="0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" /> PROBLEM: When viewing the tour, I click on the left or right button to change the view of the first scene. I then click on the nex...