How to hide image name in viewer?

  • I'm not sure if this is a beginner's question or not, but I'm wondering if it's possible to hide the image name in the viewer. My viewer shows the name of the panorama in the bottom left corner (see image) and I just want to show the image without the name.

    I hope you guys can point me in the right direction. Thanks!

    - Geoffrey

  • Hi,

    in the vtourskin.xml look for the "skin_update_scene_infos" action:

    Code
    <action name="skin_update_scene_infos">
    ...
    </action>

    and there change this line:

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

    to this one:

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

    this part will remove the pano/image name,
    to remove the tour title ('Virtual Tour') too - set the title setting in the tour.xml to empty - e.g.

    Code
    <krpano version="1.16" title="" onstart="startup();">

    Best regards,
    Klaus

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!