September 11, 2012 at 5:21 AM #1 <plugin name="map" url="map.png" keep="true" align="leftbottom" x="10" y="150" loadscene="scene_floorplan-flat"/>how do I make this work?
September 11, 2012 at 5:27 AM #2 You use loadscene.https://krpano.com/docu/actions/#loadsceneonclick="loadscene(scene1, null, MERGE, BLEND(1));"or by indexloadscene(get(scene[0].name),null,MERGE);
September 11, 2012 at 12:34 PM #3 Hi!Or by plugin attributeonclick="loadscene(get(loadscene), null, MERGE, BLEND(1));"where loadscene is additional plugin attribute.Andrey
September 11, 2012 at 5:58 PM #4 Thank you<plugin name="map" url="map.png" keep="true" align="leftbottom" x="10" y="150" onclick="loadscene(scene_floorplan-flat, null, MERGE, BLEND(1))"/>works like a charm, it that null, merge, blend stuff that gets in my way