Dear visitor, welcome to krpano.com Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
![]() |
Source code |
1 2 3 4 5 6 7 8 |
<action name="newScene"> <!-- remembering last view status --> ... <!-- updating icons, thumbnails, map points... --> ... <!-- loading new scene --> ... </action> |
![]() |
Source code |
1 2 3 |
<action name="newScene"> ... </action> |
![]() |
Source code |
1 2 3 4 5 6 |
<hotspot name="hs1" ... onclick="newscene(scene123)" /> <action name="newScene"> set(activescene, %1); loadscene(%1, null, MERGE, BLEND(1)); </action> |
![]() |
Source code |
1 2 3 4 5 6 7 |
<hotspot name="hs1" ... onclick="newscene(scene123)" /> <action name="newScene"> copy(previousScene, activescene); set(activescene, %1); loadscene(%1, null, MERGE, BLEND(1)); </action> |
This post has been edited 1 times, last edit by "panomaster" (Mar 19th 2013, 8:54pm)
![]() |
Source code |
1 |
loadscene(loadscene(%1, null, MERGE, BLEND(1))); |
![]() |
Source code |
1 |
loadscene(%1, null, MERGE, BLEND(1)); |
![]() |
Source code |
1 2 3 4 5 |
if (activePano == null, set(previousPano, %1); , copy(previousPano, activePano); ); |
This post has been edited 1 times, last edit by "billjones" (Mar 20th 2013, 4:48am)