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.
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Quoted
Can we image to laod the Password panel as the project start ?
Quoted
Can we imagine to have several Password allowed to open a Hotspot ?
For example :
USER 1 : Password : 1234
USER 2 : password : 5678
USER 1 can open hotspot 1
USER 2 can open hotspot 1 and hotspot 2
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
![]() |
Source code |
1 2 3 4 5 6 7 8 9 |
<action name="skin_view_setlittleplanet"> set(view.architectural, 0.0, distance(1.0,0.5)); set(view.pannini, 0.0, distance(1.0,0.5)); set(view.fisheye, 1.0, distance(1.0,0.8)); set(view.fov, 150, distance(150,0.8)); set(view.vlookat, 90, distance(100,0.8)); add(new_hlookat, view.hlookat, 123.0); set(view.hlookat, get(new_hlookat), distance(100,0.8)); </action> |
![]() |
Source code |
1 2 3 4 |
<action name="LpToNormal"> HidePw(); delayedcall(3, normalview()); </action> |
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 |
<action name="normalview"> tween(view.hlookat, 47, 2.5, easeInOutQuad); tween(view.vlookat, 0, 2.5, easeInOutQuad); tween(view.fov, 65, 2.5, easeInOutQuad); tween(view.fisheye, 0.0, 2.5, easeInOutQuad); wait(2.7); set(display.flash10, on); set(view.maxpixelzoom,1); set(view.fovmax,110); </action> |
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Quoted
I did small improvement for us using numeric keyboard on Windows based PC together with key ESC reseting Pass, if you or someone would like to have it here is adapatation of one action:
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<action name="Keys"> if( ((keycode GE 48) AND (keycode LE 57) OR (keycode GE 96) AND (keycode LE 105)), if(keycode == 49 OR keycode == 97, set(_pwnumber,1); ); if(keycode == 50 OR keycode == 98, set(_pwnumber,2); ); if(keycode == 51 OR keycode == 99, set(_pwnumber,3); ); if(keycode == 52 OR keycode == 100, set(_pwnumber,4); ); if(keycode == 53 OR keycode == 101, set(_pwnumber,5); ); if(keycode == 54 OR keycode == 102, set(_pwnumber,6); ); if(keycode == 55 OR keycode == 103, set(_pwnumber,7); ); if(keycode == 56 OR keycode == 104, set(_pwnumber,8); ); if(keycode == 57 OR keycode == 105, set(_pwnumber,9); ); if(keycode == 48 OR keycode == 96, set(_pwnumber,0); ); CheckPassword(); ); if(keycode EQ 27, PwReset();); </action> |
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Quoted
Basically it can be like a secret password to open the trace menu or maybe display credits or open easter eggs.