Beiträge von apochroma

    Hi
    I made a quick and dirty workaround. I edited the tour_edithelper.xml as follows. You can grab the original file here: https://krpano.com/viewsource.htm…_edithelper.xml
    in the <action name="showspotinfos" scope="local">-section i made some vars:

    Code
    calc(show_tx, roundval(caller.tx,2));calc(show_ty, roundval(caller.ty,2));calc(show_tz, roundval(caller.tz,2));calc(show_ath, roundval(caller.ath,2));calc(show_atv, roundval(caller.atv,2));

    and added at the layer end a textarea as follows with an enclosing [a]-tag, so i could select and copy the text:

    Code
    '[a][textarea rows="4"]name="spot '+hotspot.count+'" style="vr-spot'+overspot+'" ath="'+show_ath+'" atv="'+show_atv+'" tx="'+show_tx+'" ty="'+show_ty+'" tz="'+show_tz+'"[/textarea][/a][br]'+

    Hope this helps.