Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.

Synopsis

showHelp [-absolute] [-docs] [-helpTable] [-relative]

showHelp is NOT undoable, queryable, and NOT editable.

Invokes a web browser to open the on-line documentation and help files. It will open the help page for a given topic, or open a browser to a specific URL.

Return value

None

In query mode, return type is based on queried flag.

Keywords

browse, documentation, web, page, help

Related

help

Flags

absolute, docs, helpTable, relative
Long name (short name) Argument types Properties
-docs(-d) createquery
Use this flag to directly specify a help file relative to the on-line documentation root.
-absolute(-a) create
The specified "URL" is an absolute URL that should be passed directly to the web browser.
-relative(-r) create
This flag is used to directly specify a help file relative to the on-line documentation root.
-helpTable(-ht) createquery
Use this flag to specify which file will be used to search for help topics when the -d/docs and -a/absolute flags are not used. If only a file name is specified and not a path, then the file is assumed to be in the maya application directory.
If this flag does not accept an argument if it is queried.
The default value is "helpTable".

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command.

MEL examples

// View the documentation for the launchBrowser command
//
showHelp -docs "Commands/showHelp.html";
// View the Autodesk home page
//
showHelp -absolute "http://www.autodesk.com/";
// Query for the full path to the help page on the Align Tool
//
showHelp -q AlignTool;
// Set the help lookup-table to $MAYA_APP_DIR/customHelpTable
//
showHelp -helpTable "customHelpTable";
// View the help topic "Particle" found in customHelpTable.dat
//
showHelp "Particle";