Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<events name="coords" keep="true" onclick="MakeCoords" />
<layer name="coords" url="../plugins/textfield.swf" keep="true" align="left" width="300" height="100" backgroundcolor="0xffff00" html="ATH = [br] ATV =" selectable="true" css="text-align:left; color:#000000; font-family:Helvetica; font-weight:regular; font-size:14px;" />
<action name="MakeCoords">
screentosphere(mouse.x, mouse.y, toh, tov);
set(layer[coords].html, calc:'ATH = ' + toh + '[br]ATV = ' + tov );
showlog();
trace('ATH = ', get(toh));
trace('ATV = ', get(tov));
</action>
|
: https://pame.virtualtuur.comLocation: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
|
|
Source code |
1 2 3 4 5 6 7 8 9 |
<events name="coords" keep="true" onviewchange="MakeCoords" /> <layer name="coords" url="../plugins/textfield.swf" keep="true" align="left" width="300" height="100" backgroundcolor="0xffff00" html="" selectable="true" css="text-align:left; color:#000000; font-family:Helvetica; font-weight:regular; font-size:14px;" /> <action name="MakeCoords"> set(layer[coords].html, calc:'Hlookat = ' + view.hlookat + '[br]Vlookat = ' + view.vlookat + '[br]FOV = ' + view.fov ); delayedcall(0.01, MakeCoords()); </action> |
: https://pame.virtualtuur.comLocation: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 |
<events name="coords" keep="true" onviewchange="MakeCoords" /> <layer name="coords" url="../plugins/textfield.swf" keep="true" align="left" width="300" height="100" backgroundcolor="0xffff00" html="" selectable="true" css="text-align:left; color:#000000; font-family:Helvetica; font-weight:regular; font-size:14px;" /> <action name="MakeCoords"> <!-- 4 digits max --> roundval(view.hlookat,4); roundval(view.vlookat,4); roundval(view.fov,4); set(layer[coords].html, calc:'Hlookat = ' + view.hlookat + '[br]Vlookat = ' + view.vlookat + '[br]FOV = ' + view.fov ); </action> |
: https://pame.virtualtuur.com