How to Add Weblinks to Virtual Tour
Links to web sites can be added by adding tags between the hotspot de3claration tags.
<hotspot>
<point>
<webLinks></webLinks>
</point>
</hotspot>
Main web link tags
the web links can be controlled using html tags too, they can also be controlled by using a stylesheet.
<webLinks> - open web link tag
<html> - open html tag
<body> - open html body tag
<formatlinks> - open formating for the stylesheet
Insert text and links between these tags.
</formatlinks> - close web link tag
</body> - close html tag
</html> - close html body tag
</webLinks> - close formating for the stylesheet
web links
This is how to format a link to open in a new browser
<a href="http://www.flashvirtualtours.com" target="_blank">Flash tours</a>
<a - open link
a href="http://www.flashvirtualtours.com" - web link
target="_blank" - open in new browser
Flash tours - link text
</a> - close link
CSS Stylesheet
the text displayed in the web links section can be controlled by a CSS stylesheet with the tag 'formatlinks'
formatlinks {
font-family: verdana;
font-size:12px;
text-indent: 5px
}
other style can be added to this style sheet to rollover effects and text styling.
a:link {
color: #5488ba;
text-decoration: underline;
}
a:active {
color: #5488ba;
text-decoration: underline;
}
a:visited {
color: #5488ba;
text-decoration: underline;
}
a:hover {
color: #e3a40e;
text-decoration: none;
}
Other tags
Other html tags can be added to control the style of the text and layout
<br /> - will start a new line











