You can add embedded HTML help to specific tag dialogs using the TAGDESCRIPTION block. Simply embed the HTML help inside the < TAGDESCRIPTION> … </ TAGDESCRIPTION > block. You can use the HEIGHT attribute to specify the height if the help viewer when expanded in the dialog. The width is inherited form the width of the dialog.
Example of a tag description block and the resulting dialog:
<TAGDESCRIPTION HEIGHT=100> <B>CFAPPLICATION</B> <P>Defines scoping for a Cold Fusion application and enables or disables storing client variables in the system registry. By default, client variables are disabled. CFAPPLICATION is typically used in the Application.cfm file to set defaults for a specific Cold Fusion application. </TAGDESCRIPTION>
As the help content grows it may become cumbersome to specify the entire body of the help inside the TagDescription block. In addition, large bodies of help embedded in the editor file will cause to editor dialog to open more slowly as more markup has to be parsed to compose the editor. Under these circumstances it advisable to provide large help contents in a separate HTML file. Such files can them be referenced using a relative path from the tag editor template. For example:
<TAGDESCRIPTION HELPFILE="Docs/TagHelpFile.htm">
(Editors contributed by Kevin Davis and Wil Genovese)