displayHelp()
Description
If this function is defined, a Help button appears below the OK and Cancel buttons in the dialog box. This function is called when the user clicks the Help button.
Arguments
None.
Returns
Adobe Dreamweaver expects nothing.
Example
// The following instance of displayHelp() opens// a file (in a browser) that explains how to use// the extension.function displayHelp(){ var myHelpFile = dw.getConfigurationPath() + '/ExtensionsHelp/superDuperHelp.htm'; dw.browseDocument(myHelpFile);}