Lieber Besucher, herzlich willkommen bei: krpano.com Forum. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.
Thanks for responding. I have a slightly different approach to this processing:But tastes can be different of course - if you want a sharpened preview pano, you could create one e.g. using the spheretocube tool. A custom striporder could be also created this way, output separate cube faces, rename them to numbered files and then merge them using the maketiles tool (could be automated with some batch/shell script).
Try clearing the browser cache.

Benutzerinformationen überspringen
Wohnort: Netherlands
Beruf: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
Wow, Tuscany very nice.
Like the good old one from Oculus DK1 times..
I can also sailing :)
: https://pame.virtualtuur.com|
|
Quellcode |
1 2 3 4 5 6 |
<layer type="text" name="label" visible="true" keep="true" x="100" y="100" width="100" height="100" text="HELLO"></layer> <action name="textboxtest" autorun="onstart"> set(textbox, get(layer[label])); set(textbox.text, ""); </action> |
|
|
Quellcode |
1 |
set(textbox.text, calc(""));
|
Benutzerinformationen überspringen
Wohnort: Netherlands
Beruf: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
|
|
Quellcode |
1 |
textbox.text = ''; |
: https://pame.virtualtuur.comdid you try:
![]()
Quellcode
1 textbox.text = '';
(2 single quotes..)
Tuur![]()
Zitat
Change: Previously the string-quotes of action parameters were resolved as the first parsing step, the resolving of get(var), *var, calc(expression) , (expression) was only performed afterwards. This has now been changed. Now the get/calc resolving is done 'before' the string-quotes resolving. That means when there is now a get/calc inside string-quotes, then there will be no resolving anymore and the result will be an unparsed String (report).
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »kme« (15. März 2023, 22:30)
In the 1.21 preview 1, the following code "worked", as it cleared the textbox:
![]()
Quellcode
1 2 3 4 5 6 <layer type="text" name="label" visible="true" keep="true" x="100" y="100" width="100" height="100" text="HELLO"></layer> <action name="textboxtest" autorun="onstart"> set(textbox, get(layer[label])); set(textbox.text, ""); </action>
In the latest build (preview 2), the textbox gets the double quotes![]()
Can be solved by
![]()
Quellcode
1set(textbox.text, calc(""));
But not sure if this is now the only (correct) way to clear the text, or if the previous behaviour should still work too?
I have not (yet) tested with 1.20
Tested with 1.20 - box is cleared (no quotes are shown)
![]()
Quellcode
1 set(textbox.text, "");
In the latest build (preview 2), the textbox gets the double quotes![]()
...
But not sure if this is now the only (correct) way to clear the text, or if the previous behaviour should still work too?
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<skin_settings ... tooltip_font = "color:#000; font-family: Roboto Condensed, sans-serif; font-size:17px; line-height:22px; font-weight:400; text-align:center; padding: 3px 8px 3px 8px;" /> <layer name="tooltip" keep="true" type="text" parent="STAGE" visible="false" alpha="0" enabled="false" align="lefttop" edge="bottom" background="true" backgroundcolor="0xFFFFFF" backgroundalpha="1" bgborder="false" bordercolor="0xFFFFFF" borderalpha="0" borderwidth="1.0" roundedge="2" bgshadow="0 4 10 0x000000 0.2" css="calc:skin_settings.tooltip_font" html=" " zorder="1" /> |