• Hi all,
    I need to get rid of the small 'dash' (-) that remains before the scene title when you leave the main title blank.

    Example:
    <krpano version="1.0.8.15" title="" onstart="startup();">

    <scene name="scene_1" title="Exterior Hotel" onstart="" thumburl="panos/1.tiles/thumb.jpg" lat="" lng="" heading="">

    What shows on screen is: - Exterior Hotel

    Possible?

  • Hi,

    in the 'vtourskin.xml' look for this line: (in the 'skin_update_scene_infos' <action>)

    Code
    txtadd(layer[skin_title].html, get(title), ' - ', get(scene[get(xml.scene)].title) );

    there the full title text is build together,
    to show just the scene tile, change it to:

    Code
    txtadd(layer[skin_title].html, get(scene[get(xml.scene)].title) );


    or to this: (an even more reduced code for this case)

    Code
    copy(layer[skin_title].html, scene[get(xml.scene)].title);

    best regards,
    Klaus

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!