Buy online at www.borders.com

It's Not Just Help. . .

So How Does It Work?

HTML Topics & Templates
CSS
DHTML
Project File (.hhp)

Contents File (.hhc)

Merging Modular Files

Accelerating Links

Distribution & Installation



HTML Help Resources on the Web


Tool Tip Recipe

Purpose

Although the HTML Help Workshop provides a way to include tool tips (pop-up messages that appear when the user’s mouse pauses on the item), they’ve always appeared unnecessarily complicated, involving the insertion of an ActiveX control—and you still only get a plain text popup. The TITLE attribute (not covered elsewhere in this chapter) provides the same functionality much more easily.

Sample

let your cursor linger on this affected text to see the tooltip

Call within the element

<SPAN TITLE="toolTipText">affectedText</SPAN>

where

 

toolTipText

is the text that appears in a small yellow text window when the user’s mouse moves over the affected text;

 

affectedText

is the text that activates the tool tip popup.