hm_callhelp

Displays the HTML help for a specific book and topic.

Syntax

hm_callhelp book topic

Type

HyperMesh Tcl GUI Command

Description

This command will display the HTML help for the specified book and topic.

Inputs

book
The book name, which defines the HyperWorks book to use.
topic
The topic name, which defines the specific HTML page to open from the book. The .htm suffix should not be included in the topic name.

Examples

To open the top level help topic for the current product:

hm_callhelp
To open the Lines panel (panel ID 006) help in the HyperWorks Desktop (hwd) book:
hm_callhelp hwd help006
To open the Lines panel (panel ID 006) help in the Manufacturing Solution book:
hm_callhelp mfs help006

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}