Properties Required for Task Assistant
By default, hiHelp() opens the Doc Assistant interface. If the help content for a form, dialog, window, or menu is required to be displayed in the Task Assistant interface, you can set some additional properties to open Task Assistant.
The following table describes the properties required for Task Assistant:
If both hiHelpAsstTool and hiHelpAsstTag are specified, hiHelp() looks for the help symbol in the .tgf file specified by hiHelpAsstTool. If these properties are not set, their values are incorrect, or no.tgf file is found with the name mentioned by hiHelpAsstTool, hiHelp() switches to the default help search mechanism by using the hiHelpSymName and hiHelpAppName properties.
The following example shows how to specify the properties for a form:
putprop(’formSymbol "myTAHelp" ’hiHelpAsstTool)
putprop(’formSymbol "createPorts" ’hiHelpAsstTag)
putprop(’formSymbol "Fault Analysis Task Assistant" ’hiHelpAsstTitle)
The following example shows how to specify a help symbol for a window and set the properties required to open Task Assistant:
hiOpenWindow( ?appType "MyApp" ?help "MyAppHelp")
putprop( ’MyAppHelp "myTAHelp" ’hiHelpAsstTool)
putprop( ’MyAppHelp "MyHelpSymbol" ’hiHelpAsstTag)
Related Topics
Return to top